From 991ae427daa24dac99c56a83f553bcbd630723b9 Mon Sep 17 00:00:00 2001 From: Jonah Bauer Date: Tue, 14 Dec 2021 19:28:02 +0100 Subject: [PATCH] visual improvements --- .../client/libgdx/actors/game/CardStack.java | 1 - .../libgdx/screens/CreateGameScreen.java | 36 +- .../client/libgdx/screens/LobbyScreen.java | 14 +- .../client/libgdx/screens/MenuScreen.java | 3 +- .../wizard/client/libgdx/state/Lobby.java | 13 +- .../src/main/resources/font/coolvetica.fnt | 76566 +++++----------- .../src/main/resources/font/coolvetica.png | Bin 106546 -> 156566 bytes .../core/src/main/resources/uiskin.json | 4 +- 8 files changed, 21334 insertions(+), 55303 deletions(-) diff --git a/wizard-client/wizard-client-libgdx/core/src/main/java/eu/jonahbauer/wizard/client/libgdx/actors/game/CardStack.java b/wizard-client/wizard-client-libgdx/core/src/main/java/eu/jonahbauer/wizard/client/libgdx/actors/game/CardStack.java index 9318142..6b47614 100644 --- a/wizard-client/wizard-client-libgdx/core/src/main/java/eu/jonahbauer/wizard/client/libgdx/actors/game/CardStack.java +++ b/wizard-client/wizard-client-libgdx/core/src/main/java/eu/jonahbauer/wizard/client/libgdx/actors/game/CardStack.java @@ -1,7 +1,6 @@ package eu.jonahbauer.wizard.client.libgdx.actors.game; import com.badlogic.gdx.scenes.scene2d.*; -import com.badlogic.gdx.scenes.scene2d.utils.ClickListener; import eu.jonahbauer.wizard.client.libgdx.WizardGame; import eu.jonahbauer.wizard.client.libgdx.screens.GameScreen; import lombok.Data; diff --git a/wizard-client/wizard-client-libgdx/core/src/main/java/eu/jonahbauer/wizard/client/libgdx/screens/CreateGameScreen.java b/wizard-client/wizard-client-libgdx/core/src/main/java/eu/jonahbauer/wizard/client/libgdx/screens/CreateGameScreen.java index 823cabc..0f2952c 100644 --- a/wizard-client/wizard-client-libgdx/core/src/main/java/eu/jonahbauer/wizard/client/libgdx/screens/CreateGameScreen.java +++ b/wizard-client/wizard-client-libgdx/core/src/main/java/eu/jonahbauer/wizard/client/libgdx/screens/CreateGameScreen.java @@ -8,6 +8,7 @@ import com.badlogic.gdx.utils.Array; import eu.jonahbauer.wizard.client.libgdx.WizardGame; import eu.jonahbauer.wizard.client.libgdx.listeners.ResetErrorListener; import eu.jonahbauer.wizard.client.libgdx.state.AwaitingJoinSession; +import eu.jonahbauer.wizard.client.libgdx.state.Lobby; import eu.jonahbauer.wizard.common.messages.client.CreateSessionMessage; import eu.jonahbauer.wizard.common.model.Configuration; @@ -21,6 +22,8 @@ public class CreateGameScreen extends MenuScreen { private TextField timeOut; private SelectBox configurations; + private final Lobby state; + private final ChangeListener listener = new ChangeListener() { @Override public void changed(ChangeEvent event, Actor actor) { @@ -36,6 +39,7 @@ public class CreateGameScreen extends MenuScreen { public CreateGameScreen(WizardGame game) { super(game); + this.state = (Lobby) game.getClient().getState(); } @Override @@ -55,31 +59,31 @@ public class CreateGameScreen extends MenuScreen { sessionName.addListener(errorListener); sessionName.setProgrammaticChangeEvents(true); - playerName = new TextField("", game.data.skin); + playerName = new TextField(state.getPlayerName(), game.data.skin); playerName.setPosition(WizardGame.WIDTH * 0.3f, WizardGame.HEIGHT * 0.45f); playerName.setSize(0.4f * WizardGame.WIDTH, 64); playerName.addListener(errorListener); - playerName.setTextFieldListener(new TextField.TextFieldListener() { + var playerNameListener = new ChangeListener() { private final String format = game.messages.get("menu.create_game.session_name.default"); - private String oldName = ""; @Override - public void keyTyped(TextField textField, char c) { - if (textField == playerName) { - var player = playerName.getText(); - var session = sessionName.getText(); - if (session.isEmpty() || session.equals(format.formatted(oldName))) { - if (player.isEmpty()) { - sessionName.setText(""); - } else { - sessionName.setText(format.formatted(player)); - } + public void changed(ChangeEvent event, Actor actor) { + var old = state.getPlayerName(); + state.setPlayerName(playerName.getText()); + + var player = playerName.getText(); + var session = sessionName.getText(); + if (session.isEmpty() || session.equals(format.formatted(old))) { + if (player.isEmpty()) { + sessionName.setText(""); + } else { + sessionName.setText(format.formatted(player)); } - - oldName = player; } } - }); + }; + playerName.addListener(playerNameListener); + playerNameListener.changed(null, null); timeOut = new TextField("", game.data.skin); timeOut.setPosition(WizardGame.WIDTH * 0.3f, WizardGame.HEIGHT * 0.4f); diff --git a/wizard-client/wizard-client-libgdx/core/src/main/java/eu/jonahbauer/wizard/client/libgdx/screens/LobbyScreen.java b/wizard-client/wizard-client-libgdx/core/src/main/java/eu/jonahbauer/wizard/client/libgdx/screens/LobbyScreen.java index a6d475f..fd68931 100644 --- a/wizard-client/wizard-client-libgdx/core/src/main/java/eu/jonahbauer/wizard/client/libgdx/screens/LobbyScreen.java +++ b/wizard-client/wizard-client-libgdx/core/src/main/java/eu/jonahbauer/wizard/client/libgdx/screens/LobbyScreen.java @@ -8,6 +8,7 @@ import eu.jonahbauer.wizard.client.libgdx.WizardGame; import eu.jonahbauer.wizard.client.libgdx.actors.AutoFocusScrollPane; import eu.jonahbauer.wizard.client.libgdx.listeners.ResetErrorListener; import eu.jonahbauer.wizard.client.libgdx.state.AwaitingJoinSession; +import eu.jonahbauer.wizard.client.libgdx.state.Lobby; import eu.jonahbauer.wizard.client.libgdx.state.Menu; import eu.jonahbauer.wizard.common.messages.client.JoinSessionMessage; import eu.jonahbauer.wizard.common.messages.data.SessionData; @@ -33,6 +34,8 @@ public class LobbyScreen extends MenuScreen { private List sessions; private ScrollPane sessionListContainer; private final Map sessionData = new HashMap<>(); + + private final Lobby state; private final ChangeListener listener = new ChangeListener() { @Override @@ -52,6 +55,7 @@ public class LobbyScreen extends MenuScreen { public LobbyScreen(WizardGame game) { super(game); + this.state = (Lobby) game.getClient().getState(); } @Override @@ -60,7 +64,6 @@ public class LobbyScreen extends MenuScreen { buttonBack = new TextButton(game.messages.get("menu.lobby.back"), game.data.skin); buttonJoin = new TextButton(game.messages.get("menu.lobby.join"), game.data.skin); - buttonJoin.setDisabled(true); buttonCreate = new TextButton(game.messages.get("menu.lobby.create"), game.data.skin); sessions = new List<>(game.data.skin) { @@ -165,14 +168,19 @@ public class LobbyScreen extends MenuScreen { labelSessionConfiguration.setText(""); selectedSession = null; } - buttonJoin.setDisabled(data == null); } private Table createInfoTable() { float infoTableWidth = 0.3f * WizardGame.WIDTH - 20; - playerName = new TextField("", game.data.skin); + playerName = new TextField(state.getPlayerName(), game.data.skin); playerName.addListener(new ResetErrorListener(game.data.skin)); + playerName.addListener(new ChangeListener() { + @Override + public void changed(ChangeEvent event, Actor actor) { + state.setPlayerName(playerName.getText()); + } + }); labelSessionName = new Label("", game.data.skin, "textfield"); labelSessionConfiguration = new Label("", game.data.skin, "textfield"); diff --git a/wizard-client/wizard-client-libgdx/core/src/main/java/eu/jonahbauer/wizard/client/libgdx/screens/MenuScreen.java b/wizard-client/wizard-client-libgdx/core/src/main/java/eu/jonahbauer/wizard/client/libgdx/screens/MenuScreen.java index 571f438..3b359a1 100644 --- a/wizard-client/wizard-client-libgdx/core/src/main/java/eu/jonahbauer/wizard/client/libgdx/screens/MenuScreen.java +++ b/wizard-client/wizard-client-libgdx/core/src/main/java/eu/jonahbauer/wizard/client/libgdx/screens/MenuScreen.java @@ -29,7 +29,6 @@ public abstract class MenuScreen implements Screen { @Override public final void render(float delta) { Gdx.gl.glClear(GL20.GL_COLOR_BUFFER_BIT | GL20.GL_DEPTH_BUFFER_BIT | (Gdx.graphics.getBufferFormat().coverageSampling?GL20.GL_COVERAGE_BUFFER_BIT_NV:0)); -// Gdx.gl.glClear(GL20.GL_COLOR_BUFFER_BIT); game.data.extendViewport.apply(true); game.batch.setProjectionMatrix(game.data.extendViewport.getCamera().combined); @@ -48,6 +47,7 @@ public abstract class MenuScreen implements Screen { } protected void renderBackground(float delta) { + game.batch.setColor(1, 1, 1, 1); float scale = Math.max( game.data.extendViewport.getWorldWidth() / WizardGame.WIDTH, game.data.extendViewport.getWorldHeight() / WizardGame.HEIGHT @@ -60,6 +60,7 @@ public abstract class MenuScreen implements Screen { } protected void renderForeground(float delta) { + game.batch.setColor(1, 1, 1, 1); game.batch.draw(game.data.title, 555, WizardGame.HEIGHT - 192 - 96, 810, 192); } diff --git a/wizard-client/wizard-client-libgdx/core/src/main/java/eu/jonahbauer/wizard/client/libgdx/state/Lobby.java b/wizard-client/wizard-client-libgdx/core/src/main/java/eu/jonahbauer/wizard/client/libgdx/state/Lobby.java index bd867dc..7c9580a 100644 --- a/wizard-client/wizard-client-libgdx/core/src/main/java/eu/jonahbauer/wizard/client/libgdx/state/Lobby.java +++ b/wizard-client/wizard-client-libgdx/core/src/main/java/eu/jonahbauer/wizard/client/libgdx/state/Lobby.java @@ -1,11 +1,11 @@ package eu.jonahbauer.wizard.client.libgdx.state; -import com.badlogic.gdx.utils.reflect.ClassReflection; import eu.jonahbauer.wizard.client.libgdx.Client; -import eu.jonahbauer.wizard.client.libgdx.screens.CreateGameScreen; import eu.jonahbauer.wizard.client.libgdx.screens.LobbyScreen; import eu.jonahbauer.wizard.common.messages.data.SessionData; import eu.jonahbauer.wizard.common.messages.server.*; +import lombok.Getter; +import lombok.Setter; import java.util.Optional; @@ -13,7 +13,10 @@ public final class Lobby extends BaseState { private SessionListMessage list; private LobbyScreen lobbyScreen; - private CreateGameScreen createScreen; + + @Getter + @Setter + private String playerName = ""; public Lobby(SessionListMessage list) { this.list = list; @@ -43,10 +46,6 @@ public final class Lobby extends BaseState { } else if (message instanceof SessionListMessage list) { lobbyScreen.setSessions(list.getSessions().toArray(new SessionData[0])); return Optional.empty(); - } else if (message instanceof SessionJoinedMessage joined) { - //TODO find solution - createScreen = new CreateGameScreen(client.getGame()); - return Optional.empty(); } else { return unexpectedMessage(client, message); } diff --git a/wizard-client/wizard-client-libgdx/core/src/main/resources/font/coolvetica.fnt b/wizard-client/wizard-client-libgdx/core/src/main/resources/font/coolvetica.fnt index e3321d7..78104a5 100644 --- a/wizard-client/wizard-client-libgdx/core/src/main/resources/font/coolvetica.fnt +++ b/wizard-client/wizard-client-libgdx/core/src/main/resources/font/coolvetica.fnt @@ -1,55410 +1,21428 @@ -info face="CoolveticaRg-Regular" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=2,1,1,2 spacing=-3,-3 -common lineHeight=39 base=31 scaleW=512 scaleH=512 pages=1 packed=0 -page id=0 file="coolvetica2.png" -chars count=476 -char id=0 x=444 y=274 width=16 height=25 xoffset=-1 yoffset=7 xadvance=14 page=0 chnl=0 -char id=13 x=0 y=0 width=0 height=0 xoffset=-2 yoffset=0 xadvance=0 page=0 chnl=0 -char id=33 x=493 y=300 width=9 height=24 xoffset=-1 yoffset=8 xadvance=8 page=0 chnl=0 -char id=34 x=447 y=463 width=12 height=11 xoffset=-2 yoffset=8 xadvance=9 page=0 chnl=0 -char id=35 x=41 y=325 width=19 height=24 xoffset=-2 yoffset=8 xadvance=16 page=0 chnl=0 -char id=36 x=409 y=164 width=19 height=27 xoffset=-2 yoffset=6 xadvance=15 page=0 chnl=0 -char id=37 x=225 y=221 width=25 height=26 xoffset=-2 yoffset=7 xadvance=21 page=0 chnl=0 -char id=38 x=460 y=274 width=19 height=25 xoffset=-2 yoffset=8 xadvance=16 page=0 chnl=0 -char id=39 x=459 y=463 width=7 height=11 xoffset=-2 yoffset=8 xadvance=5 page=0 chnl=0 -char id=40 x=151 y=101 width=12 height=31 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 -char id=41 x=163 y=101 width=12 height=31 xoffset=-2 yoffset=6 xadvance=10 page=0 chnl=0 -char id=42 x=138 y=463 width=19 height=18 xoffset=-1 yoffset=8 xadvance=17 page=0 chnl=0 -char id=43 x=157 y=463 width=19 height=18 xoffset=-2 yoffset=11 xadvance=17 page=0 chnl=0 -char id=44 x=344 y=463 width=9 height=12 xoffset=-2 yoffset=25 xadvance=6 page=0 chnl=0 -char id=45 x=79 y=482 width=12 height=7 xoffset=-2 yoffset=17 xadvance=9 page=0 chnl=0 -char id=46 x=91 y=482 width=9 height=7 xoffset=-2 yoffset=25 xadvance=6 page=0 chnl=0 -char id=47 x=60 y=325 width=14 height=24 xoffset=-3 yoffset=8 xadvance=10 page=0 chnl=0 -char id=48 x=250 y=221 width=19 height=26 xoffset=-2 yoffset=7 xadvance=16 page=0 chnl=0 -char id=49 x=499 y=221 width=12 height=24 xoffset=-2 yoffset=8 xadvance=9 page=0 chnl=0 -char id=50 x=479 y=274 width=18 height=25 xoffset=-2 yoffset=7 xadvance=15 page=0 chnl=0 -char id=51 x=269 y=221 width=18 height=26 xoffset=-2 yoffset=7 xadvance=15 page=0 chnl=0 -char id=52 x=74 y=325 width=18 height=24 xoffset=-2 yoffset=8 xadvance=15 page=0 chnl=0 -char id=53 x=0 y=300 width=19 height=25 xoffset=-2 yoffset=8 xadvance=16 page=0 chnl=0 -char id=54 x=287 y=221 width=18 height=26 xoffset=-2 yoffset=7 xadvance=16 page=0 chnl=0 -char id=55 x=92 y=325 width=19 height=24 xoffset=-2 yoffset=8 xadvance=15 page=0 chnl=0 -char id=56 x=305 y=221 width=19 height=26 xoffset=-2 yoffset=7 xadvance=16 page=0 chnl=0 -char id=57 x=324 y=221 width=18 height=26 xoffset=-2 yoffset=7 xadvance=16 page=0 chnl=0 -char id=58 x=497 y=444 width=8 height=18 xoffset=-2 yoffset=14 xadvance=5 page=0 chnl=0 -char id=59 x=499 y=350 width=8 height=23 xoffset=-2 yoffset=14 xadvance=6 page=0 chnl=0 -char id=60 x=58 y=422 width=19 height=19 xoffset=-2 yoffset=10 xadvance=17 page=0 chnl=0 -char id=61 x=297 y=463 width=19 height=13 xoffset=-2 yoffset=13 xadvance=17 page=0 chnl=0 -char id=62 x=77 y=422 width=19 height=19 xoffset=-2 yoffset=10 xadvance=17 page=0 chnl=0 -char id=63 x=19 y=300 width=19 height=25 xoffset=-2 yoffset=7 xadvance=16 page=0 chnl=0 -char id=64 x=342 y=221 width=26 height=26 xoffset=-2 yoffset=9 xadvance=23 page=0 chnl=0 -char id=65 x=111 y=325 width=24 height=24 xoffset=-2 yoffset=8 xadvance=21 page=0 chnl=0 -char id=66 x=135 y=325 width=22 height=24 xoffset=-2 yoffset=8 xadvance=18 page=0 chnl=0 -char id=67 x=368 y=221 width=23 height=26 xoffset=-2 yoffset=7 xadvance=20 page=0 chnl=0 -char id=68 x=157 y=325 width=22 height=24 xoffset=-2 yoffset=8 xadvance=19 page=0 chnl=0 -char id=69 x=179 y=325 width=20 height=24 xoffset=-2 yoffset=8 xadvance=17 page=0 chnl=0 -char id=70 x=199 y=325 width=19 height=24 xoffset=-2 yoffset=8 xadvance=16 page=0 chnl=0 -char id=71 x=391 y=221 width=24 height=26 xoffset=-2 yoffset=7 xadvance=21 page=0 chnl=0 -char id=72 x=218 y=325 width=21 height=24 xoffset=-2 yoffset=8 xadvance=19 page=0 chnl=0 -char id=73 x=502 y=300 width=9 height=24 xoffset=-2 yoffset=8 xadvance=6 page=0 chnl=0 -char id=74 x=38 y=300 width=17 height=25 xoffset=-2 yoffset=8 xadvance=15 page=0 chnl=0 -char id=75 x=239 y=325 width=23 height=24 xoffset=-2 yoffset=8 xadvance=19 page=0 chnl=0 -char id=76 x=262 y=325 width=19 height=24 xoffset=-2 yoffset=8 xadvance=16 page=0 chnl=0 -char id=77 x=281 y=325 width=25 height=24 xoffset=-2 yoffset=8 xadvance=22 page=0 chnl=0 -char id=78 x=306 y=325 width=22 height=24 xoffset=-2 yoffset=8 xadvance=19 page=0 chnl=0 -char id=79 x=415 y=221 width=24 height=26 xoffset=-2 yoffset=7 xadvance=21 page=0 chnl=0 -char id=80 x=328 y=325 width=20 height=24 xoffset=-2 yoffset=8 xadvance=17 page=0 chnl=0 -char id=81 x=304 y=68 width=25 height=32 xoffset=-2 yoffset=7 xadvance=21 page=0 chnl=0 -char id=82 x=348 y=325 width=22 height=24 xoffset=-2 yoffset=8 xadvance=19 page=0 chnl=0 -char id=83 x=439 y=221 width=21 height=26 xoffset=-2 yoffset=7 xadvance=18 page=0 chnl=0 -char id=84 x=370 y=325 width=21 height=24 xoffset=-2 yoffset=8 xadvance=18 page=0 chnl=0 -char id=85 x=55 y=300 width=21 height=25 xoffset=-2 yoffset=8 xadvance=19 page=0 chnl=0 -char id=86 x=391 y=325 width=22 height=24 xoffset=-2 yoffset=8 xadvance=19 page=0 chnl=0 -char id=87 x=413 y=325 width=31 height=24 xoffset=-2 yoffset=8 xadvance=27 page=0 chnl=0 -char id=88 x=444 y=325 width=23 height=24 xoffset=-2 yoffset=8 xadvance=19 page=0 chnl=0 -char id=89 x=467 y=325 width=23 height=24 xoffset=-2 yoffset=8 xadvance=19 page=0 chnl=0 -char id=90 x=490 y=325 width=20 height=24 xoffset=-2 yoffset=8 xadvance=17 page=0 chnl=0 -char id=91 x=340 y=133 width=11 height=30 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 -char id=92 x=0 y=350 width=14 height=24 xoffset=-3 yoffset=8 xadvance=9 page=0 chnl=0 -char id=93 x=351 y=133 width=11 height=30 xoffset=-2 yoffset=6 xadvance=10 page=0 chnl=0 -char id=94 x=52 y=482 width=18 height=9 xoffset=-2 yoffset=8 xadvance=15 page=0 chnl=0 -char id=95 x=213 y=482 width=19 height=5 xoffset=-2 yoffset=31 xadvance=15 page=0 chnl=0 -char id=96 x=0 y=482 width=12 height=10 xoffset=-1 yoffset=5 xadvance=11 page=0 chnl=0 -char id=97 x=96 y=422 width=18 height=19 xoffset=-2 yoffset=13 xadvance=16 page=0 chnl=0 -char id=98 x=14 y=350 width=20 height=24 xoffset=-2 yoffset=8 xadvance=17 page=0 chnl=0 -char id=99 x=114 y=422 width=19 height=19 xoffset=-2 yoffset=13 xadvance=15 page=0 chnl=0 -char id=100 x=34 y=350 width=19 height=24 xoffset=-2 yoffset=8 xadvance=17 page=0 chnl=0 -char id=101 x=133 y=422 width=19 height=19 xoffset=-2 yoffset=13 xadvance=16 page=0 chnl=0 -char id=102 x=53 y=350 width=13 height=24 xoffset=-2 yoffset=8 xadvance=9 page=0 chnl=0 -char id=103 x=460 y=221 width=19 height=26 xoffset=-2 yoffset=13 xadvance=17 page=0 chnl=0 -char id=104 x=66 y=350 width=19 height=24 xoffset=-2 yoffset=8 xadvance=16 page=0 chnl=0 -char id=105 x=501 y=194 width=9 height=24 xoffset=-2 yoffset=8 xadvance=6 page=0 chnl=0 -char id=106 x=175 y=101 width=24 height=31 xoffset=-10 yoffset=8 xadvance=6 page=0 chnl=0 -char id=107 x=85 y=350 width=19 height=24 xoffset=-2 yoffset=8 xadvance=15 page=0 chnl=0 -char id=108 x=500 y=164 width=8 height=24 xoffset=-2 yoffset=8 xadvance=6 page=0 chnl=0 -char id=109 x=152 y=422 width=27 height=19 xoffset=-2 yoffset=13 xadvance=24 page=0 chnl=0 -char id=110 x=179 y=422 width=19 height=19 xoffset=-2 yoffset=13 xadvance=16 page=0 chnl=0 -char id=111 x=198 y=422 width=20 height=19 xoffset=-2 yoffset=13 xadvance=17 page=0 chnl=0 -char id=112 x=479 y=221 width=20 height=26 xoffset=-2 yoffset=13 xadvance=17 page=0 chnl=0 -char id=113 x=0 y=248 width=34 height=26 xoffset=-2 yoffset=13 xadvance=16 page=0 chnl=0 -char id=114 x=218 y=422 width=13 height=19 xoffset=-2 yoffset=13 xadvance=10 page=0 chnl=0 -char id=115 x=231 y=422 width=18 height=19 xoffset=-2 yoffset=13 xadvance=15 page=0 chnl=0 -char id=116 x=456 y=398 width=17 height=23 xoffset=-2 yoffset=9 xadvance=15 page=0 chnl=0 -char id=117 x=249 y=422 width=19 height=19 xoffset=-2 yoffset=13 xadvance=16 page=0 chnl=0 -char id=118 x=268 y=422 width=19 height=19 xoffset=-2 yoffset=13 xadvance=16 page=0 chnl=0 -char id=119 x=287 y=422 width=26 height=19 xoffset=-2 yoffset=13 xadvance=23 page=0 chnl=0 -char id=120 x=313 y=422 width=19 height=19 xoffset=-2 yoffset=13 xadvance=16 page=0 chnl=0 -char id=121 x=34 y=248 width=19 height=26 xoffset=-2 yoffset=13 xadvance=16 page=0 chnl=0 -char id=122 x=332 y=422 width=17 height=19 xoffset=-2 yoffset=13 xadvance=14 page=0 chnl=0 -char id=123 x=362 y=133 width=14 height=30 xoffset=-2 yoffset=6 xadvance=11 page=0 chnl=0 -char id=124 x=376 y=133 width=7 height=30 xoffset=1 yoffset=6 xadvance=11 page=0 chnl=0 -char id=125 x=383 y=133 width=13 height=30 xoffset=-2 yoffset=6 xadvance=11 page=0 chnl=0 -char id=126 x=12 y=482 width=20 height=10 xoffset=-2 yoffset=15 xadvance=18 page=0 chnl=0 -char id=160 x=0 y=0 width=0 height=0 xoffset=-2 yoffset=0 xadvance=8 page=0 chnl=0 -char id=161 x=104 y=350 width=9 height=24 xoffset=-1 yoffset=8 xadvance=8 page=0 chnl=0 -char id=162 x=113 y=350 width=19 height=24 xoffset=-2 yoffset=8 xadvance=15 page=0 chnl=0 -char id=163 x=76 y=300 width=18 height=25 xoffset=-2 yoffset=7 xadvance=15 page=0 chnl=0 -char id=164 x=38 y=422 width=20 height=20 xoffset=-2 yoffset=10 xadvance=17 page=0 chnl=0 -char id=165 x=132 y=350 width=20 height=24 xoffset=-2 yoffset=8 xadvance=17 page=0 chnl=0 -char id=166 x=396 y=133 width=7 height=30 xoffset=1 yoffset=6 xadvance=11 page=0 chnl=0 -char id=167 x=103 y=164 width=19 height=29 xoffset=-2 yoffset=8 xadvance=17 page=0 chnl=0 -char id=168 x=100 y=482 width=15 height=7 xoffset=-1 yoffset=7 xadvance=13 page=0 chnl=0 -char id=169 x=94 y=300 width=24 height=25 xoffset=-2 yoffset=7 xadvance=22 page=0 chnl=0 -char id=170 x=353 y=463 width=11 height=12 xoffset=-1 yoffset=11 xadvance=11 page=0 chnl=0 -char id=171 x=193 y=463 width=18 height=15 xoffset=-2 yoffset=13 xadvance=15 page=0 chnl=0 -char id=172 x=349 y=422 width=21 height=19 xoffset=-2 yoffset=13 xadvance=19 page=0 chnl=0 -char id=173 x=0 y=0 width=0 height=0 xoffset=-2 yoffset=0 xadvance=8 page=0 chnl=0 -char id=174 x=211 y=463 width=16 height=15 xoffset=-1 yoffset=7 xadvance=15 page=0 chnl=0 -char id=175 x=115 y=482 width=16 height=7 xoffset=-1 yoffset=6 xadvance=15 page=0 chnl=0 -char id=176 x=316 y=463 width=13 height=13 xoffset=-1 yoffset=8 xadvance=12 page=0 chnl=0 -char id=177 x=0 y=422 width=19 height=22 xoffset=-2 yoffset=11 xadvance=17 page=0 chnl=0 -char id=178 x=227 y=463 width=11 height=15 xoffset=-2 yoffset=7 xadvance=8 page=0 chnl=0 -char id=179 x=238 y=463 width=11 height=15 xoffset=-2 yoffset=7 xadvance=9 page=0 chnl=0 -char id=180 x=32 y=482 width=12 height=10 xoffset=-1 yoffset=5 xadvance=11 page=0 chnl=0 -char id=182 x=122 y=164 width=22 height=29 xoffset=-2 yoffset=8 xadvance=19 page=0 chnl=0 -char id=183 x=131 y=482 width=9 height=7 xoffset=-2 yoffset=17 xadvance=6 page=0 chnl=0 -char id=184 x=44 y=482 width=8 height=10 xoffset=-1 yoffset=30 xadvance=7 page=0 chnl=0 -char id=185 x=249 y=463 width=8 height=15 xoffset=-2 yoffset=7 xadvance=6 page=0 chnl=0 -char id=186 x=364 y=463 width=13 height=12 xoffset=-1 yoffset=11 xadvance=11 page=0 chnl=0 -char id=187 x=257 y=463 width=18 height=15 xoffset=-2 yoffset=13 xadvance=15 page=0 chnl=0 -char id=188 x=53 y=248 width=22 height=26 xoffset=-2 yoffset=7 xadvance=20 page=0 chnl=0 -char id=189 x=75 y=248 width=23 height=26 xoffset=-2 yoffset=7 xadvance=20 page=0 chnl=0 -char id=190 x=98 y=248 width=23 height=26 xoffset=-2 yoffset=7 xadvance=20 page=0 chnl=0 -char id=191 x=118 y=300 width=19 height=25 xoffset=-2 yoffset=8 xadvance=16 page=0 chnl=0 -char id=192 x=401 y=0 width=24 height=33 xoffset=-2 yoffset=-1 xadvance=21 page=0 chnl=0 -char id=193 x=425 y=0 width=24 height=33 xoffset=-2 yoffset=-1 xadvance=21 page=0 chnl=0 -char id=194 x=449 y=0 width=24 height=33 xoffset=-2 yoffset=-1 xadvance=21 page=0 chnl=0 -char id=195 x=199 y=101 width=24 height=31 xoffset=-2 yoffset=1 xadvance=21 page=0 chnl=0 -char id=196 x=223 y=101 width=24 height=31 xoffset=-2 yoffset=1 xadvance=21 page=0 chnl=0 -char id=197 x=329 y=68 width=24 height=32 xoffset=-2 yoffset=0 xadvance=21 page=0 chnl=0 -char id=198 x=152 y=350 width=32 height=24 xoffset=-2 yoffset=8 xadvance=28 page=0 chnl=0 -char id=199 x=473 y=0 width=23 height=33 xoffset=-2 yoffset=7 xadvance=20 page=0 chnl=0 -char id=200 x=0 y=35 width=20 height=33 xoffset=-2 yoffset=-1 xadvance=17 page=0 chnl=0 -char id=201 x=20 y=35 width=20 height=33 xoffset=-2 yoffset=-1 xadvance=17 page=0 chnl=0 -char id=202 x=40 y=35 width=20 height=33 xoffset=-2 yoffset=-1 xadvance=17 page=0 chnl=0 -char id=203 x=247 y=101 width=20 height=31 xoffset=-2 yoffset=1 xadvance=17 page=0 chnl=0 -char id=204 x=496 y=0 width=13 height=33 xoffset=-5 yoffset=-1 xadvance=6 page=0 chnl=0 -char id=205 x=60 y=35 width=14 height=33 xoffset=-3 yoffset=-1 xadvance=6 page=0 chnl=0 -char id=206 x=74 y=35 width=20 height=33 xoffset=-5 yoffset=-1 xadvance=6 page=0 chnl=0 -char id=207 x=267 y=101 width=19 height=31 xoffset=-5 yoffset=1 xadvance=6 page=0 chnl=0 -char id=208 x=184 y=350 width=22 height=24 xoffset=-2 yoffset=8 xadvance=19 page=0 chnl=0 -char id=209 x=286 y=101 width=22 height=31 xoffset=-2 yoffset=1 xadvance=19 page=0 chnl=0 -char id=210 x=94 y=35 width=24 height=33 xoffset=-2 yoffset=0 xadvance=21 page=0 chnl=0 -char id=211 x=118 y=35 width=24 height=33 xoffset=-2 yoffset=0 xadvance=21 page=0 chnl=0 -char id=212 x=19 y=0 width=24 height=34 xoffset=-2 yoffset=-1 xadvance=21 page=0 chnl=0 -char id=213 x=353 y=68 width=24 height=32 xoffset=-2 yoffset=1 xadvance=21 page=0 chnl=0 -char id=214 x=377 y=68 width=24 height=32 xoffset=-2 yoffset=1 xadvance=21 page=0 chnl=0 -char id=215 x=176 y=463 width=17 height=17 xoffset=-1 yoffset=11 xadvance=17 page=0 chnl=0 -char id=216 x=215 y=164 width=24 height=28 xoffset=-2 yoffset=6 xadvance=21 page=0 chnl=0 -char id=217 x=43 y=0 width=21 height=34 xoffset=-2 yoffset=-1 xadvance=19 page=0 chnl=0 -char id=218 x=64 y=0 width=21 height=34 xoffset=-2 yoffset=-1 xadvance=19 page=0 chnl=0 -char id=219 x=85 y=0 width=21 height=34 xoffset=-2 yoffset=-1 xadvance=19 page=0 chnl=0 -char id=220 x=401 y=68 width=21 height=32 xoffset=-2 yoffset=1 xadvance=19 page=0 chnl=0 -char id=221 x=142 y=35 width=23 height=33 xoffset=-2 yoffset=-1 xadvance=19 page=0 chnl=0 -char id=222 x=206 y=350 width=20 height=24 xoffset=-2 yoffset=8 xadvance=17 page=0 chnl=0 -char id=223 x=137 y=300 width=19 height=25 xoffset=-2 yoffset=7 xadvance=16 page=0 chnl=0 -char id=224 x=428 y=164 width=18 height=27 xoffset=-2 yoffset=5 xadvance=16 page=0 chnl=0 -char id=225 x=446 y=164 width=18 height=27 xoffset=-2 yoffset=5 xadvance=16 page=0 chnl=0 -char id=226 x=464 y=164 width=18 height=27 xoffset=-2 yoffset=5 xadvance=16 page=0 chnl=0 -char id=227 x=121 y=248 width=18 height=26 xoffset=-2 yoffset=6 xadvance=16 page=0 chnl=0 -char id=228 x=139 y=248 width=18 height=26 xoffset=-2 yoffset=6 xadvance=16 page=0 chnl=0 -char id=229 x=482 y=164 width=18 height=27 xoffset=-2 yoffset=5 xadvance=16 page=0 chnl=0 -char id=230 x=370 y=422 width=29 height=19 xoffset=-2 yoffset=13 xadvance=26 page=0 chnl=0 -char id=231 x=0 y=194 width=19 height=27 xoffset=-2 yoffset=13 xadvance=15 page=0 chnl=0 -char id=232 x=19 y=194 width=19 height=27 xoffset=-2 yoffset=5 xadvance=16 page=0 chnl=0 -char id=233 x=38 y=194 width=19 height=27 xoffset=-2 yoffset=5 xadvance=16 page=0 chnl=0 -char id=234 x=57 y=194 width=19 height=27 xoffset=-2 yoffset=5 xadvance=16 page=0 chnl=0 -char id=235 x=157 y=248 width=19 height=26 xoffset=-2 yoffset=6 xadvance=16 page=0 chnl=0 -char id=236 x=76 y=194 width=12 height=27 xoffset=-3 yoffset=5 xadvance=9 page=0 chnl=0 -char id=237 x=88 y=194 width=12 height=27 xoffset=-1 yoffset=5 xadvance=9 page=0 chnl=0 -char id=238 x=100 y=194 width=18 height=27 xoffset=-4 yoffset=5 xadvance=9 page=0 chnl=0 -char id=239 x=156 y=300 width=15 height=25 xoffset=-3 yoffset=7 xadvance=9 page=0 chnl=0 -char id=240 x=171 y=300 width=19 height=25 xoffset=-2 yoffset=7 xadvance=17 page=0 chnl=0 -char id=241 x=190 y=300 width=19 height=25 xoffset=-2 yoffset=7 xadvance=16 page=0 chnl=0 -char id=242 x=118 y=194 width=20 height=27 xoffset=-2 yoffset=5 xadvance=17 page=0 chnl=0 -char id=243 x=138 y=194 width=20 height=27 xoffset=-2 yoffset=5 xadvance=17 page=0 chnl=0 -char id=244 x=158 y=194 width=20 height=27 xoffset=-2 yoffset=5 xadvance=17 page=0 chnl=0 -char id=245 x=176 y=248 width=20 height=26 xoffset=-2 yoffset=6 xadvance=17 page=0 chnl=0 -char id=246 x=196 y=248 width=20 height=26 xoffset=-2 yoffset=6 xadvance=17 page=0 chnl=0 -char id=247 x=19 y=422 width=19 height=21 xoffset=-2 yoffset=9 xadvance=17 page=0 chnl=0 -char id=248 x=473 y=398 width=20 height=23 xoffset=-2 yoffset=11 xadvance=17 page=0 chnl=0 -char id=249 x=178 y=194 width=19 height=27 xoffset=-2 yoffset=5 xadvance=16 page=0 chnl=0 -char id=250 x=197 y=194 width=19 height=27 xoffset=-2 yoffset=5 xadvance=16 page=0 chnl=0 -char id=251 x=216 y=194 width=19 height=27 xoffset=-2 yoffset=5 xadvance=16 page=0 chnl=0 -char id=252 x=216 y=248 width=19 height=26 xoffset=-2 yoffset=6 xadvance=16 page=0 chnl=0 -char id=253 x=106 y=0 width=19 height=34 xoffset=-2 yoffset=5 xadvance=16 page=0 chnl=0 -char id=254 x=308 y=101 width=20 height=31 xoffset=-2 yoffset=8 xadvance=17 page=0 chnl=0 -char id=255 x=165 y=35 width=19 height=33 xoffset=-2 yoffset=6 xadvance=16 page=0 chnl=0 -char id=256 x=328 y=101 width=24 height=31 xoffset=-2 yoffset=1 xadvance=21 page=0 chnl=0 -char id=257 x=209 y=300 width=18 height=25 xoffset=-2 yoffset=7 xadvance=16 page=0 chnl=0 -char id=258 x=184 y=35 width=24 height=33 xoffset=-2 yoffset=-1 xadvance=21 page=0 chnl=0 -char id=259 x=235 y=194 width=18 height=27 xoffset=-2 yoffset=5 xadvance=16 page=0 chnl=0 -char id=260 x=352 y=101 width=24 height=31 xoffset=-2 yoffset=8 xadvance=21 page=0 chnl=0 -char id=261 x=235 y=248 width=18 height=26 xoffset=-2 yoffset=13 xadvance=16 page=0 chnl=0 -char id=262 x=208 y=35 width=23 height=33 xoffset=-2 yoffset=0 xadvance=20 page=0 chnl=0 -char id=263 x=253 y=194 width=19 height=27 xoffset=-2 yoffset=5 xadvance=15 page=0 chnl=0 -char id=266 x=422 y=68 width=23 height=32 xoffset=-2 yoffset=1 xadvance=20 page=0 chnl=0 -char id=267 x=253 y=248 width=19 height=26 xoffset=-2 yoffset=6 xadvance=15 page=0 chnl=0 -char id=268 x=125 y=0 width=23 height=34 xoffset=-2 yoffset=-1 xadvance=20 page=0 chnl=0 -char id=269 x=272 y=194 width=19 height=27 xoffset=-2 yoffset=5 xadvance=15 page=0 chnl=0 -char id=270 x=231 y=35 width=22 height=33 xoffset=-2 yoffset=-1 xadvance=19 page=0 chnl=0 -char id=271 x=227 y=300 width=25 height=25 xoffset=-2 yoffset=7 xadvance=21 page=0 chnl=0 -char id=273 x=226 y=350 width=20 height=24 xoffset=-2 yoffset=8 xadvance=17 page=0 chnl=0 -char id=274 x=376 y=101 width=20 height=31 xoffset=-2 yoffset=1 xadvance=17 page=0 chnl=0 -char id=275 x=252 y=300 width=19 height=25 xoffset=-2 yoffset=7 xadvance=16 page=0 chnl=0 -char id=276 x=253 y=35 width=20 height=33 xoffset=-2 yoffset=-1 xadvance=17 page=0 chnl=0 -char id=277 x=291 y=194 width=19 height=27 xoffset=-2 yoffset=5 xadvance=16 page=0 chnl=0 -char id=278 x=396 y=101 width=20 height=31 xoffset=-2 yoffset=1 xadvance=17 page=0 chnl=0 -char id=279 x=272 y=248 width=19 height=26 xoffset=-2 yoffset=6 xadvance=16 page=0 chnl=0 -char id=280 x=416 y=101 width=20 height=31 xoffset=-2 yoffset=8 xadvance=17 page=0 chnl=0 -char id=281 x=291 y=248 width=19 height=26 xoffset=-2 yoffset=13 xadvance=16 page=0 chnl=0 -char id=282 x=273 y=35 width=20 height=33 xoffset=-2 yoffset=-1 xadvance=17 page=0 chnl=0 -char id=283 x=310 y=194 width=19 height=27 xoffset=-2 yoffset=5 xadvance=16 page=0 chnl=0 -char id=286 x=148 y=0 width=24 height=34 xoffset=-2 yoffset=-1 xadvance=21 page=0 chnl=0 -char id=287 x=172 y=0 width=19 height=34 xoffset=-2 yoffset=5 xadvance=17 page=0 chnl=0 -char id=288 x=445 y=68 width=24 height=32 xoffset=-2 yoffset=1 xadvance=21 page=0 chnl=0 -char id=289 x=293 y=35 width=19 height=33 xoffset=-2 yoffset=6 xadvance=17 page=0 chnl=0 -char id=290 x=312 y=35 width=24 height=33 xoffset=-2 yoffset=7 xadvance=21 page=0 chnl=0 -char id=291 x=191 y=0 width=19 height=34 xoffset=-2 yoffset=5 xadvance=17 page=0 chnl=0 -char id=294 x=246 y=350 width=21 height=24 xoffset=-2 yoffset=8 xadvance=19 page=0 chnl=0 -char id=295 x=267 y=350 width=19 height=24 xoffset=-2 yoffset=8 xadvance=16 page=0 chnl=0 -char id=296 x=436 y=101 width=19 height=31 xoffset=-5 yoffset=1 xadvance=6 page=0 chnl=0 -char id=297 x=271 y=300 width=16 height=25 xoffset=-4 yoffset=7 xadvance=9 page=0 chnl=0 -char id=298 x=455 y=101 width=22 height=31 xoffset=-6 yoffset=1 xadvance=6 page=0 chnl=0 -char id=299 x=310 y=248 width=18 height=26 xoffset=-4 yoffset=6 xadvance=9 page=0 chnl=0 -char id=300 x=336 y=35 width=18 height=33 xoffset=-5 yoffset=-1 xadvance=6 page=0 chnl=0 -char id=301 x=329 y=194 width=14 height=27 xoffset=-3 yoffset=5 xadvance=9 page=0 chnl=0 -char id=302 x=477 y=101 width=12 height=31 xoffset=-4 yoffset=8 xadvance=6 page=0 chnl=0 -char id=303 x=489 y=101 width=12 height=31 xoffset=-4 yoffset=8 xadvance=6 page=0 chnl=0 -char id=304 x=501 y=101 width=9 height=31 xoffset=-2 yoffset=1 xadvance=6 page=0 chnl=0 -char id=305 x=399 y=422 width=9 height=19 xoffset=-2 yoffset=13 xadvance=6 page=0 chnl=0 -char id=306 x=287 y=300 width=23 height=25 xoffset=-2 yoffset=8 xadvance=21 page=0 chnl=0 -char id=307 x=0 y=133 width=18 height=31 xoffset=-4 yoffset=8 xadvance=12 page=0 chnl=0 -char id=310 x=469 y=68 width=23 height=32 xoffset=-2 yoffset=8 xadvance=19 page=0 chnl=0 -char id=311 x=492 y=68 width=19 height=32 xoffset=-2 yoffset=8 xadvance=15 page=0 chnl=0 -char id=313 x=354 y=35 width=19 height=33 xoffset=-2 yoffset=-1 xadvance=16 page=0 chnl=0 -char id=314 x=0 y=101 width=14 height=32 xoffset=-3 yoffset=0 xadvance=6 page=0 chnl=0 -char id=315 x=14 y=101 width=19 height=32 xoffset=-2 yoffset=8 xadvance=16 page=0 chnl=0 -char id=316 x=33 y=101 width=9 height=32 xoffset=-2 yoffset=8 xadvance=6 page=0 chnl=0 -char id=317 x=310 y=300 width=19 height=25 xoffset=-2 yoffset=7 xadvance=16 page=0 chnl=0 -char id=318 x=497 y=274 width=14 height=25 xoffset=-2 yoffset=7 xadvance=10 page=0 chnl=0 -char id=321 x=286 y=350 width=19 height=24 xoffset=-2 yoffset=8 xadvance=16 page=0 chnl=0 -char id=322 x=305 y=350 width=12 height=24 xoffset=-2 yoffset=8 xadvance=8 page=0 chnl=0 -char id=323 x=373 y=35 width=22 height=33 xoffset=-2 yoffset=-1 xadvance=19 page=0 chnl=0 -char id=324 x=343 y=194 width=19 height=27 xoffset=-2 yoffset=5 xadvance=16 page=0 chnl=0 -char id=325 x=42 y=101 width=22 height=32 xoffset=-2 yoffset=8 xadvance=19 page=0 chnl=0 -char id=326 x=362 y=194 width=19 height=27 xoffset=-2 yoffset=13 xadvance=16 page=0 chnl=0 -char id=327 x=395 y=35 width=22 height=33 xoffset=-2 yoffset=-1 xadvance=19 page=0 chnl=0 -char id=328 x=381 y=194 width=19 height=27 xoffset=-2 yoffset=5 xadvance=16 page=0 chnl=0 -char id=330 x=18 y=133 width=22 height=31 xoffset=-2 yoffset=8 xadvance=19 page=0 chnl=0 -char id=331 x=328 y=248 width=19 height=26 xoffset=-2 yoffset=13 xadvance=16 page=0 chnl=0 -char id=332 x=417 y=35 width=24 height=33 xoffset=-2 yoffset=0 xadvance=21 page=0 chnl=0 -char id=333 x=329 y=300 width=20 height=25 xoffset=-2 yoffset=7 xadvance=17 page=0 chnl=0 -char id=334 x=210 y=0 width=24 height=34 xoffset=-2 yoffset=-1 xadvance=21 page=0 chnl=0 -char id=335 x=400 y=194 width=20 height=27 xoffset=-2 yoffset=5 xadvance=17 page=0 chnl=0 -char id=336 x=234 y=0 width=24 height=34 xoffset=-2 yoffset=-1 xadvance=21 page=0 chnl=0 -char id=337 x=420 y=194 width=20 height=27 xoffset=-2 yoffset=5 xadvance=17 page=0 chnl=0 -char id=338 x=347 y=248 width=37 height=26 xoffset=-2 yoffset=7 xadvance=31 page=0 chnl=0 -char id=339 x=408 y=422 width=31 height=19 xoffset=-2 yoffset=13 xadvance=28 page=0 chnl=0 -char id=340 x=441 y=35 width=22 height=33 xoffset=-2 yoffset=-1 xadvance=19 page=0 chnl=0 -char id=341 x=440 y=194 width=14 height=27 xoffset=-2 yoffset=5 xadvance=10 page=0 chnl=0 -char id=342 x=64 y=101 width=22 height=32 xoffset=-2 yoffset=8 xadvance=19 page=0 chnl=0 -char id=343 x=454 y=194 width=13 height=27 xoffset=-2 yoffset=13 xadvance=10 page=0 chnl=0 -char id=344 x=463 y=35 width=22 height=33 xoffset=-2 yoffset=-1 xadvance=19 page=0 chnl=0 -char id=345 x=467 y=194 width=16 height=27 xoffset=-3 yoffset=5 xadvance=10 page=0 chnl=0 -char id=346 x=485 y=35 width=21 height=33 xoffset=-2 yoffset=0 xadvance=18 page=0 chnl=0 -char id=347 x=483 y=194 width=18 height=27 xoffset=-2 yoffset=5 xadvance=15 page=0 chnl=0 -char id=350 x=0 y=68 width=21 height=33 xoffset=-2 yoffset=7 xadvance=18 page=0 chnl=0 -char id=351 x=0 y=221 width=18 height=27 xoffset=-2 yoffset=13 xadvance=15 page=0 chnl=0 -char id=352 x=258 y=0 width=21 height=34 xoffset=-2 yoffset=-1 xadvance=18 page=0 chnl=0 -char id=353 x=18 y=221 width=18 height=27 xoffset=-2 yoffset=5 xadvance=15 page=0 chnl=0 -char id=354 x=86 y=101 width=21 height=32 xoffset=-2 yoffset=8 xadvance=18 page=0 chnl=0 -char id=355 x=40 y=133 width=17 height=31 xoffset=-2 yoffset=9 xadvance=15 page=0 chnl=0 -char id=356 x=21 y=68 width=21 height=33 xoffset=-2 yoffset=-1 xadvance=18 page=0 chnl=0 -char id=357 x=349 y=300 width=22 height=25 xoffset=-2 yoffset=7 xadvance=19 page=0 chnl=0 -char id=358 x=317 y=350 width=21 height=24 xoffset=-2 yoffset=8 xadvance=18 page=0 chnl=0 -char id=359 x=493 y=398 width=17 height=23 xoffset=-2 yoffset=9 xadvance=15 page=0 chnl=0 -char id=360 x=42 y=68 width=21 height=33 xoffset=-2 yoffset=0 xadvance=19 page=0 chnl=0 -char id=361 x=384 y=248 width=19 height=26 xoffset=-2 yoffset=6 xadvance=16 page=0 chnl=0 -char id=362 x=63 y=68 width=21 height=33 xoffset=-2 yoffset=0 xadvance=19 page=0 chnl=0 -char id=363 x=371 y=300 width=19 height=25 xoffset=-2 yoffset=7 xadvance=16 page=0 chnl=0 -char id=364 x=279 y=0 width=21 height=34 xoffset=-2 yoffset=-1 xadvance=19 page=0 chnl=0 -char id=365 x=36 y=221 width=19 height=27 xoffset=-2 yoffset=5 xadvance=16 page=0 chnl=0 -char id=366 x=300 y=0 width=21 height=34 xoffset=-2 yoffset=-1 xadvance=19 page=0 chnl=0 -char id=367 x=55 y=221 width=19 height=27 xoffset=-2 yoffset=5 xadvance=16 page=0 chnl=0 -char id=368 x=321 y=0 width=21 height=34 xoffset=-2 yoffset=-1 xadvance=19 page=0 chnl=0 -char id=369 x=239 y=164 width=19 height=28 xoffset=-2 yoffset=4 xadvance=16 page=0 chnl=0 -char id=370 x=57 y=133 width=21 height=31 xoffset=-2 yoffset=8 xadvance=19 page=0 chnl=0 -char id=371 x=403 y=248 width=19 height=26 xoffset=-2 yoffset=13 xadvance=16 page=0 chnl=0 -char id=372 x=84 y=68 width=31 height=33 xoffset=-2 yoffset=-1 xadvance=27 page=0 chnl=0 -char id=373 x=74 y=221 width=26 height=27 xoffset=-2 yoffset=5 xadvance=23 page=0 chnl=0 -char id=374 x=115 y=68 width=23 height=33 xoffset=-2 yoffset=-1 xadvance=19 page=0 chnl=0 -char id=375 x=342 y=0 width=19 height=34 xoffset=-2 yoffset=5 xadvance=16 page=0 chnl=0 -char id=376 x=78 y=133 width=23 height=31 xoffset=-2 yoffset=1 xadvance=19 page=0 chnl=0 -char id=377 x=138 y=68 width=20 height=33 xoffset=-2 yoffset=-1 xadvance=17 page=0 chnl=0 -char id=378 x=100 y=221 width=17 height=27 xoffset=-2 yoffset=5 xadvance=14 page=0 chnl=0 -char id=379 x=101 y=133 width=20 height=31 xoffset=-2 yoffset=1 xadvance=17 page=0 chnl=0 -char id=380 x=390 y=300 width=17 height=25 xoffset=-2 yoffset=7 xadvance=14 page=0 chnl=0 -char id=381 x=158 y=68 width=20 height=33 xoffset=-2 yoffset=-1 xadvance=17 page=0 chnl=0 -char id=382 x=117 y=221 width=17 height=27 xoffset=-2 yoffset=5 xadvance=14 page=0 chnl=0 -char id=900 x=466 y=463 width=8 height=11 xoffset=-2 yoffset=8 xadvance=5 page=0 chnl=0 -char id=901 x=474 y=463 width=32 height=11 xoffset=-17 yoffset=4 xadvance=0 page=0 chnl=0 -char id=902 x=338 y=350 width=25 height=24 xoffset=-2 yoffset=8 xadvance=22 page=0 chnl=0 -char id=903 x=70 y=482 width=9 height=8 xoffset=-2 yoffset=13 xadvance=6 page=0 chnl=0 -char id=904 x=363 y=350 width=25 height=24 xoffset=-2 yoffset=8 xadvance=22 page=0 chnl=0 -char id=905 x=388 y=350 width=26 height=24 xoffset=-2 yoffset=8 xadvance=24 page=0 chnl=0 -char id=906 x=414 y=350 width=14 height=24 xoffset=-2 yoffset=8 xadvance=11 page=0 chnl=0 -char id=908 x=422 y=248 width=27 height=26 xoffset=-2 yoffset=7 xadvance=25 page=0 chnl=0 -char id=910 x=428 y=350 width=28 height=24 xoffset=-2 yoffset=8 xadvance=24 page=0 chnl=0 -char id=911 x=407 y=300 width=28 height=25 xoffset=-2 yoffset=7 xadvance=25 page=0 chnl=0 -char id=912 x=258 y=164 width=17 height=28 xoffset=-3 yoffset=4 xadvance=13 page=0 chnl=0 -char id=915 x=456 y=350 width=19 height=24 xoffset=-2 yoffset=8 xadvance=16 page=0 chnl=0 -char id=916 x=475 y=350 width=24 height=24 xoffset=-2 yoffset=8 xadvance=21 page=0 chnl=0 -char id=920 x=449 y=248 width=24 height=26 xoffset=-2 yoffset=7 xadvance=21 page=0 chnl=0 -char id=923 x=0 y=374 width=22 height=24 xoffset=-2 yoffset=8 xadvance=19 page=0 chnl=0 -char id=926 x=22 y=374 width=20 height=24 xoffset=-2 yoffset=8 xadvance=17 page=0 chnl=0 -char id=928 x=42 y=374 width=22 height=24 xoffset=-2 yoffset=8 xadvance=19 page=0 chnl=0 -char id=931 x=64 y=374 width=20 height=24 xoffset=-2 yoffset=8 xadvance=17 page=0 chnl=0 -char id=934 x=84 y=374 width=26 height=24 xoffset=-2 yoffset=8 xadvance=23 page=0 chnl=0 -char id=936 x=110 y=374 width=24 height=24 xoffset=-2 yoffset=8 xadvance=21 page=0 chnl=0 -char id=937 x=435 y=300 width=24 height=25 xoffset=-2 yoffset=7 xadvance=21 page=0 chnl=0 -char id=940 x=275 y=164 width=22 height=28 xoffset=-2 yoffset=4 xadvance=19 page=0 chnl=0 -char id=941 x=297 y=164 width=18 height=28 xoffset=-2 yoffset=4 xadvance=15 page=0 chnl=0 -char id=942 x=0 y=0 width=19 height=35 xoffset=-2 yoffset=4 xadvance=16 page=0 chnl=0 -char id=943 x=315 y=164 width=11 height=28 xoffset=-2 yoffset=4 xadvance=8 page=0 chnl=0 -char id=944 x=326 y=164 width=19 height=28 xoffset=-2 yoffset=4 xadvance=16 page=0 chnl=0 -char id=945 x=439 y=422 width=22 height=19 xoffset=-2 yoffset=13 xadvance=19 page=0 chnl=0 -char id=946 x=121 y=133 width=19 height=31 xoffset=-2 yoffset=8 xadvance=16 page=0 chnl=0 -char id=947 x=473 y=248 width=19 height=26 xoffset=-2 yoffset=13 xadvance=16 page=0 chnl=0 -char id=948 x=134 y=374 width=20 height=24 xoffset=-2 yoffset=8 xadvance=17 page=0 chnl=0 -char id=949 x=461 y=422 width=18 height=19 xoffset=-2 yoffset=13 xadvance=15 page=0 chnl=0 -char id=950 x=140 y=133 width=18 height=31 xoffset=-2 yoffset=8 xadvance=15 page=0 chnl=0 -char id=951 x=492 y=248 width=19 height=26 xoffset=-2 yoffset=13 xadvance=16 page=0 chnl=0 -char id=952 x=459 y=300 width=20 height=25 xoffset=-2 yoffset=7 xadvance=18 page=0 chnl=0 -char id=953 x=479 y=422 width=11 height=19 xoffset=-2 yoffset=13 xadvance=8 page=0 chnl=0 -char id=954 x=490 y=422 width=19 height=19 xoffset=-2 yoffset=13 xadvance=15 page=0 chnl=0 -char id=955 x=154 y=374 width=20 height=24 xoffset=-2 yoffset=8 xadvance=17 page=0 chnl=0 -char id=956 x=0 y=274 width=19 height=26 xoffset=-2 yoffset=13 xadvance=16 page=0 chnl=0 -char id=958 x=158 y=133 width=18 height=31 xoffset=-2 yoffset=8 xadvance=15 page=0 chnl=0 -char id=960 x=0 y=444 width=22 height=19 xoffset=-2 yoffset=13 xadvance=18 page=0 chnl=0 -char id=961 x=19 y=274 width=20 height=26 xoffset=-2 yoffset=13 xadvance=17 page=0 chnl=0 -char id=962 x=39 y=274 width=19 height=26 xoffset=-2 yoffset=13 xadvance=15 page=0 chnl=0 -char id=963 x=22 y=444 width=22 height=19 xoffset=-2 yoffset=13 xadvance=19 page=0 chnl=0 -char id=964 x=44 y=444 width=19 height=19 xoffset=-2 yoffset=13 xadvance=15 page=0 chnl=0 -char id=965 x=63 y=444 width=19 height=19 xoffset=-2 yoffset=13 xadvance=16 page=0 chnl=0 -char id=966 x=176 y=133 width=26 height=31 xoffset=-2 yoffset=8 xadvance=23 page=0 chnl=0 -char id=967 x=58 y=274 width=19 height=26 xoffset=-2 yoffset=13 xadvance=16 page=0 chnl=0 -char id=968 x=202 y=133 width=24 height=31 xoffset=-2 yoffset=8 xadvance=21 page=0 chnl=0 -char id=969 x=82 y=444 width=25 height=19 xoffset=-2 yoffset=13 xadvance=23 page=0 chnl=0 -char id=970 x=479 y=300 width=14 height=25 xoffset=-3 yoffset=7 xadvance=10 page=0 chnl=0 -char id=971 x=77 y=274 width=19 height=26 xoffset=-2 yoffset=6 xadvance=16 page=0 chnl=0 -char id=972 x=345 y=164 width=20 height=28 xoffset=-2 yoffset=4 xadvance=17 page=0 chnl=0 -char id=973 x=365 y=164 width=19 height=28 xoffset=-2 yoffset=4 xadvance=16 page=0 chnl=0 -char id=974 x=384 y=164 width=25 height=28 xoffset=-2 yoffset=4 xadvance=23 page=0 chnl=0 -char id=1026 x=226 y=133 width=27 height=31 xoffset=-2 yoffset=8 xadvance=24 page=0 chnl=0 -char id=1027 x=178 y=68 width=19 height=33 xoffset=-2 yoffset=-1 xadvance=16 page=0 chnl=0 -char id=1028 x=96 y=274 width=23 height=26 xoffset=-2 yoffset=7 xadvance=20 page=0 chnl=0 -char id=1033 x=174 y=374 width=35 height=24 xoffset=-2 yoffset=8 xadvance=31 page=0 chnl=0 -char id=1034 x=209 y=374 width=31 height=24 xoffset=-2 yoffset=8 xadvance=27 page=0 chnl=0 -char id=1035 x=240 y=374 width=27 height=24 xoffset=-2 yoffset=8 xadvance=24 page=0 chnl=0 -char id=1036 x=197 y=68 width=23 height=33 xoffset=-2 yoffset=-1 xadvance=19 page=0 chnl=0 -char id=1037 x=220 y=68 width=22 height=33 xoffset=-2 yoffset=-1 xadvance=19 page=0 chnl=0 -char id=1038 x=361 y=0 width=21 height=34 xoffset=-2 yoffset=-1 xadvance=18 page=0 chnl=0 -char id=1039 x=403 y=133 width=22 height=30 xoffset=-2 yoffset=8 xadvance=18 page=0 chnl=0 -char id=1041 x=267 y=374 width=20 height=24 xoffset=-2 yoffset=8 xadvance=17 page=0 chnl=0 -char id=1044 x=425 y=133 width=26 height=30 xoffset=-2 yoffset=8 xadvance=23 page=0 chnl=0 -char id=1046 x=287 y=374 width=32 height=24 xoffset=-2 yoffset=8 xadvance=28 page=0 chnl=0 -char id=1047 x=119 y=274 width=21 height=26 xoffset=-2 yoffset=7 xadvance=18 page=0 chnl=0 -char id=1048 x=319 y=374 width=22 height=24 xoffset=-2 yoffset=8 xadvance=19 page=0 chnl=0 -char id=1049 x=242 y=68 width=22 height=33 xoffset=-2 yoffset=-1 xadvance=19 page=0 chnl=0 -char id=1051 x=341 y=374 width=23 height=24 xoffset=-2 yoffset=8 xadvance=20 page=0 chnl=0 -char id=1059 x=0 y=325 width=21 height=25 xoffset=-2 yoffset=8 xadvance=18 page=0 chnl=0 -char id=1062 x=451 y=133 width=24 height=30 xoffset=-2 yoffset=8 xadvance=21 page=0 chnl=0 -char id=1063 x=364 y=374 width=21 height=24 xoffset=-2 yoffset=8 xadvance=18 page=0 chnl=0 -char id=1064 x=385 y=374 width=29 height=24 xoffset=-2 yoffset=8 xadvance=26 page=0 chnl=0 -char id=1065 x=475 y=133 width=31 height=30 xoffset=-2 yoffset=8 xadvance=28 page=0 chnl=0 -char id=1066 x=414 y=374 width=26 height=24 xoffset=-2 yoffset=8 xadvance=23 page=0 chnl=0 -char id=1067 x=440 y=374 width=26 height=24 xoffset=-2 yoffset=8 xadvance=23 page=0 chnl=0 -char id=1068 x=466 y=374 width=20 height=24 xoffset=-2 yoffset=8 xadvance=17 page=0 chnl=0 -char id=1069 x=140 y=274 width=23 height=26 xoffset=-2 yoffset=7 xadvance=20 page=0 chnl=0 -char id=1070 x=163 y=274 width=30 height=26 xoffset=-2 yoffset=7 xadvance=27 page=0 chnl=0 -char id=1071 x=486 y=374 width=21 height=24 xoffset=-2 yoffset=8 xadvance=19 page=0 chnl=0 -char id=1073 x=134 y=221 width=20 height=27 xoffset=-2 yoffset=5 xadvance=17 page=0 chnl=0 -char id=1074 x=107 y=444 width=19 height=19 xoffset=-2 yoffset=13 xadvance=16 page=0 chnl=0 -char id=1075 x=126 y=444 width=14 height=19 xoffset=-2 yoffset=13 xadvance=11 page=0 chnl=0 -char id=1076 x=0 y=398 width=22 height=24 xoffset=-2 yoffset=13 xadvance=19 page=0 chnl=0 -char id=1078 x=140 y=444 width=25 height=19 xoffset=-2 yoffset=13 xadvance=22 page=0 chnl=0 -char id=1079 x=165 y=444 width=18 height=19 xoffset=-2 yoffset=13 xadvance=15 page=0 chnl=0 -char id=1080 x=183 y=444 width=19 height=19 xoffset=-2 yoffset=13 xadvance=16 page=0 chnl=0 -char id=1081 x=154 y=221 width=19 height=27 xoffset=-2 yoffset=5 xadvance=16 page=0 chnl=0 -char id=1083 x=202 y=444 width=20 height=19 xoffset=-2 yoffset=13 xadvance=17 page=0 chnl=0 -char id=1084 x=222 y=444 width=23 height=19 xoffset=-2 yoffset=13 xadvance=20 page=0 chnl=0 -char id=1085 x=245 y=444 width=19 height=19 xoffset=-2 yoffset=13 xadvance=16 page=0 chnl=0 -char id=1087 x=264 y=444 width=19 height=19 xoffset=-2 yoffset=13 xadvance=16 page=0 chnl=0 -char id=1090 x=283 y=444 width=19 height=19 xoffset=-2 yoffset=13 xadvance=15 page=0 chnl=0 -char id=1094 x=22 y=398 width=21 height=24 xoffset=-2 yoffset=13 xadvance=18 page=0 chnl=0 -char id=1095 x=302 y=444 width=19 height=19 xoffset=-2 yoffset=13 xadvance=16 page=0 chnl=0 -char id=1096 x=321 y=444 width=26 height=19 xoffset=-2 yoffset=13 xadvance=24 page=0 chnl=0 -char id=1097 x=43 y=398 width=29 height=24 xoffset=-2 yoffset=13 xadvance=26 page=0 chnl=0 -char id=1098 x=347 y=444 width=25 height=19 xoffset=-2 yoffset=13 xadvance=22 page=0 chnl=0 -char id=1099 x=372 y=444 width=25 height=19 xoffset=-2 yoffset=13 xadvance=23 page=0 chnl=0 -char id=1100 x=397 y=444 width=19 height=19 xoffset=-2 yoffset=13 xadvance=16 page=0 chnl=0 -char id=1101 x=416 y=444 width=18 height=19 xoffset=-2 yoffset=13 xadvance=16 page=0 chnl=0 -char id=1102 x=434 y=444 width=26 height=19 xoffset=-2 yoffset=13 xadvance=23 page=0 chnl=0 -char id=1103 x=460 y=444 width=18 height=19 xoffset=-2 yoffset=13 xadvance=16 page=0 chnl=0 -char id=1106 x=253 y=133 width=19 height=31 xoffset=-2 yoffset=8 xadvance=16 page=0 chnl=0 -char id=1107 x=173 y=221 width=14 height=27 xoffset=-2 yoffset=5 xadvance=11 page=0 chnl=0 -char id=1108 x=478 y=444 width=19 height=19 xoffset=-2 yoffset=13 xadvance=16 page=0 chnl=0 -char id=1113 x=0 y=463 width=31 height=19 xoffset=-2 yoffset=13 xadvance=27 page=0 chnl=0 -char id=1114 x=31 y=463 width=28 height=19 xoffset=-2 yoffset=13 xadvance=25 page=0 chnl=0 -char id=1116 x=187 y=221 width=19 height=27 xoffset=-2 yoffset=5 xadvance=15 page=0 chnl=0 -char id=1117 x=206 y=221 width=19 height=27 xoffset=-2 yoffset=5 xadvance=16 page=0 chnl=0 -char id=1118 x=382 y=0 width=19 height=34 xoffset=-2 yoffset=5 xadvance=16 page=0 chnl=0 -char id=1119 x=72 y=398 width=19 height=24 xoffset=-2 yoffset=13 xadvance=16 page=0 chnl=0 -char id=1168 x=0 y=164 width=19 height=30 xoffset=-2 yoffset=2 xadvance=16 page=0 chnl=0 -char id=1169 x=91 y=398 width=14 height=24 xoffset=-2 yoffset=8 xadvance=11 page=0 chnl=0 -char id=1170 x=105 y=398 width=21 height=24 xoffset=-2 yoffset=8 xadvance=18 page=0 chnl=0 -char id=1171 x=59 y=463 width=16 height=19 xoffset=-2 yoffset=13 xadvance=13 page=0 chnl=0 -char id=1174 x=19 y=164 width=34 height=30 xoffset=-2 yoffset=8 xadvance=30 page=0 chnl=0 -char id=1175 x=126 y=398 width=27 height=24 xoffset=-2 yoffset=13 xadvance=24 page=0 chnl=0 -char id=1176 x=107 y=101 width=21 height=32 xoffset=-2 yoffset=7 xadvance=18 page=0 chnl=0 -char id=1177 x=193 y=274 width=18 height=26 xoffset=-2 yoffset=13 xadvance=15 page=0 chnl=0 -char id=1178 x=53 y=164 width=25 height=30 xoffset=-2 yoffset=8 xadvance=22 page=0 chnl=0 -char id=1179 x=153 y=398 width=21 height=24 xoffset=-2 yoffset=13 xadvance=17 page=0 chnl=0 -char id=1184 x=174 y=398 width=29 height=24 xoffset=-2 yoffset=8 xadvance=25 page=0 chnl=0 -char id=1185 x=75 y=463 width=24 height=19 xoffset=-2 yoffset=13 xadvance=21 page=0 chnl=0 -char id=1186 x=144 y=164 width=24 height=29 xoffset=-2 yoffset=8 xadvance=21 page=0 chnl=0 -char id=1187 x=203 y=398 width=21 height=24 xoffset=-2 yoffset=13 xadvance=18 page=0 chnl=0 -char id=1194 x=128 y=101 width=23 height=32 xoffset=-2 yoffset=7 xadvance=20 page=0 chnl=0 -char id=1195 x=211 y=274 width=19 height=26 xoffset=-2 yoffset=13 xadvance=15 page=0 chnl=0 -char id=1202 x=78 y=164 width=25 height=30 xoffset=-2 yoffset=8 xadvance=21 page=0 chnl=0 -char id=1203 x=224 y=398 width=21 height=24 xoffset=-2 yoffset=13 xadvance=18 page=0 chnl=0 -char id=1206 x=168 y=164 width=23 height=29 xoffset=-2 yoffset=8 xadvance=20 page=0 chnl=0 -char id=1207 x=245 y=398 width=21 height=24 xoffset=-2 yoffset=13 xadvance=18 page=0 chnl=0 -char id=1210 x=266 y=398 width=21 height=24 xoffset=-2 yoffset=8 xadvance=18 page=0 chnl=0 -char id=1219 x=272 y=133 width=23 height=31 xoffset=-2 yoffset=8 xadvance=19 page=0 chnl=0 -char id=1220 x=230 y=274 width=19 height=26 xoffset=-2 yoffset=13 xadvance=15 page=0 chnl=0 -char id=1223 x=295 y=133 width=22 height=31 xoffset=-2 yoffset=8 xadvance=19 page=0 chnl=0 -char id=1224 x=249 y=274 width=19 height=26 xoffset=-2 yoffset=13 xadvance=16 page=0 chnl=0 -char id=1240 x=268 y=274 width=24 height=26 xoffset=-2 yoffset=7 xadvance=21 page=0 chnl=0 -char id=1241 x=99 y=463 width=19 height=19 xoffset=-2 yoffset=13 xadvance=16 page=0 chnl=0 -char id=1256 x=292 y=274 width=24 height=26 xoffset=-2 yoffset=7 xadvance=21 page=0 chnl=0 -char id=1257 x=118 y=463 width=20 height=19 xoffset=-2 yoffset=13 xadvance=17 page=0 chnl=0 -char id=1262 x=264 y=68 width=21 height=33 xoffset=-2 yoffset=0 xadvance=18 page=0 chnl=0 -char id=1263 x=285 y=68 width=19 height=33 xoffset=-2 yoffset=6 xadvance=16 page=0 chnl=0 -char id=1298 x=317 y=133 width=23 height=31 xoffset=-2 yoffset=8 xadvance=20 page=0 chnl=0 -char id=1299 x=316 y=274 width=20 height=26 xoffset=-2 yoffset=13 xadvance=17 page=0 chnl=0 -char id=8211 x=140 y=482 width=17 height=7 xoffset=-2 yoffset=17 xadvance=14 page=0 chnl=0 -char id=8212 x=157 y=482 width=23 height=7 xoffset=-2 yoffset=17 xadvance=20 page=0 chnl=0 -char id=8216 x=377 y=463 width=9 height=12 xoffset=-2 yoffset=6 xadvance=6 page=0 chnl=0 -char id=8217 x=386 y=463 width=9 height=12 xoffset=-2 yoffset=7 xadvance=6 page=0 chnl=0 -char id=8218 x=395 y=463 width=8 height=12 xoffset=-1 yoffset=25 xadvance=7 page=0 chnl=0 -char id=8220 x=403 y=463 width=15 height=12 xoffset=-2 yoffset=6 xadvance=12 page=0 chnl=0 -char id=8221 x=329 y=463 width=15 height=13 xoffset=-2 yoffset=7 xadvance=12 page=0 chnl=0 -char id=8222 x=418 y=463 width=15 height=12 xoffset=-1 yoffset=25 xadvance=13 page=0 chnl=0 -char id=8224 x=287 y=398 width=18 height=24 xoffset=-1 yoffset=8 xadvance=17 page=0 chnl=0 -char id=8225 x=305 y=398 width=18 height=24 xoffset=-1 yoffset=8 xadvance=17 page=0 chnl=0 -char id=8226 x=433 y=463 width=14 height=12 xoffset=-1 yoffset=13 xadvance=14 page=0 chnl=0 -char id=8230 x=180 y=482 width=33 height=7 xoffset=-2 yoffset=25 xadvance=30 page=0 chnl=0 -char id=8240 x=336 y=274 width=31 height=26 xoffset=-2 yoffset=7 xadvance=27 page=0 chnl=0 -char id=8249 x=275 y=463 width=11 height=15 xoffset=-2 yoffset=13 xadvance=7 page=0 chnl=0 -char id=8250 x=286 y=463 width=11 height=15 xoffset=-2 yoffset=13 xadvance=7 page=0 chnl=0 -char id=8260 x=367 y=274 width=33 height=26 xoffset=-9 yoffset=8 xadvance=4 page=0 chnl=0 -char id=8361 x=323 y=398 width=26 height=24 xoffset=-2 yoffset=8 xadvance=23 page=0 chnl=0 -char id=8363 x=349 y=398 width=20 height=24 xoffset=-2 yoffset=8 xadvance=17 page=0 chnl=0 -char id=8364 x=400 y=274 width=23 height=26 xoffset=-2 yoffset=7 xadvance=20 page=0 chnl=0 -char id=8365 x=369 y=398 width=22 height=24 xoffset=-2 yoffset=8 xadvance=19 page=0 chnl=0 -char id=8366 x=391 y=398 width=21 height=24 xoffset=-2 yoffset=8 xadvance=18 page=0 chnl=0 -char id=8369 x=412 y=398 width=22 height=24 xoffset=-2 yoffset=8 xadvance=18 page=0 chnl=0 -char id=8370 x=191 y=164 width=24 height=29 xoffset=-2 yoffset=5 xadvance=21 page=0 chnl=0 -char id=8372 x=423 y=274 width=21 height=26 xoffset=-2 yoffset=7 xadvance=18 page=0 chnl=0 -char id=8377 x=21 y=325 width=20 height=25 xoffset=-2 yoffset=7 xadvance=17 page=0 chnl=0 -char id=8378 x=434 y=398 width=22 height=24 xoffset=-2 yoffset=8 xadvance=19 page=0 chnl=0 -kernings count=54929 -kerning first=162 second=1263 amount=-1 -kerning first=305 second=232 amount=-1 -kerning first=70 second=332 amount=-2 -kerning first=1084 second=966 amount=-1 -kerning first=1090 second=275 amount=-1 -kerning first=910 second=289 amount=-4 -kerning first=951 second=221 amount=-5 -kerning first=1220 second=351 amount=-1 -kerning first=379 second=233 amount=-1 -kerning first=973 second=363 amount=-1 -kerning first=169 second=333 amount=-1 -kerning first=282 second=245 amount=-1 -kerning first=1065 second=290 amount=-1 -kerning first=191 second=949 amount=-1 -kerning first=194 second=257 amount=-1 -kerning first=74 second=271 amount=-1 -kerning first=217 second=194 amount=-2 -kerning first=338 second=84 amount=-5 -kerning first=916 second=234 amount=-1 -kerning first=1174 second=364 amount=-1 -kerning first=237 second=334 amount=-2 -kerning first=234 second=1090 amount=-1 -kerning first=952 second=376 amount=-5 -kerning first=117 second=346 amount=-1 -kerning first=1223 second=1035 amount=-5 -kerning first=971 second=8212 amount=-2 -kerning first=174 second=273 amount=-1 -kerning first=177 second=45 amount=-2 -kerning first=170 second=964 amount=-3 -kerning first=8240 second=113 amount=-1 -kerning first=8225 second=353 amount=-1 -kerning first=55 second=287 amount=-1 -kerning first=316 second=97 amount=-1 -kerning first=313 second=335 amount=-1 -kerning first=78 second=219 amount=-2 -kerning first=215 second=1108 amount=-1 -kerning first=221 second=109 amount=-3 -kerning first=1170 second=8216 amount=-3 -kerning first=238 second=965 amount=-1 -kerning first=244 second=46 amount=-1 -kerning first=364 second=196 amount=-2 -kerning first=950 second=8250 amount=-1 -kerning first=121 second=288 amount=-2 -kerning first=1036 second=248 amount=-2 -kerning first=178 second=220 amount=-2 -kerning first=289 second=350 amount=-1 -kerning first=59 second=232 amount=-1 -kerning first=196 second=1176 amount=-1 -kerning first=314 second=966 amount=-1 -kerning first=317 second=275 amount=-1 -kerning first=8364 second=225 amount=-1 -kerning first=79 second=374 amount=-3 -kerning first=219 second=1033 amount=-1 -kerning first=931 second=337 amount=-1 -kerning first=105 second=71 amount=-2 -kerning first=1179 second=940 amount=-1 -kerning first=365 second=351 amount=-1 -kerning first=958 second=953 amount=-1 -kerning first=962 second=261 amount=-1 -kerning first=125 second=233 amount=-1 -kerning first=40 second=245 amount=-1 -kerning first=179 second=375 amount=-1 -kerning first=197 second=8211 amount=-2 -kerning first=86 second=84 amount=-5 -kerning first=934 second=968 amount=-1 -kerning first=369 second=291 amount=-1 -kerning first=1048 second=113 amount=-1 -kerning first=177 second=8249 amount=-3 -kerning first=299 second=235 amount=-1 -kerning first=64 second=335 amount=-1 -kerning first=84 second=951 amount=-2 -kerning first=87 second=259 amount=-2 -kerning first=1117 second=212 amount=-2 -kerning first=944 second=224 amount=-1 -kerning first=1202 second=354 amount=-2 -kerning first=964 second=1184 amount=-5 -kerning first=967 second=366 amount=-2 -kerning first=163 second=336 amount=-2 -kerning first=276 second=248 amount=-1 -kerning first=45 second=350 amount=-1 -kerning first=1062 second=63 amount=-2 -kerning first=65 second=966 amount=-1 -kerning first=1085 second=225 amount=-1 -kerning first=211 second=197 amount=-2 -kerning first=332 second=87 amount=-2 -kerning first=1118 second=367 amount=-1 -kerning first=354 second=249 amount=-2 -kerning first=114 second=111 amount=-1 -kerning first=254 second=261 amount=-1 -kerning first=251 second=953 amount=-1 -kerning first=49 second=290 amount=-2 -kerning first=192 second=210 amount=-2 -kerning first=304 second=338 amount=-2 -kerning first=912 second=187 amount=-1 -kerning first=92 second=364 amount=-2 -kerning first=358 second=199 amount=-2 -kerning first=950 second=326 amount=-2 -kerning first=946 second=1079 amount=-1 -kerning first=258 second=211 amount=-2 -kerning first=375 second=1098 amount=-3 -kerning first=381 second=101 amount=-1 -kerning first=378 second=339 amount=-1 -kerning first=1026 second=251 amount=-1 -kerning first=53 second=235 amount=-1 -kerning first=193 second=365 amount=-1 -kerning first=910 second=1099 amount=-3 -kerning first=923 second=102 amount=-2 -kerning first=1171 second=943 amount=-1 -kerning first=1176 second=252 amount=-1 -kerning first=239 second=224 amount=-1 -kerning first=356 second=1118 amount=-2 -kerning first=958 second=39 amount=-3 -kerning first=256 second=1184 amount=-5 -kerning first=382 second=279 amount=-1 +info face="CoolveticaRg-Regular" size=32 bold=0 italic=0 charset="" unicode=1 stretchH=100 smooth=1 aa=1 padding=1,1,1,1 spacing=3,3 +common lineHeight=32 base=31 scaleW=1024 scaleH=1024 pages=1 packed=0 +page id=0 file="coolvetica.png" +chars count=829 +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=15 +char id=33 x=482 y=628 width=7 height=24 xoffset=1 yoffset=9 xadvance=8 page=0 chnl=15 +char id=34 x=106 y=1014 width=10 height=10 xoffset=-0 yoffset=9 xadvance=10 page=0 chnl=15 +char id=35 x=324 y=637 width=18 height=24 xoffset=-1 yoffset=9 xadvance=17 page=0 chnl=15 +char id=36 x=0 y=997 width=17 height=27 xoffset=-1 yoffset=8 xadvance=16 page=0 chnl=15 +char id=37 x=160 y=660 width=22 height=25 xoffset=-0 yoffset=8 xadvance=22 page=0 chnl=15 +char id=38 x=386 y=822 width=17 height=24 xoffset=-0 yoffset=9 xadvance=17 page=0 chnl=15 +char id=39 x=119 y=1014 width=5 height=10 xoffset=-0 yoffset=9 xadvance=5 page=0 chnl=15 +char id=40 x=426 y=994 width=10 height=30 xoffset=1 yoffset=7 xadvance=11 page=0 chnl=15 +char id=41 x=482 y=0 width=11 height=30 xoffset=-1 yoffset=7 xadvance=11 page=0 chnl=15 +char id=42 x=426 y=189 width=17 height=17 xoffset=0 yoffset=9 xadvance=18 page=0 chnl=15 +char id=43 x=345 y=278 width=18 height=18 xoffset=-0 yoffset=12 xadvance=17 page=0 chnl=15 +char id=44 x=482 y=1012 width=7 height=12 xoffset=-0 yoffset=26 xadvance=6 page=0 chnl=15 +char id=45 x=482 y=364 width=10 height=6 xoffset=-1 yoffset=19 xadvance=9 page=0 chnl=15 +char id=46 x=496 y=57 width=7 height=7 xoffset=-0 yoffset=26 xadvance=6 page=0 chnl=15 +char id=47 x=465 y=779 width=12 height=24 xoffset=-1 yoffset=9 xadvance=10 page=0 chnl=15 +char id=48 x=386 y=290 width=17 height=25 xoffset=-0 yoffset=8 xadvance=16 page=0 chnl=15 +char id=49 x=482 y=33 width=11 height=24 xoffset=-1 yoffset=9 xadvance=10 page=0 chnl=15 +char id=50 x=386 y=849 width=17 height=24 xoffset=-1 yoffset=8 xadvance=15 page=0 chnl=15 +char id=51 x=386 y=318 width=17 height=25 xoffset=-1 yoffset=8 xadvance=16 page=0 chnl=15 +char id=52 x=386 y=876 width=17 height=24 xoffset=-1 yoffset=9 xadvance=16 page=0 chnl=15 +char id=53 x=386 y=903 width=17 height=24 xoffset=-0 yoffset=9 xadvance=16 page=0 chnl=15 +char id=54 x=386 y=346 width=17 height=25 xoffset=-1 yoffset=8 xadvance=16 page=0 chnl=15 +char id=55 x=386 y=930 width=17 height=24 xoffset=-1 yoffset=9 xadvance=16 page=0 chnl=15 +char id=56 x=386 y=374 width=17 height=25 xoffset=-1 yoffset=8 xadvance=16 page=0 chnl=15 +char id=57 x=386 y=402 width=17 height=25 xoffset=-1 yoffset=8 xadvance=16 page=0 chnl=15 +char id=58 x=465 y=1006 width=7 height=18 xoffset=-1 yoffset=15 xadvance=6 page=0 chnl=15 +char id=59 x=446 y=1001 width=7 height=23 xoffset=-1 yoffset=15 xadvance=6 page=0 chnl=15 +char id=60 x=345 y=299 width=18 height=18 xoffset=-0 yoffset=11 xadvance=17 page=0 chnl=15 +char id=61 x=345 y=545 width=18 height=12 xoffset=-0 yoffset=14 xadvance=17 page=0 chnl=15 +char id=62 x=345 y=320 width=18 height=18 xoffset=-0 yoffset=11 xadvance=17 page=0 chnl=15 +char id=63 x=386 y=957 width=17 height=24 xoffset=-0 yoffset=8 xadvance=16 page=0 chnl=15 +char id=64 x=106 y=277 width=24 height=25 xoffset=-1 yoffset=10 xadvance=23 page=0 chnl=15 +char id=65 x=160 y=772 width=22 height=24 xoffset=-1 yoffset=9 xadvance=21 page=0 chnl=15 +char id=66 x=257 y=28 width=20 height=24 xoffset=-0 yoffset=9 xadvance=19 page=0 chnl=15 +char id=67 x=185 y=832 width=21 height=25 xoffset=-1 yoffset=8 xadvance=20 page=0 chnl=15 +char id=68 x=257 y=55 width=20 height=24 xoffset=-0 yoffset=9 xadvance=20 page=0 chnl=15 +char id=69 x=280 y=957 width=19 height=24 xoffset=-0 yoffset=9 xadvance=18 page=0 chnl=15 +char id=70 x=324 y=664 width=18 height=24 xoffset=-0 yoffset=9 xadvance=17 page=0 chnl=15 +char id=71 x=160 y=688 width=22 height=25 xoffset=-1 yoffset=8 xadvance=22 page=0 chnl=15 +char id=72 x=257 y=82 width=20 height=24 xoffset=-0 yoffset=9 xadvance=19 page=0 chnl=15 +char id=73 x=482 y=655 width=7 height=24 xoffset=-0 yoffset=9 xadvance=6 page=0 chnl=15 +char id=74 x=426 y=562 width=16 height=24 xoffset=-1 yoffset=9 xadvance=15 page=0 chnl=15 +char id=75 x=185 y=1000 width=21 height=24 xoffset=-0 yoffset=9 xadvance=20 page=0 chnl=15 +char id=76 x=386 y=984 width=17 height=24 xoffset=-0 yoffset=9 xadvance=17 page=0 chnl=15 +char id=77 x=134 y=586 width=23 height=24 xoffset=-0 yoffset=9 xadvance=23 page=0 chnl=15 +char id=78 x=257 y=109 width=20 height=24 xoffset=-0 yoffset=9 xadvance=19 page=0 chnl=15 +char id=79 x=134 y=418 width=23 height=25 xoffset=-1 yoffset=8 xadvance=22 page=0 chnl=15 +char id=80 x=324 y=691 width=18 height=24 xoffset=-0 yoffset=9 xadvance=18 page=0 chnl=15 +char id=81 x=106 y=771 width=23 height=32 xoffset=-1 yoffset=8 xadvance=22 page=0 chnl=15 +char id=82 x=257 y=136 width=20 height=24 xoffset=-0 yoffset=9 xadvance=19 page=0 chnl=15 +char id=83 x=234 y=879 width=20 height=25 xoffset=-1 yoffset=8 xadvance=19 page=0 chnl=15 +char id=84 x=257 y=163 width=20 height=24 xoffset=-1 yoffset=9 xadvance=18 page=0 chnl=15 +char id=85 x=257 y=190 width=20 height=24 xoffset=-0 yoffset=9 xadvance=19 page=0 chnl=15 +char id=86 x=210 y=28 width=21 height=24 xoffset=-1 yoffset=9 xadvance=19 page=0 chnl=15 +char id=87 x=44 y=146 width=29 height=24 xoffset=-1 yoffset=9 xadvance=28 page=0 chnl=15 +char id=88 x=210 y=55 width=21 height=24 xoffset=-1 yoffset=9 xadvance=20 page=0 chnl=15 +char id=89 x=210 y=82 width=21 height=24 xoffset=-1 yoffset=9 xadvance=20 page=0 chnl=15 +char id=90 x=280 y=984 width=19 height=24 xoffset=-1 yoffset=9 xadvance=18 page=0 chnl=15 +char id=91 x=482 y=216 width=10 height=30 xoffset=1 yoffset=7 xadvance=11 page=0 chnl=15 +char id=92 x=465 y=806 width=12 height=24 xoffset=-1 yoffset=9 xadvance=10 page=0 chnl=15 +char id=93 x=482 y=249 width=10 height=30 xoffset=-1 yoffset=7 xadvance=11 page=0 chnl=15 +char id=94 x=324 y=1015 width=16 height=9 xoffset=-1 yoffset=9 xadvance=15 page=0 chnl=15 +char id=95 x=345 y=571 width=18 height=4 xoffset=-1 yoffset=32 xadvance=16 page=0 chnl=15 +char id=96 x=482 y=342 width=10 height=8 xoffset=1 yoffset=7 xadvance=12 page=0 chnl=15 +char id=97 x=406 y=632 width=17 height=19 xoffset=-1 yoffset=14 xadvance=16 page=0 chnl=15 +char id=98 x=324 y=718 width=18 height=24 xoffset=-0 yoffset=8 xadvance=17 page=0 chnl=15 +char id=99 x=406 y=654 width=17 height=19 xoffset=-0 yoffset=14 xadvance=16 page=0 chnl=15 +char id=100 x=324 y=745 width=18 height=24 xoffset=-0 yoffset=8 xadvance=17 page=0 chnl=15 +char id=101 x=406 y=676 width=17 height=19 xoffset=-1 yoffset=14 xadvance=17 page=0 chnl=15 +char id=102 x=465 y=833 width=12 height=24 xoffset=-1 yoffset=8 xadvance=10 page=0 chnl=15 +char id=103 x=324 y=293 width=18 height=26 xoffset=-0 yoffset=14 xadvance=17 page=0 chnl=15 +char id=104 x=406 y=0 width=17 height=24 xoffset=-0 yoffset=8 xadvance=17 page=0 chnl=15 +char id=105 x=482 y=682 width=7 height=24 xoffset=-0 yoffset=8 xadvance=7 page=0 chnl=15 +char id=106 x=446 y=81 width=15 height=31 xoffset=-9 yoffset=8 xadvance=7 page=0 chnl=15 +char id=107 x=426 y=589 width=16 height=24 xoffset=-0 yoffset=8 xadvance=16 page=0 chnl=15 +char id=108 x=482 y=709 width=7 height=24 xoffset=-0 yoffset=8 xadvance=6 page=0 chnl=15 +char id=109 x=76 y=974 width=25 height=19 xoffset=-0 yoffset=14 xadvance=25 page=0 chnl=15 +char id=110 x=406 y=610 width=17 height=19 xoffset=-0 yoffset=14 xadvance=17 page=0 chnl=15 +char id=111 x=302 y=701 width=19 height=19 xoffset=-1 yoffset=14 xadvance=18 page=0 chnl=15 +char id=112 x=324 y=322 width=18 height=26 xoffset=-0 yoffset=14 xadvance=17 page=0 chnl=15 +char id=113 x=76 y=731 width=25 height=26 xoffset=-0 yoffset=14 xadvance=17 page=0 chnl=15 +char id=114 x=465 y=940 width=12 height=19 xoffset=-0 yoffset=14 xadvance=11 page=0 chnl=15 +char id=115 x=406 y=698 width=17 height=19 xoffset=-1 yoffset=14 xadvance=16 page=0 chnl=15 +char id=116 x=446 y=367 width=15 height=23 xoffset=-0 yoffset=10 xadvance=15 page=0 chnl=15 +char id=117 x=406 y=720 width=17 height=19 xoffset=-0 yoffset=14 xadvance=16 page=0 chnl=15 +char id=118 x=345 y=341 width=18 height=18 xoffset=-1 yoffset=14 xadvance=17 page=0 chnl=15 +char id=119 x=106 y=0 width=25 height=18 xoffset=-1 yoffset=14 xadvance=23 page=0 chnl=15 +char id=120 x=345 y=362 width=18 height=18 xoffset=-1 yoffset=14 xadvance=16 page=0 chnl=15 +char id=121 x=366 y=453 width=17 height=26 xoffset=-0 yoffset=14 xadvance=17 page=0 chnl=15 +char id=122 x=426 y=954 width=16 height=18 xoffset=-1 yoffset=14 xadvance=15 page=0 chnl=15 +char id=123 x=465 y=570 width=12 height=30 xoffset=-0 yoffset=7 xadvance=11 page=0 chnl=15 +char id=124 x=496 y=107 width=6 height=30 xoffset=3 yoffset=6 xadvance=11 page=0 chnl=15 +char id=125 x=465 y=603 width=12 height=30 xoffset=-1 yoffset=7 xadvance=11 page=0 chnl=15 +char id=126 x=345 y=560 width=18 height=8 xoffset=-0 yoffset=17 xadvance=18 page=0 chnl=15 +char id=161 x=482 y=736 width=7 height=24 xoffset=1 yoffset=9 xadvance=8 page=0 chnl=15 +char id=162 x=406 y=27 width=17 height=24 xoffset=-0 yoffset=9 xadvance=16 page=0 chnl=15 +char id=163 x=426 y=616 width=16 height=24 xoffset=-0 yoffset=8 xadvance=16 page=0 chnl=15 +char id=164 x=345 y=383 width=18 height=18 xoffset=-0 yoffset=11 xadvance=18 page=0 chnl=15 +char id=165 x=324 y=772 width=18 height=24 xoffset=-0 yoffset=9 xadvance=18 page=0 chnl=15 +char id=166 x=496 y=140 width=6 height=30 xoffset=3 yoffset=6 xadvance=11 page=0 chnl=15 +char id=167 x=345 y=927 width=17 height=29 xoffset=-0 yoffset=8 xadvance=18 page=0 chnl=15 +char id=168 x=465 y=527 width=13 height=6 xoffset=1 yoffset=8 xadvance=14 page=0 chnl=15 +char id=169 x=134 y=613 width=23 height=24 xoffset=-1 yoffset=8 xadvance=22 page=0 chnl=15 +char id=170 x=482 y=327 width=10 height=12 xoffset=0 yoffset=12 xadvance=11 page=0 chnl=15 +char id=171 x=280 y=1011 width=16 height=13 xoffset=-1 yoffset=14 xadvance=15 page=0 chnl=15 +char id=172 x=257 y=876 width=20 height=18 xoffset=-0 yoffset=14 xadvance=19 page=0 chnl=15 +char id=173 x=482 y=373 width=10 height=6 xoffset=-1 yoffset=19 xadvance=9 page=0 chnl=15 +char id=174 x=446 y=604 width=15 height=15 xoffset=0 yoffset=8 xadvance=15 page=0 chnl=15 +char id=175 x=446 y=662 width=15 height=5 xoffset=1 yoffset=8 xadvance=16 page=0 chnl=15 +char id=176 x=386 y=1011 width=12 height=13 xoffset=0 yoffset=8 xadvance=12 page=0 chnl=15 +char id=177 x=345 y=184 width=18 height=22 xoffset=-0 yoffset=12 xadvance=17 page=0 chnl=15 +char id=178 x=482 y=311 width=10 height=13 xoffset=-0 yoffset=8 xadvance=9 page=0 chnl=15 +char id=179 x=482 y=502 width=9 height=14 xoffset=-0 yoffset=8 xadvance=9 page=0 chnl=15 +char id=180 x=482 y=353 width=10 height=8 xoffset=1 yoffset=7 xadvance=12 page=0 chnl=15 +char id=181 x=406 y=324 width=17 height=23 xoffset=1 yoffset=11 xadvance=19 page=0 chnl=15 +char id=182 x=76 y=996 width=19 height=28 xoffset=-0 yoffset=8 xadvance=19 page=0 chnl=15 +char id=183 x=496 y=67 width=7 height=7 xoffset=-0 yoffset=17 xadvance=6 page=0 chnl=15 +char id=184 x=496 y=186 width=6 height=9 xoffset=1 yoffset=31 xadvance=7 page=0 chnl=15 +char id=185 x=482 y=996 width=7 height=13 xoffset=-0 yoffset=8 xadvance=6 page=0 chnl=15 +char id=186 x=160 y=1013 width=11 height=11 xoffset=0 yoffset=12 xadvance=12 page=0 chnl=15 +char id=187 x=446 y=38 width=16 height=13 xoffset=-1 yoffset=14 xadvance=15 page=0 chnl=15 +char id=188 x=185 y=860 width=21 height=25 xoffset=-0 yoffset=8 xadvance=20 page=0 chnl=15 +char id=189 x=185 y=888 width=21 height=25 xoffset=-0 yoffset=8 xadvance=20 page=0 chnl=15 +char id=190 x=160 y=716 width=22 height=25 xoffset=-0 yoffset=8 xadvance=21 page=0 chnl=15 +char id=191 x=406 y=54 width=17 height=24 xoffset=-0 yoffset=9 xadvance=16 page=0 chnl=15 +char id=192 x=160 y=140 width=22 height=31 xoffset=-1 yoffset=1 xadvance=21 page=0 chnl=15 +char id=193 x=160 y=174 width=22 height=31 xoffset=-1 yoffset=1 xadvance=21 page=0 chnl=15 +char id=194 x=134 y=968 width=22 height=32 xoffset=-1 yoffset=1 xadvance=21 page=0 chnl=15 +char id=195 x=160 y=310 width=22 height=30 xoffset=-1 yoffset=2 xadvance=21 page=0 chnl=15 +char id=196 x=160 y=343 width=22 height=30 xoffset=-1 yoffset=2 xadvance=21 page=0 chnl=15 +char id=197 x=160 y=0 width=22 height=32 xoffset=-1 yoffset=1 xadvance=21 page=0 chnl=15 +char id=198 x=0 y=760 width=31 height=24 xoffset=-1 yoffset=9 xadvance=29 page=0 chnl=15 +char id=199 x=185 y=362 width=21 height=32 xoffset=-1 yoffset=8 xadvance=20 page=0 chnl=15 +char id=200 x=280 y=176 width=19 height=31 xoffset=-0 yoffset=1 xadvance=18 page=0 chnl=15 +char id=201 x=280 y=210 width=19 height=31 xoffset=-0 yoffset=1 xadvance=18 page=0 chnl=15 +char id=202 x=280 y=36 width=19 height=32 xoffset=-0 yoffset=1 xadvance=18 page=0 chnl=15 +char id=203 x=280 y=380 width=19 height=30 xoffset=-0 yoffset=2 xadvance=18 page=0 chnl=15 +char id=204 x=482 y=114 width=10 height=31 xoffset=-3 yoffset=1 xadvance=6 page=0 chnl=15 +char id=205 x=482 y=148 width=10 height=31 xoffset=-1 yoffset=1 xadvance=6 page=0 chnl=15 +char id=206 x=446 y=677 width=14 height=32 xoffset=-4 yoffset=1 xadvance=6 page=0 chnl=15 +char id=207 x=465 y=141 width=13 height=30 xoffset=-3 yoffset=2 xadvance=6 page=0 chnl=15 +char id=208 x=210 y=109 width=21 height=24 xoffset=-1 yoffset=9 xadvance=20 page=0 chnl=15 +char id=209 x=234 y=686 width=20 height=30 xoffset=-0 yoffset=2 xadvance=19 page=0 chnl=15 +char id=210 x=106 y=806 width=23 height=32 xoffset=-1 yoffset=1 xadvance=22 page=0 chnl=15 +char id=211 x=106 y=841 width=23 height=32 xoffset=-1 yoffset=1 xadvance=22 page=0 chnl=15 +char id=212 x=106 y=876 width=23 height=32 xoffset=-1 yoffset=1 xadvance=22 page=0 chnl=15 +char id=213 x=106 y=946 width=23 height=31 xoffset=-1 yoffset=2 xadvance=22 page=0 chnl=15 +char id=214 x=106 y=980 width=23 height=31 xoffset=-1 yoffset=2 xadvance=22 page=0 chnl=15 +char id=215 x=446 y=622 width=15 height=15 xoffset=1 yoffset=13 xadvance=17 page=0 chnl=15 +char id=216 x=134 y=389 width=23 height=26 xoffset=-1 yoffset=7 xadvance=22 page=0 chnl=15 +char id=217 x=210 y=878 width=20 height=32 xoffset=-0 yoffset=1 xadvance=19 page=0 chnl=15 +char id=218 x=210 y=913 width=20 height=32 xoffset=-0 yoffset=1 xadvance=19 page=0 chnl=15 +char id=219 x=210 y=698 width=20 height=33 xoffset=-0 yoffset=1 xadvance=19 page=0 chnl=15 +char id=220 x=234 y=210 width=20 height=31 xoffset=-0 yoffset=2 xadvance=19 page=0 chnl=15 +char id=221 x=185 y=502 width=21 height=31 xoffset=-1 yoffset=1 xadvance=20 page=0 chnl=15 +char id=222 x=324 y=799 width=18 height=24 xoffset=-0 yoffset=9 xadvance=18 page=0 chnl=15 +char id=223 x=324 y=525 width=18 height=25 xoffset=-0 yoffset=8 xadvance=17 page=0 chnl=15 +char id=224 x=366 y=482 width=17 height=26 xoffset=-1 yoffset=7 xadvance=16 page=0 chnl=15 +char id=225 x=366 y=511 width=17 height=26 xoffset=-1 yoffset=7 xadvance=16 page=0 chnl=15 +char id=226 x=366 y=93 width=17 height=27 xoffset=-1 yoffset=6 xadvance=16 page=0 chnl=15 +char id=227 x=386 y=430 width=17 height=25 xoffset=-1 yoffset=8 xadvance=16 page=0 chnl=15 +char id=228 x=386 y=458 width=17 height=25 xoffset=-1 yoffset=8 xadvance=16 page=0 chnl=15 +char id=229 x=366 y=123 width=17 height=27 xoffset=-1 yoffset=6 xadvance=16 page=0 chnl=15 +char id=230 x=44 y=761 width=27 height=19 xoffset=-1 yoffset=14 xadvance=27 page=0 chnl=15 +char id=231 x=366 y=540 width=17 height=26 xoffset=-0 yoffset=14 xadvance=16 page=0 chnl=15 +char id=232 x=366 y=569 width=17 height=26 xoffset=-1 yoffset=7 xadvance=17 page=0 chnl=15 +char id=233 x=366 y=598 width=17 height=26 xoffset=-1 yoffset=7 xadvance=17 page=0 chnl=15 +char id=234 x=366 y=153 width=17 height=27 xoffset=-1 yoffset=6 xadvance=17 page=0 chnl=15 +char id=235 x=386 y=486 width=17 height=25 xoffset=-1 yoffset=8 xadvance=17 page=0 chnl=15 +char id=236 x=20 y=997 width=10 height=26 xoffset=-2 yoffset=7 xadvance=9 page=0 chnl=15 +char id=237 x=482 y=282 width=10 height=26 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=15 +char id=238 x=465 y=273 width=13 height=26 xoffset=-2 yoffset=6 xadvance=9 page=0 chnl=15 +char id=239 x=465 y=331 width=13 height=25 xoffset=-2 yoffset=8 xadvance=9 page=0 chnl=15 +char id=240 x=324 y=553 width=18 height=25 xoffset=-1 yoffset=8 xadvance=17 page=0 chnl=15 +char id=241 x=386 y=514 width=17 height=25 xoffset=-0 yoffset=8 xadvance=17 page=0 chnl=15 +char id=242 x=280 y=729 width=19 height=26 xoffset=-1 yoffset=7 xadvance=18 page=0 chnl=15 +char id=243 x=280 y=758 width=19 height=26 xoffset=-1 yoffset=7 xadvance=18 page=0 chnl=15 +char id=244 x=280 y=639 width=19 height=27 xoffset=-1 yoffset=6 xadvance=18 page=0 chnl=15 +char id=245 x=280 y=845 width=19 height=25 xoffset=-1 yoffset=8 xadvance=18 page=0 chnl=15 +char id=246 x=280 y=873 width=19 height=25 xoffset=-1 yoffset=8 xadvance=18 page=0 chnl=15 +char id=247 x=345 y=209 width=18 height=20 xoffset=-0 yoffset=10 xadvance=17 page=0 chnl=15 +char id=248 x=302 y=584 width=19 height=21 xoffset=-1 yoffset=13 xadvance=18 page=0 chnl=15 +char id=249 x=366 y=627 width=17 height=26 xoffset=-0 yoffset=7 xadvance=16 page=0 chnl=15 +char id=250 x=366 y=656 width=17 height=26 xoffset=-0 yoffset=7 xadvance=16 page=0 chnl=15 +char id=251 x=366 y=183 width=17 height=27 xoffset=-0 yoffset=6 xadvance=16 page=0 chnl=15 +char id=252 x=386 y=542 width=17 height=25 xoffset=-0 yoffset=8 xadvance=16 page=0 chnl=15 +char id=253 x=234 y=991 width=17 height=33 xoffset=-0 yoffset=7 xadvance=17 page=0 chnl=15 +char id=254 x=302 y=956 width=18 height=31 xoffset=-0 yoffset=8 xadvance=17 page=0 chnl=15 +char id=255 x=345 y=653 width=17 height=32 xoffset=-0 yoffset=8 xadvance=17 page=0 chnl=15 +char id=256 x=160 y=376 width=22 height=30 xoffset=-1 yoffset=2 xadvance=21 page=0 chnl=15 +char id=257 x=386 y=570 width=17 height=25 xoffset=-1 yoffset=8 xadvance=16 page=0 chnl=15 +char id=258 x=160 y=35 width=22 height=32 xoffset=-1 yoffset=1 xadvance=21 page=0 chnl=15 +char id=259 x=366 y=213 width=17 height=27 xoffset=-1 yoffset=6 xadvance=16 page=0 chnl=15 +char id=260 x=134 y=0 width=23 height=31 xoffset=-1 yoffset=9 xadvance=21 page=0 chnl=15 +char id=261 x=366 y=685 width=17 height=26 xoffset=-1 yoffset=14 xadvance=16 page=0 chnl=15 +char id=262 x=185 y=397 width=21 height=32 xoffset=-1 yoffset=1 xadvance=20 page=0 chnl=15 +char id=263 x=366 y=714 width=17 height=26 xoffset=-0 yoffset=7 xadvance=16 page=0 chnl=15 +char id=264 x=160 y=409 width=22 height=30 xoffset=0 yoffset=-3 xadvance=22 page=0 chnl=15 +char id=265 x=446 y=833 width=14 height=23 xoffset=0 yoffset=4 xadvance=15 page=0 chnl=15 +char id=266 x=185 y=536 width=21 height=31 xoffset=-1 yoffset=2 xadvance=20 page=0 chnl=15 +char id=267 x=386 y=598 width=17 height=25 xoffset=-0 yoffset=8 xadvance=16 page=0 chnl=15 +char id=268 x=185 y=326 width=21 height=33 xoffset=-1 yoffset=1 xadvance=20 page=0 chnl=15 +char id=269 x=366 y=243 width=17 height=27 xoffset=-0 yoffset=6 xadvance=16 page=0 chnl=15 +char id=270 x=210 y=948 width=20 height=32 xoffset=-0 yoffset=1 xadvance=20 page=0 chnl=15 +char id=271 x=134 y=446 width=23 height=25 xoffset=-0 yoffset=8 xadvance=21 page=0 chnl=15 +char id=272 x=210 y=136 width=21 height=24 xoffset=-1 yoffset=9 xadvance=20 page=0 chnl=15 +char id=273 x=302 y=0 width=19 height=24 xoffset=-0 yoffset=8 xadvance=17 page=0 chnl=15 +char id=274 x=280 y=413 width=19 height=30 xoffset=-0 yoffset=2 xadvance=18 page=0 chnl=15 +char id=275 x=386 y=626 width=17 height=25 xoffset=-1 yoffset=8 xadvance=17 page=0 chnl=15 +char id=276 x=280 y=71 width=19 height=32 xoffset=-0 yoffset=1 xadvance=18 page=0 chnl=15 +char id=277 x=366 y=273 width=17 height=27 xoffset=-1 yoffset=6 xadvance=17 page=0 chnl=15 +char id=278 x=280 y=446 width=19 height=30 xoffset=-0 yoffset=2 xadvance=18 page=0 chnl=15 +char id=279 x=386 y=654 width=17 height=25 xoffset=-1 yoffset=8 xadvance=17 page=0 chnl=15 +char id=280 x=280 y=244 width=19 height=31 xoffset=-0 yoffset=9 xadvance=18 page=0 chnl=15 +char id=281 x=366 y=743 width=17 height=26 xoffset=-1 yoffset=14 xadvance=17 page=0 chnl=15 +char id=282 x=280 y=106 width=19 height=32 xoffset=-0 yoffset=1 xadvance=18 page=0 chnl=15 +char id=283 x=366 y=303 width=17 height=27 xoffset=-1 yoffset=6 xadvance=17 page=0 chnl=15 +char id=284 x=106 y=148 width=24 height=30 xoffset=0 yoffset=-3 xadvance=24 page=0 chnl=15 +char id=285 x=345 y=894 width=17 height=30 xoffset=0 yoffset=4 xadvance=16 page=0 chnl=15 +char id=286 x=160 y=70 width=22 height=32 xoffset=-1 yoffset=1 xadvance=22 page=0 chnl=15 +char id=287 x=257 y=990 width=18 height=34 xoffset=-0 yoffset=6 xadvance=17 page=0 chnl=15 +char id=288 x=160 y=208 width=22 height=31 xoffset=-1 yoffset=2 xadvance=22 page=0 chnl=15 +char id=289 x=302 y=921 width=18 height=32 xoffset=-0 yoffset=8 xadvance=17 page=0 chnl=15 +char id=290 x=160 y=105 width=22 height=32 xoffset=-1 yoffset=8 xadvance=22 page=0 chnl=15 +char id=291 x=302 y=847 width=18 height=34 xoffset=-0 yoffset=6 xadvance=17 page=0 chnl=15 +char id=292 x=76 y=249 width=25 height=30 xoffset=-1 yoffset=-3 xadvance=24 page=0 chnl=15 +char id=293 x=324 y=102 width=18 height=30 xoffset=-1 yoffset=-3 xadvance=16 page=0 chnl=15 +char id=294 x=257 y=217 width=20 height=24 xoffset=-0 yoffset=9 xadvance=19 page=0 chnl=15 +char id=295 x=324 y=826 width=18 height=24 xoffset=-1 yoffset=8 xadvance=17 page=0 chnl=15 +char id=296 x=465 y=174 width=13 height=30 xoffset=-3 yoffset=2 xadvance=6 page=0 chnl=15 +char id=297 x=465 y=359 width=13 height=25 xoffset=-2 yoffset=8 xadvance=9 page=0 chnl=15 +char id=298 x=446 y=183 width=15 height=30 xoffset=-4 yoffset=2 xadvance=6 page=0 chnl=15 +char id=299 x=446 y=312 width=15 height=25 xoffset=-3 yoffset=8 xadvance=9 page=0 chnl=15 +char id=300 x=465 y=106 width=13 height=32 xoffset=-3 yoffset=1 xadvance=6 page=0 chnl=15 +char id=301 x=465 y=302 width=13 height=26 xoffset=-2 yoffset=6 xadvance=9 page=0 chnl=15 +char id=302 x=482 y=382 width=9 height=31 xoffset=-3 yoffset=9 xadvance=6 page=0 chnl=15 +char id=303 x=482 y=416 width=9 height=31 xoffset=-3 yoffset=8 xadvance=7 page=0 chnl=15 +char id=304 x=482 y=595 width=7 height=30 xoffset=-0 yoffset=2 xadvance=6 page=0 chnl=15 +char id=305 x=482 y=975 width=7 height=18 xoffset=-0 yoffset=14 xadvance=7 page=0 chnl=15 +char id=306 x=210 y=163 width=21 height=24 xoffset=-0 yoffset=9 xadvance=21 page=0 chnl=15 +char id=307 x=446 y=115 width=15 height=31 xoffset=-2 yoffset=8 xadvance=13 page=0 chnl=15 +char id=308 x=446 y=216 width=15 height=30 xoffset=-1 yoffset=-3 xadvance=13 page=0 chnl=15 +char id=309 x=446 y=712 width=14 height=30 xoffset=-4 yoffset=4 xadvance=9 page=0 chnl=15 +char id=310 x=185 y=570 width=21 height=31 xoffset=-0 yoffset=9 xadvance=20 page=0 chnl=15 +char id=311 x=426 y=283 width=16 height=31 xoffset=-0 yoffset=8 xadvance=16 page=0 chnl=15 +char id=312 x=302 y=809 width=19 height=16 xoffset=-1 yoffset=11 xadvance=16 page=0 chnl=15 +char id=313 x=324 y=0 width=18 height=31 xoffset=-1 yoffset=1 xadvance=17 page=0 chnl=15 +char id=314 x=482 y=182 width=10 height=31 xoffset=-1 yoffset=1 xadvance=6 page=0 chnl=15 +char id=315 x=345 y=758 width=17 height=31 xoffset=-0 yoffset=9 xadvance=17 page=0 chnl=15 +char id=316 x=482 y=561 width=7 height=31 xoffset=-0 yoffset=8 xadvance=6 page=0 chnl=15 +char id=317 x=386 y=682 width=17 height=25 xoffset=-0 yoffset=8 xadvance=17 page=0 chnl=15 +char id=318 x=465 y=723 width=12 height=25 xoffset=-0 yoffset=8 xadvance=11 page=0 chnl=15 +char id=319 x=210 y=406 width=21 height=23 xoffset=-1 yoffset=4 xadvance=20 page=0 chnl=15 +char id=320 x=465 y=860 width=12 height=24 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=15 +char id=321 x=406 y=81 width=17 height=24 xoffset=-0 yoffset=9 xadvance=17 page=0 chnl=15 +char id=322 x=482 y=60 width=11 height=24 xoffset=-1 yoffset=8 xadvance=9 page=0 chnl=15 +char id=323 x=234 y=244 width=20 height=31 xoffset=-0 yoffset=1 xadvance=19 page=0 chnl=15 +char id=324 x=366 y=772 width=17 height=26 xoffset=-0 yoffset=7 xadvance=17 page=0 chnl=15 +char id=325 x=234 y=278 width=20 height=31 xoffset=-0 yoffset=9 xadvance=19 page=0 chnl=15 +char id=326 x=366 y=801 width=17 height=26 xoffset=-0 yoffset=14 xadvance=17 page=0 chnl=15 +char id=327 x=210 y=983 width=20 height=32 xoffset=-0 yoffset=1 xadvance=19 page=0 chnl=15 +char id=328 x=366 y=830 width=17 height=26 xoffset=-0 yoffset=6 xadvance=17 page=0 chnl=15 +char id=329 x=160 y=961 width=22 height=23 xoffset=-1 yoffset=4 xadvance=20 page=0 chnl=15 +char id=330 x=234 y=312 width=20 height=31 xoffset=-0 yoffset=9 xadvance=19 page=0 chnl=15 +char id=331 x=366 y=859 width=17 height=26 xoffset=-0 yoffset=14 xadvance=17 page=0 chnl=15 +char id=332 x=134 y=34 width=23 height=31 xoffset=-1 yoffset=2 xadvance=22 page=0 chnl=15 +char id=333 x=280 y=901 width=19 height=25 xoffset=-1 yoffset=8 xadvance=18 page=0 chnl=15 +char id=334 x=106 y=911 width=23 height=32 xoffset=-1 yoffset=1 xadvance=22 page=0 chnl=15 +char id=335 x=280 y=669 width=19 height=27 xoffset=-1 yoffset=6 xadvance=18 page=0 chnl=15 +char id=336 x=106 y=735 width=23 height=33 xoffset=-1 yoffset=1 xadvance=22 page=0 chnl=15 +char id=337 x=280 y=699 width=19 height=27 xoffset=-1 yoffset=6 xadvance=18 page=0 chnl=15 +char id=338 x=0 y=177 width=35 height=25 xoffset=-1 yoffset=8 xadvance=31 page=0 chnl=15 +char id=339 x=44 y=304 width=29 height=19 xoffset=-1 yoffset=14 xadvance=28 page=0 chnl=15 +char id=340 x=234 y=346 width=20 height=31 xoffset=-0 yoffset=1 xadvance=19 page=0 chnl=15 +char id=341 x=465 y=636 width=12 height=26 xoffset=-0 yoffset=7 xadvance=11 page=0 chnl=15 +char id=342 x=234 y=380 width=20 height=31 xoffset=-0 yoffset=9 xadvance=19 page=0 chnl=15 +char id=343 x=465 y=665 width=12 height=26 xoffset=-0 yoffset=14 xadvance=11 page=0 chnl=15 +char id=344 x=234 y=0 width=20 height=32 xoffset=-0 yoffset=1 xadvance=19 page=0 chnl=15 +char id=345 x=446 y=777 width=14 height=26 xoffset=-2 yoffset=6 xadvance=11 page=0 chnl=15 +char id=346 x=234 y=35 width=20 height=32 xoffset=-1 yoffset=1 xadvance=19 page=0 chnl=15 +char id=347 x=366 y=888 width=17 height=26 xoffset=-1 yoffset=7 xadvance=16 page=0 chnl=15 +char id=348 x=426 y=351 width=16 height=30 xoffset=1 yoffset=-3 xadvance=18 page=0 chnl=15 +char id=349 x=465 y=442 width=13 height=23 xoffset=0 yoffset=4 xadvance=13 page=0 chnl=15 +char id=350 x=234 y=70 width=20 height=32 xoffset=-1 yoffset=8 xadvance=19 page=0 chnl=15 +char id=351 x=366 y=917 width=17 height=26 xoffset=-1 yoffset=14 xadvance=16 page=0 chnl=15 +char id=352 x=210 y=734 width=20 height=33 xoffset=-1 yoffset=1 xadvance=19 page=0 chnl=15 +char id=353 x=366 y=333 width=17 height=27 xoffset=-1 yoffset=6 xadvance=16 page=0 chnl=15 +char id=354 x=234 y=414 width=20 height=31 xoffset=-1 yoffset=9 xadvance=18 page=0 chnl=15 +char id=355 x=446 y=249 width=15 height=30 xoffset=-0 yoffset=10 xadvance=15 page=0 chnl=15 +char id=356 x=234 y=105 width=20 height=32 xoffset=-1 yoffset=1 xadvance=18 page=0 chnl=15 +char id=357 x=234 y=907 width=20 height=25 xoffset=-0 yoffset=8 xadvance=19 page=0 chnl=15 +char id=358 x=257 y=244 width=20 height=24 xoffset=-1 yoffset=9 xadvance=18 page=0 chnl=15 +char id=359 x=446 y=393 width=15 height=23 xoffset=-0 yoffset=10 xadvance=15 page=0 chnl=15 +char id=360 x=234 y=448 width=20 height=31 xoffset=-0 yoffset=2 xadvance=19 page=0 chnl=15 +char id=361 x=386 y=710 width=17 height=25 xoffset=-0 yoffset=8 xadvance=16 page=0 chnl=15 +char id=362 x=234 y=482 width=20 height=31 xoffset=-0 yoffset=2 xadvance=19 page=0 chnl=15 +char id=363 x=386 y=738 width=17 height=25 xoffset=-0 yoffset=8 xadvance=16 page=0 chnl=15 +char id=364 x=210 y=770 width=20 height=33 xoffset=-0 yoffset=1 xadvance=19 page=0 chnl=15 +char id=365 x=366 y=363 width=17 height=27 xoffset=-0 yoffset=6 xadvance=16 page=0 chnl=15 +char id=366 x=210 y=806 width=20 height=33 xoffset=-0 yoffset=1 xadvance=19 page=0 chnl=15 +char id=367 x=366 y=393 width=17 height=27 xoffset=-0 yoffset=6 xadvance=16 page=0 chnl=15 +char id=368 x=210 y=842 width=20 height=33 xoffset=-0 yoffset=1 xadvance=19 page=0 chnl=15 +char id=369 x=366 y=423 width=17 height=27 xoffset=-0 yoffset=6 xadvance=16 page=0 chnl=15 +char id=370 x=234 y=516 width=20 height=31 xoffset=-0 yoffset=9 xadvance=19 page=0 chnl=15 +char id=371 x=366 y=946 width=17 height=26 xoffset=-0 yoffset=14 xadvance=16 page=0 chnl=15 +char id=372 x=44 y=53 width=29 height=32 xoffset=-1 yoffset=1 xadvance=28 page=0 chnl=15 +char id=373 x=76 y=760 width=25 height=26 xoffset=-1 yoffset=6 xadvance=23 page=0 chnl=15 +char id=374 x=185 y=432 width=21 height=32 xoffset=-1 yoffset=1 xadvance=20 page=0 chnl=15 +char id=375 x=302 y=990 width=17 height=34 xoffset=-0 yoffset=6 xadvance=17 page=0 chnl=15 +char id=376 x=185 y=604 width=21 height=30 xoffset=-1 yoffset=2 xadvance=20 page=0 chnl=15 +char id=377 x=280 y=278 width=19 height=31 xoffset=-1 yoffset=1 xadvance=18 page=0 chnl=15 +char id=378 x=426 y=447 width=16 height=26 xoffset=-1 yoffset=7 xadvance=15 page=0 chnl=15 +char id=379 x=280 y=479 width=19 height=30 xoffset=-1 yoffset=2 xadvance=18 page=0 chnl=15 +char id=380 x=426 y=534 width=16 height=25 xoffset=-1 yoffset=8 xadvance=15 page=0 chnl=15 +char id=381 x=280 y=141 width=19 height=32 xoffset=-1 yoffset=1 xadvance=18 page=0 chnl=15 +char id=382 x=426 y=476 width=16 height=26 xoffset=-1 yoffset=6 xadvance=15 page=0 chnl=15 +char id=383 x=446 y=340 width=15 height=24 xoffset=-1 yoffset=3 xadvance=9 page=0 chnl=15 +char id=884 x=482 y=551 width=8 height=7 xoffset=2 yoffset=4 xadvance=11 page=0 chnl=15 +char id=885 x=496 y=77 width=7 height=7 xoffset=1 yoffset=26 xadvance=11 page=0 chnl=15 +char id=890 x=496 y=87 width=7 height=7 xoffset=2 yoffset=27 xadvance=11 page=0 chnl=15 +char id=891 x=446 y=963 width=14 height=16 xoffset=0 yoffset=11 xadvance=15 page=0 chnl=15 +char id=892 x=446 y=982 width=14 height=16 xoffset=0 yoffset=11 xadvance=15 page=0 chnl=15 +char id=893 x=465 y=0 width=14 height=16 xoffset=0 yoffset=11 xadvance=15 page=0 chnl=15 +char id=894 x=482 y=951 width=7 height=21 xoffset=1 yoffset=11 xadvance=9 page=0 chnl=15 +char id=900 x=496 y=173 width=6 height=10 xoffset=-0 yoffset=9 xadvance=5 page=0 chnl=15 +char id=901 x=446 y=68 width=16 height=10 xoffset=-15 yoffset=5 xadvance=0 page=0 chnl=15 +char id=902 x=134 y=640 width=23 height=24 xoffset=-0 yoffset=9 xadvance=22 page=0 chnl=15 +char id=903 x=496 y=97 width=7 height=7 xoffset=-0 yoffset=14 xadvance=6 page=0 chnl=15 +char id=904 x=134 y=667 width=23 height=24 xoffset=-0 yoffset=9 xadvance=22 page=0 chnl=15 +char id=905 x=106 y=305 width=24 height=24 xoffset=-0 yoffset=9 xadvance=24 page=0 chnl=15 +char id=906 x=465 y=887 width=12 height=24 xoffset=-0 yoffset=9 xadvance=11 page=0 chnl=15 +char id=908 x=44 y=878 width=26 height=25 xoffset=-0 yoffset=8 xadvance=25 page=0 chnl=15 +char id=910 x=76 y=789 width=25 height=24 xoffset=-0 yoffset=9 xadvance=24 page=0 chnl=15 +char id=911 x=44 y=934 width=26 height=24 xoffset=-0 yoffset=8 xadvance=25 page=0 chnl=15 +char id=912 x=426 y=416 width=16 height=28 xoffset=-1 yoffset=5 xadvance=13 page=0 chnl=15 +char id=913 x=160 y=799 width=22 height=24 xoffset=-1 yoffset=9 xadvance=21 page=0 chnl=15 +char id=914 x=257 y=271 width=20 height=24 xoffset=-0 yoffset=9 xadvance=19 page=0 chnl=15 +char id=915 x=406 y=108 width=17 height=24 xoffset=-0 yoffset=9 xadvance=17 page=0 chnl=15 +char id=916 x=160 y=826 width=22 height=24 xoffset=-1 yoffset=9 xadvance=21 page=0 chnl=15 +char id=917 x=302 y=27 width=19 height=24 xoffset=-0 yoffset=9 xadvance=18 page=0 chnl=15 +char id=918 x=302 y=54 width=19 height=24 xoffset=-1 yoffset=9 xadvance=18 page=0 chnl=15 +char id=919 x=257 y=298 width=20 height=24 xoffset=-0 yoffset=9 xadvance=19 page=0 chnl=15 +char id=920 x=134 y=474 width=23 height=25 xoffset=-0 yoffset=8 xadvance=22 page=0 chnl=15 +char id=921 x=482 y=763 width=7 height=24 xoffset=-0 yoffset=9 xadvance=6 page=0 chnl=15 +char id=922 x=210 y=190 width=21 height=24 xoffset=-0 yoffset=9 xadvance=20 page=0 chnl=15 +char id=923 x=210 y=217 width=21 height=24 xoffset=-1 yoffset=9 xadvance=19 page=0 chnl=15 +char id=924 x=134 y=694 width=23 height=24 xoffset=-0 yoffset=9 xadvance=23 page=0 chnl=15 +char id=925 x=257 y=325 width=20 height=24 xoffset=-0 yoffset=9 xadvance=19 page=0 chnl=15 +char id=926 x=302 y=81 width=19 height=24 xoffset=-1 yoffset=9 xadvance=18 page=0 chnl=15 +char id=927 x=134 y=502 width=23 height=25 xoffset=-1 yoffset=8 xadvance=22 page=0 chnl=15 +char id=928 x=257 y=352 width=20 height=24 xoffset=-0 yoffset=9 xadvance=19 page=0 chnl=15 +char id=929 x=324 y=853 width=18 height=24 xoffset=-0 yoffset=9 xadvance=18 page=0 chnl=15 +char id=931 x=302 y=108 width=19 height=24 xoffset=-1 yoffset=9 xadvance=18 page=0 chnl=15 +char id=932 x=257 y=379 width=20 height=24 xoffset=-1 yoffset=9 xadvance=18 page=0 chnl=15 +char id=933 x=210 y=244 width=21 height=24 xoffset=-1 yoffset=9 xadvance=20 page=0 chnl=15 +char id=934 x=106 y=332 width=24 height=24 xoffset=-1 yoffset=9 xadvance=23 page=0 chnl=15 +char id=935 x=210 y=271 width=21 height=24 xoffset=-1 yoffset=9 xadvance=20 page=0 chnl=15 +char id=936 x=160 y=853 width=22 height=24 xoffset=-0 yoffset=9 xadvance=22 page=0 chnl=15 +char id=937 x=160 y=880 width=22 height=24 xoffset=-1 yoffset=8 xadvance=21 page=0 chnl=15 +char id=938 x=465 y=207 width=13 height=30 xoffset=-3 yoffset=2 xadvance=6 page=0 chnl=15 +char id=939 x=185 y=637 width=21 height=30 xoffset=-1 yoffset=2 xadvance=20 page=0 chnl=15 +char id=940 x=234 y=848 width=20 height=28 xoffset=-0 yoffset=5 xadvance=19 page=0 chnl=15 +char id=941 x=366 y=0 width=17 height=28 xoffset=-1 yoffset=5 xadvance=16 page=0 chnl=15 +char id=942 x=345 y=578 width=17 height=35 xoffset=-0 yoffset=5 xadvance=17 page=0 chnl=15 +char id=943 x=482 y=450 width=9 height=28 xoffset=-0 yoffset=5 xadvance=8 page=0 chnl=15 +char id=944 x=366 y=31 width=17 height=28 xoffset=-0 yoffset=5 xadvance=16 page=0 chnl=15 +char id=945 x=257 y=832 width=20 height=19 xoffset=-0 yoffset=14 xadvance=19 page=0 chnl=15 +char id=946 x=345 y=688 width=17 height=32 xoffset=-0 yoffset=8 xadvance=17 page=0 chnl=15 +char id=947 x=324 y=351 width=18 height=26 xoffset=-1 yoffset=14 xadvance=17 page=0 chnl=15 +char id=948 x=324 y=581 width=18 height=25 xoffset=-0 yoffset=8 xadvance=18 page=0 chnl=15 +char id=949 x=406 y=742 width=17 height=19 xoffset=-1 yoffset=14 xadvance=16 page=0 chnl=15 +char id=950 x=426 y=317 width=16 height=31 xoffset=-0 yoffset=8 xadvance=16 page=0 chnl=15 +char id=951 x=366 y=975 width=17 height=26 xoffset=-0 yoffset=14 xadvance=17 page=0 chnl=15 +char id=952 x=324 y=609 width=18 height=25 xoffset=-0 yoffset=8 xadvance=18 page=0 chnl=15 +char id=953 x=482 y=481 width=9 height=18 xoffset=-0 yoffset=14 xadvance=8 page=0 chnl=15 +char id=954 x=406 y=962 width=17 height=18 xoffset=-0 yoffset=14 xadvance=16 page=0 chnl=15 +char id=955 x=302 y=135 width=19 height=24 xoffset=-1 yoffset=8 xadvance=18 page=0 chnl=15 +char id=956 x=386 y=0 width=17 height=26 xoffset=-0 yoffset=14 xadvance=16 page=0 chnl=15 +char id=957 x=345 y=404 width=18 height=18 xoffset=-1 yoffset=14 xadvance=17 page=0 chnl=15 +char id=958 x=426 y=248 width=16 height=32 xoffset=-0 yoffset=8 xadvance=16 page=0 chnl=15 +char id=959 x=302 y=723 width=19 height=19 xoffset=-1 yoffset=14 xadvance=18 page=0 chnl=15 +char id=960 x=257 y=897 width=20 height=18 xoffset=-1 yoffset=14 xadvance=19 page=0 chnl=15 +char id=961 x=324 y=380 width=18 height=26 xoffset=-0 yoffset=14 xadvance=17 page=0 chnl=15 +char id=962 x=386 y=29 width=17 height=26 xoffset=-0 yoffset=14 xadvance=16 page=0 chnl=15 +char id=963 x=257 y=854 width=20 height=19 xoffset=-0 yoffset=14 xadvance=19 page=0 chnl=15 +char id=964 x=406 y=983 width=17 height=18 xoffset=-1 yoffset=14 xadvance=16 page=0 chnl=15 +char id=965 x=406 y=764 width=17 height=19 xoffset=-0 yoffset=14 xadvance=16 page=0 chnl=15 +char id=966 x=106 y=80 width=24 height=31 xoffset=-0 yoffset=8 xadvance=24 page=0 chnl=15 +char id=967 x=324 y=409 width=18 height=26 xoffset=-1 yoffset=14 xadvance=16 page=0 chnl=15 +char id=968 x=160 y=242 width=22 height=31 xoffset=-0 yoffset=8 xadvance=22 page=0 chnl=15 +char id=969 x=106 y=594 width=24 height=19 xoffset=-0 yoffset=14 xadvance=23 page=0 chnl=15 +char id=970 x=465 y=751 width=12 height=25 xoffset=-1 yoffset=8 xadvance=10 page=0 chnl=15 +char id=971 x=386 y=766 width=17 height=25 xoffset=-0 yoffset=8 xadvance=16 page=0 chnl=15 +char id=972 x=280 y=577 width=19 height=28 xoffset=-1 yoffset=5 xadvance=18 page=0 chnl=15 +char id=973 x=366 y=62 width=17 height=28 xoffset=-0 yoffset=5 xadvance=16 page=0 chnl=15 +char id=974 x=106 y=246 width=24 height=28 xoffset=-0 yoffset=5 xadvance=23 page=0 chnl=15 +char id=976 x=426 y=643 width=16 height=24 xoffset=0 yoffset=3 xadvance=17 page=0 chnl=15 +char id=977 x=324 y=880 width=18 height=24 xoffset=-1 yoffset=3 xadvance=16 page=0 chnl=15 +char id=978 x=76 y=870 width=25 height=23 xoffset=-1 yoffset=4 xadvance=24 page=0 chnl=15 +char id=979 x=0 y=787 width=31 height=23 xoffset=-1 yoffset=4 xadvance=29 page=0 chnl=15 +char id=980 x=76 y=381 width=25 height=29 xoffset=-1 yoffset=-2 xadvance=24 page=0 chnl=15 +char id=981 x=345 y=792 width=17 height=31 xoffset=0 yoffset=3 xadvance=17 page=0 chnl=15 +char id=982 x=185 y=231 width=22 height=16 xoffset=-1 yoffset=11 xadvance=22 page=0 chnl=15 +char id=983 x=257 y=676 width=20 height=23 xoffset=-1 yoffset=11 xadvance=18 page=0 chnl=15 +char id=984 x=134 y=68 width=23 height=30 xoffset=0 yoffset=4 xadvance=24 page=0 chnl=15 +char id=985 x=426 y=724 width=16 height=23 xoffset=0 yoffset=11 xadvance=16 page=0 chnl=15 +char id=986 x=210 y=432 width=21 height=23 xoffset=0 yoffset=4 xadvance=22 page=0 chnl=15 +char id=987 x=406 y=135 width=17 height=24 xoffset=-1 yoffset=10 xadvance=14 page=0 chnl=15 +char id=988 x=302 y=324 width=19 height=23 xoffset=-1 yoffset=4 xadvance=18 page=0 chnl=15 +char id=989 x=426 y=750 width=16 height=23 xoffset=-1 yoffset=11 xadvance=15 page=0 chnl=15 +char id=990 x=257 y=702 width=20 height=23 xoffset=-1 yoffset=4 xadvance=19 page=0 chnl=15 +char id=991 x=426 y=776 width=16 height=23 xoffset=-1 yoffset=4 xadvance=15 page=0 chnl=15 +char id=992 x=76 y=282 width=25 height=30 xoffset=-1 yoffset=4 xadvance=24 page=0 chnl=15 +char id=993 x=280 y=787 width=19 height=26 xoffset=-1 yoffset=8 xadvance=18 page=0 chnl=15 +char id=994 x=44 y=385 width=28 height=30 xoffset=-1 yoffset=4 xadvance=27 page=0 chnl=15 +char id=995 x=44 y=605 width=27 height=23 xoffset=-1 yoffset=11 xadvance=25 page=0 chnl=15 +char id=996 x=210 y=458 width=21 height=23 xoffset=0 yoffset=4 xadvance=20 page=0 chnl=15 +char id=997 x=406 y=162 width=17 height=24 xoffset=0 yoffset=3 xadvance=17 page=0 chnl=15 +char id=998 x=160 y=442 width=22 height=30 xoffset=-1 yoffset=4 xadvance=22 page=0 chnl=15 +char id=999 x=446 y=566 width=15 height=16 xoffset=-1 yoffset=11 xadvance=15 page=0 chnl=15 +char id=1000 x=345 y=54 width=18 height=23 xoffset=0 yoffset=4 xadvance=18 page=0 chnl=15 +char id=1001 x=406 y=350 width=17 height=23 xoffset=0 yoffset=4 xadvance=18 page=0 chnl=15 +char id=1002 x=210 y=484 width=21 height=23 xoffset=0 yoffset=4 xadvance=21 page=0 chnl=15 +char id=1003 x=210 y=632 width=21 height=16 xoffset=-1 yoffset=11 xadvance=19 page=0 chnl=15 +char id=1004 x=134 y=721 width=23 height=24 xoffset=0 yoffset=3 xadvance=23 page=0 chnl=15 +char id=1005 x=426 y=209 width=17 height=17 xoffset=0 yoffset=10 xadvance=17 page=0 chnl=15 +char id=1006 x=406 y=376 width=17 height=23 xoffset=-1 yoffset=4 xadvance=16 page=0 chnl=15 +char id=1007 x=446 y=806 width=14 height=24 xoffset=-1 yoffset=3 xadvance=13 page=0 chnl=15 +char id=1008 x=257 y=918 width=20 height=16 xoffset=-1 yoffset=11 xadvance=18 page=0 chnl=15 +char id=1009 x=406 y=402 width=17 height=23 xoffset=0 yoffset=11 xadvance=17 page=0 chnl=15 +char id=1010 x=465 y=19 width=14 height=16 xoffset=0 yoffset=11 xadvance=15 page=0 chnl=15 +char id=1011 x=465 y=536 width=12 height=31 xoffset=-4 yoffset=3 xadvance=9 page=0 chnl=15 +char id=1012 x=134 y=775 width=23 height=23 xoffset=0 yoffset=4 xadvance=24 page=0 chnl=15 +char id=1013 x=465 y=38 width=14 height=16 xoffset=0 yoffset=11 xadvance=13 page=0 chnl=15 +char id=1014 x=465 y=57 width=14 height=16 xoffset=-1 yoffset=11 xadvance=13 page=0 chnl=15 +char id=1015 x=302 y=350 width=19 height=23 xoffset=-1 yoffset=4 xadvance=18 page=0 chnl=15 +char id=1016 x=345 y=826 width=17 height=31 xoffset=-1 yoffset=3 xadvance=16 page=0 chnl=15 +char id=1017 x=160 y=987 width=22 height=23 xoffset=0 yoffset=4 xadvance=22 page=0 chnl=15 +char id=1018 x=44 y=27 width=30 height=23 xoffset=-1 yoffset=4 xadvance=29 page=0 chnl=15 +char id=1019 x=185 y=0 width=22 height=23 xoffset=-1 yoffset=11 xadvance=21 page=0 chnl=15 +char id=1020 x=406 y=428 width=17 height=23 xoffset=-1 yoffset=11 xadvance=16 page=0 chnl=15 +char id=1021 x=185 y=26 width=22 height=23 xoffset=0 yoffset=4 xadvance=22 page=0 chnl=15 +char id=1022 x=185 y=52 width=22 height=23 xoffset=0 yoffset=4 xadvance=22 page=0 chnl=15 +char id=1023 x=185 y=78 width=22 height=23 xoffset=0 yoffset=4 xadvance=22 page=0 chnl=15 +char id=1024 x=280 y=312 width=19 height=31 xoffset=-0 yoffset=1 xadvance=18 page=0 chnl=15 +char id=1025 x=280 y=512 width=19 height=30 xoffset=-0 yoffset=2 xadvance=18 page=0 chnl=15 +char id=1026 x=44 y=783 width=26 height=31 xoffset=-1 yoffset=9 xadvance=25 page=0 chnl=15 +char id=1027 x=345 y=860 width=17 height=31 xoffset=-0 yoffset=1 xadvance=17 page=0 chnl=15 +char id=1028 x=185 y=916 width=21 height=25 xoffset=-1 yoffset=8 xadvance=20 page=0 chnl=15 +char id=1029 x=234 y=935 width=20 height=25 xoffset=-1 yoffset=8 xadvance=19 page=0 chnl=15 +char id=1030 x=482 y=790 width=7 height=24 xoffset=-0 yoffset=9 xadvance=6 page=0 chnl=15 +char id=1031 x=465 y=240 width=13 height=30 xoffset=-3 yoffset=2 xadvance=6 page=0 chnl=15 +char id=1032 x=426 y=670 width=16 height=24 xoffset=-1 yoffset=9 xadvance=15 page=0 chnl=15 +char id=1033 x=0 y=414 width=33 height=24 xoffset=-1 yoffset=9 xadvance=32 page=0 chnl=15 +char id=1034 x=44 y=173 width=29 height=24 xoffset=-0 yoffset=9 xadvance=28 page=0 chnl=15 +char id=1035 x=44 y=961 width=26 height=24 xoffset=-1 yoffset=9 xadvance=25 page=0 chnl=15 +char id=1036 x=234 y=550 width=20 height=31 xoffset=-0 yoffset=1 xadvance=20 page=0 chnl=15 +char id=1037 x=234 y=584 width=20 height=31 xoffset=-0 yoffset=1 xadvance=19 page=0 chnl=15 +char id=1038 x=280 y=0 width=19 height=33 xoffset=-0 yoffset=1 xadvance=19 page=0 chnl=15 +char id=1039 x=234 y=752 width=20 height=29 xoffset=-0 yoffset=9 xadvance=19 page=0 chnl=15 +char id=1040 x=160 y=907 width=22 height=24 xoffset=-1 yoffset=9 xadvance=21 page=0 chnl=15 +char id=1041 x=324 y=907 width=18 height=24 xoffset=-0 yoffset=9 xadvance=18 page=0 chnl=15 +char id=1042 x=257 y=406 width=20 height=24 xoffset=-0 yoffset=9 xadvance=19 page=0 chnl=15 +char id=1043 x=406 y=189 width=17 height=24 xoffset=-0 yoffset=9 xadvance=17 page=0 chnl=15 +char id=1044 x=76 y=413 width=25 height=29 xoffset=-1 yoffset=9 xadvance=23 page=0 chnl=15 +char id=1045 x=302 y=162 width=19 height=24 xoffset=-0 yoffset=9 xadvance=18 page=0 chnl=15 +char id=1046 x=44 y=0 width=30 height=24 xoffset=-1 yoffset=9 xadvance=29 page=0 chnl=15 +char id=1047 x=234 y=963 width=20 height=25 xoffset=-1 yoffset=8 xadvance=19 page=0 chnl=15 +char id=1048 x=257 y=433 width=20 height=24 xoffset=-0 yoffset=9 xadvance=19 page=0 chnl=15 +char id=1049 x=234 y=140 width=20 height=32 xoffset=-0 yoffset=1 xadvance=19 page=0 chnl=15 +char id=1050 x=210 y=298 width=21 height=24 xoffset=-0 yoffset=9 xadvance=20 page=0 chnl=15 +char id=1051 x=160 y=934 width=22 height=24 xoffset=-1 yoffset=9 xadvance=21 page=0 chnl=15 +char id=1052 x=134 y=748 width=23 height=24 xoffset=-0 yoffset=9 xadvance=23 page=0 chnl=15 +char id=1053 x=257 y=460 width=20 height=24 xoffset=-0 yoffset=9 xadvance=19 page=0 chnl=15 +char id=1054 x=134 y=530 width=23 height=25 xoffset=-1 yoffset=8 xadvance=22 page=0 chnl=15 +char id=1055 x=257 y=487 width=20 height=24 xoffset=-0 yoffset=9 xadvance=19 page=0 chnl=15 +char id=1056 x=324 y=934 width=18 height=24 xoffset=-0 yoffset=9 xadvance=18 page=0 chnl=15 +char id=1057 x=185 y=944 width=21 height=25 xoffset=-1 yoffset=8 xadvance=20 page=0 chnl=15 +char id=1058 x=257 y=514 width=20 height=24 xoffset=-1 yoffset=9 xadvance=18 page=0 chnl=15 +char id=1059 x=302 y=189 width=19 height=24 xoffset=-0 yoffset=9 xadvance=19 page=0 chnl=15 +char id=1060 x=106 y=359 width=24 height=24 xoffset=-1 yoffset=9 xadvance=23 page=0 chnl=15 +char id=1061 x=210 y=325 width=21 height=24 xoffset=-1 yoffset=9 xadvance=20 page=0 chnl=15 +char id=1062 x=160 y=475 width=22 height=29 xoffset=-0 yoffset=9 xadvance=21 page=0 chnl=15 +char id=1063 x=302 y=216 width=19 height=24 xoffset=-0 yoffset=9 xadvance=19 page=0 chnl=15 +char id=1064 x=44 y=524 width=27 height=24 xoffset=-0 yoffset=9 xadvance=27 page=0 chnl=15 +char id=1065 x=0 y=901 width=30 height=29 xoffset=-0 yoffset=9 xadvance=29 page=0 chnl=15 +char id=1066 x=76 y=816 width=25 height=24 xoffset=-1 yoffset=9 xadvance=23 page=0 chnl=15 +char id=1067 x=106 y=386 width=24 height=24 xoffset=-0 yoffset=9 xadvance=24 page=0 chnl=15 +char id=1068 x=324 y=961 width=18 height=24 xoffset=-0 yoffset=9 xadvance=18 page=0 chnl=15 +char id=1069 x=185 y=972 width=21 height=25 xoffset=-1 yoffset=8 xadvance=20 page=0 chnl=15 +char id=1070 x=44 y=451 width=28 height=25 xoffset=-0 yoffset=8 xadvance=28 page=0 chnl=15 +char id=1071 x=257 y=541 width=20 height=24 xoffset=-1 yoffset=9 xadvance=19 page=0 chnl=15 +char id=1072 x=406 y=786 width=17 height=19 xoffset=-1 yoffset=14 xadvance=16 page=0 chnl=15 +char id=1073 x=324 y=263 width=18 height=27 xoffset=-0 yoffset=6 xadvance=18 page=0 chnl=15 +char id=1074 x=426 y=0 width=17 height=18 xoffset=-0 yoffset=14 xadvance=17 page=0 chnl=15 +char id=1075 x=465 y=962 width=12 height=18 xoffset=-0 yoffset=14 xadvance=12 page=0 chnl=15 +char id=1076 x=210 y=510 width=21 height=23 xoffset=-1 yoffset=14 xadvance=19 page=0 chnl=15 +char id=1077 x=406 y=808 width=17 height=19 xoffset=-1 yoffset=14 xadvance=17 page=0 chnl=15 +char id=1078 x=106 y=638 width=24 height=18 xoffset=-1 yoffset=14 xadvance=22 page=0 chnl=15 +char id=1079 x=406 y=830 width=17 height=19 xoffset=-1 yoffset=14 xadvance=16 page=0 chnl=15 +char id=1080 x=426 y=21 width=17 height=18 xoffset=-0 yoffset=14 xadvance=17 page=0 chnl=15 +char id=1081 x=386 y=58 width=17 height=26 xoffset=-0 yoffset=6 xadvance=17 page=0 chnl=15 +char id=1082 x=426 y=42 width=17 height=18 xoffset=-0 yoffset=14 xadvance=16 page=0 chnl=15 +char id=1083 x=345 y=425 width=18 height=18 xoffset=-1 yoffset=14 xadvance=17 page=0 chnl=15 +char id=1084 x=210 y=611 width=21 height=18 xoffset=-0 yoffset=14 xadvance=21 page=0 chnl=15 +char id=1085 x=426 y=63 width=17 height=18 xoffset=-0 yoffset=14 xadvance=17 page=0 chnl=15 +char id=1086 x=302 y=745 width=19 height=19 xoffset=-1 yoffset=14 xadvance=18 page=0 chnl=15 +char id=1087 x=426 y=84 width=17 height=18 xoffset=-0 yoffset=14 xadvance=17 page=0 chnl=15 +char id=1088 x=324 y=438 width=18 height=26 xoffset=-0 yoffset=14 xadvance=17 page=0 chnl=15 +char id=1089 x=406 y=852 width=17 height=19 xoffset=-0 yoffset=14 xadvance=16 page=0 chnl=15 +char id=1090 x=426 y=105 width=17 height=18 xoffset=-1 yoffset=14 xadvance=16 page=0 chnl=15 +char id=1091 x=386 y=87 width=17 height=26 xoffset=-0 yoffset=14 xadvance=17 page=0 chnl=15 +char id=1092 x=106 y=114 width=24 height=31 xoffset=-0 yoffset=8 xadvance=24 page=0 chnl=15 +char id=1093 x=345 y=446 width=18 height=18 xoffset=-1 yoffset=14 xadvance=16 page=0 chnl=15 +char id=1094 x=302 y=376 width=19 height=23 xoffset=-0 yoffset=14 xadvance=19 page=0 chnl=15 +char id=1095 x=426 y=126 width=17 height=18 xoffset=-0 yoffset=14 xadvance=17 page=0 chnl=15 +char id=1096 x=106 y=21 width=25 height=18 xoffset=-0 yoffset=14 xadvance=24 page=0 chnl=15 +char id=1097 x=44 y=631 width=27 height=23 xoffset=-0 yoffset=14 xadvance=26 page=0 chnl=15 +char id=1098 x=134 y=905 width=23 height=18 xoffset=-1 yoffset=14 xadvance=22 page=0 chnl=15 +char id=1099 x=134 y=926 width=23 height=18 xoffset=-0 yoffset=14 xadvance=23 page=0 chnl=15 +char id=1100 x=426 y=147 width=17 height=18 xoffset=-0 yoffset=14 xadvance=17 page=0 chnl=15 +char id=1101 x=406 y=874 width=17 height=19 xoffset=-1 yoffset=14 xadvance=16 page=0 chnl=15 +char id=1102 x=106 y=616 width=24 height=19 xoffset=-0 yoffset=14 xadvance=24 page=0 chnl=15 +char id=1103 x=426 y=168 width=17 height=18 xoffset=-1 yoffset=14 xadvance=16 page=0 chnl=15 +char id=1104 x=386 y=116 width=17 height=26 xoffset=-1 yoffset=7 xadvance=17 page=0 chnl=15 +char id=1105 x=386 y=794 width=17 height=25 xoffset=-1 yoffset=8 xadvance=17 page=0 chnl=15 +char id=1106 x=324 y=34 width=18 height=31 xoffset=-1 yoffset=8 xadvance=17 page=0 chnl=15 +char id=1107 x=465 y=694 width=12 height=26 xoffset=-0 yoffset=7 xadvance=12 page=0 chnl=15 +char id=1108 x=406 y=896 width=17 height=19 xoffset=-0 yoffset=14 xadvance=16 page=0 chnl=15 +char id=1109 x=406 y=918 width=17 height=19 xoffset=-1 yoffset=14 xadvance=16 page=0 chnl=15 +char id=1110 x=482 y=817 width=7 height=24 xoffset=-0 yoffset=8 xadvance=7 page=0 chnl=15 +char id=1111 x=465 y=387 width=13 height=25 xoffset=-2 yoffset=8 xadvance=9 page=0 chnl=15 +char id=1112 x=446 y=149 width=15 height=31 xoffset=-9 yoffset=8 xadvance=7 page=0 chnl=15 +char id=1113 x=44 y=326 width=29 height=18 xoffset=-1 yoffset=14 xadvance=28 page=0 chnl=15 +char id=1114 x=76 y=209 width=26 height=18 xoffset=-0 yoffset=14 xadvance=25 page=0 chnl=15 +char id=1115 x=324 y=988 width=18 height=24 xoffset=-1 yoffset=8 xadvance=17 page=0 chnl=15 +char id=1116 x=426 y=505 width=16 height=26 xoffset=-0 yoffset=7 xadvance=16 page=0 chnl=15 +char id=1117 x=386 y=145 width=17 height=26 xoffset=-0 yoffset=7 xadvance=17 page=0 chnl=15 +char id=1118 x=345 y=616 width=17 height=34 xoffset=-0 yoffset=6 xadvance=17 page=0 chnl=15 +char id=1119 x=406 y=454 width=17 height=23 xoffset=-0 yoffset=14 xadvance=17 page=0 chnl=15 +char id=1120 x=0 y=92 width=38 height=23 xoffset=0 yoffset=4 xadvance=38 page=0 chnl=15 +char id=1121 x=185 y=250 width=22 height=16 xoffset=-1 yoffset=11 xadvance=21 page=0 chnl=15 +char id=1122 x=134 y=801 width=23 height=23 xoffset=-1 yoffset=4 xadvance=22 page=0 chnl=15 +char id=1123 x=302 y=243 width=19 height=24 xoffset=-1 yoffset=3 xadvance=18 page=0 chnl=15 +char id=1124 x=0 y=618 width=32 height=23 xoffset=-1 yoffset=4 xadvance=31 page=0 chnl=15 +char id=1125 x=106 y=659 width=24 height=16 xoffset=-1 yoffset=11 xadvance=22 page=0 chnl=15 +char id=1126 x=77 y=27 width=26 height=23 xoffset=-1 yoffset=4 xadvance=24 page=0 chnl=15 +char id=1127 x=210 y=651 width=21 height=16 xoffset=-1 yoffset=11 xadvance=19 page=0 chnl=15 +char id=1128 x=0 y=205 width=35 height=23 xoffset=-1 yoffset=4 xadvance=34 page=0 chnl=15 +char id=1129 x=44 y=347 width=29 height=16 xoffset=-1 yoffset=11 xadvance=27 page=0 chnl=15 +char id=1130 x=0 y=813 width=31 height=23 xoffset=-1 yoffset=4 xadvance=29 page=0 chnl=15 +char id=1131 x=106 y=678 width=24 height=16 xoffset=-1 yoffset=11 xadvance=23 page=0 chnl=15 +char id=1132 x=0 y=0 width=41 height=23 xoffset=-1 yoffset=4 xadvance=39 page=0 chnl=15 +char id=1133 x=0 y=670 width=32 height=16 xoffset=-1 yoffset=11 xadvance=30 page=0 chnl=15 +char id=1134 x=302 y=884 width=18 height=34 xoffset=-1 yoffset=0 xadvance=17 page=0 chnl=15 +char id=1135 x=446 y=282 width=15 height=27 xoffset=-1 yoffset=7 xadvance=13 page=0 chnl=15 +char id=1136 x=76 y=53 width=26 height=23 xoffset=-1 yoffset=4 xadvance=24 page=0 chnl=15 +char id=1137 x=185 y=104 width=22 height=23 xoffset=-1 yoffset=11 xadvance=21 page=0 chnl=15 +char id=1138 x=134 y=827 width=23 height=23 xoffset=0 yoffset=4 xadvance=24 page=0 chnl=15 +char id=1139 x=426 y=975 width=16 height=16 xoffset=0 yoffset=11 xadvance=16 page=0 chnl=15 +char id=1140 x=44 y=479 width=28 height=23 xoffset=-1 yoffset=4 xadvance=27 page=0 chnl=15 +char id=1141 x=257 y=937 width=20 height=16 xoffset=-1 yoffset=11 xadvance=19 page=0 chnl=15 +char id=1142 x=44 y=418 width=28 height=30 xoffset=-1 yoffset=-3 xadvance=27 page=0 chnl=15 +char id=1143 x=257 y=728 width=20 height=23 xoffset=-1 yoffset=4 xadvance=19 page=0 chnl=15 +char id=1144 x=0 y=144 width=36 height=30 xoffset=0 yoffset=4 xadvance=36 page=0 chnl=15 +char id=1145 x=44 y=200 width=29 height=23 xoffset=0 yoffset=11 xadvance=29 page=0 chnl=15 +char id=1146 x=44 y=906 width=26 height=25 xoffset=-1 yoffset=3 xadvance=25 page=0 chnl=15 +char id=1147 x=345 y=467 width=18 height=18 xoffset=0 yoffset=10 xadvance=19 page=0 chnl=15 +char id=1148 x=0 y=26 width=39 height=32 xoffset=0 yoffset=-5 xadvance=39 page=0 chnl=15 +char id=1149 x=44 y=849 width=26 height=26 xoffset=0 yoffset=1 xadvance=26 page=0 chnl=15 +char id=1150 x=0 y=61 width=38 height=28 xoffset=0 yoffset=-1 xadvance=38 page=0 chnl=15 +char id=1151 x=134 y=1003 width=22 height=21 xoffset=-1 yoffset=6 xadvance=21 page=0 chnl=15 +char id=1152 x=185 y=670 width=21 height=30 xoffset=0 yoffset=4 xadvance=22 page=0 chnl=15 +char id=1153 x=446 y=859 width=14 height=23 xoffset=0 yoffset=11 xadvance=15 page=0 chnl=15 +char id=1154 x=465 y=415 width=13 height=24 xoffset=-1 yoffset=3 xadvance=11 page=0 chnl=15 +char id=1155 x=465 y=95 width=14 height=8 xoffset=-7 yoffset=2 xadvance=0 page=0 chnl=15 +char id=1156 x=465 y=997 width=12 height=6 xoffset=-6 yoffset=2 xadvance=0 page=0 chnl=15 +char id=1157 x=496 y=198 width=6 height=8 xoffset=-3 yoffset=3 xadvance=0 page=0 chnl=15 +char id=1158 x=496 y=209 width=6 height=8 xoffset=-3 yoffset=3 xadvance=0 page=0 chnl=15 +char id=1159 x=210 y=1018 width=20 height=6 xoffset=-10 yoffset=1 xadvance=0 page=0 chnl=15 +char id=1160 x=0 y=326 width=34 height=26 xoffset=-17 yoffset=5 xadvance=0 page=0 chnl=15 +char id=1161 x=0 y=519 width=32 height=31 xoffset=-16 yoffset=2 xadvance=0 page=0 chnl=15 +char id=1162 x=44 y=988 width=25 height=36 xoffset=-1 yoffset=-3 xadvance=24 page=0 chnl=15 +char id=1163 x=280 y=816 width=19 height=26 xoffset=-1 yoffset=5 xadvance=18 page=0 chnl=15 +char id=1164 x=257 y=754 width=20 height=23 xoffset=-1 yoffset=4 xadvance=19 page=0 chnl=15 +char id=1165 x=426 y=697 width=16 height=24 xoffset=-1 yoffset=3 xadvance=16 page=0 chnl=15 +char id=1166 x=302 y=402 width=19 height=23 xoffset=-1 yoffset=4 xadvance=18 page=0 chnl=15 +char id=1167 x=345 y=80 width=18 height=23 xoffset=-2 yoffset=11 xadvance=16 page=0 chnl=15 +char id=1168 x=345 y=959 width=17 height=29 xoffset=-0 yoffset=3 xadvance=17 page=0 chnl=15 +char id=1169 x=465 y=914 width=12 height=23 xoffset=-0 yoffset=9 xadvance=12 page=0 chnl=15 +char id=1170 x=257 y=568 width=20 height=24 xoffset=-1 yoffset=9 xadvance=18 page=0 chnl=15 +char id=1171 x=446 y=545 width=15 height=18 xoffset=-1 yoffset=14 xadvance=13 page=0 chnl=15 +char id=1172 x=185 y=703 width=21 height=30 xoffset=-1 yoffset=4 xadvance=21 page=0 chnl=15 +char id=1173 x=345 y=106 width=18 height=23 xoffset=-1 yoffset=11 xadvance=17 page=0 chnl=15 +char id=1174 x=0 y=586 width=32 height=29 xoffset=-1 yoffset=9 xadvance=31 page=0 chnl=15 +char id=1175 x=76 y=79 width=26 height=23 xoffset=-1 yoffset=14 xadvance=24 page=0 chnl=15 +char id=1176 x=234 y=175 width=20 height=32 xoffset=-1 yoffset=8 xadvance=19 page=0 chnl=15 +char id=1177 x=386 y=174 width=17 height=26 xoffset=-1 yoffset=14 xadvance=16 page=0 chnl=15 +char id=1178 x=134 y=101 width=23 height=29 xoffset=-0 yoffset=9 xadvance=22 page=0 chnl=15 +char id=1179 x=302 y=428 width=19 height=23 xoffset=-0 yoffset=14 xadvance=18 page=0 chnl=15 +char id=1180 x=106 y=413 width=24 height=23 xoffset=-1 yoffset=4 xadvance=22 page=0 chnl=15 +char id=1181 x=345 y=488 width=18 height=16 xoffset=-1 yoffset=11 xadvance=16 page=0 chnl=15 +char id=1182 x=106 y=439 width=24 height=23 xoffset=-1 yoffset=4 xadvance=22 page=0 chnl=15 +char id=1183 x=345 y=0 width=18 height=24 xoffset=-1 yoffset=3 xadvance=16 page=0 chnl=15 +char id=1184 x=44 y=551 width=27 height=24 xoffset=-1 yoffset=9 xadvance=26 page=0 chnl=15 +char id=1185 x=134 y=947 width=23 height=18 xoffset=-1 yoffset=14 xadvance=21 page=0 chnl=15 +char id=1186 x=160 y=507 width=22 height=29 xoffset=-0 yoffset=9 xadvance=21 page=0 chnl=15 +char id=1187 x=302 y=454 width=19 height=23 xoffset=-0 yoffset=14 xadvance=19 page=0 chnl=15 +char id=1188 x=44 y=226 width=29 height=23 xoffset=-1 yoffset=4 xadvance=28 page=0 chnl=15 +char id=1189 x=185 y=269 width=22 height=16 xoffset=-1 yoffset=11 xadvance=20 page=0 chnl=15 +char id=1190 x=0 y=293 width=34 height=30 xoffset=-1 yoffset=4 xadvance=34 page=0 chnl=15 +char id=1191 x=44 y=657 width=27 height=23 xoffset=-1 yoffset=11 xadvance=26 page=0 chnl=15 +char id=1192 x=185 y=130 width=22 height=23 xoffset=0 yoffset=4 xadvance=22 page=0 chnl=15 +char id=1193 x=446 y=585 width=15 height=16 xoffset=0 yoffset=11 xadvance=15 page=0 chnl=15 +char id=1194 x=185 y=467 width=21 height=32 xoffset=-1 yoffset=8 xadvance=20 page=0 chnl=15 +char id=1195 x=386 y=203 width=17 height=26 xoffset=-0 yoffset=14 xadvance=16 page=0 chnl=15 +char id=1196 x=234 y=784 width=20 height=29 xoffset=0 yoffset=4 xadvance=20 page=0 chnl=15 +char id=1197 x=366 y=1004 width=16 height=20 xoffset=-1 yoffset=11 xadvance=14 page=0 chnl=15 +char id=1198 x=210 y=352 width=21 height=24 xoffset=-1 yoffset=9 xadvance=20 page=0 chnl=15 +char id=1199 x=324 y=467 width=18 height=26 xoffset=-1 yoffset=14 xadvance=17 page=0 chnl=15 +char id=1200 x=76 y=896 width=25 height=23 xoffset=-1 yoffset=4 xadvance=24 page=0 chnl=15 +char id=1201 x=345 y=132 width=18 height=23 xoffset=-1 yoffset=11 xadvance=16 page=0 chnl=15 +char id=1202 x=134 y=133 width=23 height=29 xoffset=-1 yoffset=9 xadvance=22 page=0 chnl=15 +char id=1203 x=257 y=780 width=20 height=23 xoffset=-1 yoffset=14 xadvance=18 page=0 chnl=15 +char id=1204 x=44 y=817 width=26 height=29 xoffset=0 yoffset=4 xadvance=26 page=0 chnl=15 +char id=1205 x=210 y=588 width=21 height=20 xoffset=-1 yoffset=11 xadvance=20 page=0 chnl=15 +char id=1206 x=160 y=539 width=22 height=29 xoffset=-0 yoffset=9 xadvance=21 page=0 chnl=15 +char id=1207 x=302 y=480 width=19 height=23 xoffset=-0 yoffset=14 xadvance=18 page=0 chnl=15 +char id=1208 x=134 y=853 width=23 height=23 xoffset=-1 yoffset=4 xadvance=21 page=0 chnl=15 +char id=1209 x=345 y=507 width=18 height=16 xoffset=-1 yoffset=11 xadvance=17 page=0 chnl=15 +char id=1210 x=302 y=270 width=19 height=24 xoffset=-0 yoffset=9 xadvance=19 page=0 chnl=15 +char id=1211 x=406 y=216 width=17 height=24 xoffset=-0 yoffset=8 xadvance=17 page=0 chnl=15 +char id=1212 x=44 y=252 width=29 height=23 xoffset=-1 yoffset=4 xadvance=29 page=0 chnl=15 +char id=1213 x=302 y=789 width=19 height=17 xoffset=-1 yoffset=10 xadvance=18 page=0 chnl=15 +char id=1214 x=44 y=88 width=29 height=27 xoffset=-1 yoffset=4 xadvance=29 page=0 chnl=15 +char id=1215 x=302 y=608 width=19 height=21 xoffset=-1 yoffset=10 xadvance=18 page=0 chnl=15 +char id=1216 x=482 y=844 width=7 height=24 xoffset=-0 yoffset=9 xadvance=6 page=0 chnl=15 +char id=1217 x=0 y=696 width=31 height=29 xoffset=-1 yoffset=-2 xadvance=29 page=0 chnl=15 +char id=1218 x=106 y=569 width=24 height=22 xoffset=-1 yoffset=5 xadvance=23 page=0 chnl=15 +char id=1219 x=234 y=618 width=20 height=31 xoffset=-0 yoffset=9 xadvance=20 page=0 chnl=15 +char id=1220 x=386 y=232 width=17 height=26 xoffset=-0 yoffset=14 xadvance=16 page=0 chnl=15 +char id=1221 x=134 y=165 width=23 height=29 xoffset=-1 yoffset=4 xadvance=22 page=0 chnl=15 +char id=1222 x=345 y=232 width=18 height=20 xoffset=-1 yoffset=11 xadvance=16 page=0 chnl=15 +char id=1223 x=234 y=652 width=20 height=31 xoffset=-0 yoffset=9 xadvance=19 page=0 chnl=15 +char id=1224 x=386 y=261 width=17 height=26 xoffset=-0 yoffset=14 xadvance=17 page=0 chnl=15 +char id=1225 x=76 y=445 width=25 height=29 xoffset=-1 yoffset=4 xadvance=24 page=0 chnl=15 +char id=1226 x=302 y=632 width=19 height=20 xoffset=-1 yoffset=11 xadvance=18 page=0 chnl=15 +char id=1227 x=134 y=197 width=23 height=29 xoffset=-1 yoffset=4 xadvance=21 page=0 chnl=15 +char id=1228 x=345 y=255 width=18 height=20 xoffset=-1 yoffset=11 xadvance=17 page=0 chnl=15 +char id=1229 x=0 y=933 width=30 height=29 xoffset=-1 yoffset=4 xadvance=29 page=0 chnl=15 +char id=1230 x=185 y=208 width=22 height=20 xoffset=-1 yoffset=11 xadvance=21 page=0 chnl=15 +char id=1231 x=482 y=871 width=7 height=24 xoffset=-0 yoffset=9 xadvance=6 page=0 chnl=15 +char id=1232 x=76 y=477 width=25 height=29 xoffset=-1 yoffset=-2 xadvance=24 page=0 chnl=15 +char id=1233 x=426 y=906 width=16 height=22 xoffset=0 yoffset=5 xadvance=15 page=0 chnl=15 +char id=1234 x=76 y=509 width=25 height=29 xoffset=-1 yoffset=-2 xadvance=24 page=0 chnl=15 +char id=1235 x=426 y=802 width=16 height=23 xoffset=0 yoffset=4 xadvance=15 page=0 chnl=15 +char id=1236 x=0 y=839 width=31 height=23 xoffset=-2 yoffset=4 xadvance=29 page=0 chnl=15 +char id=1237 x=185 y=288 width=22 height=16 xoffset=0 yoffset=11 xadvance=22 page=0 chnl=15 +char id=1238 x=185 y=736 width=21 height=29 xoffset=-1 yoffset=-2 xadvance=20 page=0 chnl=15 +char id=1239 x=446 y=497 width=15 height=22 xoffset=0 yoffset=5 xadvance=15 page=0 chnl=15 +char id=1240 x=160 y=744 width=22 height=25 xoffset=-0 yoffset=8 xadvance=22 page=0 chnl=15 +char id=1241 x=406 y=940 width=17 height=19 xoffset=-0 yoffset=14 xadvance=17 page=0 chnl=15 +char id=1242 x=106 y=214 width=24 height=29 xoffset=-1 yoffset=-2 xadvance=24 page=0 chnl=15 +char id=1243 x=446 y=885 width=14 height=23 xoffset=0 yoffset=4 xadvance=15 page=0 chnl=15 +char id=1244 x=0 y=728 width=31 height=29 xoffset=-1 yoffset=-2 xadvance=29 page=0 chnl=15 +char id=1245 x=106 y=465 width=24 height=23 xoffset=-1 yoffset=4 xadvance=23 page=0 chnl=15 +char id=1246 x=345 y=991 width=17 height=29 xoffset=-1 yoffset=-2 xadvance=17 page=0 chnl=15 +char id=1247 x=446 y=911 width=14 height=23 xoffset=-1 yoffset=4 xadvance=13 page=0 chnl=15 +char id=1248 x=406 y=480 width=17 height=23 xoffset=-1 yoffset=4 xadvance=17 page=0 chnl=15 +char id=1249 x=446 y=419 width=15 height=23 xoffset=-1 yoffset=11 xadvance=15 page=0 chnl=15 +char id=1250 x=76 y=701 width=25 height=27 xoffset=-1 yoffset=0 xadvance=24 page=0 chnl=15 +char id=1251 x=302 y=655 width=19 height=20 xoffset=-1 yoffset=7 xadvance=18 page=0 chnl=15 +char id=1252 x=76 y=541 width=25 height=29 xoffset=-1 yoffset=-2 xadvance=24 page=0 chnl=15 +char id=1253 x=302 y=506 width=19 height=23 xoffset=-1 yoffset=4 xadvance=18 page=0 chnl=15 +char id=1254 x=134 y=229 width=23 height=29 xoffset=0 yoffset=-2 xadvance=24 page=0 chnl=15 +char id=1255 x=426 y=828 width=16 height=23 xoffset=0 yoffset=4 xadvance=16 page=0 chnl=15 +char id=1256 x=134 y=558 width=23 height=25 xoffset=-1 yoffset=8 xadvance=22 page=0 chnl=15 +char id=1257 x=302 y=767 width=19 height=19 xoffset=-1 yoffset=14 xadvance=18 page=0 chnl=15 +char id=1258 x=134 y=261 width=23 height=29 xoffset=0 yoffset=-2 xadvance=24 page=0 chnl=15 +char id=1259 x=426 y=854 width=16 height=23 xoffset=0 yoffset=4 xadvance=16 page=0 chnl=15 +char id=1260 x=185 y=768 width=21 height=29 xoffset=0 yoffset=-2 xadvance=22 page=0 chnl=15 +char id=1261 x=446 y=445 width=15 height=23 xoffset=-1 yoffset=4 xadvance=14 page=0 chnl=15 +char id=1262 x=280 y=346 width=19 height=31 xoffset=-0 yoffset=2 xadvance=19 page=0 chnl=15 +char id=1263 x=345 y=723 width=17 height=32 xoffset=-0 yoffset=8 xadvance=17 page=0 chnl=15 +char id=1264 x=76 y=573 width=25 height=29 xoffset=-1 yoffset=-2 xadvance=23 page=0 chnl=15 +char id=1265 x=324 y=135 width=18 height=30 xoffset=-1 yoffset=4 xadvance=16 page=0 chnl=15 +char id=1266 x=76 y=315 width=25 height=30 xoffset=-1 yoffset=-3 xadvance=23 page=0 chnl=15 +char id=1267 x=324 y=168 width=18 height=30 xoffset=-1 yoffset=4 xadvance=16 page=0 chnl=15 +char id=1268 x=134 y=293 width=23 height=29 xoffset=-1 yoffset=-2 xadvance=21 page=0 chnl=15 +char id=1269 x=345 y=158 width=18 height=23 xoffset=-1 yoffset=4 xadvance=17 page=0 chnl=15 +char id=1270 x=234 y=816 width=20 height=29 xoffset=-1 yoffset=4 xadvance=19 page=0 chnl=15 +char id=1271 x=406 y=1004 width=15 height=20 xoffset=-1 yoffset=11 xadvance=14 page=0 chnl=15 +char id=1272 x=0 y=965 width=30 height=29 xoffset=-1 yoffset=-2 xadvance=28 page=0 chnl=15 +char id=1273 x=134 y=879 width=23 height=23 xoffset=-1 yoffset=4 xadvance=22 page=0 chnl=15 +char id=1274 x=234 y=719 width=20 height=30 xoffset=-1 yoffset=4 xadvance=19 page=0 chnl=15 +char id=1275 x=446 y=471 width=15 height=23 xoffset=-1 yoffset=11 xadvance=14 page=0 chnl=15 +char id=1276 x=76 y=348 width=25 height=30 xoffset=-1 yoffset=4 xadvance=24 page=0 chnl=15 +char id=1277 x=426 y=880 width=16 height=23 xoffset=-1 yoffset=11 xadvance=16 page=0 chnl=15 +char id=1278 x=76 y=922 width=25 height=23 xoffset=-1 yoffset=4 xadvance=24 page=0 chnl=15 +char id=1279 x=345 y=526 width=18 height=16 xoffset=-1 yoffset=11 xadvance=16 page=0 chnl=15 +char id=1280 x=302 y=532 width=19 height=23 xoffset=0 yoffset=4 xadvance=19 page=0 chnl=15 +char id=1281 x=406 y=243 width=17 height=24 xoffset=0 yoffset=3 xadvance=16 page=0 chnl=15 +char id=1282 x=44 y=683 width=27 height=23 xoffset=0 yoffset=4 xadvance=26 page=0 chnl=15 +char id=1283 x=77 y=0 width=26 height=24 xoffset=0 yoffset=3 xadvance=25 page=0 chnl=15 +char id=1284 x=44 y=709 width=27 height=23 xoffset=0 yoffset=4 xadvance=26 page=0 chnl=15 +char id=1285 x=106 y=697 width=24 height=16 xoffset=0 yoffset=11 xadvance=23 page=0 chnl=15 +char id=1286 x=280 y=545 width=19 height=29 xoffset=0 yoffset=4 xadvance=19 page=0 chnl=15 +char id=1287 x=446 y=522 width=15 height=20 xoffset=0 yoffset=11 xadvance=15 page=0 chnl=15 +char id=1288 x=0 y=865 width=31 height=23 xoffset=-1 yoffset=4 xadvance=30 page=0 chnl=15 +char id=1289 x=76 y=230 width=26 height=16 xoffset=-1 yoffset=11 xadvance=25 page=0 chnl=15 +char id=1290 x=0 y=441 width=33 height=23 xoffset=-1 yoffset=4 xadvance=31 page=0 chnl=15 +char id=1291 x=44 y=505 width=28 height=16 xoffset=-1 yoffset=11 xadvance=26 page=0 chnl=15 +char id=1292 x=106 y=491 width=24 height=23 xoffset=0 yoffset=4 xadvance=24 page=0 chnl=15 +char id=1293 x=446 y=0 width=16 height=16 xoffset=0 yoffset=11 xadvance=15 page=0 chnl=15 +char id=1294 x=106 y=517 width=24 height=23 xoffset=0 yoffset=4 xadvance=23 page=0 chnl=15 +char id=1295 x=185 y=307 width=22 height=16 xoffset=-1 yoffset=11 xadvance=20 page=0 chnl=15 +char id=1296 x=406 y=506 width=17 height=23 xoffset=0 yoffset=4 xadvance=17 page=0 chnl=15 +char id=1297 x=465 y=76 width=14 height=16 xoffset=0 yoffset=11 xadvance=13 page=0 chnl=15 +char id=1298 x=160 y=276 width=22 height=31 xoffset=-1 yoffset=9 xadvance=21 page=0 chnl=15 +char id=1299 x=324 y=496 width=18 height=26 xoffset=-1 yoffset=14 xadvance=17 page=0 chnl=15 +char id=1300 x=0 y=231 width=35 height=23 xoffset=-1 yoffset=4 xadvance=33 page=0 chnl=15 +char id=1301 x=106 y=42 width=25 height=16 xoffset=-1 yoffset=11 xadvance=23 page=0 chnl=15 +char id=1302 x=44 y=278 width=29 height=23 xoffset=-1 yoffset=4 xadvance=27 page=0 chnl=15 +char id=1303 x=76 y=105 width=26 height=23 xoffset=-2 yoffset=11 xadvance=23 page=0 chnl=15 +char id=1304 x=0 y=467 width=33 height=23 xoffset=-2 yoffset=4 xadvance=30 page=0 chnl=15 +char id=1305 x=106 y=716 width=24 height=16 xoffset=-1 yoffset=11 xadvance=23 page=0 chnl=15 +char id=1306 x=134 y=325 width=23 height=29 xoffset=0 yoffset=4 xadvance=24 page=0 chnl=15 +char id=1307 x=406 y=532 width=17 height=23 xoffset=0 yoffset=11 xadvance=16 page=0 chnl=15 +char id=1308 x=0 y=644 width=32 height=23 xoffset=-1 yoffset=4 xadvance=31 page=0 chnl=15 +char id=1309 x=106 y=61 width=25 height=16 xoffset=-1 yoffset=11 xadvance=24 page=0 chnl=15 +char id=1310 x=76 y=131 width=26 height=23 xoffset=-1 yoffset=4 xadvance=22 page=0 chnl=15 +char id=1311 x=257 y=956 width=20 height=16 xoffset=-1 yoffset=11 xadvance=18 page=0 chnl=15 +char id=1312 x=0 y=553 width=32 height=30 xoffset=-1 yoffset=4 xadvance=31 page=0 chnl=15 +char id=1313 x=76 y=157 width=26 height=23 xoffset=-1 yoffset=11 xadvance=25 page=0 chnl=15 +char id=1314 x=0 y=381 width=33 height=30 xoffset=-1 yoffset=4 xadvance=32 page=0 chnl=15 +char id=1315 x=44 y=735 width=27 height=23 xoffset=-1 yoffset=11 xadvance=26 page=0 chnl=15 +char id=1316 x=76 y=605 width=25 height=29 xoffset=-1 yoffset=4 xadvance=24 page=0 chnl=15 +char id=1317 x=302 y=678 width=19 height=20 xoffset=-1 yoffset=11 xadvance=18 page=0 chnl=15 +char id=1318 x=134 y=357 width=23 height=29 xoffset=-1 yoffset=4 xadvance=21 page=0 chnl=15 +char id=1319 x=324 y=201 width=18 height=28 xoffset=-1 yoffset=3 xadvance=16 page=0 chnl=15 +char id=8203 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=0 page=0 chnl=15 +char id=8204 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=0 page=0 chnl=15 +char id=8205 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=0 page=0 chnl=15 +char id=8206 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=0 page=0 chnl=15 +char id=8207 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=0 page=0 chnl=15 +char id=8210 x=257 y=984 width=20 height=3 xoffset=-2 yoffset=17 xadvance=16 page=0 chnl=15 +char id=8211 x=446 y=653 width=15 height=6 xoffset=-1 yoffset=19 xadvance=14 page=0 chnl=15 +char id=8212 x=210 y=689 width=21 height=6 xoffset=-0 yoffset=19 xadvance=20 page=0 chnl=15 +char id=8213 x=0 y=689 width=32 height=4 xoffset=0 yoffset=16 xadvance=32 page=0 chnl=15 +char id=8214 x=482 y=898 width=7 height=24 xoffset=1 yoffset=3 xadvance=9 page=0 chnl=15 +char id=8215 x=257 y=975 width=20 height=6 xoffset=-2 yoffset=28 xadvance=16 page=0 chnl=15 +char id=8216 x=496 y=0 width=7 height=12 xoffset=-0 yoffset=7 xadvance=7 page=0 chnl=15 +char id=8217 x=496 y=15 width=7 height=12 xoffset=-0 yoffset=8 xadvance=7 page=0 chnl=15 +char id=8218 x=174 y=1013 width=7 height=11 xoffset=0 yoffset=26 xadvance=7 page=0 chnl=15 +char id=8219 x=496 y=44 width=7 height=10 xoffset=2 yoffset=4 xadvance=11 page=0 chnl=15 +char id=8220 x=465 y=468 width=13 height=12 xoffset=-0 yoffset=7 xadvance=13 page=0 chnl=15 +char id=8221 x=465 y=483 width=13 height=12 xoffset=-0 yoffset=8 xadvance=13 page=0 chnl=15 +char id=8222 x=465 y=513 width=13 height=11 xoffset=0 yoffset=26 xadvance=14 page=0 chnl=15 +char id=8223 x=446 y=640 width=15 height=10 xoffset=0 yoffset=4 xadvance=15 page=0 chnl=15 +char id=8224 x=406 y=270 width=17 height=24 xoffset=0 yoffset=9 xadvance=18 page=0 chnl=15 +char id=8225 x=406 y=297 width=17 height=24 xoffset=0 yoffset=9 xadvance=18 page=0 chnl=15 +char id=8226 x=465 y=498 width=13 height=12 xoffset=0 yoffset=14 xadvance=14 page=0 chnl=15 +char id=8230 x=0 y=891 width=31 height=7 xoffset=-0 yoffset=26 xadvance=30 page=0 chnl=15 +char id=8234 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=0 page=0 chnl=15 +char id=8235 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=0 page=0 chnl=15 +char id=8236 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=0 page=0 chnl=15 +char id=8237 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=0 page=0 chnl=15 +char id=8238 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=0 page=0 chnl=15 +char id=8240 x=44 y=118 width=29 height=25 xoffset=-0 yoffset=8 xadvance=28 page=0 chnl=15 +char id=8242 x=496 y=30 width=7 height=11 xoffset=1 yoffset=4 xadvance=7 page=0 chnl=15 +char id=8243 x=465 y=983 width=12 height=11 xoffset=2 yoffset=4 xadvance=14 page=0 chnl=15 +char id=8244 x=446 y=54 width=16 height=11 xoffset=-1 yoffset=4 xadvance=14 page=0 chnl=15 +char id=8249 x=482 y=519 width=9 height=13 xoffset=-1 yoffset=14 xadvance=8 page=0 chnl=15 +char id=8250 x=482 y=535 width=9 height=13 xoffset=-1 yoffset=14 xadvance=8 page=0 chnl=15 +char id=8252 x=446 y=937 width=14 height=23 xoffset=2 yoffset=4 xadvance=19 page=0 chnl=15 +char id=8254 x=446 y=670 width=15 height=4 xoffset=-2 yoffset=6 xadvance=11 page=0 chnl=15 +char id=8260 x=280 y=929 width=19 height=25 xoffset=-7 yoffset=8 xadvance=5 page=0 chnl=15 +char id=8286 x=482 y=925 width=7 height=23 xoffset=1 yoffset=4 xadvance=9 page=0 chnl=15 +char id=8298 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=0 page=0 chnl=15 +char id=8299 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=0 page=0 chnl=15 +char id=8300 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=0 page=0 chnl=15 +char id=8301 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=0 page=0 chnl=15 +char id=8302 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=0 page=0 chnl=15 +char id=8303 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=0 page=0 chnl=15 +char id=8352 x=257 y=806 width=20 height=23 xoffset=0 yoffset=4 xadvance=20 page=0 chnl=15 +char id=8353 x=160 y=602 width=22 height=26 xoffset=0 yoffset=3 xadvance=22 page=0 chnl=15 +char id=8354 x=185 y=156 width=22 height=23 xoffset=0 yoffset=4 xadvance=22 page=0 chnl=15 +char id=8355 x=406 y=558 width=17 height=23 xoffset=-1 yoffset=4 xadvance=16 page=0 chnl=15 +char id=8356 x=406 y=584 width=17 height=23 xoffset=0 yoffset=4 xadvance=16 page=0 chnl=15 +char id=8357 x=44 y=578 width=27 height=24 xoffset=-1 yoffset=7 xadvance=25 page=0 chnl=15 +char id=8358 x=76 y=183 width=26 height=23 xoffset=-2 yoffset=4 xadvance=24 page=0 chnl=15 +char id=8359 x=0 y=493 width=33 height=23 xoffset=-1 yoffset=4 xadvance=31 page=0 chnl=15 +char id=8360 x=0 y=118 width=37 height=23 xoffset=-1 yoffset=4 xadvance=36 page=0 chnl=15 +char id=8361 x=76 y=843 width=25 height=24 xoffset=-1 yoffset=9 xadvance=24 page=0 chnl=15 +char id=8363 x=345 y=27 width=18 height=24 xoffset=-0 yoffset=8 xadvance=18 page=0 chnl=15 +char id=8364 x=210 y=0 width=21 height=25 xoffset=-1 yoffset=8 xadvance=20 page=0 chnl=15 +char id=8365 x=210 y=379 width=21 height=24 xoffset=-1 yoffset=9 xadvance=20 page=0 chnl=15 +char id=8366 x=257 y=595 width=20 height=24 xoffset=-1 yoffset=9 xadvance=18 page=0 chnl=15 +char id=8367 x=0 y=257 width=34 height=33 xoffset=-1 yoffset=0 xadvance=32 page=0 chnl=15 +char id=8368 x=324 y=68 width=18 height=31 xoffset=-1 yoffset=3 xadvance=16 page=0 chnl=15 +char id=8369 x=257 y=622 width=20 height=24 xoffset=-1 yoffset=9 xadvance=19 page=0 chnl=15 +char id=8370 x=160 y=571 width=22 height=28 xoffset=-1 yoffset=7 xadvance=22 page=0 chnl=15 +char id=8371 x=76 y=948 width=25 height=23 xoffset=-1 yoffset=4 xadvance=24 page=0 chnl=15 +char id=8372 x=257 y=0 width=20 height=25 xoffset=-1 yoffset=8 xadvance=19 page=0 chnl=15 +char id=8373 x=160 y=631 width=22 height=26 xoffset=0 yoffset=3 xadvance=22 page=0 chnl=15 +char id=8377 x=302 y=297 width=19 height=24 xoffset=-1 yoffset=9 xadvance=18 page=0 chnl=15 +char id=8378 x=257 y=649 width=20 height=24 xoffset=-1 yoffset=9 xadvance=19 page=0 chnl=15 +char id=11360 x=210 y=536 width=21 height=23 xoffset=-1 yoffset=4 xadvance=20 page=0 chnl=15 +char id=11361 x=482 y=87 width=11 height=24 xoffset=-1 yoffset=3 xadvance=9 page=0 chnl=15 +char id=11362 x=210 y=562 width=21 height=23 xoffset=-1 yoffset=4 xadvance=20 page=0 chnl=15 +char id=11363 x=302 y=558 width=19 height=23 xoffset=-1 yoffset=4 xadvance=18 page=0 chnl=15 +char id=11364 x=106 y=181 width=24 height=30 xoffset=-1 yoffset=4 xadvance=22 page=0 chnl=15 +char id=11365 x=426 y=384 width=16 height=29 xoffset=0 yoffset=4 xadvance=15 page=0 chnl=15 +char id=11366 x=446 y=745 width=14 height=29 xoffset=-1 yoffset=4 xadvance=9 page=0 chnl=15 +char id=11367 x=76 y=637 width=25 height=29 xoffset=-1 yoffset=4 xadvance=24 page=0 chnl=15 +char id=11368 x=324 y=232 width=18 height=28 xoffset=-1 yoffset=3 xadvance=16 page=0 chnl=15 +char id=11369 x=76 y=669 width=25 height=29 xoffset=-1 yoffset=4 xadvance=24 page=0 chnl=15 +char id=11370 x=280 y=608 width=19 height=28 xoffset=-1 yoffset=3 xadvance=16 page=0 chnl=15 +char id=11371 x=185 y=800 width=21 height=29 xoffset=-1 yoffset=4 xadvance=20 page=0 chnl=15 +char id=11372 x=426 y=931 width=16 height=20 xoffset=-1 yoffset=11 xadvance=15 page=0 chnl=15 +char id=11373 x=106 y=543 width=24 height=23 xoffset=0 yoffset=4 xadvance=24 page=0 chnl=15 +char id=11377 x=210 y=670 width=21 height=16 xoffset=-1 yoffset=11 xadvance=20 page=0 chnl=15 +char id=11378 x=0 y=355 width=34 height=23 xoffset=-1 yoffset=4 xadvance=32 page=0 chnl=15 +char id=11379 x=44 y=366 width=29 height=16 xoffset=-1 yoffset=11 xadvance=27 page=0 chnl=15 +char id=11380 x=446 y=19 width=16 height=16 xoffset=0 yoffset=11 xadvance=16 page=0 chnl=15 +char id=11381 x=185 y=182 width=22 height=23 xoffset=-1 yoffset=4 xadvance=22 page=0 chnl=15 +char id=11382 x=426 y=229 width=17 height=16 xoffset=-1 yoffset=11 xadvance=17 page=0 chnl=15 +char id=11383 x=302 y=828 width=19 height=16 xoffset=0 yoffset=11 xadvance=19 page=0 chnl=15 +kernings count=20594 +kerning first=34 second=44 amount=-1 +kerning first=34 second=46 amount=-1 +kerning first=34 second=47 amount=-2 +kerning first=34 second=52 amount=-1 +kerning first=34 second=56 amount=-1 +kerning first=34 second=65 amount=-3 +kerning first=34 second=74 amount=-4 +kerning first=34 second=97 amount=-1 +kerning first=34 second=99 amount=-1 +kerning first=34 second=100 amount=-1 +kerning first=34 second=101 amount=-1 +kerning first=34 second=103 amount=-1 +kerning first=34 second=111 amount=-1 +kerning first=34 second=113 amount=-1 +kerning first=34 second=115 amount=-1 +kerning first=34 second=193 amount=-3 +kerning first=34 second=194 amount=-3 +kerning first=34 second=196 amount=-3 +kerning first=34 second=197 amount=-3 +kerning first=34 second=198 amount=-3 +kerning first=34 second=224 amount=-1 +kerning first=34 second=225 amount=-1 +kerning first=34 second=226 amount=-1 +kerning first=34 second=227 amount=-1 +kerning first=34 second=228 amount=-1 +kerning first=34 second=229 amount=-1 +kerning first=34 second=230 amount=-1 +kerning first=34 second=231 amount=-1 +kerning first=34 second=232 amount=-1 +kerning first=34 second=233 amount=-1 +kerning first=34 second=234 amount=-1 +kerning first=34 second=235 amount=-1 +kerning first=34 second=240 amount=-1 +kerning first=34 second=242 amount=-1 +kerning first=34 second=243 amount=-1 +kerning first=34 second=244 amount=-1 +kerning first=34 second=245 amount=-1 +kerning first=34 second=246 amount=-1 kerning first=34 second=248 amount=-1 -kerning first=176 second=171 amount=-3 -kerning first=8224 second=920 amount=-2 -kerning first=194 second=1063 amount=-3 -kerning first=191 second=8217 amount=-3 -kerning first=1071 second=103 amount=-1 -kerning first=80 second=87 amount=-1 -kerning first=338 second=367 amount=-1 -kerning first=335 second=1185 amount=-1 -kerning first=100 second=249 amount=-1 -kerning first=960 second=214 amount=-2 +kerning first=34 second=256 amount=-3 +kerning first=34 second=257 amount=-1 +kerning first=34 second=258 amount=-3 +kerning first=34 second=259 amount=-1 +kerning first=34 second=260 amount=-3 +kerning first=34 second=261 amount=-1 +kerning first=34 second=263 amount=-1 +kerning first=34 second=267 amount=-1 +kerning first=34 second=269 amount=-1 +kerning first=34 second=271 amount=-1 +kerning first=34 second=273 amount=-1 +kerning first=34 second=275 amount=-1 +kerning first=34 second=277 amount=-1 +kerning first=34 second=279 amount=-1 +kerning first=34 second=281 amount=-1 +kerning first=34 second=283 amount=-1 +kerning first=34 second=287 amount=-1 +kerning first=34 second=289 amount=-1 +kerning first=34 second=291 amount=-1 +kerning first=34 second=333 amount=-1 +kerning first=34 second=335 amount=-1 +kerning first=34 second=337 amount=-1 +kerning first=34 second=339 amount=-1 +kerning first=34 second=347 amount=-1 +kerning first=34 second=351 amount=-1 +kerning first=34 second=353 amount=-1 +kerning first=34 second=913 amount=-3 +kerning first=34 second=916 amount=-3 +kerning first=34 second=923 amount=-3 +kerning first=34 second=940 amount=-1 +kerning first=34 second=941 amount=-1 +kerning first=34 second=945 amount=-1 +kerning first=34 second=949 amount=-1 +kerning first=34 second=959 amount=-1 +kerning first=34 second=962 amount=-1 +kerning first=34 second=963 amount=-1 +kerning first=34 second=966 amount=-1 +kerning first=34 second=972 amount=-1 +kerning first=34 second=1032 amount=-4 +kerning first=34 second=1033 amount=-3 +kerning first=34 second=1040 amount=-3 +kerning first=34 second=1044 amount=-3 +kerning first=34 second=1051 amount=-3 +kerning first=34 second=1072 amount=-1 +kerning first=34 second=1077 amount=-1 +kerning first=34 second=1086 amount=-1 +kerning first=34 second=1089 amount=-1 +kerning first=34 second=1092 amount=-1 +kerning first=34 second=1104 amount=-1 +kerning first=34 second=1105 amount=-1 +kerning first=34 second=1108 amount=-1 +kerning first=34 second=1109 amount=-1 +kerning first=34 second=1195 amount=-1 +kerning first=34 second=1241 amount=-1 +kerning first=34 second=1257 amount=-1 +kerning first=34 second=1298 amount=-3 +kerning first=34 second=8218 amount=-1 +kerning first=34 second=8222 amount=-1 +kerning first=34 second=8230 amount=-1 +kerning first=38 second=65 amount=-1 +kerning first=38 second=84 amount=-5 +kerning first=38 second=86 amount=-3 +kerning first=38 second=87 amount=-2 +kerning first=38 second=88 amount=-2 +kerning first=38 second=89 amount=-4 +kerning first=38 second=106 amount=1 +kerning first=38 second=118 amount=-1 +kerning first=38 second=119 amount=-1 +kerning first=38 second=120 amount=-2 +kerning first=38 second=193 amount=-1 +kerning first=38 second=194 amount=-1 +kerning first=38 second=196 amount=-1 +kerning first=38 second=197 amount=-1 kerning first=38 second=198 amount=-1 -kerning first=1035 second=356 amount=-5 -kerning first=58 second=338 amount=-2 -kerning first=61 second=100 amount=-1 -kerning first=1073 second=281 amount=-1 -kerning first=201 second=250 amount=-1 -kerning first=198 second=941 amount=-1 -kerning first=221 second=1241 amount=-4 -kerning first=936 second=227 amount=-1 -kerning first=247 second=89 amount=-5 -kerning first=121 second=1098 amount=-3 -kerning first=124 second=339 amount=-1 -kerning first=1299 second=973 amount=-1 -kerning first=160 second=101 amount=-1 -kerning first=42 second=113 amount=-1 -kerning first=39 second=353 amount=-1 -kerning first=182 second=263 amount=-1 -kerning first=1078 second=228 amount=-1 -kerning first=8364 second=962 amount=-1 -kerning first=900 second=240 amount=-1 -kerning first=228 second=102 amount=-1 -kerning first=931 second=1256 amount=-2 -kerning first=105 second=354 amount=-5 -kerning first=251 second=39 amount=-3 -kerning first=968 second=79 amount=-2 -kerning first=125 second=970 amount=-1 -kerning first=161 second=279 amount=-1 -kerning first=8211 second=119 amount=-1 -kerning first=1041 second=920 amount=-2 -kerning first=186 second=213 amount=-2 -kerning first=301 second=103 amount=-1 -kerning first=1075 second=1257 amount=-1 -kerning first=206 second=355 amount=-1 -kerning first=209 second=115 amount=-1 -kerning first=8377 second=218 amount=-2 -kerning first=86 second=367 amount=-1 -kerning first=1206 second=242 amount=-1 -kerning first=252 second=214 amount=-2 -kerning first=369 second=1101 amount=-1 -kerning first=165 second=226 amount=-1 -kerning first=278 second=116 amount=-1 -kerning first=299 second=972 amount=-1 -kerning first=302 second=281 amount=-1 -kerning first=213 second=65 amount=-2 -kerning first=8378 second=373 amount=-4 -kerning first=356 second=117 amount=-2 -kerning first=948 second=269 amount=-1 -kerning first=253 second=369 amount=-1 -kerning first=8220 second=244 amount=-1 -kerning first=1065 second=106 amount=7 -kerning first=188 second=1066 amount=-5 -kerning first=185 second=8221 amount=-3 -kerning first=306 second=228 amount=-1 -kerning first=1085 second=962 amount=-1 -kerning first=211 second=916 amount=-2 -kerning first=214 second=240 amount=-1 -kerning first=94 second=252 amount=-1 -kerning first=91 second=943 amount=-1 -kerning first=234 second=382 amount=-1 -kerning first=354 second=1044 amount=-4 -kerning first=952 second=217 amount=-2 -kerning first=260 second=79 amount=-2 -kerning first=280 second=920 amount=-2 -kerning first=1063 second=1026 amount=-5 -kerning first=55 second=103 amount=-1 -kerning first=195 second=253 amount=-1 -kerning first=304 second=1257 amount=-1 -kerning first=75 second=267 amount=-2 -kerning first=235 second=1083 amount=-1 -kerning first=361 second=242 amount=-1 -kerning first=950 second=947 amount=-4 -kerning first=258 second=945 amount=-1 -kerning first=381 second=1240 amount=-1 -kerning first=36 second=116 amount=-1 -kerning first=175 second=268 amount=-2 -kerning first=8226 second=347 amount=-1 -kerning first=53 second=972 amount=-1 -kerning first=56 second=281 amount=-1 -kerning first=1099 second=373 amount=-4 -kerning first=915 second=1263 amount=-1 -kerning first=1037 second=244 amount=-1 -kerning first=179 second=216 amount=-2 -kerning first=295 second=106 amount=1 -kerning first=60 second=228 amount=-1 -kerning first=203 second=118 amount=-4 -kerning first=315 second=962 amount=-1 -kerning first=8365 second=221 amount=-5 -kerning first=77 second=1194 amount=-2 -kerning first=80 second=370 amount=-2 -kerning first=223 second=283 amount=-1 -kerning first=934 second=333 amount=-1 -kerning first=1187 second=245 amount=-1 -kerning first=960 second=949 amount=-1 -kerning first=963 second=257 amount=-1 -kerning first=126 second=229 amount=-1 -kerning first=271 second=119 amount=-4 -kerning first=38 second=920 amount=-2 -kerning first=1241 second=44 amount=-1 -kerning first=177 second=1195 amount=-1 -kerning first=180 second=371 amount=-1 -kerning first=291 second=1026 amount=-5 -kerning first=296 second=286 amount=-2 -kerning first=58 second=1257 amount=-1 -kerning first=1073 second=1090 amount=-3 -kerning first=8366 second=376 amount=-5 -kerning first=936 second=964 amount=-3 -kerning first=944 second=45 amount=-2 -kerning first=350 second=120 amount=-1 -kerning first=107 second=242 amount=-2 -kerning first=244 second=947 amount=-1 -kerning first=247 second=372 amount=-5 -kerning first=124 second=1262 amount=-2 -kerning first=160 second=1240 amount=-2 -kerning first=1039 second=1108 amount=-1 -kerning first=1046 second=347 amount=-1 -kerning first=182 second=1069 amount=-1 -kerning first=188 second=81 amount=-2 -kerning first=300 second=231 amount=-1 -kerning first=325 second=373 amount=-4 -kerning first=8364 second=8250 amount=-1 -kerning first=900 second=1028 amount=-2 -kerning first=903 second=288 amount=-2 -kerning first=374 second=232 amount=-4 -kerning first=968 second=362 amount=-2 -kerning first=965 second=1176 amount=-1 -kerning first=164 second=332 amount=-2 -kerning first=8217 second=197 amount=-3 -kerning first=1051 second=289 amount=-1 -kerning first=49 second=106 amount=1 -kerning first=1087 second=221 amount=-5 -kerning first=212 second=193 amount=-2 -kerning first=8377 second=953 amount=-1 -kerning first=1119 second=363 amount=-1 -kerning first=946 second=375 amount=-1 -kerning first=1219 second=290 amount=-2 -kerning first=252 second=949 amount=-1 -kerning first=255 second=257 amount=-1 -kerning first=165 second=963 amount=-1 -kerning first=168 second=271 amount=-1 -kerning first=47 second=1026 amount=-5 -kerning first=50 second=286 amount=-2 -kerning first=1064 second=234 amount=-1 -kerning first=302 second=1090 amount=-3 -kerning first=305 second=334 amount=-2 -kerning first=73 second=218 amount=-2 -kerning first=334 second=258 amount=-2 -kerning first=93 second=360 amount=-2 -kerning first=1117 second=8212 amount=-2 -kerning first=1168 second=1059 amount=-2 -kerning first=233 second=964 amount=-1 -kerning first=239 second=45 amount=-2 -kerning first=236 second=273 amount=-1 -kerning first=944 second=8249 amount=-3 -kerning first=376 second=1094 amount=-3 -kerning first=379 second=335 amount=-1 -kerning first=172 second=219 amount=-2 -kerning first=282 second=347 amount=-1 -kerning first=54 second=231 amount=-1 -kerning first=194 second=361 amount=-1 -kerning first=197 second=121 amount=-1 -kerning first=306 second=965 amount=-1 -kerning first=74 second=373 amount=-4 -kerning first=1085 second=8250 amount=-1 -kerning first=214 second=1028 amount=-2 -kerning first=916 second=336 amount=-2 -kerning first=240 second=220 amount=-2 -kerning first=120 second=232 amount=-2 -kerning first=260 second=362 amount=-2 -kerning first=380 second=966 amount=-1 -kerning first=35 second=244 amount=-1 -kerning first=174 second=374 amount=-5 -kerning first=1073 second=99 amount=-1 -kerning first=201 second=71 amount=-2 -kerning first=316 second=221 amount=-5 -kerning first=221 second=233 amount=-4 -kerning first=920 second=967 amount=-1 -kerning first=1299 second=338 amount=-2 -kerning first=258 second=8211 amount=-2 +kerning first=38 second=221 amount=-4 +kerning first=38 second=256 amount=-1 +kerning first=38 second=258 amount=-1 +kerning first=38 second=260 amount=-1 +kerning first=38 second=354 amount=-5 +kerning first=38 second=356 amount=-5 +kerning first=38 second=372 amount=-2 +kerning first=38 second=373 amount=-1 +kerning first=38 second=374 amount=-4 +kerning first=38 second=376 amount=-4 +kerning first=38 second=913 amount=-1 +kerning first=38 second=916 amount=-1 +kerning first=38 second=923 amount=-1 +kerning first=38 second=932 amount=-5 +kerning first=38 second=933 amount=-4 +kerning first=38 second=935 amount=-2 +kerning first=38 second=939 amount=-4 +kerning first=38 second=947 amount=-1 +kerning first=38 second=957 amount=-1 +kerning first=38 second=1026 amount=-5 +kerning first=38 second=1035 amount=-5 +kerning first=38 second=1040 amount=-1 +kerning first=38 second=1046 amount=-2 +kerning first=38 second=1058 amount=-5 +kerning first=38 second=1061 amount=-2 +kerning first=38 second=1066 amount=-5 +kerning first=38 second=1078 amount=-2 +kerning first=38 second=1093 amount=-2 +kerning first=38 second=1112 amount=1 +kerning first=38 second=1174 amount=-2 +kerning first=38 second=1175 amount=-2 +kerning first=38 second=1184 amount=-5 +kerning first=38 second=1198 amount=-4 +kerning first=38 second=1199 amount=-1 +kerning first=38 second=1202 amount=-2 +kerning first=38 second=1203 amount=-2 +kerning first=39 second=44 amount=-1 +kerning first=39 second=46 amount=-1 +kerning first=39 second=47 amount=-2 +kerning first=39 second=52 amount=-1 +kerning first=39 second=56 amount=-1 +kerning first=39 second=65 amount=-3 +kerning first=39 second=74 amount=-4 +kerning first=39 second=97 amount=-1 +kerning first=39 second=99 amount=-1 +kerning first=39 second=100 amount=-1 +kerning first=39 second=101 amount=-1 +kerning first=39 second=103 amount=-1 +kerning first=39 second=111 amount=-1 +kerning first=39 second=113 amount=-1 +kerning first=39 second=115 amount=-1 +kerning first=39 second=193 amount=-3 kerning first=39 second=194 amount=-3 -kerning first=1036 second=352 amount=-1 -kerning first=182 second=84 amount=-5 -kerning first=294 second=234 amount=-1 -kerning first=56 second=1090 amount=-3 -kerning first=59 second=334 amount=-2 -kerning first=1074 second=277 amount=-1 -kerning first=202 second=246 amount=-1 -kerning first=317 second=376 amount=-5 -kerning first=8361 second=1079 amount=-1 -kerning first=8369 second=89 amount=-5 -kerning first=239 second=8249 amount=-3 -kerning first=962 second=365 amount=-1 -kerning first=125 second=335 amount=-1 -kerning first=161 second=97 amount=-1 -kerning first=37 second=1108 amount=-1 -kerning first=40 second=347 amount=-1 -kerning first=183 second=259 amount=-1 -kerning first=186 second=34 amount=-3 -kerning first=60 second=965 amount=-1 -kerning first=8370 second=266 amount=-2 -kerning first=8377 second=39 amount=-3 -kerning first=1103 second=1184 amount=-5 -kerning first=1206 second=63 amount=-2 -kerning first=960 second=8217 amount=-3 -kerning first=126 second=966 amount=-1 -kerning first=162 second=275 amount=-1 -kerning first=44 second=289 amount=-1 -kerning first=299 second=337 amount=-1 -kerning first=302 second=99 amount=-1 -kerning first=67 second=221 amount=-2 -kerning first=207 second=351 amount=-1 -kerning first=327 second=261 amount=-1 -kerning first=8378 second=214 amount=-2 -kerning first=84 second=1177 amount=-2 -kerning first=87 second=363 amount=-2 -kerning first=941 second=1078 amount=-1 -kerning first=253 second=210 amount=-2 -kerning first=376 second=100 amount=-4 -kerning first=967 second=941 amount=-1 -kerning first=276 second=352 amount=-1 -kerning first=8220 second=65 amount=-3 -kerning first=48 second=234 amount=-1 -kerning first=1049 second=1241 amount=-1 -kerning first=188 second=364 amount=-2 -kerning first=300 second=968 amount=-1 -kerning first=303 second=277 amount=-1 -kerning first=68 second=376 amount=-3 -kerning first=1081 second=1079 amount=-1 -kerning first=208 second=1035 amount=-2 -kerning first=903 second=1098 amount=-3 -kerning first=906 second=339 amount=-1 -kerning first=357 second=113 amount=-1 -kerning first=354 second=353 amount=-3 -kerning first=114 second=235 amount=-1 -kerning first=254 second=365 amount=-1 -kerning first=374 second=969 amount=-4 -kerning first=8221 second=240 amount=-1 -kerning first=8217 second=916 amount=-3 -kerning first=186 second=8216 amount=-3 -kerning first=1095 second=266 amount=-2 -kerning first=330 second=1184 amount=-5 -kerning first=912 second=279 amount=-1 -kerning first=95 second=248 amount=-1 -kerning first=235 second=378 amount=-1 -kerning first=238 second=171 amount=-3 -kerning first=252 second=8217 amount=-3 -kerning first=1026 second=355 amount=-1 -kerning first=175 second=87 amount=-5 -kerning first=53 second=337 amount=-1 -kerning first=56 second=99 amount=-1 -kerning first=193 second=940 amount=-1 -kerning first=196 second=249 amount=-1 -kerning first=73 second=953 amount=-1 -kerning first=1099 second=214 amount=-2 -kerning first=923 second=226 amount=-1 -kerning first=1176 second=356 amount=-5 -kerning first=1263 second=281 amount=-1 -kerning first=122 second=100 amount=-1 -kerning first=176 second=262 amount=-2 -kerning first=287 second=1241 amount=-1 -kerning first=54 second=968 amount=-1 -kerning first=57 second=277 amount=-1 -kerning first=1071 second=227 amount=-1 -kerning first=200 second=199 amount=-2 -kerning first=318 second=89 amount=-5 -kerning first=80 second=211 amount=-2 -kerning first=223 second=101 amount=-1 -kerning first=100 second=353 amount=-1 -kerning first=103 second=113 amount=-1 -kerning first=955 second=1066 amount=-5 -kerning first=952 second=8221 amount=-3 -kerning first=120 second=969 amount=-1 -kerning first=180 second=212 amount=-2 -kerning first=8260 second=283 amount=-1 -kerning first=61 second=224 amount=-1 -kerning first=201 second=354 amount=-5 -kerning first=198 second=1118 amount=-1 -kerning first=321 second=266 amount=-2 -kerning first=324 second=39 amount=-1 -kerning first=8366 second=217 amount=-2 -kerning first=78 second=1184 amount=-5 -kerning first=221 second=970 amount=-2 -kerning first=247 second=213 amount=-2 -kerning first=964 second=253 amount=-1 -kerning first=160 second=225 amount=-1 -kerning first=1299 second=1257 amount=-1 -kerning first=273 second=115 amount=-1 -kerning first=178 second=1185 amount=-3 -kerning first=182 second=367 amount=-1 -kerning first=202 second=1038 amount=-2 -kerning first=325 second=214 amount=-2 -kerning first=8364 second=947 amount=-4 -kerning first=8369 second=372 amount=-5 -kerning first=79 second=8218 amount=-1 -kerning first=1107 second=945 amount=-1 -kerning first=346 second=356 amount=-1 -kerning first=942 second=268 amount=-2 -kerning first=371 second=281 amount=-1 -kerning first=43 second=1241 amount=-1 -kerning first=179 second=8220 amount=-3 -kerning first=301 second=227 amount=-1 -kerning first=69 second=89 amount=-5 -kerning first=63 second=1079 amount=-1 -kerning first=1083 second=269 amount=-1 -kerning first=901 second=973 amount=-1 -kerning first=86 second=942 amount=-2 -kerning first=89 second=251 amount=-2 -kerning first=946 second=216 amount=-2 -kerning first=249 second=1066 amount=-5 -kerning first=1219 second=106 amount=1 -kerning first=246 second=8221 amount=-1 -kerning first=375 second=228 amount=-1 -kerning first=972 second=118 amount=-1 -kerning first=278 second=240 amount=-1 -kerning first=190 second=252 amount=-1 -kerning first=299 second=1256 amount=-2 -kerning first=70 second=266 amount=-2 -kerning first=73 second=39 amount=-3 -kerning first=8378 second=949 amount=-1 -kerning first=910 second=229 amount=-4 -kerning first=1168 second=359 amount=-1 -kerning first=1171 second=119 amount=-4 -kerning first=356 second=241 amount=-2 -kerning first=944 second=1195 amount=-1 -kerning first=948 second=371 amount=-1 -kerning first=113 second=341 amount=2 -kerning first=1220 second=286 amount=-2 -kerning first=256 second=253 amount=-1 -kerning first=373 second=1257 amount=-1 -kerning first=169 second=267 amount=-1 -kerning first=74 second=214 amount=-2 -kerning first=1085 second=947 amount=-4 -kerning first=906 second=1262 amount=-2 -kerning first=94 second=356 amount=-5 -kerning first=237 second=268 amount=-2 -kerning first=955 second=81 amount=-2 -kerning first=114 second=972 amount=-1 -kerning first=117 second=281 amount=-1 -kerning first=8225 second=288 amount=-2 -kerning first=55 second=227 amount=-1 -kerning first=1063 second=1263 amount=-1 -kerning first=198 second=117 amount=-1 -kerning first=195 second=357 amount=-1 -kerning first=313 second=269 amount=-1 -kerning first=75 second=369 amount=-1 -kerning first=215 second=973 amount=-1 -kerning first=1178 second=244 amount=-1 -kerning first=121 second=228 amount=-1 -kerning first=381 second=962 amount=-1 -kerning first=36 second=240 amount=-1 -kerning first=175 second=370 amount=-2 -kerning first=289 second=283 amount=-1 -kerning first=53 second=1256 amount=-2 -kerning first=202 second=67 amount=-2 -kerning first=317 second=217 amount=-2 -kerning first=8361 second=375 amount=-1 -kerning first=1099 second=949 amount=-1 -kerning first=923 second=963 amount=-1 -kerning first=931 second=271 amount=-1 -kerning first=239 second=1195 amount=-1 -kerning first=365 second=286 amount=-2 -kerning first=119 second=1257 amount=-1 -kerning first=1263 second=1090 amount=-3 -kerning first=262 second=1046 amount=-2 -kerning first=1037 second=346 amount=-1 -kerning first=1071 second=964 amount=-3 -kerning first=1075 second=273 amount=-1 -kerning first=203 second=242 amount=-1 -kerning first=318 second=372 amount=-5 -kerning first=315 second=947 amount=-3 -kerning first=8370 second=85 amount=-2 -kerning first=80 second=945 amount=-1 -kerning first=223 second=1240 amount=-2 -kerning first=1184 second=1108 amount=-2 -kerning first=249 second=81 amount=-2 -kerning first=369 second=231 amount=-1 -kerning first=963 second=361 amount=-1 -kerning first=271 second=243 amount=-1 -kerning first=1044 second=288 amount=-1 -kerning first=291 second=1263 amount=-1 -kerning first=64 second=269 amount=-1 -kerning first=1080 second=220 amount=-2 -kerning first=902 second=232 amount=-1 -kerning first=110 second=106 amount=1 -kerning first=1194 second=1033 amount=-1 -kerning first=160 second=962 amount=-1 -kerning first=8216 second=111 amount=-1 -kerning first=48 second=55 amount=-1 -kerning first=1049 second=233 amount=-1 -kerning first=300 second=333 amount=-1 -kerning first=1081 second=375 amount=-1 -kerning first=325 second=949 amount=-1 -kerning first=91 second=119 amount=-4 -kerning first=88 second=359 amount=-1 -kerning first=234 second=44 amount=-1 -kerning first=354 second=194 amount=-6 -kerning first=108 second=1026 amount=-5 -kerning first=1210 second=234 amount=-1 -kerning first=371 second=1090 amount=-3 -kerning first=374 second=334 amount=-3 -kerning first=971 second=246 amount=-1 -kerning first=167 second=218 amount=-2 -kerning first=8217 second=291 amount=-1 -kerning first=8211 second=1035 amount=-4 -kerning first=49 second=230 amount=-1 -kerning first=189 second=360 amount=-2 -kerning first=304 second=273 amount=-1 -kerning first=301 second=964 amount=-3 -kerning first=69 second=372 amount=-5 -kerning first=1095 second=85 amount=-2 -kerning first=912 second=97 amount=-1 -kerning first=950 second=259 amount=-1 -kerning first=255 second=361 amount=-1 -kerning first=258 second=121 amount=-1 -kerning first=375 second=965 amount=-1 -kerning first=168 second=373 amount=-4 -kerning first=278 second=1028 amount=-2 -kerning first=47 second=1263 amount=-1 -kerning first=1064 second=336 amount=-2 -kerning first=8378 second=8217 amount=-3 -kerning first=337 second=122 amount=-1 -kerning first=915 second=275 amount=-1 -kerning first=910 second=966 amount=-4 -kerning first=96 second=244 amount=-1 -kerning first=233 second=1203 amount=-2 -kerning first=236 second=374 amount=-5 -kerning first=356 second=1033 amount=-4 -kerning first=1263 second=99 amount=-1 -kerning first=34 second=193 amount=-3 -kerning first=1027 second=351 amount=-1 -kerning first=176 second=83 amount=-1 -kerning first=287 second=233 amount=-1 -kerning first=54 second=333 amount=-1 -kerning first=197 second=245 amount=-1 -kerning first=74 second=949 amount=-1 -kerning first=77 second=257 amount=-1 -kerning first=363 second=234 amount=-1 -kerning first=955 second=364 amount=-2 -kerning first=117 second=1090 amount=-3 -kerning first=1298 second=277 amount=-1 -kerning first=35 second=346 amount=-1 -kerning first=1035 second=291 amount=-1 -kerning first=1028 second=1035 amount=-1 -kerning first=8225 second=1098 amount=-3 -kerning first=8240 second=339 amount=-1 -kerning first=58 second=273 amount=-1 -kerning first=61 second=45 amount=-2 -kerning first=8260 second=101 amount=-1 -kerning first=55 second=964 amount=-3 -kerning first=321 second=85 amount=-2 -kerning first=8363 second=263 amount=-1 -kerning first=221 second=335 amount=-4 -kerning first=247 second=34 amount=-3 -kerning first=121 second=965 amount=-1 -kerning first=36 second=1028 amount=-2 -kerning first=294 second=336 amount=-2 -kerning first=62 second=220 amount=-2 -kerning first=1078 second=171 amount=-2 -kerning first=202 second=350 amount=-1 -kerning first=8369 second=213 amount=-2 -kerning first=1099 second=8217 amount=-3 -kerning first=346 second=197 amount=-1 -kerning first=942 second=87 amount=-5 -kerning first=105 second=289 amount=-1 -kerning first=371 second=99 amount=-1 -kerning first=962 second=940 amount=-1 -kerning first=965 second=249 amount=-1 -kerning first=161 second=221 amount=-5 -kerning first=274 second=111 amount=-1 -kerning first=43 second=233 amount=-1 -kerning first=183 second=363 amount=-1 -kerning first=179 second=1177 amount=-1 -kerning first=63 second=375 amount=-1 -kerning first=206 second=290 amount=-2 -kerning first=8370 second=368 amount=-2 -kerning first=901 second=338 amount=-2 -kerning first=80 second=8211 amount=-2 -kerning first=904 second=100 amount=-1 -kerning first=947 second=1241 amount=-1 -kerning first=249 second=364 amount=-2 -kerning first=369 second=968 amount=-1 -kerning first=372 second=277 amount=-3 -kerning first=162 second=376 amount=-5 -kerning first=271 second=1035 amount=-5 -kerning first=1048 second=339 amount=-1 -kerning first=180 second=8212 amount=-2 -kerning first=184 second=1059 amount=-2 -kerning first=1044 second=1098 amount=-2 -kerning first=61 second=8249 amount=-3 -kerning first=70 second=85 amount=-2 -kerning first=1084 second=263 amount=-1 -kerning first=327 second=365 amount=-1 -kerning first=8372 second=1066 amount=-5 -kerning first=8366 second=8221 amount=-3 -kerning first=948 second=212 amount=-2 -kerning first=247 second=8216 amount=-3 -kerning first=256 second=74 amount=-1 -kerning first=376 second=224 amount=-4 -kerning first=967 second=1118 amount=-1 -kerning first=160 second=8250 amount=-1 -kerning first=48 second=336 amount=-2 -kerning first=1049 second=970 amount=-1 -kerning first=191 second=248 amount=-1 -kerning first=1062 second=279 amount=-1 -kerning first=306 second=171 amount=-3 -kerning first=325 second=8217 amount=-3 -kerning first=237 second=87 amount=-5 -kerning first=945 second=1185 amount=-2 -kerning first=114 second=337 amount=-1 -kerning first=117 second=99 amount=-1 -kerning first=254 second=940 amount=-1 -kerning first=374 second=1220 amount=-3 -kerning first=377 second=379 amount=1 -kerning first=971 second=1038 amount=-2 -kerning first=170 second=261 amount=-1 -kerning first=167 second=953 amount=-1 -kerning first=55 second=48 amount=-1 -kerning first=75 second=210 amount=-3 -kerning first=1095 second=368 amount=-2 -kerning first=215 second=338 amount=-2 -kerning first=95 second=352 amount=-1 -kerning first=238 second=262 amount=-2 -kerning first=358 second=1241 amount=-1 -kerning first=361 second=187 amount=-1 -kerning first=946 second=8220 amount=-3 -kerning first=118 second=277 amount=-1 -kerning first=1240 second=89 amount=-3 -kerning first=175 second=211 amount=-2 -kerning first=281 second=1098 amount=-1 -kerning first=289 second=101 amount=-1 -kerning first=8222 second=973 amount=-1 -kerning first=196 second=353 amount=-1 -kerning first=314 second=263 amount=-1 -kerning first=8361 second=216 amount=-2 -kerning first=76 second=365 amount=-1 -kerning first=1096 second=1066 amount=-5 -kerning first=1179 second=240 amount=-1 -kerning first=958 second=252 amount=-1 -kerning first=262 second=354 amount=-1 -kerning first=172 second=1184 amount=-5 -kerning first=176 second=366 amount=-2 -kerning first=287 second=970 amount=-1 -kerning first=60 second=171 amount=-3 -kerning first=318 second=213 amount=-2 -kerning first=74 second=8217 amount=-3 -kerning first=1103 second=253 amount=-1 -kerning first=223 second=225 amount=-1 -kerning first=934 second=267 amount=-1 -kerning first=240 second=1185 amount=-3 -kerning first=1035 second=1101 amount=-1 -kerning first=296 second=226 amount=-1 -kerning first=8240 second=1262 amount=-2 -kerning first=8260 second=1240 amount=-2 -kerning first=321 second=368 amount=-2 -kerning first=8363 second=1069 amount=-1 -kerning first=8372 second=81 amount=-2 -kerning first=84 second=250 amount=-2 -kerning first=350 second=65 amount=-1 -kerning first=241 second=8220 amount=-1 -kerning first=964 second=357 amount=-1 -kerning first=967 second=117 amount=-1 -kerning first=124 second=1079 amount=-1 -kerning first=163 second=89 amount=-5 -kerning first=42 second=339 amount=-1 -kerning first=1039 second=973 amount=-1 -kerning first=185 second=251 amount=-1 -kerning first=65 second=263 amount=-1 -kerning first=1081 second=216 amount=-2 -kerning first=317 second=8221 amount=-3 -kerning first=322 second=1066 amount=-5 -kerning first=903 second=228 amount=-1 -kerning first=1118 second=118 amount=-4 -kerning first=346 second=916 amount=-1 -kerning first=942 second=370 amount=-2 -kerning first=111 second=102 amount=-1 -kerning first=1203 second=283 amount=-1 -kerning first=251 second=252 amount=-1 -kerning first=971 second=67 amount=-2 -kerning first=164 second=266 amount=-2 -kerning first=167 second=39 amount=-3 -kerning first=43 second=970 amount=-1 -kerning first=1051 second=229 amount=-1 -kerning first=69 second=213 amount=-2 -kerning first=1083 second=371 amount=-1 -kerning first=330 second=253 amount=-1 -kerning first=901 second=1257 amount=-1 -kerning first=86 second=1119 amount=-2 -kerning first=92 second=115 amount=-1 -kerning first=1219 second=230 amount=-1 -kerning first=168 second=214 amount=-2 -kerning first=8218 second=287 amount=-1 -kerning first=50 second=226 amount=-1 -kerning first=1048 second=1262 amount=-2 -kerning first=190 second=356 amount=-5 -kerning first=193 second=116 amount=-1 -kerning first=305 second=268 amount=-2 -kerning first=70 second=368 amount=-2 -kerning first=1084 second=1069 amount=-1 -kerning first=1096 second=81 amount=-2 -kerning first=910 second=331 amount=-3 -kerning first=1171 second=243 amount=-1 -kerning first=356 second=343 amount=-2 -kerning first=256 second=357 amount=-1 -kerning first=376 second=961 amount=-5 -kerning first=379 second=269 amount=-1 -kerning first=169 second=369 amount=-1 -kerning first=8224 second=232 amount=-1 -kerning first=1065 second=332 amount=-1 -kerning first=71 second=1066 amount=-1 -kerning first=338 second=118 amount=-4 -kerning first=237 second=370 amount=-2 -kerning first=177 second=79 amount=-2 -kerning first=195 second=920 amount=-2 -kerning first=313 second=371 amount=-1 -kerning first=8363 second=84 amount=-5 -kerning first=78 second=253 amount=-1 -kerning first=215 second=1257 amount=-1 -kerning first=336 second=1046 amount=-3 -kerning first=928 second=218 amount=-2 -kerning first=956 second=360 amount=-2 -kerning first=961 second=120 amount=-2 -kerning first=1299 second=273 amount=-1 -kerning first=1240 second=372 amount=-2 -kerning first=1036 second=287 amount=-1 -kerning first=175 second=945 amount=-1 -kerning first=289 second=1240 amount=-2 -kerning first=59 second=268 amount=-2 -kerning first=1074 second=219 amount=-2 -kerning first=314 second=1069 amount=-1 -kerning first=322 second=81 amount=-2 -kerning first=8369 second=34 amount=-3 -kerning first=8364 second=259 amount=-1 -kerning first=343 second=243 amount=-1 -kerning first=931 second=373 amount=-4 -kerning first=1186 second=288 amount=-1 -kerning first=125 second=269 amount=-1 -kerning first=37 second=973 amount=-1 -kerning first=1041 second=232 amount=-1 -kerning first=63 second=216 amount=-2 -kerning first=206 second=106 amount=1 -kerning first=86 second=118 amount=-1 -kerning first=223 second=962 amount=-1 -kerning first=947 second=233 amount=-1 -kerning first=369 second=333 amount=-1 -kerning first=162 second=217 amount=-2 -kerning first=184 second=359 amount=-1 -kerning first=296 second=963 amount=-1 -kerning first=299 second=271 amount=-1 -kerning first=61 second=1195 amount=-1 -kerning first=64 second=371 amount=-1 -kerning first=1076 second=1073 amount=-1 -kerning first=1084 second=84 amount=-5 -kerning first=204 second=1026 amount=-5 -kerning first=207 second=286 amount=-2 -kerning first=8372 second=364 amount=-2 -kerning first=902 second=334 amount=-2 -kerning first=1117 second=246 amount=-1 -kerning first=250 second=360 amount=-2 -kerning first=373 second=273 amount=-1 -kerning first=376 second=45 amount=-4 -kerning first=160 second=947 amount=-4 -kerning first=163 second=372 amount=-5 -kerning first=276 second=287 amount=-1 -kerning first=8216 second=235 amount=-1 -kerning first=42 second=1262 amount=-2 -kerning first=1049 second=335 amount=-1 -kerning first=303 second=219 amount=-2 -kerning first=65 second=1069 amount=-1 -kerning first=1085 second=259 amount=-1 -kerning first=8369 second=8216 amount=-3 -kerning first=903 second=965 amount=-1 -kerning first=91 second=243 amount=-1 -kerning first=231 second=373 amount=-1 -kerning first=354 second=288 amount=-1 -kerning first=108 second=1263 amount=-1 -kerning first=1203 second=1095 amount=-2 -kerning first=1210 second=336 amount=-2 -kerning first=971 second=350 amount=-1 -kerning first=280 second=232 amount=-1 -kerning first=49 second=332 amount=-2 -kerning first=1051 second=966 amount=-1 -kerning first=1063 second=275 amount=-1 -kerning first=192 second=244 amount=-1 -kerning first=304 second=374 amount=-5 -kerning first=912 second=221 amount=-5 -kerning first=1170 second=351 amount=-1 -kerning first=1175 second=111 amount=-1 -kerning first=238 second=83 amount=-1 -kerning first=358 second=233 amount=-1 -kerning first=946 second=1177 amount=-1 -kerning first=950 second=363 amount=-1 -kerning first=258 second=245 amount=-1 -kerning first=1026 second=290 amount=-2 -kerning first=168 second=949 amount=-1 -kerning first=8222 second=338 amount=-1 -kerning first=8226 second=100 amount=-1 -kerning first=50 second=963 amount=-1 -kerning first=56 second=44 amount=-1 -kerning first=53 second=271 amount=-1 -kerning first=314 second=84 amount=-5 -kerning first=1096 second=364 amount=-2 -kerning first=915 second=376 amount=-5 -kerning first=96 second=346 amount=-1 -kerning first=1171 second=1035 amount=-5 -kerning first=1176 second=291 amount=-1 -kerning first=951 second=1059 amount=-2 -kerning first=948 second=8212 amount=-2 -kerning first=119 second=273 amount=-1 -kerning first=376 second=8249 amount=-3 -kerning first=34 second=287 amount=-1 -kerning first=287 second=335 amount=-1 -kerning first=57 second=219 amount=-2 -kerning first=194 second=1108 amount=-1 -kerning first=197 second=347 amount=-1 -kerning first=318 second=34 amount=-3 -kerning first=77 second=361 amount=-1 -kerning first=80 second=121 amount=-1 -kerning first=100 second=288 amount=-2 -kerning first=363 second=336 amount=-2 -kerning first=960 second=248 amount=-1 -kerning first=123 second=220 amount=-2 -kerning first=38 second=232 amount=-1 -kerning first=174 second=1176 amount=-1 -kerning first=177 second=362 amount=-2 -kerning first=291 second=275 amount=-1 -kerning first=8260 second=225 amount=-1 -kerning first=58 second=374 amount=-5 -kerning first=201 second=289 amount=-1 -kerning first=8363 second=367 amount=-1 -kerning first=84 second=71 amount=-1 -kerning first=345 second=111 amount=-1 -kerning first=936 second=261 amount=-1 -kerning first=928 second=953 amount=-1 -kerning first=124 second=375 amount=-1 -kerning first=1039 second=338 amount=-2 -kerning first=175 second=8211 amount=-2 -kerning first=1046 second=100 amount=-2 -kerning first=65 second=84 amount=-5 -kerning first=205 second=234 amount=-1 -kerning first=322 second=364 amount=-2 -kerning first=8361 second=8220 amount=-3 -kerning first=900 second=277 amount=-1 -kerning first=942 second=211 amount=-2 -kerning first=1186 second=1098 amount=-2 -kerning first=1203 second=101 amount=-1 -kerning first=965 second=353 amount=-1 -kerning first=968 second=113 amount=-1 -kerning first=164 second=85 amount=-2 -kerning first=274 second=235 amount=-1 -kerning first=43 second=335 amount=-1 -kerning first=69 second=34 amount=-3 -kerning first=1083 second=212 amount=-2 -kerning first=318 second=8216 amount=-3 -kerning first=8370 second=943 amount=-1 -kerning first=8377 second=252 amount=-1 -kerning first=904 second=224 amount=-1 -kerning first=89 second=196 amount=-5 -kerning first=223 second=8250 amount=-1 -kerning first=1206 second=279 amount=-1 -kerning first=252 second=248 amount=-1 -kerning first=372 second=378 amount=-1 -kerning first=375 second=171 amount=-3 -kerning first=972 second=63 amount=-2 -kerning first=8218 second=103 amount=-1 -kerning first=47 second=275 amount=-1 -kerning first=305 second=87 amount=-5 -kerning first=1084 second=367 amount=-1 -kerning first=1080 second=1185 amount=-3 -kerning first=327 second=940 amount=-1 -kerning first=87 second=1114 amount=-2 -kerning first=93 second=111 amount=-1 -kerning first=1117 second=1038 amount=-2 -kerning first=1220 second=226 amount=-1 -kerning first=169 second=210 amount=-2 -kerning first=282 second=100 amount=-1 -kerning first=8216 second=972 amount=-1 -kerning first=8220 second=281 amount=-1 -kerning first=191 second=352 amount=-1 -kerning first=306 second=262 amount=-2 -kerning first=1081 second=8220 amount=-3 -kerning first=214 second=277 amount=-1 -kerning first=906 second=1079 amount=-1 -kerning first=916 second=89 amount=-5 -kerning first=91 second=1035 amount=-5 -kerning first=94 second=291 amount=-1 -kerning first=237 second=211 amount=-2 -kerning first=357 second=339 amount=-1 -kerning first=952 second=251 amount=-1 -kerning first=260 second=113 amount=-1 -kerning first=380 second=263 amount=-1 -kerning first=170 second=365 amount=-1 -kerning first=8225 second=228 amount=-1 -kerning first=1069 second=90 amount=-1 -kerning first=313 second=212 amount=-1 -kerning first=69 second=8216 amount=-3 -kerning first=1095 second=943 amount=-1 -kerning first=336 second=354 amount=-2 -kerning first=928 second=39 amount=-3 -kerning first=238 second=366 amount=-2 -kerning first=358 second=970 amount=-1 -kerning first=361 second=279 amount=-1 -kerning first=121 second=171 amount=-3 -kerning first=168 second=8217 amount=-3 -kerning first=1036 second=103 amount=-1 -kerning first=289 second=225 amount=-1 -kerning first=59 second=87 amount=-5 -kerning first=310 second=1185 amount=-4 -kerning first=314 second=367 amount=-1 -kerning first=76 second=940 amount=-1 -kerning first=931 second=214 amount=-2 -kerning first=1176 second=1101 amount=-1 -kerning first=365 second=226 amount=-1 -kerning first=958 second=356 amount=-5 -kerning first=962 second=116 amount=-1 -kerning first=37 second=338 amount=-2 -kerning first=40 second=100 amount=-1 -kerning first=179 second=250 amount=-1 -kerning first=176 second=941 amount=-1 -kerning first=1037 second=281 amount=-1 -kerning first=60 second=262 amount=-2 -kerning first=200 second=1241 amount=-1 -kerning first=203 second=187 amount=-1 -kerning first=1103 second=357 amount=-1 -kerning first=934 second=369 amount=-1 -kerning first=103 second=339 amount=-1 -kerning first=100 second=1098 amount=-3 -kerning first=1184 second=973 amount=-1 -kerning first=126 second=263 amount=-1 -kerning first=8260 second=962 amount=-1 -kerning first=64 second=212 amount=-2 -kerning first=1073 second=1194 amount=-2 -kerning first=321 second=943 amount=-1 -kerning first=87 second=114 amount=-2 -kerning first=1117 second=67 amount=-2 -kerning first=230 second=39 amount=-1 -kerning first=944 second=79 amount=-2 -kerning first=107 second=279 amount=-2 -kerning first=964 second=920 amount=-2 -kerning first=163 second=213 amount=-2 -kerning first=276 second=103 amount=-1 -kerning first=8216 second=56 amount=-1 -kerning first=1039 second=1257 amount=-1 -kerning first=185 second=355 amount=-1 -kerning first=188 second=115 amount=-1 -kerning first=300 second=267 amount=-1 -kerning first=62 second=1185 amount=-3 -kerning first=65 second=367 amount=-1 -kerning first=1118 second=242 amount=-1 -kerning first=942 second=945 amount=-1 -kerning first=251 second=356 amount=-5 -kerning first=254 second=116 amount=-1 -kerning first=374 second=268 amount=-3 -kerning first=164 second=368 amount=-2 -kerning first=274 second=972 amount=-1 -kerning first=8217 second=231 amount=-1 -kerning first=63 second=8220 amount=-3 -kerning first=330 second=357 amount=-1 -kerning first=1219 second=332 amount=-2 -kerning first=165 second=1066 amount=-5 -kerning first=162 second=8221 amount=-3 -kerning first=1026 second=106 amount=1 -kerning first=8212 second=1298 amount=-4 -kerning first=47 second=1080 amount=-1 -kerning first=193 second=240 amount=-1 -kerning first=302 second=1194 amount=-2 -kerning first=305 second=370 amount=-2 -kerning first=70 second=943 amount=-1 -kerning first=73 second=252 amount=-1 -kerning first=915 second=217 amount=-2 -kerning first=230 second=8222 amount=-1 -kerning first=239 second=79 amount=-2 -kerning first=951 second=359 amount=-1 -kerning first=113 second=1081 amount=2 -kerning first=1220 second=963 amount=-1 -kerning first=256 second=920 amount=-2 -kerning first=376 second=1195 amount=-4 -kerning first=34 second=103 amount=-1 -kerning first=973 second=1026 amount=-5 -kerning first=1027 second=286 amount=-2 -kerning first=172 second=253 amount=-1 -kerning first=8224 second=334 amount=-2 -kerning first=54 second=267 amount=-1 -kerning first=1100 second=120 amount=-2 -kerning first=338 second=242 amount=-1 -kerning first=916 second=372 amount=-5 -kerning first=94 second=1101 amount=-1 -kerning first=237 second=945 amount=-1 -kerning first=357 second=1262 amount=-2 -kerning first=1298 second=219 amount=-2 -kerning first=35 second=281 amount=-1 -kerning first=1035 second=231 amount=-1 -kerning first=8225 second=965 amount=-1 -kerning first=1066 second=1202 amount=-2 -kerning first=78 second=357 amount=-1 -kerning first=221 second=269 amount=-4 -kerning first=1185 second=232 amount=-2 -kerning first=124 second=216 amount=-2 -kerning first=1299 second=374 amount=-5 +kerning first=39 second=196 amount=-3 +kerning first=39 second=197 amount=-3 +kerning first=39 second=198 amount=-3 +kerning first=39 second=224 amount=-1 +kerning first=39 second=225 amount=-1 +kerning first=39 second=226 amount=-1 +kerning first=39 second=227 amount=-1 kerning first=39 second=228 amount=-1 -kerning first=182 second=118 amount=-4 -kerning first=289 second=962 amount=-1 -kerning first=56 second=1194 amount=-2 -kerning first=59 second=370 amount=-2 -kerning first=1070 second=1071 amount=-1 -kerning first=202 second=283 amount=-1 -kerning first=8361 second=1177 amount=-1 -kerning first=8364 second=363 amount=-1 -kerning first=79 second=1044 amount=-1 -kerning first=1107 second=245 amount=-1 -kerning first=931 second=949 amount=-1 -kerning first=105 second=229 amount=-1 -kerning first=248 second=119 amount=-1 -kerning first=365 second=963 amount=-1 -kerning first=122 second=1195 amount=-1 -kerning first=125 second=371 amount=-1 -kerning first=37 second=1257 amount=-1 -kerning first=1037 second=1090 amount=-3 -kerning first=1041 second=334 amount=-2 -kerning first=298 second=218 amount=-2 -kerning first=206 second=230 amount=-1 -kerning first=323 second=360 amount=-2 -kerning first=8365 second=1059 amount=-2 -kerning first=901 second=273 amount=-1 -kerning first=904 second=45 amount=-2 -kerning first=86 second=242 amount=-3 -kerning first=223 second=947 amount=-4 -kerning first=83 second=923 amount=-1 -kerning first=103 second=1262 amount=-2 -kerning first=947 second=335 amount=-1 -kerning first=963 second=1108 amount=-1 -kerning first=126 second=1069 amount=-1 -kerning first=165 second=81 amount=-2 -kerning first=1059 second=46 amount=-1 -kerning first=299 second=373 amount=-4 -kerning first=8260 second=8250 amount=-1 -kerning first=204 second=1263 amount=-1 -kerning first=8378 second=248 amount=-1 -kerning first=905 second=220 amount=-2 -kerning first=1117 second=350 amount=-1 -kerning first=944 second=362 amount=-2 -kerning first=1202 second=966 amount=-1 -kerning first=1207 second=275 amount=-1 -kerning first=253 second=244 amount=-1 -kerning first=8216 second=337 amount=-1 -kerning first=8220 second=99 amount=-1 -kerning first=1062 second=221 amount=-2 -kerning first=306 second=83 amount=-1 -kerning first=1081 second=1177 amount=-1 -kerning first=1085 second=363 amount=-1 -kerning first=906 second=375 amount=-1 -kerning first=942 second=8211 amount=-2 -kerning first=114 second=271 amount=-1 -kerning first=277 second=1090 amount=-1 -kerning first=280 second=334 amount=-2 -kerning first=8221 second=277 amount=-1 -kerning first=52 second=218 amount=-2 -kerning first=1063 second=376 amount=-5 -kerning first=192 second=346 amount=-1 -kerning first=72 second=360 amount=-2 -kerning first=1087 second=1059 amount=-2 -kerning first=1083 second=8212 amount=-2 -kerning first=215 second=273 amount=-1 -kerning first=904 second=8249 amount=-3 -kerning first=95 second=287 amount=-1 -kerning first=1175 second=235 amount=-1 -kerning first=358 second=335 amount=-1 -kerning first=361 second=97 amount=-1 -kerning first=255 second=1108 amount=-1 -kerning first=258 second=347 amount=-1 -kerning first=175 second=121 amount=-1 -kerning first=8226 second=224 amount=-1 -kerning first=53 second=373 amount=-4 -kerning first=1070 second=86 amount=-2 -kerning first=193 second=1028 amount=-2 -kerning first=196 second=288 amount=-2 -kerning first=1099 second=248 amount=-1 -kerning first=236 second=1176 amount=-1 -kerning first=239 second=362 amount=-2 -kerning first=242 second=122 amount=-1 -kerning first=1037 second=99 amount=-1 -kerning first=179 second=71 amount=-2 -kerning first=290 second=221 amount=-2 -kerning first=51 second=8230 amount=-1 -kerning first=60 second=83 amount=-1 -kerning first=1071 second=261 amount=-1 -kerning first=200 second=233 amount=-1 -kerning first=315 second=363 amount=-1 -kerning first=80 second=245 amount=-1 -kerning first=934 second=210 amount=-2 -kerning first=1184 second=338 amount=-3 -kerning first=237 second=8211 amount=-2 -kerning first=1187 second=100 amount=-1 -kerning first=960 second=352 amount=-1 -kerning first=120 second=1073 amount=-1 -kerning first=126 second=84 amount=-5 -kerning first=38 second=334 amount=-2 -kerning first=35 second=1090 amount=-3 -kerning first=1035 second=968 amount=-1 -kerning first=180 second=246 amount=-1 -kerning first=291 second=376 amount=-5 -kerning first=8240 second=1079 amount=-1 -kerning first=316 second=1059 amount=-2 -kerning first=313 second=8212 amount=-3 -kerning first=8366 second=251 amount=-1 -kerning first=221 second=1074 amount=-3 -kerning first=345 second=235 amount=-1 -kerning first=936 second=365 amount=-1 -kerning first=107 second=97 amount=-1 -kerning first=160 second=259 amount=-1 -kerning first=163 second=34 amount=-3 -kerning first=1046 second=224 amount=-1 -kerning first=45 second=46 amount=-1 -kerning first=289 second=8250 amount=-1 -kerning first=1074 second=1184 amount=-5 -kerning first=205 second=336 amount=-2 -kerning first=325 second=248 amount=-1 -kerning first=903 second=171 amount=-3 -kerning first=931 second=8217 amount=-3 -kerning first=105 second=966 amount=-1 -kerning first=111 second=47 amount=-1 -kerning first=108 second=275 amount=-1 -kerning first=274 second=337 amount=-1 -kerning first=8217 second=52 amount=-1 -kerning first=46 second=221 amount=-4 -kerning first=189 second=111 amount=-1 -kerning first=186 second=351 amount=-1 -kerning first=298 second=953 amount=-1 -kerning first=301 second=261 amount=-1 -kerning first=63 second=1177 amount=-1 -kerning first=1075 second=8218 amount=-3 -kerning first=8377 second=356 amount=-5 -kerning first=908 second=88 amount=-3 -kerning first=89 second=290 amount=-3 -kerning first=946 second=250 amount=-1 -kerning first=252 second=352 amount=-1 -kerning first=375 second=262 amount=-2 -kerning first=372 second=954 amount=-2 -kerning first=165 second=364 amount=-2 -kerning first=278 second=277 amount=-1 -kerning first=47 second=376 amount=-5 -kerning first=1048 second=1079 amount=-1 -kerning first=190 second=291 amount=-1 -kerning first=1064 second=89 amount=-5 -kerning first=187 second=1035 amount=-3 -kerning first=305 second=211 amount=-2 -kerning first=64 second=8212 amount=-2 -kerning first=910 second=263 amount=-4 -kerning first=93 second=235 amount=-1 -kerning first=1256 second=90 amount=-1 -kerning first=379 second=212 amount=-1 -kerning first=163 second=8216 amount=-3 -kerning first=282 second=224 amount=-1 -kerning first=1065 second=266 amount=-1 -kerning first=1068 second=39 amount=-2 -kerning first=303 second=1184 amount=-5 -kerning first=306 second=366 amount=-2 -kerning first=74 second=248 amount=-1 -kerning first=916 second=213 amount=-2 -kerning first=231 second=8217 amount=-1 -kerning first=952 second=355 amount=-1 -kerning first=955 second=115 amount=-1 -kerning first=35 second=99 amount=-1 -kerning first=174 second=249 amount=-1 -kerning first=170 second=940 amount=-1 -kerning first=55 second=261 amount=-1 -kerning first=52 second=953 amount=-1 -kerning first=1178 second=281 amount=-1 -kerning first=1175 second=972 amount=-1 -kerning first=238 second=941 amount=-1 -kerning first=121 second=262 amount=-2 -kerning first=36 second=277 amount=-1 -kerning first=1036 second=227 amount=-1 -kerning first=178 second=199 amount=-2 -kerning first=294 second=89 amount=-5 -kerning first=59 second=211 amount=-2 -kerning first=196 second=1098 amount=-3 -kerning first=202 second=101 amount=-1 -kerning first=317 second=251 amount=-1 -kerning first=923 second=1066 amount=-5 -kerning first=915 second=8221 amount=-3 -kerning first=962 second=240 amount=-1 -kerning first=125 second=212 amount=-2 -kerning first=1263 second=1194 amount=-2 -kerning first=40 second=224 amount=-1 -kerning first=179 second=354 amount=-5 -kerning first=176 second=1118 amount=-1 -kerning first=298 second=39 amount=-3 -kerning first=57 second=1184 amount=-5 -kerning first=60 second=366 amount=-2 -kerning first=203 second=279 amount=-1 -kerning first=200 second=970 amount=-1 -kerning first=8365 second=359 amount=-1 -kerning first=8370 second=119 amount=-4 -kerning first=86 second=63 amount=-1 -kerning first=1103 second=920 amount=-2 -kerning first=1184 second=1257 amount=-2 -kerning first=249 second=115 amount=-1 -kerning first=369 second=267 amount=-1 -kerning first=126 second=367 amount=-1 -kerning first=123 second=1185 amount=-3 -kerning first=180 second=1038 amount=-2 -kerning first=299 second=214 amount=-2 -kerning first=8260 second=947 amount=-4 -kerning first=1076 second=945 amount=-1 -kerning first=207 second=226 amount=-1 -kerning first=327 second=116 amount=-1 -kerning first=902 second=268 amount=-2 -kerning first=345 second=972 amount=-1 -kerning first=124 second=8220 amount=-3 -kerning first=276 second=227 amount=-1 -kerning first=42 second=1079 amount=-1 -kerning first=1049 second=269 amount=-1 -kerning first=48 second=89 amount=-5 -kerning first=300 second=369 amount=-1 -kerning first=208 second=381 amount=-1 -kerning first=906 second=216 amount=-2 -kerning first=225 second=8221 amount=-1 -kerning first=354 second=228 amount=-2 -kerning first=949 second=118 amount=-1 -kerning first=1203 second=962 amount=-1 -kerning first=254 second=240 amount=-1 -kerning first=371 second=1194 amount=-2 -kerning first=971 second=283 amount=-1 -kerning first=164 second=943 amount=-1 -kerning first=167 second=252 amount=-1 -kerning first=274 second=1256 amount=-2 -kerning first=277 second=382 amount=-1 -kerning first=8217 second=333 amount=-1 -kerning first=52 second=39 amount=-1 -kerning first=49 second=266 amount=-2 -kerning first=1063 second=217 amount=-2 -kerning first=1087 second=359 amount=-1 -kerning first=1095 second=119 amount=-4 -kerning first=330 second=920 amount=-2 -kerning first=904 second=1195 amount=-1 -kerning first=89 second=1100 amount=-3 -kerning first=95 second=103 amount=-1 -kerning first=1119 second=1026 amount=-5 -kerning first=1170 second=286 amount=-2 -kerning first=1224 second=218 amount=-2 -kerning first=1026 second=230 amount=-1 -kerning first=8218 second=964 amount=-3 -kerning first=8226 second=45 amount=-2 -kerning first=53 second=214 amount=-2 -kerning first=1064 second=372 amount=-5 -kerning first=190 second=1101 amount=-1 -kerning first=305 second=945 amount=-1 -kerning first=73 second=356 amount=-5 -kerning first=76 second=116 amount=-1 -kerning first=910 second=1069 amount=-2 -kerning first=923 second=81 amount=-2 -kerning first=93 second=972 amount=-1 -kerning first=96 second=281 amount=-1 -kerning first=1176 second=231 amount=-1 -kerning first=356 second=1084 amount=-2 -kerning first=954 second=243 amount=-2 -kerning first=973 second=1263 amount=-1 -kerning first=34 second=227 amount=-1 -kerning first=172 second=357 amount=-1 -kerning first=176 second=117 amount=-1 -kerning first=287 second=269 amount=-1 -kerning first=8230 second=220 amount=-1 -kerning first=54 second=369 amount=-1 -kerning first=194 second=973 amount=-1 -kerning first=100 second=228 amount=-1 -kerning first=243 second=118 amount=-1 -kerning first=117 second=1194 amount=-2 -kerning first=1035 second=333 amount=-1 -kerning first=180 second=67 amount=-2 -kerning first=291 second=217 amount=-2 -kerning first=8240 second=375 amount=-1 -kerning first=61 second=79 amount=-2 -kerning first=1073 second=257 amount=-1 -kerning first=201 second=229 amount=-1 -kerning first=316 second=359 amount=-1 -kerning first=321 second=119 amount=-4 -kerning first=78 second=920 amount=-2 -kerning first=221 second=371 amount=-2 -kerning first=1178 second=1090 amount=-2 -kerning first=367 second=218 amount=-2 -kerning first=1240 second=1174 amount=-3 -kerning first=1036 second=964 amount=-4 -kerning first=1039 second=273 amount=-1 -kerning first=182 second=242 amount=-1 -kerning first=1046 second=45 amount=-3 -kerning first=289 second=947 amount=-4 -kerning first=294 second=372 amount=-5 -kerning first=8226 second=8249 amount=-3 -kerning first=59 second=945 amount=-1 -kerning first=202 second=1240 amount=-2 -kerning first=900 second=219 amount=-2 -kerning first=942 second=121 amount=-1 -kerning first=962 second=1028 amount=-2 -kerning first=965 second=288 amount=-2 -kerning first=43 second=269 amount=-1 -kerning first=206 second=332 amount=-2 -kerning first=901 second=374 amount=-5 -kerning first=1116 second=289 amount=-2 -kerning first=946 second=71 amount=-2 -kerning first=1206 second=221 amount=-2 -kerning first=366 second=8230 amount=-1 -kerning first=375 second=83 amount=-1 -kerning first=8218 second=48 amount=-1 -kerning first=47 second=217 amount=-2 -kerning first=1048 second=375 amount=-1 -kerning first=299 second=949 amount=-1 -kerning first=302 second=257 amount=-1 -kerning first=70 second=119 amount=-4 -kerning first=207 second=963 amount=-1 -kerning first=213 second=44 amount=-1 -kerning first=8378 second=352 amount=-1 -kerning first=90 second=286 amount=-1 -kerning first=1168 second=234 amount=-1 -kerning first=948 second=246 amount=-1 -kerning first=113 second=218 amount=-2 -kerning first=253 second=346 amount=-1 -kerning first=373 second=950 amount=-2 -kerning first=376 second=258 amount=-5 -kerning first=166 second=360 amount=-2 -kerning first=276 second=964 amount=-3 -kerning first=282 second=45 amount=-2 -kerning first=45 second=947 amount=-1 -kerning first=48 second=372 amount=-5 -kerning first=1046 second=8249 amount=-3 -kerning first=1065 second=85 amount=-1 -kerning first=191 second=287 amount=-1 -kerning first=214 second=219 amount=-2 -kerning first=916 second=34 amount=-3 -kerning first=94 second=231 amount=-1 -kerning first=231 second=1175 amount=-1 -kerning first=237 second=121 amount=-1 -kerning first=354 second=965 amount=-2 -kerning first=360 second=46 amount=-1 -kerning first=254 second=1028 amount=-2 -kerning first=8225 second=171 amount=-3 -kerning first=1066 second=260 amount=-1 -kerning first=195 second=232 amount=-1 -kerning first=304 second=1176 amount=-1 -kerning first=75 second=244 amount=-2 -kerning first=215 second=374 amount=-5 -kerning first=1178 second=99 amount=-1 -kerning first=1175 second=337 amount=-1 -kerning first=361 second=221 amount=-5 -kerning first=950 second=1114 amount=-2 -kerning first=956 second=111 amount=-1 -kerning first=112 second=8230 amount=-1 -kerning first=121 second=83 amount=-1 -kerning first=1224 second=953 amount=-1 -kerning first=175 second=245 amount=-1 -kerning first=8249 second=88 amount=-1 -kerning first=53 second=949 amount=-1 -kerning first=56 second=257 amount=-1 -kerning first=305 second=8211 amount=-2 -kerning first=8361 second=250 amount=-1 -kerning first=79 second=194 amount=-2 -kerning first=1099 second=352 amount=-1 -kerning first=222 second=84 amount=-2 -kerning first=923 second=364 amount=-2 -kerning first=96 second=1090 amount=-3 -kerning first=1176 second=968 amount=-1 -kerning first=1179 second=277 amount=-1 -kerning first=958 second=291 amount=-1 -kerning first=119 second=950 amount=-2 -kerning first=379 second=8212 amount=-3 -kerning first=37 second=273 amount=-1 -kerning first=40 second=45 amount=-2 -kerning first=282 second=8249 amount=-3 -kerning first=1071 second=365 amount=-1 -kerning first=200 second=335 amount=-1 -kerning first=203 second=97 amount=-1 -kerning first=77 second=1108 amount=-1 -kerning first=80 second=347 amount=-1 -kerning first=223 second=259 amount=-1 -kerning first=226 second=34 amount=-1 -kerning first=916 second=8216 amount=-3 -kerning first=100 second=965 amount=-1 -kerning first=1298 second=1184 amount=-5 -kerning first=41 second=220 amount=-2 -kerning first=1044 second=171 amount=-1 -kerning first=180 second=350 amount=-1 -kerning first=58 second=1176 amount=-1 -kerning first=61 second=362 amount=-2 -kerning first=201 second=966 amount=-1 -kerning first=204 second=275 amount=-1 -kerning first=8366 second=355 amount=-1 -kerning first=8372 second=115 amount=-1 -kerning first=902 second=87 amount=-5 -kerning first=81 second=1033 amount=-1 -kerning first=84 second=289 amount=-2 -kerning first=345 second=337 amount=-1 -kerning first=936 second=940 amount=-1 -kerning first=1194 second=379 amount=-1 -kerning first=247 second=351 amount=-1 -kerning first=250 second=111 amount=-1 -kerning first=367 second=953 amount=-1 -kerning first=124 second=1177 amount=-1 -kerning first=160 second=363 amount=-1 -kerning first=42 second=375 amount=-1 -kerning first=185 second=290 amount=-2 -kerning first=300 second=210 amount=-2 -kerning first=59 second=8211 amount=-2 -kerning first=1081 second=250 amount=-1 -kerning first=1078 second=941 amount=-2 -kerning first=325 second=352 amount=-1 -kerning first=903 second=262 amount=-2 -kerning first=88 second=234 amount=-2 -kerning first=1118 second=187 amount=-1 -kerning first=108 second=376 amount=-5 -kerning first=1210 second=89 amount=-5 -kerning first=251 second=291 amount=-1 -kerning first=374 second=211 amount=-3 -kerning first=968 second=339 amount=-1 -kerning first=125 second=8212 amount=-2 -kerning first=161 second=1059 amount=-2 -kerning first=971 second=101 amount=-1 -kerning first=965 second=1098 amount=-3 -kerning first=8211 second=381 amount=-2 -kerning first=40 second=8249 amount=-3 -kerning first=1047 second=955 amount=-1 -kerning first=49 second=85 amount=-2 -kerning first=189 second=235 amount=-1 -kerning first=1051 second=263 amount=-1 -kerning first=301 second=365 amount=-1 -kerning first=226 second=8216 amount=-1 -kerning first=946 second=354 amount=-5 -kerning first=950 second=114 amount=-2 -kerning first=1219 second=266 amount=-2 -kerning first=1224 second=39 amount=-3 -kerning first=375 second=366 amount=-2 -kerning first=168 second=248 amount=-1 -kerning first=1064 second=213 amount=-2 -kerning first=299 second=8217 amount=-3 -kerning first=1096 second=115 amount=-1 -kerning first=216 second=87 amount=-2 -kerning first=905 second=1185 amount=-3 -kerning first=910 second=367 amount=-2 -kerning first=93 second=337 amount=-1 -kerning first=96 second=99 amount=-1 -kerning first=236 second=249 amount=-1 -kerning first=948 second=1038 amount=-2 -kerning first=113 second=953 amount=-1 -kerning first=373 second=8218 amount=-2 -kerning first=1027 second=226 amount=-1 -kerning first=279 second=1078 amount=-2 -kerning first=8224 second=268 amount=-2 -kerning first=54 second=210 amount=-2 -kerning first=1065 second=368 amount=-1 -kerning first=194 second=338 amount=-2 -kerning first=197 second=100 amount=-1 -kerning first=306 second=941 amount=-1 -kerning first=74 second=352 amount=-1 -kerning first=338 second=187 amount=-1 -kerning first=906 second=8220 amount=-3 -kerning first=94 second=968 amount=-1 -kerning first=240 second=199 amount=-2 -kerning first=357 second=1079 amount=-1 -kerning first=363 second=89 amount=-5 -kerning first=257 second=1098 amount=-1 -kerning first=260 second=339 amount=-1 -kerning first=1028 second=381 amount=-1 -kerning first=177 second=113 amount=-1 -kerning first=174 second=353 amount=-1 -kerning first=283 second=955 amount=-1 -kerning first=8240 second=216 amount=-2 -kerning first=55 second=365 amount=-1 -kerning first=1063 second=8221 amount=-3 -kerning first=1066 second=1066 amount=-5 -kerning first=8363 second=118 amount=-4 -kerning first=221 second=212 amount=-3 -kerning first=928 second=252 amount=-1 -kerning first=238 second=1118 amount=-1 -kerning first=367 second=39 amount=-3 -kerning first=121 second=366 amount=-2 -kerning first=294 second=213 amount=-2 -kerning first=8226 second=1195 amount=-1 -kerning first=53 second=8217 amount=-3 -kerning first=1074 second=253 amount=-1 -kerning first=202 second=225 amount=-1 -kerning first=322 second=115 amount=-1 -kerning first=317 second=355 amount=-1 -kerning first=958 second=1101 amount=-1 -kerning first=119 second=8218 amount=-2 -kerning first=1041 second=268 amount=-2 -kerning first=63 second=250 amount=-1 -kerning first=60 second=941 amount=-1 -kerning first=8370 second=243 amount=-1 -kerning first=86 second=187 amount=-2 -kerning first=103 second=1079 amount=-1 -kerning first=947 second=269 amount=-1 -kerning first=369 second=369 amount=-1 -kerning first=963 second=973 amount=-1 -kerning first=162 second=251 amount=-1 -kerning first=47 second=38 amount=-1 -kerning first=1048 second=216 amount=-2 -kerning first=291 second=8221 amount=-3 -kerning first=296 second=1066 amount=-5 -kerning first=1084 second=118 amount=-4 -kerning first=210 second=90 amount=-1 -kerning first=327 second=240 amount=-1 -kerning first=902 second=370 amount=-2 -kerning first=84 second=1099 amount=-2 -kerning first=1117 second=283 amount=-1 -kerning first=948 second=67 amount=-2 -kerning first=113 second=39 amount=-3 -kerning first=376 second=79 amount=-3 -kerning first=8216 second=271 amount=-1 -kerning first=8220 second=44 amount=-1 -kerning first=48 second=213 amount=-2 -kerning first=1049 second=371 amount=-1 -kerning first=1046 second=1195 amount=-2 -kerning first=191 second=103 amount=-1 -kerning first=303 second=253 amount=-1 -kerning first=1210 second=372 amount=-5 -kerning first=251 second=1101 amount=-1 -kerning first=374 second=945 amount=-4 -kerning first=971 second=1240 amount=-2 -kerning first=968 second=1262 amount=-2 -kerning first=167 second=356 amount=-5 -kerning first=170 second=116 amount=-1 -kerning first=280 second=268 amount=-2 -kerning first=49 second=368 amount=-2 -kerning first=1051 second=1069 amount=-1 -kerning first=189 second=972 amount=-1 -kerning first=192 second=281 amount=-1 -kerning first=1095 second=243 amount=-1 -kerning first=95 second=227 amount=-1 -kerning first=1119 second=1263 amount=-1 -kerning first=238 second=117 amount=-1 -kerning first=358 second=269 amount=-1 -kerning first=255 second=973 amount=-1 -kerning first=1026 second=332 amount=-2 -kerning first=8222 second=374 amount=-4 -kerning first=50 second=1066 amount=-5 -kerning first=47 second=8221 amount=-3 -kerning first=196 second=228 amount=-1 -kerning first=314 second=118 amount=-4 -kerning first=8361 second=71 amount=-2 -kerning first=76 second=240 amount=-1 -kerning first=93 second=1256 amount=-2 -kerning first=1176 second=333 amount=-1 -kerning first=113 second=8222 amount=2 -kerning first=1263 second=257 amount=-1 -kerning first=1027 second=963 amount=-1 -kerning first=172 second=920 amount=-2 -kerning first=282 second=1195 amount=-1 -kerning first=287 second=371 amount=-1 -kerning first=8250 second=84 amount=-3 -kerning first=57 second=253 amount=-1 -kerning first=194 second=1257 amount=-1 -kerning first=341 second=230 amount=-1 -kerning first=926 second=360 amount=-2 -kerning first=1184 second=273 amount=-2 -kerning first=1177 second=964 amount=-1 -kerning first=363 second=372 amount=-5 -kerning first=960 second=287 amount=-1 -kerning first=120 second=945 amount=-2 -kerning first=260 second=1262 amount=-2 -kerning first=38 second=268 amount=-2 -kerning first=296 second=81 amount=-2 -kerning first=8260 second=259 amount=-1 -kerning first=1073 second=361 amount=-1 -kerning first=321 second=243 amount=-1 -kerning first=964 second=232 amount=-1 -kerning first=1299 second=1176 amount=-1 -kerning first=42 second=216 amount=-2 -kerning first=1039 second=374 amount=-5 -kerning first=185 second=106 amount=1 -kerning first=65 second=118 amount=-4 -kerning first=1081 second=71 amount=-2 -kerning first=202 second=962 amount=-1 -kerning first=8369 second=351 amount=-1 -kerning first=903 second=83 amount=-1 -kerning first=942 second=245 amount=-1 -kerning first=108 second=217 amount=-2 -kerning first=371 second=257 amount=-1 -kerning first=161 second=359 amount=-1 -kerning first=164 second=119 amount=-4 -kerning first=274 second=271 amount=-1 -kerning first=277 second=44 amount=-1 -kerning first=40 second=1195 amount=-1 -kerning first=43 second=371 amount=-1 -kerning first=183 second=1026 amount=-5 -kerning first=1051 second=84 amount=-5 -kerning first=186 second=286 amount=-2 -kerning first=1083 second=246 amount=-1 -kerning first=209 second=218 amount=-2 -kerning first=8370 second=1035 amount=-5 -kerning first=8377 second=291 amount=-1 -kerning first=89 second=230 amount=-4 -kerning first=232 second=120 amount=-2 -kerning first=1219 second=85 amount=-2 -kerning first=252 second=287 amount=-1 -kerning first=278 second=219 amount=-2 -kerning first=8212 second=377 amount=-2 -kerning first=44 second=1069 amount=-1 -kerning first=50 second=81 amount=-2 -kerning first=1064 second=34 amount=-3 -kerning first=190 second=231 amount=-1 -kerning first=302 second=361 amount=-1 -kerning first=305 second=121 amount=-1 -kerning first=70 second=243 amount=-1 -kerning first=327 second=1028 amount=-2 -kerning first=87 second=1263 amount=-1 -kerning first=1168 second=336 amount=-2 -kerning first=948 second=350 amount=-1 -kerning first=256 second=232 amount=-1 -kerning first=973 second=275 amount=-1 -kerning first=169 second=244 amount=-1 -kerning first=8224 second=87 amount=-5 -kerning first=74 second=193 amount=-1 -kerning first=211 second=1071 amount=-1 -kerning first=208 second=8230 amount=-1 -kerning first=1097 second=111 amount=-1 -kerning first=906 second=1177 amount=-1 -kerning first=94 second=333 amount=-1 -kerning first=237 second=245 amount=-1 -kerning first=357 second=375 amount=-1 -kerning first=952 second=290 amount=-2 -kerning first=114 second=949 amount=-1 -kerning first=117 second=257 amount=-1 -kerning first=374 second=8211 amount=-4 -kerning first=288 second=84 amount=-1 -kerning first=8225 second=262 amount=-2 -kerning first=192 second=1090 amount=-3 -kerning first=195 second=334 amount=-2 -kerning first=313 second=246 amount=-1 -kerning first=75 second=346 amount=-1 -kerning first=1095 second=1035 amount=-5 -kerning first=218 second=258 amount=-2 -kerning first=912 second=1059 amount=-2 -kerning first=95 second=964 amount=-3 -kerning first=956 second=235 amount=-1 -kerning first=36 second=219 amount=-2 -kerning first=175 second=347 amount=-1 -kerning first=289 second=259 amount=-1 -kerning first=294 second=34 amount=-3 -kerning first=56 second=361 amount=-1 -kerning first=1064 second=8216 amount=-3 -kerning first=59 second=121 amount=-1 -kerning first=196 second=965 amount=-1 -kerning first=8361 second=354 amount=-5 -kerning first=76 second=1028 amount=-1 -kerning first=931 second=248 amount=-1 -kerning first=1186 second=171 amount=-1 -kerning first=270 second=47 amount=-1 -kerning first=37 second=374 amount=-5 -kerning first=1041 second=87 amount=-5 -kerning first=179 second=289 amount=-1 -kerning first=8230 second=1185 amount=-3 -kerning first=63 second=71 amount=-2 -kerning first=1071 second=940 amount=-1 -kerning first=203 second=221 amount=-5 -kerning first=318 second=351 amount=-1 -kerning first=323 second=111 amount=-1 -kerning first=223 second=363 amount=-1 -kerning first=103 second=375 amount=-1 -kerning first=369 second=210 amount=-2 -kerning first=963 second=338 amount=-2 -kerning first=120 second=8211 amount=-3 +kerning first=39 second=229 amount=-1 +kerning first=39 second=230 amount=-1 +kerning first=39 second=231 amount=-1 +kerning first=39 second=232 amount=-1 +kerning first=39 second=233 amount=-1 +kerning first=39 second=234 amount=-1 +kerning first=39 second=235 amount=-1 +kerning first=39 second=240 amount=-1 +kerning first=39 second=242 amount=-1 +kerning first=39 second=243 amount=-1 +kerning first=39 second=244 amount=-1 +kerning first=39 second=245 amount=-1 +kerning first=39 second=246 amount=-1 +kerning first=39 second=248 amount=-1 +kerning first=39 second=256 amount=-3 +kerning first=39 second=257 amount=-1 +kerning first=39 second=258 amount=-3 +kerning first=39 second=259 amount=-1 +kerning first=39 second=260 amount=-3 +kerning first=39 second=261 amount=-1 +kerning first=39 second=263 amount=-1 +kerning first=39 second=267 amount=-1 +kerning first=39 second=269 amount=-1 +kerning first=39 second=271 amount=-1 +kerning first=39 second=273 amount=-1 +kerning first=39 second=275 amount=-1 +kerning first=39 second=277 amount=-1 +kerning first=39 second=279 amount=-1 +kerning first=39 second=281 amount=-1 +kerning first=39 second=283 amount=-1 +kerning first=39 second=287 amount=-1 +kerning first=39 second=289 amount=-1 +kerning first=39 second=291 amount=-1 +kerning first=39 second=333 amount=-1 +kerning first=39 second=335 amount=-1 +kerning first=39 second=337 amount=-1 +kerning first=39 second=339 amount=-1 +kerning first=39 second=347 amount=-1 +kerning first=39 second=351 amount=-1 +kerning first=39 second=353 amount=-1 +kerning first=39 second=913 amount=-3 +kerning first=39 second=916 amount=-3 +kerning first=39 second=923 amount=-3 +kerning first=39 second=940 amount=-1 +kerning first=39 second=941 amount=-1 +kerning first=39 second=945 amount=-1 +kerning first=39 second=949 amount=-1 +kerning first=39 second=959 amount=-1 +kerning first=39 second=962 amount=-1 +kerning first=39 second=963 amount=-1 +kerning first=39 second=966 amount=-1 +kerning first=39 second=972 amount=-1 +kerning first=39 second=1032 amount=-4 +kerning first=39 second=1033 amount=-3 +kerning first=39 second=1040 amount=-3 +kerning first=39 second=1044 amount=-3 +kerning first=39 second=1051 amount=-3 +kerning first=39 second=1072 amount=-1 +kerning first=39 second=1077 amount=-1 +kerning first=39 second=1086 amount=-1 +kerning first=39 second=1089 amount=-1 +kerning first=39 second=1092 amount=-1 +kerning first=39 second=1104 amount=-1 +kerning first=39 second=1105 amount=-1 +kerning first=39 second=1108 amount=-1 +kerning first=39 second=1109 amount=-1 +kerning first=39 second=1195 amount=-1 +kerning first=39 second=1241 amount=-1 +kerning first=39 second=1257 amount=-1 +kerning first=39 second=1298 amount=-3 +kerning first=39 second=8218 amount=-1 +kerning first=39 second=8222 amount=-1 +kerning first=39 second=8230 amount=-1 +kerning first=40 second=106 amount=7 +kerning first=40 second=1112 amount=7 +kerning first=44 second=34 amount=-1 +kerning first=44 second=39 amount=-1 +kerning first=44 second=45 amount=-1 +kerning first=44 second=48 amount=-1 +kerning first=44 second=49 amount=-4 +kerning first=44 second=51 amount=-1 +kerning first=44 second=52 amount=-1 +kerning first=44 second=53 amount=-1 +kerning first=44 second=54 amount=-1 +kerning first=44 second=55 amount=-1 +kerning first=44 second=56 amount=-1 +kerning first=44 second=67 amount=-1 +kerning first=44 second=71 amount=-1 +kerning first=44 second=79 amount=-1 +kerning first=44 second=81 amount=-1 kerning first=44 second=84 amount=-5 -kerning first=1044 second=262 amount=-1 -kerning first=184 second=234 amount=-1 -kerning first=296 second=364 amount=-2 -kerning first=8240 second=8220 amount=-3 -kerning first=64 second=246 amount=-1 -kerning first=1080 second=199 amount=-2 -kerning first=204 second=376 amount=-5 -kerning first=321 second=1035 amount=-5 -kerning first=902 second=211 amount=-2 -kerning first=1106 second=1098 amount=-1 -kerning first=1117 second=101 amount=-1 -kerning first=221 second=8212 amount=-4 -kerning first=944 second=113 amount=-1 -kerning first=1202 second=263 amount=-1 -kerning first=250 second=235 amount=-1 -kerning first=48 second=34 amount=-3 -kerning first=1049 second=212 amount=-2 -kerning first=294 second=8216 amount=-3 -kerning first=68 second=196 amount=-2 -kerning first=1081 second=354 amount=-5 -kerning first=202 second=8250 amount=-1 -kerning first=211 second=86 amount=-2 -kerning first=900 second=1184 amount=-5 -kerning first=903 second=366 amount=-2 -kerning first=88 second=336 amount=-3 -kerning first=1118 second=279 amount=-1 -kerning first=354 second=171 amount=-3 -kerning first=949 second=63 amount=-1 -kerning first=1210 second=213 amount=-2 -kerning first=971 second=225 amount=-1 -kerning first=280 second=87 amount=-5 -kerning first=8217 second=267 amount=-1 -kerning first=1051 second=367 amount=-1 -kerning first=189 second=337 amount=-1 -kerning first=192 second=99 amount=-1 -kerning first=301 second=940 amount=-1 -kerning first=304 second=249 amount=-1 -kerning first=69 second=351 amount=-1 -kerning first=72 second=111 amount=-1 -kerning first=1083 second=1038 amount=-2 -kerning first=209 second=953 amount=-1 -kerning first=8377 second=1101 amount=-1 -kerning first=89 second=967 amount=-2 -kerning first=1170 second=226 amount=-1 -kerning first=352 second=1078 amount=-1 -kerning first=1219 second=368 amount=-2 -kerning first=255 second=338 amount=-2 -kerning first=258 second=100 amount=-1 -kerning first=375 second=941 amount=-1 -kerning first=972 second=380 amount=-1 -kerning first=168 second=352 amount=-1 -kerning first=50 second=364 amount=-2 -kerning first=1048 second=8220 amount=-3 -kerning first=190 second=968 amount=-1 -kerning first=193 second=277 amount=-1 -kerning first=310 second=199 amount=-3 -kerning first=70 second=1035 amount=-5 -kerning first=73 second=291 amount=-1 -kerning first=331 second=1098 amount=-1 -kerning first=915 second=251 amount=-1 -kerning first=910 second=942 amount=-3 -kerning first=239 second=113 amount=-1 -kerning first=236 second=353 amount=-1 -kerning first=113 second=1179 amount=2 -kerning first=1220 second=1066 amount=-5 -kerning first=287 second=212 amount=-2 -kerning first=8224 second=370 amount=-2 -kerning first=48 second=8216 amount=-3 -kerning first=197 second=224 amount=-1 -kerning first=306 second=1118 amount=-1 -kerning first=214 second=1184 amount=-5 -kerning first=338 second=279 amount=-1 -kerning first=100 second=171 amount=-3 -kerning first=243 second=63 amount=-2 -kerning first=363 second=213 amount=-2 -kerning first=960 second=103 amount=-1 -kerning first=1298 second=253 amount=-1 -kerning first=38 second=87 amount=-2 -kerning first=1035 second=267 amount=-1 -kerning first=283 second=1185 amount=-1 -kerning first=58 second=249 amount=-1 -kerning first=55 second=940 amount=-1 -kerning first=313 second=1038 amount=-1 -kerning first=8363 second=242 amount=-1 -kerning first=928 second=356 amount=-5 -kerning first=936 second=116 amount=-1 -kerning first=98 second=1078 amount=-2 -kerning first=956 second=972 amount=-1 -kerning first=124 second=250 amount=-1 -kerning first=121 second=941 amount=-1 -kerning first=178 second=1241 amount=-1 -kerning first=182 second=187 amount=-1 -kerning first=62 second=199 amount=-2 -kerning first=1074 second=357 amount=-1 -kerning first=205 second=89 amount=-5 -kerning first=105 second=263 amount=-1 -kerning first=365 second=1066 amount=-5 -kerning first=965 second=228 amount=-1 -kerning first=43 second=212 amount=-2 -kerning first=1037 second=1194 amount=-2 -kerning first=1041 second=370 amount=-2 -kerning first=298 second=252 amount=-1 -kerning first=63 second=354 amount=-5 -kerning first=60 second=1118 amount=-1 -kerning first=1083 second=67 amount=-2 -kerning first=206 second=266 amount=-2 -kerning first=209 second=39 amount=-3 -kerning first=904 second=79 amount=-2 -kerning first=86 second=279 amount=-1 -kerning first=1116 second=229 amount=-1 -kerning first=1187 second=1195 amount=-1 -kerning first=252 second=103 amount=-1 -kerning first=372 second=253 amount=-1 -kerning first=963 second=1257 amount=-1 -kerning first=162 second=355 amount=-1 -kerning first=165 second=115 amount=-1 -kerning first=41 second=1185 amount=-3 +kerning first=44 second=85 amount=-1 +kerning first=44 second=86 amount=-4 +kerning first=44 second=87 amount=-3 +kerning first=44 second=89 amount=-4 +kerning first=44 second=102 amount=-2 +kerning first=44 second=103 amount=-1 +kerning first=44 second=106 amount=2 +kerning first=44 second=116 amount=-1 +kerning first=44 second=117 amount=-1 +kerning first=44 second=118 amount=-2 +kerning first=44 second=119 amount=-2 +kerning first=44 second=121 amount=-1 +kerning first=44 second=173 amount=-1 +kerning first=44 second=199 amount=-1 +kerning first=44 second=210 amount=-1 +kerning first=44 second=211 amount=-1 +kerning first=44 second=212 amount=-1 +kerning first=44 second=213 amount=-1 +kerning first=44 second=214 amount=-1 +kerning first=44 second=216 amount=-1 +kerning first=44 second=217 amount=-1 +kerning first=44 second=218 amount=-1 +kerning first=44 second=219 amount=-1 +kerning first=44 second=220 amount=-1 +kerning first=44 second=221 amount=-4 +kerning first=44 second=249 amount=-1 +kerning first=44 second=250 amount=-1 +kerning first=44 second=251 amount=-1 +kerning first=44 second=252 amount=-1 +kerning first=44 second=253 amount=-1 +kerning first=44 second=262 amount=-1 +kerning first=44 second=266 amount=-1 +kerning first=44 second=268 amount=-1 +kerning first=44 second=286 amount=-1 +kerning first=44 second=287 amount=-1 +kerning first=44 second=288 amount=-1 +kerning first=44 second=289 amount=-1 +kerning first=44 second=290 amount=-1 +kerning first=44 second=291 amount=-1 +kerning first=44 second=332 amount=-1 +kerning first=44 second=334 amount=-1 +kerning first=44 second=336 amount=-1 +kerning first=44 second=338 amount=-1 +kerning first=44 second=354 amount=-5 +kerning first=44 second=355 amount=-1 +kerning first=44 second=356 amount=-5 +kerning first=44 second=357 amount=-1 +kerning first=44 second=359 amount=-1 +kerning first=44 second=360 amount=-1 +kerning first=44 second=361 amount=-1 +kerning first=44 second=362 amount=-1 +kerning first=44 second=363 amount=-1 +kerning first=44 second=364 amount=-1 +kerning first=44 second=365 amount=-1 +kerning first=44 second=366 amount=-1 kerning first=44 second=367 amount=-1 -kerning first=64 second=1038 amount=-2 -kerning first=1084 second=242 amount=-1 -kerning first=8378 second=287 amount=-1 -kerning first=902 second=945 amount=-1 -kerning first=1117 second=1240 amount=-2 -kerning first=1220 second=81 amount=-2 -kerning first=250 second=972 amount=-1 -kerning first=253 second=281 amount=-1 -kerning first=42 second=8220 amount=-3 -kerning first=191 second=227 amount=-1 -kerning first=306 second=117 amount=-1 -kerning first=303 second=357 amount=-1 -kerning first=357 second=216 amount=-2 -kerning first=108 second=8221 amount=-3 -kerning first=952 second=106 amount=1 -kerning first=971 second=962 amount=-1 -kerning first=170 second=240 amount=-1 -kerning first=280 second=370 amount=-2 -kerning first=8211 second=8230 amount=-1 -kerning first=8225 second=83 amount=-1 -kerning first=49 second=943 amount=-1 -kerning first=52 second=252 amount=-1 -kerning first=189 second=1256 amount=-2 -kerning first=313 second=67 amount=-1 -kerning first=912 second=359 amount=-1 -kerning first=1170 second=963 amount=-1 -kerning first=1175 second=271 amount=-1 -kerning first=358 second=371 amount=-1 -kerning first=950 second=1026 amount=-5 -kerning first=255 second=1257 amount=-1 -kerning first=1067 second=360 amount=-2 -kerning first=314 second=242 amount=-1 -kerning first=73 second=1101 amount=-1 -kerning first=1099 second=287 amount=-1 -kerning first=365 second=81 amount=-2 -kerning first=958 second=231 amount=-1 -kerning first=1263 second=361 amount=-1 -kerning first=1034 second=373 amount=-1 -kerning first=57 second=357 amount=-1 -kerning first=60 second=117 amount=-1 -kerning first=200 second=269 amount=-1 -kerning first=77 second=973 amount=-1 -kerning first=1103 second=232 amount=-1 -kerning first=934 second=244 amount=-1 -kerning first=103 second=216 amount=-2 -kerning first=1177 second=1203 amount=-1 -kerning first=366 second=256 amount=-2 -kerning first=126 second=118 amount=-4 -kerning first=35 second=1194 amount=-2 -kerning first=38 second=370 amount=-2 -kerning first=1028 second=8230 amount=-1 -kerning first=180 second=283 amount=-1 -kerning first=8240 second=1177 amount=-1 -kerning first=8260 second=363 amount=-1 -kerning first=64 second=67 amount=-2 -kerning first=1076 second=245 amount=-1 -kerning first=204 second=217 amount=-2 -kerning first=8366 second=290 amount=-2 -kerning first=84 second=229 amount=-2 -kerning first=1101 second=1299 amount=-1 -kerning first=227 second=119 amount=-1 -kerning first=345 second=271 amount=-1 -kerning first=1202 second=84 amount=-2 -kerning first=247 second=286 amount=-2 -kerning first=961 second=1090 amount=-1 -kerning first=964 second=334 amount=-2 -kerning first=273 second=218 amount=-2 -kerning first=185 second=230 amount=-1 -kerning first=297 second=360 amount=-2 -kerning first=65 second=242 amount=-1 -kerning first=202 second=947 amount=-4 -kerning first=205 second=372 amount=-5 -kerning first=325 second=287 amount=-1 -kerning first=1118 second=97 amount=-1 -kerning first=942 second=347 amount=-1 -kerning first=105 second=1069 amount=-1 -kerning first=1210 second=34 amount=-3 -kerning first=251 second=231 amount=-1 -kerning first=371 second=361 amount=-1 -kerning first=374 second=121 amount=-2 -kerning first=965 second=965 amount=-1 -kerning first=164 second=243 amount=-1 -kerning first=274 second=373 amount=-4 -kerning first=270 second=1202 amount=-3 -kerning first=183 second=1263 amount=-1 -kerning first=1083 second=350 amount=-1 -kerning first=330 second=232 amount=-1 -kerning first=901 second=1176 amount=-1 -kerning first=904 second=362 amount=-2 -kerning first=86 second=1085 amount=-2 -kerning first=89 second=332 amount=-3 -kerning first=1116 second=966 amount=-2 -kerning first=1119 second=275 amount=-1 -kerning first=347 second=1203 amount=-1 -kerning first=352 second=374 amount=-2 -kerning first=946 second=289 amount=-1 -kerning first=1048 second=1177 amount=-1 -kerning first=190 second=333 amount=-1 -kerning first=305 second=245 amount=-1 -kerning first=70 second=345 amount=-1 -kerning first=902 second=8211 amount=-2 -kerning first=93 second=271 amount=-1 -kerning first=90 second=963 amount=-1 -kerning first=951 second=234 amount=-1 -kerning first=1220 second=364 amount=-2 -kerning first=256 second=334 amount=-2 -kerning first=253 second=1090 amount=-3 -kerning first=379 second=246 amount=-1 -kerning first=973 second=376 amount=-5 -kerning first=169 second=346 amount=-1 -kerning first=8224 second=211 amount=-2 -kerning first=51 second=360 amount=-2 -kerning first=1049 second=8212 amount=-2 -kerning first=1062 second=1059 amount=-1 -kerning first=194 second=273 amount=-1 -kerning first=197 second=45 amount=-2 -kerning first=191 second=964 amount=-3 -kerning first=74 second=287 amount=-1 -kerning first=1097 second=235 amount=-1 -kerning first=338 second=97 amount=-1 -kerning first=237 second=347 amount=-1 -kerning first=363 second=34 amount=-3 -kerning first=117 second=361 amount=-1 -kerning first=1210 second=8216 amount=-3 -kerning first=971 second=8250 amount=-1 -kerning first=170 second=1028 amount=-2 -kerning first=174 second=288 amount=-2 -kerning first=8225 second=366 amount=-2 -kerning first=198 second=220 amount=-2 -kerning first=78 second=232 amount=-1 -kerning first=215 second=1176 amount=-1 -kerning first=221 second=122 amount=-2 -kerning first=956 second=337 amount=-1 -kerning first=124 second=71 amount=-2 -kerning first=1299 second=249 amount=-1 -kerning first=266 second=221 amount=-2 -kerning first=1036 second=261 amount=-1 -kerning first=178 second=233 amount=-1 -kerning first=289 second=363 amount=-1 -kerning first=59 second=245 amount=-1 -kerning first=317 second=290 amount=-2 -kerning first=219 second=1051 amount=-1 -kerning first=1107 second=100 amount=-1 -kerning first=931 second=352 amount=-1 -kerning first=105 second=84 amount=-5 -kerning first=1186 second=262 amount=-1 -kerning first=365 second=364 amount=-2 -kerning first=958 second=968 amount=-1 -kerning first=962 second=277 amount=-1 -kerning first=125 second=246 amount=-1 -kerning first=1041 second=211 amount=-2 -kerning first=287 second=8212 amount=-2 -kerning first=197 second=8249 amount=-3 -kerning first=206 second=85 amount=-2 -kerning first=323 second=235 amount=-1 -kerning first=86 second=97 amount=-3 -kerning first=109 second=34 amount=-1 -kerning first=363 second=8216 amount=-3 -kerning first=372 second=74 amount=-3 -kerning first=1044 second=366 amount=-1 -kerning first=184 second=336 amount=-2 -kerning first=299 second=248 amount=-1 -kerning first=64 second=350 amount=-1 -kerning first=8378 second=103 amount=-1 -kerning first=84 second=966 amount=-3 -kerning first=87 second=275 amount=-3 -kerning first=1117 second=225 amount=-1 -kerning first=250 second=337 amount=-1 -kerning first=253 second=99 amount=-1 -kerning first=166 second=111 amount=-1 -kerning first=163 second=351 amount=-1 -kerning first=276 second=261 amount=-1 -kerning first=273 second=953 amount=-1 -kerning first=42 second=1177 amount=-1 -kerning first=906 second=250 amount=-1 -kerning first=903 second=941 amount=-1 -kerning first=354 second=262 amount=-1 -kerning first=1195 second=8220 amount=-1 -kerning first=251 second=968 amount=-1 -kerning first=254 second=277 amount=-1 -kerning first=377 second=199 amount=-1 -kerning first=968 second=1079 amount=-1 -kerning first=164 second=1035 amount=-5 -kerning first=167 second=291 amount=-1 -kerning first=280 second=211 amount=-2 -kerning first=43 second=8212 amount=-2 -kerning first=46 second=1059 amount=-1 -kerning first=1063 second=251 amount=-1 -kerning first=304 second=353 amount=-1 -kerning first=72 second=235 amount=-1 -kerning first=358 second=212 amount=-2 -kerning first=109 second=8216 amount=-1 -kerning first=1219 second=943 amount=-1 -kerning first=1224 second=252 amount=-1 -kerning first=258 second=224 amount=-1 -kerning first=375 second=1118 amount=-1 -kerning first=1026 second=266 amount=-2 -kerning first=1033 second=39 amount=-2 -kerning first=278 second=1184 amount=-5 -kerning first=8212 second=8222 amount=-1 -kerning first=8226 second=79 amount=-2 -kerning first=53 second=248 amount=-1 -kerning first=196 second=171 amount=-3 -kerning first=1099 second=103 amount=-1 -kerning first=910 second=1119 amount=-3 -kerning first=923 second=115 amount=-1 -kerning first=915 second=355 amount=-1 -kerning first=1176 second=267 amount=-1 -kerning first=34 second=261 amount=-1 -kerning first=279 second=8218 amount=-1 -kerning first=8224 second=945 amount=-1 -kerning first=1071 second=116 amount=-1 -kerning first=1068 second=356 amount=-5 -kerning first=77 second=338 amount=-2 -kerning first=80 second=100 amount=-1 -kerning first=1097 second=972 amount=-1 -kerning first=100 second=262 amount=-2 -kerning first=240 second=1241 amount=-1 -kerning first=357 second=8220 amount=-3 -kerning first=960 second=227 amount=-1 -kerning first=123 second=199 amount=-2 -kerning first=1298 second=357 amount=-1 -kerning first=260 second=1079 amount=-1 -kerning first=268 second=89 amount=-2 -kerning first=38 second=211 amount=-2 -kerning first=1035 second=369 amount=-1 -kerning first=174 second=1098 amount=-3 -kerning first=177 second=339 amount=-1 -kerning first=180 second=101 amount=-1 -kerning first=291 second=251 amount=-1 -kerning first=58 second=353 amount=-1 -kerning first=61 second=113 amount=-1 -kerning first=201 second=263 amount=-1 -kerning first=8366 second=106 amount=1 -kerning first=936 second=240 amount=-1 -kerning first=1178 second=1194 amount=-1 -kerning first=367 second=252 amount=-1 -kerning first=956 second=1256 amount=-2 -kerning first=961 second=382 amount=-1 -kerning first=121 second=1118 amount=-1 -kerning first=124 second=354 amount=-5 -kerning first=273 second=39 amount=-3 -kerning first=36 second=1184 amount=-5 -kerning first=178 second=970 amount=-1 -kerning first=182 second=279 amount=-1 -kerning first=1046 second=79 amount=-3 -kerning first=65 second=63 amount=-5 -kerning first=1074 second=920 amount=-2 -kerning first=205 second=213 amount=-2 -kerning first=8364 second=1026 amount=-5 -kerning first=8369 second=286 amount=-2 -kerning first=325 second=103 amount=-1 -kerning first=900 second=253 amount=-1 -kerning first=105 second=367 amount=-1 -kerning first=125 second=1038 amount=-2 -kerning first=274 second=214 amount=-2 -kerning first=1041 second=945 amount=-1 -kerning first=186 second=226 amount=-1 -kerning first=298 second=356 amount=-5 -kerning first=301 second=116 amount=-1 -kerning first=206 second=368 amount=-2 -kerning first=323 second=972 amount=-1 -kerning first=8377 second=231 amount=-1 -kerning first=86 second=380 amount=-2 -kerning first=103 second=8220 amount=-3 -kerning first=252 second=227 amount=-1 -kerning first=375 second=117 amount=-1 -kerning first=47 second=251 amount=-1 -kerning first=204 second=8221 amount=-3 -kerning first=207 second=1066 amount=-5 -kerning first=910 second=118 amount=-2 -kerning first=87 second=1080 amount=-2 -kerning first=1117 second=962 amount=-1 -kerning first=948 second=283 amount=-1 -kerning first=113 second=252 amount=-1 -kerning first=250 second=1256 amount=-2 -kerning first=379 second=67 amount=-1 -kerning first=973 second=217 amount=-2 -kerning first=282 second=79 amount=-2 -kerning first=8216 second=949 amount=-1 -kerning first=8220 second=257 amount=-1 -kerning first=1065 second=119 amount=-2 -kerning first=303 second=920 amount=-2 -kerning first=1085 second=1026 amount=-5 -kerning first=74 second=103 amount=-1 -kerning first=214 second=253 amount=-1 -kerning first=94 second=267 amount=-1 -kerning first=1174 second=218 amount=-1 -kerning first=952 second=230 amount=-1 -kerning first=1223 second=360 amount=-2 -kerning first=1257 second=120 amount=-2 -kerning first=380 second=242 amount=-1 -kerning first=971 second=947 amount=-4 -kerning first=167 second=1101 amount=-1 -kerning first=280 second=945 amount=-1 -kerning first=52 second=356 amount=-5 -kerning first=55 second=116 amount=-1 -kerning first=195 second=268 amount=-2 -kerning first=72 second=972 amount=-1 -kerning first=75 second=281 amount=-2 -kerning first=950 second=1263 amount=-1 -kerning first=121 second=117 amount=-1 -kerning first=8222 second=1176 amount=-1 -kerning first=8226 second=362 amount=-2 -kerning first=317 second=106 amount=1 -kerning first=8361 second=289 amount=-1 -kerning first=96 second=1194 amount=-2 -kerning first=958 second=333 amount=-1 -kerning first=125 second=67 amount=-2 -kerning first=40 second=79 amount=-2 -kerning first=1037 second=257 amount=-1 -kerning first=179 second=229 amount=-1 -kerning first=295 second=119 amount=-1 -kerning first=8224 second=8211 amount=-2 -kerning first=57 second=920 amount=-2 -kerning first=200 second=371 amount=-1 -kerning first=197 second=1195 amount=-1 -kerning first=315 second=1026 amount=-6 -kerning first=318 second=286 amount=-2 -kerning first=8365 second=234 amount=-1 -kerning first=77 second=1257 amount=-1 -kerning first=1103 second=334 amount=-2 -kerning first=934 second=346 amount=-1 -kerning first=963 second=273 amount=-1 -kerning first=960 second=964 amount=-3 -kerning first=126 second=242 amount=-1 -kerning first=263 second=947 amount=-1 -kerning first=268 second=372 amount=-1 -kerning first=38 second=945 amount=-1 -kerning first=180 second=1240 amount=-2 -kerning first=177 second=1262 amount=-2 -kerning first=1073 second=1108 amount=-1 -kerning first=201 second=1069 amount=-1 -kerning first=207 second=81 amount=-2 -kerning first=902 second=121 amount=-1 -kerning first=84 second=331 amount=-2 -kerning first=936 second=1028 amount=-2 -kerning first=967 second=220 amount=-2 -kerning first=1039 second=1176 amount=-1 -kerning first=185 second=332 amount=-2 -kerning first=300 second=244 amount=-1 -kerning first=1081 second=289 amount=-1 -kerning first=208 second=256 amount=-2 -kerning first=906 second=71 amount=-2 -kerning first=1118 second=221 amount=-5 -kerning first=343 second=8230 amount=-3 -kerning first=354 second=83 amount=-1 -kerning first=251 second=333 amount=-1 -kerning first=374 second=245 amount=-4 -kerning first=968 second=375 amount=-1 -kerning first=274 second=949 amount=-1 +kerning first=44 second=368 amount=-1 +kerning first=44 second=369 amount=-1 +kerning first=44 second=370 amount=-1 +kerning first=44 second=371 amount=-1 +kerning first=44 second=372 amount=-3 +kerning first=44 second=373 amount=-2 +kerning first=44 second=374 amount=-4 +kerning first=44 second=375 amount=-1 +kerning first=44 second=376 amount=-4 +kerning first=44 second=920 amount=-1 +kerning first=44 second=927 amount=-1 +kerning first=44 second=932 amount=-5 +kerning first=44 second=933 amount=-4 +kerning first=44 second=939 amount=-4 +kerning first=44 second=947 amount=-2 +kerning first=44 second=957 amount=-2 +kerning first=44 second=964 amount=-3 +kerning first=44 second=965 amount=-1 +kerning first=44 second=968 amount=-1 +kerning first=44 second=973 amount=-1 +kerning first=44 second=1026 amount=-5 +kerning first=44 second=1028 amount=-1 +kerning first=44 second=1035 amount=-5 +kerning first=44 second=1038 amount=-1 +kerning first=44 second=1054 amount=-1 +kerning first=44 second=1057 amount=-1 +kerning first=44 second=1058 amount=-5 +kerning first=44 second=1059 amount=-1 +kerning first=44 second=1063 amount=-3 +kerning first=44 second=1066 amount=-5 +kerning first=44 second=1069 amount=-1 +kerning first=44 second=1090 amount=-3 +kerning first=44 second=1091 amount=-1 +kerning first=44 second=1098 amount=-3 +kerning first=44 second=1112 amount=2 +kerning first=44 second=1118 amount=-1 +kerning first=44 second=1176 amount=-1 +kerning first=44 second=1184 amount=-5 +kerning first=44 second=1185 amount=-3 +kerning first=44 second=1194 amount=-1 +kerning first=44 second=1198 amount=-4 +kerning first=44 second=1199 amount=-2 +kerning first=44 second=1240 amount=-1 +kerning first=44 second=1256 amount=-1 +kerning first=44 second=1262 amount=-1 +kerning first=44 second=1263 amount=-1 +kerning first=44 second=8211 amount=-1 +kerning first=44 second=8212 amount=-1 +kerning first=44 second=8216 amount=-1 +kerning first=44 second=8217 amount=-1 +kerning first=44 second=8220 amount=-1 +kerning first=44 second=8221 amount=-1 +kerning first=45 second=44 amount=-1 +kerning first=45 second=46 amount=-1 +kerning first=45 second=47 amount=-1 +kerning first=45 second=49 amount=-3 +kerning first=45 second=50 amount=-2 +kerning first=45 second=51 amount=-2 +kerning first=45 second=55 amount=-3 +kerning first=45 second=65 amount=-2 +kerning first=45 second=83 amount=-1 +kerning first=45 second=84 amount=-4 +kerning first=45 second=86 amount=-3 +kerning first=45 second=87 amount=-2 +kerning first=45 second=88 amount=-3 +kerning first=45 second=89 amount=-4 +kerning first=45 second=90 amount=-2 +kerning first=45 second=102 amount=-2 +kerning first=45 second=118 amount=-1 +kerning first=45 second=119 amount=-1 +kerning first=45 second=120 amount=-2 +kerning first=45 second=122 amount=-2 +kerning first=45 second=193 amount=-2 +kerning first=45 second=194 amount=-2 +kerning first=45 second=196 amount=-2 +kerning first=45 second=197 amount=-2 +kerning first=45 second=198 amount=-2 +kerning first=45 second=221 amount=-4 +kerning first=45 second=256 amount=-2 +kerning first=45 second=258 amount=-2 +kerning first=45 second=260 amount=-2 +kerning first=45 second=346 amount=-1 +kerning first=45 second=350 amount=-1 +kerning first=45 second=352 amount=-1 +kerning first=45 second=354 amount=-4 +kerning first=45 second=356 amount=-4 +kerning first=45 second=372 amount=-2 +kerning first=45 second=373 amount=-1 +kerning first=45 second=374 amount=-4 +kerning first=45 second=376 amount=-4 +kerning first=45 second=377 amount=-2 +kerning first=45 second=378 amount=-2 +kerning first=45 second=379 amount=-2 +kerning first=45 second=380 amount=-2 +kerning first=45 second=381 amount=-2 +kerning first=45 second=382 amount=-2 +kerning first=45 second=913 amount=-2 +kerning first=45 second=916 amount=-2 +kerning first=45 second=918 amount=-2 +kerning first=45 second=923 amount=-2 +kerning first=45 second=932 amount=-4 +kerning first=45 second=933 amount=-4 +kerning first=45 second=935 amount=-3 +kerning first=45 second=939 amount=-4 +kerning first=45 second=947 amount=-1 +kerning first=45 second=957 amount=-1 +kerning first=45 second=1026 amount=-4 +kerning first=45 second=1029 amount=-1 +kerning first=45 second=1033 amount=-4 +kerning first=45 second=1035 amount=-4 +kerning first=45 second=1040 amount=-2 +kerning first=45 second=1044 amount=-4 +kerning first=45 second=1046 amount=-3 +kerning first=45 second=1051 amount=-4 +kerning first=45 second=1058 amount=-4 +kerning first=45 second=1061 amount=-3 +kerning first=45 second=1066 amount=-4 +kerning first=45 second=1069 amount=-1 +kerning first=45 second=1071 amount=-1 +kerning first=45 second=1078 amount=-2 +kerning first=45 second=1093 amount=-2 +kerning first=45 second=1174 amount=-3 +kerning first=45 second=1175 amount=-2 +kerning first=45 second=1176 amount=-1 +kerning first=45 second=1184 amount=-4 +kerning first=45 second=1198 amount=-4 +kerning first=45 second=1199 amount=-1 +kerning first=45 second=1202 amount=-3 +kerning first=45 second=1203 amount=-2 +kerning first=45 second=1298 amount=-4 +kerning first=45 second=8218 amount=-1 +kerning first=45 second=8222 amount=-1 +kerning first=45 second=8230 amount=-1 +kerning first=46 second=34 amount=-1 +kerning first=46 second=39 amount=-1 +kerning first=46 second=45 amount=-1 +kerning first=46 second=48 amount=-1 +kerning first=46 second=49 amount=-4 +kerning first=46 second=51 amount=-1 +kerning first=46 second=52 amount=-1 +kerning first=46 second=53 amount=-1 +kerning first=46 second=54 amount=-1 +kerning first=46 second=55 amount=-1 +kerning first=46 second=56 amount=-1 +kerning first=46 second=67 amount=-1 +kerning first=46 second=71 amount=-1 +kerning first=46 second=79 amount=-1 +kerning first=46 second=81 amount=-1 +kerning first=46 second=84 amount=-5 +kerning first=46 second=85 amount=-1 +kerning first=46 second=86 amount=-4 +kerning first=46 second=87 amount=-3 +kerning first=46 second=89 amount=-4 +kerning first=46 second=102 amount=-2 +kerning first=46 second=103 amount=-1 +kerning first=46 second=106 amount=2 +kerning first=46 second=116 amount=-1 +kerning first=46 second=117 amount=-1 +kerning first=46 second=118 amount=-2 +kerning first=46 second=119 amount=-2 +kerning first=46 second=121 amount=-1 +kerning first=46 second=173 amount=-1 +kerning first=46 second=199 amount=-1 +kerning first=46 second=210 amount=-1 +kerning first=46 second=211 amount=-1 +kerning first=46 second=212 amount=-1 +kerning first=46 second=213 amount=-1 +kerning first=46 second=214 amount=-1 +kerning first=46 second=216 amount=-1 +kerning first=46 second=217 amount=-1 +kerning first=46 second=218 amount=-1 +kerning first=46 second=219 amount=-1 +kerning first=46 second=220 amount=-1 +kerning first=46 second=221 amount=-4 +kerning first=46 second=249 amount=-1 +kerning first=46 second=250 amount=-1 +kerning first=46 second=251 amount=-1 +kerning first=46 second=252 amount=-1 +kerning first=46 second=253 amount=-1 +kerning first=46 second=262 amount=-1 +kerning first=46 second=266 amount=-1 +kerning first=46 second=268 amount=-1 +kerning first=46 second=286 amount=-1 +kerning first=46 second=287 amount=-1 +kerning first=46 second=288 amount=-1 +kerning first=46 second=289 amount=-1 +kerning first=46 second=290 amount=-1 +kerning first=46 second=291 amount=-1 +kerning first=46 second=332 amount=-1 +kerning first=46 second=334 amount=-1 +kerning first=46 second=336 amount=-1 +kerning first=46 second=338 amount=-1 +kerning first=46 second=354 amount=-5 +kerning first=46 second=355 amount=-1 +kerning first=46 second=356 amount=-5 +kerning first=46 second=357 amount=-1 kerning first=46 second=359 amount=-1 -kerning first=1041 second=8211 amount=-2 -kerning first=49 second=119 amount=-4 -kerning first=186 second=963 amount=-1 -kerning first=189 second=271 amount=-1 -kerning first=69 second=286 amount=-2 -kerning first=66 second=1026 amount=-1 -kerning first=1087 second=234 amount=-1 -kerning first=326 second=1090 amount=-1 -kerning first=330 second=334 amount=-2 -kerning first=8377 second=968 amount=-1 -kerning first=92 second=218 amount=-2 -kerning first=1119 second=376 amount=-5 -kerning first=115 second=120 amount=-1 -kerning first=947 second=8212 amount=-1 -kerning first=255 second=273 amount=-1 -kerning first=258 second=45 amount=-2 -kerning first=252 second=964 amount=-3 -kerning first=1206 second=1059 amount=-1 -kerning first=1026 second=85 amount=-2 -kerning first=168 second=287 amount=-1 -kerning first=8218 second=365 amount=-1 -kerning first=193 second=219 amount=-2 -kerning first=302 second=1108 amount=-1 -kerning first=305 second=347 amount=-1 -kerning first=73 second=231 amount=-1 -kerning first=337 second=46 amount=-1 -kerning first=93 second=373 amount=-4 -kerning first=1117 second=8250 amount=-1 -kerning first=236 second=288 amount=-2 -kerning first=951 second=336 amount=-2 -kerning first=172 second=232 amount=-1 -kerning first=282 second=362 amount=-2 -kerning first=54 second=244 amount=-1 -kerning first=1068 second=197 amount=-1 -kerning first=194 second=374 amount=-5 -kerning first=311 second=289 amount=-2 -kerning first=1097 second=337 amount=-1 -kerning first=338 second=221 amount=-5 -kerning first=926 second=111 amount=-1 -kerning first=916 second=351 amount=-1 -kerning first=100 second=83 amount=-1 -kerning first=240 second=233 amount=-1 -kerning first=357 second=1177 amount=-1 -kerning first=120 second=245 amount=-2 -kerning first=260 second=375 amount=-1 -kerning first=35 second=257 amount=-1 -kerning first=1035 second=210 amount=-2 -kerning first=280 second=8211 amount=-2 -kerning first=8240 second=250 amount=-1 -kerning first=8225 second=941 amount=-1 -kerning first=201 second=84 amount=-5 -kerning first=316 second=234 amount=-1 -kerning first=8363 second=187 amount=-1 -kerning first=75 second=1090 amount=-4 -kerning first=78 second=334 amount=-2 -kerning first=221 second=246 amount=-4 -kerning first=928 second=291 amount=-1 -kerning first=920 second=1035 amount=-2 -kerning first=358 second=8212 amount=-2 -kerning first=361 second=1059 amount=-2 -kerning first=1299 second=353 amount=-1 -kerning first=258 second=8249 amount=-3 -kerning first=1036 second=365 amount=-1 -kerning first=178 second=335 amount=-1 -kerning first=182 second=97 amount=-1 -kerning first=56 second=1108 amount=-1 -kerning first=59 second=347 amount=-1 -kerning first=202 second=259 amount=-1 -kerning first=205 second=34 amount=-3 -kerning first=85 second=46 amount=-1 -kerning first=346 second=86 amount=-2 -kerning first=1186 second=366 amount=-1 -kerning first=965 second=171 amount=-3 -kerning first=125 second=350 amount=-1 -kerning first=270 second=260 amount=-2 -kerning first=37 second=1176 amount=-1 -kerning first=40 second=362 amount=-2 -kerning first=1034 second=8217 amount=-2 -kerning first=179 second=966 amount=-1 -kerning first=183 second=275 amount=-1 -kerning first=63 second=289 amount=-1 -kerning first=323 second=337 amount=-1 -kerning first=901 second=249 amount=-1 -kerning first=86 second=221 amount=-5 -kerning first=103 second=1177 amount=-1 -kerning first=246 second=967 amount=-2 -kerning first=372 second=198 amount=-5 -kerning first=162 second=290 amount=-2 -kerning first=38 second=8211 amount=-2 -kerning first=1044 second=941 amount=-1 -kerning first=1048 second=250 amount=-1 -kerning first=299 second=352 amount=-1 -kerning first=1080 second=1241 amount=-1 -kerning first=1084 second=187 amount=-1 -kerning first=207 second=364 amount=-2 -kerning first=327 second=277 amount=-1 -kerning first=8378 second=227 amount=-1 -kerning first=905 second=199 amount=-2 -kerning first=1168 second=89 amount=-5 -kerning first=944 second=339 amount=-1 -kerning first=948 second=101 amount=-1 -kerning first=373 second=353 amount=-1 -kerning first=376 second=113 amount=-4 -kerning first=967 second=955 amount=-2 -kerning first=166 second=235 amount=-1 -kerning first=276 second=365 amount=-1 -kerning first=205 second=8216 amount=-3 -kerning first=903 second=1118 amount=-1 -kerning first=906 second=354 amount=-5 -kerning first=1174 second=39 amount=-2 -kerning first=114 second=248 amount=-1 -kerning first=274 second=8217 amount=-3 -kerning first=1063 second=355 amount=-1 -kerning first=195 second=87 amount=-5 -kerning first=72 second=337 amount=-1 -kerning first=75 second=99 amount=-2 -kerning first=215 second=249 amount=-1 -kerning first=92 second=953 amount=-1 -kerning first=95 second=261 amount=-1 -kerning first=1224 second=356 amount=-5 -kerning first=1026 second=368 amount=-2 -kerning first=175 second=100 amount=-1 -kerning first=53 second=352 amount=-1 -kerning first=1070 second=65 amount=-2 -kerning first=196 second=262 amount=-2 -kerning first=314 second=187 amount=-1 -kerning first=310 second=1241 amount=-2 -kerning first=73 second=968 amount=-1 -kerning first=76 second=277 amount=-1 -kerning first=1099 second=227 amount=-1 -kerning first=340 second=89 amount=-2 -kerning first=1176 second=369 amount=-1 -kerning first=236 second=1098 amount=-3 -kerning first=239 second=339 amount=-1 -kerning first=119 second=353 amount=-1 -kerning first=122 second=113 amount=-1 -kerning first=973 second=8221 amount=-3 -kerning first=1027 second=1066 amount=-5 -kerning first=1068 second=916 amount=-1 -kerning first=1071 second=240 amount=-1 -kerning first=200 second=212 amount=-2 -kerning first=80 second=224 amount=-1 -kerning first=100 second=366 amount=-2 -kerning first=240 second=970 amount=-1 -kerning first=1298 second=920 amount=-2 -kerning first=180 second=225 amount=-1 -kerning first=291 second=355 amount=-1 -kerning first=296 second=115 amount=-1 -kerning first=198 second=1185 amount=-3 -kerning first=201 second=367 amount=-1 -kerning first=8366 second=230 amount=-1 -kerning first=81 second=379 amount=-1 -kerning first=1101 second=1083 amount=-1 -kerning first=928 second=1101 amount=-1 -kerning first=98 second=8218 amount=-1 -kerning first=1185 second=945 amount=-2 -kerning first=247 second=226 amount=-1 -kerning first=367 second=356 amount=-5 -kerning first=964 second=268 amount=-2 -kerning first=42 second=250 amount=-1 -kerning first=39 second=941 amount=-1 -kerning first=62 second=1241 amount=-1 -kerning first=65 second=187 amount=-1 -kerning first=325 second=227 amount=-1 -kerning first=8364 second=1263 amount=-1 -kerning first=900 second=357 amount=-1 -kerning first=903 second=117 amount=-1 -kerning first=108 second=251 amount=-1 -kerning first=968 second=216 amount=-2 -kerning first=270 second=1066 amount=-2 -kerning first=267 second=8221 amount=-1 -kerning first=8211 second=256 amount=-2 -kerning first=1051 second=118 amount=-4 -kerning first=301 second=240 amount=-1 -kerning first=1083 second=283 amount=-1 -kerning first=206 second=943 amount=-1 -kerning first=209 second=252 amount=-1 -kerning first=323 second=1256 amount=-2 -kerning first=8377 second=333 amount=-1 -kerning first=89 second=266 amount=-3 -kerning first=92 second=39 amount=-3 -kerning first=1119 second=217 amount=-2 -kerning first=946 second=229 amount=-1 -kerning first=1219 second=119 amount=-4 -kerning first=372 second=920 amount=-2 -kerning first=168 second=103 amount=-1 -kerning first=278 second=253 amount=-1 -kerning first=47 second=355 amount=-1 -kerning first=50 second=115 amount=-1 -kerning first=190 second=267 amount=-1 -kerning first=8378 second=964 amount=-3 -kerning first=93 second=214 amount=-2 -kerning first=1117 second=947 amount=-4 -kerning first=1168 second=372 amount=-5 -kerning first=910 second=242 amount=-4 -kerning first=948 second=1240 amount=-2 -kerning first=944 second=1262 amount=-2 -kerning first=113 second=356 amount=-5 -kerning first=256 second=268 amount=-2 -kerning first=1027 second=81 amount=-2 -kerning first=166 second=972 amount=-1 -kerning first=169 second=281 amount=-1 -kerning first=8224 second=121 amount=-1 -kerning first=1065 second=243 amount=-1 -kerning first=74 second=227 amount=-1 -kerning first=1085 second=1263 amount=-1 -kerning first=214 second=357 amount=-1 -kerning first=94 second=369 amount=-1 -kerning first=952 second=332 amount=-2 -kerning first=260 second=216 amount=-2 -kerning first=1028 second=256 amount=-1 -kerning first=174 second=228 amount=-1 -kerning first=8240 second=71 amount=-2 -kerning first=55 second=240 amount=-1 -kerning first=1069 second=193 amount=-2 -kerning first=192 second=1194 amount=-2 -kerning first=195 second=370 amount=-2 -kerning first=313 second=283 amount=-1 -kerning first=72 second=1256 amount=-2 -kerning first=221 second=67 amount=-3 -kerning first=1175 second=949 amount=-1 -kerning first=361 second=359 amount=-1 -kerning first=956 second=271 amount=-1 -kerning first=961 second=44 amount=-1 -kerning first=258 second=1195 amount=-1 -kerning first=36 second=253 amount=-1 -kerning first=317 second=230 amount=-1 -kerning first=1099 second=964 amount=-3 -kerning first=219 second=923 amount=-2 -kerning first=337 second=947 amount=-1 -kerning first=340 second=372 amount=-1 -kerning first=931 second=287 amount=-1 -kerning first=239 second=1262 amount=-2 -kerning first=962 second=219 amount=-2 -kerning first=1263 second=1108 amount=-1 -kerning first=262 second=1069 amount=1 -kerning first=1037 second=361 amount=-1 -kerning first=1041 second=121 amount=-1 -kerning first=1071 second=1028 amount=-2 -kerning first=315 second=1263 amount=-1 -kerning first=8365 second=336 amount=-2 -kerning first=80 second=961 amount=-1 -kerning first=1184 second=1176 amount=-2 -kerning first=369 second=244 amount=-1 -kerning first=963 second=374 amount=-5 -kerning first=162 second=106 amount=1 -kerning first=44 second=118 amount=-2 -kerning first=1048 second=71 amount=-2 -kerning first=180 second=962 amount=-1 -kerning first=64 second=283 amount=-1 -kerning first=1080 second=233 amount=-1 -kerning first=902 second=245 amount=-1 -kerning first=345 second=949 amount=-1 -kerning first=1185 second=8211 amount=-3 -kerning first=1194 second=1051 amount=-1 -kerning first=110 second=119 amount=-1 -kerning first=247 second=963 amount=-1 -kerning first=250 second=271 amount=-1 -kerning first=160 second=1026 amount=-5 -kerning first=163 second=286 amount=-2 -kerning first=1046 second=934 amount=-5 -kerning first=1049 second=246 amount=-1 -kerning first=188 second=218 amount=-2 -kerning first=300 second=346 amount=-1 -kerning first=325 second=964 amount=-3 -kerning first=254 second=219 amount=-2 -kerning first=371 second=1108 amount=-1 -kerning first=374 second=347 amount=-3 -kerning first=971 second=259 amount=-1 -kerning first=167 second=231 amount=-1 -kerning first=280 second=121 amount=-1 -kerning first=8221 second=74 amount=-4 -kerning first=49 second=243 amount=-1 -kerning first=189 second=373 amount=-4 -kerning first=301 second=1028 amount=-2 -kerning first=304 second=288 amount=-2 -kerning first=1087 second=336 amount=-2 -kerning first=946 second=966 amount=-1 -kerning first=950 second=275 amount=-1 -kerning first=255 second=374 amount=-5 -kerning first=8222 second=249 amount=-1 -kerning first=1064 second=351 amount=-1 -kerning first=1067 second=111 amount=-1 -kerning first=196 second=83 amount=-1 -kerning first=310 second=233 amount=-2 -kerning first=70 second=1087 amount=-1 -kerning first=73 second=333 amount=-1 -kerning first=915 second=290 amount=-2 -kerning first=93 second=949 amount=-1 -kerning first=96 second=257 amount=-1 -kerning first=1176 second=210 amount=-2 -kerning first=233 second=1299 amount=-1 -kerning first=356 second=1051 amount=-4 -kerning first=262 second=84 amount=-1 -kerning first=382 second=234 amount=-1 -kerning first=1027 second=364 amount=-2 -kerning first=172 second=334 amount=-2 -kerning first=169 second=1090 amount=-3 -kerning first=287 second=246 amount=-1 -kerning first=8230 second=199 amount=-1 -kerning first=54 second=346 amount=-1 -kerning first=1065 second=1035 amount=-2 -kerning first=194 second=950 amount=-1 -kerning first=80 second=45 amount=-2 -kerning first=77 second=273 amount=-1 -kerning first=74 second=964 amount=-3 -kerning first=926 second=235 amount=-1 -kerning first=240 second=335 amount=-1 -kerning first=117 second=1108 amount=-1 -kerning first=120 second=347 amount=-1 -kerning first=35 second=361 amount=-1 -kerning first=38 second=121 amount=-1 -kerning first=174 second=965 amount=-1 -kerning first=8225 second=1118 amount=-1 -kerning first=8240 second=354 amount=-5 -kerning first=55 second=1028 amount=-2 -kerning first=58 second=288 amount=-2 -kerning first=316 second=336 amount=-2 -kerning first=8363 second=279 amount=-1 -kerning first=1101 second=378 amount=-1 -kerning first=221 second=350 amount=-1 -kerning first=1178 second=1063 amount=-2 -kerning first=964 second=87 amount=-5 -kerning first=124 second=289 amount=-1 -kerning first=42 second=71 amount=-2 -kerning first=1036 second=940 amount=-2 -kerning first=1039 second=249 amount=-1 -kerning first=182 second=221 amount=-5 -kerning first=294 second=351 amount=-1 -kerning first=297 second=111 amount=-1 -kerning first=62 second=233 amount=-1 -kerning first=202 second=363 amount=-1 -kerning first=8369 second=226 amount=-1 -kerning first=1102 second=1078 amount=-2 -kerning first=942 second=100 amount=-1 -kerning first=1186 second=941 amount=-1 -kerning first=965 second=262 amount=-2 -kerning first=161 second=234 amount=-1 -kerning first=43 second=246 amount=-1 -kerning first=183 second=376 amount=-5 -kerning first=298 second=291 amount=-1 -kerning first=203 second=1059 amount=-2 -kerning first=200 second=8212 amount=-2 -kerning first=1083 second=101 amount=-1 -kerning first=904 second=113 amount=-1 -kerning first=901 second=353 amount=-1 -kerning first=80 second=8249 amount=-3 -kerning first=1108 second=955 amount=-1 -kerning first=1116 second=263 amount=-2 +kerning first=46 second=360 amount=-1 +kerning first=46 second=361 amount=-1 +kerning first=46 second=362 amount=-1 +kerning first=46 second=363 amount=-1 +kerning first=46 second=364 amount=-1 +kerning first=46 second=365 amount=-1 +kerning first=46 second=366 amount=-1 +kerning first=46 second=367 amount=-1 +kerning first=46 second=368 amount=-1 +kerning first=46 second=369 amount=-1 +kerning first=46 second=370 amount=-1 +kerning first=46 second=371 amount=-1 +kerning first=46 second=372 amount=-3 +kerning first=46 second=373 amount=-2 +kerning first=46 second=374 amount=-4 +kerning first=46 second=375 amount=-1 +kerning first=46 second=376 amount=-4 +kerning first=46 second=920 amount=-1 +kerning first=46 second=927 amount=-1 +kerning first=46 second=932 amount=-5 +kerning first=46 second=933 amount=-4 +kerning first=46 second=939 amount=-4 +kerning first=46 second=947 amount=-2 +kerning first=46 second=957 amount=-2 +kerning first=46 second=964 amount=-3 +kerning first=46 second=965 amount=-1 +kerning first=46 second=968 amount=-1 +kerning first=46 second=973 amount=-1 +kerning first=46 second=1026 amount=-5 +kerning first=46 second=1028 amount=-1 +kerning first=46 second=1035 amount=-5 +kerning first=46 second=1038 amount=-1 +kerning first=46 second=1054 amount=-1 +kerning first=46 second=1057 amount=-1 +kerning first=46 second=1058 amount=-5 +kerning first=46 second=1059 amount=-1 +kerning first=46 second=1063 amount=-3 +kerning first=46 second=1066 amount=-5 +kerning first=46 second=1069 amount=-1 +kerning first=46 second=1090 amount=-3 +kerning first=46 second=1091 amount=-1 +kerning first=46 second=1098 amount=-3 +kerning first=46 second=1112 amount=2 +kerning first=46 second=1118 amount=-1 +kerning first=46 second=1176 amount=-1 +kerning first=46 second=1184 amount=-5 +kerning first=46 second=1185 amount=-3 +kerning first=46 second=1194 amount=-1 +kerning first=46 second=1198 amount=-4 +kerning first=46 second=1199 amount=-2 +kerning first=46 second=1240 amount=-1 +kerning first=46 second=1256 amount=-1 +kerning first=46 second=1262 amount=-1 +kerning first=46 second=1263 amount=-1 +kerning first=46 second=8211 amount=-1 +kerning first=46 second=8212 amount=-1 +kerning first=46 second=8216 amount=-1 +kerning first=46 second=8217 amount=-1 +kerning first=46 second=8220 amount=-1 +kerning first=46 second=8221 amount=-1 +kerning first=47 second=38 amount=-1 +kerning first=47 second=44 amount=-4 +kerning first=47 second=45 amount=-1 +kerning first=47 second=46 amount=-4 +kerning first=47 second=110 amount=-1 +kerning first=47 second=65 amount=-5 +kerning first=47 second=67 amount=-1 +kerning first=47 second=114 amount=-1 +kerning first=47 second=71 amount=-1 +kerning first=47 second=74 amount=-3 +kerning first=47 second=79 amount=-1 +kerning first=47 second=81 amount=-1 +kerning first=47 second=83 amount=-1 +kerning first=47 second=97 amount=-2 +kerning first=47 second=99 amount=-2 +kerning first=47 second=100 amount=-2 +kerning first=47 second=101 amount=-2 +kerning first=47 second=102 amount=-1 +kerning first=47 second=103 amount=-2 +kerning first=47 second=109 amount=-1 +kerning first=47 second=111 amount=-2 +kerning first=47 second=112 amount=-1 +kerning first=47 second=113 amount=-2 +kerning first=47 second=115 amount=-2 +kerning first=47 second=117 amount=-1 +kerning first=47 second=118 amount=-1 +kerning first=47 second=119 amount=-1 +kerning first=47 second=120 amount=-1 +kerning first=47 second=121 amount=-1 +kerning first=47 second=122 amount=-2 +kerning first=47 second=173 amount=-1 +kerning first=47 second=193 amount=-5 +kerning first=47 second=194 amount=-5 kerning first=47 second=196 amount=-5 -kerning first=1048 second=354 amount=-5 -kerning first=180 second=8250 amount=-1 -kerning first=1080 second=970 amount=-1 -kerning first=1084 second=279 amount=-1 -kerning first=910 second=63 amount=-1 -kerning first=1168 second=213 amount=-2 -kerning first=948 second=225 amount=-1 -kerning first=1220 second=115 amount=-1 -kerning first=256 second=87 amount=-5 -kerning first=967 second=1185 amount=-3 -kerning first=166 second=337 amount=-1 -kerning first=169 second=99 amount=-1 -kerning first=276 second=940 amount=-1 -kerning first=51 second=111 amount=-1 -kerning first=1049 second=1038 amount=-2 -kerning first=48 second=351 amount=-1 -kerning first=191 second=261 amount=-1 -kerning first=188 second=953 amount=-1 -kerning first=68 second=967 amount=-1 -kerning first=94 second=210 amount=-2 -kerning first=237 second=100 amount=-1 -kerning first=357 second=250 amount=-1 -kerning first=354 second=941 amount=-3 -kerning first=377 second=1241 amount=-1 -kerning first=968 second=8220 amount=-3 -kerning first=167 second=968 amount=-1 -kerning first=170 second=277 amount=-1 -kerning first=8225 second=117 amount=-1 -kerning first=49 second=1035 amount=-5 -kerning first=52 second=291 amount=-1 -kerning first=195 second=211 amount=-2 -kerning first=304 second=1098 amount=-3 -kerning first=313 second=101 amount=-1 -kerning first=215 second=353 amount=-1 -kerning first=333 second=955 amount=-1 -kerning first=95 second=365 amount=-1 -kerning first=1170 second=1066 amount=-5 -kerning first=1119 second=8221 amount=-3 -kerning first=950 second=1080 amount=-2 -kerning first=1026 second=943 amount=-1 -kerning first=175 second=224 amount=-1 -kerning first=286 second=354 amount=-1 -kerning first=193 second=1184 amount=-5 -kerning first=196 second=366 amount=-2 -kerning first=314 second=279 amount=-1 -kerning first=8361 second=229 amount=-1 -kerning first=93 second=8217 amount=-3 -kerning first=931 second=103 amount=-1 -kerning first=365 second=115 amount=-1 -kerning first=958 second=267 amount=-1 -kerning first=259 second=1185 amount=-1 -kerning first=37 second=249 amount=-1 -kerning first=34 second=940 amount=-1 -kerning first=287 second=1038 amount=-2 -kerning first=318 second=226 amount=-1 -kerning first=83 second=88 amount=-1 -kerning first=1103 second=268 amount=-2 -kerning first=926 second=972 amount=-1 -kerning first=100 second=941 amount=-1 -kerning first=103 second=250 amount=-1 -kerning first=934 second=281 amount=-1 -kerning first=243 second=380 amount=-1 -kerning first=123 second=1241 amount=-1 -kerning first=126 second=187 amount=-1 -kerning first=260 second=8220 amount=-3 -kerning first=41 second=199 amount=-2 -kerning first=177 second=1079 amount=-1 -kerning first=184 second=89 amount=-5 -kerning first=58 second=1098 amount=-3 -kerning first=61 second=339 amount=-1 -kerning first=1073 second=973 amount=-1 -kerning first=64 second=101 amount=-1 -kerning first=204 second=251 amount=-1 -kerning first=8366 second=332 amount=-2 -kerning first=81 second=955 amount=-2 -kerning first=87 second=38 amount=-1 -kerning first=84 second=263 amount=-3 -kerning first=339 second=8221 amount=-1 -kerning first=1202 second=118 amount=-2 -kerning first=964 second=370 amount=-2 -kerning first=273 second=252 amount=-1 -kerning first=42 second=354 amount=-5 -kerning first=1049 second=67 amount=-2 -kerning first=185 second=266 amount=-2 -kerning first=188 second=39 amount=-3 -kerning first=65 second=279 amount=-1 -kerning first=62 second=970 amount=-1 -kerning first=1081 second=229 amount=-1 -kerning first=8369 second=963 amount=-1 -kerning first=900 second=920 amount=-2 -kerning first=88 second=213 amount=-3 -kerning first=1107 second=1195 amount=-1 -kerning first=108 second=355 amount=-1 -kerning first=251 second=267 amount=-1 -kerning first=43 second=1038 amount=-2 -kerning first=1051 second=242 amount=-1 -kerning first=1047 second=923 amount=-1 -kerning first=189 second=214 amount=-2 -kerning first=298 second=1101 amount=-1 -kerning first=69 second=226 amount=-1 -kerning first=1083 second=1240 amount=-2 -kerning first=209 second=356 amount=-5 -kerning first=330 second=268 amount=-2 -kerning first=1170 second=81 amount=-2 -kerning first=1219 second=243 amount=-1 -kerning first=372 second=1102 amount=-2 -kerning first=168 second=227 amount=-1 -kerning first=278 second=357 amount=-1 -kerning first=190 second=369 amount=-1 -kerning first=302 second=973 amount=-1 -kerning first=915 second=106 amount=1 -kerning first=236 second=228 amount=-1 -kerning first=948 second=962 amount=-1 -kerning first=1256 second=193 amount=-2 -kerning first=253 second=1194 amount=-2 -kerning first=256 second=370 amount=-2 -kerning first=376 second=974 amount=-4 -kerning first=379 second=283 amount=-1 -kerning first=166 second=1256 amount=-2 -kerning first=287 second=67 amount=-2 -kerning first=8224 second=245 amount=-1 -kerning first=197 second=79 amount=-2 -kerning first=311 second=229 amount=-1 -kerning first=1094 second=963 amount=-1 -kerning first=1097 second=271 amount=-1 -kerning first=214 second=920 amount=-2 -kerning first=916 second=286 amount=-2 -kerning first=955 second=218 amount=-2 -kerning first=52 second=1101 amount=-1 -kerning first=195 second=945 amount=-1 -kerning first=313 second=1240 amount=-1 -kerning first=8363 second=97 amount=-1 -kerning first=78 second=268 amount=-2 -kerning first=928 second=231 amount=-1 -kerning first=956 second=373 amount=-4 -kerning first=1299 second=288 amount=-2 -kerning first=36 second=357 amount=-1 -kerning first=178 second=269 amount=-1 -kerning first=56 second=973 amount=-1 -kerning first=1074 second=232 amount=-1 -kerning first=317 second=332 amount=-2 -kerning first=8361 second=966 amount=-1 -kerning first=8364 second=275 amount=-1 -kerning first=225 second=106 amount=1 -kerning first=105 second=118 amount=-4 -kerning first=368 second=193 amount=-2 -kerning first=965 second=83 amount=-1 -kerning first=125 second=283 amount=-1 -kerning first=43 second=67 amount=-2 -kerning first=1041 second=245 amount=-1 -kerning first=183 second=217 amount=-2 -kerning first=63 second=229 amount=-1 -kerning first=206 second=119 amount=-4 -kerning first=203 second=359 amount=-1 -kerning first=318 second=963 amount=-1 -kerning first=323 second=271 amount=-1 -kerning first=80 second=1195 amount=-1 -kerning first=223 second=1026 amount=-5 -kerning first=934 second=1090 amount=-3 -kerning first=947 second=246 amount=-1 -kerning first=249 second=218 amount=-2 -kerning first=369 second=346 amount=-1 -kerning first=162 second=230 amount=-1 -kerning first=268 second=1174 amount=-2 -kerning first=271 second=360 amount=-2 -kerning first=275 second=120 amount=-2 -kerning first=180 second=947 amount=-4 -kerning first=184 second=372 amount=-5 -kerning first=299 second=287 amount=-1 -kerning first=64 second=1240 amount=-2 -kerning first=61 second=1262 amount=-2 -kerning first=1080 second=335 amount=-1 -kerning first=1084 second=97 amount=-1 -kerning first=327 second=219 amount=-2 -kerning first=902 second=347 amount=-1 -kerning first=90 second=81 amount=-1 -kerning first=1117 second=259 amount=-1 -kerning first=1168 second=34 amount=-3 -kerning first=250 second=373 amount=-4 -kerning first=160 second=1263 amount=-1 -kerning first=8216 second=248 amount=-1 -kerning first=1049 second=350 amount=-1 -kerning first=303 second=232 amount=-1 -kerning first=1081 second=966 amount=-1 -kerning first=1085 second=275 amount=-1 -kerning first=906 second=289 amount=-1 -kerning first=357 second=71 amount=-2 -kerning first=1223 second=111 amount=-1 -kerning first=1210 second=351 amount=-1 -kerning first=248 second=8230 amount=-1 -kerning first=377 second=233 amount=-1 -kerning first=971 second=363 amount=-1 -kerning first=968 second=1177 amount=-1 -kerning first=167 second=333 amount=-1 -kerning first=280 second=245 amount=-1 -kerning first=8221 second=198 amount=-3 -kerning first=1063 second=290 amount=-2 -kerning first=189 second=949 amount=-1 -kerning first=192 second=257 amount=-1 -kerning first=69 second=963 amount=-1 -kerning first=72 second=271 amount=-1 -kerning first=336 second=84 amount=-2 -kerning first=912 second=234 amount=-1 -kerning first=1170 second=364 amount=-2 -kerning first=232 second=1090 amount=-1 -kerning first=358 second=246 amount=-1 -kerning first=950 second=376 amount=-5 -kerning first=1219 second=1035 amount=-5 -kerning first=1224 second=291 amount=-1 -kerning first=168 second=964 amount=-3 -kerning first=175 second=45 amount=-2 -kerning first=8226 second=113 amount=-1 -kerning first=56 second=57 amount=-1 -kerning first=53 second=287 amount=-1 -kerning first=1067 second=235 amount=-1 -kerning first=314 second=97 amount=-1 -kerning first=310 second=335 amount=-2 -kerning first=76 second=219 amount=-1 -kerning first=96 second=361 amount=-1 -kerning first=1168 second=8216 amount=-3 -kerning first=236 second=965 amount=-1 -kerning first=242 second=46 amount=-1 -kerning first=362 second=196 amount=-2 -kerning first=948 second=8250 amount=-1 -kerning first=176 second=220 amount=-2 -kerning first=287 second=350 amount=-1 -kerning first=57 second=232 amount=-1 -kerning first=197 second=362 amount=-2 -kerning first=194 second=1176 amount=-1 -kerning first=311 second=966 amount=-2 -kerning first=315 second=275 amount=-1 -kerning first=77 second=374 amount=-5 -kerning first=1103 second=87 amount=-5 -kerning first=217 second=1033 amount=-1 -kerning first=926 second=337 amount=-1 -kerning first=934 second=99 amount=-1 -kerning first=103 second=71 amount=-2 -kerning first=1184 second=249 amount=-1 -kerning first=363 second=351 amount=-1 -kerning first=960 second=261 amount=-1 -kerning first=955 second=953 amount=-1 -kerning first=123 second=233 amount=-1 -kerning first=260 second=1177 amount=-1 -kerning first=38 second=245 amount=-1 -kerning first=1038 second=198 amount=-2 -kerning first=177 second=375 amount=-1 -kerning first=291 second=290 amount=-2 -kerning first=1073 second=338 amount=-2 -kerning first=195 second=8211 amount=-2 -kerning first=1076 second=100 amount=-1 -kerning first=928 second=968 amount=-1 -kerning first=936 second=277 amount=-1 -kerning first=367 second=291 amount=-1 -kerning first=964 second=211 amount=-2 -kerning first=1299 second=1098 amount=-3 -kerning first=1039 second=353 amount=-1 -kerning first=175 second=8249 amount=-3 -kerning first=1046 second=113 amount=-2 -kerning first=185 second=85 amount=-2 -kerning first=297 second=235 amount=-1 -kerning first=62 second=335 amount=-1 -kerning first=65 second=97 amount=-1 -kerning first=942 second=224 amount=-1 -kerning first=962 second=1184 amount=-5 -kerning first=965 second=366 amount=-2 -kerning first=161 second=336 amount=-2 -kerning first=274 second=248 amount=-1 -kerning first=43 second=350 amount=-1 -kerning first=63 second=966 amount=-1 -kerning first=1083 second=225 amount=-1 -kerning first=330 second=87 amount=-5 -kerning first=8377 second=267 amount=-1 -kerning first=252 second=261 amount=-1 -kerning first=249 second=953 amount=-1 -kerning first=8212 second=356 amount=-4 -kerning first=1241 second=1078 amount=-2 -kerning first=8218 second=116 amount=-1 -kerning first=47 second=290 amount=-2 -kerning first=190 second=210 amount=-2 -kerning first=302 second=338 amount=-2 -kerning first=305 second=100 amount=-1 -kerning first=905 second=1241 amount=-1 -kerning first=910 second=187 amount=-2 -kerning first=356 second=199 amount=-1 -kerning first=951 second=89 amount=-5 -kerning first=944 second=1079 amount=-1 -kerning first=113 second=291 amount=-1 -kerning first=256 second=211 amount=-2 -kerning first=376 second=339 amount=-4 -kerning first=379 second=101 amount=-1 -kerning first=973 second=251 amount=-1 -kerning first=282 second=113 amount=-1 -kerning first=51 second=235 amount=-1 -kerning first=191 second=365 amount=-1 -kerning first=916 second=102 amount=-2 -kerning first=237 second=224 amount=-1 -kerning first=354 second=1118 amount=-2 -kerning first=357 second=354 amount=-5 -kerning first=952 second=266 amount=-2 -kerning first=955 second=39 amount=-3 -kerning first=254 second=1184 amount=-5 -kerning first=380 second=279 amount=-1 -kerning first=174 second=171 amount=-3 -kerning first=189 second=8217 amount=-3 -kerning first=78 second=87 amount=-5 -kerning first=333 second=1185 amount=-1 -kerning first=95 second=940 amount=-1 -kerning first=358 second=1038 amount=-2 -kerning first=956 second=214 amount=-2 -kerning first=1224 second=1101 amount=-1 -kerning first=1033 second=356 amount=-5 -kerning first=1036 second=116 amount=-1 -kerning first=171 second=1078 amount=-1 -kerning first=56 second=338 amount=-2 -kerning first=59 second=100 amount=-1 -kerning first=196 second=941 amount=-1 -kerning first=1067 second=972 amount=-1 -kerning first=931 second=227 amount=-1 -kerning first=239 second=1079 amount=-1 -kerning first=958 second=369 amount=-1 -kerning first=125 second=101 amount=-1 -kerning first=1263 second=973 amount=-1 -kerning first=122 second=339 amount=-1 -kerning first=40 second=113 amount=-1 -kerning first=37 second=353 amount=-1 -kerning first=179 second=263 amount=-1 -kerning first=1103 second=370 amount=-2 -kerning first=226 second=102 amount=-1 -kerning first=926 second=1256 amount=-2 -kerning first=100 second=1118 amount=-1 -kerning first=103 second=354 amount=-5 -kerning first=249 second=39 amount=-3 -kerning first=123 second=970 amount=-1 -kerning first=126 second=279 amount=-1 -kerning first=184 second=213 amount=-2 -kerning first=8260 second=1026 amount=-5 -kerning first=299 second=103 amount=-1 -kerning first=64 second=225 amount=-1 -kerning first=1073 second=1257 amount=-1 -kerning first=204 second=355 amount=-1 -kerning first=207 second=115 amount=-1 -kerning first=8372 second=218 amount=-2 -kerning first=84 second=367 amount=-2 -kerning first=1194 second=923 amount=-1 -kerning first=1202 second=242 amount=-1 -kerning first=250 second=214 amount=-2 -kerning first=367 second=1101 amount=-1 -kerning first=964 second=945 amount=-1 -kerning first=273 second=356 amount=-5 -kerning first=163 second=226 amount=-1 -kerning first=276 second=116 amount=-1 -kerning first=185 second=368 amount=-2 -kerning first=297 second=972 amount=-1 -kerning first=300 second=281 amount=-1 -kerning first=211 second=65 amount=-2 -kerning first=354 second=117 amount=-2 -kerning first=251 second=369 amount=-1 -kerning first=371 second=973 amount=-1 -kerning first=8217 second=244 amount=-1 -kerning first=1063 second=106 amount=1 -kerning first=186 second=1066 amount=-5 -kerning first=183 second=8221 amount=-3 -kerning first=304 second=228 amount=-1 -kerning first=1083 second=962 amount=-1 -kerning first=330 second=370 amount=-2 -kerning first=92 second=252 amount=-1 -kerning first=89 second=943 amount=-2 -kerning first=232 second=382 amount=-1 -kerning first=358 second=67 amount=-2 -kerning first=950 second=217 amount=-2 -kerning first=258 second=79 amount=-2 -kerning first=1026 second=119 amount=-4 -kerning first=278 second=920 amount=-2 -kerning first=47 second=1100 amount=-1 -kerning first=53 second=103 amount=-1 -kerning first=1064 second=286 amount=-2 -kerning first=193 second=253 amount=-1 -kerning first=302 second=1257 amount=-1 -kerning first=73 second=267 amount=-1 -kerning first=1096 second=218 amount=-2 -kerning first=915 second=230 amount=-1 -kerning first=1171 second=360 amount=-2 -kerning first=233 second=1083 amount=-1 -kerning first=356 second=923 amount=-6 -kerning first=948 second=947 amount=-4 -kerning first=951 second=372 amount=-5 -kerning first=113 second=1101 amount=-1 -kerning first=256 second=945 amount=-1 -kerning first=379 second=1240 amount=-1 -kerning first=172 second=268 amount=-2 -kerning first=8224 second=347 amount=-1 -kerning first=8220 second=1108 amount=-1 -kerning first=51 second=972 amount=-1 -kerning first=54 second=281 amount=-1 -kerning first=100 second=117 amount=-1 -kerning first=240 second=269 amount=-1 -kerning first=117 second=973 amount=-1 -kerning first=1298 second=232 amount=-1 -kerning first=1035 second=244 amount=-1 -kerning first=177 second=216 amount=-2 -kerning first=291 second=106 amount=1 -kerning first=8240 second=289 amount=-1 -kerning first=58 second=228 amount=-1 -kerning first=201 second=118 amount=-4 -kerning first=313 second=962 amount=-1 -kerning first=8363 second=221 amount=-5 -kerning first=75 second=1194 amount=-3 -kerning first=78 second=370 amount=-2 -kerning first=221 second=283 amount=-4 -kerning first=928 second=333 amount=-1 -kerning first=1185 second=245 amount=-2 -kerning first=956 second=949 amount=-1 -kerning first=124 second=229 amount=-1 -kerning first=269 second=119 amount=-1 -kerning first=36 second=920 amount=-2 -kerning first=175 second=1195 amount=-1 -kerning first=178 second=371 amount=-1 -kerning first=289 second=1026 amount=-5 -kerning first=294 second=286 amount=-2 -kerning first=56 second=1257 amount=-1 -kerning first=1074 second=334 amount=-2 -kerning first=199 second=1046 amount=-2 -kerning first=322 second=218 amount=-2 -kerning first=8364 second=376 amount=-5 -kerning first=931 second=964 amount=-3 -kerning first=942 second=45 amount=-2 -kerning first=105 second=242 amount=-1 -kerning first=346 second=120 amount=-1 -kerning first=242 second=947 amount=-1 -kerning first=125 second=1240 amount=-2 -kerning first=1037 second=1108 amount=-1 -kerning first=1041 second=347 amount=-1 -kerning first=179 second=1069 amount=-1 -kerning first=186 second=81 amount=-2 -kerning first=298 second=231 amount=-1 -kerning first=206 second=243 amount=-1 -kerning first=323 second=373 amount=-4 -kerning first=901 second=288 amount=-2 -kerning first=223 second=1263 amount=-1 -kerning first=372 second=232 amount=-3 -kerning first=963 second=1176 amount=-1 -kerning first=162 second=332 amount=-2 -kerning first=8212 second=197 amount=-2 -kerning first=47 second=106 amount=1 -kerning first=1048 second=289 amount=-1 -kerning first=187 second=256 amount=-3 -kerning first=64 second=962 amount=-1 -kerning first=1084 second=221 amount=-5 -kerning first=210 second=193 amount=-2 -kerning first=8378 second=261 amount=-1 -kerning first=8372 second=953 amount=-1 -kerning first=905 second=233 amount=-1 -kerning first=1117 second=363 amount=-1 -kerning first=944 second=375 amount=-1 -kerning first=250 second=949 amount=-1 -kerning first=253 second=257 amount=-1 -kerning first=964 second=8211 amount=-2 -kerning first=163 second=963 amount=-1 -kerning first=166 second=271 amount=-1 -kerning first=48 second=286 amount=-2 -kerning first=1062 second=234 amount=-1 -kerning first=45 second=1026 amount=-4 -kerning first=300 second=1090 amount=-3 -kerning first=303 second=334 amount=-2 -kerning first=1085 second=376 amount=-5 -kerning first=332 second=258 amount=-2 -kerning first=91 second=360 amount=-2 -kerning first=1118 second=1059 amount=-2 -kerning first=237 second=45 amount=-2 -kerning first=942 second=8249 amount=-3 -kerning first=952 second=85 amount=-2 -kerning first=114 second=287 amount=-1 -kerning first=1223 second=235 amount=-1 -kerning first=374 second=1094 amount=-3 -kerning first=377 second=335 amount=-1 -kerning first=170 second=219 amount=-2 -kerning first=280 second=347 amount=-1 -kerning first=52 second=231 amount=-1 -kerning first=192 second=361 amount=-1 -kerning first=195 second=121 amount=-1 -kerning first=304 second=965 amount=-1 -kerning first=72 second=373 amount=-4 -kerning first=1083 second=8250 amount=-1 -kerning first=215 second=288 amount=-2 -kerning first=912 second=336 amount=-2 -kerning first=1175 second=248 amount=-1 -kerning first=238 second=220 amount=-2 -kerning first=358 second=350 amount=-1 -kerning first=950 second=952 amount=-2 -kerning first=118 second=232 amount=-1 -kerning first=255 second=1176 amount=-1 -kerning first=258 second=362 amount=-2 -kerning first=1240 second=47 amount=-1 -kerning first=381 second=275 amount=-1 -kerning first=378 second=966 amount=-1 -kerning first=1033 second=197 amount=-1 -kerning first=171 second=374 amount=-2 -kerning first=1067 second=337 amount=-1 -kerning first=314 second=221 amount=-5 -kerning first=70 second=8230 amount=-4 -kerning first=1099 second=261 amount=-1 -kerning first=1096 second=953 amount=-1 -kerning first=239 second=375 amount=-1 -kerning first=958 second=210 amount=-2 -kerning first=1263 second=338 amount=-2 -kerning first=256 second=8211 amount=-2 -kerning first=179 second=84 amount=-5 -kerning first=57 second=334 amount=-2 -kerning first=54 second=1090 amount=-3 -kerning first=1071 second=277 amount=-1 -kerning first=200 second=246 amount=-1 -kerning first=315 second=376 amount=-6 -kerning first=80 second=258 amount=-4 -kerning first=1103 second=211 amount=-2 -kerning first=8365 second=89 amount=-5 -kerning first=338 second=1059 amount=-2 -kerning first=237 second=8249 amount=-3 -kerning first=1187 second=113 amount=-1 -kerning first=960 second=365 amount=-1 -kerning first=123 second=335 amount=-1 -kerning first=126 second=97 amount=-1 -kerning first=35 second=1108 amount=-1 -kerning first=38 second=347 amount=-1 -kerning first=180 second=259 amount=-1 -kerning first=184 second=34 amount=-3 -kerning first=58 second=965 amount=-1 -kerning first=8366 second=266 amount=-2 -kerning first=8372 second=39 amount=-3 -kerning first=345 second=248 amount=-1 -kerning first=101 second=1113 amount=-1 -kerning first=1202 second=63 amount=-2 -kerning first=956 second=8217 amount=-3 -kerning first=124 second=966 amount=-1 -kerning first=160 second=275 amount=-1 -kerning first=42 second=289 amount=-1 -kerning first=39 second=1033 amount=-3 -kerning first=297 second=337 amount=-1 -kerning first=300 second=99 amount=-1 -kerning first=65 second=221 amount=-5 -kerning first=205 second=351 amount=-1 -kerning first=322 second=953 amount=-1 -kerning first=325 second=261 amount=-1 -kerning first=1102 second=8218 amount=-1 -kerning first=108 second=290 amount=-2 -kerning first=251 second=210 amount=-2 -kerning first=371 second=338 amount=-2 -kerning first=374 second=100 amount=-4 -kerning first=968 second=250 amount=-1 -kerning first=965 second=941 amount=-1 -kerning first=274 second=352 amount=-1 -kerning first=8217 second=65 amount=-3 -kerning first=1051 second=187 amount=-1 -kerning first=186 second=364 amount=-2 -kerning first=298 second=968 amount=-1 -kerning first=301 second=277 amount=-1 -kerning first=66 second=376 amount=-2 -kerning first=206 second=1035 amount=-5 -kerning first=209 second=291 amount=-1 -kerning first=1087 second=89 amount=-5 -kerning first=330 second=211 amount=-2 -kerning first=8377 second=369 amount=-1 -kerning first=901 second=1098 amount=-3 -kerning first=904 second=339 amount=-1 -kerning first=86 second=1059 amount=-2 -kerning first=1119 second=251 amount=-1 -kerning first=946 second=263 amount=-1 -kerning first=252 second=365 amount=-1 -kerning first=8212 second=916 amount=-2 -kerning first=184 second=8216 amount=-3 -kerning first=193 second=74 amount=-1 -kerning first=305 second=224 amount=-1 -kerning first=64 second=8250 amount=-1 -kerning first=1096 second=39 amount=-3 -kerning first=327 second=1184 amount=-5 -kerning first=905 second=970 amount=-1 -kerning first=93 second=248 amount=-1 -kerning first=910 second=279 amount=-4 -kerning first=233 second=378 amount=-1 -kerning first=236 second=171 amount=-3 -kerning first=951 second=213 amount=-2 -kerning first=250 second=8217 amount=-3 -kerning first=973 second=355 amount=-1 -kerning first=1027 second=115 amount=-1 -kerning first=172 second=87 amount=-5 -kerning first=51 second=337 amount=-1 -kerning first=54 second=99 amount=-1 -kerning first=191 second=940 amount=-1 -kerning first=194 second=249 amount=-1 -kerning first=74 second=261 amount=-1 -kerning first=916 second=226 amount=-1 -kerning first=1174 second=356 amount=-2 -kerning first=234 second=1078 amount=-2 -kerning first=952 second=368 amount=-2 -kerning first=117 second=338 amount=-2 -kerning first=1223 second=972 amount=-1 -kerning first=260 second=250 amount=-1 -kerning first=120 second=100 amount=-2 -kerning first=174 second=262 amount=-2 -kerning first=52 second=968 amount=-1 -kerning first=55 second=277 amount=-1 -kerning first=198 second=199 amount=-2 -kerning first=316 second=89 amount=-5 -kerning first=78 second=211 amount=-2 -kerning first=215 second=1098 amount=-3 -kerning first=221 second=101 amount=-4 -kerning first=920 second=381 amount=-1 -kerning first=950 second=8221 amount=-3 -kerning first=118 second=969 amount=-1 -kerning first=1299 second=228 amount=-1 -kerning first=1036 second=240 amount=-2 -kerning first=1033 second=916 amount=-1 -kerning first=178 second=212 amount=-2 -kerning first=59 second=224 amount=-1 -kerning first=1067 second=1256 amount=-2 -kerning first=196 second=1118 amount=-1 -kerning first=199 second=354 amount=-1 -kerning first=317 second=266 amount=-2 -kerning first=322 second=39 amount=-3 -kerning first=8364 second=217 amount=-2 -kerning first=76 second=1184 amount=-6 -kerning first=962 second=253 amount=-1 -kerning first=125 second=225 amount=-1 -kerning first=1263 second=1257 amount=-1 -kerning first=176 second=1185 amount=-3 -kerning first=179 second=367 amount=-1 -kerning first=200 second=1038 amount=-2 -kerning first=323 second=214 amount=-2 -kerning first=8365 second=372 amount=-5 -kerning first=1103 second=945 amount=-1 -kerning first=369 second=281 amount=-1 -kerning first=41 second=1241 amount=-1 -kerning first=177 second=8220 amount=-3 -kerning first=299 second=227 amount=-1 -kerning first=8260 second=1263 amount=-1 -kerning first=61 second=1079 amount=-1 -kerning first=1080 second=269 amount=-1 -kerning first=67 second=89 amount=-2 -kerning first=84 second=942 amount=-2 -kerning first=87 second=251 amount=-2 -kerning first=944 second=216 amount=-2 -kerning first=244 second=8221 amount=-1 -kerning first=247 second=1066 amount=-5 -kerning first=373 second=228 amount=-1 -kerning first=970 second=118 amount=-2 -kerning first=276 second=240 amount=-1 -kerning first=8216 second=193 amount=-3 -kerning first=1049 second=283 amount=-1 -kerning first=185 second=943 amount=-1 -kerning first=188 second=252 amount=-1 -kerning first=1046 second=974 amount=-2 -kerning first=297 second=1256 amount=-2 -kerning first=1085 second=217 amount=-2 -kerning first=906 second=229 amount=-1 -kerning first=1118 second=359 amount=-1 -kerning first=354 second=241 amount=-2 -kerning first=942 second=1195 amount=-1 -kerning first=114 second=103 amount=-1 -kerning first=1210 second=286 amount=-2 -kerning first=254 second=253 amount=-1 -kerning first=371 second=1257 amount=-1 -kerning first=167 second=267 amount=-1 -kerning first=1063 second=230 amount=-1 -kerning first=72 second=214 amount=-2 -kerning first=1083 second=947 amount=-4 -kerning first=1087 second=372 amount=-5 -kerning first=209 second=1101 amount=-1 -kerning first=330 second=945 amount=-1 -kerning first=904 second=1262 amount=-2 -kerning first=92 second=356 amount=-5 -kerning first=95 second=116 amount=-1 -kerning first=946 second=1069 amount=-1 -kerning first=1224 second=231 amount=-1 -kerning first=1026 second=243 amount=-1 -kerning first=8218 second=1028 amount=-1 -kerning first=8222 second=288 amount=-1 -kerning first=53 second=227 amount=-1 -kerning first=193 second=357 amount=-1 -kerning first=196 second=117 amount=-1 -kerning first=310 second=269 amount=-2 -kerning first=70 second=1187 amount=-1 -kerning first=73 second=369 amount=-1 -kerning first=910 second=1085 amount=-3 -kerning first=915 second=332 amount=-2 -kerning first=1176 second=244 amount=-1 -kerning first=239 second=216 amount=-2 -kerning first=119 second=228 amount=-1 -kerning first=379 second=962 amount=-1 -kerning first=34 second=240 amount=-1 -kerning first=1034 second=193 amount=-1 -kerning first=169 second=1194 amount=-2 -kerning first=172 second=370 amount=-2 -kerning first=287 second=283 amount=-1 -kerning first=51 second=1256 amount=-2 -kerning first=200 second=67 amount=-2 -kerning first=315 second=217 amount=-1 -kerning first=80 second=79 amount=-2 -kerning first=1097 second=949 amount=-1 -kerning first=338 second=359 amount=-1 -kerning first=916 second=963 amount=-1 -kerning first=926 second=271 amount=-1 -kerning first=237 second=1195 amount=-1 -kerning first=240 second=371 amount=-1 -kerning first=363 second=286 amount=-2 -kerning first=117 second=1257 amount=-1 -kerning first=1257 second=1090 amount=-1 -kerning first=1298 second=334 amount=-2 -kerning first=1035 second=346 amount=-1 -kerning first=291 second=230 amount=-1 -kerning first=1073 second=273 amount=-1 -kerning first=201 second=242 amount=-1 -kerning first=316 second=372 amount=-5 -kerning first=313 second=947 amount=-3 -kerning first=8366 second=85 amount=-2 -kerning first=78 second=945 amount=-1 -kerning first=221 second=1240 amount=-3 -kerning first=936 second=219 amount=-2 -kerning first=1178 second=1108 amount=-1 -kerning first=1185 second=347 amount=-1 -kerning first=247 second=81 amount=-2 -kerning first=367 second=231 amount=-1 -kerning first=964 second=121 amount=-1 -kerning first=1299 second=965 amount=-1 -kerning first=1240 second=1202 amount=-3 -kerning first=1036 second=1028 amount=-3 -kerning first=1039 second=288 amount=-2 -kerning first=289 second=1263 amount=-1 -kerning first=62 second=269 amount=-1 -kerning first=900 second=232 amount=-1 -kerning first=937 second=374 amount=-2 -kerning first=108 second=106 amount=2 -kerning first=968 second=71 amount=-2 -kerning first=125 second=962 amount=-1 -kerning first=46 second=55 amount=-1 -kerning first=43 second=283 amount=-1 -kerning first=298 second=333 amount=-1 -kerning first=323 second=949 amount=-1 -kerning first=8377 second=210 amount=-2 -kerning first=1103 second=8211 amount=-2 -kerning first=86 second=359 amount=-1 -kerning first=89 second=119 amount=-2 -kerning first=232 second=44 amount=-1 -kerning first=352 second=194 amount=-1 -kerning first=946 second=84 amount=-5 -kerning first=1206 second=234 amount=-1 -kerning first=369 second=1090 amount=-3 -kerning first=372 second=334 amount=-2 -kerning first=165 second=218 amount=-2 +kerning first=47 second=197 amount=-5 +kerning first=47 second=198 amount=-5 +kerning first=47 second=199 amount=-1 +kerning first=47 second=210 amount=-1 +kerning first=47 second=211 amount=-1 +kerning first=47 second=212 amount=-1 +kerning first=47 second=213 amount=-1 +kerning first=47 second=214 amount=-1 +kerning first=47 second=216 amount=-1 +kerning first=47 second=224 amount=-2 +kerning first=47 second=225 amount=-2 +kerning first=47 second=226 amount=-2 +kerning first=47 second=227 amount=-2 +kerning first=47 second=228 amount=-2 +kerning first=47 second=229 amount=-2 kerning first=47 second=230 amount=-2 -kerning first=305 second=45 amount=-2 -kerning first=302 second=273 amount=-1 -kerning first=299 second=964 amount=-3 -kerning first=64 second=947 amount=-4 -kerning first=67 second=372 amount=-1 -kerning first=8378 second=365 amount=-1 -kerning first=905 second=335 amount=-1 -kerning first=910 second=97 amount=-4 -kerning first=356 second=109 amount=-2 -kerning first=948 second=259 amount=-1 -kerning first=951 second=34 amount=-3 -kerning first=113 second=231 amount=-1 -kerning first=253 second=361 amount=-1 -kerning first=256 second=121 amount=-1 -kerning first=166 second=373 amount=-4 -kerning first=276 second=1028 amount=-2 -kerning first=1062 second=336 amount=-1 -kerning first=306 second=220 amount=-2 -kerning first=214 second=232 amount=-1 -kerning first=335 second=122 amount=-1 -kerning first=906 second=966 amount=-1 -kerning first=94 second=244 amount=-1 -kerning first=231 second=1203 amount=-1 -kerning first=357 second=289 amount=-1 -kerning first=354 second=1033 amount=-4 -kerning first=1223 second=337 amount=-1 -kerning first=260 second=71 amount=-2 -kerning first=174 second=83 amount=-1 -kerning first=52 second=333 amount=-1 -kerning first=195 second=245 amount=-1 -kerning first=72 second=949 amount=-1 -kerning first=75 second=257 amount=-1 -kerning first=330 second=8211 amount=-2 -kerning first=361 second=234 amount=-1 -kerning first=1224 second=968 amount=-1 -kerning first=1026 second=1035 amount=-5 -kerning first=8222 second=1098 amount=-3 -kerning first=8226 second=339 amount=-1 -kerning first=56 second=273 amount=-1 -kerning first=59 second=45 amount=-2 -kerning first=53 second=964 amount=-3 -kerning first=305 second=8249 amount=-3 -kerning first=317 second=85 amount=-2 -kerning first=8361 second=263 amount=-1 -kerning first=1099 second=365 amount=-1 -kerning first=96 second=1108 amount=-1 -kerning first=245 second=34 amount=-1 -kerning first=951 second=8216 amount=-3 -kerning first=37 second=288 amount=-2 -kerning first=60 second=220 amount=-2 -kerning first=200 second=350 amount=-1 -kerning first=8365 second=213 amount=-2 -kerning first=80 second=362 amount=-2 -kerning first=77 second=1176 amount=-1 -kerning first=223 second=275 amount=-1 -kerning first=103 second=289 amount=-1 -kerning first=369 second=99 amount=-1 -kerning first=960 second=940 amount=-1 -kerning first=963 second=249 amount=-1 -kerning first=126 second=221 amount=-5 -kerning first=271 second=111 amount=-1 -kerning first=41 second=233 amount=-1 -kerning first=180 second=363 amount=-1 -kerning first=177 second=1177 amount=-1 -kerning first=61 second=375 amount=-1 -kerning first=1073 second=1078 amount=-2 -kerning first=204 second=290 amount=-2 -kerning first=8366 second=368 amount=-2 -kerning first=78 second=8211 amount=-2 -kerning first=902 second=100 amount=-1 -kerning first=81 second=1051 amount=-1 -kerning first=107 second=234 amount=-2 -kerning first=247 second=364 amount=-2 -kerning first=367 second=968 amount=-1 -kerning first=967 second=199 amount=-2 -kerning first=160 second=376 amount=-5 -kerning first=273 second=291 amount=-1 -kerning first=1039 second=1098 amount=-3 -kerning first=178 second=8212 amount=-2 -kerning first=182 second=1059 amount=-2 -kerning first=1049 second=101 amount=-1 -kerning first=1046 second=339 amount=-2 -kerning first=59 second=8249 amount=-3 -kerning first=1081 second=263 amount=-1 -kerning first=325 second=365 amount=-1 -kerning first=8369 second=1066 amount=-5 -kerning first=8364 second=8221 amount=-3 -kerning first=245 second=8216 amount=-1 -kerning first=374 second=224 amount=-4 -kerning first=968 second=354 amount=-5 -kerning first=965 second=1118 amount=-1 -kerning first=125 second=8250 amount=-1 -kerning first=46 second=336 amount=-1 -kerning first=1051 second=279 amount=-1 -kerning first=189 second=248 amount=-1 -kerning first=304 second=171 amount=-3 -kerning first=1087 second=213 amount=-2 -kerning first=323 second=8217 amount=-3 -kerning first=1119 second=355 amount=-1 -kerning first=1170 second=115 amount=-1 -kerning first=946 second=367 amount=-1 -kerning first=943 second=1185 amount=-2 -kerning first=255 second=249 amount=-1 -kerning first=252 second=940 amount=-1 -kerning first=372 second=1220 amount=-2 -kerning first=168 second=261 amount=-1 -kerning first=165 second=953 amount=-1 -kerning first=1241 second=8218 amount=-1 -kerning first=1064 second=226 amount=-1 -kerning first=73 second=210 amount=-2 -kerning first=910 second=380 amount=-2 -kerning first=93 second=352 amount=-1 -kerning first=236 second=262 amount=-2 -kerning first=356 second=1241 amount=-3 -kerning first=944 second=8220 amount=-3 -kerning first=113 second=968 amount=-1 -kerning first=376 second=1079 amount=-4 -kerning first=172 second=211 amount=-2 -kerning first=279 second=1098 amount=-1 -kerning first=282 second=339 amount=-1 -kerning first=287 second=101 amount=-1 -kerning first=8230 second=54 amount=-1 -kerning first=194 second=353 amount=-1 -kerning first=197 second=113 amount=-1 -kerning first=311 second=263 amount=-2 -kerning first=74 second=365 amount=-1 -kerning first=1085 second=8221 amount=-3 -kerning first=240 second=212 amount=-2 -kerning first=952 second=943 amount=-1 -kerning first=955 second=252 amount=-1 -kerning first=120 second=224 amount=-1 -kerning first=1223 second=1256 amount=-2 -kerning first=1257 second=382 amount=-1 -kerning first=260 second=354 amount=-5 -kerning first=170 second=1184 amount=-5 -kerning first=174 second=366 amount=-2 -kerning first=8240 second=229 amount=-1 -kerning first=58 second=171 amount=-3 -kerning first=316 second=213 amount=-2 -kerning first=72 second=8217 amount=-3 -kerning first=221 second=225 amount=-4 -kerning first=928 second=267 amount=-1 -kerning first=238 second=1185 amount=-3 -kerning first=294 second=226 amount=-1 -kerning first=8226 second=1262 amount=-2 -kerning first=1074 second=268 amount=-2 -kerning first=317 second=368 amount=-2 -kerning first=8361 second=1069 amount=-1 -kerning first=8369 second=81 amount=-2 -kerning first=346 second=65 amount=-1 -kerning first=102 second=1241 amount=-1 -kerning first=105 second=187 amount=-1 -kerning first=239 second=8220 amount=-3 -kerning first=962 second=357 amount=-1 -kerning first=965 second=117 amount=-1 -kerning first=161 second=89 amount=-5 -kerning first=37 second=1098 amount=-3 -kerning first=40 second=339 amount=-1 -kerning first=1037 second=973 amount=-1 -kerning first=43 second=101 amount=-1 -kerning first=183 second=251 amount=-1 -kerning first=63 second=263 amount=-1 -kerning first=315 second=8221 amount=-3 -kerning first=318 second=1066 amount=-5 -kerning first=901 second=228 amount=-1 -kerning first=934 second=1194 amount=-2 -kerning first=109 second=102 amount=-1 -kerning first=947 second=283 amount=-1 -kerning first=249 second=252 amount=-1 -kerning first=162 second=266 amount=-2 -kerning first=165 second=39 amount=-3 -kerning first=41 second=970 amount=-1 -kerning first=1048 second=229 amount=-1 -kerning first=1076 second=1195 amount=-1 -kerning first=1080 second=371 amount=-1 -kerning first=327 second=253 amount=-1 -kerning first=84 second=1119 amount=-2 -kerning first=166 second=214 amount=-2 -kerning first=273 second=1101 amount=-1 -kerning first=8216 second=287 amount=-1 -kerning first=1049 second=1240 amount=-2 -kerning first=48 second=226 amount=-1 -kerning first=188 second=356 amount=-5 -kerning first=191 second=116 amount=-1 -kerning first=303 second=268 amount=-2 -kerning first=1081 second=1069 amount=-1 -kerning first=1169 second=243 amount=-1 -kerning first=354 second=343 amount=-2 -kerning first=114 second=227 amount=-1 -kerning first=254 second=357 amount=-1 -kerning first=374 second=961 amount=-5 -kerning first=377 second=269 amount=-1 -kerning first=167 second=369 amount=-1 -kerning first=8221 second=232 amount=-1 -kerning first=1063 second=332 amount=-2 -kerning first=69 second=1066 amount=-5 -kerning first=215 second=228 amount=-1 -kerning first=95 second=240 amount=-1 -kerning first=358 second=283 amount=-1 -kerning first=1224 second=333 amount=-1 -kerning first=175 second=79 amount=-2 -kerning first=1064 second=963 amount=-1 -kerning first=1067 second=271 amount=-1 -kerning first=193 second=920 amount=-2 -kerning first=1070 second=44 amount=-1 -kerning first=305 second=1195 amount=-1 -kerning first=310 second=371 amount=-1 -kerning first=8361 second=84 amount=-5 -kerning first=76 second=253 amount=-1 -kerning first=334 second=1046 amount=-3 -kerning first=923 second=218 amount=-2 -kerning first=1176 second=346 amount=-1 -kerning first=1263 second=273 amount=-1 -kerning first=172 second=945 amount=-1 -kerning first=287 second=1240 amount=-2 -kerning first=282 second=1262 amount=-2 -kerning first=57 second=268 amount=-2 -kerning first=1071 second=219 amount=-2 -kerning first=318 second=81 amount=-2 -kerning first=8365 second=34 amount=-3 -kerning first=1103 second=121 amount=-1 -kerning first=341 second=243 amount=-1 -kerning first=926 second=373 amount=-4 -kerning first=1184 second=288 amount=-3 -kerning first=123 second=269 amount=-1 -kerning first=35 second=973 amount=-1 -kerning first=291 second=332 amount=-2 -kerning first=8240 second=966 amount=-1 -kerning first=8260 second=275 amount=-1 -kerning first=61 second=216 amount=-2 -kerning first=1073 second=374 amount=-5 -kerning first=204 second=106 amount=1 -kerning first=84 second=118 amount=-2 -kerning first=221 second=962 amount=-4 -kerning first=920 second=8230 amount=-1 -kerning first=367 second=333 amount=-1 -kerning first=964 second=245 amount=-1 -kerning first=160 second=217 amount=-2 -kerning first=42 second=229 amount=-1 -kerning first=185 second=119 amount=-4 -kerning first=182 second=359 amount=-1 -kerning first=294 second=963 amount=-1 -kerning first=297 second=271 amount=-1 -kerning first=59 second=1195 amount=-1 -kerning first=62 second=371 amount=-1 -kerning first=1081 second=84 amount=-5 -kerning first=202 second=1026 amount=-5 -kerning first=205 second=286 amount=-2 -kerning first=8369 second=364 amount=-2 -kerning first=900 second=334 amount=-2 -kerning first=937 second=950 amount=-1 -kerning first=108 second=230 amount=-1 -kerning first=371 second=273 amount=-1 -kerning first=374 second=45 amount=-4 -kerning first=125 second=947 amount=-4 -kerning first=161 second=372 amount=-5 -kerning first=274 second=287 amount=-1 -kerning first=40 second=1262 amount=-2 -kerning first=43 second=1240 amount=-2 -kerning first=1051 second=97 amount=-1 -kerning first=301 second=219 amount=-2 -kerning first=63 second=1069 amount=-1 -kerning first=69 second=81 amount=-2 -kerning first=1087 second=34 amount=-3 -kerning first=1083 second=259 amount=-1 -kerning first=209 second=231 amount=-1 -kerning first=8365 second=8216 amount=-3 -kerning first=330 second=121 amount=-1 -kerning first=901 second=965 amount=-1 -kerning first=908 second=46 amount=-1 -kerning first=89 second=243 amount=-4 -kerning first=229 second=373 amount=-1 -kerning first=1206 second=336 amount=-1 -kerning first=375 second=220 amount=-2 -kerning first=966 second=1113 amount=-1 -kerning first=278 second=232 amount=-1 -kerning first=47 second=332 amount=-2 -kerning first=1048 second=966 amount=-1 -kerning first=190 second=244 amount=-1 -kerning first=302 second=374 amount=-5 -kerning first=70 second=256 amount=-4 -kerning first=8378 second=940 amount=-1 -kerning first=1171 second=111 amount=-1 -kerning first=1168 second=351 amount=-1 -kerning first=236 second=83 amount=-1 -kerning first=356 second=233 amount=-3 -kerning first=944 second=1177 amount=-1 -kerning first=948 second=363 amount=-1 -kerning first=113 second=333 amount=-1 -kerning first=256 second=245 amount=-1 -kerning first=376 second=375 amount=-2 -kerning first=973 second=290 amount=-2 -kerning first=166 second=949 amount=-1 -kerning first=169 second=257 amount=-1 -kerning first=8224 second=100 amount=-1 -kerning first=48 second=963 amount=-1 -kerning first=54 second=44 amount=-1 -kerning first=51 second=271 amount=-1 -kerning first=214 second=334 amount=-2 -kerning first=911 second=376 amount=-2 -kerning first=94 second=346 amount=-1 -kerning first=117 second=273 amount=-1 -kerning first=120 second=45 amount=-3 -kerning first=374 second=8249 amount=-3 -kerning first=55 second=219 amount=-2 -kerning first=192 second=1108 amount=-1 -kerning first=195 second=347 amount=-1 -kerning first=316 second=34 amount=-3 -kerning first=75 second=361 amount=-1 -kerning first=1087 second=8216 amount=-3 -kerning first=78 second=121 amount=-1 -kerning first=215 second=965 amount=-1 -kerning first=221 second=46 amount=-4 -kerning first=95 second=1028 amount=-2 -kerning first=361 second=336 amount=-2 -kerning first=956 second=248 amount=-1 -kerning first=121 second=220 amount=-2 -kerning first=1299 second=171 amount=-3 -kerning first=1240 second=260 amount=-2 -kerning first=36 second=232 amount=-1 -kerning first=175 second=362 amount=-2 -kerning first=289 second=275 amount=-1 -kerning first=56 second=374 amount=-5 -kerning first=1074 second=87 amount=-5 -kerning first=8361 second=367 amount=-1 -kerning first=1099 second=940 amount=-1 -kerning first=222 second=221 amount=-3 -kerning first=931 second=261 amount=-1 -kerning first=923 second=953 amount=-1 -kerning first=102 second=233 amount=-1 -kerning first=343 second=111 amount=-1 -kerning first=239 second=1177 amount=-1 -kerning first=1037 second=338 amount=-2 -kerning first=172 second=8211 amount=-2 -kerning first=1041 second=100 amount=-1 -kerning first=8250 second=380 amount=-1 -kerning first=63 second=84 amount=-5 -kerning first=203 second=234 amount=-1 -kerning first=318 second=364 amount=-2 -kerning first=223 second=376 amount=-5 -kerning first=1184 second=1098 amount=-4 -kerning first=240 second=8212 amount=-2 -kerning first=947 second=101 amount=-1 -kerning first=1187 second=339 amount=-1 -kerning first=963 second=353 amount=-1 -kerning first=120 second=8249 amount=-2 -kerning first=162 second=85 amount=-2 -kerning first=271 second=235 amount=-1 -kerning first=41 second=335 amount=-1 -kerning first=64 second=259 amount=-1 -kerning first=1080 second=212 amount=-2 -kerning first=316 second=8216 amount=-3 -kerning first=8366 second=943 amount=-1 -kerning first=8372 second=252 amount=-1 -kerning first=902 second=224 amount=-1 -kerning first=87 second=196 amount=-5 -kerning first=221 second=8250 amount=-2 -kerning first=936 second=1184 amount=-5 -kerning first=1202 second=279 amount=-1 -kerning first=250 second=248 amount=-1 -kerning first=373 second=171 amount=-1 -kerning first=8216 second=103 amount=-1 -kerning first=42 second=966 amount=-1 -kerning first=1049 second=225 amount=-1 -kerning first=303 second=87 amount=-5 -kerning first=1081 second=367 amount=-1 -kerning first=325 second=940 amount=-1 -kerning first=88 second=351 amount=-1 -kerning first=91 second=111 amount=-1 -kerning first=1210 second=226 amount=-1 -kerning first=167 second=210 amount=-2 -kerning first=280 second=100 amount=-1 -kerning first=8217 second=281 amount=-1 -kerning first=189 second=352 amount=-1 -kerning first=304 second=262 amount=-2 -kerning first=69 second=364 amount=-2 -kerning first=209 second=968 amount=-1 -kerning first=904 second=1079 amount=-1 -kerning first=92 second=291 amount=-1 -kerning first=912 second=89 amount=-5 -kerning first=358 second=101 amount=-1 -kerning first=950 second=251 amount=-1 -kerning first=258 second=113 amount=-1 -kerning first=255 second=353 amount=-1 -kerning first=378 second=263 amount=-1 -kerning first=168 second=365 amount=-1 -kerning first=310 second=212 amount=-3 -kerning first=1096 second=252 amount=-1 -kerning first=334 second=354 amount=-2 -kerning first=915 second=266 amount=-2 -kerning first=923 second=39 amount=-3 -kerning first=236 second=366 amount=-2 -kerning first=119 second=171 amount=-1 -kerning first=166 second=8217 amount=-3 -kerning first=287 second=225 amount=-1 -kerning first=8220 second=1257 amount=-1 -kerning first=57 second=87 amount=-5 -kerning first=306 second=1185 amount=-3 -kerning first=74 second=940 amount=-1 -kerning first=77 second=249 amount=-1 -kerning first=926 second=214 amount=-2 -kerning first=234 second=8218 amount=-1 -kerning first=363 second=226 amount=-1 -kerning first=955 second=356 amount=-5 -kerning first=960 second=116 amount=-1 -kerning first=1298 second=268 amount=-2 -kerning first=35 second=338 amount=-2 -kerning first=38 second=100 amount=-1 -kerning first=1035 second=281 amount=-1 -kerning first=177 second=250 amount=-1 -kerning first=174 second=941 amount=-1 -kerning first=58 second=262 amount=-2 -kerning first=198 second=1241 amount=-1 -kerning first=201 second=187 amount=-1 -kerning first=221 second=326 amount=-3 -kerning first=928 second=369 amount=-1 -kerning first=98 second=1098 amount=-1 -kerning first=124 second=263 amount=-1 -kerning first=1240 second=1066 amount=-2 -kerning first=1039 second=228 amount=-1 -kerning first=62 second=212 amount=-2 -kerning first=1074 second=370 amount=-2 -kerning first=322 second=252 amount=-1 -kerning first=317 second=943 amount=-1 -kerning first=228 second=39 amount=-1 -kerning first=942 second=79 amount=-2 -kerning first=105 second=279 amount=-1 -kerning first=962 second=920 amount=-2 -kerning first=161 second=213 amount=-2 -kerning first=274 second=103 amount=-1 -kerning first=43 second=225 amount=-1 -kerning first=1037 second=1257 amount=-1 -kerning first=183 second=355 amount=-1 -kerning first=186 second=115 amount=-1 -kerning first=298 second=267 amount=-1 -kerning first=60 second=1185 amount=-3 -kerning first=63 second=367 amount=-1 -kerning first=8370 second=360 amount=-2 -kerning first=1116 second=242 amount=-2 -kerning first=249 second=356 amount=-5 -kerning first=252 second=116 amount=-1 -kerning first=372 second=268 amount=-2 -kerning first=162 second=368 amount=-2 -kerning first=271 second=972 amount=-1 -kerning first=61 second=8220 amount=-3 -kerning first=327 second=357 amount=-1 -kerning first=905 second=269 amount=-1 -kerning first=376 second=216 amount=-3 -kerning first=163 second=1066 amount=-5 -kerning first=160 second=8221 amount=-3 -kerning first=973 second=106 amount=1 -kerning first=1049 second=962 amount=-1 -kerning first=191 second=240 amount=-1 -kerning first=300 second=1194 amount=-2 -kerning first=303 second=370 amount=-2 -kerning first=237 second=79 amount=-2 -kerning first=357 second=229 amount=-1 -kerning first=952 second=119 amount=-4 -kerning first=1210 second=963 amount=-1 -kerning first=1223 second=271 amount=-1 -kerning first=1257 second=44 amount=-1 -kerning first=254 second=920 amount=-2 -kerning first=374 second=1195 amount=-4 -kerning first=971 second=1026 amount=-5 -kerning first=170 second=253 amount=-1 -kerning first=52 second=267 amount=-1 -kerning first=1095 second=360 amount=-2 -kerning first=1098 second=120 amount=-2 -kerning first=912 second=372 amount=-5 -kerning first=92 second=1101 amount=-1 -kerning first=358 second=1240 amount=-2 -kerning first=8222 second=965 amount=-1 -kerning first=1067 second=373 amount=-4 -kerning first=76 second=357 amount=-1 -kerning first=96 second=973 amount=-1 -kerning first=1179 second=232 amount=-1 -kerning first=958 second=244 amount=-1 -kerning first=1263 second=374 amount=-5 -kerning first=37 second=228 amount=-1 -kerning first=179 second=118 amount=-4 -kerning first=287 second=962 amount=-1 -kerning first=8250 second=221 amount=-3 -kerning first=54 second=1194 amount=-2 -kerning first=57 second=370 amount=-2 -kerning first=1068 second=1071 amount=-1 -kerning first=200 second=283 amount=-1 -kerning first=1103 second=245 amount=-1 -kerning first=223 second=217 amount=-2 -kerning first=926 second=949 amount=-1 -kerning first=934 second=257 amount=-1 -kerning first=103 second=229 amount=-1 -kerning first=246 second=119 amount=-1 -kerning first=363 second=963 amount=-1 -kerning first=120 second=1195 amount=-2 -kerning first=123 second=371 amount=-1 -kerning first=35 second=1257 amount=-1 -kerning first=1035 second=1090 amount=-3 -kerning first=296 second=218 amount=-2 -kerning first=8260 second=376 amount=-5 -kerning first=204 second=230 amount=-1 -kerning first=321 second=360 amount=-2 -kerning first=8363 second=1059 amount=-2 -kerning first=902 second=45 amount=-2 -kerning first=81 second=923 amount=-2 -kerning first=84 second=242 amount=-3 -kerning first=221 second=947 amount=-2 -kerning first=345 second=287 amount=-1 -kerning first=964 second=347 amount=-1 -kerning first=124 second=1069 amount=-1 -kerning first=163 second=81 amount=-2 -kerning first=273 second=231 amount=-1 -kerning first=1039 second=965 amount=-1 -kerning first=185 second=243 amount=-1 -kerning first=297 second=373 amount=-4 -kerning first=202 second=1263 amount=-1 -kerning first=903 second=220 amount=-2 -kerning first=1107 second=1113 amount=-3 -kerning first=942 second=362 amount=-2 -kerning first=108 second=332 amount=-2 -kerning first=1203 second=275 amount=-1 -kerning first=251 second=244 amount=-1 -kerning first=371 second=374 amount=-5 -kerning first=968 second=289 amount=-1 -kerning first=270 second=1298 amount=-1 -kerning first=8217 second=99 amount=-1 -kerning first=43 second=962 amount=-1 -kerning first=1051 second=221 amount=-5 -kerning first=304 second=83 amount=-1 -kerning first=1083 second=363 amount=-1 -kerning first=209 second=333 amount=-1 -kerning first=330 second=245 amount=-1 -kerning first=904 second=375 amount=-1 -kerning first=89 second=345 amount=-3 -kerning first=1119 second=290 amount=-2 -kerning first=275 second=1090 amount=-1 -kerning first=278 second=334 amount=-2 -kerning first=8222 second=49 amount=-4 -kerning first=50 second=218 amount=-2 -kerning first=190 second=346 amount=-1 -kerning first=67 second=1174 amount=-2 -kerning first=70 second=360 amount=-2 -kerning first=1084 second=1059 amount=-2 -kerning first=1080 second=8212 amount=-2 -kerning first=902 second=8249 amount=-3 -kerning first=915 second=85 amount=-2 -kerning first=93 second=287 amount=-1 -kerning first=1171 second=235 amount=-1 -kerning first=356 second=335 amount=-3 -kerning first=253 second=1108 amount=-1 -kerning first=256 second=347 amount=-1 -kerning first=376 second=951 amount=-3 -kerning first=169 second=361 amount=-1 -kerning first=172 second=121 amount=-1 -kerning first=8224 second=224 amount=-1 -kerning first=51 second=373 amount=-4 -kerning first=1049 second=8250 amount=-1 -kerning first=191 second=1028 amount=-2 -kerning first=194 second=288 amount=-2 -kerning first=1097 second=248 amount=-1 -kerning first=237 second=362 amount=-2 -kerning first=357 second=966 amount=-1 -kerning first=117 second=374 amount=-5 -kerning first=1298 second=87 amount=-5 -kerning first=260 second=289 amount=-1 -kerning first=1035 second=99 amount=-1 -kerning first=177 second=71 amount=-2 -kerning first=288 second=221 amount=-2 -kerning first=58 second=83 amount=-1 -kerning first=198 second=233 amount=-1 -kerning first=313 second=363 amount=-1 -kerning first=78 second=245 amount=-1 -kerning first=928 second=210 amount=-2 -kerning first=1185 second=100 amount=-2 -kerning first=1178 second=338 amount=-1 -kerning first=956 second=352 amount=-1 -kerning first=124 second=84 amount=-5 -kerning first=1299 second=262 amount=-2 -kerning first=36 second=334 amount=-2 -kerning first=1036 second=277 amount=-2 -kerning first=178 second=246 amount=-1 -kerning first=289 second=376 amount=-5 -kerning first=8226 second=1079 amount=-1 -kerning first=1074 second=211 amount=-2 -kerning first=314 second=1059 amount=-2 -kerning first=310 second=8212 amount=-4 -kerning first=8364 second=251 amount=-1 -kerning first=1107 second=113 amount=-1 -kerning first=343 second=235 amount=-1 -kerning first=931 second=365 amount=-1 -kerning first=105 second=97 amount=-1 -kerning first=102 second=335 amount=-1 -kerning first=125 second=259 amount=-1 -kerning first=161 second=34 amount=-3 -kerning first=37 second=965 amount=-1 -kerning first=1041 second=224 amount=-1 -kerning first=287 second=8250 amount=-1 -kerning first=1071 second=1184 amount=-5 -kerning first=203 second=336 amount=-2 -kerning first=323 second=248 amount=-1 -kerning first=901 second=171 amount=-3 -kerning first=86 second=110 amount=-2 -kerning first=926 second=8217 amount=-3 -kerning first=103 second=966 amount=-1 -kerning first=947 second=225 amount=-1 -kerning first=271 second=337 amount=-1 -kerning first=44 second=221 amount=-4 -kerning first=184 second=351 amount=-1 -kerning first=299 second=261 amount=-1 -kerning first=296 second=953 amount=-1 -kerning first=64 second=363 amount=-1 -kerning first=61 second=1177 amount=-1 -kerning first=8372 second=356 amount=-5 -kerning first=8378 second=116 amount=-1 -kerning first=87 second=290 amount=-2 -kerning first=944 second=250 amount=-1 -kerning first=250 second=352 amount=-1 -kerning first=967 second=1241 amount=-1 -kerning first=163 second=364 amount=-2 -kerning first=273 second=968 amount=-1 -kerning first=276 second=277 amount=-1 -kerning first=8216 second=227 amount=-1 -kerning first=45 second=376 amount=-4 -kerning first=1046 second=1079 amount=-2 -kerning first=185 second=1035 amount=-5 -kerning first=188 second=291 amount=-1 -kerning first=1062 second=89 amount=-2 -kerning first=303 second=211 amount=-2 -kerning first=62 second=8212 amount=-2 -kerning first=65 second=1059 amount=-2 -kerning first=1085 second=251 amount=-1 -kerning first=906 second=263 amount=-1 -kerning first=91 second=235 amount=-1 -kerning first=377 second=212 amount=-1 -kerning first=161 second=8216 amount=-3 -kerning first=280 second=224 amount=-1 -kerning first=43 second=8250 amount=-1 -kerning first=1063 second=266 amount=-2 -kerning first=1066 second=39 amount=-2 -kerning first=301 second=1184 amount=-5 -kerning first=304 second=366 amount=-2 -kerning first=72 second=248 amount=-1 -kerning first=215 second=171 amount=-3 -kerning first=912 second=213 amount=-2 -kerning first=229 second=8217 amount=-1 -kerning first=358 second=225 amount=-1 -kerning first=950 second=355 amount=-1 -kerning first=112 second=1076 amount=-1 -kerning first=1224 second=267 amount=-1 -kerning first=375 second=1185 amount=-3 -kerning first=168 second=940 amount=-1 -kerning first=53 second=261 amount=-1 -kerning first=50 second=953 amount=-1 -kerning first=1067 second=214 amount=-2 -kerning first=1096 second=356 amount=-5 -kerning first=1099 second=116 amount=-1 -kerning first=915 second=368 amount=-2 -kerning first=96 second=338 amount=-2 -kerning first=1171 second=972 amount=-1 -kerning first=1176 second=281 amount=-1 -kerning first=239 second=250 amount=-1 -kerning first=236 second=941 amount=-1 -kerning first=34 second=277 amount=-1 -kerning first=176 second=199 amount=-2 -kerning first=282 second=1079 amount=-1 -kerning first=290 second=89 amount=-2 -kerning first=57 second=211 amount=-2 -kerning first=197 second=339 amount=-1 -kerning first=200 second=101 amount=-1 -kerning first=194 second=1098 amount=-3 -kerning first=315 second=251 amount=-1 -kerning first=77 second=353 amount=-1 -kerning first=80 second=113 amount=-1 -kerning first=916 second=1066 amount=-5 -kerning first=1184 second=228 amount=-1 -kerning first=960 second=240 amount=-1 -kerning first=123 second=212 amount=-2 -kerning first=1298 second=370 amount=-2 -kerning first=38 second=224 amount=-1 -kerning first=177 second=354 amount=-5 -kerning first=174 second=1118 amount=-1 -kerning first=291 second=266 amount=-2 -kerning first=296 second=39 amount=-3 -kerning first=8260 second=217 amount=-2 -kerning first=55 second=1184 amount=-5 -kerning first=58 second=366 amount=-2 -kerning first=201 second=279 amount=-1 -kerning first=198 second=970 amount=-1 -kerning first=8363 second=359 amount=-1 -kerning first=8366 second=119 amount=-4 -kerning first=345 second=103 amount=-1 -kerning first=936 second=253 amount=-1 -kerning first=1178 second=1257 amount=-1 -kerning first=247 second=115 amount=-1 -kerning first=367 second=267 amount=-1 -kerning first=124 second=367 amount=-1 -kerning first=121 second=1185 amount=-3 -kerning first=178 second=1038 amount=-2 -kerning first=297 second=214 amount=-2 +kerning first=47 second=231 amount=-2 +kerning first=47 second=232 amount=-2 +kerning first=47 second=233 amount=-2 +kerning first=47 second=234 amount=-2 +kerning first=47 second=235 amount=-2 +kerning first=47 second=240 amount=-2 +kerning first=47 second=241 amount=-1 +kerning first=47 second=242 amount=-2 +kerning first=47 second=243 amount=-2 +kerning first=47 second=244 amount=-2 +kerning first=47 second=245 amount=-2 +kerning first=47 second=246 amount=-2 +kerning first=47 second=248 amount=-2 +kerning first=47 second=249 amount=-1 +kerning first=47 second=250 amount=-1 +kerning first=47 second=251 amount=-1 +kerning first=47 second=252 amount=-1 +kerning first=47 second=253 amount=-1 +kerning first=47 second=256 amount=-5 +kerning first=47 second=257 amount=-2 +kerning first=47 second=258 amount=-5 +kerning first=47 second=259 amount=-2 +kerning first=47 second=260 amount=-5 +kerning first=47 second=261 amount=-2 +kerning first=47 second=262 amount=-1 +kerning first=47 second=263 amount=-2 +kerning first=47 second=266 amount=-1 +kerning first=47 second=267 amount=-2 +kerning first=47 second=268 amount=-1 +kerning first=47 second=269 amount=-2 +kerning first=47 second=271 amount=-2 +kerning first=47 second=273 amount=-2 +kerning first=47 second=275 amount=-2 +kerning first=47 second=277 amount=-2 +kerning first=47 second=279 amount=-2 +kerning first=47 second=281 amount=-2 +kerning first=47 second=283 amount=-2 +kerning first=47 second=286 amount=-1 +kerning first=47 second=287 amount=-2 +kerning first=47 second=288 amount=-1 +kerning first=47 second=289 amount=-2 +kerning first=47 second=290 amount=-1 +kerning first=47 second=291 amount=-2 +kerning first=47 second=324 amount=-1 +kerning first=47 second=326 amount=-1 +kerning first=47 second=328 amount=-1 +kerning first=47 second=331 amount=-1 +kerning first=47 second=332 amount=-1 +kerning first=47 second=333 amount=-2 +kerning first=47 second=334 amount=-1 +kerning first=47 second=335 amount=-2 +kerning first=47 second=336 amount=-1 +kerning first=47 second=337 amount=-2 +kerning first=47 second=338 amount=-1 +kerning first=47 second=339 amount=-2 +kerning first=47 second=341 amount=-1 +kerning first=47 second=343 amount=-1 +kerning first=47 second=345 amount=-1 +kerning first=47 second=346 amount=-1 +kerning first=47 second=347 amount=-2 +kerning first=47 second=350 amount=-1 +kerning first=47 second=351 amount=-2 +kerning first=47 second=352 amount=-1 +kerning first=47 second=353 amount=-2 +kerning first=47 second=361 amount=-1 +kerning first=47 second=363 amount=-1 +kerning first=47 second=365 amount=-1 +kerning first=47 second=367 amount=-1 +kerning first=47 second=369 amount=-1 +kerning first=47 second=371 amount=-1 +kerning first=47 second=373 amount=-1 +kerning first=47 second=375 amount=-1 +kerning first=47 second=378 amount=-2 +kerning first=47 second=380 amount=-2 +kerning first=47 second=382 amount=-2 +kerning first=47 second=913 amount=-5 +kerning first=47 second=916 amount=-5 +kerning first=47 second=920 amount=-1 +kerning first=47 second=923 amount=-5 +kerning first=47 second=927 amount=-1 +kerning first=47 second=940 amount=-2 +kerning first=47 second=941 amount=-2 +kerning first=47 second=942 amount=-1 +kerning first=47 second=945 amount=-2 +kerning first=47 second=947 amount=-1 +kerning first=47 second=949 amount=-2 +kerning first=47 second=951 amount=-1 +kerning first=47 second=954 amount=-1 +kerning first=47 second=957 amount=-1 +kerning first=47 second=959 amount=-2 +kerning first=47 second=962 amount=-2 +kerning first=47 second=963 amount=-2 +kerning first=47 second=964 amount=-1 +kerning first=47 second=965 amount=-1 +kerning first=47 second=966 amount=-2 +kerning first=47 second=968 amount=-1 +kerning first=47 second=972 amount=-2 +kerning first=47 second=973 amount=-1 +kerning first=47 second=1028 amount=-1 +kerning first=47 second=1029 amount=-1 +kerning first=47 second=1032 amount=-3 +kerning first=47 second=1033 amount=-4 +kerning first=47 second=1040 amount=-5 +kerning first=47 second=1044 amount=-4 +kerning first=47 second=1051 amount=-4 +kerning first=47 second=1054 amount=-1 +kerning first=47 second=1057 amount=-1 +kerning first=47 second=1071 amount=-1 +kerning first=47 second=1072 amount=-2 +kerning first=47 second=1074 amount=-1 +kerning first=47 second=1075 amount=-1 +kerning first=47 second=1077 amount=-2 +kerning first=47 second=1078 amount=-1 +kerning first=47 second=1080 amount=-1 +kerning first=47 second=1081 amount=-1 +kerning first=47 second=1082 amount=-1 +kerning first=47 second=1084 amount=-1 +kerning first=47 second=1085 amount=-1 +kerning first=47 second=1086 amount=-2 +kerning first=47 second=1087 amount=-1 +kerning first=47 second=1088 amount=-1 +kerning first=47 second=1089 amount=-2 +kerning first=47 second=1090 amount=-1 +kerning first=47 second=1091 amount=-1 +kerning first=47 second=1092 amount=-2 +kerning first=47 second=1093 amount=-1 +kerning first=47 second=1094 amount=-1 +kerning first=47 second=1096 amount=-1 +kerning first=47 second=1097 amount=-1 +kerning first=47 second=1098 amount=-1 +kerning first=47 second=1099 amount=-1 +kerning first=47 second=1100 amount=-1 +kerning first=47 second=1102 amount=-1 +kerning first=47 second=1104 amount=-2 +kerning first=47 second=1105 amount=-2 +kerning first=47 second=1107 amount=-1 +kerning first=47 second=1108 amount=-2 +kerning first=47 second=1109 amount=-2 +kerning first=47 second=1114 amount=-1 +kerning first=47 second=1116 amount=-1 +kerning first=47 second=1117 amount=-1 +kerning first=47 second=1118 amount=-1 +kerning first=47 second=1119 amount=-1 +kerning first=47 second=1169 amount=-1 +kerning first=47 second=1175 amount=-1 +kerning first=47 second=1179 amount=-1 +kerning first=47 second=1185 amount=-1 +kerning first=47 second=1187 amount=-1 +kerning first=47 second=1194 amount=-1 +kerning first=47 second=1195 amount=-2 +kerning first=47 second=1199 amount=-1 +kerning first=47 second=1203 amount=-1 +kerning first=47 second=1220 amount=-1 +kerning first=47 second=1224 amount=-1 +kerning first=47 second=1240 amount=-1 +kerning first=47 second=1241 amount=-2 +kerning first=47 second=1256 amount=-1 +kerning first=47 second=1257 amount=-2 +kerning first=47 second=1263 amount=-1 +kerning first=47 second=1298 amount=-4 +kerning first=47 second=8211 amount=-1 +kerning first=47 second=8212 amount=-1 +kerning first=47 second=8218 amount=-4 +kerning first=47 second=8222 amount=-4 +kerning first=47 second=8230 amount=-4 +kerning first=48 second=44 amount=-1 +kerning first=48 second=46 amount=-1 +kerning first=48 second=55 amount=-1 +kerning first=48 second=8218 amount=-1 +kerning first=48 second=8222 amount=-1 +kerning first=48 second=8230 amount=-1 +kerning first=50 second=45 amount=-1 +kerning first=50 second=173 amount=-1 +kerning first=50 second=8211 amount=-1 +kerning first=50 second=8212 amount=-1 +kerning first=51 second=44 amount=-1 +kerning first=51 second=46 amount=-1 +kerning first=51 second=55 amount=-1 +kerning first=51 second=8218 amount=-1 +kerning first=51 second=8222 amount=-1 +kerning first=51 second=8230 amount=-1 +kerning first=52 second=34 amount=-1 +kerning first=52 second=39 amount=-1 +kerning first=52 second=49 amount=-2 +kerning first=52 second=55 amount=-1 +kerning first=52 second=8216 amount=-1 +kerning first=52 second=8217 amount=-1 +kerning first=52 second=8220 amount=-1 +kerning first=52 second=8221 amount=-1 +kerning first=53 second=44 amount=-1 +kerning first=53 second=46 amount=-1 +kerning first=53 second=8218 amount=-1 +kerning first=53 second=8222 amount=-1 +kerning first=53 second=8230 amount=-1 +kerning first=54 second=44 amount=-1 +kerning first=54 second=46 amount=-1 +kerning first=54 second=57 amount=-1 +kerning first=54 second=8218 amount=-1 +kerning first=54 second=8222 amount=-1 +kerning first=54 second=8230 amount=-1 +kerning first=55 second=44 amount=-4 +kerning first=55 second=45 amount=-4 +kerning first=55 second=46 amount=-4 +kerning first=55 second=48 amount=-1 +kerning first=55 second=50 amount=-1 +kerning first=55 second=51 amount=-1 +kerning first=55 second=52 amount=-4 +kerning first=55 second=54 amount=-1 +kerning first=55 second=56 amount=-1 +kerning first=55 second=57 amount=-1 +kerning first=55 second=65 amount=-5 +kerning first=55 second=171 amount=-2 +kerning first=55 second=173 amount=-4 +kerning first=55 second=193 amount=-5 +kerning first=55 second=194 amount=-5 +kerning first=55 second=196 amount=-5 +kerning first=55 second=197 amount=-5 +kerning first=55 second=198 amount=-5 +kerning first=55 second=256 amount=-5 +kerning first=55 second=258 amount=-5 +kerning first=55 second=260 amount=-5 +kerning first=55 second=913 amount=-5 +kerning first=55 second=916 amount=-5 +kerning first=55 second=923 amount=-5 +kerning first=55 second=1040 amount=-5 +kerning first=55 second=8211 amount=-4 +kerning first=55 second=8212 amount=-4 +kerning first=55 second=8218 amount=-4 +kerning first=55 second=8222 amount=-4 +kerning first=55 second=8230 amount=-4 +kerning first=55 second=8249 amount=-2 +kerning first=56 second=34 amount=-1 +kerning first=56 second=39 amount=-1 +kerning first=56 second=44 amount=-1 +kerning first=56 second=45 amount=-1 +kerning first=56 second=46 amount=-1 +kerning first=56 second=55 amount=-1 +kerning first=56 second=57 amount=-1 +kerning first=56 second=173 amount=-1 +kerning first=56 second=8211 amount=-1 +kerning first=56 second=8212 amount=-1 +kerning first=56 second=8216 amount=-1 +kerning first=56 second=8217 amount=-1 kerning first=56 second=8218 amount=-1 -kerning first=1074 second=945 amount=-1 -kerning first=205 second=226 amount=-1 -kerning first=322 second=356 amount=-5 -kerning first=325 second=116 amount=-1 -kerning first=900 second=268 amount=-2 -kerning first=343 second=972 amount=-1 -kerning first=274 second=227 amount=-1 -kerning first=40 second=1079 amount=-1 -kerning first=46 second=89 amount=-4 -kerning first=298 second=369 amount=-1 -kerning first=8377 second=244 amount=-1 -kerning first=904 second=216 amount=-2 -kerning first=223 second=8221 amount=-3 -kerning first=1119 second=106 amount=1 -kerning first=946 second=118 amount=-4 -kerning first=947 second=962 amount=-1 -kerning first=252 second=240 amount=-1 -kerning first=369 second=1194 amount=-2 -kerning first=162 second=943 amount=-1 -kerning first=165 second=252 amount=-1 -kerning first=271 second=1256 amount=-2 -kerning first=275 second=382 amount=-1 -kerning first=47 second=266 amount=-2 -kerning first=50 second=39 amount=-3 -kerning first=305 second=79 amount=-2 -kerning first=1084 second=359 amount=-1 -kerning first=327 second=920 amount=-2 -kerning first=902 second=1195 amount=-1 -kerning first=905 second=371 amount=-1 -kerning first=87 second=1100 amount=-2 -kerning first=93 second=103 amount=-1 -kerning first=1117 second=1026 amount=-5 -kerning first=1168 second=286 amount=-2 -kerning first=113 second=267 amount=-1 -kerning first=1220 second=218 amount=-2 -kerning first=973 second=230 amount=-1 -kerning first=8224 second=45 amount=-2 -kerning first=8220 second=273 amount=-1 -kerning first=51 second=214 amount=-2 -kerning first=1049 second=947 amount=-4 -kerning first=188 second=1101 amount=-1 -kerning first=303 second=945 amount=-1 -kerning first=71 second=356 amount=-1 -kerning first=74 second=116 amount=-1 -kerning first=214 second=268 amount=-2 -kerning first=906 second=1069 amount=-1 -kerning first=916 second=81 amount=-2 -kerning first=91 second=972 amount=-1 -kerning first=94 second=281 amount=-1 -kerning first=1174 second=231 amount=-1 -kerning first=354 second=1084 amount=-2 -kerning first=952 second=243 amount=-1 -kerning first=1223 second=373 amount=-4 -kerning first=971 second=1263 amount=-1 -kerning first=170 second=357 amount=-1 -kerning first=174 second=117 amount=-1 -kerning first=8225 second=220 amount=-2 -kerning first=52 second=369 amount=-1 -kerning first=192 second=973 amount=-1 -kerning first=920 second=256 amount=-2 -kerning first=241 second=118 amount=-1 -kerning first=358 second=962 amount=-1 -kerning first=1299 second=83 amount=-1 -kerning first=171 second=1044 amount=-1 -kerning first=178 second=67 amount=-2 -kerning first=289 second=217 amount=-2 -kerning first=8226 second=375 amount=-1 -kerning first=59 second=79 amount=-2 -kerning first=1067 second=949 amount=-1 -kerning first=314 second=359 amount=-1 -kerning first=317 second=119 amount=-4 -kerning first=76 second=920 amount=-1 -kerning first=96 second=1257 amount=-1 -kerning first=1176 second=1090 amount=-3 -kerning first=365 second=218 amount=-2 -kerning first=958 second=346 amount=-1 -kerning first=1041 second=45 amount=-2 -kerning first=179 second=242 amount=-1 -kerning first=1037 second=273 amount=-1 -kerning first=287 second=947 amount=-4 -kerning first=8224 second=8249 amount=-3 -kerning first=290 second=372 amount=-1 -kerning first=1034 second=964 amount=-2 -kerning first=57 second=945 amount=-1 -kerning first=200 second=1240 amount=-2 -kerning first=197 second=1262 amount=-2 -kerning first=1103 second=347 amount=-1 -kerning first=934 second=361 amount=-1 -kerning first=1184 second=965 amount=-1 -kerning first=947 second=46 amount=-2 -kerning first=960 second=1028 amount=-2 -kerning first=963 second=288 amount=-2 -kerning first=41 second=269 amount=-1 -kerning first=1044 second=220 amount=-1 -kerning first=1073 second=1176 amount=-1 -kerning first=204 second=332 amount=-2 -kerning first=944 second=71 amount=-2 -kerning first=1202 second=221 amount=-2 -kerning first=364 second=8230 amount=-1 -kerning first=967 second=233 amount=-1 -kerning first=273 second=333 amount=-1 -kerning first=1046 second=375 amount=-1 -kerning first=297 second=949 amount=-1 -kerning first=300 second=257 amount=-1 -kerning first=65 second=359 amount=-1 -kerning first=1074 second=8211 amount=-2 -kerning first=205 second=963 amount=-1 -kerning first=211 second=44 amount=-1 -kerning first=906 second=84 amount=-5 -kerning first=88 second=286 amount=-3 -kerning first=1118 second=234 amount=-1 -kerning first=251 second=346 amount=-1 -kerning first=374 second=258 amount=-5 -kerning first=164 second=360 amount=-2 -kerning first=274 second=964 amount=-3 -kerning first=280 second=45 amount=-2 -kerning first=43 second=947 amount=-4 -kerning first=46 second=372 amount=-3 -kerning first=1041 second=8249 amount=-3 -kerning first=1063 second=85 amount=-2 -kerning first=189 second=287 amount=-1 -kerning first=330 second=347 amount=-1 -kerning first=912 second=34 amount=-3 -kerning first=92 second=231 amount=-1 -kerning first=112 second=373 amount=-1 -kerning first=252 second=1028 amount=-2 -kerning first=255 second=288 amount=-2 -kerning first=193 second=232 amount=-1 -kerning first=305 second=362 amount=-2 -kerning first=302 second=1176 amount=-1 -kerning first=73 second=244 amount=-1 -kerning first=213 second=374 amount=-3 -kerning first=1171 second=337 amount=-1 -kerning first=1176 second=99 amount=-1 -kerning first=239 second=71 amount=-2 -kerning first=951 second=351 amount=-1 -kerning first=954 second=111 amount=-2 -kerning first=1220 second=953 amount=-1 -kerning first=376 second=1177 amount=-4 -kerning first=172 second=245 amount=-1 -kerning first=282 second=375 amount=-1 -kerning first=51 second=949 amount=-1 -kerning first=54 second=257 amount=-1 -kerning first=303 second=8211 amount=-2 -kerning first=338 second=234 amount=-1 -kerning first=916 second=364 amount=-2 -kerning first=94 second=1090 amount=-3 -kerning first=240 second=246 amount=-1 -kerning first=952 second=1035 amount=-5 -kerning first=955 second=291 amount=-1 -kerning first=1298 second=211 amount=-2 -kerning first=377 second=8212 amount=-3 -kerning first=35 second=273 amount=-1 -kerning first=38 second=45 amount=-2 -kerning first=280 second=8249 amount=-3 -kerning first=291 second=85 amount=-2 -kerning first=8240 second=263 amount=-1 -kerning first=198 second=335 amount=-1 -kerning first=201 second=97 amount=-1 -kerning first=75 second=1108 amount=-2 -kerning first=78 second=347 amount=-1 -kerning first=221 second=259 amount=-4 -kerning first=224 second=34 amount=-1 -kerning first=912 second=8216 amount=-3 -kerning first=1185 second=224 amount=-1 -kerning first=358 second=8250 amount=-1 -kerning first=1299 second=366 amount=-2 -kerning first=1039 second=171 amount=-3 -kerning first=178 second=350 amount=-1 -kerning first=56 second=1176 amount=-1 -kerning first=59 second=362 amount=-2 -kerning first=1067 second=8217 amount=-3 -kerning first=202 second=275 amount=-1 -kerning first=8364 second=355 amount=-1 -kerning first=8369 second=115 amount=-1 -kerning first=900 second=87 amount=-5 -kerning first=79 second=1033 amount=-1 -kerning first=343 second=337 amount=-1 -kerning first=931 second=940 amount=-1 -kerning first=105 second=221 amount=-5 -kerning first=365 second=953 amount=-1 -kerning first=125 second=363 amount=-1 -kerning first=40 second=375 amount=-1 -kerning first=1047 second=88 amount=-2 -kerning first=183 second=290 amount=-2 -kerning first=298 second=210 amount=-2 -kerning first=57 second=8211 amount=-2 -kerning first=1075 second=941 amount=-1 -kerning first=323 second=352 amount=-1 -kerning first=901 second=262 amount=-2 -kerning first=86 second=234 amount=-3 -kerning first=1206 second=89 amount=-2 -kerning first=249 second=291 amount=-1 -kerning first=372 second=211 amount=-2 -kerning first=963 second=1098 amount=-3 -kerning first=123 second=8212 amount=-2 -kerning first=126 second=1059 amount=-2 -kerning first=38 second=8249 amount=-3 -kerning first=47 second=85 amount=-2 -kerning first=1048 second=263 amount=-1 -kerning first=299 second=365 amount=-1 -kerning first=8260 second=8221 amount=-3 -kerning first=8378 second=240 amount=-1 -kerning first=905 second=212 amount=-2 -kerning first=224 second=8216 amount=-1 -kerning first=944 second=354 amount=-5 -kerning first=1220 second=39 amount=-3 -kerning first=967 second=970 amount=-1 -kerning first=166 second=248 amount=-1 -kerning first=1062 second=213 amount=-1 -kerning first=297 second=8217 amount=-3 -kerning first=1085 second=355 amount=-1 -kerning first=214 second=87 amount=-5 -kerning first=906 second=367 amount=-1 -kerning first=903 second=1185 amount=-3 -kerning first=91 second=337 amount=-1 -kerning first=94 second=99 amount=-1 -kerning first=114 second=261 amount=-1 -kerning first=1223 second=214 amount=-2 -kerning first=277 second=1078 amount=-2 -kerning first=52 second=210 amount=-2 -kerning first=1063 second=368 amount=-2 -kerning first=192 second=338 amount=-2 -kerning first=195 second=100 amount=-1 -kerning first=304 second=941 amount=-1 -kerning first=72 second=352 amount=-1 -kerning first=215 second=262 amount=-2 -kerning first=904 second=8220 amount=-3 -kerning first=92 second=968 amount=-1 -kerning first=95 second=277 amount=-1 -kerning first=238 second=199 amount=-2 -kerning first=361 second=89 amount=-5 -kerning first=1224 second=369 amount=-1 -kerning first=255 second=1098 amount=-3 -kerning first=258 second=339 amount=-1 -kerning first=175 second=113 amount=-1 -kerning first=281 second=955 amount=-1 -kerning first=8226 second=216 amount=-2 -kerning first=53 second=365 amount=-1 -kerning first=1064 second=1066 amount=-5 -kerning first=8361 second=118 amount=-4 -kerning first=1099 second=240 amount=-1 -kerning first=923 second=252 amount=-1 -kerning first=915 second=943 amount=-1 -kerning first=1171 second=1256 amount=-2 -kerning first=236 second=1118 amount=-1 -kerning first=239 second=354 amount=-5 -kerning first=365 second=39 amount=-3 -kerning first=37 second=171 amount=-3 -kerning first=8224 second=1195 amount=-1 -kerning first=8230 second=371 amount=-1 -kerning first=51 second=8217 amount=-3 -kerning first=1071 second=253 amount=-1 -kerning first=200 second=225 amount=-1 -kerning first=318 second=115 amount=-1 -kerning first=315 second=355 amount=-1 -kerning first=240 second=1038 amount=-2 -kerning first=955 second=1101 amount=-1 -kerning first=1298 second=945 amount=-1 -kerning first=291 second=368 amount=-2 -kerning first=8240 second=1069 amount=-1 -kerning first=61 second=250 amount=-1 -kerning first=58 second=941 amount=-1 -kerning first=8366 second=243 amount=-1 -kerning first=84 second=187 amount=-1 -kerning first=345 second=227 amount=-1 -kerning first=936 second=357 amount=-1 -kerning first=367 second=369 amount=-1 -kerning first=160 second=251 amount=-1 -kerning first=42 second=263 amount=-1 -kerning first=1046 second=216 amount=-3 -kerning first=289 second=8221 amount=-3 -kerning first=294 second=1066 amount=-5 -kerning first=1081 second=118 amount=-4 -kerning first=208 second=90 amount=-1 -kerning first=325 second=240 amount=-1 -kerning first=900 second=370 amount=-2 -kerning first=108 second=266 amount=-2 -kerning first=111 second=39 amount=-1 -kerning first=374 second=79 amount=-3 -kerning first=968 second=229 amount=-1 -kerning first=8217 second=44 amount=-1 -kerning first=46 second=213 amount=-1 -kerning first=1041 second=1195 amount=-1 -kerning first=189 second=103 amount=-1 -kerning first=301 second=253 amount=-1 -kerning first=69 second=115 amount=-1 -kerning first=209 second=267 amount=-1 -kerning first=8377 second=346 amount=-1 -kerning first=1119 second=230 amount=-1 -kerning first=946 second=242 amount=-1 -kerning first=249 second=1101 amount=-1 -kerning first=372 second=945 amount=-3 -kerning first=165 second=356 amount=-5 -kerning first=168 second=116 amount=-1 -kerning first=278 second=268 amount=-2 -kerning first=8218 second=219 amount=-1 -kerning first=47 second=368 amount=-2 -kerning first=1048 second=1069 amount=-1 -kerning first=1064 second=81 amount=-2 -kerning first=190 second=281 amount=-1 -kerning first=1090 second=243 amount=-1 -kerning first=8378 second=1028 amount=-2 -kerning first=93 second=227 amount=-1 -kerning first=1117 second=1263 amount=-1 -kerning first=236 second=117 amount=-1 -kerning first=356 second=269 amount=-3 -kerning first=113 second=369 amount=-1 -kerning first=253 second=973 amount=-1 -kerning first=973 second=332 amount=-2 -kerning first=282 second=216 amount=-2 -kerning first=48 second=1066 amount=-5 -kerning first=194 second=228 amount=-1 -kerning first=74 second=240 amount=-1 -kerning first=214 second=370 amount=-2 -kerning first=91 second=1256 amount=-2 -kerning first=1174 second=333 amount=-1 -kerning first=240 second=67 amount=-2 -kerning first=111 second=8222 amount=-1 -kerning first=1223 second=949 amount=-1 -kerning first=260 second=229 amount=-1 -kerning first=170 second=920 amount=-2 -kerning first=280 second=1195 amount=-1 -kerning first=8240 second=84 amount=-5 -kerning first=55 second=253 amount=-1 -kerning first=192 second=1257 amount=-1 -kerning first=1178 second=273 amount=-1 -kerning first=1185 second=45 amount=-3 -kerning first=1175 second=964 amount=-2 -kerning first=358 second=947 amount=-4 -kerning first=361 second=372 amount=-5 -kerning first=956 second=287 amount=-1 -kerning first=118 second=945 amount=-1 -kerning first=258 second=1262 amount=-2 -kerning first=36 second=268 amount=-2 -kerning first=294 second=81 amount=-2 -kerning first=1074 second=121 amount=-1 -kerning first=317 second=243 amount=-1 -kerning first=1099 second=1028 amount=-2 -kerning first=102 second=269 amount=-1 -kerning first=1186 second=220 amount=-1 -kerning first=962 second=232 amount=-1 -kerning first=1263 second=1176 amount=-1 -kerning first=40 second=216 amount=-2 -kerning first=1037 second=374 amount=-5 -kerning first=183 second=106 amount=1 -kerning first=63 second=118 amount=-4 -kerning first=200 second=962 amount=-1 -kerning first=8370 second=111 amount=-1 -kerning first=8365 second=351 amount=-1 -kerning first=901 second=83 amount=-1 -kerning first=369 second=257 amount=-1 -kerning first=126 second=359 amount=-1 -kerning first=1298 second=8211 amount=-2 -kerning first=162 second=119 amount=-4 -kerning first=271 second=271 amount=-1 -kerning first=275 second=44 amount=-1 -kerning first=38 second=1195 amount=-1 -kerning first=41 second=371 amount=-1 -kerning first=180 second=1026 amount=-5 -kerning first=1048 second=84 amount=-5 -kerning first=184 second=286 amount=-2 -kerning first=1080 second=246 amount=-1 -kerning first=207 second=218 amount=-2 -kerning first=8366 second=1035 amount=-5 -kerning first=8372 second=291 amount=-1 -kerning first=87 second=230 amount=-2 -kerning first=230 second=120 amount=-2 -kerning first=104 second=947 amount=-1 -kerning first=250 second=287 amount=-1 -kerning first=967 second=335 amount=-1 -kerning first=276 second=219 amount=-2 -kerning first=42 second=1069 amount=-1 -kerning first=48 second=81 amount=-2 -kerning first=1049 second=259 amount=-1 -kerning first=1062 second=34 amount=-2 -kerning first=188 second=231 amount=-1 -kerning first=300 second=361 amount=-1 -kerning first=303 second=121 amount=-1 -kerning first=325 second=1028 amount=-2 -kerning first=1114 second=1095 amount=-1 -kerning first=1118 second=336 amount=-2 -kerning first=254 second=232 amount=-1 -kerning first=371 second=1176 amount=-1 -kerning first=968 second=966 amount=-1 -kerning first=167 second=244 amount=-1 -kerning first=971 second=275 amount=-1 -kerning first=1087 second=351 amount=-1 -kerning first=1095 second=111 amount=-1 -kerning first=215 second=83 amount=-1 -kerning first=904 second=1177 amount=-1 -kerning first=89 second=1087 amount=-3 -kerning first=92 second=333 amount=-1 -kerning first=950 second=290 amount=-2 -kerning first=1224 second=210 amount=-2 -kerning first=372 second=8211 amount=-2 -kerning first=171 second=194 amount=-1 -kerning first=286 second=84 amount=-1 -kerning first=8222 second=262 amount=-1 -kerning first=1064 second=364 amount=-2 -kerning first=190 second=1090 amount=-3 -kerning first=193 second=334 amount=-2 -kerning first=310 second=246 amount=-2 -kerning first=70 second=1107 amount=-1 -kerning first=73 second=346 amount=-1 -kerning first=1096 second=291 amount=-1 -kerning first=216 second=258 amount=-2 -kerning first=905 second=8212 amount=-2 -kerning first=93 second=964 amount=-3 -kerning first=96 second=273 amount=-1 -kerning first=356 second=1074 amount=-2 -kerning first=954 second=235 amount=-2 -kerning first=169 second=1108 amount=-1 -kerning first=172 second=347 amount=-1 -kerning first=287 second=259 amount=-1 -kerning first=8230 second=212 amount=-1 -kerning first=54 second=361 amount=-1 -kerning first=57 second=121 amount=-1 -kerning first=1062 second=8216 amount=-2 -kerning first=194 second=965 amount=-1 -kerning first=74 second=1028 amount=-2 -kerning first=77 second=288 amount=-2 -kerning first=338 second=336 amount=-2 -kerning first=926 second=248 amount=-1 -kerning first=100 second=220 amount=-2 -kerning first=1184 second=171 amount=-3 -kerning first=240 second=350 amount=-1 -kerning first=117 second=1176 amount=-1 -kerning first=1223 second=8217 amount=-3 -kerning first=260 second=966 amount=-1 -kerning first=268 second=47 amount=-1 -kerning first=35 second=374 amount=-5 -kerning first=177 second=289 amount=-1 -kerning first=8240 second=367 amount=-1 -kerning first=8225 second=1185 amount=-3 -kerning first=61 second=71 amount=-2 -kerning first=1073 second=249 amount=-1 -kerning first=201 second=221 amount=-5 -kerning first=316 second=351 amount=-1 -kerning first=321 second=111 amount=-1 -kerning first=221 second=363 amount=-2 -kerning first=339 second=967 amount=-2 -kerning first=936 second=198 amount=-3 -kerning first=1194 second=88 amount=-2 -kerning first=367 second=210 amount=-2 -kerning first=964 second=100 amount=-1 -kerning first=118 second=8211 amount=-1 -kerning first=1299 second=941 amount=-1 -kerning first=42 second=84 amount=-5 -kerning first=1039 second=262 amount=-2 -kerning first=182 second=234 amount=-1 -kerning first=294 second=364 amount=-2 -kerning first=8226 second=8220 amount=-3 -kerning first=62 second=246 amount=-1 -kerning first=202 second=376 amount=-5 -kerning first=317 second=1035 amount=-5 -kerning first=322 second=291 amount=-1 -kerning first=900 second=211 amount=-2 -kerning first=1102 second=1098 amount=-1 -kerning first=1107 second=339 amount=-1 -kerning first=942 second=113 amount=-1 -kerning first=108 second=85 amount=-2 -kerning first=270 second=377 amount=-1 -kerning first=8211 second=90 amount=-2 -kerning first=43 second=259 amount=-1 -kerning first=46 second=34 amount=-1 -kerning first=66 second=196 amount=-1 -kerning first=200 second=8250 amount=-1 -kerning first=901 second=366 amount=-2 -kerning first=86 second=336 amount=-2 -kerning first=1116 second=279 amount=-2 -kerning first=1206 second=213 amount=-1 -kerning first=278 second=87 amount=-5 -kerning first=1044 second=1185 amount=-2 -kerning first=1048 second=367 amount=-1 -kerning first=190 second=99 amount=-1 -kerning first=299 second=940 amount=-1 -kerning first=302 second=249 amount=-1 -kerning first=70 second=111 amount=-1 -kerning first=1080 second=1038 amount=-2 -kerning first=207 second=953 amount=-1 -kerning first=8372 second=1101 amount=-1 -kerning first=1168 second=226 amount=-1 -kerning first=350 second=1078 amount=-1 -kerning first=113 second=210 amount=-2 -kerning first=253 second=338 amount=-2 -kerning first=256 second=100 amount=-1 -kerning first=376 second=250 amount=-2 -kerning first=373 second=941 amount=-1 -kerning first=166 second=352 amount=-1 -kerning first=48 second=364 amount=-2 -kerning first=188 second=968 amount=-1 -kerning first=191 second=277 amount=-1 -kerning first=306 second=199 amount=-2 -kerning first=68 second=1035 amount=-2 -kerning first=214 second=211 amount=-2 -kerning first=328 second=1098 amount=-1 -kerning first=237 second=113 amount=-1 -kerning first=357 second=263 amount=-1 -kerning first=1210 second=1066 amount=-5 -kerning first=1028 second=90 amount=-1 -kerning first=46 second=8216 amount=-1 -kerning first=1063 second=943 amount=-1 -kerning first=195 second=224 amount=-1 -kerning first=304 second=1118 amount=-1 -kerning first=212 second=1184 amount=-2 -kerning first=215 second=366 amount=-2 -kerning first=241 second=63 amount=-2 -kerning first=361 second=213 amount=-2 -kerning first=950 second=1100 amount=-2 -kerning first=956 second=103 amount=-1 -kerning first=112 second=8217 amount=-1 -kerning first=36 second=87 amount=-5 -kerning first=281 second=1185 amount=-1 -kerning first=56 second=249 amount=-1 -kerning first=53 second=940 amount=-1 -kerning first=8361 second=242 amount=-1 -kerning first=1096 second=1101 amount=-1 -kerning first=213 second=8218 amount=-1 -kerning first=923 second=356 amount=-5 -kerning first=931 second=116 amount=-1 -kerning first=958 second=281 amount=-1 -kerning first=954 second=972 amount=-2 -kerning first=119 second=941 amount=-1 -kerning first=37 second=262 amount=-2 -kerning first=176 second=1241 amount=-1 -kerning first=179 second=187 amount=-1 -kerning first=282 second=8220 amount=-3 -kerning first=60 second=199 amount=-2 -kerning first=1071 second=357 amount=-1 -kerning first=197 second=1079 amount=-1 -kerning first=203 second=89 amount=-5 -kerning first=80 second=339 amount=-1 -kerning first=77 second=1098 amount=-3 -kerning first=223 second=251 amount=-1 -kerning first=103 second=263 amount=-1 -kerning first=363 second=1066 amount=-5 -kerning first=963 second=228 amount=-1 -kerning first=41 second=212 amount=-2 -kerning first=1035 second=1194 amount=-2 -kerning first=291 second=943 amount=-1 -kerning first=296 second=252 amount=-1 -kerning first=61 second=354 amount=-5 -kerning first=58 second=1118 amount=-1 -kerning first=1080 second=67 amount=-2 -kerning first=204 second=266 amount=-2 -kerning first=207 second=39 amount=-3 -kerning first=902 second=79 amount=-2 -kerning first=84 second=279 amount=-3 -kerning first=936 second=920 amount=-2 -kerning first=1185 second=1195 amount=-2 -kerning first=250 second=103 amount=-1 -kerning first=160 second=355 amount=-1 -kerning first=163 second=115 amount=-1 -kerning first=273 second=267 amount=-1 -kerning first=42 second=367 amount=-1 -kerning first=62 second=1038 amount=-2 -kerning first=1081 second=242 amount=-1 -kerning first=322 second=1101 amount=-1 -kerning first=900 second=945 amount=-1 -kerning first=88 second=226 amount=-1 -kerning first=108 second=368 amount=-2 -kerning first=1210 second=81 amount=-2 -kerning first=251 second=281 amount=-1 -kerning first=8211 second=373 amount=-1 -kerning first=40 second=8220 amount=-3 -kerning first=189 second=227 amount=-1 -kerning first=304 second=117 amount=-1 -kerning first=301 second=357 amount=-1 -kerning first=209 second=369 amount=-1 -kerning first=86 second=1224 amount=-2 -kerning first=1119 second=332 amount=-2 -kerning first=950 second=106 amount=1 -kerning first=255 second=228 amount=-1 -kerning first=168 second=240 amount=-1 -kerning first=278 second=370 amount=-2 -kerning first=8212 second=1071 amount=-1 -kerning first=47 second=943 amount=-1 -kerning first=50 second=252 amount=-1 -kerning first=310 second=67 amount=-3 -kerning first=915 second=119 amount=-4 -kerning first=1168 second=963 amount=-1 -kerning first=1171 second=271 amount=-1 -kerning first=356 second=371 amount=-2 -kerning first=948 second=1026 amount=-5 -kerning first=951 second=286 amount=-2 -kerning first=253 second=1257 amount=-1 -kerning first=1027 second=218 amount=-2 -kerning first=1065 second=360 amount=-1 -kerning first=311 second=242 amount=-2 -kerning first=214 second=945 amount=-1 -kerning first=357 second=1069 amount=-1 -kerning first=363 second=81 amount=-2 -kerning first=955 second=231 amount=-1 -kerning first=1298 second=121 amount=-1 -kerning first=55 second=357 amount=-1 -kerning first=58 second=117 amount=-1 -kerning first=198 second=269 amount=-1 -kerning first=75 second=973 amount=-1 -kerning first=928 second=244 amount=-1 -kerning first=1178 second=374 amount=-2 -kerning first=364 second=256 amount=-2 -kerning first=124 second=118 amount=-4 -kerning first=36 second=370 amount=-2 -kerning first=1033 second=1071 amount=-1 -kerning first=1039 second=83 amount=-1 -kerning first=178 second=283 amount=-1 -kerning first=8226 second=1177 amount=-1 -kerning first=62 second=67 amount=-2 -kerning first=1074 second=245 amount=-1 -kerning first=202 second=217 amount=-2 -kerning first=8364 second=290 amount=-2 -kerning first=225 second=119 amount=-1 -kerning first=343 second=271 amount=-1 -kerning first=1179 second=1073 amount=-1 -kerning first=958 second=1090 amount=-3 -kerning first=962 second=334 amount=-2 -kerning first=183 second=230 amount=-1 -kerning first=8230 second=8212 amount=-1 -kerning first=63 second=242 amount=-1 -kerning first=200 second=947 amount=-4 -kerning first=203 second=372 amount=-5 -kerning first=323 second=287 amount=-1 -kerning first=8370 second=235 amount=-1 -kerning first=80 second=1262 amount=-2 -kerning first=1116 second=97 amount=-1 -kerning first=934 second=1108 amount=-1 -kerning first=103 second=1069 amount=-1 -kerning first=947 second=259 amount=-1 -kerning first=1206 second=34 amount=-2 -kerning first=249 second=231 amount=-1 -kerning first=369 second=361 amount=-1 -kerning first=372 second=121 amount=-1 -kerning first=963 second=965 amount=-1 -kerning first=162 second=243 amount=-1 -kerning first=268 second=1202 amount=-2 -kerning first=271 second=373 amount=-4 -kerning first=8212 second=86 amount=-3 -kerning first=180 second=1263 amount=-1 -kerning first=1080 second=350 amount=-1 -kerning first=327 second=232 amount=-1 -kerning first=902 second=362 amount=-2 -kerning first=84 second=1085 amount=-2 -kerning first=87 second=332 amount=-2 -kerning first=1117 second=275 amount=-1 -kerning first=350 second=374 amount=-2 -kerning first=944 second=289 amount=-1 -kerning first=376 second=71 amount=-3 -kerning first=8216 second=261 amount=-1 -kerning first=1046 second=1177 amount=-2 -kerning first=1049 second=363 amount=-1 -kerning first=188 second=333 amount=-1 -kerning first=303 second=245 amount=-1 -kerning first=1085 second=290 amount=-2 -kerning first=900 second=8211 amount=-2 -kerning first=88 second=963 amount=-2 -kerning first=91 second=271 amount=-1 -kerning first=357 second=84 amount=-5 -kerning first=1210 second=364 amount=-2 -kerning first=254 second=334 amount=-2 -kerning first=251 second=1090 amount=-3 -kerning first=377 second=246 amount=-1 -kerning first=971 second=376 amount=-5 -kerning first=167 second=346 amount=-1 -kerning first=49 second=360 amount=-2 -kerning first=1051 second=1059 amount=-2 -kerning first=192 second=273 amount=-1 -kerning first=195 second=45 amount=-2 -kerning first=189 second=964 amount=-3 -kerning first=72 second=287 amount=-1 -kerning first=1095 second=235 amount=-1 -kerning first=95 second=219 amount=-2 -kerning first=358 second=259 amount=-1 -kerning first=361 second=34 amount=-3 -kerning first=112 second=1175 amount=-2 -kerning first=1206 second=8216 amount=-2 -kerning first=255 second=965 amount=-1 -kerning first=168 second=1028 amount=-2 -kerning first=8218 second=1184 amount=-5 -kerning first=8222 second=366 amount=-1 -kerning first=1067 second=248 amount=-1 -kerning first=196 second=220 amount=-2 -kerning first=310 second=350 amount=-1 -kerning first=76 second=232 amount=-1 -kerning first=96 second=374 amount=-5 -kerning first=239 second=289 amount=-1 -kerning first=958 second=99 amount=-1 -kerning first=954 second=337 amount=-2 -kerning first=1263 second=249 amount=-1 -kerning first=262 second=221 amount=-2 -kerning first=37 second=83 amount=-1 -kerning first=1027 second=953 amount=-1 -kerning first=176 second=233 amount=-1 -kerning first=287 second=363 amount=-1 -kerning first=282 second=1177 amount=-1 -kerning first=8220 second=8218 amount=-1 -kerning first=57 second=245 amount=-1 -kerning first=197 second=375 amount=-1 -kerning first=315 second=290 amount=-1 -kerning first=214 second=8211 amount=-2 -kerning first=1103 second=100 amount=-1 -kerning first=217 second=1051 amount=-1 -kerning first=926 second=352 amount=-1 -kerning first=103 second=84 amount=-5 -kerning first=1184 second=262 amount=-3 -kerning first=363 second=364 amount=-2 -kerning first=955 second=968 amount=-1 -kerning first=960 second=277 amount=-1 -kerning first=123 second=246 amount=-1 -kerning first=38 second=258 amount=-1 -kerning first=8260 second=251 amount=-1 -kerning first=1073 second=353 amount=-1 -kerning first=195 second=8249 amount=-3 -kerning first=1076 second=113 amount=-1 -kerning first=204 second=85 amount=-2 -kerning first=321 second=235 amount=-1 -kerning first=84 second=97 amount=-2 -kerning first=361 second=8216 amount=-3 -kerning first=964 second=224 amount=-1 -kerning first=1299 second=1118 amount=-1 -kerning first=1039 second=366 amount=-2 -kerning first=182 second=336 amount=-2 -kerning first=297 second=248 amount=-1 -kerning first=62 second=350 amount=-1 -kerning first=1186 second=1185 amount=-2 -kerning first=251 second=99 amount=-1 -kerning first=371 second=249 amount=-1 -kerning first=164 second=111 amount=-1 -kerning first=161 second=351 amount=-1 -kerning first=274 second=261 amount=-1 -kerning first=40 second=1177 amount=-1 -kerning first=43 second=363 amount=-1 -kerning first=209 second=210 amount=-2 -kerning first=330 second=100 amount=-1 -kerning first=904 second=250 amount=-1 -kerning first=901 second=941 amount=-1 -kerning first=8370 second=972 amount=-1 -kerning first=8377 second=281 amount=-1 -kerning first=946 second=187 amount=-1 -kerning first=249 second=968 amount=-1 -kerning first=252 second=277 amount=-1 -kerning first=375 second=199 amount=-2 -kerning first=162 second=1035 amount=-5 -kerning first=165 second=291 amount=-1 -kerning first=278 second=211 amount=-2 -kerning first=1241 second=1098 amount=-1 -kerning first=41 second=8212 amount=-2 -kerning first=44 second=1059 amount=-1 -kerning first=302 second=353 amount=-1 -kerning first=305 second=113 amount=-1 -kerning first=70 second=235 amount=-1 -kerning first=90 second=377 amount=1 -kerning first=356 second=212 amount=-1 -kerning first=1220 second=252 amount=-1 -kerning first=256 second=224 amount=-1 -kerning first=973 second=266 amount=-2 -kerning first=1027 second=39 amount=-3 -kerning first=276 second=1184 amount=-5 -kerning first=8224 second=79 amount=-2 -kerning first=51 second=248 amount=-1 -kerning first=194 second=171 amount=-3 -kerning first=916 second=115 amount=-1 -kerning first=1174 second=267 amount=-1 -kerning first=357 second=367 amount=-1 -kerning first=117 second=249 amount=-1 -kerning first=114 second=940 amount=-1 -kerning first=277 second=8218 amount=-1 -kerning first=8221 second=945 amount=-1 -kerning first=55 second=198 amount=-5 -kerning first=1066 second=356 amount=-5 -kerning first=78 second=100 amount=-1 -kerning first=1095 second=972 amount=-1 -kerning first=215 second=941 amount=-1 -kerning first=75 second=338 amount=-3 -kerning first=238 second=1241 amount=-1 -kerning first=956 second=227 amount=-1 -kerning first=121 second=199 amount=-2 -kerning first=1299 second=117 amount=-1 -kerning first=258 second=1079 amount=-1 -kerning first=266 second=89 amount=-2 -kerning first=36 second=211 amount=-2 -kerning first=175 second=339 amount=-1 -kerning first=178 second=101 amount=-1 -kerning first=289 second=251 amount=-1 -kerning first=56 second=353 amount=-1 -kerning first=59 second=113 amount=-1 -kerning first=8364 second=106 amount=1 -kerning first=931 second=240 amount=-1 -kerning first=1176 second=1194 amount=-2 -kerning first=245 second=102 amount=-1 -kerning first=365 second=252 amount=-1 -kerning first=37 second=366 amount=-2 -kerning first=1041 second=79 amount=-2 -kerning first=179 second=279 amount=-1 -kerning first=176 second=970 amount=-1 -kerning first=1071 second=920 amount=-2 -kerning first=203 second=213 amount=-2 -kerning first=8365 second=286 amount=-2 -kerning first=323 second=103 amount=-1 -kerning first=223 second=355 amount=-1 -kerning first=100 second=1185 amount=-3 -kerning first=103 second=367 amount=-1 -kerning first=123 second=1038 amount=-2 -kerning first=271 second=214 amount=-2 -kerning first=184 second=226 amount=-1 -kerning first=296 second=356 amount=-5 -kerning first=299 second=116 amount=-1 -kerning first=204 second=368 amount=-2 -kerning first=321 second=972 amount=-1 -kerning first=8372 second=231 amount=-1 -kerning first=84 second=380 amount=-1 -kerning first=101 second=8220 amount=-1 -kerning first=250 second=227 amount=-1 -kerning first=967 second=269 amount=-1 -kerning first=273 second=369 amount=-1 -kerning first=202 second=8221 amount=-3 -kerning first=205 second=1066 amount=-5 -kerning first=1085 second=106 amount=1 -kerning first=906 second=118 amount=-4 -kerning first=108 second=943 amount=-1 -kerning first=377 second=67 amount=-1 -kerning first=971 second=217 amount=-2 -kerning first=270 second=8222 amount=-1 -kerning first=280 second=79 amount=-2 -kerning first=8217 second=257 amount=-1 -kerning first=1051 second=359 amount=-1 -kerning first=1063 second=119 amount=-4 -kerning first=301 second=920 amount=-2 -kerning first=72 second=103 amount=-1 -kerning first=1083 second=1026 amount=-5 -kerning first=1087 second=286 amount=-2 -kerning first=8377 second=1090 amount=-3 -kerning first=92 second=267 amount=-1 -kerning first=1170 second=218 amount=-2 -kerning first=950 second=230 amount=-1 -kerning first=1219 second=360 amount=-2 -kerning first=378 second=242 amount=-1 -kerning first=165 second=1101 amount=-1 -kerning first=278 second=945 amount=-1 -kerning first=50 second=356 amount=-5 -kerning first=53 second=116 amount=-1 -kerning first=193 second=268 amount=-2 -kerning first=70 second=972 amount=-1 -kerning first=73 second=281 amount=-1 -kerning first=1096 second=231 amount=-1 -kerning first=915 second=243 amount=-1 -kerning first=1171 second=373 amount=-4 -kerning first=948 second=1263 amount=-1 -kerning first=113 second=1169 amount=2 -kerning first=169 second=973 amount=-1 -kerning first=8224 second=362 amount=-2 -kerning first=197 second=216 amount=-2 -kerning first=77 second=228 amount=-1 -kerning first=94 second=1194 amount=-2 -kerning first=1169 second=8230 amount=-3 -kerning first=1184 second=83 amount=-1 -kerning first=240 second=283 amount=-1 -kerning first=955 second=333 amount=-1 -kerning first=123 second=67 amount=-2 -kerning first=1298 second=245 amount=-1 -kerning first=38 second=79 amount=-2 -kerning first=1035 second=257 amount=-1 -kerning first=177 second=229 amount=-1 -kerning first=291 second=119 amount=-4 -kerning first=55 second=920 amount=-2 -kerning first=198 second=371 amount=-1 -kerning first=195 second=1195 amount=-1 -kerning first=313 second=1026 amount=-6 -kerning first=316 second=286 amount=-2 -kerning first=8363 second=234 amount=-1 -kerning first=75 second=1257 amount=-2 -kerning first=928 second=346 amount=-1 -kerning first=956 second=964 amount=-3 -kerning first=964 second=45 amount=-2 -kerning first=124 second=242 amount=-1 -kerning first=261 second=947 amount=-1 -kerning first=266 second=372 amount=-1 -kerning first=36 second=945 amount=-1 -kerning first=178 second=1240 amount=-2 -kerning first=175 second=1262 amount=-2 -kerning first=1074 second=347 amount=-1 -kerning first=199 second=1069 amount=1 -kerning first=205 second=81 amount=-2 -kerning first=322 second=231 amount=-1 -kerning first=900 second=121 amount=-1 -kerning first=931 second=1028 amount=-2 -kerning first=965 second=220 amount=-2 -kerning first=1041 second=362 amount=-2 -kerning first=1037 second=1176 amount=-1 -kerning first=183 second=332 amount=-2 -kerning first=298 second=244 amount=-1 -kerning first=8370 second=337 amount=-1 -kerning first=8377 second=99 amount=-1 -kerning first=904 second=71 amount=-2 -kerning first=341 second=8230 amount=-3 -kerning first=249 second=333 amount=-1 -kerning first=372 second=245 amount=-3 -kerning first=271 second=949 amount=-1 -kerning first=44 second=359 amount=-1 -kerning first=47 second=119 amount=-4 -kerning first=184 second=963 amount=-1 -kerning first=64 second=1026 amount=-5 -kerning first=1084 second=234 amount=-1 -kerning first=324 second=1090 amount=-1 -kerning first=327 second=334 amount=-2 -kerning first=8372 second=968 amount=-1 -kerning first=905 second=246 amount=-1 -kerning first=8378 second=277 amount=-1 -kerning first=1117 second=376 amount=-5 -kerning first=1194 second=8212 amount=-1 -kerning first=1202 second=1059 amount=-1 -kerning first=253 second=273 amount=-1 -kerning first=256 second=45 amount=-2 -kerning first=250 second=964 amount=-3 -kerning first=964 second=8249 amount=-3 -kerning first=973 second=85 amount=-2 -kerning first=166 second=287 amount=-1 -kerning first=191 second=219 amount=-2 -kerning first=300 second=1108 amount=-1 -kerning first=303 second=347 amount=-1 -kerning first=214 second=121 amount=-1 -kerning first=335 second=46 amount=-1 -kerning first=91 second=373 amount=-4 -kerning first=1223 second=248 amount=-1 -kerning first=170 second=232 amount=-1 -kerning first=280 second=362 amount=-2 -kerning first=283 second=122 amount=-1 -kerning first=52 second=244 amount=-1 -kerning first=1066 second=197 amount=-1 -kerning first=192 second=374 amount=-5 -kerning first=1095 second=337 amount=-1 -kerning first=336 second=221 amount=-3 -kerning first=912 second=351 amount=-1 -kerning first=89 second=8230 amount=-4 -kerning first=1170 second=953 amount=-1 -kerning first=238 second=233 amount=-1 -kerning first=358 second=363 amount=-1 -kerning first=950 second=967 amount=-1 -kerning first=118 second=245 amount=-1 -kerning first=1262 second=198 amount=-2 -kerning first=258 second=375 amount=-1 -kerning first=381 second=290 amount=-1 -kerning first=278 second=8211 amount=-2 -kerning first=8226 second=250 amount=-1 -kerning first=1067 second=352 amount=-1 -kerning first=199 second=84 amount=-1 -kerning first=314 second=234 amount=-1 -kerning first=8361 second=187 amount=-1 -kerning first=73 second=1090 amount=-3 -kerning first=76 second=334 amount=-1 -kerning first=1096 second=968 amount=-1 -kerning first=1099 second=277 amount=-1 -kerning first=915 second=1035 amount=-5 -kerning first=923 second=291 amount=-1 -kerning first=356 second=8212 amount=-4 -kerning first=1263 second=353 amount=-1 -kerning first=256 second=8249 amount=-3 -kerning first=176 second=335 amount=-1 -kerning first=179 second=97 amount=-1 -kerning first=54 second=1108 amount=-1 -kerning first=57 second=347 amount=-1 -kerning first=200 second=259 amount=-1 -kerning first=203 second=34 amount=-3 -kerning first=77 second=965 amount=-1 -kerning first=1103 second=224 amount=-1 -kerning first=344 second=86 amount=-1 -kerning first=963 second=171 amount=-3 -kerning first=123 second=350 amount=-1 -kerning first=268 second=260 amount=-1 -kerning first=35 second=1176 amount=-1 -kerning first=38 second=362 amount=-2 -kerning first=177 second=966 amount=-1 -kerning first=180 second=275 amount=-1 -kerning first=8260 second=355 amount=-1 -kerning first=61 second=289 amount=-1 -kerning first=321 second=337 amount=-1 -kerning first=221 second=1114 amount=-3 -kerning first=345 second=261 amount=-1 -kerning first=244 second=967 amount=-2 -kerning first=370 second=198 amount=-2 -kerning first=961 second=1078 amount=-2 -kerning first=160 second=290 amount=-2 -kerning first=273 second=210 amount=-2 -kerning first=36 second=8211 amount=-2 -kerning first=39 second=1051 amount=-3 -kerning first=1039 second=941 amount=-1 -kerning first=1046 second=250 amount=-1 -kerning first=297 second=352 amount=-1 -kerning first=65 second=234 amount=-1 -kerning first=1081 second=187 amount=-1 -kerning first=205 second=364 amount=-2 -kerning first=1078 second=1241 amount=-2 -kerning first=322 second=968 amount=-1 -kerning first=325 second=277 amount=-1 -kerning first=903 second=199 amount=-2 -kerning first=1118 second=89 amount=-5 -kerning first=942 second=339 amount=-1 -kerning first=105 second=1059 amount=-2 -kerning first=102 second=8212 amount=-2 -kerning first=371 second=353 amount=-1 -kerning first=374 second=113 amount=-4 -kerning first=968 second=263 amount=-1 -kerning first=164 second=235 amount=-1 -kerning first=274 second=365 amount=-1 -kerning first=203 second=8216 amount=-3 -kerning first=330 second=224 amount=-1 -kerning first=8370 second=1256 amount=-2 -kerning first=901 second=1118 amount=-1 -kerning first=904 second=354 amount=-5 -kerning first=86 second=1075 amount=-2 -kerning first=1119 second=266 amount=-2 -kerning first=1170 second=39 amount=-3 -kerning first=946 second=279 amount=-1 -kerning first=255 second=171 amount=-3 -kerning first=271 second=8217 amount=-3 -kerning first=8218 second=253 amount=-1 -kerning first=1064 second=115 amount=-1 -kerning first=193 second=87 amount=-5 -kerning first=70 second=337 amount=-1 -kerning first=73 second=99 amount=-1 -kerning first=905 second=1038 amount=-2 -kerning first=93 second=261 amount=-1 -kerning first=1171 second=214 amount=-2 -kerning first=951 second=226 amount=-1 -kerning first=1220 second=356 amount=-5 -kerning first=973 second=368 amount=-2 -kerning first=169 second=338 amount=-2 -kerning first=172 second=100 amount=-1 -kerning first=282 second=250 amount=-1 -kerning first=51 second=352 amount=-1 -kerning first=1068 second=65 amount=-1 -kerning first=194 second=262 amount=-2 -kerning first=306 second=1241 amount=-1 -kerning first=74 second=277 amount=-1 -kerning first=338 second=89 amount=-5 -kerning first=234 second=1098 amount=-1 -kerning first=237 second=339 amount=-1 -kerning first=240 second=101 amount=-1 -kerning first=117 second=353 amount=-1 -kerning first=120 second=113 amount=-2 -kerning first=260 second=263 amount=-1 -kerning first=971 second=8221 amount=-3 -kerning first=8240 second=118 amount=-4 -kerning first=1066 second=916 amount=-1 -kerning first=198 second=212 amount=-2 -kerning first=78 second=224 amount=-1 -kerning first=1095 second=1256 amount=-2 -kerning first=215 second=1118 amount=-1 -kerning first=221 second=114 amount=-3 -kerning first=95 second=1184 amount=-5 -kerning first=238 second=970 amount=-1 -kerning first=1036 second=253 amount=-2 -kerning first=178 second=225 amount=-1 -kerning first=289 second=355 amount=-1 -kerning first=294 second=115 amount=-1 -kerning first=196 second=1185 amount=-3 -kerning first=8364 second=230 amount=-1 -kerning first=79 second=379 amount=-1 -kerning first=923 second=1101 amount=-1 -kerning first=1179 second=945 amount=-1 -kerning first=365 second=356 amount=-5 -kerning first=962 second=268 amount=-2 -kerning first=40 second=250 amount=-1 -kerning first=37 second=941 amount=-1 -kerning first=60 second=1241 amount=-1 -kerning first=63 second=187 amount=-1 -kerning first=197 second=8220 amount=-3 -kerning first=323 second=227 amount=-1 -kerning first=901 second=117 amount=-1 -kerning first=80 second=1079 amount=-1 -kerning first=86 second=89 amount=-5 -kerning first=934 second=973 amount=-1 -kerning first=268 second=1066 amount=-1 -kerning first=263 second=8221 amount=-1 -kerning first=1048 second=118 amount=-4 -kerning first=299 second=240 amount=-1 -kerning first=1080 second=283 amount=-1 -kerning first=204 second=943 amount=-1 -kerning first=207 second=252 amount=-1 -kerning first=321 second=1256 amount=-2 -kerning first=8372 second=333 amount=-1 -kerning first=905 second=67 amount=-2 -kerning first=87 second=266 amount=-2 -kerning first=1117 second=217 amount=-2 -kerning first=944 second=229 amount=-1 -kerning first=964 second=1195 amount=-1 -kerning first=967 second=371 amount=-1 -kerning first=166 second=103 amount=-1 -kerning first=276 second=253 amount=-1 -kerning first=48 second=115 amount=-1 -kerning first=188 second=267 amount=-1 -kerning first=1085 second=230 amount=-1 -kerning first=906 second=242 amount=-1 -kerning first=91 second=214 amount=-2 -kerning first=1118 second=372 amount=-5 -kerning first=942 second=1262 amount=-2 -kerning first=254 second=268 amount=-2 -kerning first=968 second=1069 amount=-1 -kerning first=164 second=972 amount=-1 -kerning first=167 second=281 amount=-1 -kerning first=8211 second=1175 amount=-2 -kerning first=1063 second=243 amount=-1 -kerning first=72 second=227 amount=-1 -kerning first=1083 second=1263 amount=-1 -kerning first=215 second=117 amount=-1 -kerning first=92 second=369 amount=-1 -kerning first=89 second=1187 amount=-3 -kerning first=950 second=332 amount=-2 -kerning first=1224 second=244 amount=-1 -kerning first=258 second=216 amount=-2 -kerning first=8226 second=71 amount=-2 -kerning first=53 second=240 amount=-1 -kerning first=190 second=1194 amount=-2 -kerning first=193 second=370 amount=-2 -kerning first=310 second=283 amount=-2 -kerning first=70 second=1256 amount=-2 -kerning first=1096 second=333 amount=-1 -kerning first=213 second=1044 amount=-1 -kerning first=1171 second=949 amount=-1 -kerning first=1176 second=257 amount=-1 -kerning first=239 second=229 amount=-1 -kerning first=951 second=963 amount=-1 -kerning first=954 second=271 amount=-2 -kerning first=256 second=1195 amount=-1 -kerning first=169 second=1257 amount=-1 -kerning first=1097 second=964 amount=-2 -kerning first=1103 second=45 amount=-2 -kerning first=217 second=923 amount=-2 -kerning first=335 second=947 amount=-1 -kerning first=338 second=372 amount=-5 -kerning first=926 second=287 amount=-1 -kerning first=237 second=1262 amount=-2 -kerning first=240 second=1240 amount=-2 -kerning first=960 second=219 amount=-2 -kerning first=1298 second=347 amount=-1 -kerning first=260 second=1069 amount=-1 -kerning first=1035 second=361 amount=-1 -kerning first=291 second=243 amount=-1 -kerning first=1073 second=288 amount=-2 -kerning first=313 second=1263 amount=-1 -kerning first=8363 second=336 amount=-2 -kerning first=936 second=232 amount=-1 -kerning first=367 second=244 amount=-1 -kerning first=160 second=106 amount=1 -kerning first=1240 second=1298 amount=-1 -kerning first=42 second=118 amount=-4 -kerning first=178 second=962 amount=-1 -kerning first=1046 second=71 amount=-3 -kerning first=62 second=283 amount=-1 -kerning first=1078 second=233 amount=-2 -kerning first=322 second=333 amount=-1 -kerning first=900 second=245 amount=-1 -kerning first=343 second=949 amount=-1 -kerning first=105 second=359 amount=-1 -kerning first=108 second=119 amount=-4 -kerning first=968 second=84 amount=-5 -kerning first=125 second=1026 amount=-5 -kerning first=161 second=286 amount=-2 -kerning first=186 second=218 amount=-2 -kerning first=298 second=346 amount=-1 -kerning first=206 second=360 amount=-2 -kerning first=323 second=964 amount=-3 -kerning first=330 second=45 amount=-2 -kerning first=86 second=372 amount=-5 -kerning first=1103 second=8249 amount=-3 -kerning first=83 second=947 amount=-1 -kerning first=1119 second=85 amount=-2 -kerning first=946 second=97 amount=-1 -kerning first=252 second=219 amount=-2 -kerning first=369 second=1108 amount=-1 -kerning first=372 second=347 amount=-2 -kerning first=972 second=34 amount=-1 -kerning first=165 second=231 amount=-1 -kerning first=278 second=121 amount=-1 -kerning first=47 second=243 amount=-2 -kerning first=1059 second=196 amount=-2 -kerning first=299 second=1028 amount=-2 -kerning first=302 second=288 amount=-2 -kerning first=64 second=1263 amount=-1 -kerning first=1084 second=336 amount=-2 -kerning first=905 second=350 amount=-1 -kerning first=910 second=110 amount=-3 -kerning first=356 second=122 amount=-1 -kerning first=944 second=966 amount=-1 -kerning first=948 second=275 amount=-1 -kerning first=113 second=244 amount=-1 -kerning first=253 second=374 amount=-5 -kerning first=376 second=289 amount=-4 -kerning first=282 second=71 amount=-2 -kerning first=8216 second=940 amount=-1 -kerning first=1065 second=111 amount=-1 -kerning first=194 second=83 amount=-1 -kerning first=306 second=233 amount=-1 -kerning first=214 second=245 amount=-1 -kerning first=91 second=949 amount=-1 -kerning first=94 second=257 amount=-1 -kerning first=1174 second=210 amount=-1 -kerning first=354 second=1051 amount=-4 -kerning first=1223 second=352 amount=-1 -kerning first=260 second=84 amount=-5 -kerning first=380 second=234 amount=-1 -kerning first=170 second=334 amount=-2 -kerning first=167 second=1090 amount=-3 -kerning first=8225 second=199 amount=-2 -kerning first=52 second=346 amount=-1 -kerning first=1063 second=1035 amount=-5 -kerning first=78 second=45 amount=-2 -kerning first=72 second=964 amount=-3 -kerning first=75 second=273 amount=-2 -kerning first=330 second=8249 amount=-3 -kerning first=238 second=335 amount=-1 -kerning first=118 second=347 amount=-1 -kerning first=36 second=121 amount=-1 -kerning first=972 second=8216 amount=-1 -kerning first=1036 second=74 amount=-1 -kerning first=8222 second=1118 amount=-1 -kerning first=8226 second=354 amount=-5 -kerning first=53 second=1028 amount=-2 -kerning first=56 second=288 amount=-2 -kerning first=314 second=336 amount=-2 -kerning first=8361 second=279 amount=-1 -kerning first=96 second=1176 amount=-1 -kerning first=1171 second=8217 amount=-3 -kerning first=239 second=966 amount=-1 -kerning first=245 second=47 amount=-1 -kerning first=962 second=87 amount=-5 -kerning first=40 second=71 amount=-2 -kerning first=1037 second=249 amount=-1 -kerning first=179 second=221 amount=-5 -kerning first=8230 second=1038 amount=-1 -kerning first=60 second=233 amount=-1 -kerning first=200 second=363 amount=-1 -kerning first=197 second=1177 amount=-1 -kerning first=8365 second=226 amount=-1 -kerning first=80 second=375 amount=-1 -kerning first=1100 second=1078 amount=-2 -kerning first=223 second=290 amount=-2 -kerning first=934 second=338 amount=-2 -kerning first=1184 second=941 amount=-2 -kerning first=963 second=262 amount=-2 -kerning first=126 second=234 amount=-1 -kerning first=41 second=246 amount=-1 -kerning first=1044 second=199 amount=-1 -kerning first=180 second=376 amount=-5 -kerning first=291 second=1035 amount=-5 -kerning first=296 second=291 amount=-1 -kerning first=1073 second=1098 amount=-3 -kerning first=1076 second=339 amount=-1 -kerning first=198 second=8212 amount=-2 -kerning first=201 second=1059 amount=-2 -kerning first=1080 second=101 amount=-1 -kerning first=902 second=113 amount=-1 -kerning first=78 second=8249 amount=-3 -kerning first=967 second=212 amount=-2 -kerning first=45 second=196 amount=-2 -kerning first=1039 second=1118 amount=-1 -kerning first=178 second=8250 amount=-1 -kerning first=65 second=336 amount=-2 -kerning first=1081 second=279 amount=-1 -kerning first=1118 second=213 amount=-2 -kerning first=1210 second=115 amount=-1 -kerning first=248 second=1076 amount=-1 -kerning first=254 second=87 amount=-5 -kerning first=965 second=1185 amount=-3 -kerning first=968 second=367 amount=-1 -kerning first=164 second=337 amount=-1 -kerning first=167 second=99 amount=-1 -kerning first=274 second=940 amount=-1 -kerning first=49 second=111 amount=-1 -kerning first=189 second=261 amount=-1 -kerning first=186 second=953 amount=-1 -kerning first=1087 second=226 amount=-1 -kerning first=212 second=198 amount=-2 -kerning first=92 second=210 amount=-2 -kerning first=1119 second=368 amount=-2 -kerning first=255 second=262 amount=-2 -kerning first=375 second=1241 amount=-1 -kerning first=966 second=8220 amount=-1 -kerning first=165 second=968 amount=-1 -kerning first=168 second=277 amount=-1 -kerning first=8222 second=117 amount=-1 -kerning first=8218 second=357 amount=-1 -kerning first=47 second=1035 amount=-5 -kerning first=50 second=291 amount=-1 -kerning first=193 second=211 amount=-2 -kerning first=305 second=339 amount=-1 -kerning first=302 second=1098 amount=-3 -kerning first=310 second=101 amount=-2 -kerning first=93 second=365 amount=-1 -kerning first=1168 second=1066 amount=-5 -kerning first=1117 second=8221 amount=-3 -kerning first=376 second=1099 amount=-3 -kerning first=34 second=74 amount=-4 -kerning first=973 second=943 amount=-1 -kerning first=1027 second=252 amount=-1 -kerning first=172 second=224 amount=-1 -kerning first=282 second=354 amount=-5 -kerning first=8220 second=1044 amount=-3 -kerning first=8230 second=67 amount=-1 -kerning first=191 second=1184 amount=-5 -kerning first=194 second=366 amount=-2 -kerning first=306 second=970 amount=-1 -kerning first=311 second=279 amount=-2 -kerning first=77 second=171 amount=-3 -kerning first=338 second=213 amount=-2 -kerning first=926 second=103 amount=-1 -kerning first=91 second=8217 amount=-3 -kerning first=240 second=225 amount=-1 -kerning first=363 second=115 amount=-1 -kerning first=955 second=267 amount=-1 -kerning first=260 second=367 amount=-1 -kerning first=257 second=1185 amount=-1 -kerning first=35 second=249 amount=-1 -kerning first=8240 second=242 amount=-1 -kerning first=316 second=226 amount=-1 -kerning first=81 second=88 amount=-3 -kerning first=928 second=281 amount=-1 -kerning first=121 second=1241 amount=-1 -kerning first=124 second=187 amount=-1 -kerning first=258 second=8220 amount=-3 -kerning first=1039 second=117 amount=-1 -kerning first=175 second=1079 amount=-1 -kerning first=182 second=89 amount=-5 -kerning first=1036 second=357 amount=-1 -kerning first=56 second=1098 amount=-3 -kerning first=59 second=339 amount=-1 -kerning first=62 second=101 amount=-1 -kerning first=202 second=251 amount=-1 -kerning first=8364 second=332 amount=-2 -kerning first=79 second=955 amount=-2 -kerning first=337 second=8221 amount=-1 -kerning first=1195 second=118 amount=-1 -kerning first=958 second=1194 amount=-2 -kerning first=962 second=370 amount=-2 -kerning first=37 second=1118 amount=-1 -kerning first=40 second=354 amount=-5 -kerning first=183 second=266 amount=-2 -kerning first=186 second=39 amount=-3 -kerning first=63 second=279 amount=-1 -kerning first=60 second=970 amount=-1 -kerning first=8365 second=963 amount=-1 -kerning first=8370 second=271 amount=-1 -kerning first=86 second=213 amount=-2 -kerning first=1103 second=1195 amount=-1 -kerning first=934 second=1257 amount=-1 -kerning first=249 second=267 amount=-1 -kerning first=8212 second=120 amount=-2 -kerning first=41 second=1038 amount=-2 -kerning first=1048 second=242 amount=-1 -kerning first=296 second=1101 amount=-1 -kerning first=1080 second=1240 amount=-2 -kerning first=207 second=356 amount=-5 -kerning first=327 second=268 amount=-2 -kerning first=8378 second=219 amount=-2 -kerning first=1168 second=81 amount=-2 -kerning first=1207 second=243 amount=-1 -kerning first=166 second=227 amount=-1 -kerning first=276 second=357 amount=-1 -kerning first=188 second=369 amount=-1 -kerning first=300 second=973 amount=-1 -kerning first=68 second=381 amount=-1 -kerning first=1085 second=332 amount=-2 -kerning first=357 second=118 amount=-4 -kerning first=114 second=240 amount=-1 -kerning first=251 second=1194 amount=-2 -kerning first=254 second=370 amount=-2 -kerning first=374 second=974 amount=-4 -kerning first=377 second=283 amount=-1 -kerning first=164 second=1256 amount=-2 -kerning first=8221 second=245 amount=-1 -kerning first=195 second=79 amount=-2 -kerning first=1087 second=963 amount=-1 -kerning first=1095 second=271 amount=-1 -kerning first=330 second=1195 amount=-1 -kerning first=912 second=286 amount=-2 -kerning first=95 second=253 amount=-1 -kerning first=908 second=1026 amount=-2 -kerning first=1224 second=346 amount=-1 -kerning first=1026 second=360 amount=-2 -kerning first=50 second=1101 amount=-1 -kerning first=1067 second=287 amount=-1 -kerning first=193 second=945 amount=-1 -kerning first=305 second=1262 amount=-2 -kerning first=310 second=1240 amount=-3 -kerning first=8361 second=97 amount=-1 -kerning first=76 second=268 amount=-1 -kerning first=1099 second=219 amount=-2 -kerning first=923 second=231 amount=-1 -kerning first=1176 second=361 amount=-1 -kerning first=1263 second=288 amount=-2 -kerning first=37 second=117 amount=-1 -kerning first=176 second=269 amount=-1 -kerning first=54 second=973 amount=-1 -kerning first=1071 second=232 amount=-1 -kerning first=315 second=332 amount=-1 -kerning first=80 second=216 amount=-2 -kerning first=223 second=106 amount=1 -kerning first=103 second=118 amount=-4 -kerning first=240 second=962 amount=-1 -kerning first=366 second=193 amount=-2 -kerning first=963 second=83 amount=-1 -kerning first=123 second=283 amount=-1 -kerning first=120 second=974 amount=-1 -kerning first=41 second=67 amount=-2 -kerning first=180 second=217 amount=-2 -kerning first=8260 second=290 amount=-2 -kerning first=61 second=229 amount=-1 -kerning first=204 second=119 amount=-4 -kerning first=201 second=359 amount=-1 -kerning first=316 second=963 amount=-1 -kerning first=321 second=271 amount=-1 -kerning first=78 second=1195 amount=-1 -kerning first=936 second=334 amount=-2 -kerning first=928 second=1090 amount=-3 -kerning first=247 second=218 amount=-2 -kerning first=367 second=346 amount=-1 -kerning first=160 second=230 amount=-1 -kerning first=266 second=1174 amount=-2 -kerning first=42 second=242 amount=-1 -kerning first=39 second=923 amount=-3 -kerning first=178 second=947 amount=-4 -kerning first=182 second=372 amount=-5 -kerning first=297 second=287 amount=-1 -kerning first=62 second=1240 amount=-2 -kerning first=59 second=1262 amount=-2 -kerning first=1078 second=335 amount=-2 -kerning first=1081 second=97 amount=-1 -kerning first=325 second=219 amount=-2 -kerning first=900 second=347 amount=-1 -kerning first=88 second=81 amount=-3 -kerning first=1118 second=34 amount=-3 -kerning first=108 second=243 amount=-1 -kerning first=248 second=373 amount=-1 -kerning first=371 second=288 amount=-2 -kerning first=125 second=1263 amount=-1 -kerning first=301 second=232 amount=-1 -kerning first=1083 second=275 amount=-1 -kerning first=209 second=244 amount=-1 -kerning first=904 second=289 amount=-1 -kerning first=89 second=256 amount=-5 -kerning first=946 second=221 amount=-5 -kerning first=1219 second=111 amount=-1 -kerning first=246 second=8230 amount=-1 -kerning first=255 second=83 amount=-1 -kerning first=375 second=233 amount=-1 -kerning first=165 second=333 amount=-1 -kerning first=278 second=245 amount=-1 -kerning first=47 second=345 amount=-1 -kerning first=190 second=257 amount=-1 -kerning first=70 second=271 amount=-1 -kerning first=213 second=194 amount=-2 -kerning first=334 second=84 amount=-2 -kerning first=910 second=234 amount=-4 -kerning first=1168 second=364 amount=-2 -kerning first=230 second=1090 amount=-1 -kerning first=356 second=246 amount=-3 -kerning first=948 second=376 amount=-5 -kerning first=113 second=346 amount=-1 -kerning first=1220 second=291 amount=-1 -kerning first=967 second=8212 amount=-2 -kerning first=169 second=273 amount=-1 -kerning first=172 second=45 amount=-2 -kerning first=166 second=964 amount=-3 -kerning first=8224 second=113 amount=-1 -kerning first=8220 second=353 amount=-1 -kerning first=51 second=287 amount=-1 -kerning first=54 second=57 amount=-1 -kerning first=1065 second=235 amount=-1 -kerning first=306 second=335 amount=-1 -kerning first=311 second=97 amount=-1 -kerning first=74 second=219 amount=-2 -kerning first=214 second=347 amount=-1 -kerning first=338 second=34 amount=-3 -kerning first=94 second=361 amount=-1 -kerning first=1118 second=8216 amount=-3 -kerning first=360 second=196 amount=-2 -kerning first=117 second=288 amount=-2 -kerning first=174 second=220 amount=-2 -kerning first=55 second=232 amount=-1 -kerning first=195 second=362 amount=-2 -kerning first=192 second=1176 amount=-1 -kerning first=313 second=275 amount=-1 -kerning first=928 second=99 amount=-1 -kerning first=1175 second=940 amount=-1 -kerning first=361 second=351 amount=-1 -kerning first=956 second=261 amount=-1 -kerning first=121 second=233 amount=-1 -kerning first=258 second=1177 amount=-1 -kerning first=36 second=245 amount=-1 -kerning first=175 second=375 amount=-1 -kerning first=289 second=290 amount=-2 -kerning first=193 second=8211 amount=-2 -kerning first=1074 second=100 amount=-1 -kerning first=923 second=968 amount=-1 -kerning first=931 second=277 amount=-1 -kerning first=102 second=246 amount=-1 -kerning first=1186 second=199 amount=-1 -kerning first=365 second=291 amount=-1 -kerning first=962 second=211 amount=-2 -kerning first=1263 second=1098 amount=-3 -kerning first=1037 second=353 amount=-1 -kerning first=1041 second=113 amount=-1 -kerning first=172 second=8249 amount=-3 -kerning first=183 second=85 amount=-2 -kerning first=60 second=335 amount=-1 -kerning first=63 second=97 amount=-1 -kerning first=86 second=34 amount=-3 -kerning first=338 second=8216 amount=-3 -kerning first=1184 second=1118 amount=-2 -kerning first=240 second=8250 amount=-1 -kerning first=960 second=1184 amount=-5 -kerning first=963 second=366 amount=-2 -kerning first=126 second=336 amount=-2 -kerning first=271 second=248 amount=-1 -kerning first=41 second=350 amount=-1 -kerning first=67 second=47 amount=-1 -kerning first=61 second=966 amount=-1 -kerning first=64 second=275 amount=-1 -kerning first=1080 second=225 amount=-1 -kerning first=327 second=87 amount=-5 -kerning first=8372 second=267 amount=-1 -kerning first=1106 second=1185 amount=-1 -kerning first=345 second=940 amount=-1 -kerning first=107 second=351 amount=-1 -kerning first=250 second=261 amount=-1 -kerning first=247 second=953 amount=-1 -kerning first=961 second=8218 amount=-1 -kerning first=188 second=210 amount=-2 -kerning first=300 second=338 amount=-2 -kerning first=303 second=100 amount=-1 -kerning first=903 second=1241 amount=-1 -kerning first=906 second=187 amount=-1 -kerning first=354 second=199 amount=-1 -kerning first=942 second=1079 amount=-1 -kerning first=108 second=1035 amount=-5 -kerning first=254 second=211 amount=-2 -kerning first=371 second=1098 amount=-3 -kerning first=374 second=339 amount=-4 -kerning first=377 second=101 amount=-1 -kerning first=971 second=251 amount=-1 -kerning first=280 second=113 amount=-1 -kerning first=49 second=235 amount=-1 -kerning first=189 second=365 amount=-1 -kerning first=8377 second=1194 amount=-2 -kerning first=86 second=8216 amount=-3 -kerning first=1119 second=943 amount=-1 -kerning first=1170 second=252 amount=-1 -kerning first=950 second=266 amount=-2 -kerning first=252 second=1184 amount=-5 -kerning first=255 second=366 amount=-2 -kerning first=375 second=970 amount=-1 -kerning first=378 second=279 amount=-1 -kerning first=8218 second=920 amount=-1 -kerning first=1067 second=103 amount=-1 -kerning first=310 second=225 amount=-1 -kerning first=76 second=87 amount=-4 -kerning first=1096 second=267 amount=-1 -kerning first=331 second=1185 amount=-1 -kerning first=93 second=940 amount=-1 -kerning first=96 second=249 amount=-1 -kerning first=1220 second=1101 amount=-1 -kerning first=34 second=198 amount=-3 -kerning first=1027 second=356 amount=-5 -kerning first=54 second=338 amount=-2 -kerning first=57 second=100 amount=-1 -kerning first=197 second=250 amount=-1 -kerning first=194 second=941 amount=-1 -kerning first=1065 second=972 amount=-1 -kerning first=77 second=262 amount=-2 -kerning first=926 second=227 amount=-1 -kerning first=100 second=199 amount=-2 -kerning first=1184 second=117 amount=-1 -kerning first=237 second=1079 amount=-1 -kerning first=955 second=369 amount=-1 -kerning first=117 second=1098 amount=-3 -kerning first=120 second=339 amount=-2 -kerning first=123 second=101 amount=-1 -kerning first=38 second=113 amount=-1 -kerning first=35 second=353 amount=-1 -kerning first=177 second=263 amount=-1 -kerning first=8260 second=106 amount=1 -kerning first=1073 second=228 amount=-1 -kerning first=224 second=102 amount=-1 -kerning first=247 second=39 amount=-3 -kerning first=964 second=79 amount=-2 -kerning first=121 second=970 amount=-1 -kerning first=124 second=279 amount=-1 -kerning first=1036 second=920 amount=-3 -kerning first=182 second=213 amount=-2 -kerning first=297 second=103 amount=-1 -kerning first=8249 second=1026 amount=-1 -kerning first=62 second=225 amount=-1 -kerning first=202 second=355 amount=-1 -kerning first=205 second=115 amount=-1 -kerning first=322 second=267 amount=-1 -kerning first=8369 second=218 amount=-2 -kerning first=365 second=1101 amount=-1 -kerning first=962 second=945 amount=-1 -kerning first=161 second=226 amount=-1 -kerning first=270 second=356 amount=-2 -kerning first=274 second=116 amount=-1 -kerning first=183 second=368 amount=-2 -kerning first=298 second=281 amount=-1 -kerning first=8370 second=373 amount=-4 -kerning first=80 second=8220 amount=-3 -kerning first=249 second=369 amount=-1 -kerning first=369 second=973 amount=-1 -kerning first=184 second=1066 amount=-5 -kerning first=180 second=8221 amount=-3 -kerning first=302 second=228 amount=-1 -kerning first=1080 second=962 amount=-1 -kerning first=327 second=370 amount=-2 -kerning first=905 second=283 amount=-1 -kerning first=230 second=382 amount=-1 -kerning first=356 second=67 amount=-1 -kerning first=948 second=217 amount=-2 -kerning first=256 second=79 amount=-2 -kerning first=376 second=229 amount=-4 -kerning first=973 second=119 amount=-4 -kerning first=276 second=920 amount=-2 -kerning first=8220 second=194 amount=-3 -kerning first=51 second=103 amount=-1 -kerning first=1049 second=1026 amount=-5 -kerning first=1062 second=286 amount=-1 -kerning first=191 second=253 amount=-1 -kerning first=300 second=1257 amount=-1 -kerning first=354 second=923 amount=-6 -kerning first=357 second=242 amount=-1 -kerning first=945 second=947 amount=-2 -kerning first=1223 second=287 amount=-1 -kerning first=254 second=945 amount=-1 -kerning first=377 second=1240 amount=-1 -kerning first=170 second=268 amount=-2 -kerning first=8217 second=1108 amount=-1 -kerning first=8221 second=347 amount=-1 -kerning first=49 second=972 amount=-1 -kerning first=52 second=281 amount=-1 -kerning first=1095 second=373 amount=-4 -kerning first=95 second=357 amount=-1 -kerning first=238 second=269 amount=-1 -kerning first=381 second=332 amount=-1 -kerning first=175 second=216 amount=-2 -kerning first=289 second=106 amount=1 -kerning first=8226 second=289 amount=-1 -kerning first=56 second=228 amount=-1 -kerning first=310 second=962 amount=-2 -kerning first=8361 second=221 amount=-5 -kerning first=73 second=1194 amount=-2 -kerning first=76 second=370 amount=-1 -kerning first=1090 second=8230 amount=-3 -kerning first=923 second=333 amount=-1 -kerning first=1179 second=245 amount=-1 -kerning first=958 second=257 amount=-1 -kerning first=954 second=949 amount=-2 -kerning first=267 second=119 amount=-1 -kerning first=382 second=963 amount=-1 -kerning first=172 second=1195 amount=-1 -kerning first=176 second=371 amount=-1 -kerning first=287 second=1026 amount=-5 -kerning first=54 second=1257 amount=-1 -kerning first=1068 second=1090 amount=-2 -kerning first=1071 second=334 amount=-2 -kerning first=318 second=218 amount=-2 -kerning first=223 second=230 amount=-1 -kerning first=934 second=273 amount=-1 -kerning first=926 second=964 amount=-3 -kerning first=103 second=242 amount=-1 -kerning first=240 second=947 amount=-4 -kerning first=123 second=1240 amount=-2 -kerning first=1035 second=1108 amount=-1 -kerning first=177 second=1069 amount=-1 -kerning first=184 second=81 amount=-2 -kerning first=296 second=231 amount=-1 -kerning first=1073 second=965 amount=-1 -kerning first=204 second=243 amount=-1 -kerning first=321 second=373 amount=-4 -kerning first=221 second=1263 amount=-2 -kerning first=964 second=362 amount=-2 -kerning first=160 second=332 amount=-2 -kerning first=273 second=244 amount=-1 -kerning first=62 second=962 amount=-1 -kerning first=1081 second=221 amount=-5 -kerning first=208 second=193 amount=-2 -kerning first=8369 second=953 amount=-1 -kerning first=903 second=233 amount=-1 -kerning first=942 second=375 amount=-1 -kerning first=251 second=257 amount=-1 -kerning first=962 second=8211 amount=-2 -kerning first=161 second=963 amount=-1 -kerning first=164 second=271 amount=-1 -kerning first=8211 second=352 amount=-1 -kerning first=43 second=1026 amount=-5 -kerning first=1051 second=234 amount=-1 -kerning first=46 second=286 amount=-1 -kerning first=298 second=1090 amount=-3 -kerning first=301 second=334 amount=-2 -kerning first=69 second=218 amount=-2 -kerning first=1083 second=376 amount=-5 -kerning first=209 second=346 amount=-1 -kerning first=229 second=964 amount=-1 -kerning first=950 second=85 amount=-2 -kerning first=1219 second=235 amount=-1 -kerning first=372 second=1094 amount=-2 -kerning first=375 second=335 amount=-1 -kerning first=168 second=219 amount=-2 -kerning first=278 second=347 amount=-1 -kerning first=50 second=231 amount=-1 -kerning first=187 second=1175 amount=-2 -kerning first=190 second=361 amount=-1 -kerning first=302 second=965 amount=-1 -kerning first=193 second=121 amount=-1 -kerning first=70 second=373 amount=-4 -kerning first=1080 second=8250 amount=-1 -kerning first=67 second=1202 amount=-2 -kerning first=8378 second=1184 amount=-5 -kerning first=910 second=336 amount=-3 -kerning first=1171 second=248 amount=-1 -kerning first=236 second=220 amount=-2 -kerning first=356 second=350 amount=-1 -kerning first=253 second=1176 amount=-1 -kerning first=256 second=362 amount=-2 -kerning first=376 second=966 amount=-4 -kerning first=379 second=275 amount=-1 -kerning first=169 second=374 amount=-5 -kerning first=282 second=289 amount=-1 -kerning first=1065 second=337 amount=-1 -kerning first=197 second=71 amount=-2 -kerning first=68 second=8230 amount=-1 -kerning first=77 second=83 amount=-1 -kerning first=237 second=375 amount=-1 -kerning first=955 second=210 amount=-2 -kerning first=254 second=8211 amount=-2 -kerning first=1298 second=100 amount=-1 -kerning first=177 second=84 amount=-5 -kerning first=8225 second=1241 amount=-1 -kerning first=8240 second=187 amount=-1 -kerning first=55 second=334 amount=-2 -kerning first=52 second=1090 amount=-3 -kerning first=198 second=246 amount=-1 -kerning first=313 second=376 amount=-6 -kerning first=8363 second=89 amount=-5 -kerning first=1185 second=113 amount=-2 -kerning first=956 second=365 amount=-1 -kerning first=121 second=335 amount=-1 -kerning first=124 second=97 amount=-1 -kerning first=1240 second=377 amount=-1 -kerning first=36 second=347 amount=-1 -kerning first=178 second=259 amount=-1 -kerning first=182 second=34 amount=-3 -kerning first=56 second=965 amount=-1 -kerning first=1074 second=224 amount=-1 -kerning first=310 second=8250 amount=-2 -kerning first=8364 second=266 amount=-2 -kerning first=8369 second=39 amount=-3 -kerning first=1099 second=1184 amount=-5 -kerning first=343 second=248 amount=-1 -kerning first=1195 second=63 amount=-1 -kerning first=125 second=275 amount=-1 -kerning first=122 second=966 amount=-1 -kerning first=270 second=197 amount=-2 -kerning first=40 second=289 amount=-1 -kerning first=298 second=99 amount=-1 -kerning first=63 second=221 amount=-5 -kerning first=203 second=351 amount=-1 -kerning first=206 second=111 amount=-1 -kerning first=318 second=953 amount=-1 -kerning first=323 second=261 amount=-1 -kerning first=8370 second=214 amount=-2 -kerning first=80 second=1177 amount=-1 -kerning first=249 second=210 amount=-2 -kerning first=369 second=338 amount=-2 -kerning first=372 second=100 amount=-3 -kerning first=963 second=941 amount=-1 -kerning first=271 second=352 amount=-1 -kerning first=8212 second=65 amount=-2 -kerning first=1044 second=1241 amount=-1 -kerning first=1048 second=187 amount=-1 -kerning first=184 second=364 amount=-2 -kerning first=296 second=968 amount=-1 -kerning first=299 second=277 amount=-1 -kerning first=64 second=376 amount=-5 -kerning first=204 second=1035 amount=-5 -kerning first=207 second=291 amount=-1 -kerning first=1084 second=89 amount=-5 -kerning first=327 second=211 amount=-2 -kerning first=8372 second=369 amount=-1 -kerning first=902 second=339 amount=-1 -kerning first=905 second=101 amount=-1 -kerning first=1117 second=251 amount=-1 -kerning first=941 second=955 amount=-1 -kerning first=944 second=263 amount=-1 -kerning first=250 second=365 amount=-1 -kerning first=8216 second=240 amount=-1 -kerning first=182 second=8216 amount=-3 -kerning first=303 second=224 amount=-1 -kerning first=62 second=8250 amount=-1 -kerning first=71 second=86 amount=-2 -kerning first=1085 second=266 amount=-2 -kerning first=325 second=1184 amount=-5 -kerning first=906 second=279 amount=-1 -kerning first=903 second=970 amount=-1 -kerning first=91 second=248 amount=-1 -kerning first=1223 second=103 amount=-1 -kerning first=248 second=8217 amount=-1 -kerning first=971 second=355 amount=-1 -kerning first=170 second=87 amount=-5 -kerning first=49 second=337 amount=-1 -kerning first=52 second=99 amount=-1 -kerning first=189 second=940 amount=-1 -kerning first=192 second=249 amount=-1 -kerning first=69 second=953 amount=-1 -kerning first=72 second=261 amount=-1 -kerning first=1095 second=214 amount=-2 -kerning first=912 second=226 amount=-1 -kerning first=1170 second=356 amount=-5 -kerning first=232 second=1078 amount=-2 -kerning first=950 second=368 amount=-2 -kerning first=118 second=100 amount=-1 -kerning first=1219 second=972 amount=-1 -kerning first=258 second=250 amount=-1 -kerning first=255 second=941 amount=-1 -kerning first=1224 second=281 amount=-1 -kerning first=1033 second=65 amount=-1 -kerning first=50 second=968 amount=-1 -kerning first=53 second=277 amount=-1 -kerning first=1067 second=227 amount=-1 -kerning first=196 second=199 amount=-2 -kerning first=305 second=1079 amount=-1 -kerning first=314 second=89 amount=-5 -kerning first=76 second=211 amount=-1 -kerning first=1096 second=369 amount=-1 -kerning first=910 second=1224 amount=-3 -kerning first=96 second=353 amount=-1 -kerning first=239 second=263 amount=-1 -kerning first=951 second=1066 amount=-5 -kerning first=948 second=8221 amount=-3 -kerning first=1263 second=228 amount=-1 -kerning first=176 second=212 amount=-2 -kerning first=57 second=224 amount=-1 -kerning first=1065 second=1256 amount=-1 -kerning first=197 second=354 amount=-5 -kerning first=194 second=1118 amount=-1 -kerning first=315 second=266 amount=-1 -kerning first=318 second=39 amount=-3 -kerning first=74 second=1184 amount=-5 -kerning first=77 second=366 amount=-2 -kerning first=1103 second=79 amount=-2 -kerning first=103 second=63 amount=-1 -kerning first=960 second=253 amount=-1 -kerning first=123 second=225 amount=-1 -kerning first=177 second=367 amount=-1 -kerning first=174 second=1185 amount=-3 -kerning first=8260 second=230 amount=-1 -kerning first=198 second=1038 amount=-2 -kerning first=321 second=214 amount=-2 -kerning first=8363 second=372 amount=-5 -kerning first=936 second=268 amount=-2 -kerning first=367 second=281 amount=-1 -kerning first=42 second=187 amount=-1 -kerning first=39 second=1241 amount=-1 -kerning first=175 second=8220 amount=-3 -kerning first=297 second=227 amount=-1 -kerning first=65 second=89 amount=-5 -kerning first=59 second=1079 amount=-1 -kerning first=1078 second=269 amount=-2 -kerning first=322 second=369 amount=-1 -kerning first=942 second=216 amount=-2 -kerning first=242 second=8221 amount=-1 -kerning first=371 second=228 amount=-1 -kerning first=968 second=118 amount=-4 -kerning first=270 second=916 amount=-2 -kerning first=274 second=240 amount=-1 -kerning first=8211 second=193 amount=-2 -kerning first=46 second=102 amount=-2 -kerning first=183 second=943 amount=-1 -kerning first=186 second=252 amount=-1 -kerning first=69 second=39 amount=-3 -kerning first=1083 second=217 amount=-2 -kerning first=330 second=79 amount=-2 -kerning first=8370 second=949 amount=-1 -kerning first=904 second=229 amount=-1 -kerning first=8377 second=257 amount=-1 -kerning first=1119 second=119 amount=-4 -kerning first=1206 second=286 amount=-1 -kerning first=252 second=253 amount=-1 -kerning first=369 second=1257 amount=-1 -kerning first=165 second=267 amount=-1 -kerning first=8212 second=346 amount=-1 -kerning first=70 second=214 amount=-1 -kerning first=1080 second=947 amount=-4 -kerning first=1084 second=372 amount=-5 -kerning first=207 second=1101 amount=-1 -kerning first=327 second=945 amount=-1 -kerning first=902 second=1262 amount=-2 -kerning first=905 second=1240 amount=-2 -kerning first=93 second=116 amount=-1 -kerning first=944 second=1069 amount=-1 -kerning first=951 second=81 amount=-2 -kerning first=113 second=281 amount=-1 -kerning first=1220 second=231 amount=-1 -kerning first=376 second=331 amount=-3 -kerning first=973 second=243 amount=-1 -kerning first=51 second=227 amount=-1 -kerning first=1049 second=1263 amount=-1 -kerning first=191 second=357 amount=-1 -kerning first=194 second=117 amount=-1 -kerning first=306 second=269 amount=-1 -kerning first=1174 second=244 amount=-1 -kerning first=237 second=216 amount=-2 -kerning first=117 second=228 amount=-1 -kerning first=260 second=118 amount=-4 -kerning first=377 second=962 amount=-1 -kerning first=1028 second=193 amount=-1 -kerning first=167 second=1194 amount=-2 -kerning first=170 second=370 amount=-2 -kerning first=8225 second=233 amount=-1 -kerning first=49 second=1256 amount=-2 -kerning first=198 second=67 amount=-2 -kerning first=313 second=217 amount=-1 -kerning first=78 second=79 amount=-2 -kerning first=1095 second=949 amount=-1 -kerning first=339 second=119 amount=-1 -kerning first=912 second=963 amount=-1 -kerning first=95 second=920 amount=-2 -kerning first=238 second=371 amount=-1 -kerning first=358 second=1026 amount=-5 -kerning first=361 second=286 amount=-2 -kerning first=1224 second=1090 amount=-3 -kerning first=289 second=230 amount=-1 -kerning first=1067 second=964 amount=-3 -kerning first=1074 second=45 amount=-2 -kerning first=314 second=372 amount=-5 -kerning first=310 second=947 amount=-3 -kerning first=8364 second=85 amount=-2 -kerning first=76 second=945 amount=-1 -kerning first=931 second=219 amount=-2 -kerning first=1176 second=1108 amount=-1 -kerning first=239 second=1069 amount=-1 -kerning first=365 second=231 amount=-1 -kerning first=958 second=361 amount=-1 -kerning first=962 second=121 amount=-1 -kerning first=1263 second=965 amount=-1 -kerning first=1037 second=288 amount=-2 -kerning first=287 second=1263 amount=-1 -kerning first=60 second=269 amount=-1 -kerning first=1103 second=362 amount=-2 -kerning first=223 second=332 amount=-2 -kerning first=934 second=374 amount=-5 -kerning first=106 second=106 amount=7 -kerning first=123 second=962 amount=-1 -kerning first=41 second=283 amount=-1 -kerning first=44 second=55 amount=-1 -kerning first=1044 second=233 amount=-1 -kerning first=296 second=333 amount=-1 -kerning first=64 second=217 amount=-2 -kerning first=321 second=949 amount=-1 -kerning first=8372 second=210 amount=-2 -kerning first=87 second=119 amount=-1 -kerning first=230 second=44 amount=-1 -kerning first=350 second=194 amount=-1 -kerning first=944 second=84 amount=-5 -kerning first=1202 second=234 amount=-1 -kerning first=367 second=1090 amount=-3 -kerning first=967 second=246 amount=-1 -kerning first=163 second=218 amount=-2 -kerning first=273 second=346 amount=-1 -kerning first=185 second=360 amount=-2 -kerning first=303 second=45 amount=-2 -kerning first=300 second=273 amount=-1 -kerning first=297 second=964 amount=-3 -kerning first=62 second=947 amount=-4 -kerning first=65 second=372 amount=-5 -kerning first=1074 second=8249 amount=-3 -kerning first=1085 second=85 amount=-2 -kerning first=903 second=335 amount=-1 -kerning first=906 second=97 amount=-1 -kerning first=354 second=109 amount=-2 -kerning first=949 second=34 amount=-1 -kerning first=248 second=1175 amount=-2 -kerning first=251 second=361 amount=-1 -kerning first=254 second=121 amount=-1 -kerning first=371 second=965 amount=-1 -kerning first=164 second=373 amount=-4 -kerning first=274 second=1028 amount=-2 -kerning first=43 second=1263 amount=-1 -kerning first=1051 second=336 amount=-2 -kerning first=304 second=220 amount=-2 -kerning first=330 second=362 amount=-2 -kerning first=8370 second=8217 amount=-3 -kerning first=333 second=122 amount=-1 -kerning first=904 second=966 amount=-1 -kerning first=92 second=244 amount=-1 -kerning first=1219 second=337 amount=-1 -kerning first=1224 second=99 amount=-1 -kerning first=258 second=71 amount=-2 -kerning first=1026 second=111 amount=-1 -kerning first=47 second=1087 amount=-1 -kerning first=50 second=333 amount=-1 -kerning first=193 second=245 amount=-1 -kerning first=305 second=375 amount=-1 -kerning first=70 second=949 amount=-1 -kerning first=73 second=257 amount=-1 -kerning first=1096 second=210 amount=-2 -kerning first=327 second=8211 amount=-2 -kerning first=1171 second=352 amount=-1 -kerning first=239 second=84 amount=-5 -kerning first=951 second=364 amount=-2 -kerning first=113 second=1090 amount=-3 -kerning first=1220 second=968 amount=-1 -kerning first=973 second=1035 amount=-5 -kerning first=1027 second=291 amount=-1 -kerning first=8224 second=339 amount=-1 -kerning first=54 second=273 amount=-1 -kerning first=57 second=45 amount=-2 -kerning first=51 second=964 amount=-3 -kerning first=303 second=8249 amount=-3 -kerning first=315 second=85 amount=-1 -kerning first=94 second=1108 amount=-1 -kerning first=240 second=259 amount=-1 -kerning first=243 second=34 amount=-1 -kerning first=949 second=8216 amount=-1 -kerning first=117 second=965 amount=-1 -kerning first=1298 second=224 amount=-1 -kerning first=35 second=288 amount=-2 -kerning first=8225 second=970 amount=-1 -kerning first=8240 second=279 amount=-1 -kerning first=58 second=220 amount=-2 -kerning first=1073 second=171 amount=-3 -kerning first=198 second=350 amount=-1 -kerning first=8363 second=213 amount=-2 -kerning first=78 second=362 amount=-2 -kerning first=1095 second=8217 amount=-3 -kerning first=75 second=1176 amount=-2 -kerning first=221 second=275 amount=-4 -kerning first=936 second=87 amount=-5 -kerning first=367 second=99 amount=-1 -kerning first=956 second=940 amount=-1 -kerning first=124 second=221 amount=-5 -kerning first=39 second=233 amount=-1 -kerning first=178 second=363 amount=-1 -kerning first=175 second=1177 amount=-1 -kerning first=59 second=375 amount=-1 -kerning first=202 second=290 amount=-2 -kerning first=322 second=210 amount=-2 -kerning first=8364 second=368 amount=-2 -kerning first=900 second=100 amount=-1 -kerning first=76 second=8211 amount=-3 -kerning first=79 second=1051 amount=-1 -kerning first=105 second=234 amount=-1 -kerning first=1186 second=1241 amount=-1 -kerning first=365 second=968 amount=-1 -kerning first=965 second=199 amount=-2 -kerning first=125 second=376 amount=-5 -kerning first=1041 second=339 amount=-1 -kerning first=176 second=8212 amount=-2 -kerning first=179 second=1059 amount=-2 -kerning first=1037 second=1098 amount=-3 -kerning first=57 second=8249 amount=-3 -kerning first=1075 second=955 amount=-4 -kerning first=206 second=235 amount=-1 -kerning first=323 second=365 amount=-1 -kerning first=8365 second=1066 amount=-5 -kerning first=243 second=8216 amount=-1 -kerning first=372 second=224 amount=-2 -kerning first=963 second=1118 amount=-1 -kerning first=123 second=8250 amount=-1 -kerning first=44 second=336 amount=-1 -kerning first=1048 second=279 amount=-1 -kerning first=302 second=171 amount=-3 -kerning first=67 second=260 amount=-1 -kerning first=1084 second=213 amount=-2 -kerning first=321 second=8217 amount=-3 -kerning first=8378 second=253 amount=-1 -kerning first=905 second=225 amount=-1 -kerning first=1117 second=355 amount=-1 -kerning first=1168 second=115 amount=-1 -kerning first=944 second=367 amount=-1 -kerning first=113 second=99 amount=-1 -kerning first=253 second=249 amount=-1 -kerning first=250 second=940 amount=-1 -kerning first=967 second=1038 amount=-2 -kerning first=166 second=261 amount=-1 -kerning first=163 second=953 amount=-1 -kerning first=1085 second=368 amount=-2 -kerning first=214 second=100 amount=-1 -kerning first=91 second=352 amount=-1 -kerning first=357 second=187 amount=-1 -kerning first=354 second=1241 amount=-3 -kerning first=942 second=8220 amount=-3 -kerning first=114 second=277 amount=-1 -kerning first=1223 second=227 amount=-1 -kerning first=374 second=1079 amount=-4 -kerning first=170 second=211 amount=-2 -kerning first=277 second=1098 amount=-1 -kerning first=280 second=339 amount=-1 -kerning first=192 second=353 amount=-1 -kerning first=195 second=113 amount=-1 -kerning first=72 second=365 amount=-1 -kerning first=1083 second=8221 amount=-3 -kerning first=1087 second=1066 amount=-5 -kerning first=920 second=90 amount=-1 -kerning first=1175 second=240 amount=-1 -kerning first=238 second=212 amount=-2 -kerning first=950 second=943 amount=-1 -kerning first=118 second=224 amount=-1 -kerning first=1219 second=1256 amount=-2 -kerning first=258 second=354 amount=-5 -kerning first=255 second=1118 amount=-1 -kerning first=381 second=266 amount=-1 -kerning first=168 second=1184 amount=-5 -kerning first=8226 second=229 amount=-1 -kerning first=56 second=171 amount=-3 -kerning first=314 second=213 amount=-2 -kerning first=70 second=8217 amount=-3 -kerning first=1099 second=253 amount=-1 -kerning first=923 second=267 amount=-1 -kerning first=239 second=367 amount=-1 -kerning first=236 second=1185 amount=-3 -kerning first=1027 second=1101 amount=-1 -kerning first=8224 second=1262 amount=-2 -kerning first=8230 second=1240 amount=-1 -kerning first=1071 second=268 amount=-2 -kerning first=315 second=368 amount=-1 -kerning first=8365 second=81 amount=-2 -kerning first=80 second=250 amount=-1 -kerning first=77 second=941 amount=-1 -kerning first=100 second=1241 amount=-1 -kerning first=103 second=187 amount=-1 -kerning first=237 second=8220 amount=-3 -kerning first=960 second=357 amount=-1 -kerning first=963 second=117 amount=-1 -kerning first=126 second=89 amount=-5 -kerning first=35 second=1098 amount=-3 -kerning first=38 second=339 amount=-1 -kerning first=1035 second=973 amount=-1 -kerning first=41 second=101 amount=-1 -kerning first=180 second=251 amount=-1 -kerning first=8260 second=332 amount=-2 -kerning first=61 second=263 amount=-1 -kerning first=313 second=8221 amount=-3 -kerning first=316 second=1066 amount=-5 -kerning first=221 second=1080 amount=-3 -kerning first=345 second=240 amount=-1 -kerning first=928 second=1194 amount=-2 -kerning first=936 second=370 amount=-2 -kerning first=247 second=252 amount=-1 -kerning first=967 second=67 amount=-2 -kerning first=160 second=266 amount=-2 -kerning first=163 second=39 amount=-3 -kerning first=1240 second=8222 amount=-1 -kerning first=45 second=51 amount=-2 -kerning first=42 second=279 amount=-1 -kerning first=1046 second=229 amount=-1 -kerning first=65 second=213 amount=-2 -kerning first=1074 second=1195 amount=-1 -kerning first=325 second=253 amount=-1 -kerning first=88 second=115 amount=-1 -kerning first=968 second=242 amount=-1 -kerning first=164 second=214 amount=-2 -kerning first=1041 second=1262 amount=-2 -kerning first=186 second=356 amount=-5 -kerning first=189 second=116 amount=-1 -kerning first=301 second=268 amount=-2 -kerning first=1087 second=81 amount=-2 -kerning first=206 second=972 amount=-1 -kerning first=209 second=281 amount=-1 -kerning first=8377 second=361 amount=-1 -kerning first=1119 second=243 amount=-1 -kerning first=252 second=357 amount=-1 -kerning first=255 second=117 amount=-1 -kerning first=375 second=269 amount=-1 -kerning first=165 second=369 amount=-1 -kerning first=305 second=216 amount=-2 -kerning first=64 second=8221 amount=-3 -kerning first=67 second=1066 amount=-1 -kerning first=905 second=962 amount=-1 -kerning first=93 second=240 amount=-1 -kerning first=356 second=283 amount=-3 -kerning first=1220 second=333 amount=-1 -kerning first=172 second=79 amount=-2 -kerning first=282 second=229 amount=-1 -kerning first=1062 second=963 amount=-1 -kerning first=191 second=920 amount=-2 -kerning first=1065 second=271 amount=-1 -kerning first=306 second=371 amount=-1 -kerning first=303 second=1195 amount=-1 -kerning first=74 second=253 amount=-1 -kerning first=332 second=1046 amount=-3 -kerning first=916 second=218 amount=-2 -kerning first=952 second=360 amount=-2 -kerning first=1223 second=964 amount=-3 -kerning first=1298 second=45 amount=-2 -kerning first=260 second=242 amount=-1 -kerning first=170 second=945 amount=-1 -kerning first=280 second=1262 amount=-2 -kerning first=8225 second=335 amount=-1 -kerning first=8240 second=97 amount=-1 -kerning first=55 second=268 amount=-2 -kerning first=316 second=81 amount=-2 -kerning first=8363 second=34 amount=-3 -kerning first=1178 second=288 amount=-1 -kerning first=358 second=1263 amount=-1 -kerning first=118 second=961 amount=-2 -kerning first=121 second=269 amount=-1 -kerning first=1299 second=220 amount=-2 -kerning first=1036 second=232 amount=-2 -kerning first=289 second=332 amount=-2 -kerning first=8226 second=966 amount=-1 -kerning first=59 second=216 amount=-2 -kerning first=1070 second=374 amount=-3 -kerning first=202 second=106 amount=1 -kerning first=102 second=283 amount=-1 -kerning first=1186 second=233 amount=-1 -kerning first=365 second=333 amount=-1 -kerning first=962 second=245 amount=-1 -kerning first=125 second=217 amount=-2 -kerning first=40 second=229 amount=-1 -kerning first=183 second=119 amount=-4 -kerning first=179 second=359 amount=-1 -kerning first=57 second=1195 amount=-1 -kerning first=60 second=371 amount=-1 -kerning first=200 second=1026 amount=-5 -kerning first=203 second=286 amount=-2 -kerning first=8365 second=364 amount=-2 -kerning first=80 second=1046 amount=-2 -kerning first=369 second=273 amount=-1 -kerning first=372 second=45 amount=-2 -kerning first=123 second=947 amount=-4 -kerning first=126 second=372 amount=-5 -kerning first=1298 second=8249 amount=-3 -kerning first=271 second=287 amount=-1 -kerning first=38 second=1262 amount=-2 -kerning first=41 second=1240 amount=-2 -kerning first=1048 second=97 amount=-1 -kerning first=1044 second=335 amount=-1 -kerning first=299 second=219 amount=-2 -kerning first=61 second=1069 amount=-1 -kerning first=1084 second=34 amount=-3 -kerning first=1080 second=259 amount=-1 -kerning first=207 second=231 amount=-1 -kerning first=8363 second=8216 amount=-3 -kerning first=327 second=121 amount=-1 -kerning first=87 second=243 amount=-3 -kerning first=227 second=373 amount=-1 -kerning first=1202 second=336 amount=-1 -kerning first=967 second=350 amount=-1 -kerning first=276 second=232 amount=-1 -kerning first=1046 second=966 amount=-2 -kerning first=1049 second=275 amount=-1 -kerning first=188 second=244 amount=-1 -kerning first=300 second=374 amount=-5 -kerning first=68 second=256 amount=-2 -kerning first=906 second=221 amount=-5 -kerning first=1118 second=351 amount=-1 -kerning first=1169 second=111 amount=-1 -kerning first=354 second=233 amount=-3 -kerning first=942 second=1177 amount=-1 -kerning first=254 second=245 amount=-1 -kerning first=374 second=375 amount=-2 -kerning first=971 second=290 amount=-2 -kerning first=164 second=949 amount=-1 -kerning first=167 second=257 amount=-1 -kerning first=8221 second=100 amount=-1 -kerning first=49 second=271 amount=-1 -kerning first=1087 second=364 amount=-2 -kerning first=209 second=1090 amount=-3 -kerning first=908 second=376 amount=-3 -kerning first=89 second=1107 amount=-3 -kerning first=92 second=346 amount=-1 -kerning first=1119 second=1035 amount=-5 -kerning first=1170 second=291 amount=-1 -kerning first=946 second=1059 amount=-2 -kerning first=112 second=964 amount=-1 -kerning first=118 second=45 amount=-1 -kerning first=372 second=8249 amount=-2 -kerning first=1026 second=235 amount=-1 -kerning first=53 second=219 amount=-2 -kerning first=190 second=1108 amount=-1 -kerning first=193 second=347 amount=-1 -kerning first=314 second=34 amount=-3 -kerning first=310 second=259 amount=-1 -kerning first=73 second=361 amount=-1 -kerning first=1084 second=8216 amount=-3 -kerning first=76 second=121 amount=-1 -kerning first=219 second=46 amount=-1 -kerning first=905 second=8250 amount=-1 -kerning first=923 second=86 amount=-6 -kerning first=93 second=1028 amount=-2 -kerning first=96 second=288 amount=-2 -kerning first=910 second=1075 amount=-3 -kerning first=954 second=248 amount=-2 -kerning first=1263 second=171 amount=-3 -kerning first=34 second=232 amount=-1 -kerning first=169 second=1176 amount=-1 -kerning first=172 second=362 amount=-2 -kerning first=282 second=966 amount=-1 -kerning first=287 second=275 amount=-1 -kerning first=54 second=374 amount=-5 -kerning first=1071 second=87 amount=-5 -kerning first=197 second=289 amount=-1 -kerning first=80 second=71 amount=-2 -kerning first=1097 second=940 amount=-1 -kerning first=338 second=351 amount=-1 -kerning first=341 second=111 amount=-1 -kerning first=926 second=261 amount=-1 -kerning first=916 second=953 amount=-1 -kerning first=100 second=233 amount=-1 -kerning first=237 second=1177 amount=-1 -kerning first=240 second=363 amount=-1 -kerning first=1257 second=1078 amount=-2 -kerning first=1035 second=338 amount=-2 -kerning first=170 second=8211 amount=-2 -kerning first=61 second=84 amount=-5 -kerning first=1073 second=262 amount=-2 -kerning first=201 second=234 amount=-1 -kerning first=316 second=364 amount=-2 -kerning first=936 second=211 amount=-2 -kerning first=1178 second=1098 amount=-2 -kerning first=238 second=8212 amount=-2 -kerning first=1185 second=339 amount=-2 -kerning first=964 second=113 amount=-1 -kerning first=118 second=8249 amount=-1 -kerning first=160 second=85 amount=-2 -kerning first=39 second=335 amount=-1 -kerning first=42 second=97 amount=-1 -kerning first=62 second=259 amount=-1 -kerning first=65 second=34 amount=-3 -kerning first=314 second=8216 amount=-3 -kerning first=8364 second=943 amount=-1 -kerning first=8369 second=252 amount=-1 -kerning first=900 second=224 amount=-1 -kerning first=85 second=196 amount=-2 -kerning first=931 second=1184 amount=-5 -kerning first=105 second=336 amount=-2 -kerning first=371 second=171 amount=-3 -kerning first=40 second=966 amount=-1 -kerning first=43 second=275 amount=-1 -kerning first=301 second=87 amount=-5 -kerning first=206 second=337 amount=-1 -kerning first=209 second=99 amount=-1 -kerning first=323 second=940 amount=-1 -kerning first=86 second=351 amount=-1 -kerning first=89 second=111 amount=-4 -kerning first=165 second=210 amount=-2 -kerning first=278 second=100 amount=-1 -kerning first=8218 second=53 amount=-1 -kerning first=187 second=352 amount=-1 -kerning first=302 second=262 amount=-2 -kerning first=207 second=968 amount=-1 -kerning first=8378 second=357 amount=-1 -kerning first=902 second=1079 amount=-1 -kerning first=356 second=101 amount=-3 -kerning first=948 second=251 amount=-1 -kerning first=256 second=113 amount=-1 -kerning first=253 second=353 amount=-1 -kerning first=373 second=955 amount=-4 -kerning first=376 second=263 amount=-4 -kerning first=166 second=365 amount=-1 -kerning first=8220 second=228 amount=-1 -kerning first=306 second=212 amount=-2 -kerning first=65 second=8216 amount=-3 -kerning first=1085 second=943 amount=-1 -kerning first=214 second=224 amount=-1 -kerning first=332 second=354 amount=-2 -kerning first=916 second=39 amount=-3 -kerning first=357 second=279 amount=-1 -kerning first=117 second=171 amount=-3 -kerning first=260 second=63 amount=-5 -kerning first=164 second=8217 amount=-3 -kerning first=8217 second=1257 amount=-1 -kerning first=55 second=87 amount=-5 -kerning first=304 second=1185 amount=-3 -kerning first=72 second=940 amount=-1 -kerning first=75 second=249 amount=-1 -kerning first=1170 second=1101 amount=-1 -kerning first=232 second=8218 amount=-1 -kerning first=361 second=226 amount=-1 -kerning first=956 second=116 amount=-1 -kerning first=115 second=1078 amount=-1 -kerning first=36 second=100 amount=-1 -kerning first=1026 second=972 amount=-1 -kerning first=175 second=250 amount=-1 -kerning first=56 second=262 amount=-2 -kerning first=196 second=1241 amount=-1 -kerning first=305 second=8220 amount=-3 -kerning first=1099 second=357 amount=-1 -kerning first=222 second=89 amount=-3 -kerning first=923 second=369 amount=-1 -kerning first=96 second=1098 amount=-3 -kerning first=1176 second=973 amount=-1 -kerning first=102 second=101 amount=-1 -kerning first=119 second=955 amount=-4 -kerning first=122 second=263 amount=-1 -kerning first=1037 second=228 amount=-1 -kerning first=60 second=212 amount=-2 -kerning first=1071 second=370 amount=-2 -kerning first=318 second=252 amount=-1 -kerning first=77 second=1118 amount=-1 -kerning first=80 second=354 amount=-5 -kerning first=223 second=266 amount=-2 -kerning first=226 second=39 amount=-1 -kerning first=100 second=970 amount=-1 -kerning first=103 second=279 amount=-1 -kerning first=960 second=920 amount=-2 -kerning first=126 second=213 amount=-2 -kerning first=1298 second=1195 amount=-1 -kerning first=271 second=103 amount=-1 -kerning first=41 second=225 amount=-1 -kerning first=1035 second=1257 amount=-1 -kerning first=180 second=355 amount=-1 -kerning first=184 second=115 amount=-1 -kerning first=296 second=267 amount=-1 -kerning first=58 second=1185 amount=-3 -kerning first=61 second=367 amount=-1 -kerning first=8366 second=360 amount=-2 -kerning first=936 second=945 amount=-1 -kerning first=107 second=226 amount=-1 -kerning first=247 second=356 amount=-5 -kerning first=250 second=116 amount=-1 -kerning first=160 second=368 amount=-2 -kerning first=273 second=281 amount=-1 -kerning first=59 second=8220 amount=-3 -kerning first=325 second=357 amount=-1 -kerning first=903 second=269 amount=-1 -kerning first=374 second=216 amount=-3 -kerning first=161 second=1066 amount=-5 -kerning first=125 second=8221 amount=-3 -kerning first=971 second=106 amount=1 -kerning first=189 second=240 amount=-1 -kerning first=298 second=1194 amount=-2 -kerning first=301 second=370 amount=-2 -kerning first=69 second=252 amount=-1 -kerning first=206 second=1256 amount=-2 -kerning first=946 second=359 amount=-1 -kerning first=950 second=119 amount=-4 -kerning first=1206 second=963 amount=-1 -kerning first=1219 second=271 amount=-1 -kerning first=252 second=920 amount=-2 -kerning first=375 second=371 amount=-1 -kerning first=372 second=1195 amount=-3 -kerning first=168 second=253 amount=-1 -kerning first=8218 second=334 amount=-1 -kerning first=50 second=267 amount=-1 -kerning first=1064 second=218 amount=-2 -kerning first=905 second=947 amount=-4 -kerning first=1171 second=287 amount=-1 -kerning first=356 second=1240 amount=-1 -kerning first=376 second=1069 amount=-2 -kerning first=1027 second=231 amount=-1 -kerning first=1065 second=373 amount=-2 -kerning first=77 second=117 amount=-1 -kerning first=74 second=357 amount=-1 -kerning first=94 second=973 amount=-1 -kerning first=955 second=244 amount=-1 -kerning first=35 second=228 amount=-1 -kerning first=177 second=118 amount=-4 -kerning first=8240 second=221 amount=-5 -kerning first=52 second=1194 amount=-2 -kerning first=55 second=370 amount=-2 -kerning first=1066 second=1071 amount=-1 -kerning first=1073 second=83 amount=-1 -kerning first=198 second=283 amount=-1 -kerning first=928 second=257 amount=-1 -kerning first=244 second=119 amount=-1 -kerning first=361 second=963 amount=-1 -kerning first=118 second=1195 amount=-1 -kerning first=121 second=371 amount=-1 -kerning first=1033 second=1090 amount=-2 -kerning first=1036 second=334 amount=-3 -kerning first=294 second=218 amount=-2 -kerning first=8249 second=376 amount=-2 -kerning first=202 second=230 amount=-1 -kerning first=317 second=360 amount=-2 -kerning first=8361 second=1059 amount=-2 -kerning first=900 second=45 amount=-2 -kerning first=79 second=923 amount=-2 -kerning first=222 second=372 amount=-2 -kerning first=343 second=287 amount=-1 -kerning first=1186 second=335 amount=-1 -kerning first=958 second=1108 amount=-1 -kerning first=962 second=347 amount=-1 -kerning first=161 second=81 amount=-2 -kerning first=1037 second=965 amount=-1 -kerning first=183 second=243 amount=-1 -kerning first=295 second=373 amount=-1 -kerning first=200 second=1263 amount=-1 -kerning first=8370 second=248 amount=-1 -kerning first=901 second=220 amount=-2 -kerning first=934 second=1176 amount=-1 -kerning first=947 second=275 amount=-1 -kerning first=1187 second=966 amount=-1 -kerning first=249 second=244 amount=-1 -kerning first=369 second=374 amount=-5 -kerning first=268 second=1298 amount=-1 -kerning first=41 second=962 amount=-1 -kerning first=1048 second=221 amount=-5 -kerning first=187 second=193 amount=-3 -kerning first=302 second=83 amount=-1 -kerning first=1080 second=363 amount=-1 -kerning first=207 second=333 amount=-1 -kerning first=327 second=245 amount=-1 -kerning first=902 second=375 amount=-1 -kerning first=87 second=345 amount=-2 -kerning first=1117 second=290 amount=-2 -kerning first=936 second=8211 amount=-2 -kerning first=107 second=963 amount=-2 -kerning first=113 second=44 amount=2 -kerning first=273 second=1090 amount=-3 -kerning first=276 second=334 amount=-2 -kerning first=48 second=218 amount=-2 -kerning first=8216 second=277 amount=-1 -kerning first=1049 second=376 amount=-5 -kerning first=188 second=346 amount=-1 -kerning first=1081 second=1059 amount=-2 -kerning first=1078 second=8212 amount=-3 -kerning first=214 second=45 amount=-2 -kerning first=900 second=8249 amount=-3 -kerning first=91 second=287 amount=-1 -kerning first=1169 second=235 amount=-1 -kerning first=354 second=335 amount=-3 -kerning first=357 second=97 amount=-1 -kerning first=251 second=1108 amount=-1 -kerning first=254 second=347 amount=-1 -kerning first=374 second=951 amount=-3 -kerning first=167 second=361 amount=-1 -kerning first=170 second=121 amount=-1 -kerning first=283 second=46 amount=-1 -kerning first=8221 second=224 amount=-1 -kerning first=49 second=373 amount=-4 -kerning first=189 second=1028 amount=-2 -kerning first=192 second=288 amount=-2 -kerning first=1095 second=248 amount=-1 -kerning first=215 second=220 amount=-2 -kerning first=95 second=232 amount=-1 -kerning first=358 second=275 amount=-1 -kerning first=112 second=1203 amount=-2 -kerning first=258 second=289 amount=-1 -kerning first=1026 second=337 amount=-1 -kerning first=175 second=71 amount=-2 -kerning first=286 second=221 amount=-2 -kerning first=47 second=8230 amount=-4 -kerning first=56 second=83 amount=-1 -kerning first=1064 second=953 amount=-1 -kerning first=1067 second=261 amount=-1 -kerning first=196 second=233 amount=-1 -kerning first=305 second=1177 amount=-1 -kerning first=310 second=363 amount=-1 -kerning first=76 second=245 amount=-1 -kerning first=923 second=210 amount=-2 -kerning first=1176 second=338 amount=-2 -kerning first=1179 second=100 amount=-1 -kerning first=1263 second=262 amount=-2 -kerning first=1027 second=968 amount=-1 -kerning first=176 second=246 amount=-1 -kerning first=287 second=376 amount=-5 -kerning first=8224 second=1079 amount=-1 -kerning first=8250 second=89 amount=-3 -kerning first=1071 second=211 amount=-2 -kerning first=306 second=8212 amount=-2 -kerning first=1103 second=113 amount=-1 -kerning first=214 second=8249 amount=-3 -kerning first=223 second=85 amount=-2 -kerning first=341 second=235 amount=-1 -kerning first=926 second=365 amount=-1 -kerning first=100 second=335 amount=-1 -kerning first=103 second=97 amount=-1 -kerning first=123 second=259 amount=-1 -kerning first=126 second=34 amount=-3 -kerning first=35 second=965 amount=-1 -kerning first=8260 second=266 amount=-2 -kerning first=1069 second=1184 amount=-2 -kerning first=1073 second=366 amount=-2 -kerning first=201 second=336 amount=-2 -kerning first=321 second=248 amount=-1 -kerning first=84 second=110 amount=-2 -kerning first=221 second=952 amount=-2 -kerning first=1299 second=1185 amount=-3 -kerning first=273 second=99 amount=-1 -kerning first=42 second=221 amount=-5 -kerning first=185 second=111 amount=-1 -kerning first=182 second=351 amount=-1 -kerning first=297 second=261 amount=-1 -kerning first=294 second=953 amount=-1 -kerning first=62 second=363 amount=-1 -kerning first=59 second=1177 amount=-1 -kerning first=1070 second=8218 amount=-1 -kerning first=8369 second=356 amount=-5 -kerning first=942 second=250 amount=-1 -kerning first=371 second=262 amount=-2 -kerning first=965 second=1241 amount=-1 -kerning first=968 second=187 amount=-1 -kerning first=161 second=364 amount=-2 -kerning first=274 second=277 amount=-1 -kerning first=43 second=376 amount=-5 -kerning first=1041 second=1079 amount=-1 -kerning first=183 second=1035 amount=-5 -kerning first=186 second=291 amount=-1 -kerning first=1051 second=89 amount=-5 -kerning first=301 second=211 amount=-2 -kerning first=60 second=8212 amount=-2 -kerning first=63 second=1059 amount=-2 -kerning first=1083 second=251 amount=-1 -kerning first=330 second=113 amount=-1 -kerning first=904 second=263 amount=-1 -kerning first=89 second=235 amount=-4 -kerning first=375 second=212 amount=-2 -kerning first=972 second=102 amount=-1 -kerning first=126 second=8216 amount=-3 -kerning first=278 second=224 amount=-1 -kerning first=8212 second=382 amount=-2 -kerning first=41 second=8250 amount=-1 -kerning first=1064 second=39 amount=-3 -kerning first=299 second=1184 amount=-5 -kerning first=302 second=366 amount=-2 -kerning first=70 second=248 amount=-1 -kerning first=8378 second=920 amount=-2 -kerning first=910 second=213 amount=-3 -kerning first=1171 second=103 amount=-1 -kerning first=227 second=8217 amount=-1 -kerning first=356 second=225 amount=-2 -kerning first=948 second=355 amount=-1 -kerning first=951 second=115 amount=-1 -kerning first=113 second=324 amount=2 -kerning first=1220 second=267 amount=-1 -kerning first=376 second=367 amount=-2 -kerning first=169 second=249 amount=-1 -kerning first=166 second=940 amount=-1 -kerning first=48 second=953 amount=-1 -kerning first=51 second=261 amount=-1 -kerning first=1065 second=214 amount=-1 -kerning first=74 second=198 amount=-1 -kerning first=94 second=338 amount=-2 -kerning first=1174 second=281 amount=-1 -kerning first=1169 second=972 amount=-1 -kerning first=237 second=250 amount=-1 -kerning first=117 second=262 amount=-2 -kerning first=260 second=187 amount=-1 -kerning first=174 second=199 amount=-2 -kerning first=280 second=1079 amount=-1 -kerning first=288 second=89 amount=-2 -kerning first=8225 second=269 amount=-1 -kerning first=55 second=211 amount=-2 -kerning first=195 second=339 amount=-1 -kerning first=198 second=101 amount=-1 -kerning first=192 second=1098 amount=-3 -kerning first=313 second=251 amount=-1 -kerning first=78 second=113 amount=-1 -kerning first=221 second=38 amount=-2 -kerning first=912 second=1066 amount=-5 -kerning first=956 second=240 amount=-1 -kerning first=121 second=212 amount=-2 -kerning first=1224 second=1194 amount=-2 -kerning first=36 second=224 amount=-1 -kerning first=1026 second=1256 amount=-2 -kerning first=175 second=354 amount=-5 -kerning first=289 second=266 amount=-2 -kerning first=294 second=39 amount=-3 -kerning first=53 second=1184 amount=-5 -kerning first=56 second=366 amount=-2 -kerning first=1074 second=79 amount=-2 -kerning first=196 second=970 amount=-1 -kerning first=8361 second=359 amount=-1 -kerning first=8364 second=119 amount=-4 -kerning first=1099 second=920 amount=-2 -kerning first=343 second=103 amount=-1 -kerning first=931 second=253 amount=-1 -kerning first=1176 second=1257 amount=-1 -kerning first=102 second=225 amount=-1 -kerning first=365 second=267 amount=-1 -kerning first=176 second=1038 amount=-2 -kerning first=8230 second=947 amount=-2 -kerning first=8250 second=372 amount=-3 -kerning first=54 second=8218 amount=-1 -kerning first=1071 second=945 amount=-1 -kerning first=203 second=226 amount=-1 -kerning first=318 second=356 amount=-5 -kerning first=323 second=116 amount=-1 -kerning first=223 second=368 amount=-2 -kerning first=341 second=972 amount=-1 -kerning first=271 second=227 amount=-1 -kerning first=38 second=1079 amount=-1 -kerning first=1044 second=269 amount=-1 -kerning first=44 second=89 amount=-4 -kerning first=296 second=369 amount=-1 -kerning first=64 second=251 amount=-1 -kerning first=8372 second=244 amount=-1 -kerning first=902 second=216 amount=-2 -kerning first=1117 second=106 amount=1 -kerning first=944 second=118 amount=-4 -kerning first=250 second=240 amount=-1 -kerning first=367 second=1194 amount=-2 -kerning first=967 second=283 amount=-1 -kerning first=160 second=943 amount=-1 -kerning first=163 second=252 amount=-1 -kerning first=48 second=39 amount=-3 -kerning first=1049 second=217 amount=-2 -kerning first=303 second=79 amount=-2 -kerning first=1081 second=359 amount=-1 -kerning first=1085 second=119 amount=-4 -kerning first=325 second=920 amount=-2 -kerning first=900 second=1195 amount=-1 -kerning first=903 second=371 amount=-1 -kerning first=91 second=103 amount=-1 -kerning first=1118 second=286 amount=-2 -kerning first=1210 second=218 amount=-2 -kerning first=971 second=230 amount=-1 -kerning first=8217 second=273 amount=-1 -kerning first=49 second=214 amount=-2 -kerning first=1051 second=372 amount=-5 -kerning first=186 second=1101 amount=-1 -kerning first=301 second=945 amount=-1 -kerning first=69 second=356 amount=-5 -kerning first=72 second=116 amount=-1 -kerning first=8377 second=1108 amount=-1 -kerning first=904 second=1069 amount=-1 -kerning first=912 second=81 amount=-2 -kerning first=92 second=281 amount=-1 -kerning first=89 second=972 amount=-4 -kerning first=1170 second=231 amount=-1 -kerning first=950 second=243 amount=-1 -kerning first=1219 second=373 amount=-4 -kerning first=168 second=357 amount=-1 -kerning first=8222 second=220 amount=-1 -kerning first=47 second=1187 amount=-1 -kerning first=50 second=369 amount=-1 -kerning first=190 second=973 amount=-1 -kerning first=1096 second=244 amount=-1 -kerning first=96 second=228 amount=-1 -kerning first=239 second=118 amount=-4 -kerning first=356 second=962 amount=-3 -kerning first=113 second=1194 amount=-2 -kerning first=1263 second=83 amount=-1 -kerning first=1027 second=333 amount=-1 -kerning first=176 second=67 amount=-2 -kerning first=287 second=217 amount=-2 -kerning first=8224 second=375 amount=-1 -kerning first=48 second=8222 amount=-1 -kerning first=57 second=79 amount=-2 -kerning first=1065 second=949 amount=-1 -kerning first=197 second=229 amount=-1 -kerning first=315 second=119 amount=-3 -kerning first=74 second=920 amount=-2 -kerning first=214 second=1195 amount=-1 -kerning first=338 second=286 amount=-2 -kerning first=94 second=1257 amount=-1 -kerning first=1174 second=1090 amount=-2 -kerning first=363 second=218 amount=-2 -kerning first=955 second=346 amount=-1 -kerning first=1035 second=273 amount=-1 -kerning first=177 second=242 amount=-1 -kerning first=288 second=372 amount=-1 -kerning first=283 second=947 amount=-1 -kerning first=8260 second=85 amount=-2 -kerning first=55 second=945 amount=-1 -kerning first=198 second=1240 amount=-2 -kerning first=195 second=1262 amount=-2 -kerning first=928 second=361 amount=-1 -kerning first=936 second=121 amount=-1 -kerning first=1194 second=46 amount=-1 -kerning first=956 second=1028 amount=-2 -kerning first=39 second=269 amount=-1 -kerning first=1039 second=220 amount=-2 -kerning first=1074 second=362 amount=-2 -kerning first=202 second=332 amount=-2 -kerning first=322 second=244 amount=-1 -kerning first=942 second=71 amount=-2 -kerning first=102 second=962 amount=-1 -kerning first=362 second=8230 amount=-1 -kerning first=371 second=83 amount=-1 -kerning first=965 second=233 amount=-1 -kerning first=43 second=217 amount=-2 -kerning first=1041 second=375 amount=-1 -kerning first=298 second=257 amount=-1 -kerning first=63 second=359 amount=-1 -kerning first=1071 second=8211 amount=-2 -kerning first=203 second=963 amount=-1 -kerning first=206 second=271 amount=-1 -kerning first=8370 second=352 amount=-1 -kerning first=904 second=84 amount=-5 -kerning first=86 second=286 amount=-2 -kerning first=83 second=1026 amount=-1 -kerning first=1116 second=234 amount=-2 -kerning first=249 second=346 amount=-1 -kerning first=372 second=258 amount=-5 -kerning first=162 second=360 amount=-2 -kerning first=271 second=964 amount=-3 -kerning first=278 second=45 amount=-2 -kerning first=41 second=947 amount=-4 -kerning first=44 second=372 amount=-3 -kerning first=327 second=347 amount=-1 -kerning first=905 second=259 amount=-1 -kerning first=90 second=231 amount=-1 -kerning first=356 second=46 amount=-3 -kerning first=110 second=373 amount=-1 -kerning first=250 second=1028 amount=-2 -kerning first=253 second=288 amount=-2 -kerning first=191 second=232 amount=-1 -kerning first=303 second=362 amount=-2 -kerning first=300 second=1176 amount=-1 -kerning first=211 second=374 amount=-3 -kerning first=1169 second=337 amount=-1 -kerning first=1174 second=99 amount=-1 -kerning first=237 second=71 amount=-2 -kerning first=357 second=221 amount=-5 -kerning first=952 second=111 amount=-1 -kerning first=117 second=83 amount=-1 -kerning first=1210 second=953 amount=-1 -kerning first=1223 second=261 amount=-1 -kerning first=374 second=1177 amount=-4 -kerning first=170 second=245 amount=-1 -kerning first=280 second=375 amount=-1 -kerning first=49 second=949 amount=-1 -kerning first=52 second=257 amount=-1 -kerning first=301 second=8211 amount=-2 -kerning first=1095 second=352 amount=-1 -kerning first=912 second=364 amount=-2 -kerning first=92 second=1090 amount=-3 -kerning first=95 second=334 amount=-2 -kerning first=1170 second=968 amount=-1 -kerning first=1175 second=277 amount=-1 -kerning first=238 second=246 amount=-1 -kerning first=358 second=376 amount=-5 -kerning first=950 second=1035 amount=-5 -kerning first=375 second=8212 amount=-2 -kerning first=36 second=45 amount=-2 -kerning first=278 second=8249 amount=-3 -kerning first=289 second=85 amount=-2 -kerning first=8226 second=263 amount=-1 -kerning first=1067 second=365 amount=-1 -kerning first=196 second=335 amount=-1 -kerning first=73 second=1108 amount=-1 -kerning first=96 second=965 amount=-1 -kerning first=102 second=46 amount=-2 -kerning first=356 second=8250 amount=-1 -kerning first=1256 second=1184 amount=-2 -kerning first=1263 second=366 amount=-2 -kerning first=37 second=220 amount=-2 -kerning first=1037 second=171 amount=-3 -kerning first=176 second=350 amount=-1 -kerning first=54 second=1176 amount=-1 -kerning first=57 second=362 amount=-2 -kerning first=1068 second=1063 amount=-1 -kerning first=1065 second=8217 amount=-2 -kerning first=197 second=966 amount=-1 -kerning first=200 second=275 amount=-1 -kerning first=8365 second=115 amount=-1 -kerning first=80 second=289 amount=-1 -kerning first=341 second=337 amount=-1 -kerning first=934 second=249 amount=-1 -kerning first=926 second=940 amount=-1 -kerning first=103 second=221 amount=-5 -kerning first=363 second=953 amount=-1 -kerning first=123 second=363 amount=-1 -kerning first=1257 second=8218 amount=-1 -kerning first=38 second=375 amount=-1 -kerning first=180 second=290 amount=-2 -kerning first=296 second=210 amount=-2 -kerning first=8260 second=368 amount=-2 -kerning first=55 second=8211 amount=-4 -kerning first=1073 second=941 amount=-1 -kerning first=321 second=352 amount=-1 -kerning first=84 second=234 amount=-3 -kerning first=345 second=277 amount=-1 -kerning first=1202 second=89 amount=-2 -kerning first=247 second=291 amount=-1 -kerning first=961 second=1098 amount=-1 -kerning first=964 second=339 amount=-1 -kerning first=967 second=101 amount=-1 -kerning first=124 second=1059 amount=-2 -kerning first=121 second=8212 amount=-2 -kerning first=36 second=8249 amount=-3 -kerning first=1046 second=263 amount=-2 -kerning first=185 second=235 amount=-1 -kerning first=297 second=365 amount=-1 -kerning first=903 second=212 amount=-2 -kerning first=942 second=354 amount=-5 -kerning first=1210 second=39 amount=-3 -kerning first=371 second=366 amount=-2 -kerning first=968 second=279 amount=-1 -kerning first=164 second=248 amount=-1 -kerning first=965 second=970 amount=-1 -kerning first=1051 second=213 amount=-2 -kerning first=295 second=8217 amount=-1 -kerning first=1087 second=115 amount=-1 -kerning first=1083 second=355 amount=-1 -kerning first=212 second=87 amount=-2 -kerning first=904 second=367 amount=-1 -kerning first=901 second=1185 amount=-3 -kerning first=86 second=1096 amount=-2 -kerning first=92 second=99 amount=-1 -kerning first=89 second=337 amount=-4 -kerning first=1219 second=214 amount=-2 -kerning first=275 second=1078 amount=-2 -kerning first=8218 second=268 amount=-1 -kerning first=50 second=210 amount=-2 -kerning first=190 second=338 amount=-2 -kerning first=193 second=100 amount=-1 -kerning first=305 second=250 amount=-1 -kerning first=302 second=941 amount=-1 -kerning first=70 second=352 amount=-1 -kerning first=902 second=8220 amount=-3 -kerning first=93 second=277 amount=-1 -kerning first=1171 second=227 amount=-1 -kerning first=236 second=199 amount=-2 -kerning first=356 second=326 amount=-2 -kerning first=1220 second=369 amount=-1 -kerning first=253 second=1098 amount=-3 -kerning first=256 second=339 amount=-1 -kerning first=376 second=942 amount=-3 -kerning first=172 second=113 amount=-1 -kerning first=169 second=353 amount=-1 -kerning first=279 second=955 amount=-1 -kerning first=282 second=263 amount=-1 -kerning first=8224 second=216 amount=-2 -kerning first=51 second=365 amount=-1 -kerning first=1049 second=8221 amount=-3 -kerning first=1062 second=1066 amount=-2 -kerning first=1097 second=240 amount=-1 -kerning first=916 second=252 amount=-1 -kerning first=237 second=354 amount=-5 -kerning first=363 second=39 amount=-3 -kerning first=117 second=366 amount=-2 -kerning first=1298 second=79 amount=-2 -kerning first=260 second=279 amount=-1 -kerning first=35 second=171 amount=-3 -kerning first=8221 second=1195 amount=-1 -kerning first=8225 second=371 amount=-1 -kerning first=49 second=8217 amount=-3 -kerning first=198 second=225 amount=-1 -kerning first=316 second=115 amount=-1 -kerning first=313 second=355 amount=-1 -kerning first=215 second=1185 amount=-3 -kerning first=238 second=1038 amount=-2 -kerning first=1240 second=356 amount=-2 -kerning first=1036 second=268 amount=-3 -kerning first=289 second=368 amount=-2 -kerning first=8226 second=1069 amount=-1 -kerning first=59 second=250 amount=-1 -kerning first=56 second=941 amount=-1 -kerning first=8364 second=243 amount=-1 -kerning first=343 second=227 amount=-1 -kerning first=931 second=357 amount=-1 -kerning first=105 second=89 amount=-5 -kerning first=1186 second=269 amount=-1 -kerning first=365 second=369 amount=-1 -kerning first=958 second=973 amount=-1 -kerning first=125 second=251 amount=-1 -kerning first=40 second=263 amount=-1 -kerning first=1041 second=216 amount=-2 -kerning first=287 second=8221 amount=-3 -kerning first=290 second=1066 amount=-1 -kerning first=323 second=240 amount=-1 -kerning first=86 second=102 amount=-1 -kerning first=223 second=943 amount=-1 -kerning first=934 second=1044 amount=-3 -kerning first=109 second=39 amount=-1 -kerning first=372 second=79 amount=-2 -kerning first=8212 second=44 amount=-1 -kerning first=44 second=213 amount=-1 -kerning first=299 second=253 amount=-1 -kerning first=64 second=355 amount=-1 -kerning first=207 second=267 amount=-1 -kerning first=8372 second=346 amount=-1 -kerning first=1117 second=230 amount=-1 -kerning first=944 second=242 amount=-1 -kerning first=247 second=1101 amount=-1 -kerning first=967 second=1240 amount=-2 -kerning first=964 second=1262 amount=-2 -kerning first=163 second=356 amount=-5 -kerning first=166 second=116 amount=-1 -kerning first=276 second=268 amount=-2 -kerning first=1046 second=1069 amount=-2 -kerning first=185 second=972 amount=-1 -kerning first=188 second=281 amount=-1 -kerning first=1062 second=81 amount=-1 -kerning first=1085 second=243 amount=-1 -kerning first=91 second=227 amount=-1 -kerning first=354 second=269 amount=-3 -kerning first=251 second=973 amount=-1 -kerning first=971 second=332 amount=-2 -kerning first=280 second=216 amount=-2 -kerning first=8211 second=1203 amount=-2 -kerning first=43 second=8221 amount=-3 -kerning first=46 second=1066 amount=-5 -kerning first=192 second=228 amount=-1 -kerning first=72 second=240 amount=-1 -kerning first=209 second=1194 amount=-2 -kerning first=89 second=1256 amount=-3 -kerning first=1170 second=333 amount=-1 -kerning first=238 second=67 amount=-2 -kerning first=358 second=217 amount=-2 -kerning first=950 second=345 amount=-2 -kerning first=1219 second=949 amount=-1 -kerning first=1224 second=257 amount=-1 -kerning first=258 second=229 amount=-1 -kerning first=1026 second=271 amount=-1 -kerning first=168 second=920 amount=-2 -kerning first=278 second=1195 amount=-1 -kerning first=8226 second=84 amount=-5 -kerning first=53 second=253 amount=-1 -kerning first=190 second=1257 amount=-1 -kerning first=1096 second=346 amount=-1 -kerning first=915 second=360 amount=-2 -kerning first=1176 second=273 amount=-1 -kerning first=1171 second=964 amount=-3 -kerning first=239 second=242 amount=-1 -kerning first=356 second=947 amount=-2 -kerning first=954 second=287 amount=-2 -kerning first=256 second=1262 amount=-2 -kerning first=282 second=1069 amount=-1 -kerning first=1071 second=121 amount=-1 -kerning first=315 second=243 amount=-1 -kerning first=100 second=269 amount=-1 -kerning first=960 second=232 amount=-1 -kerning first=1298 second=362 amount=-2 -kerning first=38 second=216 amount=-2 -kerning first=1035 second=374 amount=-5 -kerning first=180 second=106 amount=1 -kerning first=61 second=118 amount=-4 -kerning first=198 second=962 amount=-1 -kerning first=8366 second=111 amount=-1 -kerning first=8363 second=351 amount=-1 -kerning first=936 second=245 amount=-1 -kerning first=367 second=257 amount=-1 -kerning first=124 second=359 amount=-1 -kerning first=160 second=119 amount=-4 -kerning first=36 second=1195 amount=-1 -kerning first=178 second=1026 amount=-5 -kerning first=182 second=286 amount=-2 -kerning first=1078 second=246 amount=-2 -kerning first=205 second=218 amount=-2 -kerning first=322 second=346 amount=-1 -kerning first=8364 second=1035 amount=-5 -kerning first=8369 second=291 amount=-1 -kerning first=222 second=1174 amount=-3 -kerning first=105 second=372 amount=-5 -kerning first=965 second=335 amount=-1 -kerning first=968 second=97 amount=-1 -kerning first=274 second=219 amount=-2 -kerning first=40 second=1069 amount=-1 -kerning first=46 second=81 amount=-1 -kerning first=1051 second=34 amount=-3 -kerning first=186 second=231 amount=-1 -kerning first=298 second=361 amount=-1 -kerning first=301 second=121 amount=-1 -kerning first=206 second=373 amount=-4 -kerning first=323 second=1028 amount=-2 -kerning first=252 second=232 amount=-1 -kerning first=369 second=1176 amount=-1 -kerning first=972 second=47 amount=-1 -kerning first=165 second=244 amount=-1 -kerning first=8218 second=87 amount=-3 -kerning first=47 second=256 amount=-5 -kerning first=305 second=71 amount=-2 -kerning first=70 second=193 amount=-4 -kerning first=1084 second=351 amount=-1 -kerning first=1090 second=111 amount=-1 -kerning first=902 second=1177 amount=-1 -kerning first=905 second=363 amount=-1 -kerning first=87 second=1087 amount=-2 -kerning first=90 second=333 amount=-1 -kerning first=948 second=290 amount=-2 -kerning first=113 second=257 amount=-1 -kerning first=1220 second=210 amount=-2 -kerning first=282 second=84 amount=-5 -kerning first=1062 second=364 amount=-1 -kerning first=188 second=1090 amount=-3 -kerning first=191 second=334 amount=-2 -kerning first=306 second=246 amount=-1 -kerning first=1085 second=1035 amount=-5 -kerning first=903 second=8212 amount=-2 -kerning first=906 second=1059 amount=-2 -kerning first=94 second=273 amount=-1 -kerning first=91 second=964 amount=-3 -kerning first=354 second=1074 amount=-2 -kerning first=952 second=235 amount=-1 -kerning first=1223 second=365 amount=-1 -kerning first=260 second=97 amount=-1 -kerning first=167 second=1108 amount=-1 -kerning first=170 second=347 amount=-1 -kerning first=8225 second=212 amount=-2 -kerning first=52 second=361 amount=-1 -kerning first=1051 second=8216 amount=-3 -kerning first=55 second=121 amount=-1 -kerning first=192 second=965 amount=-1 -kerning first=72 second=1028 amount=-2 -kerning first=75 second=288 amount=-3 -kerning first=1178 second=171 amount=-1 -kerning first=238 second=350 amount=-1 -kerning first=235 second=1113 amount=-1 -kerning first=1219 second=8217 amount=-3 -kerning first=258 second=966 amount=-1 -kerning first=266 second=47 amount=-1 -kerning first=1240 second=197 amount=-2 -kerning first=175 second=289 amount=-1 -kerning first=171 second=1033 amount=-1 -kerning first=8226 second=367 amount=-1 -kerning first=8222 second=1185 amount=-3 -kerning first=59 second=71 amount=-2 -kerning first=1067 second=940 amount=-1 -kerning first=199 second=221 amount=-2 -kerning first=314 second=351 amount=-1 -kerning first=317 second=111 amount=-1 -kerning first=337 second=967 amount=-2 -kerning first=365 second=210 amount=-2 -kerning first=958 second=338 amount=-2 -kerning first=962 second=100 amount=-1 -kerning first=1263 second=941 amount=-1 -kerning first=40 second=84 amount=-5 -kerning first=1037 second=262 amount=-2 -kerning first=179 second=234 amount=-1 -kerning first=8224 second=8220 amount=-3 -kerning first=60 second=246 amount=-1 -kerning first=200 second=376 amount=-5 -kerning first=318 second=291 amount=-1 -kerning first=315 second=1035 amount=-6 -kerning first=1103 second=339 amount=-1 -kerning first=934 second=353 amount=-1 -kerning first=1187 second=263 amount=-1 -kerning first=268 second=377 amount=-1 -kerning first=41 second=259 amount=-1 -kerning first=1044 second=212 amount=-1 -kerning first=44 second=34 amount=-1 -kerning first=8260 second=943 amount=-1 -kerning first=1073 second=1118 amount=-1 -kerning first=198 second=8250 amount=-1 -kerning first=84 second=336 amount=-1 -kerning first=1202 second=213 amount=-1 -kerning first=967 second=225 amount=-1 -kerning first=276 second=87 amount=-5 -kerning first=1039 second=1185 amount=-3 -kerning first=1046 second=367 amount=-1 -kerning first=185 second=337 amount=-1 -kerning first=188 second=99 amount=-1 -kerning first=297 second=940 amount=-1 -kerning first=300 second=249 amount=-1 -kerning first=65 second=351 amount=-1 -kerning first=205 second=953 amount=-1 -kerning first=8369 second=1101 amount=-1 -kerning first=1118 second=226 amount=-1 -kerning first=346 second=1078 amount=-1 -kerning first=251 second=338 amount=-2 -kerning first=254 second=100 amount=-1 -kerning first=371 second=941 amount=-1 -kerning first=374 second=250 amount=-2 -kerning first=164 second=352 amount=-1 -kerning first=1041 second=8220 amount=-3 -kerning first=46 second=364 amount=-1 -kerning first=186 second=968 amount=-1 -kerning first=189 second=277 amount=-1 -kerning first=304 second=199 amount=-2 -kerning first=69 second=291 amount=-1 -kerning first=66 second=1035 amount=-1 -kerning first=330 second=339 amount=-1 -kerning first=8377 second=973 amount=-1 -kerning first=326 second=1098 amount=-1 -kerning first=1206 second=1066 amount=-2 -kerning first=8218 second=370 amount=-1 -kerning first=44 second=8216 amount=-1 -kerning first=1064 second=252 amount=-1 -kerning first=193 second=224 amount=-1 -kerning first=302 second=1118 amount=-1 -kerning first=305 second=354 amount=-5 -kerning first=210 second=1184 amount=-2 -kerning first=96 second=171 amount=-3 -kerning first=954 second=103 amount=-2 -kerning first=110 second=8217 amount=-1 -kerning first=376 second=1119 amount=-3 -kerning first=1027 second=267 amount=-1 -kerning first=279 second=1185 amount=-1 -kerning first=282 second=367 amount=-1 -kerning first=54 second=249 amount=-1 -kerning first=51 second=940 amount=-1 -kerning first=306 second=1038 amount=-2 -kerning first=211 second=8218 amount=-1 -kerning first=916 second=356 amount=-5 -kerning first=338 second=226 amount=-1 -kerning first=926 second=116 amount=-1 -kerning first=955 second=281 amount=-1 -kerning first=952 second=972 amount=-1 -kerning first=117 second=941 amount=-1 -kerning first=35 second=262 amount=-2 -kerning first=174 second=1241 amount=-1 -kerning first=177 second=187 amount=-1 -kerning first=280 second=8220 amount=-3 -kerning first=58 second=199 amount=-2 -kerning first=1073 second=117 amount=-1 -kerning first=195 second=1079 amount=-1 -kerning first=201 second=89 amount=-5 -kerning first=78 second=339 amount=-1 -kerning first=75 second=1098 amount=-4 -kerning first=221 second=251 amount=-2 -kerning first=98 second=955 amount=-1 -kerning first=361 second=1066 amount=-5 -kerning first=358 second=8221 amount=-3 -kerning first=1240 second=916 amount=-2 -kerning first=289 second=943 amount=-1 -kerning first=294 second=252 amount=-1 -kerning first=59 second=354 amount=-5 -kerning first=56 second=1118 amount=-1 -kerning first=202 second=266 amount=-2 -kerning first=205 second=39 amount=-3 -kerning first=1070 second=1044 amount=-1 -kerning first=900 second=79 amount=-2 -kerning first=931 second=920 amount=-2 -kerning first=105 second=213 amount=-2 -kerning first=1179 second=1195 amount=-1 -kerning first=958 second=1257 amount=-1 -kerning first=125 second=355 amount=-1 -kerning first=161 second=115 amount=-1 -kerning first=40 second=367 amount=-1 -kerning first=37 second=1185 amount=-3 -kerning first=8250 second=1174 amount=-3 -kerning first=60 second=1038 amount=-2 -kerning first=206 second=214 amount=-2 -kerning first=318 second=1101 amount=-1 -kerning first=8370 second=287 amount=-1 -kerning first=86 second=226 amount=-3 -kerning first=1103 second=1262 amount=-2 -kerning first=1206 second=81 amount=-1 -kerning first=249 second=281 amount=-1 -kerning first=38 second=8220 amount=-3 -kerning first=302 second=117 amount=-1 -kerning first=299 second=357 amount=-1 -kerning first=207 second=369 amount=-1 -kerning first=8378 second=232 amount=-1 -kerning first=84 second=1224 amount=-2 -kerning first=1117 second=332 amount=-2 -kerning first=948 second=106 amount=1 -kerning first=104 second=8221 amount=-1 -kerning first=253 second=228 amount=-1 -kerning first=376 second=118 amount=-2 -kerning first=967 second=962 amount=-1 -kerning first=166 second=240 amount=-1 -kerning first=273 second=1194 amount=-2 -kerning first=276 second=370 amount=-2 -kerning first=48 second=252 amount=-1 -kerning first=185 second=1256 amount=-2 -kerning first=306 second=67 amount=-2 -kerning first=214 second=79 amount=-2 -kerning first=906 second=359 amount=-1 -kerning first=1118 second=963 amount=-1 -kerning first=1169 second=271 amount=-1 -kerning first=354 second=371 amount=-2 -kerning first=251 second=1257 amount=-1 -kerning first=8221 second=258 amount=-3 -kerning first=1063 second=360 amount=-2 -kerning first=69 second=1101 amount=-1 -kerning first=1095 second=287 amount=-1 -kerning first=330 second=1262 amount=-2 -kerning first=95 second=268 amount=-2 -kerning first=361 second=81 amount=-2 -kerning first=1224 second=361 amount=-1 -kerning first=381 second=243 amount=-1 -kerning first=1026 second=373 amount=-4 -kerning first=53 second=357 amount=-1 -kerning first=56 second=117 amount=-1 -kerning first=196 second=269 amount=-1 -kerning first=73 second=973 amount=-1 -kerning first=1099 second=232 amount=-1 -kerning first=923 second=244 amount=-1 -kerning first=1176 second=374 amount=-5 -kerning first=362 second=256 amount=-2 -kerning first=1037 second=83 amount=-1 -kerning first=176 second=283 amount=-1 -kerning first=8224 second=1177 amount=-1 -kerning first=8230 second=363 amount=-1 -kerning first=60 second=67 amount=-2 -kerning first=1071 second=245 amount=-1 -kerning first=200 second=217 amount=-2 -kerning first=80 second=229 amount=-1 -kerning first=223 second=119 amount=-4 -kerning first=338 second=963 amount=-1 -kerning first=341 second=271 amount=-1 -kerning first=100 second=371 amount=-1 -kerning first=240 second=1026 amount=-5 -kerning first=955 second=1090 amount=-3 -kerning first=960 second=334 amount=-2 -kerning first=1038 second=258 amount=-2 -kerning first=180 second=230 amount=-1 -kerning first=291 second=360 amount=-2 -kerning first=8240 second=1059 amount=-2 -kerning first=8225 second=8212 amount=-2 -kerning first=61 second=242 amount=-1 -kerning first=198 second=947 amount=-4 -kerning first=201 second=372 amount=-5 -kerning first=321 second=287 amount=-1 -kerning first=8366 second=235 amount=-1 -kerning first=78 second=1262 amount=-2 -kerning first=928 second=1108 amount=-1 -kerning first=936 second=347 amount=-1 -kerning first=1202 second=34 amount=-2 -kerning first=247 second=231 amount=-1 -kerning first=367 second=361 amount=-1 -kerning first=160 second=243 amount=-1 -kerning first=266 second=1202 amount=-2 -kerning first=269 second=373 amount=-1 -kerning first=178 second=1263 amount=-1 -kerning first=325 second=232 amount=-1 -kerning first=900 second=362 amount=-2 -kerning first=1107 second=966 amount=-1 -kerning first=346 second=374 amount=-2 -kerning first=942 second=289 amount=-1 -kerning first=374 second=71 amount=-3 -kerning first=968 second=221 amount=-5 -kerning first=270 second=1071 amount=-1 -kerning first=1041 second=1177 amount=-1 -kerning first=186 second=333 amount=-1 -kerning first=301 second=245 amount=-1 -kerning first=1083 second=290 amount=-2 -kerning first=206 second=949 amount=-1 -kerning first=209 second=257 amount=-1 -kerning first=8377 second=338 amount=-2 -kerning first=86 second=963 amount=-1 -kerning first=89 second=271 amount=-4 -kerning first=946 second=234 amount=-1 -kerning first=1206 second=364 amount=-1 -kerning first=252 second=334 amount=-2 -kerning first=375 second=246 amount=-1 -kerning first=249 second=1090 amount=-3 -kerning first=165 second=346 amount=-1 -kerning first=8218 second=211 amount=-1 -kerning first=47 second=360 amount=-2 -kerning first=1048 second=1059 amount=-2 -kerning first=1044 second=8212 amount=-2 -kerning first=190 second=273 amount=-1 -kerning first=193 second=45 amount=-2 -kerning first=70 second=287 amount=-1 -kerning first=1090 second=235 amount=-1 -kerning first=93 second=219 amount=-2 -kerning first=356 second=259 amount=-2 -kerning first=113 second=361 amount=-1 -kerning first=1202 second=8216 amount=-2 -kerning first=253 second=965 amount=-1 -kerning first=967 second=8250 amount=-1 -kerning first=166 second=1028 amount=-2 -kerning first=169 second=288 amount=-2 -kerning first=1065 second=248 amount=-1 -kerning first=194 second=220 amount=-2 -kerning first=306 second=350 amount=-1 -kerning first=74 second=232 amount=-1 -kerning first=214 second=362 amount=-2 -kerning first=94 second=374 amount=-5 -kerning first=1169 second=1076 amount=-3 -kerning first=237 second=289 amount=-1 -kerning first=955 second=99 amount=-1 -kerning first=952 second=337 amount=-1 -kerning first=1223 second=940 amount=-1 -kerning first=260 second=221 amount=-5 -kerning first=35 second=83 amount=-1 -kerning first=174 second=233 amount=-1 -kerning first=280 second=1177 amount=-1 -kerning first=8217 second=8218 amount=-1 -kerning first=55 second=245 amount=-1 -kerning first=1069 second=198 amount=-2 -kerning first=195 second=375 amount=-1 -kerning first=313 second=290 amount=-1 -kerning first=1178 second=262 amount=-1 -kerning first=361 second=364 amount=-2 -kerning first=956 second=277 amount=-1 -kerning first=121 second=246 amount=-1 -kerning first=1299 second=199 amount=-2 -kerning first=1036 second=211 amount=-3 -kerning first=1074 second=113 amount=-1 -kerning first=193 second=8249 amount=-3 -kerning first=202 second=85 amount=-2 -kerning first=317 second=235 amount=-1 -kerning first=105 second=34 amount=-3 -kerning first=102 second=259 amount=-1 -kerning first=1186 second=212 amount=-1 -kerning first=962 second=224 amount=-1 -kerning first=1263 second=1118 amount=-1 -kerning first=270 second=86 amount=-2 -kerning first=1034 second=1184 amount=-5 -kerning first=1037 second=366 amount=-2 -kerning first=179 second=336 amount=-2 -kerning first=60 second=350 amount=-1 -kerning first=8370 second=103 amount=-1 -kerning first=80 second=966 amount=-1 -kerning first=86 second=47 amount=-4 -kerning first=1184 second=1185 amount=-4 -kerning first=249 second=99 amount=-1 -kerning first=369 second=249 amount=-1 -kerning first=162 second=111 amount=-1 -kerning first=126 second=351 amount=-1 -kerning first=271 second=261 amount=-1 -kerning first=38 second=1177 amount=-1 -kerning first=41 second=363 amount=-1 -kerning first=64 second=290 amount=-2 -kerning first=207 second=210 amount=-2 -kerning first=327 second=100 amount=-1 -kerning first=902 second=250 amount=-1 -kerning first=8366 second=972 amount=-1 -kerning first=8372 second=281 amount=-1 -kerning first=944 second=187 amount=-1 -kerning first=247 second=968 amount=-1 -kerning first=250 second=277 amount=-1 -kerning first=964 second=1079 amount=-1 -kerning first=160 second=1035 amount=-5 -kerning first=163 second=291 amount=-1 -kerning first=276 second=211 amount=-2 -kerning first=42 second=1059 amount=-2 -kerning first=1049 second=251 amount=-1 -kerning first=300 second=353 amount=-1 -kerning first=303 second=113 amount=-1 -kerning first=354 second=212 amount=-1 -kerning first=105 second=8216 amount=-3 -kerning first=1210 second=252 amount=-1 -kerning first=254 second=224 amount=-1 -kerning first=371 second=1118 amount=-1 -kerning first=971 second=266 amount=-2 -kerning first=274 second=1184 amount=-5 -kerning first=49 second=248 amount=-1 -kerning first=192 second=171 amount=-3 -kerning first=1095 second=103 amount=-1 -kerning first=206 second=8217 amount=-3 -kerning first=8377 second=1257 amount=-1 -kerning first=912 second=115 amount=-1 -kerning first=95 second=87 amount=-5 -kerning first=1170 second=267 amount=-1 -kerning first=375 second=1038 amount=-2 -kerning first=1026 second=214 amount=-2 -kerning first=275 second=8218 amount=-1 -kerning first=1064 second=356 amount=-5 -kerning first=1067 second=116 amount=-1 -kerning first=70 second=1097 amount=-1 -kerning first=73 second=338 amount=-2 -kerning first=1096 second=281 amount=-1 -kerning first=76 second=100 amount=-1 -kerning first=1090 second=972 amount=-1 -kerning first=96 second=262 amount=-2 -kerning first=236 second=1241 amount=-1 -kerning first=239 second=187 amount=-1 -kerning first=353 second=8220 amount=-1 -kerning first=954 second=227 amount=-1 -kerning first=1263 second=117 amount=-1 -kerning first=256 second=1079 amount=-1 -kerning first=262 second=89 amount=-2 -kerning first=1027 second=369 amount=-1 -kerning first=169 second=1098 amount=-3 -kerning first=172 second=339 amount=-1 -kerning first=176 second=101 amount=-1 -kerning first=287 second=251 amount=-1 -kerning first=54 second=353 amount=-1 -kerning first=57 second=113 amount=-1 -kerning first=197 second=263 amount=-1 -kerning first=926 second=240 amount=-1 -kerning first=100 second=212 amount=-2 -kerning first=1174 second=1194 amount=-1 -kerning first=243 second=102 amount=-1 -kerning first=363 second=252 amount=-1 -kerning first=952 second=1256 amount=-2 -kerning first=117 second=1118 amount=-1 -kerning first=35 second=366 amount=-2 -kerning first=174 second=970 amount=-1 -kerning first=177 second=279 amount=-1 -kerning first=8240 second=359 amount=-1 -kerning first=8260 second=119 amount=-4 -kerning first=201 second=213 amount=-2 -kerning first=8363 second=286 amount=-2 -kerning first=321 second=103 amount=-1 -kerning first=98 second=1185 amount=-1 -kerning first=121 second=1038 amount=-2 -kerning first=1036 second=945 amount=-2 -kerning first=182 second=226 amount=-1 -kerning first=294 second=356 amount=-5 -kerning first=297 second=116 amount=-1 -kerning first=202 second=368 amount=-2 -kerning first=317 second=972 amount=-1 -kerning first=322 second=281 amount=-1 -kerning first=8369 second=231 amount=-1 -kerning first=99 second=8220 amount=-1 -kerning first=371 second=117 amount=-1 -kerning first=965 second=269 amount=-1 -kerning first=43 second=251 amount=-1 -kerning first=200 second=8221 amount=-3 -kerning first=203 second=1066 amount=-5 -kerning first=1083 second=106 amount=1 -kerning first=904 second=118 amount=-4 -kerning first=375 second=67 amount=-2 -kerning first=268 second=8222 amount=-1 -kerning first=278 second=79 amount=-2 -kerning first=1048 second=359 amount=-1 -kerning first=299 second=920 amount=-2 -kerning first=70 second=103 amount=-1 -kerning first=1080 second=1026 amount=-5 -kerning first=1084 second=286 amount=-2 -kerning first=8378 second=334 amount=-2 -kerning first=8372 second=1090 amount=-3 -kerning first=90 second=267 amount=-1 -kerning first=1168 second=218 amount=-2 -kerning first=948 second=230 amount=-1 -kerning first=376 second=242 amount=-4 -kerning first=967 second=947 amount=-4 -kerning first=163 second=1101 amount=-1 -kerning first=276 second=945 amount=-1 -kerning first=48 second=356 amount=-5 -kerning first=51 second=116 amount=-1 -kerning first=191 second=268 amount=-2 -kerning first=1094 second=231 amount=-1 -kerning first=117 second=117 amount=-1 -kerning first=167 second=973 amount=-1 -kerning first=195 second=216 amount=-2 -kerning first=75 second=228 amount=-1 -kerning first=920 second=193 amount=-2 -kerning first=92 second=1194 amount=-2 -kerning first=95 second=370 amount=-2 -kerning first=238 second=283 amount=-1 -kerning first=950 second=1087 amount=-2 -kerning first=121 second=67 amount=-2 -kerning first=36 second=79 amount=-2 -kerning first=1026 second=949 amount=-1 -kerning first=175 second=229 amount=-1 -kerning first=289 second=119 amount=-4 -kerning first=8218 second=8211 amount=-1 -kerning first=53 second=920 amount=-2 -kerning first=1070 second=194 amount=-2 -kerning first=193 second=1195 amount=-1 -kerning first=196 second=371 amount=-1 -kerning first=314 second=286 amount=-2 -kerning first=8361 second=234 amount=-1 -kerning first=73 second=1257 amount=-1 -kerning first=1099 second=334 amount=-2 -kerning first=1096 second=1090 amount=-3 -kerning first=216 second=1046 amount=-3 -kerning first=923 second=346 amount=-1 -kerning first=958 second=273 amount=-1 -kerning first=962 second=45 amount=-2 -kerning first=122 second=242 amount=-1 -kerning first=259 second=947 amount=-1 -kerning first=262 second=372 amount=-1 -kerning first=34 second=945 amount=-1 -kerning first=176 second=1240 amount=-2 -kerning first=172 second=1262 amount=-2 -kerning first=1071 second=347 amount=-1 -kerning first=197 second=1069 amount=-1 -kerning first=203 second=81 amount=-2 -kerning first=318 second=231 amount=-1 -kerning first=223 second=243 amount=-1 -kerning first=926 second=1028 amount=-2 -kerning first=934 second=288 amount=-2 -kerning first=240 second=1263 amount=-1 -kerning first=963 second=220 amount=-2 -kerning first=1035 second=1176 amount=-1 -kerning first=180 second=332 amount=-2 -kerning first=296 second=244 amount=-1 -kerning first=64 second=106 amount=5 -kerning first=8366 second=337 amount=-1 -kerning first=8372 second=99 amount=-1 -kerning first=902 second=71 amount=-2 -kerning first=339 second=8230 amount=-1 -kerning first=247 second=333 amount=-1 -kerning first=964 second=375 amount=-1 -kerning first=273 second=257 amount=-1 -kerning first=42 second=359 amount=-1 -kerning first=1036 second=8211 amount=-4 -kerning first=45 second=119 amount=-1 -kerning first=182 second=963 amount=-1 -kerning first=185 second=271 amount=-1 -kerning first=62 second=1026 amount=-5 -kerning first=65 second=286 amount=-2 -kerning first=1081 second=234 amount=-1 -kerning first=322 second=1090 amount=-3 -kerning first=325 second=334 amount=-2 -kerning first=8369 second=968 amount=-1 -kerning first=903 second=246 amount=-1 -kerning first=108 second=360 amount=-2 -kerning first=111 second=120 amount=-2 -kerning first=1186 second=8212 amount=-2 -kerning first=251 second=273 amount=-1 -kerning first=254 second=45 amount=-2 -kerning first=248 second=964 amount=-1 -kerning first=962 second=8249 amount=-3 -kerning first=971 second=85 amount=-2 -kerning first=164 second=287 amount=-1 -kerning first=189 second=219 amount=-2 -kerning first=298 second=1108 amount=-1 -kerning first=301 second=347 amount=-1 -kerning first=69 second=231 amount=-1 -kerning first=209 second=361 amount=-1 -kerning first=333 second=46 amount=-1 -kerning first=908 second=196 amount=-2 -kerning first=89 second=373 amount=-2 -kerning first=946 second=336 amount=-2 -kerning first=1219 second=248 amount=-1 -kerning first=255 second=220 amount=-2 -kerning first=375 second=350 amount=-1 -kerning first=168 second=232 amount=-1 -kerning first=278 second=362 amount=-2 -kerning first=281 second=122 amount=-1 -kerning first=50 second=244 amount=-1 -kerning first=190 second=374 amount=-5 -kerning first=187 second=1203 amount=-2 -kerning first=305 second=289 amount=-1 -kerning first=67 second=1298 amount=-1 -kerning first=1090 second=337 amount=-1 -kerning first=1096 second=99 amount=-1 -kerning first=334 second=221 amount=-3 -kerning first=910 second=351 amount=-3 -kerning first=915 second=111 amount=-1 -kerning first=87 second=8230 amount=-3 -kerning first=96 second=83 amount=-1 -kerning first=1171 second=261 amount=-1 -kerning first=236 second=233 amount=-1 -kerning first=1168 second=953 amount=-1 -kerning first=356 second=363 amount=-2 -kerning first=1256 second=198 amount=-2 -kerning first=256 second=375 amount=-1 -kerning first=379 second=290 amount=-1 -kerning first=1027 second=210 amount=-2 -kerning first=276 second=8211 amount=-2 -kerning first=8224 second=250 amount=-1 -kerning first=8220 second=941 amount=-1 -kerning first=197 second=84 amount=-5 -kerning first=311 second=234 amount=-2 -kerning first=74 second=334 amount=-2 -kerning first=1097 second=277 amount=-1 -kerning first=916 second=291 amount=-1 -kerning first=354 second=8212 amount=-4 -kerning first=357 second=1059 amount=-2 -kerning first=1298 second=113 amount=-1 -kerning first=254 second=8249 amount=-3 -kerning first=174 second=335 amount=-1 -kerning first=177 second=97 amount=-1 -kerning first=52 second=1108 amount=-1 -kerning first=55 second=347 amount=-1 -kerning first=198 second=259 amount=-1 -kerning first=201 second=34 amount=-3 -kerning first=75 second=965 amount=-1 -kerning first=81 second=46 amount=-1 -kerning first=221 second=196 amount=-5 -kerning first=342 second=86 amount=-1 -kerning first=1178 second=366 amount=-1 -kerning first=121 second=350 amount=-1 -kerning first=266 second=260 amount=-1 -kerning first=36 second=362 amount=-2 -kerning first=1033 second=1063 amount=-1 -kerning first=1026 second=8217 amount=-3 -kerning first=175 second=966 amount=-1 -kerning first=178 second=275 amount=-1 -kerning first=59 second=289 amount=-1 -kerning first=317 second=337 amount=-1 -kerning first=322 second=99 amount=-1 -kerning first=82 second=221 amount=-2 -kerning first=343 second=261 amount=-1 -kerning first=242 second=967 amount=-2 -kerning first=368 second=198 amount=-2 -kerning first=125 second=290 amount=-2 -kerning first=1037 second=941 amount=-1 -kerning first=1041 second=250 amount=-1 -kerning first=63 second=234 amount=-1 -kerning first=1075 second=1241 amount=-1 -kerning first=203 second=364 amount=-2 -kerning first=318 second=968 amount=-1 -kerning first=323 second=277 amount=-1 -kerning first=8370 second=227 amount=-1 -kerning first=901 second=199 amount=-2 -kerning first=83 second=376 amount=-2 -kerning first=1103 second=1079 amount=-1 -kerning first=223 second=1035 amount=-5 -kerning first=934 second=1098 amount=-3 -kerning first=103 second=1059 amount=-2 -kerning first=100 second=8212 amount=-2 -kerning first=369 second=353 amount=-1 -kerning first=372 second=113 amount=-3 -kerning first=162 second=235 amount=-1 -kerning first=271 second=365 amount=-1 -kerning first=201 second=8216 amount=-3 -kerning first=327 second=224 amount=-1 -kerning first=8366 second=1256 amount=-2 -kerning first=902 second=354 amount=-5 -kerning first=84 second=1075 amount=-2 -kerning first=1117 second=266 amount=-2 -kerning first=1168 second=39 amount=-3 -kerning first=944 second=279 amount=-1 -kerning first=253 second=171 amount=-3 -kerning first=376 second=63 amount=-1 -kerning first=269 second=8217 amount=-1 -kerning first=1049 second=355 amount=-1 -kerning first=191 second=87 amount=-5 -kerning first=903 second=1038 amount=-2 -kerning first=88 second=953 amount=-1 -kerning first=91 second=261 amount=-1 -kerning first=1210 second=356 amount=-5 -kerning first=1223 second=116 amount=-1 -kerning first=971 second=368 amount=-2 -kerning first=167 second=338 amount=-2 -kerning first=170 second=100 amount=-1 -kerning first=280 second=250 amount=-1 -kerning first=49 second=352 amount=-1 -kerning first=1066 second=65 amount=-1 -kerning first=192 second=262 amount=-2 -kerning first=304 second=1241 amount=-1 -kerning first=69 second=968 amount=-1 -kerning first=72 second=277 amount=-1 -kerning first=1095 second=227 amount=-1 -kerning first=215 second=199 amount=-2 -kerning first=330 second=1079 amount=-1 -kerning first=336 second=89 amount=-3 -kerning first=95 second=211 amount=-2 -kerning first=1170 second=369 amount=-1 -kerning first=232 second=1098 amount=-1 -kerning first=238 second=101 amount=-1 -kerning first=358 second=251 amount=-1 -kerning first=118 second=113 amount=-1 -kerning first=258 second=263 amount=-1 -kerning first=8226 second=118 amount=-4 -kerning first=1067 second=240 amount=-1 -kerning first=196 second=212 amount=-2 -kerning first=216 second=354 amount=-2 -kerning first=93 second=1184 amount=-5 -kerning first=96 second=366 amount=-2 -kerning first=236 second=970 amount=-1 -kerning first=239 second=279 amount=-1 -kerning first=176 second=225 amount=-1 -kerning first=287 second=355 amount=-1 -kerning first=194 second=1185 amount=-3 -kerning first=197 second=367 amount=-1 -kerning first=916 second=1101 amount=-1 -kerning first=363 second=356 amount=-5 -kerning first=960 second=268 amount=-2 -kerning first=38 second=250 amount=-1 -kerning first=35 second=941 amount=-1 -kerning first=8260 second=243 amount=-1 -kerning first=58 second=1241 amount=-1 -kerning first=61 second=187 amount=-1 -kerning first=195 second=8220 amount=-3 -kerning first=321 second=227 amount=-1 -kerning first=78 second=1079 amount=-1 -kerning first=928 second=973 amount=-1 -kerning first=964 second=216 amount=-2 -kerning first=266 second=1066 amount=-1 -kerning first=261 second=8221 amount=-1 -kerning first=1046 second=118 amount=-3 -kerning first=297 second=240 amount=-1 -kerning first=65 second=102 amount=-2 -kerning first=1078 second=283 amount=-2 -kerning first=202 second=943 amount=-1 -kerning first=205 second=252 amount=-1 -kerning first=317 second=1256 amount=-2 -kerning first=8369 second=333 amount=-1 -kerning first=903 second=67 amount=-2 -kerning first=942 second=229 amount=-1 -kerning first=962 second=1195 amount=-1 -kerning first=965 second=371 amount=-1 -kerning first=164 second=103 amount=-1 -kerning first=274 second=253 amount=-1 -kerning first=43 second=355 amount=-1 -kerning first=1041 second=1046 amount=-2 -kerning first=186 second=267 amount=-1 -kerning first=1083 second=230 amount=-1 -kerning first=8377 second=273 amount=-1 -kerning first=904 second=242 amount=-1 -kerning first=8370 second=964 amount=-3 -kerning first=89 second=214 amount=-3 -kerning first=1108 second=947 amount=-1 -kerning first=252 second=268 amount=-2 -kerning first=162 second=972 amount=-1 -kerning first=165 second=281 amount=-1 -kerning first=8218 second=121 amount=-1 -kerning first=70 second=227 amount=-1 -kerning first=1080 second=1263 amount=-1 -kerning first=87 second=1187 amount=-2 -kerning first=948 second=332 amount=-2 -kerning first=1220 second=244 amount=-1 -kerning first=256 second=216 amount=-2 -kerning first=169 second=228 amount=-1 -kerning first=282 second=118 amount=-4 -kerning first=8224 second=71 amount=-2 -kerning first=51 second=240 amount=-1 -kerning first=188 second=1194 amount=-2 -kerning first=191 second=370 amount=-2 -kerning first=306 second=283 amount=-1 -kerning first=1094 second=333 amount=-1 -kerning first=211 second=1044 amount=-1 -kerning first=1169 second=949 amount=-1 -kerning first=237 second=229 amount=-1 -kerning first=357 second=359 amount=-1 -kerning first=952 second=271 amount=-1 -kerning first=254 second=1195 amount=-1 -kerning first=167 second=1257 amount=-1 -kerning first=8225 second=246 amount=-1 -kerning first=1095 second=964 amount=-3 -kerning first=333 second=947 amount=-1 -kerning first=336 second=372 amount=-2 -kerning first=95 second=945 amount=-1 -kerning first=238 second=1240 amount=-2 -kerning first=956 second=219 amount=-2 -kerning first=1224 second=1108 amount=-1 -kerning first=258 second=1069 amount=-1 -kerning first=1036 second=121 amount=-2 -kerning first=289 second=243 amount=-1 -kerning first=8249 second=196 amount=-1 -kerning first=1067 second=1028 amount=-2 -kerning first=310 second=1263 amount=-2 -kerning first=8361 second=336 amount=-2 -kerning first=931 second=232 amount=-1 -kerning first=1176 second=1176 amount=-1 -kerning first=365 second=244 amount=-1 -kerning first=958 second=374 amount=-5 -kerning first=125 second=106 amount=1 -kerning first=40 second=118 amount=-4 -kerning first=1041 second=71 amount=-2 -kerning first=176 second=962 amount=-1 -kerning first=60 second=283 amount=-1 -kerning first=1075 second=233 amount=-1 -kerning first=318 second=333 amount=-1 -kerning first=1103 second=375 amount=-1 -kerning first=341 second=949 amount=-1 -kerning first=103 second=359 amount=-1 -kerning first=123 second=1026 amount=-5 -kerning first=126 second=286 amount=-2 -kerning first=38 second=1046 amount=-2 -kerning first=1044 second=246 amount=-1 -kerning first=184 second=218 amount=-2 -kerning first=296 second=346 amount=-1 -kerning first=8260 second=1035 amount=-5 -kerning first=64 second=230 amount=-1 -kerning first=204 second=360 amount=-2 -kerning first=321 second=964 amount=-3 -kerning first=327 second=45 amount=-2 -kerning first=1117 second=85 amount=-2 -kerning first=944 second=97 amount=-1 -kerning first=250 second=219 amount=-2 -kerning first=367 second=1108 amount=-1 -kerning first=967 second=259 amount=-1 -kerning first=163 second=231 amount=-1 -kerning first=269 second=1175 amount=-1 -kerning first=273 second=361 amount=-1 -kerning first=8216 second=74 amount=-4 -kerning first=276 second=121 amount=-1 -kerning first=185 second=373 amount=-4 -kerning first=297 second=1028 amount=-2 -kerning first=300 second=288 amount=-2 -kerning first=62 second=1263 amount=-1 -kerning first=1078 second=1095 amount=-1 -kerning first=1081 second=336 amount=-2 -kerning first=903 second=350 amount=-1 -kerning first=354 second=122 amount=-1 -kerning first=942 second=966 amount=-1 -kerning first=248 second=1203 amount=-2 -kerning first=251 second=374 amount=-5 -kerning first=374 second=289 amount=-4 -kerning first=280 second=71 amount=-2 -kerning first=1051 second=351 amount=-1 -kerning first=1063 second=111 amount=-1 -kerning first=192 second=83 amount=-1 -kerning first=304 second=233 amount=-1 -kerning first=69 second=333 amount=-1 -kerning first=330 second=375 amount=-1 -kerning first=92 second=257 amount=-1 -kerning first=89 second=949 amount=-4 -kerning first=1170 second=210 amount=-2 -kerning first=1219 second=352 amount=-1 -kerning first=258 second=84 amount=-5 -kerning first=378 second=234 amount=-1 -kerning first=168 second=334 amount=-2 -kerning first=165 second=1090 amount=-3 -kerning first=8222 second=199 amount=-1 -kerning first=47 second=1107 amount=-1 -kerning first=50 second=346 amount=-1 -kerning first=1064 second=291 amount=-1 -kerning first=73 second=273 amount=-1 -kerning first=70 second=964 amount=-3 -kerning first=76 second=45 amount=-3 -kerning first=327 second=8249 amount=-3 -kerning first=915 second=235 amount=-1 -kerning first=1171 second=365 amount=-1 -kerning first=236 second=335 amount=-1 -kerning first=239 second=97 amount=-1 -kerning first=113 second=1108 amount=-1 -kerning first=169 second=965 amount=-1 -kerning first=8224 second=354 amount=-5 -kerning first=51 second=1028 amount=-2 -kerning first=54 second=288 amount=-2 -kerning first=77 second=220 amount=-2 -kerning first=94 second=1176 amount=-1 -kerning first=1174 second=1063 amount=-2 -kerning first=237 second=966 amount=-1 -kerning first=243 second=47 amount=-1 -kerning first=240 second=275 amount=-1 -kerning first=960 second=87 amount=-5 -kerning first=120 second=289 amount=-1 -kerning first=38 second=71 amount=-2 -kerning first=1035 second=249 amount=-1 -kerning first=177 second=221 amount=-5 -kerning first=291 second=111 amount=-1 -kerning first=8225 second=1038 amount=-2 -kerning first=58 second=233 amount=-1 -kerning first=198 second=363 amount=-1 -kerning first=195 second=1177 amount=-1 -kerning first=8363 second=226 amount=-1 -kerning first=78 second=375 amount=-1 -kerning first=1098 second=1078 amount=-2 -kerning first=221 second=290 amount=-3 -kerning first=928 second=338 amount=-2 -kerning first=95 second=8211 amount=-2 -kerning first=936 second=100 amount=-1 -kerning first=1178 second=941 amount=-1 -kerning first=124 second=234 amount=-1 -kerning first=1299 second=1241 amount=-1 -kerning first=39 second=246 amount=-1 -kerning first=1039 second=199 amount=-2 -kerning first=178 second=376 amount=-5 -kerning first=289 second=1035 amount=-5 -kerning first=294 second=291 amount=-1 -kerning first=1074 second=339 amount=-1 -kerning first=196 second=8212 amount=-2 -kerning first=1078 second=101 amount=-2 -kerning first=900 second=113 amount=-1 -kerning first=76 second=8249 amount=-3 -kerning first=1102 second=955 amount=-1 -kerning first=1107 second=263 amount=-1 -kerning first=965 second=212 amount=-2 -kerning first=1037 second=1118 amount=-1 -kerning first=1041 second=354 amount=-5 -kerning first=176 second=8250 amount=-1 -kerning first=63 second=336 amount=-2 -kerning first=206 second=248 amount=-1 -kerning first=86 second=260 amount=-6 -kerning first=246 second=1076 amount=-1 -kerning first=252 second=87 amount=-5 -kerning first=963 second=1185 amount=-3 -kerning first=162 second=337 amount=-1 -kerning first=165 second=99 amount=-1 -kerning first=271 second=940 amount=-1 -kerning first=47 second=111 amount=-2 -kerning first=1044 second=1038 amount=-1 -kerning first=184 second=953 amount=-1 -kerning first=1084 second=226 amount=-1 -kerning first=210 second=198 amount=-2 -kerning first=8378 second=268 amount=-2 -kerning first=90 second=210 amount=-1 -kerning first=1117 second=368 amount=-2 -kerning first=113 second=112 amount=2 -kerning first=253 second=262 amount=-2 -kerning first=376 second=187 amount=-2 -kerning first=373 second=1241 amount=-1 -kerning first=964 second=8220 amount=-3 -kerning first=163 second=968 amount=-1 -kerning first=166 second=277 amount=-1 -kerning first=45 second=1035 amount=-4 -kerning first=48 second=291 amount=-1 -kerning first=191 second=211 amount=-2 -kerning first=303 second=339 amount=-1 -kerning first=306 second=101 amount=-1 -kerning first=300 second=1098 amount=-3 -kerning first=214 second=113 amount=-1 -kerning first=91 second=365 amount=-1 -kerning first=1118 second=1066 amount=-5 -kerning first=1223 second=240 amount=-1 -kerning first=374 second=1099 amount=-3 -kerning first=971 second=943 amount=-1 -kerning first=170 second=224 amount=-1 -kerning first=280 second=354 amount=-5 -kerning first=8217 second=1044 amount=-3 -kerning first=8225 second=67 amount=-2 -kerning first=189 second=1184 amount=-5 -kerning first=192 second=366 amount=-2 -kerning first=304 second=970 amount=-1 -kerning first=75 second=171 amount=-3 -kerning first=238 second=225 amount=-1 -kerning first=358 second=355 amount=-1 -kerning first=361 second=115 amount=-1 -kerning first=258 second=367 amount=-1 -kerning first=255 second=1185 amount=-3 -kerning first=8226 second=242 amount=-1 -kerning first=1064 second=1101 amount=-1 -kerning first=314 second=226 amount=-1 -kerning first=79 second=88 amount=-3 -kerning first=1099 second=268 amount=-2 -kerning first=915 second=972 amount=-1 -kerning first=96 second=941 amount=-1 -kerning first=923 second=281 amount=-1 -kerning first=119 second=1241 amount=-1 -kerning first=256 second=8220 amount=-3 -kerning first=37 second=199 amount=-2 -kerning first=1037 second=117 amount=-1 -kerning first=172 second=1079 amount=-1 -kerning first=179 second=89 amount=-5 -kerning first=54 second=1098 amount=-3 -kerning first=57 second=339 amount=-1 -kerning first=60 second=101 amount=-1 -kerning first=200 second=251 amount=-1 -kerning first=80 second=263 amount=-1 -kerning first=1103 second=216 amount=-2 -kerning first=338 second=1066 amount=-5 -kerning first=335 second=8221 amount=-1 -kerning first=934 second=228 amount=-1 -kerning first=955 second=1194 amount=-2 -kerning first=960 second=370 amount=-2 -kerning first=35 second=1118 amount=-1 -kerning first=38 second=354 amount=-5 -kerning first=1044 second=67 amount=-1 -kerning first=180 second=266 amount=-2 -kerning first=184 second=39 amount=-3 -kerning first=61 second=279 amount=-1 -kerning first=58 second=970 amount=-1 -kerning first=8363 second=963 amount=-1 -kerning first=8366 second=271 amount=-1 -kerning first=84 second=213 amount=-1 -kerning first=221 second=1100 amount=-3 -kerning first=928 second=1257 amount=-1 -kerning first=107 second=115 amount=-1 -kerning first=247 second=267 amount=-1 -kerning first=1046 second=242 amount=-2 -kerning first=185 second=214 amount=-2 -kerning first=294 second=1101 amount=-1 -kerning first=65 second=226 amount=-1 -kerning first=1074 second=1262 amount=-2 -kerning first=205 second=356 amount=-5 -kerning first=325 second=268 amount=-2 -kerning first=1118 second=81 amount=-2 -kerning first=1203 second=243 amount=-1 -kerning first=164 second=227 amount=-1 -kerning first=274 second=357 amount=-1 -kerning first=186 second=369 amount=-1 -kerning first=298 second=973 amount=-1 -kerning first=1083 second=332 amount=-2 -kerning first=330 second=216 amount=-2 -kerning first=8377 second=374 amount=-5 -kerning first=86 second=1066 amount=-5 -kerning first=249 second=1194 amount=-2 -kerning first=252 second=370 amount=-2 -kerning first=375 second=283 amount=-1 -kerning first=162 second=1256 amount=-2 -kerning first=193 second=79 amount=-2 -kerning first=305 second=229 amount=-1 -kerning first=70 second=328 amount=-1 -kerning first=1084 second=963 amount=-1 -kerning first=1090 second=271 amount=-1 -kerning first=327 second=1195 amount=-1 -kerning first=905 second=1026 amount=-5 -kerning first=93 second=253 amount=-1 -kerning first=910 second=286 amount=-3 -kerning first=951 second=218 amount=-2 -kerning first=1220 second=346 amount=-1 -kerning first=973 second=360 amount=-2 -kerning first=282 second=242 amount=-1 -kerning first=48 second=1101 amount=-1 -kerning first=191 second=945 amount=-1 -kerning first=306 second=1240 amount=-2 -kerning first=303 second=1262 amount=-2 -kerning first=74 second=268 amount=-2 -kerning first=338 second=81 amount=-2 -kerning first=916 second=231 amount=-1 -kerning first=952 second=373 amount=-4 -kerning first=1223 second=1028 amount=-2 -kerning first=35 second=117 amount=-1 -kerning first=174 second=269 amount=-1 -kerning first=8225 second=350 amount=-1 -kerning first=52 second=973 amount=-1 -kerning first=313 second=332 amount=-1 -kerning first=78 second=216 amount=-2 -kerning first=101 second=118 amount=-1 -kerning first=238 second=962 amount=-1 -kerning first=364 second=193 amount=-2 -kerning first=121 second=283 amount=-1 -kerning first=118 second=974 amount=-1 -kerning first=1299 second=233 amount=-1 -kerning first=1036 second=245 amount=-2 -kerning first=178 second=217 amount=-2 -kerning first=59 second=229 amount=-1 -kerning first=202 second=119 amount=-4 -kerning first=314 second=963 amount=-1 -kerning first=317 second=271 amount=-1 -kerning first=76 second=1195 amount=-1 -kerning first=931 second=334 amount=-2 -kerning first=923 second=1090 amount=-3 -kerning first=1186 second=246 amount=-1 -kerning first=365 second=346 amount=-1 -kerning first=125 second=230 amount=-1 -kerning first=262 second=1174 amount=-2 -kerning first=40 second=242 amount=-1 -kerning first=176 second=947 amount=-4 -kerning first=179 second=372 amount=-5 -kerning first=60 second=1240 amount=-2 -kerning first=57 second=1262 amount=-2 -kerning first=1075 second=335 amount=-1 -kerning first=323 second=219 amount=-2 -kerning first=80 second=1069 amount=-1 -kerning first=86 second=81 amount=-2 -kerning first=934 second=965 amount=-1 -kerning first=246 second=373 amount=-1 -kerning first=369 second=288 amount=-2 -kerning first=123 second=1263 amount=-1 -kerning first=299 second=232 amount=-1 -kerning first=64 second=332 amount=-2 -kerning first=1080 second=275 amount=-1 -kerning first=207 second=244 amount=-1 -kerning first=1076 second=966 amount=-1 -kerning first=902 second=289 amount=-1 -kerning first=8378 second=87 amount=-5 -kerning first=87 second=256 amount=-5 -kerning first=944 second=221 amount=-5 -kerning first=244 second=8230 amount=-1 -kerning first=1207 second=111 amount=-1 -kerning first=253 second=83 amount=-1 -kerning first=373 second=233 amount=-1 -kerning first=967 second=363 amount=-1 -kerning first=964 second=1177 amount=-1 -kerning first=163 second=333 amount=-1 -kerning first=276 second=245 amount=-1 -kerning first=8216 second=198 amount=-3 -kerning first=1049 second=290 amount=-2 -kerning first=185 second=949 amount=-1 -kerning first=188 second=257 amount=-1 -kerning first=65 second=963 amount=-1 -kerning first=211 second=194 amount=-2 -kerning first=332 second=84 amount=-2 -kerning first=906 second=234 amount=-1 -kerning first=1118 second=364 amount=-2 -kerning first=228 second=1090 amount=-1 -kerning first=354 second=246 amount=-3 -kerning first=1210 second=291 amount=-1 -kerning first=965 second=8212 amount=-2 -kerning first=968 second=1059 amount=-2 -kerning first=167 second=273 amount=-1 -kerning first=170 second=45 amount=-2 -kerning first=164 second=964 amount=-3 -kerning first=8217 second=353 amount=-1 -kerning first=8221 second=113 amount=-1 -kerning first=49 second=287 amount=-1 -kerning first=1063 second=235 amount=-1 -kerning first=304 second=335 amount=-1 -kerning first=72 second=219 amount=-2 -kerning first=209 second=1108 amount=-1 -kerning first=92 second=361 amount=-1 -kerning first=95 second=121 amount=-1 -kerning first=89 second=1175 amount=-2 -kerning first=1026 second=248 amount=-1 -kerning first=53 second=232 amount=-1 -kerning first=193 second=362 amount=-2 -kerning first=190 second=1176 amount=-1 -kerning first=305 second=966 amount=-1 -kerning first=310 second=275 amount=-2 -kerning first=73 second=374 amount=-5 -kerning first=1090 second=1076 amount=-3 -kerning first=1099 second=87 amount=-5 -kerning first=213 second=1033 amount=-1 -kerning first=910 second=1096 amount=-3 -kerning first=915 second=337 amount=-1 -kerning first=923 second=99 amount=-1 -kerning first=1176 second=249 amount=-1 -kerning first=1171 second=940 amount=-1 -kerning first=239 second=221 amount=-5 -kerning first=356 second=1114 amount=-2 -kerning first=951 second=953 amount=-1 -kerning first=954 second=261 amount=-1 -kerning first=119 second=233 amount=-1 -kerning first=256 second=1177 amount=-1 -kerning first=34 second=245 amount=-1 -kerning first=1034 second=198 amount=-1 -kerning first=172 second=375 amount=-1 -kerning first=287 second=290 amount=-2 -kerning first=191 second=8211 amount=-2 -kerning first=1071 second=100 amount=-1 -kerning first=80 second=84 amount=-5 -kerning first=338 second=364 amount=-2 -kerning first=916 second=968 amount=-1 -kerning first=926 second=277 amount=-1 -kerning first=100 second=246 amount=-1 -kerning first=1184 second=199 amount=-3 -kerning first=240 second=376 amount=-5 -kerning first=363 second=291 amount=-1 -kerning first=960 second=211 amount=-2 -kerning first=1298 second=339 amount=-1 -kerning first=1257 second=1098 amount=-1 -kerning first=260 second=1059 amount=-2 -kerning first=1035 second=353 amount=-1 -kerning first=170 second=8249 amount=-3 -kerning first=180 second=85 amount=-2 -kerning first=291 second=235 amount=-1 -kerning first=58 second=335 amount=-1 -kerning first=61 second=97 amount=-1 -kerning first=936 second=224 amount=-1 -kerning first=238 second=8250 amount=-1 -kerning first=956 second=1184 amount=-5 -kerning first=124 second=336 amount=-2 -kerning first=1299 second=970 amount=-1 -kerning first=1046 second=63 amount=-2 -kerning first=59 second=966 amount=-1 -kerning first=62 second=275 amount=-1 -kerning first=1078 second=225 amount=-1 -kerning first=325 second=87 amount=-5 -kerning first=8369 second=267 amount=-1 -kerning first=1102 second=1185 amount=-1 -kerning first=343 second=940 amount=-1 -kerning first=105 second=351 amount=-1 -kerning first=108 second=111 amount=-1 -kerning first=1186 second=1038 amount=-1 -kerning first=43 second=290 amount=-2 -kerning first=186 second=210 amount=-2 -kerning first=298 second=338 amount=-2 -kerning first=301 second=100 amount=-1 -kerning first=206 second=352 amount=-1 -kerning first=901 second=1241 amount=-1 -kerning first=904 second=187 amount=-1 -kerning first=86 second=364 amount=-2 -kerning first=1103 second=8220 amount=-3 -kerning first=946 second=89 amount=-5 -kerning first=252 second=211 amount=-2 -kerning first=369 second=1098 amount=-3 -kerning first=375 second=101 amount=-1 -kerning first=372 second=339 amount=-3 -kerning first=278 second=113 amount=-1 -kerning first=1241 second=955 amount=-1 -kerning first=47 second=235 amount=-2 -kerning first=67 second=377 amount=-1 -kerning first=8372 second=1194 amount=-2 -kerning first=8378 second=370 amount=-2 -kerning first=1117 second=943 amount=-1 -kerning first=1168 second=252 amount=-1 -kerning first=356 second=114 amount=-2 -kerning first=948 second=266 amount=-2 -kerning first=951 second=39 amount=-3 -kerning first=250 second=1184 amount=-5 -kerning first=253 second=366 amount=-2 -kerning first=376 second=279 amount=-4 -kerning first=169 second=171 amount=-3 -kerning first=185 second=8217 amount=-3 -kerning first=306 second=225 amount=-1 -kerning first=74 second=87 amount=-5 -kerning first=1094 second=267 amount=-1 -kerning first=328 second=1185 amount=-1 -kerning first=91 second=940 amount=-1 -kerning first=94 second=249 amount=-1 -kerning first=952 second=214 amount=-2 -kerning first=1210 second=1101 amount=-1 -kerning first=52 second=338 amount=-2 -kerning first=55 second=100 amount=-1 -kerning first=195 second=250 amount=-1 -kerning first=192 second=941 amount=-1 -kerning first=1063 second=972 amount=-1 -kerning first=75 second=262 amount=-3 -kerning first=215 second=1241 amount=-1 -kerning first=330 second=8220 amount=-3 -kerning first=950 second=1187 amount=-2 -kerning first=118 second=339 amount=-1 -kerning first=1224 second=973 amount=-1 -kerning first=121 second=101 amount=-1 -kerning first=381 second=381 amount=1 -kerning first=36 second=113 amount=-1 -kerning first=175 second=263 amount=-1 -kerning first=1096 second=1194 amount=-2 -kerning first=1099 second=370 amount=-2 -kerning first=915 second=1256 amount=-2 -kerning first=96 second=1118 amount=-1 -kerning first=1186 second=67 amount=-1 -kerning first=245 second=39 amount=-1 -kerning first=962 second=79 amount=-2 -kerning first=122 second=279 amount=-1 -kerning first=179 second=213 amount=-2 -kerning first=8230 second=1026 amount=-5 -kerning first=60 second=225 amount=-1 -kerning first=200 second=355 amount=-1 -kerning first=203 second=115 amount=-1 -kerning first=318 second=267 amount=-1 -kerning first=8365 second=218 amount=-2 -kerning first=77 second=1185 amount=-3 -kerning first=80 second=367 amount=-1 -kerning first=100 second=1038 amount=-2 -kerning first=1187 second=242 amount=-1 -kerning first=363 second=1101 amount=-1 -kerning first=960 second=945 amount=-1 -kerning first=126 second=226 amount=-1 -kerning first=1298 second=1262 amount=-2 -kerning first=268 second=356 amount=-1 -kerning first=271 second=116 amount=-1 -kerning first=180 second=368 amount=-2 -kerning first=291 second=972 amount=-1 -kerning first=296 second=281 amount=-1 -kerning first=8366 second=373 amount=-4 -kerning first=78 second=8220 amount=-3 -kerning first=936 second=961 amount=-1 -kerning first=247 second=369 amount=-1 -kerning first=367 second=973 amount=-1 -kerning first=1049 second=106 amount=1 -kerning first=182 second=1066 amount=-5 -kerning first=178 second=8221 amount=-3 -kerning first=300 second=228 amount=-1 -kerning first=68 second=90 amount=-1 -kerning first=1078 second=962 amount=-2 -kerning first=322 second=1194 amount=-2 -kerning first=325 second=370 amount=-2 -kerning first=903 second=283 amount=-1 -kerning first=88 second=252 amount=-1 -kerning first=354 second=67 amount=-1 -kerning first=245 second=8222 amount=-1 -kerning first=254 second=79 amount=-2 -kerning first=374 second=229 amount=-4 -kerning first=971 second=119 amount=-4 -kerning first=968 second=359 amount=-1 -kerning first=274 second=920 amount=-2 -kerning first=8217 second=194 amount=-3 -kerning first=49 second=103 amount=-1 -kerning first=1051 second=286 amount=-2 -kerning first=1047 second=1026 amount=-1 -kerning first=189 second=253 amount=-1 -kerning first=298 second=1257 amount=-1 -kerning first=69 second=267 amount=-1 -kerning first=1087 second=218 amount=-2 -kerning first=1119 second=360 amount=-2 -kerning first=352 second=923 amount=-1 -kerning first=943 second=947 amount=-2 -kerning first=946 second=372 amount=-5 -kerning first=1219 second=287 amount=-1 -kerning first=252 second=945 amount=-1 -kerning first=375 second=1240 amount=-2 -kerning first=168 second=268 amount=-2 -kerning first=47 second=972 amount=-1 -kerning first=50 second=281 amount=-1 -kerning first=1064 second=231 amount=-1 -kerning first=905 second=1263 amount=-1 -kerning first=96 second=117 amount=-1 -kerning first=93 second=357 amount=-1 -kerning first=236 second=269 amount=-1 -kerning first=113 second=973 amount=-1 -kerning first=376 second=1085 amount=-3 -kerning first=379 second=332 amount=-1 -kerning first=1027 second=244 amount=-1 -kerning first=172 second=216 amount=-2 -kerning first=287 second=106 amount=1 -kerning first=8224 second=289 amount=-1 -kerning first=8220 second=1033 amount=-3 -kerning first=54 second=228 amount=-1 -kerning first=197 second=118 amount=-4 -kerning first=306 second=962 amount=-1 -kerning first=74 second=370 amount=-2 -kerning first=916 second=333 amount=-1 -kerning first=100 second=67 amount=-2 -kerning first=240 second=217 amount=-2 -kerning first=952 second=949 amount=-1 -kerning first=955 second=257 amount=-1 -kerning first=120 second=229 amount=-1 -kerning first=260 second=359 amount=-1 -kerning first=263 second=119 amount=-1 -kerning first=380 second=963 amount=-1 -kerning first=170 second=1195 amount=-1 -kerning first=174 second=371 amount=-1 -kerning first=8240 second=234 amount=-1 -kerning first=52 second=1257 amount=-1 -kerning first=1066 second=1090 amount=-2 -kerning first=316 second=218 amount=-2 -kerning first=221 second=230 amount=-4 -kerning first=336 second=1174 amount=-3 -kerning first=928 second=273 amount=-1 -kerning first=936 second=45 amount=-2 -kerning first=238 second=947 amount=-4 -kerning first=121 second=1240 amount=-2 -kerning first=1299 second=335 amount=-1 -kerning first=175 second=1069 amount=-1 -kerning first=182 second=81 amount=-2 -kerning first=294 second=231 amount=-1 -kerning first=202 second=243 amount=-1 -kerning first=317 second=373 amount=-4 -kerning first=962 second=362 amount=-2 -kerning first=958 second=1176 amount=-1 -kerning first=125 second=332 amount=-2 -kerning first=43 second=106 amount=1 -kerning first=1041 second=289 amount=-1 -kerning first=60 second=962 amount=-1 -kerning first=8370 second=261 amount=-1 -kerning first=8365 second=953 amount=-1 -kerning first=901 second=233 amount=-1 -kerning first=1103 second=1177 amount=-1 -kerning first=249 second=257 amount=-1 -kerning first=960 second=8211 amount=-2 -kerning first=126 second=963 amount=-1 -kerning first=162 second=271 amount=-1 -kerning first=41 second=1026 amount=-5 -kerning first=1048 second=234 amount=-1 -kerning first=44 second=286 amount=-1 -kerning first=296 second=1090 amount=-3 -kerning first=299 second=334 amount=-2 -kerning first=1080 second=376 amount=-5 -kerning first=207 second=346 amount=-1 -kerning first=8378 second=211 amount=-2 -kerning first=227 second=964 amount=-1 -kerning first=936 second=8249 amount=-3 -kerning first=948 second=85 amount=-2 -kerning first=1207 second=235 amount=-1 -kerning first=373 second=335 amount=-1 -kerning first=376 second=97 amount=-4 -kerning first=166 second=219 amount=-2 -kerning first=273 second=1108 amount=-1 -kerning first=276 second=347 amount=-1 -kerning first=48 second=231 amount=-1 -kerning first=188 second=361 amount=-1 -kerning first=191 second=121 amount=-1 -kerning first=300 second=965 amount=-1 -kerning first=1078 second=8250 amount=-1 -kerning first=906 second=336 amount=-2 -kerning first=1169 second=248 amount=-1 -kerning first=354 second=350 amount=-1 -kerning first=114 second=232 amount=-1 -kerning first=251 second=1176 amount=-1 -kerning first=254 second=362 amount=-2 -kerning first=374 second=966 amount=-4 -kerning first=377 second=275 amount=-1 -kerning first=167 second=374 amount=-5 -kerning first=280 second=289 amount=-1 -kerning first=1063 second=337 amount=-1 -kerning first=195 second=71 amount=-2 -kerning first=1095 second=261 amount=-1 -kerning first=1087 second=953 amount=-1 -kerning first=215 second=233 amount=-1 -kerning first=75 second=83 amount=-1 -kerning first=330 second=1177 amount=-1 -kerning first=908 second=967 amount=-1 -kerning first=95 second=245 amount=-1 -kerning first=358 second=290 amount=-2 -kerning first=112 second=1299 amount=-1 -kerning first=1224 second=338 amount=-2 -kerning first=252 second=8211 amount=-2 -kerning first=1026 second=352 amount=-1 -kerning first=175 second=84 amount=-5 -kerning first=8226 second=187 amount=-1 -kerning first=53 second=334 amount=-2 -kerning first=50 second=1090 amount=-3 -kerning first=1064 second=968 amount=-1 -kerning first=196 second=246 amount=-1 -kerning first=1067 second=277 amount=-1 -kerning first=8361 second=89 amount=-5 -kerning first=1099 second=211 amount=-2 -kerning first=1176 second=353 amount=-1 -kerning first=1179 second=113 amount=-1 -kerning first=119 second=335 amount=-1 -kerning first=34 second=347 amount=-1 -kerning first=176 second=259 amount=-1 -kerning first=179 second=34 amount=-3 -kerning first=54 second=965 amount=-1 -kerning first=1071 second=224 amount=-1 -kerning first=306 second=8250 amount=-1 -kerning first=8365 second=39 amount=-3 -kerning first=341 second=248 amount=-1 -kerning first=934 second=171 amount=-3 -kerning first=100 second=350 amount=-1 -kerning first=952 second=8217 amount=-3 -kerning first=123 second=275 amount=-1 -kerning first=120 second=966 amount=-2 -kerning first=268 second=197 amount=-1 -kerning first=38 second=289 amount=-1 -kerning first=291 second=337 amount=-1 -kerning first=296 second=99 amount=-1 -kerning first=61 second=221 amount=-5 -kerning first=201 second=351 amount=-1 -kerning first=204 second=111 amount=-1 -kerning first=316 second=953 amount=-1 -kerning first=321 second=261 amount=-1 -kerning first=8366 second=214 amount=-2 -kerning first=78 second=1177 amount=-1 -kerning first=221 second=967 amount=-2 -kerning first=247 second=210 amount=-2 -kerning first=367 second=338 amount=-2 -kerning first=964 second=250 amount=-1 -kerning first=42 second=234 amount=-1 -kerning first=1039 second=1241 amount=-1 -kerning first=182 second=364 amount=-2 -kerning first=1046 second=187 amount=-1 -kerning first=294 second=968 amount=-1 -kerning first=297 second=277 amount=-1 -kerning first=62 second=376 amount=-5 -kerning first=1074 second=1079 amount=-1 -kerning first=1081 second=89 amount=-5 -kerning first=202 second=1035 amount=-5 -kerning first=205 second=291 amount=-1 -kerning first=325 second=211 amount=-2 -kerning first=8369 second=369 amount=-1 -kerning first=900 second=339 amount=-1 -kerning first=903 second=101 amount=-1 -kerning first=942 second=263 amount=-1 -kerning first=108 second=235 amount=-1 -kerning first=179 second=8216 amount=-3 -kerning first=301 second=224 amount=-1 -kerning first=60 second=8250 amount=-1 -kerning first=1083 second=266 amount=-2 -kerning first=1087 second=39 amount=-3 -kerning first=323 second=1184 amount=-5 -kerning first=904 second=279 amount=-1 -kerning first=901 second=970 amount=-1 -kerning first=89 second=248 amount=-4 -kerning first=946 second=213 amount=-2 -kerning first=1219 second=103 amount=-1 -kerning first=246 second=8217 amount=-1 -kerning first=375 second=225 amount=-1 -kerning first=168 second=87 amount=-5 -kerning first=1241 second=1185 amount=-1 -kerning first=47 second=337 amount=-1 -kerning first=50 second=99 amount=-1 -kerning first=190 second=249 amount=-1 -kerning first=70 second=261 amount=-1 -kerning first=8378 second=945 amount=-1 -kerning first=910 second=226 amount=-4 -kerning first=1168 second=356 amount=-5 -kerning first=1171 second=116 amount=-1 -kerning first=230 second=1078 amount=-2 -kerning first=948 second=368 amount=-2 -kerning first=113 second=338 amount=-2 -kerning first=1220 second=281 amount=-1 -kerning first=256 second=250 amount=-1 -kerning first=253 second=941 amount=-1 -kerning first=1207 second=972 amount=-1 -kerning first=376 second=380 amount=-2 -kerning first=169 second=262 amount=-2 -kerning first=282 second=187 amount=-1 -kerning first=48 second=968 amount=-1 -kerning first=51 second=277 amount=-1 -kerning first=194 second=199 amount=-2 -kerning first=303 second=1079 amount=-1 -kerning first=74 second=211 amount=-2 -kerning first=214 second=339 amount=-1 -kerning first=94 second=353 amount=-1 -kerning first=234 second=955 amount=-1 -kerning first=237 second=263 amount=-1 -kerning first=174 second=212 amount=-2 -kerning first=8225 second=283 amount=-1 -kerning first=55 second=224 amount=-1 -kerning first=1063 second=1256 amount=-2 -kerning first=195 second=354 amount=-5 -kerning first=192 second=1118 amount=-1 -kerning first=313 second=266 amount=-1 -kerning first=316 second=39 amount=-3 -kerning first=72 second=1184 amount=-5 -kerning first=215 second=970 amount=-1 -kerning first=101 second=63 amount=-2 -kerning first=956 second=253 amount=-1 -kerning first=1224 second=1257 amount=-1 -kerning first=121 second=225 amount=-1 -kerning first=175 second=367 amount=-1 -kerning first=196 second=1038 amount=-2 -kerning first=317 second=214 amount=-2 -kerning first=8361 second=372 amount=-5 -kerning first=1099 second=945 amount=-1 -kerning first=931 second=268 amount=-2 -kerning first=365 second=281 amount=-1 -kerning first=270 second=65 amount=-2 -kerning first=37 second=1241 amount=-1 -kerning first=40 second=187 amount=-1 -kerning first=172 second=8220 amount=-3 -kerning first=8230 second=1263 amount=-1 -kerning first=63 second=89 amount=-5 -kerning first=57 second=1079 amount=-1 -kerning first=1075 second=269 amount=-1 -kerning first=318 second=369 amount=-1 -kerning first=240 second=8221 amount=-3 -kerning first=369 second=228 amount=-1 -kerning first=966 second=118 amount=-1 -kerning first=268 second=916 amount=-1 -kerning first=271 second=240 amount=-1 -kerning first=44 second=102 amount=-2 -kerning first=1044 second=283 amount=-1 -kerning first=180 second=943 amount=-1 -kerning first=184 second=252 amount=-1 -kerning first=291 second=1256 amount=-2 -kerning first=64 second=266 amount=-2 -kerning first=1080 second=217 amount=-2 -kerning first=327 second=79 amount=-2 -kerning first=8366 second=949 amount=-1 -kerning first=902 second=229 amount=-1 -kerning first=8372 second=257 amount=-1 -kerning first=1117 second=119 amount=-4 -kerning first=936 second=1195 amount=-1 -kerning first=1194 second=1026 amount=-1 -kerning first=1202 second=286 amount=-1 -kerning first=250 second=253 amount=-1 -kerning first=367 second=1257 amount=-1 -kerning first=163 second=267 amount=-1 -kerning first=1049 second=230 amount=-1 -kerning first=1081 second=372 amount=-5 -kerning first=205 second=1101 amount=-1 -kerning first=325 second=945 amount=-1 -kerning first=900 second=1262 amount=-2 -kerning first=903 second=1240 amount=-2 -kerning first=91 second=116 amount=-1 -kerning first=942 second=1069 amount=-1 -kerning first=108 second=972 amount=-1 -kerning first=1210 second=231 amount=-1 -kerning first=374 second=331 amount=-3 -kerning first=971 second=243 amount=-1 -kerning first=49 second=227 amount=-1 -kerning first=189 second=357 amount=-1 -kerning first=192 second=117 amount=-1 -kerning first=304 second=269 amount=-1 -kerning first=69 second=369 amount=-1 -kerning first=209 second=973 amount=-1 -kerning first=8377 second=1176 amount=-1 -kerning first=1170 second=244 amount=-1 -kerning first=358 second=106 amount=1 -kerning first=258 second=118 amount=-4 -kerning first=375 second=962 amount=-1 -kerning first=165 second=1194 amount=-2 -kerning first=168 second=370 amount=-2 -kerning first=47 second=1256 amount=-2 -kerning first=1064 second=333 amount=-1 -kerning first=196 second=67 amount=-2 -kerning first=67 second=8222 amount=-1 -kerning first=76 second=79 amount=-1 -kerning first=1096 second=257 amount=-1 -kerning first=1090 second=949 amount=-1 -kerning first=8378 second=8211 amount=-2 -kerning first=337 second=119 amount=-1 -kerning first=915 second=271 amount=-1 -kerning first=910 second=963 amount=-4 -kerning first=93 second=920 amount=-2 -kerning first=236 second=371 amount=-1 -kerning first=113 second=1257 amount=-1 -kerning first=1220 second=1090 amount=-3 -kerning first=1027 second=346 amount=-1 -kerning first=287 second=230 amount=-1 -kerning first=1065 second=964 amount=-2 -kerning first=1071 second=45 amount=-2 -kerning first=197 second=242 amount=-1 -kerning first=306 second=947 amount=-4 -kerning first=74 second=945 amount=-1 -kerning first=214 second=1262 amount=-2 -kerning first=926 second=219 amount=-2 -kerning first=1174 second=1108 amount=-1 -kerning first=237 second=1069 amount=-1 -kerning first=363 second=231 amount=-1 -kerning first=955 second=361 amount=-1 -kerning first=960 second=121 amount=-1 -kerning first=1035 second=288 amount=-2 -kerning first=8240 second=336 amount=-2 -kerning first=58 second=269 amount=-1 -kerning first=1073 second=220 amount=-2 -kerning first=221 second=332 amount=-3 -kerning first=928 second=374 amount=-5 -kerning first=104 second=106 amount=1 -kerning first=1185 second=289 amount=-2 -kerning first=964 second=71 amount=-2 -kerning first=121 second=962 amount=-1 -kerning first=1240 second=1071 amount=-1 -kerning first=39 second=283 amount=-1 -kerning first=1039 second=233 amount=-1 -kerning first=294 second=333 amount=-1 -kerning first=62 second=217 amount=-2 -kerning first=1074 second=375 amount=-1 -kerning first=317 second=949 amount=-1 -kerning first=322 second=257 amount=-1 -kerning first=8369 second=210 amount=-2 -kerning first=1099 second=8211 amount=-2 -kerning first=346 second=194 amount=-1 -kerning first=942 second=84 amount=-5 -kerning first=105 second=286 amount=-2 -kerning first=365 second=1090 amount=-3 -kerning first=965 second=246 amount=-1 -kerning first=161 second=218 amount=-2 -kerning first=43 second=230 amount=-1 -kerning first=183 second=360 amount=-2 -kerning first=295 second=964 amount=-1 -kerning first=301 second=45 amount=-2 -kerning first=298 second=273 amount=-1 -kerning first=60 second=947 amount=-4 -kerning first=63 second=372 amount=-5 -kerning first=1071 second=8249 amount=-3 -kerning first=1083 second=85 amount=-2 -kerning first=206 second=287 amount=-1 -kerning first=8370 second=365 amount=-1 -kerning first=901 second=335 amount=-1 -kerning first=904 second=97 amount=-1 -kerning first=946 second=34 amount=-3 -kerning first=246 second=1175 amount=-2 -kerning first=249 second=361 amount=-1 -kerning first=252 second=121 amount=-1 -kerning first=369 second=965 amount=-1 -kerning first=162 second=373 amount=-4 -kerning first=271 second=1028 amount=-2 -kerning first=41 second=1263 amount=-1 -kerning first=1048 second=336 amount=-2 -kerning first=302 second=220 amount=-2 -kerning first=327 second=362 amount=-2 -kerning first=8366 second=8217 amount=-3 -kerning first=902 second=966 amount=-1 -kerning first=910 second=47 amount=-4 -kerning first=905 second=275 amount=-1 -kerning first=90 second=244 amount=-1 -kerning first=1220 second=99 amount=-1 -kerning first=256 second=71 amount=-2 -kerning first=1207 second=337 amount=-1 -kerning first=973 second=111 amount=-1 -kerning first=169 second=83 amount=-1 -kerning first=48 second=333 amount=-1 -kerning first=191 second=245 amount=-1 -kerning first=303 second=375 amount=-1 -kerning first=325 second=8211 amount=-2 -kerning first=237 second=84 amount=-5 -kerning first=357 second=234 amount=-1 -kerning first=111 second=1090 amount=-1 -kerning first=1210 second=968 amount=-1 -kerning first=1223 second=277 amount=-1 -kerning first=971 second=1035 amount=-5 -kerning first=8221 second=339 amount=-1 -kerning first=8225 second=101 amount=-1 -kerning first=52 second=273 amount=-1 -kerning first=55 second=45 amount=-4 -kerning first=49 second=964 amount=-3 -kerning first=301 second=8249 amount=-3 -kerning first=313 second=85 amount=-1 -kerning first=1095 second=365 amount=-1 -kerning first=215 second=335 amount=-1 -kerning first=92 second=1108 amount=-1 -kerning first=95 second=347 amount=-1 -kerning first=238 second=259 amount=-1 -kerning first=241 second=34 amount=-1 -kerning first=946 second=8216 amount=-3 -kerning first=375 second=8250 amount=-1 -kerning first=1240 second=86 amount=-2 -kerning first=8226 second=279 amount=-1 -kerning first=56 second=220 amount=-2 -kerning first=196 second=350 amount=-1 -kerning first=8361 second=213 amount=-2 -kerning first=73 second=1176 amount=-1 -kerning first=76 second=362 amount=-1 -kerning first=222 second=47 amount=-1 -kerning first=931 second=87 amount=-5 -kerning first=365 second=99 amount=-1 -kerning first=958 second=249 amount=-1 -kerning first=954 second=940 amount=-2 -kerning first=37 second=233 amount=-1 -kerning first=172 second=1177 amount=-1 -kerning first=176 second=363 amount=-1 -kerning first=57 second=375 amount=-1 -kerning first=200 second=290 amount=-2 -kerning first=318 second=210 amount=-2 -kerning first=74 second=8211 amount=-2 -kerning first=1103 second=250 amount=-1 -kerning first=934 second=262 amount=-2 -kerning first=103 second=234 amount=-1 -kerning first=1184 second=1241 amount=-2 -kerning first=363 second=968 amount=-1 -kerning first=963 second=199 amount=-2 -kerning first=123 second=376 amount=-5 -kerning first=1298 second=1079 amount=-1 -kerning first=1035 second=1098 amount=-3 -kerning first=174 second=8212 amount=-2 -kerning first=177 second=1059 amount=-2 -kerning first=1044 second=101 amount=-1 -kerning first=55 second=8249 amount=-2 -kerning first=64 second=85 amount=-2 -kerning first=1076 second=263 amount=-1 -kerning first=204 second=235 amount=-1 -kerning first=321 second=365 amount=-1 -kerning first=8363 second=1066 amount=-5 -kerning first=241 second=8216 amount=-1 -kerning first=964 second=354 amount=-5 -kerning first=121 second=8250 amount=-1 -kerning first=42 second=336 amount=-2 -kerning first=1039 second=970 amount=-1 -kerning first=185 second=248 amount=-1 -kerning first=1046 second=279 amount=-2 -kerning first=300 second=171 amount=-3 -kerning first=1081 second=213 amount=-2 -kerning first=317 second=8217 amount=-3 -kerning first=903 second=225 amount=-1 -kerning first=1118 second=115 amount=-1 -kerning first=942 second=367 amount=-1 -kerning first=108 second=337 amount=-1 -kerning first=251 second=249 amount=-1 -kerning first=965 second=1038 amount=-2 -kerning first=164 second=261 amount=-1 -kerning first=161 second=953 amount=-1 -kerning first=1051 second=226 amount=-1 -kerning first=69 second=210 amount=-2 -kerning first=1083 second=368 amount=-2 -kerning first=209 second=338 amount=-2 -kerning first=330 second=250 amount=-1 -kerning first=86 second=1116 amount=-2 -kerning first=89 second=352 amount=-1 -kerning first=1219 second=227 amount=-1 -kerning first=255 second=199 amount=-2 -kerning first=168 second=211 amount=-2 -kerning first=275 second=1098 amount=-1 -kerning first=278 second=339 amount=-1 -kerning first=8222 second=54 amount=-1 -kerning first=190 second=353 amount=-1 -kerning first=193 second=113 amount=-1 -kerning first=310 second=38 amount=-2 -kerning first=305 second=263 amount=-1 -kerning first=70 second=365 amount=-1 -kerning first=1080 second=8221 amount=-3 -kerning first=1084 second=1066 amount=-5 -kerning first=1171 second=240 amount=-1 -kerning first=236 second=212 amount=-2 -kerning first=948 second=943 amount=-1 -kerning first=951 second=252 amount=-1 -kerning first=253 second=1118 amount=-1 -kerning first=256 second=354 amount=-5 -kerning first=379 second=266 amount=-1 -kerning first=166 second=1184 amount=-5 -kerning first=169 second=366 amount=-2 -kerning first=282 second=279 amount=-1 -kerning first=8224 second=229 amount=-1 -kerning first=54 second=171 amount=-3 -kerning first=197 second=63 amount=-5 -kerning first=338 second=115 amount=-1 -kerning first=916 second=267 amount=-1 -kerning first=237 second=367 amount=-1 -kerning first=234 second=1185 amount=-1 -kerning first=8225 second=1240 amount=-2 -kerning first=313 second=368 amount=-1 -kerning first=8363 second=81 amount=-2 -kerning first=78 second=250 amount=-1 -kerning first=75 second=941 amount=-2 -kerning first=235 second=8220 amount=-1 -kerning first=956 second=357 amount=-1 -kerning first=1299 second=269 amount=-1 -kerning first=124 second=89 amount=-5 -kerning first=36 second=339 amount=-1 -kerning first=39 second=101 amount=-1 -kerning first=178 second=251 amount=-1 -kerning first=59 second=263 amount=-1 -kerning first=1074 second=216 amount=-2 -kerning first=314 second=1066 amount=-5 -kerning first=343 second=240 amount=-1 -kerning first=923 second=1194 amount=-2 -kerning first=931 second=370 amount=-2 -kerning first=1186 second=283 amount=-1 -kerning first=965 second=67 amount=-2 -kerning first=125 second=266 amount=-2 -kerning first=161 second=39 amount=-3 -kerning first=37 second=970 amount=-1 -kerning first=40 second=279 amount=-1 -kerning first=1041 second=229 amount=-1 -kerning first=63 second=213 amount=-2 -kerning first=1071 second=1195 amount=-1 -kerning first=206 second=103 amount=-1 -kerning first=323 second=253 amount=-1 -kerning first=86 second=115 amount=-3 -kerning first=947 second=230 amount=-1 -kerning first=162 second=214 amount=-2 -kerning first=1044 second=1240 amount=-1 -kerning first=184 second=356 amount=-5 -kerning first=299 second=268 amount=-2 -kerning first=64 second=368 amount=-2 -kerning first=1084 second=81 amount=-2 -kerning first=204 second=972 amount=-1 -kerning first=207 second=281 amount=-1 -kerning first=8372 second=361 amount=-1 -kerning first=8378 second=121 amount=-1 -kerning first=1117 second=243 amount=-1 -kerning first=250 second=357 amount=-1 -kerning first=253 second=117 amount=-1 -kerning first=373 second=269 amount=-1 -kerning first=163 second=369 amount=-1 -kerning first=273 second=973 amount=-1 -kerning first=8216 second=232 amount=-1 -kerning first=45 second=381 amount=-2 -kerning first=1049 second=332 amount=-2 -kerning first=303 second=216 amount=-2 -kerning first=65 second=1066 amount=-5 -kerning first=62 second=8221 amount=-3 -kerning first=903 second=962 amount=-1 -kerning first=91 second=240 amount=-1 -kerning first=354 second=283 amount=-3 -kerning first=108 second=1256 amount=-2 -kerning first=111 second=382 amount=-1 -kerning first=1210 second=333 amount=-1 -kerning first=170 second=79 amount=-2 -kerning first=280 second=229 amount=-1 -kerning first=1051 second=963 amount=-1 -kerning first=1063 second=271 amount=-1 -kerning first=189 second=920 amount=-2 -kerning first=304 second=371 amount=-1 -kerning first=301 second=1195 amount=-1 -kerning first=72 second=253 amount=-1 -kerning first=209 second=1257 amount=-1 -kerning first=912 second=218 amount=-2 -kerning first=1170 second=346 amount=-1 -kerning first=358 second=230 amount=-1 -kerning first=950 second=360 amount=-2 -kerning first=112 second=1083 amount=-1 -kerning first=1219 second=964 amount=-3 -kerning first=1224 second=273 amount=-1 -kerning first=258 second=242 amount=-1 -kerning first=375 second=947 amount=-4 -kerning first=1026 second=287 amount=-1 -kerning first=168 second=945 amount=-1 -kerning first=278 second=1262 amount=-2 -kerning first=8226 second=97 amount=-1 -kerning first=53 second=268 amount=-2 -kerning first=1067 second=219 amount=-2 -kerning first=305 second=1069 amount=-1 -kerning first=314 second=81 amount=-2 -kerning first=8361 second=34 amount=-3 -kerning first=1096 second=361 amount=-1 -kerning first=1099 second=121 amount=-1 -kerning first=915 second=373 amount=-4 -kerning first=1171 second=1028 amount=-2 -kerning first=1176 second=288 amount=-2 -kerning first=356 second=1263 amount=-2 -kerning first=119 second=269 amount=-1 -kerning first=1263 second=220 amount=-2 -kerning first=287 second=332 amount=-2 -kerning first=8224 second=966 amount=-1 -kerning first=57 second=216 amount=-2 -kerning first=1068 second=374 amount=-5 -kerning first=200 second=106 amount=1 -kerning first=80 second=118 amount=-4 -kerning first=1103 second=71 amount=-2 -kerning first=934 second=83 amount=-1 -kerning first=100 second=283 amount=-1 -kerning first=1184 second=233 amount=-2 -kerning first=363 second=333 amount=-1 -kerning first=960 second=245 amount=-1 -kerning first=123 second=217 amount=-2 -kerning first=1298 second=375 amount=-1 -kerning first=38 second=229 amount=-1 -kerning first=180 second=119 amount=-4 -kerning first=177 second=359 amount=-1 -kerning first=291 second=271 amount=-1 -kerning first=55 second=1195 amount=-1 -kerning first=58 second=371 amount=-1 -kerning first=198 second=1026 amount=-5 -kerning first=201 second=286 amount=-2 -kerning first=8363 second=364 amount=-2 -kerning first=936 second=258 amount=-3 -kerning first=367 second=273 amount=-1 -kerning first=121 second=947 amount=-4 -kerning first=124 second=372 amount=-5 -kerning first=36 second=1262 amount=-2 -kerning first=1039 second=335 amount=-1 -kerning first=1046 second=97 amount=-1 -kerning first=297 second=219 amount=-2 -kerning first=59 second=1069 amount=-1 -kerning first=65 second=81 amount=-2 -kerning first=1081 second=34 amount=-3 -kerning first=205 second=231 amount=-1 -kerning first=1078 second=259 amount=-1 -kerning first=322 second=361 amount=-1 -kerning first=8361 second=8216 amount=-3 -kerning first=325 second=121 amount=-1 -kerning first=222 second=1202 amount=-3 -kerning first=225 second=373 amount=-1 -kerning first=371 second=220 amount=-2 -kerning first=965 second=350 amount=-1 -kerning first=274 second=232 amount=-1 -kerning first=43 second=332 amount=-2 -kerning first=1041 second=966 amount=-1 -kerning first=186 second=244 amount=-1 -kerning first=298 second=374 amount=-5 -kerning first=66 second=256 amount=-1 -kerning first=330 second=71 amount=-2 -kerning first=8377 second=249 amount=-1 -kerning first=8370 second=940 amount=-1 -kerning first=904 second=221 amount=-5 -kerning first=89 second=193 amount=-5 -kerning first=1119 second=111 amount=-1 -kerning first=1116 second=351 amount=-1 -kerning first=252 second=245 amount=-1 -kerning first=372 second=375 amount=-1 -kerning first=162 second=949 amount=-1 -kerning first=165 second=257 amount=-1 -kerning first=47 second=271 amount=-1 -kerning first=305 second=84 amount=-5 -kerning first=1084 second=364 amount=-2 -kerning first=207 second=1090 amount=-3 -kerning first=905 second=376 amount=-5 -kerning first=87 second=1107 amount=-2 -kerning first=1117 second=1035 amount=-5 -kerning first=1168 second=291 amount=-1 -kerning first=944 second=1059 amount=-2 -kerning first=113 second=273 amount=-1 -kerning first=110 second=964 amount=-1 -kerning first=973 second=235 amount=-1 -kerning first=282 second=97 amount=-1 -kerning first=51 second=219 amount=-2 -kerning first=188 second=1108 amount=-1 -kerning first=191 second=347 amount=-1 -kerning first=306 second=259 amount=-1 -kerning first=1081 second=8216 amount=-3 -kerning first=74 second=121 amount=-1 -kerning first=217 second=46 amount=-1 -kerning first=903 second=8250 amount=-1 -kerning first=916 second=86 amount=-6 -kerning first=91 second=1028 amount=-2 -kerning first=94 second=288 amount=-2 -kerning first=357 second=336 amount=-2 -kerning first=952 second=248 amount=-1 -kerning first=117 second=220 amount=-2 -kerning first=167 second=1176 amount=-1 -kerning first=170 second=362 amount=-2 -kerning first=280 second=966 amount=-1 -kerning first=8225 second=225 amount=-1 -kerning first=52 second=374 amount=-5 -kerning first=1069 second=87 amount=-2 -kerning first=195 second=289 amount=-1 -kerning first=78 second=71 amount=-2 -kerning first=1095 second=940 amount=-1 -kerning first=912 second=953 amount=-1 -kerning first=238 second=363 amount=-1 -kerning first=168 second=8211 amount=-2 -kerning first=1036 second=100 amount=-2 -kerning first=171 second=1051 amount=-1 -kerning first=59 second=84 amount=-5 -kerning first=314 second=364 amount=-2 -kerning first=931 second=211 amount=-2 -kerning first=1176 second=1098 amount=-3 -kerning first=236 second=8212 amount=-2 -kerning first=239 second=1059 amount=-2 -kerning first=1186 second=101 amount=-1 -kerning first=1179 second=339 amount=-1 -kerning first=958 second=353 amount=-1 -kerning first=962 second=113 amount=-1 -kerning first=125 second=85 amount=-2 -kerning first=37 second=335 amount=-1 -kerning first=40 second=97 amount=-1 -kerning first=60 second=259 amount=-1 -kerning first=63 second=34 amount=-3 -kerning first=8365 second=252 amount=-1 -kerning first=83 second=196 amount=-1 -kerning first=1103 second=354 amount=-5 -kerning first=926 second=1184 amount=-5 -kerning first=934 second=366 amount=-2 -kerning first=103 second=336 amount=-2 -kerning first=1187 second=279 amount=-1 -kerning first=369 second=171 amount=-3 -kerning first=966 second=63 amount=-2 -kerning first=38 second=966 amount=-1 -kerning first=41 second=275 amount=-1 -kerning first=299 second=87 amount=-5 -kerning first=1073 second=1185 amount=-3 -kerning first=204 second=337 amount=-1 -kerning first=207 second=99 amount=-1 -kerning first=321 second=940 amount=-1 -kerning first=84 second=351 amount=-3 -kerning first=87 second=111 amount=-3 -kerning first=163 second=210 amount=-2 -kerning first=273 second=338 amount=-2 -kerning first=276 second=100 amount=-1 -kerning first=185 second=352 amount=-1 -kerning first=300 second=262 amount=-2 -kerning first=65 second=364 amount=-2 -kerning first=1074 second=8220 amount=-3 -kerning first=205 second=968 amount=-1 -kerning first=900 second=1079 amount=-1 -kerning first=906 second=89 amount=-5 -kerning first=354 second=101 amount=-3 -kerning first=254 second=113 amount=-1 -kerning first=251 second=353 amount=-1 -kerning first=374 second=263 amount=-4 -kerning first=164 second=365 amount=-1 -kerning first=8217 second=228 amount=-1 -kerning first=304 second=212 amount=-2 -kerning first=63 second=8216 amount=-3 -kerning first=1087 second=252 amount=-1 -kerning first=1083 second=943 amount=-1 -kerning first=330 second=354 amount=-5 -kerning first=912 second=39 amount=-3 -kerning first=112 second=378 amount=-1 -kerning first=258 second=63 amount=-5 -kerning first=162 second=8217 amount=-3 -kerning first=1026 second=103 amount=-1 -kerning first=1064 second=267 amount=-1 -kerning first=53 second=87 amount=-5 -kerning first=302 second=1185 amount=-3 -kerning first=305 second=367 amount=-1 -kerning first=70 second=940 amount=-1 -kerning first=73 second=249 amount=-1 -kerning first=213 second=379 amount=-1 -kerning first=915 second=214 amount=-2 -kerning first=1168 second=1101 amount=-1 -kerning first=230 second=8218 amount=-1 -kerning first=951 second=356 amount=-5 -kerning first=34 second=100 amount=-1 -kerning first=973 second=972 amount=-1 -kerning first=172 second=250 amount=-1 -kerning first=169 second=941 amount=-1 -kerning first=1027 second=281 amount=-1 -kerning first=54 second=262 amount=-2 -kerning first=194 second=1241 amount=-1 -kerning first=197 second=187 amount=-1 -kerning first=303 second=8220 amount=-3 -kerning first=77 second=199 amount=-2 -kerning first=214 second=1079 amount=-1 -kerning first=916 second=369 amount=-1 -kerning first=94 second=1098 amount=-3 -kerning first=100 second=101 amount=-1 -kerning first=240 second=251 amount=-1 -kerning first=120 second=263 amount=-2 -kerning first=1298 second=216 amount=-2 -kerning first=1035 second=228 amount=-1 -kerning first=8225 second=962 amount=-1 -kerning first=58 second=212 amount=-2 -kerning first=316 second=252 amount=-1 -kerning first=78 second=354 amount=-5 -kerning first=75 second=1118 amount=-2 -kerning first=221 second=266 amount=-3 -kerning first=224 second=39 amount=-1 -kerning first=936 second=79 amount=-2 -kerning first=1185 second=229 amount=-1 -kerning first=956 second=920 amount=-2 -kerning first=124 second=213 amount=-2 -kerning first=1299 second=371 amount=-1 -kerning first=39 second=225 amount=-1 -kerning first=178 second=355 amount=-1 -kerning first=182 second=115 amount=-1 -kerning first=294 second=267 amount=-1 -kerning first=56 second=1185 amount=-3 -kerning first=59 second=367 amount=-1 -kerning first=8364 second=360 amount=-2 -kerning first=1107 second=242 amount=-1 -kerning first=931 second=945 amount=-1 -kerning first=105 second=226 amount=-1 -kerning first=1186 second=1240 amount=-1 -kerning first=125 second=368 amount=-2 -kerning first=8250 second=1202 amount=-3 -kerning first=57 second=8220 amount=-3 -kerning first=206 second=227 amount=-1 -kerning first=323 second=357 amount=-1 -kerning first=901 second=269 amount=-1 -kerning first=372 second=216 amount=-2 -kerning first=126 second=1066 amount=-5 -kerning first=123 second=8221 amount=-3 -kerning first=1044 second=962 amount=-1 -kerning first=296 second=1194 amount=-2 -kerning first=299 second=370 amount=-2 -kerning first=64 second=943 amount=-1 -kerning first=204 second=1256 amount=-2 -kerning first=8378 second=245 amount=-1 -kerning first=905 second=217 amount=-2 -kerning first=944 second=359 amount=-1 -kerning first=948 second=119 amount=-4 -kerning first=1202 second=963 amount=-1 -kerning first=1207 second=271 amount=-1 -kerning first=250 second=920 amount=-2 -kerning first=967 second=1026 amount=-5 -kerning first=166 second=253 amount=-1 -kerning first=273 second=1257 amount=-1 -kerning first=48 second=267 amount=-1 -kerning first=1062 second=218 amount=-1 -kerning first=1085 second=360 amount=-2 -kerning first=903 second=947 amount=-4 -kerning first=906 second=372 amount=-5 -kerning first=88 second=1101 amount=-2 -kerning first=354 second=1240 amount=-1 -kerning first=1223 second=219 amount=-2 -kerning first=374 second=1069 amount=-2 -kerning first=1063 second=373 amount=-4 -kerning first=72 second=357 amount=-1 -kerning first=75 second=117 amount=-1 -kerning first=215 second=269 amount=-1 -kerning first=92 second=973 amount=-1 -kerning first=1175 second=232 amount=-1 -kerning first=358 second=332 amount=-2 -kerning first=1224 second=374 amount=-5 -kerning first=261 second=106 amount=1 -kerning first=175 second=118 amount=-4 -kerning first=8226 second=221 amount=-5 -kerning first=50 second=1194 amount=-2 -kerning first=53 second=370 amount=-2 -kerning first=1059 second=8230 amount=-1 -kerning first=196 second=283 amount=-1 -kerning first=1099 second=245 amount=-1 -kerning first=915 second=949 amount=-1 -kerning first=923 second=257 amount=-1 -kerning first=239 second=359 amount=-1 -kerning first=242 second=119 amount=-1 -kerning first=1027 second=1090 amount=-3 -kerning first=8230 second=376 amount=-4 -kerning first=200 second=230 amount=-1 -kerning first=315 second=360 amount=-1 -kerning first=80 second=242 amount=-1 -kerning first=341 second=287 amount=-1 -kerning first=100 second=1240 amount=-2 -kerning first=1184 second=335 amount=-2 -kerning first=955 second=1108 amount=-1 -kerning first=960 second=347 amount=-1 -kerning first=126 second=81 amount=-2 -kerning first=1035 second=965 amount=-1 -kerning first=180 second=243 amount=-1 -kerning first=291 second=373 amount=-4 -kerning first=8225 second=8250 amount=-1 -kerning first=198 second=1263 amount=-1 -kerning first=8366 second=248 amount=-1 -kerning first=1101 second=1113 amount=-1 -kerning first=345 second=232 amount=-1 -kerning first=928 second=1176 amount=-1 -kerning first=936 second=362 amount=-2 -kerning first=1185 second=966 amount=-2 -kerning first=247 second=244 amount=-1 -kerning first=367 second=374 amount=-5 -kerning first=964 second=289 amount=-1 -kerning first=266 second=1298 amount=-1 -kerning first=39 second=962 amount=-1 -kerning first=300 second=83 amount=-1 -kerning first=1074 second=1177 amount=-1 -kerning first=205 second=333 amount=-1 -kerning first=325 second=245 amount=-1 -kerning first=900 second=375 amount=-1 -kerning first=931 second=8211 amount=-2 -kerning first=105 second=963 amount=-1 -kerning first=108 second=271 amount=-1 -kerning first=111 second=44 amount=-1 -kerning first=968 second=234 amount=-1 -kerning first=274 second=334 amount=-2 -kerning first=46 second=218 amount=-1 -kerning first=1047 second=376 amount=-2 -kerning first=186 second=346 amount=-1 -kerning first=209 second=273 amount=-1 -kerning first=206 second=964 amount=-3 -kerning first=8377 second=353 amount=-1 -kerning first=89 second=287 amount=-4 -kerning first=1119 second=235 amount=-1 -kerning first=249 second=1108 amount=-1 -kerning first=252 second=347 amount=-1 -kerning first=375 second=259 amount=-1 -kerning first=372 second=951 amount=-2 -kerning first=165 second=361 amount=-1 -kerning first=168 second=121 amount=-1 -kerning first=281 second=46 amount=-1 -kerning first=47 second=373 amount=-4 -kerning first=190 second=288 amount=-2 -kerning first=1090 second=248 amount=-1 -kerning first=910 second=260 amount=-5 -kerning first=93 second=232 amount=-1 -kerning first=356 second=275 amount=-3 -kerning first=359 second=47 amount=-1 -kerning first=113 second=374 amount=-5 -kerning first=1256 second=87 amount=-2 -kerning first=256 second=289 amount=-1 -kerning first=973 second=337 amount=-1 -kerning first=1027 second=99 amount=-1 -kerning first=172 second=71 amount=-2 -kerning first=282 second=221 amount=-5 -kerning first=45 second=8230 amount=-1 -kerning first=54 second=83 amount=-1 -kerning first=194 second=233 amount=-1 -kerning first=306 second=363 amount=-1 -kerning first=303 second=1177 amount=-1 -kerning first=74 second=245 amount=-1 -kerning first=214 second=375 amount=-1 -kerning first=916 second=210 amount=-2 -kerning first=1174 second=338 amount=-1 -kerning first=952 second=352 amount=-1 -kerning first=260 second=234 amount=-1 -kerning first=174 second=246 amount=-1 -kerning first=55 second=258 amount=-5 -kerning first=8240 second=89 amount=-5 -kerning first=304 second=8212 amount=-2 -kerning first=121 second=259 amount=-1 -kerning first=124 second=34 amount=-3 -kerning first=1299 second=212 amount=-2 -kerning first=1036 second=224 amount=-1 -kerning first=39 second=46 amount=-1 -kerning first=1067 second=1184 amount=-5 -kerning first=317 second=248 amount=-1 -kerning first=222 second=260 amount=-2 -kerning first=915 second=8217 amount=-3 -kerning first=923 second=1063 amount=-3 -kerning first=102 second=275 amount=-1 -kerning first=1263 second=1185 amount=-3 -kerning first=40 second=221 amount=-5 -kerning first=183 second=111 amount=-1 -kerning first=179 second=351 amount=-1 -kerning first=60 second=363 amount=-1 -kerning first=57 second=1177 amount=-1 -kerning first=8365 second=356 amount=-5 -kerning first=8370 second=116 amount=-1 -kerning first=934 second=941 amount=-1 -kerning first=369 second=262 amount=-2 -kerning first=963 second=1241 amount=-1 -kerning first=126 second=364 amount=-2 -kerning first=1298 second=8220 amount=-3 -kerning first=271 second=277 amount=-1 -kerning first=41 second=376 amount=-5 -kerning first=180 second=1035 amount=-5 -kerning first=184 second=291 amount=-1 -kerning first=1048 second=89 amount=-5 -kerning first=299 second=211 amount=-2 -kerning first=58 second=8212 amount=-2 -kerning first=61 second=1059 amount=-2 -kerning first=1080 second=251 amount=-1 -kerning first=327 second=113 amount=-1 -kerning first=902 second=263 amount=-1 -kerning first=87 second=235 amount=-3 -kerning first=124 second=8216 amount=-3 -kerning first=276 second=224 amount=-1 -kerning first=1049 second=266 amount=-2 -kerning first=1062 second=39 amount=-2 -kerning first=297 second=1184 amount=-5 -kerning first=300 second=366 amount=-2 -kerning first=906 second=213 amount=-2 -kerning first=225 second=8217 amount=-1 -kerning first=354 second=225 amount=-2 -kerning first=1210 second=267 amount=-1 -kerning first=371 second=1185 amount=-3 -kerning first=374 second=367 amount=-2 -kerning first=167 second=249 amount=-1 -kerning first=164 second=940 amount=-1 -kerning first=49 second=261 amount=-1 -kerning first=1063 second=214 amount=-2 -kerning first=1087 second=356 amount=-5 -kerning first=1095 second=116 amount=-1 -kerning first=92 second=338 amount=-2 -kerning first=95 second=100 amount=-1 -kerning first=1119 second=972 amount=-1 -kerning first=1170 second=281 amount=-1 -kerning first=89 second=1097 amount=-3 -kerning first=255 second=1241 amount=-1 -kerning first=258 second=187 amount=-1 -kerning first=1026 second=227 amount=-1 -kerning first=278 second=1079 amount=-1 -kerning first=286 second=89 amount=-2 -kerning first=53 second=211 amount=-2 -kerning first=1064 second=369 amount=-1 -kerning first=193 second=339 amount=-1 -kerning first=196 second=101 amount=-1 -kerning first=190 second=1098 amount=-3 -kerning first=310 second=251 amount=-1 -kerning first=70 second=1117 amount=-1 -kerning first=73 second=353 amount=-1 -kerning first=76 second=113 amount=-1 -kerning first=213 second=955 amount=-2 -kerning first=905 second=8221 amount=-3 -kerning first=1176 second=228 amount=-1 -kerning first=356 second=1080 amount=-2 -kerning first=954 second=240 amount=-2 -kerning first=1220 second=1194 amount=-2 -kerning first=34 second=224 amount=-1 -kerning first=973 second=1256 amount=-2 -kerning first=172 second=354 amount=-5 -kerning first=169 second=1118 amount=-1 -kerning first=287 second=266 amount=-2 -kerning first=8230 second=217 amount=-1 -kerning first=51 second=1184 amount=-5 -kerning first=54 second=366 amount=-2 -kerning first=1071 second=79 amount=-2 -kerning first=197 second=279 amount=-1 -kerning first=194 second=970 amount=-1 -kerning first=341 second=103 amount=-1 -kerning first=926 second=253 amount=-1 -kerning first=100 second=225 amount=-1 -kerning first=1174 second=1257 amount=-1 -kerning first=240 second=355 amount=-1 -kerning first=363 second=267 amount=-1 -kerning first=117 second=1185 amount=-3 -kerning first=174 second=1038 amount=-2 -kerning first=291 second=214 amount=-2 -kerning first=8225 second=947 amount=-4 -kerning first=8240 second=372 amount=-5 -kerning first=201 second=226 amount=-1 -kerning first=316 second=356 amount=-5 -kerning first=321 second=116 amount=-1 -kerning first=101 second=380 amount=-1 -kerning first=36 second=1079 amount=-1 -kerning first=42 second=89 amount=-5 -kerning first=1039 second=269 amount=-1 -kerning first=294 second=369 amount=-1 -kerning first=62 second=251 amount=-1 -kerning first=8369 second=244 amount=-1 -kerning first=900 second=216 amount=-2 -kerning first=222 second=1066 amount=-2 -kerning first=942 second=118 amount=-4 -kerning first=1186 second=962 amount=-1 -kerning first=365 second=1194 amount=-2 -kerning first=965 second=283 amount=-1 -kerning first=125 second=943 amount=-1 -kerning first=161 second=252 amount=-1 -kerning first=43 second=266 amount=-2 -kerning first=46 second=39 amount=-1 -kerning first=301 second=79 amount=-2 -kerning first=1083 second=119 amount=-4 -kerning first=323 second=920 amount=-2 -kerning first=901 second=371 amount=-1 -kerning first=86 second=341 amount=-2 -kerning first=89 second=103 amount=-4 -kerning first=1206 second=218 amount=-1 -kerning first=8218 second=45 amount=-1 -kerning first=47 second=214 amount=-1 -kerning first=1048 second=372 amount=-5 -kerning first=1044 second=947 amount=-2 -kerning first=184 second=1101 amount=-1 -kerning first=299 second=945 amount=-1 -kerning first=67 second=356 amount=-1 -kerning first=70 second=116 amount=-1 -kerning first=8372 second=1108 amount=-1 -kerning first=8378 second=347 amount=-1 -kerning first=902 second=1069 amount=-1 -kerning first=910 second=81 amount=-3 -kerning first=87 second=972 amount=-3 -kerning first=90 second=281 amount=-1 -kerning first=1168 second=231 amount=-1 -kerning first=948 second=243 amount=-1 -kerning first=967 second=1263 amount=-1 -kerning first=166 second=357 amount=-1 -kerning first=169 second=117 amount=-1 -kerning first=48 second=369 amount=-1 -kerning first=188 second=973 amount=-1 -kerning first=1094 second=244 amount=-1 -kerning first=214 second=216 amount=-2 -kerning first=94 second=228 amount=-1 -kerning first=237 second=118 amount=-4 -kerning first=354 second=962 amount=-3 -kerning first=174 second=67 amount=-2 -kerning first=55 second=79 amount=-2 -kerning first=1063 second=949 amount=-1 -kerning first=195 second=229 amount=-1 -kerning first=313 second=119 amount=-3 -kerning first=72 second=920 amount=-2 -kerning first=215 second=371 amount=-1 -kerning first=92 second=1257 amount=-1 -kerning first=1170 second=1090 amount=-3 -kerning first=361 second=218 amount=-2 -kerning first=950 second=1107 amount=-2 -kerning first=1262 second=258 amount=-2 -kerning first=1026 second=964 amount=-3 -kerning first=1036 second=45 amount=-4 -kerning first=175 second=242 amount=-1 -kerning first=171 second=923 amount=-1 -kerning first=286 second=372 amount=-1 -kerning first=281 second=947 amount=-1 -kerning first=53 second=945 amount=-1 -kerning first=196 second=1240 amount=-2 -kerning first=193 second=1262 amount=-2 -kerning first=1096 second=1108 amount=-1 -kerning first=1099 second=347 amount=-1 -kerning first=923 second=361 amount=-1 -kerning first=931 second=121 amount=-1 -kerning first=1176 second=965 amount=-1 -kerning first=958 second=288 amount=-2 -kerning first=37 second=269 amount=-1 -kerning first=1037 second=220 amount=-2 -kerning first=8250 second=260 amount=-3 -kerning first=1071 second=362 amount=-2 -kerning first=200 second=332 amount=-2 -kerning first=318 second=244 amount=-1 -kerning first=83 second=106 amount=1 -kerning first=1103 second=289 amount=-1 -kerning first=100 second=962 amount=-1 -kerning first=360 second=8230 amount=-1 -kerning first=369 second=83 amount=-1 -kerning first=963 second=233 amount=-1 -kerning first=1298 second=1177 amount=-1 -kerning first=41 second=217 amount=-2 -kerning first=291 second=949 amount=-1 -kerning first=296 second=257 amount=-1 -kerning first=64 second=119 amount=-4 -kerning first=61 second=359 amount=-1 -kerning first=201 second=963 amount=-1 -kerning first=204 second=271 amount=-1 -kerning first=8366 second=352 amount=-1 -kerning first=902 second=84 amount=-5 -kerning first=81 second=1026 amount=-2 -kerning first=84 second=286 amount=-1 -kerning first=1194 second=376 amount=-2 -kerning first=247 second=346 amount=-1 -kerning first=370 second=258 amount=-2 -kerning first=160 second=360 amount=-2 -kerning first=1299 second=8212 amount=-2 -kerning first=273 second=273 amount=-1 -kerning first=276 second=45 amount=-2 -kerning first=42 second=372 amount=-5 -kerning first=1036 second=8249 amount=-3 -kerning first=1049 second=85 amount=-2 -kerning first=185 second=287 amount=-1 -kerning first=322 second=1108 amount=-1 -kerning first=325 second=347 amount=-1 -kerning first=906 second=34 amount=-3 -kerning first=903 second=259 amount=-1 -kerning first=88 second=231 amount=-2 -kerning first=354 second=46 amount=-3 -kerning first=108 second=373 amount=-4 -kerning first=251 second=288 amount=-2 -kerning first=968 second=336 amount=-2 -kerning first=8211 second=378 amount=-2 -kerning first=189 second=232 amount=-1 -kerning first=301 second=362 amount=-2 -kerning first=298 second=1176 amount=-1 -kerning first=69 second=244 amount=-1 -kerning first=209 second=374 amount=-5 -kerning first=330 second=289 amount=-1 -kerning first=1119 second=337 amount=-1 -kerning first=1170 second=99 amount=-1 -kerning first=950 second=111 amount=-1 -kerning first=946 second=351 amount=-1 -kerning first=1219 second=261 amount=-1 -kerning first=255 second=233 amount=-1 -kerning first=375 second=363 amount=-1 -kerning first=969 second=967 amount=-1 -kerning first=168 second=245 amount=-1 -kerning first=278 second=375 amount=-1 -kerning first=8212 second=1078 amount=-2 -kerning first=47 second=949 amount=-1 -kerning first=50 second=257 amount=-1 -kerning first=1064 second=210 amount=-2 -kerning first=299 second=8211 amount=-2 -kerning first=216 second=84 amount=-2 -kerning first=93 second=334 amount=-2 -kerning first=1168 second=968 amount=-1 -kerning first=1171 second=277 amount=-1 -kerning first=236 second=246 amount=-1 -kerning first=948 second=1035 amount=-5 -kerning first=951 second=291 amount=-1 -kerning first=373 second=8212 amount=-1 -kerning first=276 second=8249 amount=-3 -kerning first=287 second=85 amount=-2 -kerning first=8224 second=263 amount=-1 -kerning first=194 second=335 amount=-1 -kerning first=197 second=97 amount=-1 -kerning first=74 second=347 amount=-1 -kerning first=906 second=8216 amount=-3 -kerning first=94 second=965 amount=-1 -kerning first=354 second=8250 amount=-1 -kerning first=1223 second=1184 amount=-5 -kerning first=260 second=336 amount=-2 -kerning first=35 second=220 amount=-2 -kerning first=1035 second=171 amount=-3 -kerning first=174 second=350 amount=-1 -kerning first=8240 second=213 amount=-2 -kerning first=52 second=1176 amount=-1 -kerning first=55 second=362 amount=-2 -kerning first=1066 second=1063 amount=-1 -kerning first=1063 second=8217 amount=-3 -kerning first=195 second=966 amount=-1 -kerning first=198 second=275 amount=-1 -kerning first=8363 second=115 amount=-1 -kerning first=78 second=289 amount=-1 -kerning first=928 second=249 amount=-1 -kerning first=361 second=953 amount=-1 -kerning first=121 second=363 amount=-1 -kerning first=36 second=375 amount=-1 -kerning first=178 second=290 amount=-2 -kerning first=294 second=210 amount=-2 -kerning first=53 second=8211 amount=-2 -kerning first=1074 second=250 amount=-1 -kerning first=317 second=352 amount=-1 -kerning first=343 second=277 amount=-1 -kerning first=958 second=1098 amount=-3 -kerning first=962 second=339 amount=-1 -kerning first=965 second=101 amount=-1 -kerning first=119 second=8212 amount=-1 -kerning first=43 second=85 amount=-2 -kerning first=1041 second=263 amount=-1 -kerning first=183 second=235 amount=-1 -kerning first=8230 second=8221 amount=-1 -kerning first=8250 second=1066 amount=-3 -kerning first=8370 second=240 amount=-1 -kerning first=901 second=212 amount=-2 -kerning first=934 second=1118 amount=-1 -kerning first=100 second=8250 amount=-1 -kerning first=1206 second=39 amount=-2 -kerning first=369 second=366 amount=-2 -kerning first=963 second=970 amount=-1 -kerning first=162 second=248 amount=-1 -kerning first=1048 second=213 amount=-2 -kerning first=291 second=8217 amount=-3 -kerning first=67 second=197 amount=-1 -kerning first=1084 second=115 amount=-1 -kerning first=1080 second=355 amount=-1 -kerning first=210 second=87 amount=-2 -kerning first=902 second=367 amount=-1 -kerning first=84 second=1096 amount=-2 -kerning first=87 second=337 amount=-3 -kerning first=90 second=99 amount=-1 -kerning first=48 second=210 amount=-2 -kerning first=1049 second=368 amount=-2 -kerning first=188 second=338 amount=-2 -kerning first=191 second=100 amount=-1 -kerning first=303 second=250 amount=-1 -kerning first=300 second=941 amount=-1 -kerning first=900 second=8220 amount=-3 -kerning first=91 second=277 amount=-1 -kerning first=88 second=968 amount=-1 -kerning first=354 second=326 amount=-2 -kerning first=357 second=89 amount=-5 -kerning first=1210 second=369 amount=-1 -kerning first=251 second=1098 amount=-3 -kerning first=254 second=339 amount=-1 -kerning first=374 second=942 amount=-3 -kerning first=170 second=113 amount=-1 -kerning first=167 second=353 amount=-1 -kerning first=277 second=955 amount=-1 -kerning first=280 second=263 amount=-1 -kerning first=49 second=365 amount=-1 -kerning first=1051 second=1066 amount=-5 -kerning first=1095 second=240 amount=-1 -kerning first=215 second=212 amount=-2 -kerning first=912 second=252 amount=-1 -kerning first=95 second=224 amount=-1 -kerning first=1119 second=1256 amount=-2 -kerning first=358 second=266 amount=-2 -kerning first=361 second=39 amount=-3 -kerning first=255 second=970 amount=-1 -kerning first=258 second=279 amount=-1 -kerning first=8222 second=371 amount=-1 -kerning first=47 second=8217 amount=-3 -kerning first=1067 second=253 amount=-1 -kerning first=196 second=225 amount=-1 -kerning first=310 second=355 amount=-1 -kerning first=314 second=115 amount=-1 -kerning first=236 second=1038 amount=-2 -kerning first=951 second=1101 amount=-1 -kerning first=113 second=8218 amount=2 -kerning first=287 second=368 amount=-2 -kerning first=8224 second=1069 amount=-1 -kerning first=57 second=250 amount=-1 -kerning first=54 second=941 amount=-1 -kerning first=77 second=1241 amount=-1 -kerning first=80 second=187 amount=-1 -kerning first=214 second=8220 amount=-3 -kerning first=341 second=227 amount=-1 -kerning first=926 second=357 amount=-1 -kerning first=934 second=117 amount=-1 -kerning first=103 second=89 amount=-5 -kerning first=1184 second=269 amount=-2 -kerning first=363 second=369 amount=-1 -kerning first=955 second=973 amount=-1 -kerning first=123 second=251 amount=-1 -kerning first=38 second=263 amount=-1 -kerning first=288 second=1066 amount=-1 -kerning first=283 second=8221 amount=-1 -kerning first=321 second=240 amount=-1 -kerning first=221 second=943 amount=-2 -kerning first=964 second=229 amount=-1 -kerning first=42 second=213 amount=-2 -kerning first=1039 second=371 amount=-1 -kerning first=1036 second=1195 amount=-2 -kerning first=185 second=103 amount=-1 -kerning first=297 second=253 amount=-1 -kerning first=62 second=355 amount=-1 -kerning first=65 second=115 amount=-1 -kerning first=205 second=267 amount=-1 -kerning first=8369 second=346 amount=-1 -kerning first=942 second=242 amount=-1 -kerning first=108 second=214 amount=-2 -kerning first=1186 second=947 amount=-2 -kerning first=965 second=1240 amount=-2 -kerning first=962 second=1262 amount=-2 -kerning first=161 second=356 amount=-5 -kerning first=164 second=116 amount=-1 -kerning first=274 second=268 amount=-2 -kerning first=43 second=368 amount=-2 -kerning first=1041 second=1069 amount=-1 -kerning first=1051 second=81 amount=-2 -kerning first=183 second=972 amount=-1 -kerning first=186 second=281 amount=-1 -kerning first=1083 second=243 amount=-1 -kerning first=8370 second=1028 amount=-2 -kerning first=8377 second=288 amount=-2 -kerning first=89 second=227 amount=-4 -kerning first=249 second=973 amount=-1 -kerning first=278 second=216 amount=-2 -kerning first=8212 second=374 amount=-4 -kerning first=41 second=8221 amount=-3 -kerning first=1059 second=256 amount=-2 -kerning first=190 second=228 amount=-1 -kerning first=44 second=1066 amount=-5 -kerning first=305 second=118 amount=-4 -kerning first=70 second=240 amount=-1 -kerning first=67 second=916 amount=-1 -kerning first=207 second=1194 amount=-2 -kerning first=87 second=1256 amount=-2 -kerning first=1168 second=333 amount=-1 -kerning first=236 second=67 amount=-2 -kerning first=1220 second=257 amount=-1 -kerning first=1207 second=949 amount=-1 -kerning first=256 second=229 amount=-1 -kerning first=973 second=271 amount=-1 -kerning first=166 second=920 amount=-2 -kerning first=276 second=1195 amount=-1 -kerning first=8224 second=84 amount=-5 -kerning first=51 second=253 amount=-1 -kerning first=188 second=1257 amount=-1 -kerning first=1174 second=273 amount=-1 -kerning first=237 second=242 amount=-1 -kerning first=354 second=947 amount=-2 -kerning first=357 second=372 amount=-5 -kerning first=952 second=287 amount=-1 -kerning first=114 second=945 amount=-1 -kerning first=254 second=1262 amount=-2 -kerning first=280 second=1069 amount=-1 -kerning first=8240 second=34 amount=-3 -kerning first=8225 second=259 amount=-1 -kerning first=313 second=243 amount=-1 -kerning first=1095 second=1028 amount=-2 -kerning first=1178 second=220 amount=-1 -kerning first=956 second=232 amount=-1 -kerning first=1224 second=1176 amount=-1 -kerning first=36 second=216 amount=-2 -kerning first=1033 second=374 amount=-5 -kerning first=178 second=106 amount=1 -kerning first=59 second=118 amount=-4 -kerning first=1074 second=71 amount=-2 -kerning first=196 second=962 amount=-1 -kerning first=8364 second=111 amount=-1 -kerning first=8361 second=351 amount=-1 -kerning first=931 second=245 amount=-1 -kerning first=365 second=257 amount=-1 -kerning first=125 second=119 amount=-4 -kerning first=270 second=44 amount=-1 -kerning first=34 second=1195 amount=-1 -kerning first=37 second=371 amount=-1 -kerning first=1041 second=84 amount=-5 -kerning first=176 second=1026 amount=-5 -kerning first=179 second=286 amount=-2 -kerning first=1075 second=246 amount=-1 -kerning first=203 second=218 amount=-2 -kerning first=318 second=346 amount=-1 -kerning first=8365 second=291 amount=-1 -kerning first=223 second=360 amount=-2 -kerning first=100 second=947 amount=-4 -kerning first=103 second=372 amount=-5 -kerning first=963 second=335 amount=-1 -kerning first=271 second=219 amount=-2 -kerning first=38 second=1069 amount=-1 -kerning first=44 second=81 amount=-1 -kerning first=1048 second=34 amount=-3 -kerning first=184 second=231 amount=-1 -kerning first=296 second=361 amount=-1 -kerning first=8240 second=8216 amount=-3 -kerning first=299 second=121 amount=-1 -kerning first=64 second=243 amount=-1 -kerning first=204 second=373 amount=-4 -kerning first=321 second=1028 amount=-2 -kerning first=250 second=232 amount=-1 -kerning first=367 second=1176 amount=-1 -kerning first=964 second=966 amount=-1 -kerning first=967 second=275 amount=-1 -kerning first=163 second=244 amount=-1 -kerning first=273 second=374 amount=-5 -kerning first=269 second=1203 amount=-1 -kerning first=45 second=256 amount=-2 -kerning first=303 second=71 amount=-2 -kerning first=68 second=193 amount=-2 -kerning first=1081 second=351 amount=-1 -kerning first=1085 second=111 amount=-1 -kerning first=900 second=1177 amount=-1 -kerning first=903 second=363 amount=-1 -kerning first=88 second=333 amount=-2 -kerning first=108 second=949 amount=-1 -kerning first=1210 second=210 amount=-2 -kerning first=248 second=1299 amount=-1 -kerning first=280 second=84 amount=-5 -kerning first=1051 second=364 amount=-2 -kerning first=186 second=1090 amount=-3 -kerning first=189 second=334 amount=-2 -kerning first=304 second=246 amount=-1 -kerning first=69 second=346 amount=-1 -kerning first=1083 second=1035 amount=-5 -kerning first=1087 second=291 amount=-1 -kerning first=212 second=258 amount=-2 -kerning first=8377 second=1098 amount=-3 -kerning first=901 second=8212 amount=-2 -kerning first=904 second=1059 amount=-2 -kerning first=95 second=45 amount=-2 -kerning first=92 second=273 amount=-1 -kerning first=89 second=964 amount=-2 -kerning first=358 second=85 amount=-2 -kerning first=950 second=235 amount=-1 -kerning first=1219 second=365 amount=-1 -kerning first=255 second=335 amount=-1 -kerning first=258 second=97 amount=-1 -kerning first=165 second=1108 amount=-1 -kerning first=168 second=347 amount=-1 -kerning first=8222 second=212 amount=-1 -kerning first=47 second=1175 amount=-1 -kerning first=50 second=361 amount=-1 -kerning first=1048 second=8216 amount=-3 -kerning first=53 second=121 amount=-1 -kerning first=190 second=965 amount=-1 -kerning first=70 second=1028 amount=-2 -kerning first=73 second=288 amount=-2 -kerning first=910 second=937 amount=-2 -kerning first=915 second=248 amount=-1 -kerning first=96 second=220 amount=-2 -kerning first=1176 second=171 amount=-3 -kerning first=236 second=350 amount=-1 -kerning first=233 second=1113 amount=-1 -kerning first=113 second=1176 amount=-1 -kerning first=256 second=966 amount=-1 -kerning first=262 second=47 amount=-1 -kerning first=172 second=289 amount=-1 -kerning first=8224 second=367 amount=-1 -kerning first=57 second=71 amount=-2 -kerning first=1065 second=940 amount=-1 -kerning first=197 second=221 amount=-5 -kerning first=311 second=351 amount=-1 -kerning first=315 second=111 amount=-1 -kerning first=77 second=233 amount=-1 -kerning first=214 second=1177 amount=-1 -kerning first=335 second=967 amount=-2 -kerning first=240 second=290 amount=-2 -kerning first=363 second=210 amount=-2 -kerning first=955 second=338 amount=-2 -kerning first=960 second=100 amount=-1 -kerning first=114 second=8211 amount=-1 -kerning first=1298 second=250 amount=-1 -kerning first=38 second=84 amount=-5 -kerning first=1035 second=262 amount=-2 -kerning first=177 second=234 amount=-1 -kerning first=58 second=246 amount=-1 -kerning first=1073 second=199 amount=-2 -kerning first=198 second=376 amount=-5 -kerning first=316 second=291 amount=-1 -kerning first=313 second=1035 amount=-6 -kerning first=215 second=8212 amount=-2 -kerning first=936 second=113 amount=-1 -kerning first=928 second=353 amount=-1 -kerning first=95 second=8249 amount=-3 -kerning first=1185 second=263 amount=-2 -kerning first=266 second=377 amount=-1 -kerning first=39 second=259 amount=-1 -kerning first=42 second=34 amount=-3 -kerning first=1039 second=212 amount=-2 -kerning first=1074 second=354 amount=-5 -kerning first=196 second=8250 amount=-1 -kerning first=1107 second=279 amount=-1 -kerning first=965 second=225 amount=-1 -kerning first=274 second=87 amount=-5 -kerning first=1037 second=1185 amount=-3 -kerning first=1041 second=367 amount=-1 -kerning first=183 second=337 amount=-1 -kerning first=186 second=99 amount=-1 -kerning first=298 second=249 amount=-1 -kerning first=63 second=351 amount=-1 -kerning first=206 second=261 amount=-1 -kerning first=203 second=953 amount=-1 -kerning first=8365 second=1101 amount=-1 -kerning first=1116 second=226 amount=-1 -kerning first=352 second=88 amount=-1 -kerning first=249 second=338 amount=-2 -kerning first=252 second=100 amount=-1 -kerning first=369 second=941 amount=-1 -kerning first=372 second=250 amount=-2 -kerning first=966 second=380 amount=-1 -kerning first=162 second=352 amount=-1 -kerning first=44 second=364 amount=-1 -kerning first=184 second=968 amount=-1 -kerning first=302 second=199 amount=-2 -kerning first=64 second=1035 amount=-5 -kerning first=327 second=339 amount=-1 -kerning first=8372 second=973 amount=-1 -kerning first=324 second=1098 amount=-1 -kerning first=905 second=251 amount=-1 -kerning first=1202 second=1066 amount=-2 -kerning first=42 second=8216 amount=-3 -kerning first=1049 second=943 amount=-1 -kerning first=191 second=224 amount=-1 -kerning first=300 second=1118 amount=-1 -kerning first=303 second=354 amount=-5 -kerning first=208 second=1184 amount=-2 -kerning first=94 second=171 amount=-3 -kerning first=357 second=213 amount=-2 -kerning first=108 second=8217 amount=-3 -kerning first=952 second=103 amount=-1 -kerning first=1223 second=253 amount=-1 -kerning first=374 second=1119 amount=-3 -kerning first=277 second=1185 amount=-1 -kerning first=280 second=367 amount=-1 -kerning first=52 second=249 amount=-1 -kerning first=49 second=940 amount=-1 -kerning first=304 second=1038 amount=-2 -kerning first=1087 second=1101 amount=-1 -kerning first=912 second=356 amount=-5 -kerning first=358 second=368 amount=-2 -kerning first=950 second=972 amount=-1 -kerning first=1240 second=65 amount=-2 -kerning first=175 second=187 amount=-1 -kerning first=278 second=8220 amount=-3 -kerning first=56 second=199 amount=-2 -kerning first=1067 second=357 amount=-1 -kerning first=193 second=1079 amount=-1 -kerning first=199 second=89 amount=-2 -kerning first=73 second=1098 amount=-3 -kerning first=76 second=339 amount=-1 -kerning first=1096 second=973 amount=-1 -kerning first=958 second=228 amount=-1 -kerning first=37 second=212 amount=-2 -kerning first=1027 second=1194 amount=-2 -kerning first=287 second=943 amount=-1 -kerning first=57 second=354 amount=-5 -kerning first=54 second=1118 amount=-1 -kerning first=200 second=266 amount=-2 -kerning first=203 second=39 amount=-3 -kerning first=80 second=279 amount=-1 -kerning first=1103 second=229 amount=-1 -kerning first=77 second=970 amount=-1 -kerning first=926 second=920 amount=-2 -kerning first=103 second=213 amount=-2 -kerning first=1184 second=371 amount=-1 -kerning first=955 second=1257 amount=-1 -kerning first=126 second=115 amount=-1 -kerning first=123 second=355 amount=-1 -kerning first=38 second=367 amount=-1 -kerning first=35 second=1185 amount=-3 -kerning first=8260 second=360 amount=-2 -kerning first=58 second=1038 amount=-2 -kerning first=1076 second=242 amount=-1 -kerning first=204 second=214 amount=-2 -kerning first=316 second=1101 amount=-1 -kerning first=8366 second=287 amount=-1 -kerning first=84 second=226 amount=-2 -kerning first=1202 second=81 amount=-1 -kerning first=247 second=281 amount=-1 -kerning first=36 second=8220 amount=-3 -kerning first=185 second=227 amount=-1 -kerning first=300 second=117 amount=-1 -kerning first=297 second=357 amount=-1 -kerning first=205 second=369 amount=-1 -kerning first=322 second=973 amount=-1 -kerning first=105 second=1066 amount=-5 -kerning first=251 second=228 amount=-1 -kerning first=374 second=118 amount=-2 -kerning first=965 second=962 amount=-1 -kerning first=164 second=240 amount=-1 -kerning first=274 second=370 amount=-2 -kerning first=43 second=943 amount=-1 -kerning first=46 second=252 amount=-1 -kerning first=183 second=1256 amount=-2 -kerning first=304 second=67 amount=-2 -kerning first=330 second=229 amount=-1 -kerning first=904 second=359 amount=-1 -kerning first=86 second=1081 amount=-2 -kerning first=89 second=328 amount=-3 -kerning first=1119 second=271 amount=-1 -kerning first=1116 second=963 amount=-2 -kerning first=946 second=286 amount=-2 -kerning first=249 second=1257 amount=-1 -kerning first=305 second=242 amount=-1 -kerning first=327 second=1262 amount=-2 -kerning first=93 second=268 amount=-2 -kerning first=1171 second=219 amount=-2 -kerning first=951 second=231 amount=-1 -kerning first=1220 second=361 amount=-1 -kerning first=379 second=243 amount=-1 -kerning first=973 second=373 amount=-4 -kerning first=51 second=357 amount=-1 -kerning first=54 second=117 amount=-1 -kerning first=194 second=269 amount=-1 -kerning first=1097 second=232 amount=-1 -kerning first=916 second=244 amount=-1 -kerning first=1174 second=374 amount=-2 -kerning first=240 second=106 amount=1 -kerning first=360 second=256 amount=-2 -kerning first=1298 second=71 amount=-2 -kerning first=1035 second=83 amount=-1 -kerning first=174 second=283 amount=-1 -kerning first=8225 second=363 amount=-1 -kerning first=58 second=67 amount=-2 -kerning first=198 second=217 amount=-2 -kerning first=78 second=229 amount=-1 -kerning first=221 second=119 amount=-2 -kerning first=95 second=1195 amount=-1 -kerning first=1175 second=1073 amount=-1 -kerning first=238 second=1026 amount=-5 -kerning first=953 second=1090 amount=-2 -kerning first=956 second=334 amount=-2 -kerning first=1299 second=246 amount=-1 -kerning first=178 second=230 amount=-1 -kerning first=289 second=360 amount=-2 -kerning first=8226 second=1059 amount=-2 -kerning first=8222 second=8212 amount=-1 -kerning first=59 second=242 amount=-1 -kerning first=196 second=947 amount=-4 -kerning first=199 second=372 amount=-1 -kerning first=317 second=287 amount=-1 -kerning first=8364 second=235 amount=-1 -kerning first=76 second=1262 amount=-1 -kerning first=923 second=1108 amount=-1 -kerning first=931 second=347 amount=-1 -kerning first=105 second=81 amount=-2 -kerning first=1195 second=34 amount=-1 -kerning first=365 second=361 amount=-1 -kerning first=958 second=965 amount=-1 -kerning first=125 second=243 amount=-1 -kerning first=262 second=1202 amount=-2 -kerning first=267 second=373 amount=-1 -kerning first=176 second=1263 amount=-1 -kerning first=323 second=232 amount=-1 -kerning first=1103 second=966 amount=-1 -kerning first=344 second=374 amount=-2 -kerning first=934 second=1033 amount=-3 -kerning first=372 second=71 amount=-2 -kerning first=184 second=333 amount=-1 -kerning first=299 second=245 amount=-1 -kerning first=1080 second=290 amount=-2 -kerning first=204 second=949 amount=-1 -kerning first=207 second=257 amount=-1 -kerning first=8372 second=338 amount=-2 -kerning first=8378 second=100 amount=-1 -kerning first=84 second=963 amount=-3 -kerning first=87 second=271 amount=-3 -kerning first=944 second=234 amount=-1 -kerning first=1202 second=364 amount=-1 -kerning first=250 second=334 amount=-2 -kerning first=247 second=1090 amount=-3 -kerning first=373 second=246 amount=-1 -kerning first=967 second=376 amount=-5 -kerning first=163 second=346 amount=-1 -kerning first=1039 second=8212 amount=-2 -kerning first=188 second=273 amount=-1 -kerning first=191 second=45 amount=-2 -kerning first=185 second=964 amount=-3 -kerning first=1085 second=235 amount=-1 -kerning first=91 second=219 amount=-2 -kerning first=354 second=259 amount=-2 -kerning first=357 second=34 amount=-3 -kerning first=1195 second=8216 amount=-1 -kerning first=251 second=965 amount=-1 -kerning first=965 second=8250 amount=-1 -kerning first=164 second=1028 amount=-2 -kerning first=167 second=288 amount=-2 -kerning first=8211 second=1184 amount=-4 -kerning first=1063 second=248 amount=-1 -kerning first=192 second=220 amount=-2 -kerning first=304 second=350 amount=-1 -kerning first=72 second=232 amount=-1 -kerning first=209 second=1176 amount=-1 -kerning first=330 second=966 amount=-1 -kerning first=336 second=47 amount=-1 -kerning first=89 second=1203 amount=-2 -kerning first=92 second=374 amount=-5 -kerning first=950 second=337 amount=-1 -kerning first=1219 second=940 amount=-1 -kerning first=1224 second=249 amount=-1 -kerning first=258 second=221 amount=-5 -kerning first=381 second=111 amount=-1 -kerning first=1026 second=261 amount=-1 -kerning first=278 second=1177 amount=-1 -kerning first=8212 second=8218 amount=-1 -kerning first=53 second=245 amount=-1 -kerning first=193 second=375 amount=-1 -kerning first=310 second=290 amount=-3 -kerning first=1096 second=338 amount=-2 -kerning first=1099 second=100 amount=-1 -kerning first=213 second=1051 amount=-1 -kerning first=910 second=1116 amount=-3 -kerning first=915 second=352 amount=-1 -kerning first=1176 second=262 amount=-2 -kerning first=239 second=234 amount=-1 -kerning first=951 second=968 amount=-1 -kerning first=954 second=277 amount=-2 -kerning first=1263 second=199 amount=-2 -kerning first=119 second=246 amount=-1 -kerning first=34 second=258 amount=-3 -kerning first=282 second=1059 amount=-2 -kerning first=8230 second=251 amount=-1 -kerning first=1071 second=113 amount=-1 -kerning first=191 second=8249 amount=-3 -kerning first=200 second=85 amount=-2 -kerning first=315 second=235 amount=-1 -kerning first=80 second=97 amount=-1 -kerning first=77 second=335 amount=-1 -kerning first=103 second=34 amount=-3 -kerning first=100 second=259 amount=-1 -kerning first=1184 second=212 amount=-3 -kerning first=357 second=8216 amount=-3 -kerning first=960 second=224 amount=-1 -kerning first=1298 second=354 amount=-5 -kerning first=268 second=86 amount=-1 -kerning first=1028 second=1184 amount=-1 -kerning first=1035 second=366 amount=-2 -kerning first=177 second=336 amount=-2 -kerning first=291 second=248 amount=-1 -kerning first=58 second=350 amount=-1 -kerning first=8366 second=103 amount=-1 -kerning first=78 second=966 amount=-1 -kerning first=84 second=47 amount=-4 -kerning first=339 second=1076 amount=-1 -kerning first=1178 second=1185 amount=-2 -kerning first=247 second=99 amount=-1 -kerning first=367 second=249 amount=-1 -kerning first=160 second=111 amount=-1 -kerning first=1299 second=1038 amount=-2 -kerning first=124 second=351 amount=-1 -kerning first=36 second=1177 amount=-1 -kerning first=62 second=290 amount=-2 -kerning first=205 second=210 amount=-2 -kerning first=322 second=338 amount=-2 -kerning first=325 second=100 amount=-1 -kerning first=900 second=250 amount=-1 -kerning first=8364 second=972 amount=-1 -kerning first=8369 second=281 amount=-1 -kerning first=942 second=187 amount=-1 -kerning first=105 second=364 amount=-2 -kerning first=371 second=199 amount=-2 -kerning first=962 second=1079 amount=-1 -kerning first=968 second=89 amount=-5 -kerning first=125 second=1035 amount=-5 -kerning first=161 second=291 amount=-1 -kerning first=274 second=211 amount=-2 -kerning first=37 second=8212 amount=-2 -kerning first=40 second=1059 amount=-2 -kerning first=298 second=353 amount=-1 -kerning first=301 second=113 amount=-1 -kerning first=206 second=365 amount=-1 -kerning first=8377 second=228 amount=-1 -kerning first=103 second=8216 amount=-3 -kerning first=252 second=224 amount=-1 -kerning first=369 second=1118 amount=-1 -kerning first=972 second=39 amount=-1 -kerning first=271 second=1184 amount=-5 -kerning first=8218 second=79 amount=-1 -kerning first=47 second=248 amount=-2 -kerning first=187 second=378 amount=-1 -kerning first=190 second=171 amount=-3 -kerning first=204 second=8217 amount=-3 -kerning first=8372 second=1257 amount=-1 -kerning first=905 second=355 amount=-1 -kerning first=910 second=115 amount=-3 -kerning first=93 second=87 amount=-5 -kerning first=1168 second=267 amount=-1 -kerning first=113 second=249 amount=-1 -kerning first=973 second=214 amount=-2 -kerning first=8216 second=945 amount=-1 -kerning first=1062 second=356 amount=-2 -kerning first=74 second=100 amount=-1 -kerning first=1085 second=972 amount=-1 -kerning first=1094 second=281 amount=-1 -kerning first=214 second=250 amount=-1 -kerning first=94 second=262 amount=-2 -kerning first=237 second=187 amount=-1 -kerning first=351 second=8220 amount=-1 -kerning first=952 second=227 amount=-1 -kerning first=117 second=199 amount=-2 -kerning first=1223 second=357 amount=-1 -kerning first=254 second=1079 amount=-1 -kerning first=260 second=89 amount=-5 -kerning first=167 second=1098 amount=-3 -kerning first=170 second=339 amount=-1 -kerning first=174 second=101 amount=-1 -kerning first=52 second=353 amount=-1 -kerning first=55 second=113 amount=-1 -kerning first=195 second=263 amount=-1 -kerning first=1170 second=1194 amount=-2 -kerning first=241 second=102 amount=-1 -kerning first=358 second=943 amount=-1 -kerning first=361 second=252 amount=-1 -kerning first=950 second=1256 amount=-2 -kerning first=1299 second=67 amount=-2 -kerning first=972 second=8222 amount=-1 -kerning first=1036 second=79 amount=-3 -kerning first=175 second=279 amount=-1 -kerning first=8226 second=359 amount=-1 -kerning first=1067 second=920 amount=-2 -kerning first=8361 second=286 amount=-2 -kerning first=317 second=103 amount=-1 -kerning first=1096 second=1257 amount=-1 -kerning first=96 second=1185 amount=-3 -kerning first=179 second=226 amount=-1 -kerning first=290 second=356 amount=-1 -kerning first=200 second=368 amount=-2 -kerning first=315 second=972 amount=-1 -kerning first=318 second=281 amount=-1 -kerning first=8365 second=231 amount=-1 -kerning first=97 second=8220 amount=-1 -kerning first=369 second=117 amount=-1 -kerning first=963 second=269 amount=-1 -kerning first=41 second=251 amount=-1 -kerning first=198 second=8221 amount=-3 -kerning first=201 second=1066 amount=-5 -kerning first=1080 second=106 amount=1 -kerning first=902 second=118 amount=-4 -kerning first=967 second=217 amount=-2 -kerning first=266 second=8222 amount=-1 -kerning first=276 second=79 amount=-2 -kerning first=1049 second=119 amount=-4 -kerning first=1046 second=359 amount=-1 -kerning first=297 second=920 amount=-2 -kerning first=1081 second=286 amount=-2 -kerning first=322 second=1257 amount=-1 -kerning first=8369 second=1090 amount=-3 -kerning first=88 second=267 amount=-2 -kerning first=1118 second=218 amount=-2 -kerning first=248 second=1083 amount=-1 -kerning first=374 second=242 amount=-4 -kerning first=965 second=947 amount=-4 -kerning first=968 second=372 amount=-5 -kerning first=161 second=1101 amount=-1 -kerning first=274 second=945 amount=-1 -kerning first=46 second=356 amount=-5 -kerning first=49 second=116 amount=-1 -kerning first=189 second=268 amount=-2 -kerning first=69 second=281 amount=-1 -kerning first=1087 second=231 amount=-1 -kerning first=8377 second=965 amount=-1 -kerning first=1119 second=373 amount=-4 -kerning first=255 second=269 amount=-1 -kerning first=165 second=973 amount=-1 -kerning first=8212 second=1176 amount=-1 -kerning first=8218 second=362 amount=-1 -kerning first=1064 second=244 amount=-1 -kerning first=193 second=216 amount=-2 -kerning first=73 second=228 amount=-1 -kerning first=93 second=370 amount=-2 -kerning first=90 second=1194 amount=-1 -kerning first=1176 second=83 amount=-1 -kerning first=236 second=283 amount=-1 -kerning first=951 second=333 amount=-1 -kerning first=973 second=949 amount=-1 -kerning first=1027 second=257 amount=-1 -kerning first=172 second=229 amount=-1 -kerning first=287 second=119 amount=-4 -kerning first=282 second=359 amount=-1 -kerning first=8220 second=1051 amount=-3 -kerning first=51 second=920 amount=-2 -kerning first=1068 second=194 amount=-1 -kerning first=191 second=1195 amount=-1 -kerning first=194 second=371 amount=-1 -kerning first=306 second=1026 amount=-5 -kerning first=1094 second=1090 amount=-2 -kerning first=338 second=218 amount=-2 -kerning first=916 second=346 amount=-1 -kerning first=240 second=230 amount=-1 -kerning first=955 second=273 amount=-1 -kerning first=960 second=45 amount=-2 -kerning first=952 second=964 amount=-3 -kerning first=120 second=242 amount=-2 -kerning first=257 second=947 amount=-1 -kerning first=260 second=372 amount=-5 -kerning first=174 second=1240 amount=-2 -kerning first=170 second=1262 amount=-2 -kerning first=195 second=1069 amount=-1 -kerning first=201 second=81 amount=-2 -kerning first=316 second=231 amount=-1 -kerning first=221 second=243 amount=-4 -kerning first=336 second=1202 amount=-3 -kerning first=339 second=373 amount=-1 -kerning first=928 second=288 amount=-2 -kerning first=238 second=1263 amount=-1 -kerning first=1299 second=350 amount=-1 -kerning first=178 second=332 amount=-2 -kerning first=294 second=244 amount=-1 -kerning first=1074 second=289 amount=-1 -kerning first=62 second=106 amount=1 -kerning first=1070 second=1033 amount=-1 -kerning first=8364 second=337 amount=-1 -kerning first=8369 second=99 amount=-1 -kerning first=900 second=71 amount=-2 -kerning first=337 second=8230 amount=-1 -kerning first=962 second=375 amount=-1 -kerning first=40 second=359 amount=-1 -kerning first=43 second=119 amount=-4 -kerning first=179 second=963 amount=-1 -kerning first=183 second=271 amount=-1 -kerning first=60 second=1026 amount=-5 -kerning first=63 second=286 amount=-2 -kerning first=318 second=1090 amount=-3 -kerning first=323 second=334 amount=-2 -kerning first=8365 second=968 amount=-1 -kerning first=901 second=246 amount=-1 -kerning first=86 second=218 amount=-2 -kerning first=8370 second=277 amount=-1 -kerning first=1184 second=8212 amount=-4 -kerning first=249 second=273 amount=-1 -kerning first=252 second=45 amount=-2 -kerning first=246 second=964 amount=-1 -kerning first=960 second=8249 amount=-3 -kerning first=162 second=287 amount=-1 -kerning first=296 second=1108 amount=-1 -kerning first=299 second=347 amount=-1 -kerning first=207 second=361 amount=-1 -kerning first=8378 second=224 amount=-1 -kerning first=87 second=373 amount=-1 -kerning first=944 second=336 amount=-2 -kerning first=1207 second=248 amount=-1 -kerning first=253 second=220 amount=-2 -kerning first=376 second=110 amount=-3 -kerning first=166 second=232 amount=-1 -kerning first=273 second=1176 amount=-1 -kerning first=276 second=362 amount=-2 -kerning first=279 second=122 amount=-1 -kerning first=48 second=244 amount=-1 -kerning first=188 second=374 amount=-5 -kerning first=303 second=289 amount=-1 -kerning first=1085 second=337 amount=-1 -kerning first=1094 second=99 amount=-1 -kerning first=214 second=71 amount=-2 -kerning first=332 second=221 amount=-3 -kerning first=906 second=351 amount=-1 -kerning first=85 second=8230 amount=-1 -kerning first=94 second=83 amount=-1 -kerning first=1118 second=953 amount=-1 -kerning first=354 second=363 amount=-2 -kerning first=945 second=967 amount=-2 -kerning first=114 second=245 amount=-1 -kerning first=254 second=375 amount=-1 -kerning first=377 second=290 amount=-1 -kerning first=274 second=8211 amount=-2 -kerning first=8217 second=941 amount=-1 -kerning first=1063 second=352 amount=-1 -kerning first=195 second=84 amount=-5 -kerning first=69 second=1090 amount=-3 -kerning first=72 second=334 amount=-2 -kerning first=1087 second=968 amount=-1 -kerning first=215 second=246 amount=-1 -kerning first=1095 second=277 amount=-1 -kerning first=912 second=291 amount=-1 -kerning first=908 second=1035 amount=-2 -kerning first=1224 second=353 amount=-1 -kerning first=252 second=8249 amount=-3 -kerning first=381 second=235 amount=-1 -kerning first=1026 second=365 amount=-1 -kerning first=175 second=97 amount=-1 -kerning first=50 second=1108 amount=-1 -kerning first=53 second=347 amount=-1 -kerning first=196 second=259 amount=-1 -kerning first=73 second=965 amount=-1 -kerning first=79 second=46 amount=-1 -kerning first=1099 second=224 amount=-1 -kerning first=219 second=196 amount=-2 -kerning first=340 second=86 amount=-1 -kerning first=1171 second=1184 amount=-5 -kerning first=1176 second=366 amount=-2 -kerning first=239 second=336 amount=-2 -kerning first=958 second=171 amount=-3 -kerning first=262 second=260 amount=-1 -kerning first=973 second=8217 amount=-3 -kerning first=172 second=966 amount=-1 -kerning first=176 second=275 amount=-1 -kerning first=8230 second=355 amount=-1 -kerning first=57 second=289 amount=-1 -kerning first=315 second=337 amount=-1 -kerning first=318 second=99 amount=-1 -kerning first=80 second=221 amount=-5 -kerning first=223 second=111 amount=-1 -kerning first=338 second=953 amount=-1 -kerning first=341 second=261 amount=-1 -kerning first=100 second=363 amount=-1 -kerning first=366 second=198 amount=-2 -kerning first=123 second=290 amount=-2 -kerning first=1035 second=941 amount=-1 -kerning first=291 second=352 amount=-1 -kerning first=61 second=234 amount=-1 -kerning first=1073 second=1241 amount=-1 -kerning first=201 second=364 amount=-2 -kerning first=316 second=968 amount=-1 -kerning first=321 second=277 amount=-1 -kerning first=8366 second=227 amount=-1 -kerning first=81 second=376 amount=-3 -kerning first=928 second=1098 amount=-3 -kerning first=936 second=339 amount=-1 -kerning first=367 second=353 amount=-1 -kerning first=961 second=955 amount=-1 -kerning first=964 second=263 amount=-1 -kerning first=160 second=235 amount=-1 -kerning first=325 second=224 amount=-1 -kerning first=8364 second=1256 amount=-2 -kerning first=900 second=354 amount=-5 -kerning first=1118 second=39 amount=-3 -kerning first=942 second=279 amount=-1 -kerning first=108 second=248 amount=-1 -kerning first=248 second=378 amount=-1 -kerning first=251 second=171 amount=-3 -kerning first=374 second=63 amount=-1 -kerning first=968 second=213 amount=-2 -kerning first=267 second=8217 amount=-1 -kerning first=1051 second=115 amount=-1 -kerning first=189 second=87 amount=-5 -kerning first=69 second=99 amount=-1 -kerning first=206 second=940 amount=-1 -kerning first=209 second=249 amount=-1 -kerning first=901 second=1038 amount=-2 -kerning first=86 second=953 amount=-1 -kerning first=89 second=261 amount=-4 -kerning first=1119 second=214 amount=-2 -kerning first=946 second=226 amount=-1 -kerning first=1206 second=356 amount=-2 -kerning first=1219 second=116 amount=-1 -kerning first=165 second=338 amount=-2 -kerning first=168 second=100 amount=-1 -kerning first=278 second=250 amount=-1 -kerning first=47 second=352 amount=-1 -kerning first=190 second=262 amount=-2 -kerning first=302 second=1241 amount=-1 -kerning first=305 second=187 amount=-1 -kerning first=70 second=277 amount=-1 -kerning first=327 second=1079 amount=-1 -kerning first=334 second=89 amount=-3 -kerning first=93 second=211 amount=-2 -kerning first=1168 second=369 amount=-1 -kerning first=230 second=1098 amount=-1 -kerning first=236 second=101 amount=-1 -kerning first=356 second=251 amount=-2 -kerning first=113 second=353 amount=-1 -kerning first=256 second=263 amount=-1 -kerning first=967 second=8221 amount=-3 -kerning first=8224 second=118 amount=-4 -kerning first=1065 second=240 amount=-1 -kerning first=194 second=212 amount=-2 -kerning first=74 second=224 amount=-1 -kerning first=1085 second=1256 amount=-2 -kerning first=214 second=354 amount=-5 -kerning first=338 second=39 amount=-3 -kerning first=91 second=1184 amount=-5 -kerning first=94 second=366 amount=-2 -kerning first=237 second=279 amount=-1 -kerning first=1223 second=920 amount=-2 -kerning first=260 second=213 amount=-2 -kerning first=174 second=225 amount=-1 -kerning first=192 second=1185 amount=-3 -kerning first=195 second=367 amount=-1 -kerning first=215 second=1038 amount=-2 -kerning first=912 second=1101 amount=-1 -kerning first=1175 second=945 amount=-1 -kerning first=361 second=356 amount=-5 -kerning first=956 second=268 amount=-2 -kerning first=381 second=972 amount=-1 -kerning first=36 second=250 amount=-1 -kerning first=56 second=1241 amount=-1 -kerning first=59 second=187 amount=-1 -kerning first=193 second=8220 amount=-3 -kerning first=317 second=227 amount=-1 -kerning first=82 second=89 amount=-2 -kerning first=923 second=973 amount=-1 -kerning first=962 second=216 amount=-2 -kerning first=262 second=1066 amount=-1 -kerning first=259 second=8221 amount=-1 -kerning first=1041 second=118 amount=-4 -kerning first=1075 second=283 amount=-1 -kerning first=200 second=943 amount=-1 -kerning first=203 second=252 amount=-1 -kerning first=315 second=1256 amount=-1 -kerning first=8365 second=333 amount=-1 -kerning first=901 second=67 amount=-2 -kerning first=86 second=39 amount=-3 -kerning first=960 second=1195 amount=-1 -kerning first=963 second=371 amount=-1 -kerning first=162 second=103 amount=-1 -kerning first=271 second=253 amount=-1 -kerning first=41 second=355 amount=-1 -kerning first=184 second=267 amount=-1 -kerning first=1080 second=230 amount=-1 -kerning first=8372 second=273 amount=-1 -kerning first=8378 second=45 amount=-2 -kerning first=902 second=242 amount=-1 -kerning first=8366 second=964 amount=-3 -kerning first=87 second=214 amount=-2 -kerning first=1106 second=947 amount=-1 -kerning first=345 second=945 amount=-1 -kerning first=936 second=1262 amount=-2 -kerning first=250 second=268 amount=-2 -kerning first=964 second=1069 amount=-1 -kerning first=160 second=972 amount=-1 -kerning first=163 second=281 amount=-1 -kerning first=1049 second=243 amount=-1 -kerning first=88 second=369 amount=-1 -kerning first=1210 second=244 amount=-1 -kerning first=254 second=216 amount=-2 -kerning first=167 second=228 amount=-1 -kerning first=280 second=118 amount=-4 -kerning first=49 second=240 amount=-1 -kerning first=186 second=1194 amount=-2 -kerning first=189 second=370 amount=-2 -kerning first=304 second=283 amount=-1 -kerning first=1087 second=333 amount=-1 -kerning first=215 second=67 amount=-2 -kerning first=86 second=8222 amount=-4 -kerning first=95 second=79 amount=-2 -kerning first=1119 second=949 amount=-1 -kerning first=1170 second=257 amount=-1 -kerning first=358 second=119 amount=-4 -kerning first=946 second=963 amount=-1 -kerning first=950 second=271 amount=-1 -kerning first=252 second=1195 amount=-1 -kerning first=255 second=371 amount=-1 -kerning first=375 second=1026 amount=-5 -kerning first=165 second=1257 amount=-1 -kerning first=1064 second=346 amount=-1 -kerning first=310 second=230 amount=-1 -kerning first=1096 second=273 amount=-1 -kerning first=1099 second=45 amount=-2 -kerning first=213 second=923 amount=-2 -kerning first=331 second=947 amount=-1 -kerning first=334 second=372 amount=-2 -kerning first=8378 second=8249 amount=-3 -kerning first=915 second=287 amount=-1 -kerning first=93 second=945 amount=-1 -kerning first=236 second=1240 amount=-2 -kerning first=1220 second=1108 amount=-1 -kerning first=256 second=1069 amount=-1 -kerning first=382 second=231 amount=-1 -kerning first=1027 second=361 amount=-1 -kerning first=287 second=243 amount=-1 -kerning first=1065 second=1028 amount=-1 -kerning first=306 second=1263 amount=-1 -kerning first=77 second=269 amount=-1 -kerning first=926 second=232 amount=-1 -kerning first=240 second=332 amount=-2 -kerning first=363 second=244 amount=-1 -kerning first=955 second=374 amount=-5 -kerning first=123 second=106 amount=7 -kerning first=1298 second=289 amount=-1 -kerning first=38 second=118 amount=-1 -kerning first=174 second=962 amount=-1 -kerning first=8240 second=351 amount=-1 -kerning first=8260 second=111 amount=-1 -kerning first=58 second=283 amount=-1 -kerning first=1073 second=233 amount=-1 -kerning first=316 second=333 amount=-1 -kerning first=221 second=345 amount=-3 -kerning first=104 second=119 amount=-1 -kerning first=964 second=84 amount=-5 -kerning first=121 second=1026 amount=-5 -kerning first=124 second=286 amount=-2 -kerning first=1039 second=246 amount=-1 -kerning first=182 second=218 amount=-2 -kerning first=294 second=346 amount=-1 -kerning first=8249 second=1035 amount=-1 -kerning first=62 second=230 amount=-1 -kerning first=199 second=1174 amount=-2 -kerning first=202 second=360 amount=-2 -kerning first=317 second=964 amount=-3 -kerning first=325 second=45 amount=-2 -kerning first=322 second=273 amount=-1 -kerning first=82 second=372 amount=-1 -kerning first=1099 second=8249 amount=-3 -kerning first=942 second=97 amount=-1 -kerning first=365 second=1108 amount=-1 -kerning first=965 second=259 amount=-1 -kerning first=968 second=34 amount=-3 -kerning first=161 second=231 amount=-1 -kerning first=267 second=1175 amount=-1 -kerning first=274 second=121 amount=-1 -kerning first=43 second=243 amount=-1 -kerning first=1047 second=196 amount=-1 -kerning first=183 second=373 amount=-4 -kerning first=298 second=288 amount=-2 -kerning first=60 second=1263 amount=-1 -kerning first=8377 second=171 amount=-3 -kerning first=901 second=350 amount=-1 -kerning first=246 second=1203 amount=-2 -kerning first=249 second=374 amount=-5 -kerning first=372 second=289 amount=-2 -kerning first=278 second=71 amount=-2 -kerning first=47 second=193 amount=-5 -kerning first=1048 second=351 amount=-1 -kerning first=190 second=83 amount=-1 -kerning first=302 second=233 amount=-1 -kerning first=327 second=375 amount=-1 -kerning first=905 second=290 amount=-2 -kerning first=87 second=949 amount=-3 -kerning first=1168 second=210 amount=-2 -kerning first=345 second=8211 amount=-1 -kerning first=256 second=84 amount=-5 -kerning first=376 second=234 amount=-4 -kerning first=166 second=334 amount=-2 -kerning first=163 second=1090 amount=-3 -kerning first=48 second=346 amount=-1 -kerning first=1049 second=1035 amount=-5 -kerning first=74 second=45 amount=-2 -kerning first=325 second=8249 amount=-3 -kerning first=237 second=97 amount=-1 -kerning first=114 second=347 amount=-1 -kerning first=260 second=34 amount=-3 -kerning first=968 second=8216 amount=-3 -kerning first=167 second=965 amount=-1 -kerning first=49 second=1028 amount=-2 -kerning first=52 second=288 amount=-2 -kerning first=215 second=350 amount=-1 -kerning first=336 second=260 amount=-2 -kerning first=95 second=362 amount=-2 -kerning first=1119 second=8217 amount=-3 -kerning first=92 second=1176 amount=-1 -kerning first=98 second=122 amount=-1 -kerning first=238 second=275 amount=-1 -kerning first=956 second=87 amount=-5 -kerning first=118 second=289 amount=-1 -kerning first=381 second=337 amount=-1 -kerning first=36 second=71 amount=-2 -kerning first=1026 second=940 amount=-1 -kerning first=175 second=221 amount=-5 -kerning first=289 second=111 amount=-1 -kerning first=8222 second=1038 amount=-1 -kerning first=56 second=233 amount=-1 -kerning first=196 second=363 amount=-1 -kerning first=193 second=1177 amount=-1 -kerning first=8361 second=226 amount=-1 -kerning first=76 second=375 amount=-1 -kerning first=923 second=338 amount=-2 -kerning first=93 second=8211 amount=-2 -kerning first=931 second=100 amount=-1 -kerning first=1176 second=941 amount=-1 -kerning first=958 second=262 amount=-2 -kerning first=122 second=234 amount=-1 -kerning first=1263 second=1241 amount=-1 -kerning first=37 second=246 amount=-1 -kerning first=1037 second=199 amount=-2 -kerning first=176 second=376 amount=-5 -kerning first=287 second=1035 amount=-5 -kerning first=1071 second=339 amount=-1 -kerning first=194 second=8212 amount=-2 -kerning first=197 second=1059 amount=-2 -kerning first=1068 second=1098 amount=-2 -kerning first=1075 second=101 amount=-1 -kerning first=74 second=8249 amount=-3 -kerning first=1103 second=263 amount=-1 -kerning first=223 second=235 amount=-1 -kerning first=963 second=212 amount=-2 -kerning first=260 second=8216 amount=-3 -kerning first=1035 second=1118 amount=-1 -kerning first=174 second=8250 amount=-1 -kerning first=61 second=336 amount=-2 -kerning first=1073 second=970 amount=-1 -kerning first=1076 second=279 amount=-1 -kerning first=204 second=248 amount=-1 -kerning first=902 second=63 amount=-5 -kerning first=84 second=260 amount=-6 -kerning first=339 second=8217 amount=-1 -kerning first=244 second=1076 amount=-1 -kerning first=250 second=87 amount=-5 -kerning first=961 second=1185 amount=-1 -kerning first=964 second=367 amount=-1 -kerning first=160 second=337 amount=-1 -kerning first=163 second=99 amount=-1 -kerning first=273 second=249 amount=-1 -kerning first=42 second=351 amount=-1 -kerning first=1039 second=1038 amount=-2 -kerning first=185 second=261 amount=-1 -kerning first=182 second=953 amount=-1 -kerning first=1081 second=226 amount=-1 -kerning first=208 second=198 amount=-2 -kerning first=88 second=210 amount=-3 -kerning first=108 second=352 amount=-1 -kerning first=251 second=262 amount=-2 -kerning first=371 second=1241 amount=-1 -kerning first=374 second=187 amount=-2 -kerning first=962 second=8220 amount=-3 -kerning first=161 second=968 amount=-1 -kerning first=164 second=277 amount=-1 -kerning first=43 second=1035 amount=-5 -kerning first=46 second=291 amount=-1 -kerning first=189 second=211 amount=-2 -kerning first=301 second=339 amount=-1 -kerning first=304 second=101 amount=-1 -kerning first=298 second=1098 amount=-3 -kerning first=209 second=353 amount=-1 -kerning first=330 second=263 amount=-1 -kerning first=86 second=1179 amount=-2 -kerning first=89 second=365 amount=-2 -kerning first=1108 second=8221 amount=-1 -kerning first=1219 second=240 amount=-1 -kerning first=255 second=212 amount=-2 -kerning first=372 second=1099 amount=-2 -kerning first=168 second=224 amount=-1 -kerning first=278 second=354 amount=-5 -kerning first=8212 second=1044 amount=-4 -kerning first=8222 second=67 amount=-1 -kerning first=187 second=1184 amount=-3 -kerning first=190 second=366 amount=-2 -kerning first=305 second=279 amount=-1 -kerning first=302 second=970 amount=-1 -kerning first=70 second=378 amount=-1 -kerning first=73 second=171 amount=-3 -kerning first=8378 second=1195 amount=-1 -kerning first=915 second=103 amount=-1 -kerning first=910 second=341 amount=-3 -kerning first=1171 second=253 amount=-1 -kerning first=236 second=225 amount=-1 -kerning first=951 second=267 amount=-1 -kerning first=256 second=367 amount=-1 -kerning first=253 second=1185 amount=-3 -kerning first=8224 second=242 amount=-1 -kerning first=8220 second=923 amount=-3 -kerning first=311 second=226 amount=-1 -kerning first=94 second=941 amount=-1 -kerning first=916 second=281 amount=-1 -kerning first=117 second=1241 amount=-1 -kerning first=120 second=187 amount=-1 -kerning first=254 second=8220 amount=-3 -kerning first=35 second=199 amount=-2 -kerning first=1035 second=117 amount=-1 -kerning first=170 second=1079 amount=-1 -kerning first=177 second=89 amount=-5 -kerning first=52 second=1098 amount=-3 -kerning first=55 second=339 amount=-1 -kerning first=58 second=101 amount=-1 -kerning first=198 second=251 amount=-1 -kerning first=78 second=263 amount=-1 -kerning first=336 second=1066 amount=-2 -kerning first=333 second=8221 amount=-1 -kerning first=928 second=228 amount=-1 -kerning first=956 second=370 amount=-2 -kerning first=1299 second=283 amount=-1 -kerning first=381 second=1256 amount=-1 -kerning first=36 second=354 amount=-5 -kerning first=1039 second=67 amount=-2 -kerning first=178 second=266 amount=-2 -kerning first=182 second=39 amount=-3 -kerning first=59 second=279 amount=-1 -kerning first=56 second=970 amount=-1 -kerning first=1074 second=229 amount=-1 -kerning first=8361 second=963 amount=-1 -kerning first=8364 second=271 amount=-1 -kerning first=1099 second=1195 amount=-1 -kerning first=923 second=1257 amount=-1 -kerning first=105 second=115 amount=-1 -kerning first=37 second=1038 amount=-2 -kerning first=1041 second=242 amount=-1 -kerning first=183 second=214 amount=-2 -kerning first=63 second=226 amount=-1 -kerning first=1071 second=1262 amount=-2 -kerning first=203 second=356 amount=-5 -kerning first=206 second=116 amount=-1 -kerning first=323 second=268 amount=-2 -kerning first=8370 second=219 amount=-2 -kerning first=1103 second=1069 amount=-1 -kerning first=223 second=972 amount=-1 -kerning first=947 second=243 amount=-1 -kerning first=162 second=227 amount=-1 -kerning first=271 second=357 amount=-1 -kerning first=184 second=369 amount=-1 -kerning first=296 second=973 amount=-1 -kerning first=1080 second=332 amount=-2 -kerning first=327 second=216 amount=-2 -kerning first=8372 second=374 amount=-5 -kerning first=905 second=106 amount=1 -kerning first=353 second=118 amount=-1 -kerning first=247 second=1194 amount=-2 -kerning first=250 second=370 amount=-2 -kerning first=373 second=283 amount=-1 -kerning first=160 second=1256 amount=-2 -kerning first=8216 second=245 amount=-1 -kerning first=191 second=79 amount=-2 -kerning first=303 second=229 amount=-1 -kerning first=1081 second=963 amount=-1 -kerning first=1085 second=271 amount=-1 -kerning first=325 second=1195 amount=-1 -kerning first=903 second=1026 amount=-5 -kerning first=906 second=286 amount=-2 -kerning first=91 second=253 amount=-1 -kerning first=1210 second=346 amount=-1 -kerning first=971 second=360 amount=-2 -kerning first=974 second=120 amount=-1 -kerning first=280 second=242 amount=-1 -kerning first=1063 second=287 amount=-1 -kerning first=189 second=945 amount=-1 -kerning first=304 second=1240 amount=-2 -kerning first=301 second=1262 amount=-2 -kerning first=72 second=268 amount=-2 -kerning first=1095 second=219 amount=-2 -kerning first=330 second=1069 amount=-1 -kerning first=912 second=231 amount=-1 -kerning first=1170 second=361 amount=-1 -kerning first=358 second=243 amount=-1 -kerning first=950 second=373 amount=-4 -kerning first=1219 second=1028 amount=-2 -kerning first=1224 second=288 amount=-2 -kerning first=375 second=1263 amount=-1 -kerning first=50 second=973 amount=-1 -kerning first=1067 second=232 amount=-1 -kerning first=310 second=332 amount=-3 -kerning first=76 second=216 amount=-1 -kerning first=1096 second=374 amount=-5 -kerning first=910 second=1298 amount=-5 -kerning first=99 second=118 amount=-1 -kerning first=236 second=962 amount=-1 -kerning first=362 second=193 amount=-2 -kerning first=958 second=83 amount=-1 -kerning first=119 second=283 amount=-1 -kerning first=1263 second=233 amount=-1 -kerning first=382 second=333 amount=-1 -kerning first=37 second=67 amount=-2 -kerning first=176 second=217 amount=-2 -kerning first=8230 second=290 amount=-1 -kerning first=57 second=229 amount=-1 -kerning first=200 second=119 amount=-4 -kerning first=197 second=359 amount=-1 -kerning first=315 second=271 amount=-1 -kerning first=311 second=963 amount=-2 -kerning first=77 second=371 amount=-1 -kerning first=74 second=1195 amount=-1 -kerning first=1097 second=1073 amount=-1 -kerning first=1103 second=84 amount=-5 -kerning first=926 second=334 amount=-2 -kerning first=916 second=1090 amount=-3 -kerning first=1184 second=246 amount=-2 -kerning first=363 second=346 amount=-1 -kerning first=123 second=230 amount=-1 -kerning first=38 second=242 amount=-1 -kerning first=174 second=947 amount=-4 -kerning first=177 second=372 amount=-5 -kerning first=291 second=287 amount=-1 -kerning first=8260 second=235 amount=-1 -kerning first=58 second=1240 amount=-2 -kerning first=55 second=1262 amount=-2 -kerning first=1073 second=335 amount=-1 -kerning first=321 second=219 amount=-2 -kerning first=78 second=1069 amount=-1 -kerning first=84 second=81 amount=-1 -kerning first=339 second=1175 amount=-2 -kerning first=928 second=965 amount=-1 -kerning first=1194 second=196 amount=-1 -kerning first=244 second=373 amount=-1 -kerning first=367 second=288 amount=-2 -kerning first=121 second=1263 amount=-1 -kerning first=1039 second=350 amount=-1 -kerning first=297 second=232 amount=-1 -kerning first=62 second=332 amount=-2 -kerning first=1074 second=966 amount=-1 -kerning first=1078 second=275 amount=-2 -kerning first=205 second=244 amount=-1 -kerning first=322 second=374 amount=-5 -kerning first=900 second=289 amount=-1 -kerning first=85 second=256 amount=-2 -kerning first=222 second=1298 amount=-1 -kerning first=942 second=221 amount=-5 -kerning first=242 second=8230 amount=-1 -kerning first=1203 second=111 amount=-1 -kerning first=251 second=83 amount=-1 -kerning first=371 second=233 amount=-1 -kerning first=965 second=363 amount=-1 -kerning first=962 second=1177 amount=-1 -kerning first=161 second=333 amount=-1 -kerning first=274 second=245 amount=-1 -kerning first=8211 second=198 amount=-2 -kerning first=183 second=949 amount=-1 -kerning first=186 second=257 amount=-1 -kerning first=63 second=963 amount=-1 -kerning first=330 second=84 amount=-5 -kerning first=8377 second=262 amount=-2 -kerning first=904 second=234 amount=-1 -kerning first=226 second=1090 amount=-1 -kerning first=963 second=8212 amount=-2 -kerning first=165 second=273 amount=-1 -kerning first=168 second=45 amount=-2 -kerning first=162 second=964 amount=-3 -kerning first=47 second=287 amount=-1 -kerning first=302 second=335 amount=-1 -kerning first=305 second=97 amount=-1 -kerning first=70 second=219 amount=-2 -kerning first=207 second=1108 amount=-1 -kerning first=87 second=1175 amount=-1 -kerning first=93 second=121 amount=-1 -kerning first=356 second=196 amount=-6 -kerning first=113 second=288 amount=-2 -kerning first=376 second=336 amount=-3 -kerning first=973 second=248 amount=-1 -kerning first=169 second=220 amount=-2 -kerning first=51 second=232 amount=-1 -kerning first=191 second=362 amount=-2 -kerning first=188 second=1176 amount=-1 -kerning first=303 second=966 amount=-1 -kerning first=306 second=275 amount=-1 -kerning first=71 second=374 amount=-2 -kerning first=214 second=289 amount=-1 -kerning first=211 second=1033 amount=-1 -kerning first=916 second=99 amount=-1 -kerning first=1169 second=940 amount=-1 -kerning first=237 second=221 amount=-5 -kerning first=354 second=1114 amount=-2 -kerning first=357 second=351 amount=-1 -kerning first=952 second=261 amount=-1 -kerning first=117 second=233 amount=-1 -kerning first=254 second=1177 amount=-1 -kerning first=1028 second=198 amount=-1 -kerning first=170 second=375 amount=-1 -kerning first=189 second=8211 amount=-2 -kerning first=78 second=84 amount=-5 -kerning first=912 second=968 amount=-1 -kerning first=1178 second=199 amount=-1 -kerning first=238 second=376 amount=-5 -kerning first=358 second=1035 amount=-5 -kerning first=361 second=291 amount=-1 -kerning first=956 second=211 amount=-2 -kerning first=1224 second=1098 amount=-3 -kerning first=255 second=8212 amount=-2 -kerning first=258 second=1059 amount=-2 -kerning first=1299 second=101 amount=-1 -kerning first=168 second=8249 amount=-3 -kerning first=1036 second=113 amount=-2 -kerning first=178 second=85 amount=-2 -kerning first=289 second=235 amount=-1 -kerning first=56 second=335 amount=-1 -kerning first=59 second=97 amount=-1 -kerning first=196 second=936 amount=-3 -kerning first=931 second=224 amount=-1 -kerning first=1176 second=1118 amount=-1 -kerning first=236 second=8250 amount=-1 -kerning first=958 second=366 amount=-2 -kerning first=1263 second=970 amount=-1 -kerning first=37 second=350 amount=-1 -kerning first=57 second=966 amount=-1 -kerning first=60 second=275 amount=-1 -kerning first=323 second=87 amount=-5 -kerning first=8365 second=267 amount=-1 -kerning first=1103 second=367 amount=-1 -kerning first=223 second=337 amount=-1 -kerning first=341 second=940 amount=-1 -kerning first=103 second=351 amount=-1 -kerning first=41 second=290 amount=-2 -kerning first=184 second=210 amount=-2 -kerning first=296 second=338 amount=-2 -kerning first=299 second=100 amount=-1 -kerning first=8260 second=972 amount=-1 -kerning first=204 second=352 amount=-1 -kerning first=902 second=187 amount=-1 -kerning first=1101 second=8220 amount=-1 -kerning first=936 second=1079 amount=-1 -kerning first=944 second=89 amount=-5 -kerning first=107 second=291 amount=-2 -kerning first=250 second=211 amount=-2 -kerning first=367 second=1098 amount=-3 -kerning first=373 second=101 amount=-1 -kerning first=967 second=251 amount=-1 -kerning first=273 second=353 amount=-1 -kerning first=276 second=113 amount=-1 -kerning first=185 second=365 amount=-1 -kerning first=8369 second=1194 amount=-2 -kerning first=1118 second=252 amount=-1 -kerning first=354 second=114 amount=-2 -kerning first=949 second=39 amount=-1 -kerning first=251 second=366 amount=-2 -kerning first=371 second=970 amount=-1 -kerning first=374 second=279 amount=-4 -kerning first=167 second=171 amount=-3 -kerning first=183 second=8217 amount=-3 -kerning first=1063 second=103 amount=-1 -kerning first=304 second=225 amount=-1 -kerning first=72 second=87 amount=-5 -kerning first=1087 second=267 amount=-1 -kerning first=326 second=1185 amount=-1 -kerning first=330 second=367 amount=-1 -kerning first=89 second=940 amount=-4 -kerning first=92 second=249 amount=-1 -kerning first=950 second=214 amount=-2 -kerning first=1026 second=116 amount=-1 -kerning first=171 second=88 amount=-1 -kerning first=47 second=1097 amount=-1 -kerning first=50 second=338 amount=-2 -kerning first=53 second=100 amount=-1 -kerning first=190 second=941 amount=-1 -kerning first=193 second=250 amount=-1 -kerning first=1064 second=281 amount=-1 -kerning first=70 second=954 amount=-1 -kerning first=73 second=262 amount=-2 -kerning first=327 second=8220 amount=-3 -kerning first=915 second=227 amount=-1 -kerning first=96 second=199 amount=-2 -kerning first=1171 second=357 amount=-1 -kerning first=1176 second=117 amount=-1 -kerning first=239 second=89 amount=-5 -kerning first=951 second=369 amount=-1 -kerning first=113 second=1098 amount=-3 -kerning first=1220 second=973 amount=-1 -kerning first=119 second=101 amount=-1 -kerning first=376 second=1224 amount=-3 -kerning first=379 second=381 amount=1 -kerning first=34 second=113 amount=-1 -kerning first=172 second=263 amount=-1 -kerning first=8230 second=106 amount=2 -kerning first=77 second=212 amount=-2 -kerning first=338 second=252 amount=-1 -kerning first=94 second=1118 amount=-1 -kerning first=1184 second=67 amount=-3 -kerning first=240 second=266 amount=-2 -kerning first=243 second=39 amount=-1 -kerning first=960 second=79 amount=-2 -kerning first=117 second=970 amount=-1 -kerning first=120 second=279 amount=-2 -kerning first=1298 second=229 amount=-1 -kerning first=177 second=213 amount=-2 -kerning first=291 second=103 amount=-1 -kerning first=8225 second=1026 amount=-5 -kerning first=8240 second=286 amount=-2 -kerning first=58 second=225 amount=-1 -kerning first=198 second=355 amount=-1 -kerning first=201 second=115 amount=-1 -kerning first=316 second=267 amount=-1 -kerning first=8363 second=218 amount=-2 -kerning first=75 second=1185 amount=-4 -kerning first=78 second=367 amount=-1 -kerning first=1185 second=242 amount=-2 -kerning first=361 second=1101 amount=-1 -kerning first=956 second=945 amount=-1 -kerning first=1299 second=1240 amount=-2 -kerning first=124 second=226 amount=-1 -kerning first=266 second=356 amount=-1 -kerning first=178 second=368 amount=-2 -kerning first=289 second=972 amount=-1 -kerning first=294 second=281 amount=-1 -kerning first=8364 second=373 amount=-4 -kerning first=76 second=8220 amount=-3 -kerning first=365 second=973 amount=-1 -kerning first=179 second=1066 amount=-5 -kerning first=176 second=8221 amount=-3 -kerning first=298 second=228 amount=-1 -kerning first=8250 second=1298 amount=-2 -kerning first=1075 second=962 amount=-1 -kerning first=206 second=240 amount=-1 -kerning first=318 second=1194 amount=-2 -kerning first=323 second=370 amount=-2 -kerning first=8377 second=83 amount=-1 -kerning first=901 second=283 amount=-1 -kerning first=86 second=252 amount=-2 -kerning first=223 second=1256 amount=-2 -kerning first=243 second=8222 amount=-1 -kerning first=252 second=79 amount=-2 -kerning first=372 second=229 amount=-2 -kerning first=271 second=920 amount=-2 -kerning first=8212 second=194 amount=-2 -kerning first=47 second=103 amount=-2 -kerning first=1044 second=1026 amount=-2 -kerning first=1048 second=286 amount=-2 -kerning first=296 second=1257 amount=-1 -kerning first=1084 second=218 amount=-2 -kerning first=905 second=230 amount=-1 -kerning first=1117 second=360 amount=-2 -kerning first=350 second=923 amount=-1 -kerning first=941 second=947 amount=-1 -kerning first=944 second=372 amount=-5 -kerning first=250 second=945 amount=-1 -kerning first=166 second=268 amount=-2 -kerning first=8216 second=347 amount=-1 -kerning first=48 second=281 amount=-1 -kerning first=1062 second=231 amount=-1 -kerning first=1085 second=373 amount=-4 -kerning first=903 second=1263 amount=-1 -kerning first=94 second=117 amount=-1 -kerning first=91 second=357 amount=-1 -kerning first=1223 second=232 amount=-1 -kerning first=374 second=1085 amount=-3 -kerning first=377 second=332 amount=-1 -kerning first=170 second=216 amount=-2 -kerning first=8221 second=289 amount=-1 -kerning first=8217 second=1033 amount=-3 -kerning first=52 second=228 amount=-1 -kerning first=195 second=118 amount=-4 -kerning first=304 second=962 amount=-1 -kerning first=69 second=1194 amount=-2 -kerning first=72 second=370 amount=-2 -kerning first=215 second=283 amount=-1 -kerning first=912 second=333 amount=-1 -kerning first=1175 second=245 amount=-1 -kerning first=238 second=217 amount=-2 -kerning first=950 second=949 amount=-1 -kerning first=118 second=229 amount=-1 -kerning first=258 second=359 amount=-1 -kerning first=381 second=271 amount=-1 -kerning first=1240 second=44 amount=-1 -kerning first=261 second=119 amount=-1 -kerning first=378 second=963 amount=-1 -kerning first=168 second=1195 amount=-1 -kerning first=1033 second=194 amount=-1 -kerning first=8226 second=234 amount=-1 -kerning first=50 second=1257 amount=-1 -kerning first=1064 second=1090 amount=-3 -kerning first=1067 second=334 amount=-2 -kerning first=314 second=218 amount=-2 -kerning first=334 second=1174 amount=-3 -kerning first=923 second=273 amount=-1 -kerning first=931 second=45 amount=-2 -kerning first=915 second=964 amount=-3 -kerning first=236 second=947 amount=-4 -kerning first=239 second=372 amount=-5 -kerning first=1263 second=335 amount=-1 -kerning first=1027 second=1108 amount=-1 -kerning first=172 second=1069 amount=-1 -kerning first=179 second=81 amount=-2 -kerning first=1075 second=46 amount=-3 -kerning first=200 second=243 amount=-1 -kerning first=315 second=373 amount=-3 -kerning first=934 second=220 amount=-2 -kerning first=1184 second=350 amount=-1 -kerning first=955 second=1176 amount=-1 -kerning first=960 second=362 amount=-2 -kerning first=123 second=332 amount=-2 -kerning first=1298 second=966 amount=-1 -kerning first=41 second=106 amount=1 -kerning first=8260 second=337 amount=-1 -kerning first=58 second=962 amount=-1 -kerning first=8366 second=261 amount=-1 -kerning first=8363 second=953 amount=-1 -kerning first=221 second=1087 amount=-3 -kerning first=345 second=245 amount=-1 -kerning first=936 second=375 amount=-1 -kerning first=247 second=257 amount=-1 -kerning first=956 second=8211 amount=-2 -kerning first=124 second=963 amount=-1 -kerning first=160 second=271 amount=-1 -kerning first=42 second=286 amount=-2 -kerning first=1046 second=234 amount=-2 -kerning first=294 second=1090 amount=-3 -kerning first=297 second=334 amount=-2 -kerning first=65 second=218 amount=-2 -kerning first=205 second=346 amount=-1 -kerning first=225 second=964 amount=-1 -kerning first=931 second=8249 amount=-3 -kerning first=108 second=287 amount=-1 -kerning first=1203 second=235 amount=-1 -kerning first=371 second=335 amount=-1 -kerning first=374 second=97 amount=-4 -kerning first=164 second=219 amount=-2 -kerning first=274 second=347 amount=-1 -kerning first=186 second=361 amount=-1 -kerning first=189 second=121 amount=-1 -kerning first=298 second=965 amount=-1 -kerning first=206 second=1028 amount=-2 -kerning first=209 second=288 amount=-2 -kerning first=8370 second=1184 amount=-5 -kerning first=8377 second=366 amount=-2 -kerning first=904 second=336 amount=-2 -kerning first=1119 second=248 amount=-1 -kerning first=249 second=1176 amount=-1 -kerning first=252 second=362 amount=-2 -kerning first=375 second=275 amount=-1 -kerning first=372 second=966 amount=-3 -kerning first=165 second=374 amount=-5 -kerning first=278 second=289 amount=-1 -kerning first=1064 second=99 amount=-1 -kerning first=193 second=71 amount=-2 -kerning first=305 second=221 amount=-5 -kerning first=73 second=83 amount=-1 -kerning first=1084 second=953 amount=-1 -kerning first=327 second=1177 amount=-1 -kerning first=93 second=245 amount=-1 -kerning first=356 second=290 amount=-1 -kerning first=951 second=210 amount=-2 -kerning first=1220 second=338 amount=-2 -kerning first=250 second=8211 amount=-2 -kerning first=973 second=352 amount=-1 -kerning first=172 second=84 amount=-5 -kerning first=282 second=234 amount=-1 -kerning first=8224 second=187 amount=-1 -kerning first=8220 second=1241 amount=-1 -kerning first=51 second=334 amount=-2 -kerning first=48 second=1090 amount=-3 -kerning first=194 second=246 amount=-1 -kerning first=1065 second=277 amount=-1 -kerning first=306 second=376 amount=-5 -kerning first=74 second=258 amount=-1 -kerning first=240 second=85 amount=-2 -kerning first=952 second=365 amount=-1 -kerning first=117 second=335 amount=-1 -kerning first=120 second=97 amount=-1 -kerning first=174 second=259 amount=-1 -kerning first=177 second=34 amount=-3 -kerning first=52 second=965 amount=-1 -kerning first=304 second=8250 amount=-1 -kerning first=8363 second=39 amount=-3 -kerning first=1095 second=1184 amount=-5 -kerning first=928 second=171 amount=-3 -kerning first=950 second=8217 amount=-3 -kerning first=121 second=275 amount=-1 -kerning first=118 second=966 amount=-1 -kerning first=1299 second=225 amount=-1 -kerning first=266 second=197 amount=-1 -kerning first=36 second=289 amount=-1 -kerning first=289 second=337 amount=-1 -kerning first=294 second=99 amount=-1 -kerning first=59 second=221 amount=-5 -kerning first=1070 second=379 amount=-1 -kerning first=202 second=111 amount=-1 -kerning first=314 second=953 amount=-1 -kerning first=317 second=261 amount=-1 -kerning first=8364 second=214 amount=-2 -kerning first=365 second=338 amount=-2 -kerning first=958 second=941 amount=-1 -kerning first=962 second=250 amount=-1 -kerning first=40 second=234 amount=-1 -kerning first=1037 second=1241 amount=-1 -kerning first=1041 second=187 amount=-1 -kerning first=179 second=364 amount=-2 -kerning first=60 second=376 amount=-5 -kerning first=1071 second=1079 amount=-1 -kerning first=200 second=1035 amount=-5 -kerning first=203 second=291 amount=-1 -kerning first=323 second=211 amount=-2 -kerning first=8365 second=369 amount=-1 -kerning first=80 second=1059 amount=-2 -kerning first=77 second=8212 amount=-2 -kerning first=901 second=101 amount=-1 -kerning first=177 second=8216 amount=-3 -kerning first=299 second=224 amount=-1 -kerning first=8260 second=1256 amount=-2 -kerning first=58 second=8250 amount=-1 -kerning first=67 second=86 amount=-1 -kerning first=1080 second=266 amount=-2 -kerning first=1084 second=39 amount=-3 -kerning first=321 second=1184 amount=-5 -kerning first=8378 second=79 amount=-2 -kerning first=902 second=279 amount=-1 -kerning first=87 second=248 amount=-3 -kerning first=353 second=63 amount=-2 -kerning first=944 second=213 amount=-2 -kerning first=244 second=8217 amount=-1 -kerning first=373 second=225 amount=-1 -kerning first=967 second=355 amount=-1 -kerning first=166 second=87 amount=-5 -kerning first=48 second=99 amount=-1 -kerning first=185 second=940 amount=-1 -kerning first=188 second=249 amount=-1 -kerning first=65 second=953 amount=-1 -kerning first=1085 second=214 amount=-2 -kerning first=906 second=226 amount=-1 -kerning first=1118 second=356 amount=-5 -kerning first=114 second=100 amount=-1 -kerning first=1210 second=281 amount=-1 -kerning first=1203 second=972 amount=-1 -kerning first=254 second=250 amount=-1 -kerning first=251 second=941 amount=-1 -kerning first=374 second=380 amount=-2 -kerning first=167 second=262 amount=-2 -kerning first=280 second=187 amount=-1 -kerning first=52 second=49 amount=-2 -kerning first=49 second=277 amount=-1 -kerning first=1063 second=227 amount=-1 -kerning first=192 second=199 amount=-2 -kerning first=301 second=1079 amount=-1 -kerning first=46 second=968 amount=-1 -kerning first=72 second=211 amount=-2 -kerning first=1087 second=369 amount=-1 -kerning first=209 second=1098 amount=-3 -kerning first=215 second=101 amount=-1 -kerning first=908 second=381 amount=-1 -kerning first=89 second=1117 amount=-3 -kerning first=92 second=353 amount=-1 -kerning first=95 second=113 amount=-1 -kerning first=232 second=955 amount=-1 -kerning first=946 second=1066 amount=-5 -kerning first=1224 second=228 amount=-1 -kerning first=381 second=90 amount=1 -kerning first=1026 second=240 amount=-1 -kerning first=53 second=224 amount=-1 -kerning first=193 second=354 amount=-5 -kerning first=190 second=1118 amount=-1 -kerning first=310 second=266 amount=-3 -kerning first=314 second=39 amount=-3 -kerning first=70 second=1184 amount=-5 -kerning first=73 second=366 amount=-2 -kerning first=1099 second=79 amount=-2 -kerning first=910 second=1081 amount=-3 -kerning first=99 second=63 amount=-1 -kerning first=1171 second=920 amount=-2 -kerning first=239 second=213 amount=-2 -kerning first=356 second=1100 amount=-2 -kerning first=119 second=225 amount=-1 -kerning first=1220 second=1257 amount=-1 -kerning first=382 second=267 amount=-1 -kerning first=172 second=367 amount=-1 -kerning first=169 second=1185 amount=-3 -kerning first=194 second=1038 amount=-2 -kerning first=315 second=214 amount=-1 -kerning first=1097 second=945 amount=-1 -kerning first=338 second=356 amount=-5 -kerning first=926 second=268 amount=-2 -kerning first=240 second=368 amount=-2 -kerning first=363 second=281 amount=-1 -kerning first=268 second=65 amount=-1 -kerning first=35 second=1241 amount=-1 -kerning first=38 second=187 amount=-1 -kerning first=170 second=8220 amount=-3 -kerning first=291 second=227 amount=-1 -kerning first=8225 second=1263 amount=-1 -kerning first=61 second=89 amount=-5 -kerning first=55 second=1079 amount=-1 -kerning first=1073 second=269 amount=-1 -kerning first=316 second=369 amount=-1 -kerning first=936 second=216 amount=-2 -kerning first=238 second=8221 amount=-3 -kerning first=1194 second=106 amount=1 -kerning first=367 second=228 amount=-1 -kerning first=964 second=118 amount=-4 -kerning first=1299 second=962 amount=-1 -kerning first=266 second=916 amount=-1 -kerning first=1039 second=283 amount=-1 -kerning first=178 second=943 amount=-1 -kerning first=182 second=252 amount=-1 -kerning first=289 second=1256 amount=-2 -kerning first=62 second=266 amount=-2 -kerning first=65 second=39 amount=-3 -kerning first=325 second=79 amount=-2 -kerning first=8364 second=949 amount=-1 -kerning first=8369 second=257 amount=-1 -kerning first=900 second=229 amount=-1 -kerning first=931 second=1195 amount=-1 -kerning first=108 second=103 amount=-1 -kerning first=1186 second=1026 amount=-2 -kerning first=365 second=1257 amount=-1 -kerning first=161 second=267 amount=-1 -kerning first=46 second=52 amount=-1 -kerning first=203 second=1101 amount=-1 -kerning first=323 second=945 amount=-1 -kerning first=901 second=1240 amount=-2 -kerning first=86 second=356 amount=-5 -kerning first=946 second=81 amount=-2 -kerning first=1206 second=231 amount=-1 -kerning first=372 second=331 amount=-2 -kerning first=47 second=227 amount=-2 -kerning first=190 second=117 amount=-1 -kerning first=302 second=269 amount=-1 -kerning first=207 second=973 amount=-1 -kerning first=8372 second=1176 amount=-1 -kerning first=8378 second=362 amount=-2 -kerning first=905 second=332 amount=-2 -kerning first=1168 second=244 amount=-1 -kerning first=113 second=228 amount=-1 -kerning first=256 second=118 amount=-4 -kerning first=373 second=962 amount=-1 -kerning first=163 second=1194 amount=-2 -kerning first=166 second=370 amount=-2 -kerning first=8220 second=233 amount=-1 -kerning first=1062 second=333 amount=-1 -kerning first=194 second=67 amount=-2 -kerning first=306 second=217 amount=-2 -kerning first=74 second=79 amount=-2 -kerning first=1085 second=949 amount=-1 -kerning first=214 second=229 amount=-1 -kerning first=335 second=119 amount=-1 -kerning first=906 second=963 amount=-1 -kerning first=91 second=920 amount=-2 -kerning first=357 second=286 amount=-2 -kerning first=1210 second=1090 amount=-3 -kerning first=1223 second=334 amount=-2 -kerning first=1063 second=964 amount=-3 -kerning first=195 second=242 amount=-1 -kerning first=304 second=947 amount=-4 -kerning first=72 second=945 amount=-1 -kerning first=215 second=1240 amount=-2 -kerning first=1170 second=1108 amount=-1 -kerning first=361 second=231 amount=-1 -kerning first=956 second=121 amount=-1 -kerning first=1224 second=965 amount=-1 -kerning first=1026 second=1028 amount=-2 -kerning first=8226 second=336 amount=-2 -kerning first=56 second=269 amount=-1 -kerning first=1096 second=1176 amount=-1 -kerning first=1099 second=362 amount=-2 -kerning first=1102 second=122 amount=-1 -kerning first=923 second=374 amount=-5 -kerning first=962 second=71 amount=-2 -kerning first=119 second=962 amount=-1 -kerning first=37 second=283 amount=-1 -kerning first=1037 second=233 amount=-1 -kerning first=60 second=217 amount=-2 -kerning first=1071 second=375 amount=-1 -kerning first=315 second=949 amount=-1 -kerning first=318 second=257 amount=-1 -kerning first=8365 second=210 amount=-2 -kerning first=80 second=359 amount=-1 -kerning first=83 second=119 amount=-1 -kerning first=223 second=271 amount=-1 -kerning first=100 second=1026 amount=-5 -kerning first=103 second=286 amount=-2 -kerning first=1187 second=234 amount=-1 -kerning first=363 second=1090 amount=-3 -kerning first=963 second=246 amount=-1 -kerning first=126 second=218 amount=-2 -kerning first=41 second=230 amount=-1 -kerning first=180 second=360 amount=-2 -kerning first=291 second=964 amount=-3 -kerning first=296 second=273 amount=-1 -kerning first=299 second=45 amount=-2 -kerning first=58 second=947 amount=-4 -kerning first=61 second=372 amount=-5 -kerning first=1080 second=85 amount=-2 -kerning first=204 second=287 amount=-1 -kerning first=8366 second=365 amount=-1 -kerning first=902 second=97 amount=-1 -kerning first=345 second=347 amount=-1 -kerning first=944 second=34 amount=-3 -kerning first=107 second=231 amount=-2 -kerning first=244 second=1175 amount=-2 -kerning first=247 second=361 amount=-1 -kerning first=250 second=121 amount=-1 -kerning first=367 second=965 amount=-1 -kerning first=373 second=46 amount=-2 -kerning first=160 second=373 amount=-4 -kerning first=1299 second=8250 amount=-1 -kerning first=273 second=288 amount=-2 -kerning first=1046 second=336 amount=-3 -kerning first=300 second=220 amount=-2 -kerning first=325 second=362 amount=-2 -kerning first=8364 second=8217 amount=-3 -kerning first=322 second=1176 amount=-1 -kerning first=900 second=966 amount=-1 -kerning first=903 second=275 amount=-1 -kerning first=88 second=244 amount=-2 -kerning first=1210 second=99 amount=-1 -kerning first=1203 second=337 amount=-1 -kerning first=254 second=71 amount=-2 -kerning first=971 second=111 amount=-1 -kerning first=968 second=351 amount=-1 -kerning first=167 second=83 amount=-1 -kerning first=189 second=245 amount=-1 -kerning first=301 second=375 amount=-1 -kerning first=69 second=257 amount=-1 -kerning first=1087 second=210 amount=-2 -kerning first=323 second=8211 amount=-2 -kerning first=8377 second=941 amount=-1 -kerning first=1119 second=352 amount=-1 -kerning first=946 second=364 amount=-2 -kerning first=109 second=1090 amount=-1 -kerning first=1219 second=277 amount=-1 -kerning first=255 second=246 amount=-1 -kerning first=375 second=376 amount=-5 -kerning first=47 second=964 amount=-3 -kerning first=53 second=45 amount=-2 -kerning first=50 second=273 amount=-1 -kerning first=299 second=8249 amount=-3 -kerning first=93 second=347 amount=-1 -kerning first=90 second=1108 amount=-1 -kerning first=239 second=34 amount=-3 -kerning first=236 second=259 amount=-1 -kerning first=944 second=8216 amount=-3 -kerning first=113 second=965 amount=-1 -kerning first=119 second=46 amount=-2 -kerning first=376 second=1075 amount=-3 -kerning first=282 second=336 amount=-2 -kerning first=8224 second=279 amount=-1 -kerning first=8230 second=51 amount=-1 -kerning first=54 second=220 amount=-2 -kerning first=194 second=350 amount=-1 -kerning first=74 second=362 amount=-2 -kerning first=1085 second=8217 amount=-3 -kerning first=214 second=966 amount=-1 -kerning first=926 second=87 amount=-5 -kerning first=363 second=99 amount=-1 -kerning first=955 second=249 amount=-1 -kerning first=952 second=940 amount=-1 -kerning first=260 second=351 amount=-1 -kerning first=35 second=233 amount=-1 -kerning first=170 second=1177 amount=-1 -kerning first=174 second=363 amount=-1 -kerning first=283 second=967 amount=-2 -kerning first=8240 second=226 amount=-1 -kerning first=55 second=375 amount=-1 -kerning first=198 second=290 amount=-2 -kerning first=316 second=210 amount=-2 -kerning first=72 second=8211 amount=-2 -kerning first=928 second=262 amount=-2 -kerning first=1178 second=1241 amount=-1 -kerning first=361 second=968 amount=-1 -kerning first=121 second=376 amount=-5 -kerning first=1036 second=339 amount=-2 -kerning first=1039 second=101 amount=-1 -kerning first=175 second=1059 amount=-2 -kerning first=1033 second=1098 amount=-2 -kerning first=53 second=8249 amount=-3 -kerning first=1070 second=955 amount=-2 -kerning first=62 second=85 amount=-2 -kerning first=202 second=235 amount=-1 -kerning first=1074 second=263 amount=-1 -kerning first=317 second=365 amount=-1 -kerning first=8361 second=1066 amount=-5 -kerning first=222 second=377 amount=-1 -kerning first=239 second=8216 amount=-3 -kerning first=962 second=354 amount=-5 -kerning first=958 second=1118 amount=-1 -kerning first=40 second=336 amount=-2 -kerning first=1041 second=279 amount=-1 -kerning first=183 second=248 amount=-1 -kerning first=1037 second=970 amount=-1 -kerning first=298 second=171 amount=-3 -kerning first=315 second=8217 amount=-3 -kerning first=8370 second=253 amount=-1 -kerning first=901 second=225 amount=-1 -kerning first=86 second=197 amount=-6 -kerning first=1116 second=115 amount=-1 -kerning first=934 second=1185 amount=-3 -kerning first=249 second=249 amount=-1 -kerning first=963 second=1038 amount=-2 -kerning first=162 second=261 amount=-1 -kerning first=126 second=953 amount=-1 -kerning first=1048 second=226 amount=-1 -kerning first=187 second=198 amount=-3 -kerning first=1080 second=368 amount=-2 -kerning first=207 second=338 amount=-2 -kerning first=327 second=250 amount=-1 -kerning first=84 second=1116 amount=-2 -kerning first=87 second=352 amount=-1 -kerning first=936 second=8220 amount=-3 -kerning first=253 second=199 amount=-2 -kerning first=166 second=211 amount=-2 -kerning first=273 second=1098 amount=-3 -kerning first=276 second=339 amount=-1 -kerning first=188 second=353 amount=-1 -kerning first=191 second=113 amount=-1 -kerning first=303 second=263 amount=-1 -kerning first=1081 second=1066 amount=-5 -kerning first=1169 second=240 amount=-1 -kerning first=114 second=224 amount=-1 -kerning first=251 second=1118 amount=-1 -kerning first=254 second=354 amount=-5 -kerning first=377 second=266 amount=-1 -kerning first=164 second=1184 amount=-5 -kerning first=167 second=366 amount=-2 -kerning first=280 second=279 amount=-1 -kerning first=8221 second=229 amount=-1 -kerning first=52 second=171 amount=-3 -kerning first=1095 second=253 amount=-1 -kerning first=215 second=225 amount=-1 -kerning first=912 second=267 amount=-1 -kerning first=232 second=1185 amount=-1 -kerning first=255 second=1038 amount=-2 -kerning first=381 second=214 amount=-1 -kerning first=8218 second=1262 amount=-1 -kerning first=8222 second=1240 amount=-1 -kerning first=1067 second=268 amount=-2 -kerning first=8361 second=81 amount=-2 -kerning first=73 second=941 amount=-1 -kerning first=76 second=250 amount=-1 -kerning first=96 second=1241 amount=-1 -kerning first=233 second=8220 amount=-1 -kerning first=958 second=117 amount=-1 -kerning first=1263 second=269 amount=-1 -kerning first=37 second=101 amount=-1 -kerning first=1027 second=973 amount=-1 -kerning first=34 second=339 amount=-1 -kerning first=176 second=251 amount=-1 -kerning first=8230 second=332 amount=-1 -kerning first=57 second=263 amount=-1 -kerning first=1071 second=216 amount=-2 -kerning first=306 second=8221 amount=-3 -kerning first=1103 second=118 amount=-4 -kerning first=341 second=240 amount=-1 -kerning first=916 second=1194 amount=-2 -kerning first=926 second=370 amount=-2 -kerning first=1184 second=283 amount=-2 -kerning first=240 second=943 amount=-1 -kerning first=963 second=67 amount=-2 -kerning first=123 second=266 amount=-2 -kerning first=126 second=39 amount=-3 -kerning first=35 second=970 amount=-1 -kerning first=38 second=279 amount=-1 -kerning first=8240 second=963 amount=-1 -kerning first=8260 second=271 amount=-1 -kerning first=61 second=213 amount=-2 -kerning first=1073 second=371 amount=-1 -kerning first=204 second=103 amount=-1 -kerning first=321 second=253 amount=-1 -kerning first=84 second=115 amount=-3 -kerning first=964 second=242 amount=-1 -kerning first=160 second=214 amount=-2 -kerning first=1299 second=947 amount=-4 -kerning first=42 second=226 amount=-1 -kerning first=1039 second=1240 amount=-2 -kerning first=182 second=356 amount=-5 -kerning first=185 second=116 amount=-1 -kerning first=297 second=268 amount=-2 -kerning first=62 second=368 amount=-2 -kerning first=1074 second=1069 amount=-1 -kerning first=1081 second=81 amount=-2 -kerning first=202 second=972 amount=-1 -kerning first=205 second=281 amount=-1 -kerning first=8369 second=361 amount=-1 -kerning first=108 second=227 amount=-1 -kerning first=251 second=117 amount=-1 -kerning first=371 second=269 amount=-1 -kerning first=161 second=369 amount=-1 -kerning first=301 second=216 amount=-2 -kerning first=63 second=1066 amount=-5 -kerning first=60 second=8221 amount=-3 -kerning first=209 second=228 amount=-1 -kerning first=330 second=118 amount=-4 -kerning first=901 second=962 amount=-1 -kerning first=86 second=916 amount=-6 -kerning first=89 second=240 amount=-4 -kerning first=1206 second=333 amount=-1 -kerning first=255 second=67 amount=-2 -kerning first=375 second=217 amount=-2 -kerning first=168 second=79 amount=-2 -kerning first=278 second=229 amount=-1 -kerning first=47 second=328 amount=-1 -kerning first=1048 second=963 amount=-1 -kerning first=302 second=371 amount=-1 -kerning first=299 second=1195 amount=-1 -kerning first=70 second=253 amount=-1 -kerning first=207 second=1257 amount=-1 -kerning first=1168 second=346 amount=-1 -kerning first=356 second=230 amount=-2 -kerning first=948 second=360 amount=-2 -kerning first=1220 second=273 amount=-1 -kerning first=256 second=242 amount=-1 -kerning first=1207 second=964 amount=-2 -kerning first=973 second=287 amount=-1 -kerning first=166 second=945 amount=-1 -kerning first=276 second=1262 amount=-2 -kerning first=8220 second=335 amount=-1 -kerning first=8224 second=97 amount=-1 -kerning first=51 second=268 amount=-2 -kerning first=1065 second=219 amount=-1 -kerning first=303 second=1069 amount=-1 -kerning first=1174 second=288 amount=-1 -kerning first=354 second=1263 amount=-2 -kerning first=117 second=269 amount=-1 -kerning first=8225 second=275 amount=-1 -kerning first=55 second=216 amount=-2 -kerning first=8221 second=966 amount=-1 -kerning first=1066 second=374 amount=-5 -kerning first=198 second=106 amount=1 -kerning first=78 second=118 amount=-4 -kerning first=215 second=962 amount=-1 -kerning first=928 second=83 amount=-1 -kerning first=908 second=8230 amount=-1 -kerning first=1178 second=233 amount=-1 -kerning first=361 second=333 amount=-1 -kerning first=956 second=245 amount=-1 -kerning first=121 second=217 amount=-2 -kerning first=381 second=949 amount=-1 -kerning first=36 second=229 amount=-1 -kerning first=175 second=359 amount=-1 -kerning first=178 second=119 amount=-4 -kerning first=289 second=271 amount=-1 -kerning first=53 second=1195 amount=-1 -kerning first=56 second=371 amount=-1 -kerning first=1074 second=84 amount=-5 -kerning first=196 second=1026 amount=-5 -kerning first=8361 second=364 amount=-2 -kerning first=923 second=950 amount=-1 -kerning first=102 second=230 amount=-1 -kerning first=245 second=120 amount=-2 -kerning first=365 second=273 amount=-1 -kerning first=37 second=1240 amount=-2 -kerning first=1037 second=335 amount=-1 -kerning first=1041 second=97 amount=-1 -kerning first=57 second=1069 amount=-1 -kerning first=63 second=81 amount=-2 -kerning first=203 second=231 amount=-1 -kerning first=318 second=361 amount=-1 -kerning first=323 second=121 amount=-1 -kerning first=223 second=373 amount=-4 -kerning first=100 second=1263 amount=-1 -kerning first=369 second=220 amount=-2 -kerning first=963 second=350 amount=-1 -kerning first=271 second=232 amount=-1 -kerning first=41 second=332 amount=-2 -kerning first=1241 second=122 amount=-1 -kerning first=1044 second=275 amount=-1 -kerning first=184 second=244 amount=-1 -kerning first=296 second=374 amount=-5 -kerning first=327 second=71 amount=-2 -kerning first=8372 second=249 amount=-1 -kerning first=8366 second=940 amount=-1 -kerning first=902 second=221 amount=-5 -kerning first=87 second=193 amount=-5 -kerning first=1117 second=111 amount=-1 -kerning first=221 second=8230 amount=-4 -kerning first=936 second=1177 amount=-1 -kerning first=107 second=333 amount=-2 -kerning first=250 second=245 amount=-1 -kerning first=967 second=290 amount=-2 -kerning first=160 second=949 amount=-1 -kerning first=163 second=257 amount=-1 -kerning first=8216 second=100 amount=-1 -kerning first=42 second=963 amount=-1 -kerning first=48 second=44 amount=-1 -kerning first=303 second=84 amount=-5 -kerning first=1081 second=364 amount=-2 -kerning first=205 second=1090 amount=-3 -kerning first=903 second=376 amount=-5 -kerning first=88 second=346 amount=-1 -kerning first=1118 second=291 amount=-1 -kerning first=942 second=1059 amount=-2 -kerning first=108 second=964 amount=-3 -kerning first=114 second=45 amount=-1 -kerning first=971 second=235 amount=-1 -kerning first=280 second=97 amount=-1 -kerning first=49 second=219 amount=-2 -kerning first=186 second=1108 amount=-1 -kerning first=189 second=347 amount=-1 -kerning first=304 second=259 amount=-1 -kerning first=69 second=361 amount=-1 -kerning first=72 second=121 amount=-1 -kerning first=209 second=965 amount=-1 -kerning first=8377 second=1118 amount=-1 -kerning first=901 second=8250 amount=-1 -kerning first=92 second=288 amount=-2 -kerning first=89 second=1028 amount=-3 -kerning first=950 second=248 amount=-1 -kerning first=1224 second=171 amount=-3 -kerning first=255 second=350 amount=-1 -kerning first=165 second=1176 amount=-1 -kerning first=168 second=362 amount=-2 -kerning first=278 second=966 amount=-1 -kerning first=47 second=1203 amount=-1 -kerning first=50 second=374 amount=-5 -kerning first=1067 second=87 amount=-5 -kerning first=193 second=289 amount=-1 -kerning first=76 second=71 amount=-1 -kerning first=1096 second=249 amount=-1 -kerning first=1090 second=940 amount=-1 -kerning first=216 second=221 amount=-3 -kerning first=915 second=261 amount=-1 -kerning first=910 second=953 amount=-2 -kerning first=96 second=233 amount=-1 -kerning first=236 second=363 amount=-1 -kerning first=1027 second=338 amount=-2 -kerning first=166 second=8211 amount=-2 -kerning first=57 second=84 amount=-5 -kerning first=197 second=234 amount=-1 -kerning first=77 second=246 amount=-1 -kerning first=338 second=291 amount=-1 -kerning first=926 second=211 amount=-2 -kerning first=1174 second=1098 amount=-2 -kerning first=1184 second=101 amount=-2 -kerning first=237 second=1059 amount=-2 -kerning first=955 second=353 amount=-1 -kerning first=960 second=113 amount=-1 -kerning first=1257 second=955 amount=-1 -kerning first=123 second=85 amount=-2 -kerning first=1298 second=263 amount=-1 -kerning first=35 second=335 amount=-1 -kerning first=38 second=97 amount=-1 -kerning first=58 second=259 amount=-1 -kerning first=61 second=34 amount=-3 -kerning first=1073 second=212 amount=-2 -kerning first=8363 second=252 amount=-1 -kerning first=81 second=196 amount=-2 -kerning first=215 second=8250 amount=-1 -kerning first=928 second=366 amount=-2 -kerning first=920 second=1184 amount=-2 -kerning first=1185 second=279 amount=-2 -kerning first=367 second=171 amount=-3 -kerning first=36 second=966 amount=-1 -kerning first=1039 second=225 amount=-1 -kerning first=39 second=275 amount=-1 -kerning first=297 second=87 amount=-5 -kerning first=1074 second=367 amount=-1 -kerning first=202 second=337 amount=-1 -kerning first=205 second=99 amount=-1 -kerning first=317 second=940 amount=-1 -kerning first=322 second=249 amount=-1 -kerning first=161 second=210 amount=-2 -kerning first=274 second=100 amount=-1 -kerning first=183 second=352 amount=-1 -kerning first=298 second=262 amount=-2 -kerning first=63 second=364 amount=-2 -kerning first=1071 second=8220 amount=-3 -kerning first=203 second=968 amount=-1 -kerning first=206 second=277 amount=-1 -kerning first=8370 second=357 amount=-1 -kerning first=8377 second=117 amount=-1 -kerning first=86 second=291 amount=-1 -kerning first=904 second=89 amount=-5 -kerning first=83 second=1035 amount=-1 -kerning first=252 second=113 amount=-1 -kerning first=249 second=353 amount=-1 -kerning first=372 second=263 amount=-3 -kerning first=162 second=365 amount=-1 -kerning first=302 second=212 amount=-2 -kerning first=61 second=8216 amount=-3 -kerning first=70 second=74 amount=-6 -kerning first=1084 second=252 amount=-1 -kerning first=1080 second=943 amount=-1 -kerning first=327 second=354 amount=-5 -kerning first=905 second=266 amount=-2 -kerning first=113 second=171 amount=-3 -kerning first=256 second=63 amount=-5 -kerning first=376 second=213 amount=-3 -kerning first=160 second=8217 amount=-3 -kerning first=973 second=103 amount=-1 -kerning first=51 second=87 amount=-5 -kerning first=1062 second=267 amount=-1 -kerning first=300 second=1185 amount=-3 -kerning first=303 second=367 amount=-1 -kerning first=211 second=379 amount=-1 -kerning first=1118 second=1101 amount=-1 -kerning first=357 second=226 amount=-1 -kerning first=952 second=116 amount=-1 -kerning first=111 second=1078 amount=-2 -kerning first=1223 second=268 amount=-2 -kerning first=971 second=972 amount=-1 -kerning first=170 second=250 amount=-1 -kerning first=167 second=941 amount=-1 -kerning first=52 second=262 amount=-2 -kerning first=192 second=1241 amount=-1 -kerning first=195 second=187 amount=-1 -kerning first=301 second=8220 amount=-3 -kerning first=75 second=199 amount=-3 -kerning first=1095 second=357 amount=-1 -kerning first=912 second=369 amount=-1 -kerning first=95 second=339 amount=-1 -kerning first=1170 second=973 amount=-1 -kerning first=92 second=1098 amount=-3 -kerning first=238 second=251 amount=-1 -kerning first=118 second=263 amount=-1 -kerning first=375 second=8221 amount=-3 -kerning first=56 second=212 amount=-2 -kerning first=1064 second=1194 amount=-2 -kerning first=1067 second=370 amount=-2 -kerning first=314 second=252 amount=-1 -kerning first=73 second=1118 amount=-1 -kerning first=76 second=354 amount=-6 -kerning first=910 second=8222 amount=-4 -kerning first=931 second=79 amount=-2 -kerning first=96 second=970 amount=-1 -kerning first=1263 second=371 amount=-1 -kerning first=1027 second=1257 amount=-1 -kerning first=37 second=225 amount=-1 -kerning first=176 second=355 amount=-1 -kerning first=179 second=115 amount=-1 -kerning first=54 second=1185 amount=-3 -kerning first=57 second=367 amount=-1 -kerning first=77 second=1038 amount=-2 -kerning first=1103 second=242 amount=-1 -kerning first=223 second=214 amount=-2 -kerning first=338 second=1101 amount=-1 -kerning first=926 second=945 amount=-1 -kerning first=103 second=226 amount=-1 -kerning first=1184 second=1240 amount=-3 -kerning first=123 second=368 amount=-2 -kerning first=1298 second=1069 amount=-1 -kerning first=8260 second=373 amount=-4 -kerning first=55 second=8220 amount=-3 -kerning first=204 second=227 amount=-1 -kerning first=321 second=357 amount=-1 -kerning first=221 second=1187 amount=-3 -kerning first=124 second=1066 amount=-5 -kerning first=121 second=8221 amount=-3 -kerning first=967 second=106 amount=1 -kerning first=273 second=228 amount=-1 -kerning first=45 second=90 amount=-2 -kerning first=1039 second=962 amount=-1 -kerning first=185 second=240 amount=-1 -kerning first=294 second=1194 amount=-2 -kerning first=297 second=370 amount=-2 -kerning first=62 second=943 amount=-1 -kerning first=65 second=252 amount=-1 -kerning first=202 second=1256 amount=-2 -kerning first=903 second=217 amount=-2 -kerning first=222 second=8222 amount=-1 -kerning first=942 second=359 amount=-1 -kerning first=945 second=119 amount=-2 -kerning first=1203 second=271 amount=-1 -kerning first=371 second=371 amount=-1 -kerning first=965 second=1026 amount=-5 -kerning first=968 second=286 amount=-2 -kerning first=164 second=253 amount=-1 -kerning first=1051 second=218 amount=-2 -kerning first=1083 second=360 amount=-2 -kerning first=330 second=242 amount=-1 -kerning first=901 second=947 amount=-4 -kerning first=904 second=372 amount=-5 -kerning first=86 second=1101 amount=-1 -kerning first=1119 second=287 amount=-1 -kerning first=1219 second=219 amount=-2 -kerning first=73 second=117 amount=-1 -kerning first=70 second=357 amount=-1 -kerning first=1171 second=232 amount=-1 -kerning first=951 second=244 amount=-1 -kerning first=356 second=332 amount=-1 -kerning first=1220 second=374 amount=-5 -kerning first=259 second=106 amount=1 -kerning first=172 second=118 amount=-4 -kerning first=8224 second=221 amount=-5 -kerning first=48 second=1194 amount=-2 -kerning first=51 second=370 amount=-2 -kerning first=194 second=283 amount=-1 -kerning first=77 second=67 amount=-2 -kerning first=1097 second=245 amount=-1 -kerning first=916 second=257 amount=-1 -kerning first=1169 second=1299 amount=-3 -kerning first=237 second=359 amount=-1 -kerning first=240 second=119 amount=-4 -kerning first=357 second=963 amount=-1 -kerning first=114 second=1195 amount=-1 -kerning first=117 second=371 amount=-1 -kerning first=1298 second=84 amount=-5 -kerning first=260 second=286 amount=-2 -kerning first=8225 second=376 amount=-5 -kerning first=1069 second=258 amount=-2 -kerning first=198 second=230 amount=-1 -kerning first=313 second=360 amount=-1 -kerning first=78 second=242 amount=-1 -kerning first=215 second=947 amount=-4 -kerning first=95 second=1262 amount=-2 -kerning first=1178 second=335 amount=-1 -kerning first=1185 second=97 amount=-1 -kerning first=956 second=347 amount=-1 -kerning first=124 second=81 amount=-2 -kerning first=1299 second=259 amount=-1 -kerning first=178 second=243 amount=-1 -kerning first=289 second=373 amount=-4 -kerning first=196 second=1263 amount=-1 -kerning first=8364 second=248 amount=-1 -kerning first=343 second=232 amount=-1 -kerning first=923 second=1176 amount=-1 -kerning first=931 second=362 amount=-2 -kerning first=1186 second=275 amount=-1 -kerning first=1179 second=966 amount=-1 -kerning first=365 second=374 amount=-5 -kerning first=962 second=289 amount=-1 -kerning first=262 second=1298 amount=-1 -kerning first=37 second=962 amount=-1 -kerning first=1041 second=221 amount=-5 -kerning first=298 second=83 amount=-1 -kerning first=1071 second=1177 amount=-1 -kerning first=203 second=333 amount=-1 -kerning first=323 second=245 amount=-1 -kerning first=223 second=949 amount=-1 -kerning first=934 second=1051 amount=-3 -kerning first=926 second=8211 amount=-2 -kerning first=103 second=963 amount=-1 -kerning first=271 second=334 amount=-2 -kerning first=8212 second=49 amount=-3 -kerning first=44 second=218 amount=-1 -kerning first=1044 second=376 amount=-2 -kerning first=184 second=346 amount=-1 -kerning first=64 second=360 amount=-2 -kerning first=1073 second=8212 amount=-2 -kerning first=207 second=273 amount=-1 -kerning first=204 second=964 amount=-3 -kerning first=8372 second=353 amount=-1 -kerning first=8378 second=113 amount=-1 -kerning first=905 second=85 amount=-2 -kerning first=87 second=287 amount=-2 -kerning first=1117 second=235 amount=-1 -kerning first=247 second=1108 amount=-1 -kerning first=250 second=347 amount=-1 -kerning first=373 second=259 amount=-1 -kerning first=163 second=361 amount=-1 -kerning first=166 second=121 amount=-1 -kerning first=273 second=965 amount=-1 -kerning first=279 second=46 amount=-1 -kerning first=8216 second=224 amount=-1 -kerning first=45 second=373 amount=-1 -kerning first=1039 second=8250 amount=-1 -kerning first=185 second=1028 amount=-2 -kerning first=188 second=288 amount=-2 -kerning first=1085 second=248 amount=-1 -kerning first=91 second=232 amount=-1 -kerning first=234 second=122 amount=-1 -kerning first=354 second=275 amount=-3 -kerning first=1223 second=87 amount=-5 -kerning first=254 second=289 amount=-1 -kerning first=971 second=337 amount=-1 -kerning first=170 second=71 amount=-2 -kerning first=280 second=221 amount=-5 -kerning first=52 second=83 amount=-1 -kerning first=1051 second=953 amount=-1 -kerning first=1063 second=261 amount=-1 -kerning first=192 second=233 amount=-1 -kerning first=304 second=363 amount=-1 -kerning first=301 second=1177 amount=-1 -kerning first=72 second=245 amount=-1 -kerning first=912 second=210 amount=-2 -kerning first=1170 second=338 amount=-2 -kerning first=1175 second=100 amount=-1 -kerning first=950 second=352 amount=-1 -kerning first=1224 second=262 amount=-2 -kerning first=258 second=234 amount=-1 -kerning first=1026 second=277 amount=-1 -kerning first=8226 second=89 amount=-5 -kerning first=1067 second=211 amount=-2 -kerning first=305 second=1059 amount=-2 -kerning first=302 second=8212 amount=-2 -kerning first=1099 second=113 amount=-1 -kerning first=1096 second=353 amount=-1 -kerning first=910 second=1179 amount=-3 -kerning first=915 second=365 amount=-1 -kerning first=96 second=335 amount=-1 -kerning first=119 second=259 amount=-1 -kerning first=1263 second=212 amount=-2 -kerning first=290 second=86 amount=-2 -kerning first=8230 second=266 amount=-1 -kerning first=1065 second=1184 amount=-2 -kerning first=197 second=336 amount=-2 -kerning first=315 second=248 amount=-1 -kerning first=77 second=350 amount=-1 -kerning first=220 second=260 amount=-2 -kerning first=916 second=1063 amount=-3 -kerning first=100 second=275 amount=-1 -kerning first=1184 second=225 amount=-1 -kerning first=1257 second=1185 amount=-1 -kerning first=1298 second=367 amount=-1 -kerning first=38 second=221 amount=-5 -kerning first=180 second=111 amount=-1 -kerning first=177 second=351 amount=-1 -kerning first=291 second=261 amount=-1 -kerning first=8260 second=214 amount=-2 -kerning first=58 second=363 amount=-1 -kerning first=55 second=1177 amount=-1 -kerning first=8363 second=356 amount=-5 -kerning first=8366 second=116 amount=-1 -kerning first=936 second=250 amount=-1 -kerning first=928 second=941 amount=-1 -kerning first=345 second=100 amount=-1 -kerning first=367 second=262 amount=-2 -kerning first=964 second=187 amount=-1 -kerning first=124 second=364 amount=-2 -kerning first=1036 second=1079 amount=-1 -kerning first=178 second=1035 amount=-5 -kerning first=182 second=291 amount=-1 -kerning first=297 second=211 amount=-2 -kerning first=56 second=8212 amount=-2 -kerning first=59 second=1059 amount=-2 -kerning first=322 second=353 amount=-1 -kerning first=325 second=113 amount=-1 -kerning first=900 second=263 amount=-1 -kerning first=371 second=212 amount=-2 -kerning first=274 second=224 amount=-1 -kerning first=37 second=8250 amount=-1 -kerning first=46 second=86 amount=-4 -kerning first=1051 second=39 amount=-3 -kerning first=298 second=366 amount=-2 -kerning first=209 second=171 amount=-3 -kerning first=8370 second=920 amount=-2 -kerning first=904 second=213 amount=-2 -kerning first=223 second=8217 amount=-3 -kerning first=1119 second=103 amount=-1 -kerning first=946 second=115 amount=-1 -kerning first=1206 second=267 amount=-1 -kerning first=369 second=1185 amount=-3 -kerning first=372 second=367 amount=-2 -kerning first=165 second=249 amount=-1 -kerning first=162 second=940 amount=-1 -kerning first=47 second=261 amount=-1 -kerning first=70 second=198 amount=-4 -kerning first=1084 second=356 amount=-5 -kerning first=213 second=88 amount=-3 -kerning first=905 second=368 amount=-2 -kerning first=87 second=1097 amount=-2 -kerning first=93 second=100 amount=-1 -kerning first=1117 second=972 amount=-1 -kerning first=1168 second=281 amount=-1 -kerning first=90 second=338 amount=-1 -kerning first=113 second=262 amount=-2 -kerning first=253 second=1241 amount=-1 -kerning first=256 second=187 amount=-1 -kerning first=973 second=227 amount=-1 -kerning first=169 second=199 amount=-2 -kerning first=276 second=1079 amount=-1 -kerning first=282 second=89 amount=-5 -kerning first=8220 second=269 amount=-1 -kerning first=51 second=211 amount=-2 -kerning first=188 second=1098 amount=-3 -kerning first=191 second=339 amount=-1 -kerning first=194 second=101 amount=-1 -kerning first=306 second=251 amount=-1 -kerning first=74 second=113 amount=-1 -kerning first=211 second=955 amount=-2 -kerning first=214 second=263 amount=-1 -kerning first=903 second=8221 amount=-3 -kerning first=906 second=1066 amount=-5 -kerning first=354 second=1080 amount=-2 -kerning first=952 second=240 amount=-1 -kerning first=117 second=212 amount=-2 -kerning first=1210 second=1194 amount=-2 -kerning first=1223 second=370 amount=-2 -kerning first=260 second=102 amount=-2 -kerning first=971 second=1256 amount=-2 -kerning first=170 second=354 amount=-5 -kerning first=167 second=1118 amount=-1 -kerning first=8225 second=217 amount=-2 -kerning first=49 second=1184 amount=-5 -kerning first=52 second=366 amount=-2 -kerning first=195 second=279 amount=-1 -kerning first=192 second=970 amount=-1 -kerning first=1095 second=920 amount=-2 -kerning first=1170 second=1257 amount=-1 -kerning first=238 second=355 amount=-1 -kerning first=361 second=267 amount=-1 -kerning first=289 second=214 amount=-2 -kerning first=8222 second=947 amount=-2 -kerning first=8226 second=372 amount=-5 -kerning first=1067 second=945 amount=-1 -kerning first=314 second=356 amount=-5 -kerning first=317 second=116 amount=-1 -kerning first=1037 second=269 amount=-1 -kerning first=40 second=89 amount=-5 -kerning first=60 second=251 amount=-1 -kerning first=8365 second=244 amount=-1 -kerning first=940 second=118 amount=-2 -kerning first=1184 second=962 amount=-2 -kerning first=363 second=1194 amount=-2 -kerning first=963 second=283 amount=-1 -kerning first=126 second=252 amount=-1 -kerning first=123 second=943 amount=-1 -kerning first=41 second=266 amount=-2 -kerning first=44 second=39 amount=-1 -kerning first=1044 second=217 amount=-1 -kerning first=299 second=79 amount=-2 -kerning first=8260 second=949 amount=-1 -kerning first=1080 second=119 amount=-4 -kerning first=321 second=920 amount=-2 -kerning first=84 second=341 amount=-2 -kerning first=87 second=103 amount=-2 -kerning first=107 second=267 amount=-2 -kerning first=1202 second=218 amount=-1 -kerning first=967 second=230 amount=-1 -kerning first=1039 second=947 amount=-4 -kerning first=182 second=1101 amount=-1 -kerning first=297 second=945 amount=-1 -kerning first=65 second=356 amount=-5 -kerning first=8369 second=1108 amount=-1 -kerning first=900 second=1069 amount=-1 -kerning first=906 second=81 amount=-2 -kerning first=88 second=281 amount=-2 -kerning first=1118 second=231 amount=-1 -kerning first=965 second=1263 amount=-1 -kerning first=164 second=357 amount=-1 -kerning first=167 second=117 amount=-1 -kerning first=46 second=369 amount=-1 -kerning first=186 second=973 amount=-1 -kerning first=1087 second=244 amount=-1 -kerning first=908 second=256 amount=-2 -kerning first=92 second=228 amount=-1 -kerning first=235 second=118 amount=-1 -kerning first=947 second=8230 amount=-2 -kerning first=1224 second=83 amount=-1 -kerning first=255 second=283 amount=-1 -kerning first=8218 second=375 amount=-1 -kerning first=53 second=79 amount=-2 -kerning first=1064 second=257 amount=-1 -kerning first=193 second=229 amount=-1 -kerning first=305 second=359 amount=-1 -kerning first=310 second=119 amount=-3 -kerning first=70 second=920 amount=-2 -kerning first=90 second=1257 amount=-1 -kerning first=1171 second=334 amount=-2 -kerning first=1168 second=1090 amount=-3 -kerning first=951 second=346 amount=-1 -kerning first=1256 second=258 amount=-2 -kerning first=973 second=964 amount=-3 -kerning first=1027 second=273 amount=-1 -kerning first=172 second=242 amount=-1 -kerning first=282 second=372 amount=-5 -kerning first=279 second=947 amount=-1 -kerning first=8230 second=85 amount=-1 -kerning first=51 second=945 amount=-1 -kerning first=194 second=1240 amount=-2 -kerning first=191 second=1262 amount=-2 -kerning first=1094 second=1108 amount=-1 -kerning first=214 second=1069 amount=-1 -kerning first=338 second=231 amount=-1 -kerning first=916 second=361 amount=-1 -kerning first=926 second=121 amount=-1 -kerning first=240 second=243 amount=-1 -kerning first=952 second=1028 amount=-2 -kerning first=955 second=288 amount=-2 -kerning first=35 second=269 amount=-1 -kerning first=1035 second=220 amount=-2 -kerning first=198 second=332 amount=-2 -kerning first=316 second=244 amount=-1 -kerning first=221 second=256 amount=-5 -kerning first=336 second=1298 amount=-1 -kerning first=936 second=71 amount=-2 -kerning first=367 second=83 amount=-1 -kerning first=1299 second=363 amount=-1 -kerning first=1036 second=375 amount=-2 -kerning first=289 second=949 amount=-1 -kerning first=294 second=257 amount=-1 -kerning first=62 second=119 amount=-4 -kerning first=1067 second=8211 amount=-2 -kerning first=59 second=359 amount=-1 -kerning first=202 second=271 amount=-1 -kerning first=1070 second=1051 amount=-1 -kerning first=8364 second=352 amount=-1 -kerning first=900 second=84 amount=-5 -kerning first=79 second=1026 amount=-2 -kerning first=1107 second=234 amount=-1 -kerning first=105 second=218 amount=-2 -kerning first=1186 second=376 amount=-2 -kerning first=368 second=258 amount=-2 -kerning first=125 second=360 amount=-2 -kerning first=1263 second=8212 amount=-2 -kerning first=274 second=45 amount=-2 -kerning first=37 second=947 amount=-4 -kerning first=40 second=372 amount=-5 -kerning first=183 second=287 amount=-1 -kerning first=206 second=219 amount=-2 -kerning first=318 second=1108 amount=-1 -kerning first=323 second=347 amount=-1 -kerning first=904 second=34 amount=-3 -kerning first=86 second=231 amount=-3 -kerning first=901 second=259 amount=-1 -kerning first=1184 second=8250 amount=-2 -kerning first=249 second=288 amount=-2 -kerning first=299 second=362 amount=-2 -kerning first=8260 second=8217 amount=-3 -kerning first=296 second=1176 amount=-1 -kerning first=207 second=374 amount=-5 -kerning first=327 second=289 amount=-1 -kerning first=84 second=1298 amount=-4 -kerning first=1117 second=337 amount=-1 -kerning first=1168 second=99 amount=-1 -kerning first=948 second=111 amount=-1 -kerning first=944 second=351 amount=-1 -kerning first=113 second=83 amount=-1 -kerning first=253 second=233 amount=-1 -kerning first=166 second=245 amount=-1 -kerning first=276 second=375 amount=-1 -kerning first=48 second=257 amount=-1 -kerning first=1062 second=210 amount=-1 -kerning first=297 second=8211 amount=-2 -kerning first=1085 second=352 amount=-1 -kerning first=214 second=84 amount=-5 -kerning first=906 second=364 amount=-2 -kerning first=88 second=1090 amount=-3 -kerning first=91 second=334 amount=-2 -kerning first=1118 second=968 amount=-1 -kerning first=1169 second=277 amount=-1 -kerning first=1223 second=211 amount=-2 -kerning first=371 second=8212 amount=-2 -kerning first=274 second=8249 amount=-3 -kerning first=8221 second=263 amount=-1 -kerning first=1063 second=365 amount=-1 -kerning first=192 second=335 amount=-1 -kerning first=195 second=97 amount=-1 -kerning first=69 second=1108 amount=-1 -kerning first=72 second=347 amount=-1 -kerning first=215 second=259 amount=-1 -kerning first=904 second=8216 amount=-3 -kerning first=92 second=965 amount=-1 -kerning first=98 second=46 amount=-1 -kerning first=1219 second=1184 amount=-5 -kerning first=1224 second=366 amount=-2 -kerning first=258 second=336 amount=-2 -kerning first=381 second=248 amount=-1 -kerning first=8226 second=213 amount=-2 -kerning first=50 second=1176 amount=-1 -kerning first=53 second=362 amount=-2 -kerning first=199 second=47 amount=-1 -kerning first=193 second=966 amount=-1 -kerning first=196 second=275 amount=-1 -kerning first=8361 second=115 amount=-1 -kerning first=76 second=289 amount=-1 -kerning first=923 second=249 amount=-1 -kerning first=915 second=940 amount=-1 -kerning first=239 second=351 amount=-1 -kerning first=176 second=290 amount=-2 -kerning first=8230 second=368 amount=-1 -kerning first=51 second=8211 amount=-2 -kerning first=1071 second=250 amount=-1 -kerning first=80 second=234 amount=-1 -kerning first=1103 second=187 amount=-1 -kerning first=338 second=968 amount=-1 -kerning first=341 second=277 amount=-1 -kerning first=934 second=199 amount=-2 -kerning first=100 second=376 amount=-5 -kerning first=240 second=1035 amount=-5 -kerning first=955 second=1098 amount=-3 -kerning first=117 second=8212 amount=-2 -kerning first=960 second=339 amount=-1 -kerning first=963 second=101 amount=-1 -kerning first=41 second=85 amount=-2 -kerning first=180 second=235 amount=-1 -kerning first=291 second=365 amount=-1 -kerning first=8225 second=8221 amount=-3 -kerning first=8240 second=1066 amount=-5 -kerning first=8366 second=240 amount=-1 -kerning first=345 second=224 amount=-1 -kerning first=928 second=1118 amount=-1 -kerning first=936 second=354 amount=-5 -kerning first=1202 second=39 amount=-2 -kerning first=367 second=366 amount=-2 -kerning first=964 second=279 amount=-1 -kerning first=160 second=248 amount=-1 -kerning first=273 second=171 amount=-3 -kerning first=1046 second=213 amount=-3 -kerning first=289 second=8217 amount=-3 -kerning first=1081 second=115 amount=-1 -kerning first=208 second=87 amount=-2 -kerning first=900 second=367 amount=-1 -kerning first=88 second=99 amount=-2 -kerning first=108 second=261 amount=-1 -kerning first=105 second=953 amount=-1 -kerning first=968 second=226 amount=-1 -kerning first=46 second=210 amount=-1 -kerning first=186 second=338 amount=-2 -kerning first=189 second=100 amount=-1 -kerning first=298 second=941 amount=-1 -kerning first=301 second=250 amount=-1 -kerning first=209 second=262 amount=-2 -kerning first=330 second=187 amount=-1 -kerning first=86 second=968 amount=-1 -kerning first=89 second=277 amount=-4 -kerning first=1119 second=227 amount=-1 -kerning first=249 second=1098 amount=-3 -kerning first=252 second=339 amount=-1 -kerning first=255 second=101 amount=-1 -kerning first=375 second=251 amount=-1 -kerning first=372 second=942 amount=-2 -kerning first=168 second=113 amount=-1 -kerning first=165 second=353 amount=-1 -kerning first=275 second=955 amount=-1 -kerning first=278 second=263 amount=-1 -kerning first=8218 second=216 amount=-1 -kerning first=47 second=365 amount=-1 -kerning first=1044 second=8221 amount=-2 -kerning first=1048 second=1066 amount=-5 -kerning first=1090 second=240 amount=-1 -kerning first=905 second=943 amount=-1 -kerning first=93 second=224 amount=-1 -kerning first=1117 second=1256 amount=-2 -kerning first=910 second=252 amount=-2 -kerning first=356 second=266 amount=-1 -kerning first=113 second=366 amount=-2 -kerning first=256 second=279 amount=-1 -kerning first=253 second=970 amount=-1 -kerning first=282 second=213 amount=-2 -kerning first=8216 second=1195 amount=-1 -kerning first=194 second=225 amount=-1 -kerning first=306 second=355 amount=-1 -kerning first=311 second=115 amount=-1 -kerning first=214 second=367 amount=-1 -kerning first=1169 second=1083 amount=-3 -kerning first=111 second=8218 amount=-1 -kerning first=1223 second=945 amount=-1 -kerning first=260 second=226 amount=-1 -kerning first=8240 second=81 amount=-2 -kerning first=55 second=250 amount=-1 -kerning first=52 second=941 amount=-1 -kerning first=78 second=187 amount=-1 -kerning first=75 second=1241 amount=-2 -kerning first=928 second=117 amount=-1 -kerning first=95 second=1079 amount=-1 -kerning first=1178 second=269 amount=-1 -kerning first=361 second=369 amount=-1 -kerning first=121 second=251 amount=-1 -kerning first=36 second=263 amount=-1 -kerning first=1036 second=216 amount=-3 -kerning first=286 second=1066 amount=-1 -kerning first=281 second=8221 amount=-1 -kerning first=8249 second=256 amount=-1 -kerning first=1074 second=118 amount=-4 -kerning first=317 second=240 amount=-1 -kerning first=105 second=39 amount=-3 -kerning first=1186 second=217 amount=-1 -kerning first=359 second=8222 amount=-1 -kerning first=962 second=229 amount=-1 -kerning first=40 second=213 amount=-2 -kerning first=1037 second=371 amount=-1 -kerning first=183 second=103 amount=-1 -kerning first=60 second=355 amount=-1 -kerning first=63 second=115 amount=-1 -kerning first=203 second=267 amount=-1 -kerning first=8365 second=346 amount=-1 -kerning first=1184 second=947 amount=-3 -kerning first=963 second=1240 amount=-2 -kerning first=960 second=1262 amount=-2 -kerning first=126 second=356 amount=-5 -kerning first=162 second=116 amount=-1 -kerning first=271 second=268 amount=-2 -kerning first=41 second=368 amount=-2 -kerning first=1048 second=81 amount=-2 -kerning first=180 second=972 amount=-1 -kerning first=184 second=281 amount=-1 -kerning first=67 second=65 amount=-1 -kerning first=1080 second=243 amount=-1 -kerning first=8366 second=1028 amount=-2 -kerning first=8372 second=288 amount=-2 -kerning first=87 second=227 amount=-2 -kerning first=247 second=973 amount=-1 -kerning first=967 second=332 amount=-2 -kerning first=276 second=216 amount=-2 -kerning first=42 second=1066 amount=-5 -kerning first=188 second=228 amount=-1 -kerning first=303 second=118 amount=-4 -kerning first=205 second=1194 amount=-2 -kerning first=1118 second=333 amount=-1 -kerning first=1210 second=257 amount=-1 -kerning first=1203 second=949 amount=-1 -kerning first=254 second=229 amount=-1 -kerning first=968 second=963 amount=-1 -kerning first=164 second=920 amount=-2 -kerning first=971 second=271 amount=-1 -kerning first=274 second=1195 amount=-1 -kerning first=49 second=253 amount=-1 -kerning first=186 second=1257 amount=-1 -kerning first=1087 second=346 amount=-1 -kerning first=1170 second=273 amount=-1 -kerning first=1119 second=964 amount=-3 -kerning first=352 second=947 amount=-1 -kerning first=950 second=287 amount=-1 -kerning first=252 second=1262 amount=-2 -kerning first=255 second=1240 amount=-2 -kerning first=1026 second=219 amount=-2 -kerning first=278 second=1069 amount=-1 -kerning first=8226 second=34 amount=-3 -kerning first=1064 second=361 amount=-1 -kerning first=1067 second=121 amount=-1 -kerning first=310 second=243 amount=-2 -kerning first=70 second=1102 amount=-1 -kerning first=1096 second=288 amount=-2 -kerning first=96 second=269 amount=-1 -kerning first=1176 second=220 amount=-2 -kerning first=954 second=232 amount=-2 -kerning first=1220 second=1176 amount=-1 -kerning first=382 second=244 amount=-1 -kerning first=1027 second=374 amount=-5 -kerning first=176 second=106 amount=1 -kerning first=57 second=118 amount=-4 -kerning first=1071 second=71 amount=-2 -kerning first=194 second=962 amount=-1 -kerning first=77 second=283 amount=-1 -kerning first=338 second=333 amount=-1 -kerning first=926 second=245 amount=-1 -kerning first=100 second=217 amount=-2 -kerning first=363 second=257 amount=-1 -kerning first=1223 second=8211 amount=-2 -kerning first=123 second=119 amount=-4 -kerning first=260 second=963 amount=-1 -kerning first=268 second=44 amount=-1 -kerning first=35 second=371 amount=-1 -kerning first=174 second=1026 amount=-5 -kerning first=177 second=286 amount=-2 -kerning first=8240 second=364 amount=-2 -kerning first=1073 second=246 amount=-1 -kerning first=201 second=218 amount=-2 -kerning first=316 second=346 amount=-1 -kerning first=8363 second=291 amount=-1 -kerning first=339 second=964 amount=-1 -kerning first=345 second=45 amount=-1 -kerning first=98 second=947 amount=-1 -kerning first=964 second=97 amount=-1 -kerning first=36 second=1069 amount=-1 -kerning first=42 second=81 amount=-2 -kerning first=1039 second=259 amount=-1 -kerning first=182 second=231 amount=-1 -kerning first=294 second=361 amount=-1 -kerning first=8226 second=8216 amount=-3 -kerning first=297 second=121 amount=-1 -kerning first=62 second=243 amount=-1 -kerning first=202 second=373 amount=-4 -kerning first=199 second=1202 amount=-2 -kerning first=317 second=1028 amount=-2 -kerning first=322 second=288 amount=-2 -kerning first=365 second=1176 amount=-1 -kerning first=962 second=966 amount=-1 -kerning first=965 second=275 amount=-1 -kerning first=161 second=244 amount=-1 -kerning first=270 second=374 amount=-3 -kerning first=267 second=1203 amount=-1 -kerning first=8211 second=87 amount=-2 -kerning first=301 second=71 amount=-2 -kerning first=66 second=193 amount=-1 -kerning first=1083 second=111 amount=-1 -kerning first=209 second=83 amount=-1 -kerning first=901 second=363 amount=-1 -kerning first=86 second=333 amount=-1 -kerning first=1206 second=210 amount=-1 -kerning first=246 second=1299 amount=-1 -kerning first=278 second=84 amount=-5 -kerning first=1048 second=364 amount=-2 -kerning first=184 second=1090 amount=-3 -kerning first=302 second=246 amount=-1 -kerning first=1080 second=1035 amount=-5 -kerning first=1084 second=291 amount=-1 -kerning first=210 second=258 amount=-2 -kerning first=8372 second=1098 amount=-3 -kerning first=902 second=1059 amount=-2 -kerning first=8378 second=339 amount=-1 -kerning first=93 second=45 amount=-2 -kerning first=90 second=273 amount=-1 -kerning first=948 second=235 amount=-1 -kerning first=253 second=335 amount=-1 -kerning first=256 second=97 amount=-1 -kerning first=163 second=1108 amount=-1 -kerning first=166 second=347 amount=-1 -kerning first=282 second=34 amount=-3 -kerning first=45 second=1175 amount=-2 -kerning first=48 second=361 amount=-1 -kerning first=51 second=121 amount=-1 -kerning first=188 second=965 amount=-1 -kerning first=94 second=220 amount=-2 -kerning first=1174 second=171 amount=-1 -kerning first=254 second=966 amount=-1 -kerning first=1028 second=87 amount=-1 -kerning first=170 second=289 amount=-1 -kerning first=55 second=71 amount=-2 -kerning first=1063 second=940 amount=-1 -kerning first=195 second=221 amount=-5 -kerning first=313 second=111 amount=-1 -kerning first=75 second=233 amount=-2 -kerning first=215 second=363 amount=-1 -kerning first=333 second=967 amount=-2 -kerning first=920 second=198 amount=-2 -kerning first=95 second=375 amount=-1 -kerning first=238 second=290 amount=-2 -kerning first=361 second=210 amount=-2 -kerning first=950 second=1097 amount=-2 -kerning first=956 second=100 amount=-1 -kerning first=1224 second=941 amount=-1 -kerning first=36 second=84 amount=-5 -kerning first=175 second=234 amount=-1 -kerning first=8218 second=8220 amount=-1 -kerning first=56 second=246 amount=-1 -kerning first=196 second=376 amount=-5 -kerning first=314 second=291 amount=-1 -kerning first=1096 second=1098 amount=-3 -kerning first=1099 second=339 amount=-1 -kerning first=931 second=113 amount=-1 -kerning first=923 second=353 amount=-1 -kerning first=93 second=8249 amount=-3 -kerning first=1179 second=263 amount=-1 -kerning first=262 second=377 amount=-1 -kerning first=37 second=259 amount=-1 -kerning first=40 second=34 amount=-3 -kerning first=1037 second=212 amount=-2 -kerning first=282 second=8216 amount=-3 -kerning first=1071 second=354 amount=-5 -kerning first=194 second=8250 amount=-1 -kerning first=80 second=336 amount=-2 -kerning first=1103 second=279 amount=-1 -kerning first=223 second=248 amount=-1 -kerning first=344 second=171 amount=-1 -kerning first=963 second=225 amount=-1 -kerning first=271 second=87 amount=-5 -kerning first=1035 second=1185 amount=-3 -kerning first=180 second=337 amount=-1 -kerning first=184 second=99 amount=-1 -kerning first=291 second=940 amount=-1 -kerning first=296 second=249 amount=-1 -kerning first=64 second=111 amount=-1 -kerning first=1073 second=1038 amount=-2 -kerning first=61 second=351 amount=-1 -kerning first=204 second=261 amount=-1 -kerning first=201 second=953 amount=-1 -kerning first=8363 second=1101 amount=-1 -kerning first=81 second=967 amount=-1 -kerning first=350 second=88 amount=-1 -kerning first=247 second=338 amount=-2 -kerning first=250 second=100 amount=-1 -kerning first=367 second=941 amount=-1 -kerning first=160 second=352 amount=-1 -kerning first=273 second=262 amount=-2 -kerning first=42 second=364 amount=-2 -kerning first=182 second=968 amount=-1 -kerning first=185 second=277 amount=-1 -kerning first=300 second=199 amount=-2 -kerning first=62 second=1035 amount=-5 -kerning first=65 second=291 amount=-1 -kerning first=325 second=339 amount=-1 -kerning first=8369 second=973 amount=-1 -kerning first=322 second=1098 amount=-3 -kerning first=903 second=251 amount=-1 -kerning first=108 second=365 amount=-1 -kerning first=1186 second=8221 amount=-2 -kerning first=40 second=8216 amount=-3 -kerning first=1051 second=252 amount=-1 -kerning first=189 second=224 amount=-1 -kerning first=298 second=1118 amount=-1 -kerning first=301 second=354 amount=-5 -kerning first=206 second=1184 amount=-5 -kerning first=209 second=366 amount=-2 -kerning first=330 second=279 amount=-1 -kerning first=92 second=171 amount=-3 -kerning first=89 second=378 amount=-2 -kerning first=235 second=63 amount=-2 -kerning first=950 second=103 amount=-1 -kerning first=1219 second=253 amount=-1 -kerning first=255 second=225 amount=-1 -kerning first=375 second=355 amount=-1 -kerning first=372 second=1119 amount=-2 -kerning first=275 second=1185 amount=-1 -kerning first=278 second=367 amount=-1 -kerning first=47 second=940 amount=-1 -kerning first=50 second=249 amount=-1 -kerning first=302 second=1038 amount=-2 -kerning first=1084 second=1101 amount=-1 -kerning first=8378 second=1262 amount=-2 -kerning first=915 second=116 amount=-1 -kerning first=1171 second=268 amount=-2 -kerning first=948 second=972 amount=-1 -kerning first=951 second=281 amount=-1 -kerning first=113 second=941 amount=-1 -kerning first=169 second=1241 amount=-1 -kerning first=172 second=187 amount=-1 -kerning first=276 second=8220 amount=-3 -kerning first=54 second=199 amount=-2 -kerning first=191 second=1079 amount=-1 -kerning first=197 second=89 amount=-5 -kerning first=74 second=339 amount=-1 -kerning first=77 second=101 amount=-1 -kerning first=357 second=1066 amount=-5 -kerning first=955 second=228 amount=-1 -kerning first=1298 second=118 amount=-4 -kerning first=35 second=212 amount=-2 -kerning first=55 second=354 amount=-5 -kerning first=52 second=1118 amount=-1 -kerning first=1073 second=67 amount=-2 -kerning first=198 second=266 amount=-2 -kerning first=201 second=39 amount=-3 -kerning first=78 second=279 amount=-1 -kerning first=1175 second=1195 amount=-1 -kerning first=124 second=115 amount=-1 -kerning first=121 second=355 amount=-1 -kerning first=36 second=367 amount=-1 -kerning first=56 second=1038 amount=-2 -kerning first=1074 second=242 amount=-1 -kerning first=202 second=214 amount=-2 -kerning first=1070 second=923 amount=-2 -kerning first=314 second=1101 amount=-1 -kerning first=8364 second=287 amount=-1 -kerning first=1099 second=1262 amount=-2 -kerning first=222 second=356 amount=-2 -kerning first=183 second=227 amount=-1 -kerning first=298 second=117 amount=-1 -kerning first=203 second=369 amount=-1 -kerning first=318 second=973 amount=-1 -kerning first=8370 second=232 amount=-1 -kerning first=100 second=8221 amount=-3 -kerning first=103 second=1066 amount=-5 -kerning first=249 second=228 amount=-1 -kerning first=372 second=118 amount=-1 -kerning first=963 second=962 amount=-1 -kerning first=162 second=240 amount=-1 -kerning first=271 second=370 amount=-2 -kerning first=8212 second=83 amount=-1 -kerning first=41 second=943 amount=-1 -kerning first=44 second=252 amount=-1 -kerning first=180 second=1256 amount=-2 -kerning first=302 second=67 amount=-2 -kerning first=327 second=229 amount=-1 -kerning first=902 second=359 amount=-1 -kerning first=905 second=119 amount=-4 -kerning first=84 second=1081 amount=-2 -kerning first=87 second=328 amount=-2 -kerning first=1117 second=271 amount=-1 -kerning first=345 second=1195 amount=-1 -kerning first=944 second=286 amount=-2 -kerning first=247 second=1257 amount=-1 -kerning first=8216 second=258 amount=-3 -kerning first=1049 second=360 amount=-2 -kerning first=303 second=242 amount=-1 -kerning first=65 second=1101 amount=-1 -kerning first=1085 second=287 amount=-1 -kerning first=325 second=1262 amount=-2 -kerning first=91 second=268 amount=-2 -kerning first=357 second=81 amount=-2 -kerning first=1210 second=361 amount=-1 -kerning first=1223 second=121 amount=-1 -kerning first=377 second=243 amount=-1 -kerning first=971 second=373 amount=-4 -kerning first=49 second=357 amount=-1 -kerning first=52 second=117 amount=-1 -kerning first=192 second=269 amount=-1 -kerning first=69 second=973 amount=-1 -kerning first=1095 second=232 amount=-1 -kerning first=912 second=244 amount=-1 -kerning first=95 second=216 amount=-2 -kerning first=1170 second=374 amount=-5 -kerning first=238 second=106 amount=1 -kerning first=255 second=962 amount=-1 -kerning first=8222 second=363 amount=-1 -kerning first=56 second=67 amount=-2 -kerning first=1067 second=245 amount=-1 -kerning first=196 second=217 amount=-2 -kerning first=1090 second=1299 amount=-3 -kerning first=96 second=371 amount=-1 -kerning first=93 second=1195 amount=-1 -kerning first=236 second=1026 amount=-5 -kerning first=239 second=286 amount=-2 -kerning first=951 second=1090 amount=-3 -kerning first=1263 second=246 amount=-1 -kerning first=1034 second=258 amount=-1 -kerning first=176 second=230 amount=-1 -kerning first=287 second=360 amount=-2 -kerning first=8224 second=1059 amount=-2 -kerning first=57 second=242 amount=-1 -kerning first=194 second=947 amount=-4 -kerning first=197 second=372 amount=-5 -kerning first=315 second=287 amount=-1 -kerning first=77 second=1240 amount=-2 -kerning first=74 second=1262 amount=-2 -kerning first=1103 second=97 amount=-1 -kerning first=916 second=1108 amount=-1 -kerning first=926 second=347 amount=-1 -kerning first=103 second=81 amount=-2 -kerning first=1184 second=259 amount=-1 -kerning first=363 second=361 amount=-1 -kerning first=955 second=965 amount=-1 -kerning first=123 second=243 amount=-1 -kerning first=263 second=373 amount=-1 -kerning first=174 second=1263 amount=-1 -kerning first=8260 second=248 amount=-1 -kerning first=1073 second=350 amount=-1 -kerning first=321 second=232 amount=-1 -kerning first=339 second=1203 amount=-2 -kerning first=342 second=374 amount=-2 -kerning first=936 second=289 amount=-1 -kerning first=964 second=221 amount=-5 -kerning first=273 second=83 amount=-1 -kerning first=1039 second=363 amount=-1 -kerning first=1036 second=1177 amount=-1 -kerning first=182 second=333 amount=-1 -kerning first=297 second=245 amount=-1 -kerning first=202 second=949 amount=-1 -kerning first=205 second=257 amount=-1 -kerning first=8369 second=338 amount=-2 -kerning first=942 second=234 amount=-1 -kerning first=245 second=1090 amount=-1 -kerning first=371 second=246 amount=-1 -kerning first=965 second=376 amount=-5 -kerning first=161 second=346 amount=-1 -kerning first=43 second=360 amount=-2 -kerning first=1041 second=1059 amount=-2 -kerning first=1037 second=8212 amount=-2 -kerning first=186 second=273 amount=-1 -kerning first=189 second=45 amount=-2 -kerning first=183 second=964 amount=-3 -kerning first=1083 second=235 amount=-1 -kerning first=330 second=97 amount=-1 -kerning first=249 second=965 amount=-1 -kerning first=963 second=8250 amount=-1 -kerning first=162 second=1028 amount=-2 -kerning first=165 second=288 amount=-2 -kerning first=190 second=220 amount=-2 -kerning first=302 second=350 amount=-1 -kerning first=70 second=232 amount=-1 -kerning first=207 second=1176 amount=-1 -kerning first=327 second=966 amount=-1 -kerning first=334 second=47 amount=-1 -kerning first=87 second=1203 amount=-1 -kerning first=910 second=197 amount=-5 -kerning first=1171 second=87 amount=-5 -kerning first=948 second=337 amount=-1 -kerning first=951 second=99 amount=-1 -kerning first=1207 second=940 amount=-1 -kerning first=1220 second=249 amount=-1 -kerning first=256 second=221 amount=-5 -kerning first=376 second=351 amount=-3 -kerning first=379 second=111 amount=-1 -kerning first=973 second=261 amount=-1 -kerning first=169 second=233 amount=-1 -kerning first=276 second=1177 amount=-1 -kerning first=51 second=245 amount=-1 -kerning first=191 second=375 amount=-1 -kerning first=306 second=290 amount=-2 -kerning first=1097 second=100 amount=-1 -kerning first=211 second=1051 amount=-1 -kerning first=1174 second=262 amount=-1 -kerning first=237 second=234 amount=-1 -kerning first=357 second=364 amount=-2 -kerning first=952 second=277 amount=-1 -kerning first=117 second=246 amount=-1 -kerning first=280 second=1059 amount=-2 -kerning first=8225 second=251 amount=-1 -kerning first=189 second=8249 amount=-3 -kerning first=198 second=85 amount=-2 -kerning first=313 second=235 amount=-1 -kerning first=78 second=97 amount=-1 -kerning first=75 second=335 amount=-2 -kerning first=336 second=377 amount=-1 -kerning first=101 second=34 amount=-1 -kerning first=1178 second=212 amount=-1 -kerning first=956 second=224 amount=-1 -kerning first=1224 second=1118 amount=-1 -kerning first=255 second=8250 amount=-1 -kerning first=266 second=86 amount=-1 -kerning first=1026 second=1184 amount=-5 -kerning first=175 second=336 amount=-2 -kerning first=289 second=248 amount=-1 -kerning first=56 second=350 amount=-1 -kerning first=1074 second=63 amount=-1 -kerning first=199 second=260 amount=-1 -kerning first=8364 second=103 amount=-1 -kerning first=76 second=966 amount=-1 -kerning first=222 second=197 amount=-2 -kerning first=337 second=1076 amount=-1 -kerning first=1176 second=1185 amount=-3 -kerning first=365 second=249 amount=-1 -kerning first=1263 second=1038 amount=-2 -kerning first=125 second=111 amount=-1 -kerning first=37 second=363 amount=-1 -kerning first=8250 second=356 amount=-3 -kerning first=60 second=290 amount=-2 -kerning first=203 second=210 amount=-2 -kerning first=318 second=338 amount=-2 -kerning first=323 second=100 amount=-1 -kerning first=8365 second=281 amount=-1 -kerning first=223 second=352 amount=-1 -kerning first=934 second=1241 amount=-1 -kerning first=103 second=364 amount=-2 -kerning first=369 second=199 amount=-2 -kerning first=960 second=1079 amount=-1 -kerning first=123 second=1035 amount=-5 -kerning first=126 second=291 amount=-1 -kerning first=271 second=211 amount=-2 -kerning first=35 second=8212 amount=-2 -kerning first=38 second=1059 amount=-2 -kerning first=296 second=353 amount=-1 -kerning first=299 second=113 amount=-1 -kerning first=64 second=235 amount=-1 -kerning first=204 second=365 amount=-1 -kerning first=8372 second=228 amount=-1 -kerning first=101 second=8216 amount=-1 -kerning first=250 second=224 amount=-1 -kerning first=367 second=1118 amount=-1 -kerning first=967 second=266 amount=-2 -kerning first=273 second=366 amount=-2 -kerning first=188 second=171 amount=-3 -kerning first=1085 second=103 amount=-1 -kerning first=202 second=8217 amount=-3 -kerning first=8369 second=1257 amount=-1 -kerning first=906 second=115 amount=-1 -kerning first=903 second=355 amount=-1 -kerning first=91 second=87 amount=-5 -kerning first=1118 second=267 amount=-1 -kerning first=108 second=940 amount=-1 -kerning first=371 second=1038 amount=-2 -kerning first=971 second=214 amount=-2 -kerning first=270 second=8218 amount=-1 -kerning first=1051 second=356 amount=-5 -kerning first=1063 second=116 amount=-1 -kerning first=69 second=338 amount=-2 -kerning first=72 second=100 amount=-1 -kerning first=1083 second=972 amount=-1 -kerning first=209 second=941 amount=-1 -kerning first=1087 second=281 amount=-1 -kerning first=92 second=262 amount=-2 -kerning first=89 second=954 amount=-3 -kerning first=347 second=8220 amount=-1 -kerning first=950 second=227 amount=-1 -kerning first=1219 second=357 amount=-1 -kerning first=1224 second=117 amount=-1 -kerning first=252 second=1079 amount=-1 -kerning first=258 second=89 amount=-5 -kerning first=165 second=1098 amount=-3 -kerning first=168 second=339 amount=-1 -kerning first=47 second=1117 amount=-1 -kerning first=53 second=113 amount=-1 -kerning first=50 second=353 amount=-1 -kerning first=196 second=38 amount=-1 -kerning first=193 second=263 amount=-1 -kerning first=1096 second=228 amount=-1 -kerning first=915 second=240 amount=-1 -kerning first=910 second=916 amount=-5 -kerning first=96 second=212 amount=-2 -kerning first=1168 second=1194 amount=-2 -kerning first=1171 second=370 amount=-2 -kerning first=948 second=1256 amount=-2 -kerning first=113 second=1118 amount=-1 -kerning first=1263 second=67 amount=-2 -kerning first=169 second=970 amount=-1 -kerning first=172 second=279 amount=-1 -kerning first=8224 second=359 amount=-1 -kerning first=8230 second=119 amount=-2 -kerning first=1065 second=920 amount=-1 -kerning first=197 second=213 amount=-2 -kerning first=315 second=103 amount=-1 -kerning first=77 second=225 amount=-1 -kerning first=1094 second=1257 amount=-1 -kerning first=338 second=267 amount=-1 -kerning first=94 second=1185 amount=-3 -kerning first=117 second=1038 amount=-2 -kerning first=1298 second=242 amount=-1 -kerning first=177 second=226 amount=-1 -kerning first=288 second=356 amount=-1 -kerning first=291 second=116 amount=-1 -kerning first=198 second=368 amount=-2 -kerning first=313 second=972 amount=-1 -kerning first=316 second=281 amount=-1 -kerning first=8363 second=231 amount=-1 -kerning first=95 second=8220 amount=-3 -kerning first=367 second=117 amount=-1 -kerning first=196 second=8221 amount=-3 -kerning first=199 second=1066 amount=-1 -kerning first=322 second=228 amount=-1 -kerning first=900 second=118 amount=-4 -kerning first=222 second=916 amount=-2 -kerning first=105 second=252 amount=-1 -kerning first=245 second=382 amount=-1 -kerning first=371 second=67 amount=-2 -kerning first=965 second=217 amount=-2 -kerning first=262 second=8222 amount=-1 -kerning first=274 second=79 amount=-2 -kerning first=1041 second=359 amount=-1 -kerning first=206 second=253 amount=-1 -kerning first=318 second=1257 amount=-1 -kerning first=8370 second=334 amount=-2 -kerning first=8365 second=1090 amount=-3 -kerning first=86 second=267 amount=-1 -kerning first=246 second=1083 amount=-1 -kerning first=372 second=242 amount=-3 -kerning first=963 second=947 amount=-4 -kerning first=126 second=1101 amount=-1 -kerning first=271 second=945 amount=-1 -kerning first=44 second=356 amount=-5 -kerning first=47 second=116 amount=-1 -kerning first=64 second=972 amount=-1 -kerning first=1084 second=231 amount=-1 -kerning first=8372 second=965 amount=-1 -kerning first=905 second=243 amount=-1 -kerning first=1117 second=373 amount=-4 -kerning first=113 second=117 amount=-1 -kerning first=253 second=269 amount=-1 -kerning first=163 second=973 amount=-1 -kerning first=1062 second=244 amount=-1 -kerning first=191 second=216 amount=-2 -kerning first=306 second=106 amount=1 -kerning first=214 second=118 amount=-4 -kerning first=91 second=370 amount=-2 -kerning first=88 second=1194 amount=-3 -kerning first=117 second=67 amount=-2 -kerning first=1223 second=245 amount=-1 -kerning first=971 second=949 amount=-1 -kerning first=170 second=229 amount=-1 -kerning first=280 second=359 amount=-1 -kerning first=283 second=119 amount=-1 -kerning first=8217 second=1051 amount=-3 -kerning first=49 second=920 amount=-2 -kerning first=189 second=1195 amount=-1 -kerning first=192 second=371 amount=-1 -kerning first=1066 second=194 amount=-1 -kerning first=304 second=1026 amount=-5 -kerning first=69 second=1257 amount=-1 -kerning first=1095 second=334 amount=-2 -kerning first=1087 second=1090 amount=-3 -kerning first=212 second=1046 amount=-3 -kerning first=912 second=346 amount=-1 -kerning first=238 second=230 amount=-1 -kerning first=358 second=360 amount=-2 -kerning first=950 second=964 amount=-3 -kerning first=956 second=45 amount=-2 -kerning first=118 second=242 amount=-1 -kerning first=255 second=947 amount=-4 -kerning first=258 second=372 amount=-5 -kerning first=168 second=1262 amount=-2 -kerning first=1064 second=1108 amount=-1 -kerning first=1067 second=347 amount=-1 -kerning first=193 second=1069 amount=-1 -kerning first=314 second=231 amount=-1 -kerning first=1096 second=965 amount=-1 -kerning first=1102 second=46 amount=-1 -kerning first=334 second=1202 amount=-3 -kerning first=337 second=373 amount=-1 -kerning first=915 second=1028 amount=-2 -kerning first=923 second=288 amount=-2 -kerning first=236 second=1263 amount=-1 -kerning first=958 second=220 amount=-2 -kerning first=1263 second=350 amount=-1 -kerning first=1027 second=1176 amount=-1 -kerning first=176 second=332 amount=-2 -kerning first=8250 second=197 amount=-3 -kerning first=60 second=106 amount=1 -kerning first=1071 second=289 amount=-1 -kerning first=8365 second=99 amount=-1 -kerning first=77 second=962 amount=-1 -kerning first=1103 second=221 amount=-5 -kerning first=335 second=8230 amount=-1 -kerning first=934 second=233 amount=-1 -kerning first=1184 second=363 amount=-1 -kerning first=960 second=375 amount=-1 -kerning first=38 second=359 amount=-1 -kerning first=41 second=119 amount=-4 -kerning first=1028 second=8211 amount=-1 -kerning first=177 second=963 amount=-1 -kerning first=180 second=271 amount=-1 -kerning first=8260 second=352 amount=-1 -kerning first=58 second=1026 amount=-5 -kerning first=61 second=286 amount=-2 -kerning first=1076 second=234 amount=-1 -kerning first=316 second=1090 amount=-3 -kerning first=321 second=334 amount=-2 -kerning first=8363 second=968 amount=-1 -kerning first=8366 second=277 amount=-1 -kerning first=221 second=1107 amount=-3 -kerning first=1178 second=8212 amount=-2 -kerning first=247 second=273 amount=-1 -kerning first=250 second=45 amount=-2 -kerning first=244 second=964 amount=-1 -kerning first=956 second=8249 amount=-3 -kerning first=967 second=85 amount=-2 -kerning first=160 second=287 amount=-1 -kerning first=185 second=219 amount=-2 -kerning first=294 second=1108 amount=-1 -kerning first=297 second=347 amount=-1 -kerning first=65 second=231 amount=-1 -kerning first=205 second=361 amount=-1 -kerning first=322 second=965 amount=-1 -kerning first=942 second=336 amount=-2 -kerning first=1203 second=248 amount=-1 -kerning first=251 second=220 amount=-2 -kerning first=371 second=350 amount=-1 -kerning first=374 second=110 amount=-3 -kerning first=164 second=232 amount=-1 -kerning first=274 second=362 amount=-2 -kerning first=277 second=122 amount=-1 -kerning first=186 second=374 amount=-5 -kerning first=301 second=289 amount=-1 -kerning first=1083 second=337 amount=-1 -kerning first=1087 second=99 amount=-1 -kerning first=330 second=221 amount=-5 -kerning first=904 second=351 amount=-1 -kerning first=92 second=83 amount=-1 -kerning first=1119 second=261 amount=-1 -kerning first=943 second=967 amount=-2 -kerning first=252 second=375 amount=-1 -kerning first=375 second=290 amount=-2 -kerning first=271 second=8211 amount=-2 -kerning first=8218 second=250 amount=-1 -kerning first=193 second=84 amount=-5 -kerning first=305 second=234 amount=-1 -kerning first=70 second=334 amount=-2 -kerning first=1084 second=968 amount=-1 -kerning first=1090 second=277 amount=-1 -kerning first=8378 second=1079 amount=-1 -kerning first=905 second=1035 amount=-5 -kerning first=910 second=291 amount=-4 -kerning first=1171 second=211 amount=-2 -kerning first=1220 second=353 amount=-1 -kerning first=250 second=8249 amount=-3 -kerning first=379 second=235 amount=-1 -kerning first=973 second=365 amount=-1 -kerning first=169 second=335 amount=-1 -kerning first=172 second=97 amount=-1 -kerning first=48 second=1108 amount=-1 -kerning first=51 second=347 amount=-1 -kerning first=194 second=259 amount=-1 -kerning first=197 second=34 amount=-3 -kerning first=217 second=196 amount=-2 -kerning first=1174 second=366 amount=-1 -kerning first=237 second=336 amount=-2 -kerning first=955 second=171 amount=-3 -kerning first=117 second=350 amount=-1 -kerning first=971 second=8217 amount=-3 -kerning first=170 second=966 amount=-1 -kerning first=174 second=275 amount=-1 -kerning first=8240 second=115 amount=-1 -kerning first=8225 second=355 amount=-1 -kerning first=55 second=289 amount=-1 -kerning first=313 second=337 amount=-1 -kerning first=316 second=99 amount=-1 -kerning first=78 second=221 amount=-5 -kerning first=221 second=111 amount=-4 -kerning first=95 second=1177 amount=-1 -kerning first=364 second=198 amount=-2 -kerning first=121 second=290 amount=-2 -kerning first=1036 second=250 amount=-1 -kerning first=289 second=352 amount=-1 -kerning first=59 second=234 amount=-1 -kerning first=1074 second=187 amount=-1 -kerning first=314 second=968 amount=-1 -kerning first=317 second=277 amount=-1 -kerning first=8364 second=227 amount=-1 -kerning first=79 second=376 amount=-3 -kerning first=1099 second=1079 amount=-1 -kerning first=923 second=1098 amount=-3 -kerning first=931 second=339 amount=-1 -kerning first=96 second=8212 amount=-2 -kerning first=365 second=353 amount=-1 -kerning first=962 second=263 amount=-1 -kerning first=125 second=235 amount=-1 -kerning first=8250 second=916 amount=-3 -kerning first=197 second=8216 amount=-3 -kerning first=323 second=224 amount=-1 -kerning first=77 second=8250 amount=-1 -kerning first=934 second=970 amount=-1 -kerning first=246 second=378 amount=-1 -kerning first=249 second=171 amount=-3 -kerning first=372 second=63 amount=-1 -kerning first=263 second=8217 amount=-1 -kerning first=1048 second=115 amount=-1 -kerning first=187 second=87 amount=-3 -kerning first=64 second=337 amount=-1 -kerning first=204 second=940 amount=-1 -kerning first=207 second=249 amount=-1 -kerning first=87 second=261 amount=-2 -kerning first=1117 second=214 amount=-2 -kerning first=944 second=226 amount=-1 -kerning first=1202 second=356 amount=-2 -kerning first=967 second=368 amount=-2 -kerning first=163 second=338 amount=-2 -kerning first=166 second=100 amount=-1 -kerning first=273 second=941 amount=-1 -kerning first=276 second=250 amount=-1 -kerning first=45 second=352 amount=-1 -kerning first=188 second=262 amount=-2 -kerning first=300 second=1241 amount=-1 -kerning first=303 second=187 amount=-1 -kerning first=65 second=968 amount=-1 -kerning first=1085 second=227 amount=-1 -kerning first=325 second=1079 amount=-1 -kerning first=332 second=89 amount=-3 -kerning first=91 second=211 amount=-2 -kerning first=1118 second=369 amount=-1 -kerning first=228 second=1098 amount=-1 -kerning first=354 second=251 amount=-2 -kerning first=114 second=113 amount=-1 -kerning first=254 second=263 amount=-1 -kerning first=968 second=1066 amount=-5 -kerning first=965 second=8221 amount=-3 -kerning first=1063 second=240 amount=-1 -kerning first=192 second=212 amount=-2 -kerning first=72 second=224 amount=-1 -kerning first=1083 second=1256 amount=-2 -kerning first=209 second=1118 amount=-1 -kerning first=212 second=354 amount=-2 -kerning first=92 second=366 amount=-2 -kerning first=950 second=328 amount=-2 -kerning first=1219 second=920 amount=-2 -kerning first=258 second=213 amount=-2 -kerning first=1026 second=253 amount=-1 -kerning first=190 second=1185 amount=-3 -kerning first=193 second=367 amount=-1 -kerning first=70 second=1220 amount=-1 -kerning first=1090 second=1083 amount=-3 -kerning first=910 second=1101 amount=-4 -kerning first=1171 second=945 amount=-1 -kerning first=239 second=226 amount=-1 -kerning first=379 second=972 amount=-1 -kerning first=382 second=281 amount=-1 -kerning first=54 second=1241 amount=-1 -kerning first=57 second=187 amount=-1 -kerning first=191 second=8220 amount=-3 -kerning first=80 second=89 amount=-2 -kerning first=74 second=1079 amount=-1 -kerning first=338 second=369 amount=-1 -kerning first=916 second=973 amount=-1 -kerning first=100 second=251 amount=-1 -kerning first=960 second=216 amount=-2 -kerning first=260 second=1066 amount=-5 -kerning first=257 second=8221 amount=-1 -kerning first=291 second=240 amount=-1 -kerning first=1073 second=283 amount=-1 -kerning first=198 second=943 amount=-1 -kerning first=201 second=252 amount=-1 -kerning first=313 second=1256 amount=-1 -kerning first=8363 second=333 amount=-1 -kerning first=336 second=8222 amount=-1 -kerning first=936 second=229 amount=-1 -kerning first=956 second=1195 amount=-1 -kerning first=160 second=103 amount=-1 -kerning first=1299 second=1026 amount=-5 -kerning first=42 second=115 amount=-1 -kerning first=182 second=267 amount=-1 -kerning first=1078 second=230 amount=-1 -kerning first=8369 second=273 amount=-1 -kerning first=900 second=242 amount=-1 -kerning first=8364 second=964 amount=-3 -kerning first=1102 second=947 amount=-1 -kerning first=343 second=945 amount=-1 -kerning first=931 second=1262 amount=-2 -kerning first=105 second=356 amount=-5 -kerning first=108 second=116 amount=-1 -kerning first=962 second=1069 amount=-1 -kerning first=968 second=81 amount=-2 -kerning first=125 second=972 amount=-1 -kerning first=161 second=281 amount=-1 -kerning first=209 second=117 amount=-1 -kerning first=206 second=357 amount=-1 -kerning first=8377 second=220 amount=-2 -kerning first=86 second=369 amount=-1 -kerning first=1206 second=244 amount=-1 -kerning first=252 second=216 amount=-2 -kerning first=375 second=106 amount=1 -kerning first=165 second=228 amount=-1 -kerning first=278 second=118 amount=-4 -kerning first=8218 second=71 amount=-1 -kerning first=47 second=240 amount=-1 -kerning first=1059 second=193 amount=-2 -kerning first=184 second=1194 amount=-2 -kerning first=302 second=283 amount=-1 -kerning first=64 second=1256 amount=-2 -kerning first=1084 second=333 amount=-1 -kerning first=8378 second=375 amount=-1 -kerning first=84 second=8222 amount=-3 -kerning first=93 second=79 amount=-2 -kerning first=1117 second=949 amount=-1 -kerning first=1168 second=257 amount=-1 -kerning first=356 second=119 amount=-2 -kerning first=944 second=963 amount=-1 -kerning first=948 second=271 amount=-1 -kerning first=113 second=241 amount=2 -kerning first=250 second=1195 amount=-1 -kerning first=253 second=371 amount=-1 -kerning first=376 second=286 amount=-3 -kerning first=163 second=1257 amount=-1 -kerning first=8220 second=246 amount=-1 -kerning first=306 second=230 amount=-1 -kerning first=1085 second=964 amount=-3 -kerning first=1094 second=273 amount=-1 -kerning first=214 second=242 amount=-1 -kerning first=211 second=923 amount=-2 -kerning first=328 second=947 amount=-1 -kerning first=332 second=372 amount=-2 -kerning first=91 second=945 amount=-1 -kerning first=952 second=219 amount=-2 -kerning first=1210 second=1108 amount=-1 -kerning first=1223 second=347 amount=-1 -kerning first=254 second=1069 amount=-1 -kerning first=260 second=81 amount=-2 -kerning first=380 second=231 amount=-1 -kerning first=1063 second=1028 amount=-2 -kerning first=304 second=1263 amount=-1 -kerning first=75 second=269 amount=-2 -kerning first=1170 second=1176 amount=-1 -kerning first=238 second=332 amount=-2 -kerning first=361 second=244 amount=-1 -kerning first=121 second=106 amount=7 -kerning first=36 second=118 amount=-4 -kerning first=1036 second=71 amount=-3 -kerning first=8226 second=351 amount=-1 -kerning first=56 second=283 amount=-1 -kerning first=314 second=333 amount=-1 -kerning first=1099 second=375 amount=-1 -kerning first=1171 second=8211 amount=-2 -kerning first=239 second=963 amount=-1 -kerning first=245 second=44 amount=-1 -kerning first=962 second=84 amount=-5 -kerning first=1037 second=246 amount=-1 -kerning first=179 second=218 amount=-2 -kerning first=8230 second=1035 amount=-5 -kerning first=60 second=230 amount=-1 -kerning first=200 second=360 amount=-2 -kerning first=323 second=45 amount=-2 -kerning first=318 second=273 amount=-1 -kerning first=80 second=372 amount=-5 -kerning first=77 second=947 amount=-4 -kerning first=223 second=287 amount=-1 -kerning first=934 second=335 amount=-1 -kerning first=363 second=1108 amount=-1 -kerning first=963 second=259 amount=-1 -kerning first=966 second=34 amount=-1 -kerning first=126 second=231 amount=-1 -kerning first=263 second=1175 amount=-1 -kerning first=271 second=121 amount=-1 -kerning first=1241 second=46 amount=-1 -kerning first=41 second=243 amount=-1 -kerning first=180 second=373 amount=-4 -kerning first=291 second=1028 amount=-2 -kerning first=296 second=288 amount=-2 -kerning first=58 second=1263 amount=-1 -kerning first=8372 second=171 amount=-3 -kerning first=936 second=966 amount=-1 -kerning first=107 second=244 amount=-2 -kerning first=244 second=1203 amount=-2 -kerning first=247 second=374 amount=-5 -kerning first=276 second=71 amount=-2 -kerning first=45 second=193 amount=-2 -kerning first=1046 second=351 amount=-1 -kerning first=1049 second=111 amount=-1 -kerning first=188 second=83 amount=-1 -kerning first=300 second=233 amount=-1 -kerning first=65 second=333 amount=-1 -kerning first=325 second=375 amount=-1 -kerning first=903 second=290 amount=-2 -kerning first=88 second=257 amount=-1 -kerning first=1118 second=210 amount=-2 -kerning first=343 second=8211 amount=-1 -kerning first=254 second=84 amount=-5 -kerning first=374 second=234 amount=-4 -kerning first=968 second=364 amount=-2 -kerning first=164 second=334 amount=-2 -kerning first=161 second=1090 amount=-3 -kerning first=1051 second=291 amount=-1 -kerning first=1047 second=1035 amount=-1 -kerning first=69 second=273 amount=-1 -kerning first=72 second=45 amount=-2 -kerning first=323 second=8249 amount=-3 -kerning first=1119 second=365 amount=-1 -kerning first=255 second=259 amount=-1 -kerning first=258 second=34 amount=-3 -kerning first=966 second=8216 amount=-1 -kerning first=165 second=965 amount=-1 -kerning first=8218 second=354 amount=-5 -kerning first=47 second=1028 amount=-2 -kerning first=50 second=288 amount=-2 -kerning first=305 second=336 amount=-2 -kerning first=73 second=220 amount=-2 -kerning first=1096 second=171 amount=-3 -kerning first=334 second=260 amount=-2 -kerning first=93 second=362 amount=-2 -kerning first=1117 second=8217 amount=-3 -kerning first=236 second=275 amount=-1 -kerning first=376 second=1096 amount=-3 -kerning first=379 second=337 amount=-1 -kerning first=382 second=99 amount=-1 -kerning first=973 second=940 amount=-1 -kerning first=1027 second=249 amount=-1 -kerning first=172 second=221 amount=-5 -kerning first=287 second=111 amount=-1 -kerning first=282 second=351 amount=-1 -kerning first=54 second=233 amount=-1 -kerning first=194 second=363 amount=-1 -kerning first=191 second=1177 amount=-1 -kerning first=74 second=375 amount=-1 -kerning first=338 second=210 amount=-2 -kerning first=916 second=338 amount=-2 -kerning first=91 second=8211 amount=-2 -kerning first=926 second=100 amount=-1 -kerning first=1174 second=941 amount=-1 -kerning first=955 second=262 amount=-2 -kerning first=120 second=234 amount=-2 -kerning first=1298 second=187 amount=-1 -kerning first=260 second=364 amount=-2 -kerning first=35 second=246 amount=-1 -kerning first=1035 second=199 amount=-2 -kerning first=174 second=376 amount=-5 -kerning first=1066 second=1098 amount=-2 -kerning first=192 second=8212 amount=-2 -kerning first=195 second=1059 amount=-2 -kerning first=1073 second=101 amount=-1 -kerning first=72 second=8249 amount=-3 -kerning first=221 second=235 amount=-4 -kerning first=258 second=8216 amount=-3 -kerning first=39 second=196 amount=-3 -kerning first=59 second=336 amount=-2 -kerning first=1074 second=279 amount=-1 -kerning first=202 second=248 amount=-1 -kerning first=322 second=171 amount=-3 -kerning first=337 second=8217 amount=-1 -kerning first=242 second=1076 amount=-1 -kerning first=958 second=1185 amount=-3 -kerning first=962 second=367 amount=-1 -kerning first=125 second=337 amount=-1 -kerning first=161 second=99 amount=-1 -kerning first=43 second=111 amount=-1 -kerning first=1037 second=1038 amount=-2 -kerning first=40 second=351 amount=-1 -kerning first=183 second=261 amount=-1 -kerning first=179 second=953 amount=-1 -kerning first=8370 second=268 amount=-2 -kerning first=86 second=210 amount=-2 -kerning first=249 second=262 amount=-2 -kerning first=369 second=1241 amount=-1 -kerning first=372 second=187 amount=-2 -kerning first=960 second=8220 amount=-3 -kerning first=126 second=968 amount=-1 -kerning first=162 second=277 amount=-1 -kerning first=41 second=1035 amount=-5 -kerning first=44 second=291 amount=-1 -kerning first=299 second=339 amount=-1 -kerning first=302 second=101 amount=-1 -kerning first=296 second=1098 amount=-3 -kerning first=207 second=353 amount=-1 -kerning first=327 second=263 amount=-1 -kerning first=8378 second=216 amount=-2 -kerning first=84 second=1179 amount=-2 -kerning first=87 second=365 amount=-2 -kerning first=1106 second=8221 amount=-1 -kerning first=1207 second=240 amount=-1 -kerning first=253 second=212 amount=-2 -kerning first=967 second=943 amount=-1 -kerning first=166 second=224 amount=-1 -kerning first=276 second=354 amount=-5 -kerning first=273 second=1118 amount=-1 -kerning first=185 second=1184 amount=-5 -kerning first=188 second=366 amount=-2 -kerning first=303 second=279 amount=-1 -kerning first=300 second=970 amount=-1 -kerning first=88 second=1063 amount=-1 -kerning first=357 second=115 amount=-1 -kerning first=254 second=367 amount=-1 -kerning first=251 second=1185 amount=-3 -kerning first=8221 second=242 amount=-1 -kerning first=8217 second=923 amount=-3 -kerning first=1051 second=1101 amount=-1 -kerning first=1095 second=268 amount=-2 -kerning first=912 second=281 amount=-1 -kerning first=92 second=941 amount=-1 -kerning first=95 second=250 amount=-1 -kerning first=235 second=380 amount=-1 -kerning first=252 second=8220 amount=-3 -kerning first=1026 second=357 amount=-1 -kerning first=168 second=1079 amount=-1 -kerning first=175 second=89 amount=-5 -kerning first=50 second=1098 amount=-3 -kerning first=53 second=339 amount=-1 -kerning first=1064 second=973 amount=-1 -kerning first=56 second=101 amount=-1 -kerning first=196 second=251 amount=-1 -kerning first=76 second=263 amount=-1 -kerning first=1099 second=216 amount=-2 -kerning first=334 second=1066 amount=-2 -kerning first=331 second=8221 amount=-1 -kerning first=923 second=228 amount=-1 -kerning first=951 second=1194 amount=-2 -kerning first=1263 second=283 amount=-1 -kerning first=379 second=1256 amount=-1 -kerning first=1037 second=67 amount=-2 -kerning first=176 second=266 amount=-2 -kerning first=179 second=39 amount=-3 -kerning first=57 second=279 amount=-1 -kerning first=54 second=970 amount=-1 -kerning first=1071 second=229 amount=-1 -kerning first=80 second=213 amount=-2 -kerning first=1097 second=1195 amount=-1 -kerning first=223 second=103 amount=-1 -kerning first=916 second=1257 amount=-1 -kerning first=103 second=115 amount=-1 -kerning first=100 second=355 amount=-1 -kerning first=35 second=1038 amount=-2 -kerning first=180 second=214 amount=-2 -kerning first=8260 second=287 amount=-1 -kerning first=61 second=226 amount=-1 -kerning first=1073 second=1240 amount=-2 -kerning first=201 second=356 amount=-5 -kerning first=204 second=116 amount=-1 -kerning first=321 second=268 amount=-2 -kerning first=8366 second=219 amount=-2 -kerning first=221 second=972 amount=-4 -kerning first=1299 second=1263 amount=-1 -kerning first=160 second=227 amount=-1 -kerning first=273 second=117 amount=-1 -kerning first=182 second=369 amount=-1 -kerning first=294 second=973 amount=-1 -kerning first=325 second=216 amount=-2 -kerning first=8369 second=374 amount=-5 -kerning first=903 second=106 amount=1 -kerning first=351 second=118 amount=-1 -kerning first=108 second=240 amount=-1 -kerning first=371 second=283 amount=-1 -kerning first=125 second=1256 amount=-2 -kerning first=270 second=1044 amount=-1 -kerning first=189 second=79 amount=-2 -kerning first=301 second=229 amount=-1 -kerning first=1083 second=271 amount=-1 -kerning first=206 second=920 amount=-2 -kerning first=323 second=1195 amount=-1 -kerning first=901 second=1026 amount=-5 -kerning first=904 second=286 amount=-2 -kerning first=89 second=253 amount=-2 -kerning first=946 second=218 amount=-2 -kerning first=375 second=230 amount=-1 -kerning first=972 second=120 amount=-2 -kerning first=278 second=242 amount=-1 -kerning first=1241 second=947 amount=-1 -kerning first=302 second=1240 amount=-2 -kerning first=299 second=1262 amount=-2 -kerning first=70 second=268 amount=-2 -kerning first=327 second=1069 amount=-1 -kerning first=910 second=231 amount=-4 -kerning first=1168 second=361 amount=-1 -kerning first=1171 second=121 amount=-1 -kerning first=356 second=243 amount=-3 -kerning first=948 second=373 amount=-4 -kerning first=113 second=343 amount=2 -kerning first=1220 second=288 amount=-2 -kerning first=169 second=269 amount=-1 -kerning first=48 second=973 amount=-1 -kerning first=1065 second=232 amount=-1 -kerning first=306 second=332 amount=-2 -kerning first=74 second=216 amount=-2 -kerning first=97 second=118 amount=-1 -kerning first=360 second=193 amount=-2 -kerning first=955 second=83 amount=-1 -kerning first=117 second=283 amount=-1 -kerning first=380 second=333 amount=-1 -kerning first=35 second=67 amount=-2 -kerning first=174 second=217 amount=-2 -kerning first=8225 second=290 amount=-2 -kerning first=55 second=229 amount=-1 -kerning first=198 second=119 amount=-4 -kerning first=195 second=359 amount=-1 -kerning first=313 second=271 amount=-1 -kerning first=72 second=1195 amount=-1 -kerning first=75 second=371 amount=-1 -kerning first=215 second=1026 amount=-5 -kerning first=912 second=1090 amount=-3 -kerning first=1178 second=246 amount=-1 -kerning first=361 second=346 amount=-1 -kerning first=121 second=230 amount=-1 -kerning first=36 second=242 amount=-1 -kerning first=175 second=372 amount=-5 -kerning first=289 second=287 amount=-1 -kerning first=56 second=1240 amount=-2 -kerning first=53 second=1262 amount=-2 -kerning first=1074 second=97 amount=-1 -kerning first=317 second=219 amount=-2 -kerning first=337 second=1175 amount=-2 -kerning first=923 second=965 amount=-1 -kerning first=102 second=243 amount=-1 -kerning first=242 second=373 amount=-1 -kerning first=365 second=288 amount=-2 -kerning first=1037 second=350 amount=-1 -kerning first=60 second=332 amount=-2 -kerning first=1071 second=966 amount=-1 -kerning first=203 second=244 amount=-1 -kerning first=1075 second=275 amount=-1 -kerning first=318 second=374 amount=-5 -kerning first=8370 second=87 amount=-5 -kerning first=83 second=256 amount=-1 -kerning first=220 second=1298 amount=-1 -kerning first=947 second=111 amount=-1 -kerning first=249 second=83 amount=-1 -kerning first=369 second=233 amount=-1 -kerning first=963 second=363 amount=-1 -kerning first=960 second=1177 amount=-1 -kerning first=126 second=333 amount=-1 -kerning first=271 second=245 amount=-1 -kerning first=1044 second=290 amount=-1 -kerning first=180 second=949 amount=-1 -kerning first=184 second=257 amount=-1 -kerning first=61 second=963 amount=-1 -kerning first=64 second=271 amount=-1 -kerning first=67 second=44 amount=-1 -kerning first=327 second=84 amount=-5 -kerning first=8372 second=262 amount=-2 -kerning first=902 second=234 amount=-1 -kerning first=224 second=1090 amount=-1 -kerning first=1194 second=1035 amount=-1 -kerning first=964 second=1059 amount=-2 -kerning first=163 second=273 amount=-1 -kerning first=166 second=45 amount=-2 -kerning first=160 second=964 amount=-3 -kerning first=8216 second=113 amount=-1 -kerning first=1049 second=235 amount=-1 -kerning first=300 second=335 amount=-1 -kerning first=303 second=97 amount=-1 -kerning first=205 second=1108 amount=-1 -kerning first=88 second=361 amount=-1 -kerning first=91 second=121 amount=-1 -kerning first=234 second=46 amount=-1 -kerning first=354 second=196 amount=-6 -kerning first=108 second=1028 amount=-2 -kerning first=374 second=336 amount=-3 -kerning first=971 second=248 amount=-1 -kerning first=167 second=220 amount=-2 -kerning first=49 second=232 amount=-1 -kerning first=189 second=362 amount=-2 -kerning first=186 second=1176 amount=-1 -kerning first=301 second=966 amount=-1 -kerning first=304 second=275 amount=-1 -kerning first=69 second=374 amount=-5 -kerning first=1095 second=87 amount=-5 -kerning first=8377 second=1185 amount=-3 -kerning first=912 second=99 amount=-1 -kerning first=95 second=71 amount=-2 -kerning first=1170 second=249 amount=-1 -kerning first=1119 second=940 amount=-1 -kerning first=358 second=111 amount=-1 -kerning first=946 second=953 amount=-1 -kerning first=950 second=261 amount=-1 -kerning first=252 second=1177 amount=-1 -kerning first=255 second=363 amount=-1 -kerning first=168 second=375 amount=-1 -kerning first=1064 second=338 amount=-2 -kerning first=1067 second=100 amount=-1 -kerning first=1096 second=262 amount=-2 -kerning first=76 second=84 amount=-6 -kerning first=8378 second=8220 amount=-3 -kerning first=915 second=277 amount=-1 -kerning first=910 second=968 amount=-2 -kerning first=96 second=246 amount=-1 -kerning first=1176 second=199 amount=-2 -kerning first=236 second=376 amount=-5 -kerning first=1220 second=1098 amount=-3 -kerning first=253 second=8212 amount=-2 -kerning first=256 second=1059 amount=-2 -kerning first=1263 second=101 amount=-1 -kerning first=1027 second=353 amount=-1 -kerning first=166 second=8249 amount=-3 -kerning first=176 second=85 amount=-2 -kerning first=287 second=235 amount=-1 -kerning first=54 second=335 amount=-1 -kerning first=57 second=97 amount=-1 -kerning first=194 second=936 amount=-3 -kerning first=77 second=259 amount=-1 -kerning first=80 second=34 amount=-3 -kerning first=926 second=224 amount=-1 -kerning first=952 second=1184 amount=-5 -kerning first=955 second=366 amount=-2 -kerning first=1298 second=279 amount=-1 -kerning first=35 second=350 amount=-1 -kerning first=8260 second=103 amount=-1 -kerning first=55 second=966 amount=-1 -kerning first=58 second=275 amount=-1 -kerning first=1073 second=225 amount=-1 -kerning first=321 second=87 amount=-5 -kerning first=8363 second=267 amount=-1 -kerning first=221 second=337 amount=-4 -kerning first=1178 second=1038 amount=-1 -kerning first=182 second=210 amount=-2 -kerning first=294 second=338 amount=-2 -kerning first=297 second=100 amount=-1 -kerning first=202 second=352 amount=-1 -kerning first=322 second=262 amount=-2 -kerning first=900 second=187 amount=-1 -kerning first=1099 second=8220 amount=-3 -kerning first=931 second=1079 amount=-1 -kerning first=942 second=89 amount=-5 -kerning first=105 second=291 amount=-1 -kerning first=365 second=1098 amount=-3 -kerning first=371 second=101 amount=-1 -kerning first=965 second=251 amount=-1 -kerning first=274 second=113 amount=-1 -kerning first=43 second=235 amount=-1 -kerning first=183 second=365 amount=-1 -kerning first=8365 second=1194 amount=-2 -kerning first=8370 second=370 amount=-2 -kerning first=80 second=8216 amount=-3 -kerning first=89 second=74 amount=-6 -kerning first=946 second=39 amount=-3 -kerning first=249 second=366 amount=-2 -kerning first=369 second=970 amount=-1 -kerning first=372 second=279 amount=-3 -kerning first=165 second=171 amount=-3 -kerning first=180 second=8217 amount=-3 -kerning first=302 second=225 amount=-1 -kerning first=70 second=87 amount=-5 -kerning first=1084 second=267 amount=-1 -kerning first=324 second=1185 amount=-1 -kerning first=327 second=367 amount=-1 -kerning first=87 second=940 amount=-3 -kerning first=948 second=214 amount=-2 -kerning first=376 second=226 amount=-4 -kerning first=973 second=116 amount=-1 -kerning first=48 second=338 amount=-2 -kerning first=51 second=100 amount=-1 -kerning first=1049 second=972 amount=-1 -kerning first=191 second=250 amount=-1 -kerning first=188 second=941 amount=-1 -kerning first=1062 second=281 amount=-1 -kerning first=214 second=187 amount=-1 -kerning first=325 second=8220 amount=-3 -kerning first=94 second=199 amount=-2 -kerning first=237 second=89 amount=-5 -kerning first=111 second=1098 amount=-1 -kerning first=114 second=339 amount=-1 -kerning first=1210 second=973 amount=-1 -kerning first=117 second=101 amount=-1 -kerning first=374 second=1224 amount=-3 -kerning first=377 second=381 amount=1 -kerning first=170 second=263 amount=-1 -kerning first=8225 second=106 amount=1 -kerning first=55 second=50 amount=-1 -kerning first=75 second=212 amount=-3 -kerning first=1087 second=1194 amount=-2 -kerning first=1095 second=370 amount=-2 -kerning first=92 second=1118 amount=-1 -kerning first=95 second=354 amount=-5 -kerning first=1178 second=67 amount=-1 -kerning first=238 second=266 amount=-2 -kerning first=241 second=39 amount=-1 -kerning first=956 second=79 amount=-2 -kerning first=118 second=279 amount=-1 -kerning first=1026 second=920 amount=-2 -kerning first=175 second=213 amount=-2 -kerning first=289 second=103 amount=-1 -kerning first=8226 second=286 amount=-2 -kerning first=8222 second=1026 amount=-5 -kerning first=1064 second=1257 amount=-1 -kerning first=56 second=225 amount=-1 -kerning first=196 second=355 amount=-1 -kerning first=314 second=267 amount=-1 -kerning first=8361 second=218 amount=-2 -kerning first=73 second=1185 amount=-3 -kerning first=76 second=367 amount=-1 -kerning first=96 second=1038 amount=-2 -kerning first=1179 second=242 amount=-1 -kerning first=954 second=945 amount=-2 -kerning first=1263 second=1240 amount=-2 -kerning first=262 second=356 amount=-1 -kerning first=176 second=368 amount=-2 -kerning first=287 second=972 amount=-1 -kerning first=74 second=8220 amount=-3 -kerning first=223 second=227 amount=-1 -kerning first=934 second=269 amount=-1 -kerning first=363 second=973 amount=-1 -kerning first=1044 second=106 amount=7 -kerning first=177 second=1066 amount=-5 -kerning first=174 second=8221 amount=-3 -kerning first=296 second=228 amount=-1 -kerning first=1073 second=962 amount=-1 -kerning first=204 second=240 amount=-1 -kerning first=316 second=1194 amount=-2 -kerning first=321 second=370 amount=-2 -kerning first=8372 second=83 amount=-1 -kerning first=84 second=252 amount=-2 -kerning first=221 second=1256 amount=-3 -kerning first=250 second=79 amount=-2 -kerning first=967 second=119 amount=-4 -kerning first=964 second=359 amount=-1 -kerning first=1039 second=1026 amount=-5 -kerning first=1046 second=286 amount=-3 -kerning first=185 second=253 amount=-1 -kerning first=294 second=1257 amount=-1 -kerning first=65 second=267 amount=-1 -kerning first=1081 second=218 amount=-2 -kerning first=903 second=230 amount=-1 -kerning first=346 second=923 amount=-1 -kerning first=942 second=372 amount=-5 -kerning first=105 second=1101 amount=-1 -kerning first=371 second=1240 amount=-2 -kerning first=164 second=268 amount=-2 -kerning first=43 second=972 amount=-1 -kerning first=1051 second=231 amount=-1 -kerning first=1083 second=373 amount=-4 -kerning first=901 second=1263 amount=-1 -kerning first=86 second=1169 amount=-2 -kerning first=92 second=117 amount=-1 -kerning first=1219 second=232 amount=-1 -kerning first=375 second=332 amount=-2 -kerning first=372 second=1085 amount=-2 -kerning first=168 second=216 amount=-2 -kerning first=8212 second=1033 amount=-4 -kerning first=8218 second=289 amount=-1 -kerning first=50 second=228 amount=-1 -kerning first=193 second=118 amount=-4 -kerning first=302 second=962 amount=-1 -kerning first=70 second=370 amount=-2 -kerning first=1096 second=83 amount=-1 -kerning first=8378 second=1177 amount=-1 -kerning first=910 second=333 amount=-4 -kerning first=96 second=67 amount=-2 -kerning first=1171 second=245 amount=-1 -kerning first=236 second=217 amount=-2 -kerning first=356 second=345 amount=-2 -kerning first=948 second=949 amount=-1 -kerning first=951 second=257 amount=-1 -kerning first=256 second=359 amount=-1 -kerning first=259 second=119 amount=-1 -kerning first=376 second=963 amount=-4 -kerning first=379 second=271 amount=-1 -kerning first=166 second=1195 amount=-1 -kerning first=169 second=371 amount=-1 -kerning first=282 second=286 amount=-2 -kerning first=8224 second=234 amount=-1 -kerning first=48 second=1257 amount=-1 -kerning first=1062 second=1090 amount=-2 -kerning first=1065 second=334 amount=-1 -kerning first=332 second=1174 amount=-3 -kerning first=916 second=273 amount=-1 -kerning first=926 second=45 amount=-2 -kerning first=234 second=947 amount=-1 -kerning first=237 second=372 amount=-5 -kerning first=117 second=1240 amount=-2 -kerning first=1298 second=97 amount=-1 -kerning first=170 second=1069 amount=-1 -kerning first=177 second=81 amount=-2 -kerning first=198 second=243 amount=-1 -kerning first=313 second=373 amount=-3 -kerning first=215 second=1263 amount=-1 -kerning first=928 second=220 amount=-2 -kerning first=956 second=362 amount=-2 -kerning first=961 second=122 amount=-1 -kerning first=121 second=332 amount=-2 -kerning first=1299 second=275 amount=-1 -kerning first=1240 second=374 amount=-3 -kerning first=1036 second=289 amount=-1 -kerning first=56 second=962 amount=-1 -kerning first=1074 second=221 amount=-5 -kerning first=322 second=83 amount=-1 -kerning first=8364 second=261 amount=-1 -kerning first=8361 second=953 amount=-1 -kerning first=1099 second=1177 amount=-1 -kerning first=343 second=245 amount=-1 -kerning first=931 second=375 amount=-1 -kerning first=1186 second=290 amount=-1 -kerning first=954 second=8211 amount=-3 -kerning first=125 second=271 amount=-1 -kerning first=122 second=963 amount=-1 -kerning first=270 second=194 amount=-2 -kerning first=37 second=1026 amount=-5 -kerning first=40 second=286 amount=-2 -kerning first=1041 second=234 amount=-1 -kerning first=63 second=218 amount=-2 -kerning first=203 second=346 amount=-1 -kerning first=8370 second=211 amount=-2 -kerning first=80 second=1174 amount=-2 -kerning first=86 second=120 amount=-2 -kerning first=1103 second=1059 amount=-2 -kerning first=223 second=964 amount=-3 -kerning first=926 second=8249 amount=-3 -kerning first=947 second=235 amount=-1 -kerning first=369 second=335 amount=-1 -kerning first=372 second=97 amount=-2 -kerning first=162 second=219 amount=-2 -kerning first=271 second=347 amount=-1 -kerning first=184 second=361 amount=-1 -kerning first=296 second=965 amount=-1 -kerning first=64 second=373 amount=-4 -kerning first=1073 second=8250 amount=-1 -kerning first=204 second=1028 amount=-2 -kerning first=207 second=288 amount=-2 -kerning first=8366 second=1184 amount=-5 -kerning first=8372 second=366 amount=-2 -kerning first=902 second=336 amount=-2 -kerning first=1117 second=248 amount=-1 -kerning first=247 second=1176 amount=-1 -kerning first=250 second=362 amount=-2 -kerning first=373 second=275 amount=-1 -kerning first=376 second=47 amount=-4 -kerning first=163 second=374 amount=-5 -kerning first=276 second=289 amount=-1 -kerning first=1049 second=337 amount=-1 -kerning first=1062 second=99 amount=-1 -kerning first=191 second=71 amount=-2 -kerning first=303 second=221 amount=-5 -kerning first=1085 second=261 amount=-1 -kerning first=1081 second=953 amount=-1 -kerning first=325 second=1177 amount=-1 -kerning first=91 second=245 amount=-1 -kerning first=354 second=290 amount=-1 -kerning first=1210 second=338 amount=-2 -kerning first=1223 second=100 amount=-1 -kerning first=971 second=352 amount=-1 -kerning first=170 second=84 amount=-5 -kerning first=280 second=234 amount=-1 -kerning first=8217 second=1241 amount=-1 -kerning first=49 second=334 amount=-2 -kerning first=46 second=1090 amount=-3 -kerning first=1051 second=968 amount=-1 -kerning first=192 second=246 amount=-1 -kerning first=1063 second=277 amount=-1 -kerning first=304 second=376 amount=-5 -kerning first=1095 second=211 amount=-2 -kerning first=330 second=1059 amount=-2 -kerning first=1170 second=353 amount=-1 -kerning first=1175 second=113 amount=-1 -kerning first=238 second=85 amount=-2 -kerning first=358 second=235 amount=-1 -kerning first=950 second=365 amount=-1 -kerning first=118 second=97 amount=-1 -kerning first=175 second=34 amount=-3 -kerning first=50 second=965 amount=-1 -kerning first=56 second=46 amount=-1 -kerning first=1067 second=224 amount=-1 -kerning first=302 second=8250 amount=-1 -kerning first=8361 second=39 amount=-3 -kerning first=1096 second=366 amount=-2 -kerning first=923 second=171 amount=-3 -kerning first=96 second=350 amount=-1 -kerning first=948 second=8217 amount=-3 -kerning first=119 second=275 amount=-1 -kerning first=1263 second=225 amount=-1 -kerning first=262 second=197 amount=-1 -kerning first=34 second=289 amount=-1 -kerning first=287 second=337 amount=-1 -kerning first=57 second=221 amount=-5 -kerning first=197 second=351 amount=-1 -kerning first=200 second=111 amount=-1 -kerning first=77 second=363 amount=-1 -kerning first=74 second=1177 amount=-1 -kerning first=934 second=88 amount=-5 -kerning first=100 second=290 amount=-2 -kerning first=363 second=338 amount=-2 -kerning first=955 second=941 amount=-1 -kerning first=960 second=250 amount=-1 -kerning first=38 second=234 amount=-1 -kerning first=1035 second=1241 amount=-1 -kerning first=177 second=364 amount=-2 -kerning first=291 second=277 amount=-1 -kerning first=8260 second=227 amount=-1 -kerning first=58 second=376 amount=-5 -kerning first=198 second=1035 amount=-5 -kerning first=201 second=291 amount=-1 -kerning first=321 second=211 amount=-2 -kerning first=8363 second=369 amount=-1 -kerning first=78 second=1059 amount=-2 -kerning first=75 second=8212 amount=-4 -kerning first=345 second=113 amount=-1 -kerning first=936 second=263 amount=-1 -kerning first=175 second=8216 amount=-3 -kerning first=297 second=224 amount=-1 -kerning first=56 second=8250 amount=-1 -kerning first=65 second=86 amount=-6 -kerning first=1081 second=39 amount=-3 -kerning first=317 second=1184 amount=-5 -kerning first=322 second=366 amount=-2 -kerning first=900 second=279 amount=-1 -kerning first=351 second=63 amount=-2 -kerning first=942 second=213 amount=-2 -kerning first=242 second=8217 amount=-1 -kerning first=371 second=225 amount=-1 -kerning first=965 second=355 amount=-1 -kerning first=968 second=115 amount=-1 -kerning first=164 second=87 amount=-5 -kerning first=43 second=337 amount=-1 -kerning first=186 second=249 amount=-1 -kerning first=183 second=940 amount=-1 -kerning first=63 second=953 amount=-1 -kerning first=1083 second=214 amount=-2 -kerning first=8370 second=945 amount=-1 -kerning first=904 second=226 amount=-1 -kerning first=89 second=198 amount=-5 -kerning first=1119 second=116 amount=-1 -kerning first=947 second=972 amount=-1 -kerning first=1206 second=281 amount=-1 -kerning first=252 second=250 amount=-1 -kerning first=249 second=941 amount=-1 -kerning first=372 second=380 amount=-1 -kerning first=165 second=262 amount=-2 -kerning first=278 second=187 amount=-1 -kerning first=47 second=277 amount=-1 -kerning first=44 second=968 amount=-1 -kerning first=190 second=199 amount=-2 -kerning first=299 second=1079 amount=-1 -kerning first=305 second=89 amount=-5 -kerning first=70 second=211 amount=-1 -kerning first=1084 second=369 amount=-1 -kerning first=207 second=1098 amount=-3 -kerning first=87 second=1117 amount=-2 -kerning first=93 second=113 amount=-1 -kerning first=230 second=955 amount=-1 -kerning first=944 second=1066 amount=-5 -kerning first=941 second=8221 amount=-1 -kerning first=1220 second=228 amount=-1 -kerning first=379 second=90 amount=1 -kerning first=973 second=240 amount=-1 -kerning first=169 second=212 amount=-2 -kerning first=8220 second=283 amount=-1 -kerning first=51 second=224 amount=-1 -kerning first=1049 second=1256 amount=-2 -kerning first=191 second=354 amount=-5 -kerning first=188 second=1118 amount=-1 -kerning first=306 second=266 amount=-2 -kerning first=68 second=1184 amount=-2 -kerning first=214 second=279 amount=-1 -kerning first=97 second=63 amount=-2 -kerning first=237 second=213 amount=-2 -kerning first=354 second=1100 amount=-2 -kerning first=952 second=253 amount=-1 -kerning first=117 second=225 amount=-1 -kerning first=1210 second=1257 amount=-1 -kerning first=260 second=115 amount=-1 -kerning first=380 second=267 amount=-1 -kerning first=170 second=367 amount=-1 -kerning first=167 second=1185 amount=-3 -kerning first=8225 second=230 amount=-1 -kerning first=192 second=1038 amount=-2 -kerning first=313 second=214 amount=-1 -kerning first=1095 second=945 amount=-1 -kerning first=336 second=356 amount=-2 -kerning first=238 second=368 amount=-2 -kerning first=358 second=972 amount=-1 -kerning first=361 second=281 amount=-1 -kerning first=266 second=65 amount=-1 -kerning first=36 second=187 amount=-1 -kerning first=168 second=8220 amount=-3 -kerning first=289 second=227 amount=-1 -kerning first=8222 second=1263 amount=-1 -kerning first=59 second=89 amount=-5 -kerning first=53 second=1079 amount=-1 -kerning first=314 second=369 amount=-1 -kerning first=931 second=216 amount=-2 -kerning first=236 second=8221 amount=-3 -kerning first=239 second=1066 amount=-5 -kerning first=1186 second=106 amount=7 -kerning first=365 second=228 amount=-1 -kerning first=962 second=118 amount=-4 -kerning first=1263 second=962 amount=-1 -kerning first=262 second=916 amount=-1 -kerning first=1037 second=283 amount=-1 -kerning first=176 second=943 amount=-1 -kerning first=179 second=252 amount=-1 -kerning first=287 second=1256 amount=-2 -kerning first=60 second=266 amount=-2 -kerning first=63 second=39 amount=-3 -kerning first=323 second=79 amount=-2 -kerning first=8365 second=257 amount=-1 -kerning first=1103 second=359 amount=-1 -kerning first=1108 second=119 amount=-1 -kerning first=926 second=1195 amount=-1 -kerning first=934 second=371 amount=-1 -kerning first=363 second=1257 amount=-1 -kerning first=126 second=267 amount=-1 -kerning first=44 second=52 amount=-1 -kerning first=64 second=214 amount=-2 -kerning first=1073 second=947 amount=-4 -kerning first=8260 second=964 amount=-3 -kerning first=201 second=1101 amount=-1 -kerning first=321 second=945 amount=-1 -kerning first=936 second=1069 amount=-1 -kerning first=944 second=81 amount=-2 -kerning first=107 second=281 amount=-2 -kerning first=1202 second=231 amount=-1 -kerning first=967 second=243 amount=-1 -kerning first=1039 second=1263 amount=-1 -kerning first=185 second=357 amount=-1 -kerning first=188 second=117 amount=-1 -kerning first=300 second=269 amount=-1 -kerning first=65 second=369 amount=-1 -kerning first=205 second=973 amount=-1 -kerning first=8369 second=1176 amount=-1 -kerning first=903 second=332 amount=-2 -kerning first=1118 second=244 amount=-1 -kerning first=254 second=118 amount=-4 -kerning first=371 second=962 amount=-1 -kerning first=161 second=1194 amount=-2 -kerning first=164 second=370 amount=-2 -kerning first=8217 second=233 amount=-1 -kerning first=43 second=1256 amount=-2 -kerning first=1051 second=333 amount=-1 -kerning first=192 second=67 amount=-2 -kerning first=304 second=217 amount=-2 -kerning first=72 second=79 amount=-2 -kerning first=1083 second=949 amount=-1 -kerning first=1087 second=257 amount=-1 -kerning first=330 second=359 amount=-1 -kerning first=8370 second=8211 amount=-2 -kerning first=333 second=119 amount=-1 -kerning first=904 second=963 amount=-1 -kerning first=89 second=920 amount=-3 -kerning first=352 second=1026 amount=-1 -kerning first=1206 second=1090 amount=-2 -kerning first=1219 second=334 amount=-2 -kerning first=1067 second=45 amount=-2 -kerning first=1064 second=273 amount=-1 -kerning first=193 second=242 amount=-1 -kerning first=302 second=947 amount=-4 -kerning first=305 second=372 amount=-5 -kerning first=70 second=945 amount=-1 -kerning first=915 second=219 amount=-2 -kerning first=1168 second=1108 amount=-1 -kerning first=1171 second=347 amount=-1 -kerning first=239 second=81 amount=-2 -kerning first=951 second=361 amount=-1 -kerning first=113 second=1084 amount=2 -kerning first=1220 second=965 amount=-1 -kerning first=973 second=1028 amount=-2 -kerning first=1027 second=288 amount=-2 -kerning first=8224 second=336 amount=-2 -kerning first=54 second=269 amount=-1 -kerning first=338 second=244 amount=-1 -kerning first=916 second=374 amount=-5 -kerning first=100 second=106 amount=1 -kerning first=960 second=71 amount=-2 -kerning first=117 second=962 amount=-1 -kerning first=1298 second=221 amount=-5 -kerning first=35 second=283 amount=-1 -kerning first=1035 second=233 amount=-1 -kerning first=58 second=217 amount=-2 -kerning first=313 second=949 amount=-1 -kerning first=316 second=257 amount=-1 -kerning first=8363 second=210 amount=-2 -kerning first=78 second=359 amount=-1 -kerning first=1095 second=8211 amount=-2 -kerning first=221 second=271 amount=-4 -kerning first=936 second=84 amount=-5 -kerning first=1185 second=234 amount=-2 -kerning first=361 second=1090 amount=-3 -kerning first=124 second=218 amount=-2 -kerning first=1299 second=376 amount=-5 -kerning first=39 second=230 amount=-1 -kerning first=178 second=360 amount=-2 -kerning first=289 second=964 amount=-3 -kerning first=294 second=273 amount=-1 -kerning first=297 second=45 amount=-2 -kerning first=56 second=947 amount=-4 -kerning first=59 second=372 amount=-5 -kerning first=1067 second=8249 amount=-3 -kerning first=202 second=287 amount=-1 -kerning first=8364 second=365 amount=-1 -kerning first=900 second=97 amount=-1 -kerning first=343 second=347 amount=-1 -kerning first=942 second=34 amount=-3 -kerning first=105 second=231 amount=-1 -kerning first=242 second=1175 amount=-2 -kerning first=365 second=965 amount=-1 -kerning first=125 second=373 amount=-4 -kerning first=1263 second=8250 amount=-1 -kerning first=37 second=1263 amount=-1 -kerning first=1041 second=336 amount=-2 -kerning first=298 second=220 amount=-2 -kerning first=206 second=232 amount=-1 -kerning first=323 second=362 amount=-2 -kerning first=318 second=1176 amount=-1 -kerning first=86 second=244 amount=-3 -kerning first=901 second=275 amount=-1 -kerning first=947 second=337 amount=-1 -kerning first=1206 second=99 amount=-1 -kerning first=252 second=71 amount=-2 -kerning first=165 second=83 amount=-1 -kerning first=299 second=375 amount=-1 -kerning first=64 second=949 amount=-1 -kerning first=1084 second=210 amount=-2 -kerning first=321 second=8211 amount=-2 -kerning first=8378 second=250 amount=-1 -kerning first=8372 second=941 amount=-1 -kerning first=1117 second=352 amount=-1 -kerning first=944 second=364 amount=-2 -kerning first=1207 second=277 amount=-1 -kerning first=253 second=246 amount=-1 -kerning first=967 second=1035 amount=-5 -kerning first=8216 second=339 amount=-1 -kerning first=48 second=273 amount=-1 -kerning first=51 second=45 amount=-2 -kerning first=8220 second=101 amount=-1 -kerning first=297 second=8249 amount=-3 -kerning first=306 second=85 amount=-2 -kerning first=1085 second=365 amount=-1 -kerning first=214 second=97 amount=-1 -kerning first=91 second=347 amount=-1 -kerning first=88 second=1108 amount=-2 -kerning first=237 second=34 amount=-3 -kerning first=942 second=8216 amount=-3 -kerning first=1223 second=224 amount=-1 -kerning first=371 second=8250 amount=-1 -kerning first=374 second=1075 amount=-3 -kerning first=280 second=336 amount=-2 -kerning first=8221 second=279 amount=-1 -kerning first=52 second=220 amount=-2 -kerning first=192 second=350 amount=-1 -kerning first=72 second=362 amount=-2 -kerning first=1083 second=8217 amount=-3 -kerning first=69 second=1176 amount=-1 -kerning first=215 second=275 amount=-1 -kerning first=336 second=197 amount=-2 -kerning first=920 second=87 amount=-2 -kerning first=95 second=289 amount=-1 -kerning first=358 second=337 amount=-1 -kerning first=361 second=99 amount=-1 -kerning first=950 second=940 amount=-1 -kerning first=258 second=351 amount=-1 -kerning first=168 second=1177 amount=-1 -kerning first=281 second=967 amount=-2 -kerning first=8226 second=226 amount=-1 -kerning first=53 second=375 amount=-1 -kerning first=196 second=290 amount=-2 -kerning first=1070 second=88 amount=-3 -kerning first=314 second=210 amount=-2 -kerning first=70 second=8211 amount=-2 -kerning first=1099 second=250 amount=-1 -kerning first=1096 second=941 amount=-1 -kerning first=923 second=262 amount=-2 -kerning first=1176 second=1241 amount=-1 -kerning first=239 second=364 amount=-2 -kerning first=958 second=199 amount=-2 -kerning first=1027 second=1098 amount=-3 -kerning first=169 second=8212 amount=-2 -kerning first=172 second=1059 amount=-2 -kerning first=1037 second=101 amount=-1 -kerning first=51 second=8249 amount=-3 -kerning first=60 second=85 amount=-2 -kerning first=1071 second=263 amount=-1 -kerning first=200 second=235 amount=-1 -kerning first=315 second=365 amount=-1 -kerning first=934 second=212 amount=-2 -kerning first=237 second=8216 amount=-3 -kerning first=960 second=354 amount=-5 -kerning first=955 second=1118 amount=-1 -kerning first=117 second=8250 amount=-1 -kerning first=38 second=336 amount=-2 -kerning first=1035 second=970 amount=-1 -kerning first=180 second=248 amount=-1 -kerning first=296 second=171 amount=-3 -kerning first=313 second=8217 amount=-3 -kerning first=8366 second=253 amount=-1 -kerning first=84 second=197 amount=-6 -kerning first=936 second=367 amount=-1 -kerning first=928 second=1185 amount=-3 -kerning first=107 second=99 amount=-2 -kerning first=247 second=249 amount=-1 -kerning first=160 second=261 amount=-1 -kerning first=124 second=953 amount=-1 -kerning first=1240 second=8218 amount=-1 -kerning first=1046 second=226 amount=-1 -kerning first=65 second=210 amount=-2 -kerning first=205 second=338 amount=-2 -kerning first=322 second=941 amount=-1 -kerning first=325 second=250 amount=-1 -kerning first=931 second=8220 amount=-3 -kerning first=105 second=968 amount=-1 -kerning first=108 second=277 amount=-1 -kerning first=251 second=199 amount=-2 -kerning first=164 second=211 amount=-2 -kerning first=274 second=339 amount=-1 -kerning first=186 second=353 amount=-1 -kerning first=189 second=113 amount=-1 -kerning first=301 second=263 amount=-1 -kerning first=908 second=90 amount=-1 -kerning first=1119 second=240 amount=-1 -kerning first=946 second=252 amount=-1 -kerning first=249 second=1118 amount=-1 -kerning first=252 second=354 amount=-5 -kerning first=375 second=266 amount=-2 -kerning first=162 second=1184 amount=-5 -kerning first=165 second=366 amount=-2 -kerning first=278 second=279 amount=-1 -kerning first=47 second=378 amount=-2 -kerning first=50 second=171 amount=-3 -kerning first=193 second=63 amount=-5 -kerning first=305 second=213 amount=-2 -kerning first=64 second=8217 amount=-3 -kerning first=910 second=267 amount=-4 -kerning first=230 second=1185 amount=-1 -kerning first=253 second=1038 amount=-2 -kerning first=379 second=214 amount=-1 -kerning first=282 second=226 amount=-1 -kerning first=1065 second=268 amount=-1 -kerning first=306 second=368 amount=-2 -kerning first=74 second=250 amount=-1 -kerning first=94 second=1241 amount=-1 -kerning first=231 second=8220 amount=-1 -kerning first=952 second=357 amount=-1 -kerning first=955 second=117 amount=-1 -kerning first=35 second=101 amount=-1 -kerning first=174 second=251 amount=-1 -kerning first=8225 second=332 amount=-2 -kerning first=55 second=263 amount=-1 -kerning first=304 second=8221 amount=-3 -kerning first=1101 second=118 amount=-1 -kerning first=336 second=916 amount=-2 -kerning first=912 second=1194 amount=-2 -kerning first=101 second=102 amount=-1 -kerning first=1178 second=283 amount=-1 -kerning first=238 second=943 amount=-1 -kerning first=358 second=1256 amount=-2 -kerning first=121 second=266 amount=-2 -kerning first=124 second=39 amount=-3 -kerning first=1299 second=217 amount=-2 -kerning first=36 second=279 amount=-1 -kerning first=1036 second=229 amount=-1 -kerning first=8226 second=963 amount=-1 -kerning first=59 second=213 amount=-2 -kerning first=1067 second=1195 amount=-1 -kerning first=202 second=103 amount=-1 -kerning first=317 second=253 amount=-1 -kerning first=962 second=242 amount=-1 -kerning first=125 second=214 amount=-2 -kerning first=1263 second=947 amount=-4 -kerning first=1037 second=1240 amount=-2 -kerning first=40 second=226 amount=-1 -kerning first=179 second=356 amount=-5 -kerning first=183 second=116 amount=-1 -kerning first=60 second=368 amount=-2 -kerning first=1071 second=1069 amount=-1 -kerning first=200 second=972 amount=-1 -kerning first=203 second=281 amount=-1 -kerning first=8365 second=361 amount=-1 -kerning first=8370 second=121 amount=-1 -kerning first=86 second=65 amount=-6 -kerning first=1184 second=1263 amount=-2 -kerning first=249 second=117 amount=-1 -kerning first=369 second=269 amount=-1 -kerning first=126 second=369 amount=-1 -kerning first=1044 second=332 amount=-1 -kerning first=299 second=216 amount=-2 -kerning first=61 second=1066 amount=-5 -kerning first=58 second=8221 amount=-3 -kerning first=207 second=228 amount=-1 -kerning first=327 second=118 amount=-4 -kerning first=8378 second=71 amount=-2 -kerning first=84 second=916 amount=-6 -kerning first=87 second=240 amount=-3 -kerning first=1202 second=333 amount=-1 -kerning first=253 second=67 amount=-2 -kerning first=166 second=79 amount=-2 -kerning first=276 second=229 amount=-1 -kerning first=1049 second=271 amount=-1 -kerning first=185 second=920 amount=-2 -kerning first=1046 second=963 amount=-2 -kerning first=300 second=371 amount=-1 -kerning first=297 second=1195 amount=-1 -kerning first=205 second=1257 amount=-1 -kerning first=906 second=218 amount=-2 -kerning first=1118 second=346 amount=-1 -kerning first=354 second=230 amount=-2 -kerning first=949 second=120 amount=-1 -kerning first=1203 second=964 amount=-2 -kerning first=1210 second=273 amount=-1 -kerning first=1223 second=45 amount=-2 -kerning first=254 second=242 amount=-1 -kerning first=371 second=947 amount=-4 -kerning first=971 second=287 amount=-1 -kerning first=164 second=945 amount=-1 -kerning first=274 second=1262 amount=-2 -kerning first=8217 second=335 amount=-1 -kerning first=8221 second=97 amount=-1 -kerning first=49 second=268 amount=-2 -kerning first=1063 second=219 amount=-2 -kerning first=301 second=1069 amount=-1 -kerning first=1087 second=361 amount=-1 -kerning first=1095 second=121 amount=-1 -kerning first=89 second=1102 amount=-3 -kerning first=1119 second=1028 amount=-2 -kerning first=1170 second=288 amount=-2 -kerning first=1224 second=220 amount=-2 -kerning first=1026 second=232 amount=-1 -kerning first=53 second=216 amount=-2 -kerning first=1064 second=374 amount=-5 -kerning first=196 second=106 amount=1 -kerning first=76 second=118 amount=-3 -kerning first=1099 second=71 amount=-2 -kerning first=910 second=1071 amount=-2 -kerning first=923 second=83 amount=-1 -kerning first=96 second=283 amount=-1 -kerning first=1176 second=233 amount=-1 -kerning first=356 second=1087 amount=-2 -kerning first=954 second=245 amount=-2 -kerning first=379 second=949 amount=-1 -kerning first=34 second=229 amount=-1 -kerning first=172 second=359 amount=-1 -kerning first=176 second=119 amount=-4 -kerning first=282 second=963 amount=-1 -kerning first=287 second=271 amount=-1 -kerning first=51 second=1195 amount=-1 -kerning first=54 second=371 amount=-1 -kerning first=1071 second=84 amount=-5 -kerning first=194 second=1026 amount=-5 -kerning first=197 second=286 amount=-2 -kerning first=338 second=346 amount=-1 -kerning first=916 second=950 amount=-1 -kerning first=100 second=230 amount=-1 -kerning first=240 second=360 amount=-2 -kerning first=243 second=120 amount=-2 -kerning first=363 second=273 amount=-1 -kerning first=117 second=947 amount=-4 -kerning first=1223 second=8249 amount=-3 -kerning first=35 second=1240 amount=-2 -kerning first=1035 second=335 amount=-1 -kerning first=291 second=219 amount=-2 -kerning first=55 second=1069 amount=-1 -kerning first=61 second=81 amount=-2 -kerning first=1073 second=259 amount=-1 -kerning first=201 second=231 amount=-1 -kerning first=316 second=361 amount=-1 -kerning first=321 second=121 amount=-1 -kerning first=221 second=373 amount=-2 -kerning first=367 second=220 amount=-2 -kerning first=1036 second=966 amount=-2 -kerning first=1039 second=275 amount=-1 -kerning first=182 second=244 amount=-1 -kerning first=294 second=374 amount=-5 -kerning first=199 second=1298 amount=-1 -kerning first=325 second=71 amount=-2 -kerning first=8369 second=249 amount=-1 -kerning first=8364 second=940 amount=-1 -kerning first=900 second=221 amount=-5 -kerning first=85 second=193 amount=-2 -kerning first=222 second=1071 amount=-1 -kerning first=219 second=8230 amount=-1 -kerning first=931 second=1177 amount=-1 -kerning first=105 second=333 amount=-1 -kerning first=965 second=290 amount=-2 -kerning first=125 second=949 amount=-1 -kerning first=161 second=257 amount=-1 -kerning first=40 second=963 amount=-1 -kerning first=43 second=271 amount=-1 -kerning first=301 second=84 amount=-5 -kerning first=203 second=1090 amount=-3 -kerning first=206 second=334 amount=-2 -kerning first=8377 second=199 amount=-2 -kerning first=901 second=376 amount=-5 -kerning first=86 second=346 amount=-1 -kerning first=1116 second=291 amount=-2 -kerning first=934 second=8212 amount=-2 -kerning first=375 second=85 amount=-2 -kerning first=278 second=97 amount=-1 -kerning first=47 second=219 amount=-2 -kerning first=184 second=1108 amount=-1 -kerning first=302 second=259 amount=-1 -kerning first=305 second=34 amount=-3 -kerning first=70 second=121 amount=-1 -kerning first=207 second=965 amount=-1 -kerning first=213 second=46 amount=-1 -kerning first=8378 second=354 amount=-5 -kerning first=8372 second=1118 amount=-1 -kerning first=87 second=1028 amount=-2 -kerning first=90 second=288 amount=-1 -kerning first=948 second=248 amount=-1 -kerning first=113 second=220 amount=-2 -kerning first=1220 second=171 amount=-3 -kerning first=253 second=350 amount=-1 -kerning first=376 second=260 amount=-5 -kerning first=163 second=1176 amount=-1 -kerning first=166 second=362 amount=-2 -kerning first=276 second=966 amount=-1 -kerning first=8220 second=225 amount=-1 -kerning first=48 second=374 amount=-5 -kerning first=45 second=1203 amount=-2 -kerning first=191 second=289 amount=-1 -kerning first=74 second=71 amount=-2 -kerning first=1085 second=940 amount=-1 -kerning first=214 second=221 amount=-5 -kerning first=906 second=953 amount=-1 -kerning first=94 second=233 amount=-1 -kerning first=164 second=8211 amount=-2 -kerning first=55 second=84 amount=-5 -kerning first=195 second=234 amount=-1 -kerning first=75 second=246 amount=-2 -kerning first=215 second=376 amount=-5 -kerning first=1170 second=1098 amount=-3 -kerning first=1178 second=101 amount=-1 -kerning first=1175 second=339 amount=-1 -kerning first=950 second=1117 amount=-2 -kerning first=956 second=113 amount=-1 -kerning first=121 second=85 amount=-2 -kerning first=36 second=97 amount=-1 -kerning first=56 second=259 amount=-1 -kerning first=59 second=34 amount=-3 -kerning first=305 second=8216 amount=-3 -kerning first=8361 second=252 amount=-1 -kerning first=79 second=196 amount=-2 -kerning first=1096 second=1118 amount=-1 -kerning first=1099 second=354 amount=-5 -kerning first=222 second=86 amount=-2 -kerning first=915 second=1184 amount=-5 -kerning first=923 second=366 amount=-2 -kerning first=1176 second=970 amount=-1 -kerning first=1179 second=279 amount=-1 -kerning first=365 second=171 amount=-3 -kerning first=37 second=275 amount=-1 -kerning first=34 second=966 amount=-1 -kerning first=1037 second=225 amount=-1 -kerning first=1068 second=1185 amount=-2 -kerning first=1071 second=367 amount=-1 -kerning first=200 second=337 amount=-1 -kerning first=203 second=99 amount=-1 -kerning first=315 second=940 amount=-1 -kerning first=318 second=249 amount=-1 -kerning first=80 second=351 amount=-1 -kerning first=223 second=261 amount=-1 -kerning first=126 second=210 amount=-2 -kerning first=271 second=100 amount=-1 -kerning first=180 second=352 amount=-1 -kerning first=296 second=262 amount=-2 -kerning first=61 second=364 amount=-2 -kerning first=201 second=968 amount=-1 -kerning first=204 second=277 amount=-1 -kerning first=8366 second=357 amount=-1 -kerning first=8372 second=117 amount=-1 -kerning first=902 second=89 amount=-5 -kerning first=81 second=1035 amount=-2 -kerning first=84 second=291 amount=-2 -kerning first=345 second=339 amount=-1 -kerning first=1194 second=381 amount=-1 -kerning first=250 second=113 amount=-1 -kerning first=247 second=353 amount=-1 -kerning first=160 second=365 amount=-1 -kerning first=1299 second=8221 amount=-3 -kerning first=300 second=212 amount=-2 -kerning first=59 second=8216 amount=-3 -kerning first=1081 second=252 amount=-1 -kerning first=322 second=1118 amount=-1 -kerning first=325 second=354 amount=-5 -kerning first=903 second=266 amount=-2 -kerning first=906 second=39 amount=-3 -kerning first=374 second=213 amount=-3 -kerning first=125 second=8217 amount=-3 -kerning first=971 second=103 amount=-1 -kerning first=1051 second=267 amount=-1 -kerning first=49 second=87 amount=-5 -kerning first=298 second=1185 amount=-3 -kerning first=301 second=367 amount=-1 -kerning first=69 second=249 amount=-1 -kerning first=946 second=356 amount=-5 -kerning first=950 second=116 amount=-1 -kerning first=1219 second=268 amount=-2 -kerning first=375 second=368 amount=-2 -kerning first=168 second=250 amount=-1 -kerning first=165 second=941 amount=-1 -kerning first=47 second=954 amount=-1 -kerning first=50 second=262 amount=-2 -kerning first=190 second=1241 amount=-1 -kerning first=193 second=187 amount=-1 -kerning first=299 second=8220 amount=-3 -kerning first=73 second=199 amount=-2 -kerning first=1096 second=117 amount=-1 -kerning first=216 second=89 amount=-3 -kerning first=910 second=369 amount=-2 -kerning first=93 second=339 amount=-1 -kerning first=1168 second=973 amount=-1 -kerning first=96 second=101 amount=-1 -kerning first=236 second=251 amount=-1 -kerning first=1027 second=228 amount=-1 -kerning first=8220 second=962 amount=-1 -kerning first=54 second=212 amount=-2 -kerning first=1062 second=1194 amount=-1 -kerning first=1065 second=370 amount=-1 -kerning first=197 second=102 amount=-2 -kerning first=306 second=943 amount=-1 -kerning first=74 second=354 amount=-5 -kerning first=926 second=79 amount=-2 -kerning first=94 second=970 amount=-1 -kerning first=952 second=920 amount=-2 -kerning first=1223 second=1195 amount=-1 -kerning first=35 second=225 amount=-1 -kerning first=174 second=355 amount=-1 -kerning first=177 second=115 amount=-1 -kerning first=8240 second=218 amount=-2 -kerning first=52 second=1185 amount=-3 -kerning first=55 second=367 amount=-1 -kerning first=221 second=214 amount=-3 -kerning first=1178 second=1240 amount=-1 -kerning first=121 second=368 amount=-2 -kerning first=53 second=8220 amount=-3 -kerning first=202 second=227 amount=-1 -kerning first=322 second=117 amount=-1 -kerning first=317 second=357 amount=-1 -kerning first=1186 second=332 amount=-1 -kerning first=965 second=106 amount=1 -kerning first=1037 second=962 amount=-1 -kerning first=183 second=240 amount=-1 -kerning first=8250 second=1071 amount=-1 -kerning first=60 second=943 amount=-1 -kerning first=63 second=252 amount=-1 -kerning first=200 second=1256 amount=-2 -kerning first=8370 second=245 amount=-1 -kerning first=901 second=217 amount=-2 -kerning first=220 second=8222 amount=-1 -kerning first=943 second=119 amount=-2 -kerning first=947 second=271 amount=-1 -kerning first=1187 second=963 amount=-1 -kerning first=369 second=371 amount=-1 -kerning first=963 second=1026 amount=-5 -kerning first=162 second=253 amount=-1 -kerning first=1048 second=218 amount=-2 -kerning first=1080 second=360 amount=-2 -kerning first=327 second=242 amount=-1 -kerning first=902 second=372 amount=-5 -kerning first=84 second=1101 amount=-2 -kerning first=1117 second=287 amount=-1 -kerning first=376 second=81 amount=-3 -kerning first=8220 second=46 amount=-1 -kerning first=1049 second=373 amount=-4 -kerning first=88 second=973 amount=-1 -kerning first=1169 second=232 amount=-1 -kerning first=354 second=332 amount=-1 -kerning first=1210 second=374 amount=-5 -kerning first=257 second=106 amount=1 -kerning first=170 second=118 amount=-4 -kerning first=46 second=1194 amount=-1 -kerning first=49 second=370 amount=-2 -kerning first=192 second=283 amount=-1 -kerning first=75 second=67 amount=-3 -kerning first=1095 second=245 amount=-1 -kerning first=215 second=217 amount=-2 -kerning first=912 second=257 amount=-1 -kerning first=95 second=229 amount=-1 -kerning first=238 second=119 amount=-4 -kerning first=358 second=271 amount=-1 -kerning first=255 second=1026 amount=-5 -kerning first=258 second=286 amount=-2 -kerning first=972 second=1090 amount=-1 -kerning first=1026 second=334 amount=-2 -kerning first=8222 second=376 amount=-4 -kerning first=196 second=230 amount=-1 -kerning first=76 second=242 amount=-1 -kerning first=216 second=372 amount=-2 -kerning first=93 second=1262 amount=-2 -kerning first=96 second=1240 amount=-2 -kerning first=1176 second=335 amount=-1 -kerning first=951 second=1108 amount=-1 -kerning first=954 second=347 amount=-1 -kerning first=1263 second=259 amount=-1 -kerning first=1027 second=965 amount=-1 -kerning first=176 second=243 amount=-1 -kerning first=287 second=373 amount=-4 -kerning first=8250 second=86 amount=-2 -kerning first=194 second=1263 amount=-1 -kerning first=341 second=232 amount=-1 -kerning first=916 second=1176 amount=-1 -kerning first=926 second=362 amount=-2 -kerning first=100 second=332 amount=-2 -kerning first=1184 second=275 amount=-2 -kerning first=363 second=374 amount=-5 -kerning first=960 second=289 amount=-1 -kerning first=35 second=962 amount=-1 -kerning first=283 second=8230 amount=-1 -kerning first=296 second=83 amount=-1 -kerning first=8260 second=261 amount=-1 -kerning first=8240 second=953 amount=-1 -kerning first=1073 second=363 amount=-1 -kerning first=201 second=333 amount=-1 -kerning first=321 second=245 amount=-1 -kerning first=221 second=949 amount=-4 -kerning first=339 second=1299 amount=-1 -kerning first=964 second=234 amount=-1 -kerning first=42 second=218 amount=-2 -kerning first=1039 second=376 amount=-5 -kerning first=182 second=346 amount=-1 -kerning first=62 second=360 amount=-2 -kerning first=1074 second=1059 amount=-2 -kerning first=202 second=964 amount=-3 -kerning first=205 second=273 amount=-1 -kerning first=8369 second=353 amount=-1 -kerning first=903 second=85 amount=-2 -kerning first=108 second=219 amount=-2 -kerning first=371 second=259 amount=-1 -kerning first=161 second=361 amount=-1 -kerning first=164 second=121 amount=-1 -kerning first=277 second=46 amount=-1 -kerning first=43 second=373 amount=-4 -kerning first=1037 second=8250 amount=-1 -kerning first=183 second=1028 amount=-2 -kerning first=186 second=288 amount=-2 -kerning first=1083 second=248 amount=-1 -kerning first=209 second=220 amount=-2 -kerning first=89 second=232 amount=-4 -kerning first=232 second=122 amount=-1 -kerning first=355 second=47 amount=-1 -kerning first=1219 second=87 amount=-5 -kerning first=252 second=289 amount=-1 -kerning first=168 second=71 amount=-2 -kerning first=278 second=221 amount=-5 -kerning first=8212 second=379 amount=-2 -kerning first=50 second=83 amount=-1 -kerning first=1048 second=953 amount=-1 -kerning first=190 second=233 amount=-1 -kerning first=302 second=363 amount=-1 -kerning first=299 second=1177 amount=-1 -kerning first=70 second=245 amount=-1 -kerning first=910 second=210 amount=-3 -kerning first=1168 second=338 amount=-2 -kerning first=1171 second=100 amount=-1 -kerning first=948 second=352 amount=-1 -kerning first=1220 second=262 amount=-2 -kerning first=256 second=234 amount=-1 -kerning first=973 second=277 amount=-1 -kerning first=169 second=246 amount=-1 -kerning first=8224 second=89 amount=-5 -kerning first=1065 second=211 amount=-1 -kerning first=303 second=1059 amount=-2 -kerning first=300 second=8212 amount=-2 -kerning first=1097 second=113 amount=-1 -kerning first=94 second=335 amount=-1 -kerning first=117 second=259 amount=-1 -kerning first=288 second=86 amount=-2 -kerning first=8225 second=266 amount=-2 -kerning first=8240 second=39 amount=-3 -kerning first=1063 second=1184 amount=-5 -kerning first=195 second=336 amount=-2 -kerning first=313 second=248 amount=-1 -kerning first=75 second=350 amount=-1 -kerning first=1101 second=63 amount=-2 -kerning first=218 second=260 amount=-2 -kerning first=95 second=966 amount=-1 -kerning first=101 second=47 amount=-1 -kerning first=1224 second=1185 amount=-3 -kerning first=381 second=940 amount=-1 -kerning first=36 second=221 amount=-5 -kerning first=178 second=111 amount=-1 -kerning first=175 second=351 amount=-1 -kerning first=289 second=261 amount=-1 -kerning first=56 second=363 amount=-1 -kerning first=53 second=1177 amount=-1 -kerning first=8361 second=356 amount=-5 -kerning first=8364 second=116 amount=-1 -kerning first=931 second=250 amount=-1 -kerning first=923 second=941 amount=-1 -kerning first=343 second=100 amount=-1 -kerning first=365 second=262 amount=-2 -kerning first=958 second=1241 amount=-1 -kerning first=962 second=187 amount=-1 -kerning first=37 second=376 amount=-5 -kerning first=176 second=1035 amount=-5 -kerning first=179 second=291 amount=-1 -kerning first=1041 second=89 amount=-5 -kerning first=54 second=8212 amount=-2 -kerning first=57 second=1059 amount=-2 -kerning first=318 second=353 amount=-1 -kerning first=323 second=113 amount=-1 -kerning first=223 second=365 amount=-1 -kerning first=369 second=212 amount=-2 -kerning first=966 second=102 amount=-1 -kerning first=271 second=224 amount=-1 -kerning first=35 second=8250 amount=-1 -kerning first=44 second=86 amount=-4 -kerning first=1048 second=39 amount=-3 -kerning first=1044 second=266 amount=-1 -kerning first=291 second=1184 amount=-5 -kerning first=296 second=366 amount=-2 -kerning first=64 second=248 amount=-1 -kerning first=207 second=171 amount=-3 -kerning first=8366 second=920 amount=-2 -kerning first=902 second=213 amount=-2 -kerning first=1117 second=103 amount=-1 -kerning first=944 second=115 amount=-1 -kerning first=1202 second=267 amount=-1 -kerning first=367 second=1185 amount=-3 -kerning first=163 second=249 amount=-1 -kerning first=160 second=940 amount=-1 -kerning first=42 second=953 amount=-1 -kerning first=1049 second=214 amount=-2 -kerning first=68 second=198 amount=-2 -kerning first=1081 second=356 amount=-5 -kerning first=1085 second=116 amount=-1 -kerning first=211 second=88 amount=-3 -kerning first=903 second=368 amount=-2 -kerning first=88 second=338 amount=-3 -kerning first=91 second=100 amount=-1 -kerning first=1118 second=281 amount=-1 -kerning first=251 second=1241 amount=-1 -kerning first=254 second=187 amount=-1 -kerning first=971 second=227 amount=-1 -kerning first=167 second=199 amount=-2 -kerning first=274 second=1079 amount=-1 -kerning first=280 second=89 amount=-5 -kerning first=8217 second=269 amount=-1 -kerning first=49 second=211 amount=-2 -kerning first=1051 second=369 amount=-1 -kerning first=186 second=1098 amount=-3 -kerning first=189 second=339 amount=-1 -kerning first=192 second=101 amount=-1 -kerning first=304 second=251 amount=-1 -kerning first=69 second=353 amount=-1 -kerning first=72 second=113 amount=-1 -kerning first=901 second=8221 amount=-3 -kerning first=904 second=1066 amount=-5 -kerning first=89 second=969 amount=-4 -kerning first=1170 second=228 amount=-1 -kerning first=950 second=240 amount=-1 -kerning first=1206 second=1194 amount=-1 -kerning first=1219 second=370 amount=-2 -kerning first=258 second=102 amount=-2 -kerning first=375 second=943 amount=-1 -kerning first=972 second=382 amount=-1 -kerning first=168 second=354 amount=-5 -kerning first=165 second=1118 amount=-1 -kerning first=8222 second=217 amount=-1 -kerning first=47 second=1184 amount=-5 -kerning first=50 second=366 amount=-2 -kerning first=1067 second=79 amount=-2 -kerning first=193 second=279 amount=-1 -kerning first=190 second=970 amount=-1 -kerning first=76 second=63 amount=-4 -kerning first=915 second=253 amount=-1 -kerning first=1168 second=1257 amount=-1 -kerning first=96 second=225 amount=-1 -kerning first=239 second=115 amount=-1 -kerning first=236 second=355 amount=-1 -kerning first=113 second=1185 amount=-3 -kerning first=169 second=1038 amount=-2 -kerning first=287 second=214 amount=-2 -kerning first=8224 second=372 amount=-5 -kerning first=48 second=8218 amount=-1 -kerning first=1065 second=945 amount=-1 -kerning first=197 second=226 amount=-1 -kerning first=315 second=116 amount=-1 -kerning first=338 second=281 amount=-1 -kerning first=38 second=89 amount=-4 -kerning first=1035 second=269 amount=-1 -kerning first=58 second=251 amount=-1 -kerning first=8363 second=244 amount=-1 -kerning first=215 second=8221 amount=-3 -kerning first=1106 second=106 amount=1 -kerning first=936 second=118 amount=-4 -kerning first=1178 second=962 amount=-1 -kerning first=361 second=1194 amount=-2 -kerning first=124 second=252 amount=-1 -kerning first=121 second=943 amount=-1 -kerning first=1240 second=1044 amount=-1 -kerning first=42 second=39 amount=-3 -kerning first=1039 second=217 amount=-2 -kerning first=297 second=79 amount=-2 -kerning first=1074 second=359 amount=-1 -kerning first=317 second=920 amount=-2 -kerning first=105 second=267 amount=-1 -kerning first=965 second=230 amount=-1 -kerning first=43 second=214 amount=-2 -kerning first=1037 second=947 amount=-4 -kerning first=1041 second=372 amount=-5 -kerning first=179 second=1101 amount=-1 -kerning first=63 second=356 amount=-5 -kerning first=206 second=268 amount=-2 -kerning first=8365 second=1108 amount=-1 -kerning first=8370 second=347 amount=-1 -kerning first=904 second=81 amount=-2 -kerning first=86 second=281 amount=-1 -kerning first=1116 second=231 amount=-2 -kerning first=963 second=1263 amount=-1 -kerning first=162 second=357 amount=-1 -kerning first=165 second=117 amount=-1 -kerning first=44 second=369 amount=-1 -kerning first=184 second=973 amount=-1 -kerning first=1084 second=244 amount=-1 -kerning first=331 second=106 amount=1 -kerning first=8378 second=289 amount=-1 -kerning first=233 second=118 amount=-1 -kerning first=1194 second=8230 amount=-1 -kerning first=1220 second=83 amount=-1 -kerning first=253 second=283 amount=-1 -kerning first=169 second=67 amount=-2 -kerning first=51 second=79 amount=-2 -kerning first=1049 second=949 amount=-1 -kerning first=191 second=229 amount=-1 -kerning first=306 second=119 amount=-4 -kerning first=303 second=359 amount=-1 -kerning first=88 second=1257 amount=-2 -kerning first=1118 second=1090 amount=-3 -kerning first=357 second=218 amount=-2 -kerning first=971 second=964 amount=-3 -kerning first=170 second=242 amount=-1 -kerning first=1028 second=45 amount=-1 -kerning first=277 second=947 amount=-1 -kerning first=280 second=372 amount=-5 -kerning first=8225 second=85 amount=-2 -kerning first=49 second=945 amount=-1 -kerning first=192 second=1240 amount=-2 -kerning first=189 second=1262 amount=-2 -kerning first=1087 second=1108 amount=-1 -kerning first=1095 second=347 amount=-1 -kerning first=912 second=361 amount=-1 -kerning first=1170 second=965 amount=-1 -kerning first=238 second=243 amount=-1 -kerning first=358 second=373 amount=-4 -kerning first=950 second=1028 amount=-2 -kerning first=255 second=1263 amount=-1 -kerning first=1064 second=1176 amount=-1 -kerning first=1067 second=362 amount=-2 -kerning first=196 second=332 amount=-2 -kerning first=314 second=244 amount=-1 -kerning first=1099 second=289 amount=-1 -kerning first=219 second=256 amount=-2 -kerning first=334 second=1298 amount=-1 -kerning first=931 second=71 amount=-2 -kerning first=96 second=962 amount=-1 -kerning first=356 second=8230 amount=-3 -kerning first=365 second=83 amount=-1 -kerning first=958 second=233 amount=-1 -kerning first=1263 second=363 amount=-1 -kerning first=37 second=217 amount=-2 -kerning first=287 second=949 amount=-1 -kerning first=60 second=119 amount=-4 -kerning first=57 second=359 amount=-1 -kerning first=1065 second=8211 amount=-2 -kerning first=197 second=963 amount=-1 -kerning first=200 second=271 amount=-1 -kerning first=77 second=1026 amount=-5 -kerning first=80 second=286 amount=-2 -kerning first=1103 second=234 amount=-1 -kerning first=338 second=1090 amount=-3 -kerning first=934 second=246 amount=-1 -kerning first=103 second=218 amount=-2 -kerning first=366 second=258 amount=-2 -kerning first=123 second=360 amount=-2 -kerning first=1298 second=1059 amount=-2 -kerning first=271 second=45 amount=-2 -kerning first=35 second=947 amount=-4 -kerning first=38 second=372 amount=-5 -kerning first=1028 second=8249 amount=-1 -kerning first=1044 second=85 amount=-1 -kerning first=180 second=287 amount=-1 -kerning first=8260 second=365 amount=-1 -kerning first=204 second=219 amount=-2 -kerning first=316 second=1108 amount=-1 -kerning first=321 second=347 amount=-1 -kerning first=902 second=34 amount=-3 -kerning first=84 second=231 amount=-3 -kerning first=221 second=1175 amount=-2 -kerning first=104 second=373 amount=-1 -kerning first=247 second=288 amount=-2 -kerning first=964 second=336 amount=-2 -kerning first=273 second=220 amount=-2 -kerning first=185 second=232 amount=-1 -kerning first=297 second=362 amount=-2 -kerning first=294 second=1176 amount=-1 -kerning first=65 second=244 amount=-1 -kerning first=205 second=374 amount=-5 -kerning first=325 second=289 amount=-1 -kerning first=1118 second=99 amount=-1 -kerning first=942 second=351 amount=-1 -kerning first=102 second=8230 amount=-2 -kerning first=251 second=233 amount=-1 -kerning first=371 second=363 amount=-1 -kerning first=164 second=245 amount=-1 -kerning first=274 second=375 amount=-1 -kerning first=43 second=949 amount=-1 -kerning first=1051 second=210 amount=-2 -kerning first=1083 second=352 amount=-1 -kerning first=330 second=234 amount=-1 -kerning first=8377 second=1241 amount=-1 -kerning first=904 second=364 amount=-2 -kerning first=86 second=1090 amount=-3 -kerning first=212 second=84 amount=-2 -kerning first=89 second=334 amount=-3 -kerning first=1119 second=277 amount=-1 -kerning first=352 second=376 amount=-2 -kerning first=946 second=291 amount=-1 -kerning first=1219 second=211 amount=-2 -kerning first=369 second=8212 amount=-2 -kerning first=271 second=8249 amount=-3 -kerning first=190 second=335 amount=-1 -kerning first=193 second=97 amount=-1 -kerning first=70 second=347 amount=-1 -kerning first=902 second=8216 amount=-3 -kerning first=1171 second=224 amount=-1 -kerning first=1220 second=366 amount=-2 -kerning first=256 second=336 amount=-2 -kerning first=376 second=937 amount=-2 -kerning first=379 second=248 amount=-1 -kerning first=1027 second=171 amount=-3 -kerning first=169 second=350 amount=-1 -kerning first=8224 second=213 amount=-2 -kerning first=48 second=1176 amount=-1 -kerning first=51 second=362 amount=-2 -kerning first=1062 second=1063 amount=-2 -kerning first=1049 second=8217 amount=-3 -kerning first=191 second=966 amount=-1 -kerning first=194 second=275 amount=-1 -kerning first=74 second=289 amount=-1 -kerning first=338 second=99 amount=-1 -kerning first=916 second=249 amount=-1 -kerning first=237 second=351 amount=-1 -kerning first=240 second=111 amount=-1 -kerning first=357 second=953 amount=-1 -kerning first=117 second=363 amount=-1 -kerning first=974 second=1078 amount=-1 -kerning first=174 second=290 amount=-2 -kerning first=8225 second=368 amount=-2 -kerning first=49 second=8211 amount=-2 -kerning first=78 second=234 amount=-1 -kerning first=928 second=199 amount=-2 -kerning first=238 second=1035 amount=-5 -kerning first=953 second=1098 amount=-2 -kerning first=956 second=339 amount=-1 -kerning first=1299 second=251 amount=-1 -kerning first=1036 second=263 amount=-2 -kerning first=178 second=235 amount=-1 -kerning first=289 second=365 amount=-1 -kerning first=8222 second=8221 amount=-1 -kerning first=8226 second=1066 amount=-5 -kerning first=199 second=377 amount=-1 -kerning first=8364 second=240 amount=-1 -kerning first=343 second=224 amount=-1 -kerning first=923 second=1118 amount=-1 -kerning first=931 second=354 amount=-5 -kerning first=96 second=8250 amount=-1 -kerning first=1195 second=39 amount=-1 -kerning first=1186 second=266 amount=-1 -kerning first=365 second=366 amount=-2 -kerning first=962 second=279 amount=-1 -kerning first=958 second=970 amount=-1 -kerning first=125 second=248 amount=-1 -kerning first=1041 second=213 amount=-2 -kerning first=287 second=8217 amount=-3 -kerning first=206 second=87 amount=-5 -kerning first=86 second=99 amount=-3 -kerning first=223 second=940 amount=-1 -kerning first=934 second=1038 amount=-2 -kerning first=103 second=953 amount=-1 -kerning first=44 second=210 amount=-1 -kerning first=1044 second=368 amount=-1 -kerning first=184 second=338 amount=-2 -kerning first=299 second=250 amount=-1 -kerning first=296 second=941 amount=-1 -kerning first=64 second=352 amount=-1 -kerning first=207 second=262 amount=-2 -kerning first=327 second=187 amount=-1 -kerning first=84 second=968 amount=-2 -kerning first=87 second=277 amount=-3 -kerning first=1117 second=227 amount=-1 -kerning first=247 second=1098 amount=-3 -kerning first=250 second=339 amount=-1 -kerning first=253 second=101 amount=-1 -kerning first=166 second=113 amount=-1 -kerning first=163 second=353 amount=-1 -kerning first=276 second=263 amount=-1 -kerning first=1039 second=8221 amount=-3 -kerning first=1085 second=240 amount=-1 -kerning first=906 second=252 amount=-1 -kerning first=903 second=943 amount=-1 -kerning first=91 second=224 amount=-1 -kerning first=354 second=266 amount=-1 -kerning first=357 second=39 amount=-3 -kerning first=108 second=1184 amount=-5 -kerning first=1223 second=79 amount=-2 -kerning first=251 second=970 amount=-1 -kerning first=254 second=279 amount=-1 -kerning first=280 second=213 amount=-2 -kerning first=43 second=8217 amount=-3 -kerning first=46 second=1063 amount=-3 -kerning first=1063 second=253 amount=-1 -kerning first=192 second=225 amount=-1 -kerning first=304 second=355 amount=-1 -kerning first=209 second=1185 amount=-3 -kerning first=89 second=1220 amount=-3 -kerning first=358 second=214 amount=-2 -kerning first=946 second=1101 amount=-1 -kerning first=1219 second=945 amount=-1 -kerning first=258 second=226 amount=-1 -kerning first=1026 second=268 amount=-2 -kerning first=8218 second=1069 amount=-1 -kerning first=8226 second=81 amount=-2 -kerning first=53 second=250 amount=-1 -kerning first=50 second=941 amount=-1 -kerning first=73 second=1241 amount=-1 -kerning first=915 second=357 amount=-1 -kerning first=923 second=117 amount=-1 -kerning first=93 second=1079 amount=-1 -kerning first=1176 second=269 amount=-1 -kerning first=910 second=1169 amount=-3 -kerning first=356 second=1187 amount=-2 -kerning first=951 second=973 amount=-1 -kerning first=34 second=263 amount=-1 -kerning first=282 second=1066 amount=-5 -kerning first=279 second=8221 amount=-1 -kerning first=1071 second=118 amount=-4 -kerning first=315 second=240 amount=-1 -kerning first=934 second=67 amount=-2 -kerning first=100 second=266 amount=-2 -kerning first=103 second=39 amount=-3 -kerning first=960 second=229 amount=-1 -kerning first=1298 second=359 amount=-1 -kerning first=38 second=213 amount=-2 -kerning first=1035 second=371 amount=-1 -kerning first=180 second=103 amount=-1 -kerning first=291 second=253 amount=-1 -kerning first=58 second=355 amount=-1 -kerning first=61 second=115 amount=-1 -kerning first=1069 second=1046 amount=-3 -kerning first=201 second=267 amount=-1 -kerning first=8363 second=346 amount=-1 -kerning first=339 second=1083 amount=-1 -kerning first=936 second=242 amount=-1 -kerning first=1178 second=947 amount=-2 -kerning first=956 second=1262 amount=-2 -kerning first=124 second=356 amount=-5 -kerning first=160 second=116 amount=-1 -kerning first=1036 second=1069 amount=-2 -kerning first=178 second=972 amount=-1 -kerning first=182 second=281 amount=-1 -kerning first=1046 second=81 amount=-3 -kerning first=8249 second=1175 amount=-1 -kerning first=1078 second=243 amount=-2 -kerning first=8364 second=1028 amount=-2 -kerning first=8369 second=288 amount=-2 -kerning first=105 second=369 amount=-1 -kerning first=965 second=332 amount=-2 -kerning first=274 second=216 amount=-2 -kerning first=40 second=1066 amount=-5 -kerning first=37 second=8221 amount=-3 -kerning first=186 second=228 amount=-1 -kerning first=1047 second=256 amount=-1 -kerning first=301 second=118 amount=-4 -kerning first=203 second=1194 amount=-2 -kerning first=206 second=370 amount=-2 -kerning first=8377 second=233 amount=-1 -kerning first=86 second=382 amount=-2 -kerning first=1116 second=333 amount=-2 -kerning first=947 second=949 amount=-1 -kerning first=252 second=229 amount=-1 -kerning first=375 second=119 amount=-4 -kerning first=972 second=44 amount=-1 -kerning first=162 second=920 amount=-2 -kerning first=271 second=1195 amount=-1 -kerning first=8218 second=84 amount=-5 -kerning first=47 second=253 amount=-1 -kerning first=184 second=1257 amount=-1 -kerning first=1084 second=346 amount=-1 -kerning first=905 second=360 amount=-2 -kerning first=910 second=120 amount=-2 -kerning first=1168 second=273 amount=-1 -kerning first=1171 second=45 amount=-2 -kerning first=1117 second=964 amount=-3 -kerning first=350 second=947 amount=-1 -kerning first=948 second=287 amount=-1 -kerning first=250 second=1262 amount=-2 -kerning first=253 second=1240 amount=-2 -kerning first=973 second=219 amount=-2 -kerning first=276 second=1069 amount=-1 -kerning first=282 second=81 amount=-2 -kerning first=8224 second=34 amount=-3 -kerning first=8220 second=259 amount=-1 -kerning first=306 second=243 amount=-1 -kerning first=1085 second=1028 amount=-2 -kerning first=94 second=269 amount=-1 -kerning first=1174 second=220 amount=-1 -kerning first=952 second=232 amount=-1 -kerning first=1223 second=362 amount=-2 -kerning first=1210 second=1176 amount=-1 -kerning first=1257 second=122 amount=-1 -kerning first=380 second=244 amount=-1 -kerning first=174 second=106 amount=1 -kerning first=55 second=118 amount=-4 -kerning first=192 second=962 amount=-1 -kerning first=75 second=283 amount=-2 -kerning first=358 second=949 amount=-1 -kerning first=361 second=257 amount=-1 -kerning first=1219 second=8211 amount=-2 -kerning first=121 second=119 amount=-4 -kerning first=258 second=963 amount=-1 -kerning first=266 second=44 amount=-1 -kerning first=1240 second=194 amount=-2 -kerning first=175 second=286 amount=-2 -kerning first=171 second=1026 amount=-1 -kerning first=8226 second=364 amount=-2 -kerning first=314 second=346 amount=-1 -kerning first=8361 second=291 amount=-1 -kerning first=216 second=1174 amount=-3 -kerning first=337 second=964 amount=-1 -kerning first=343 second=45 amount=-1 -kerning first=96 second=947 amount=-4 -kerning first=1171 second=8249 amount=-3 -kerning first=1186 second=85 amount=-1 -kerning first=958 second=335 amount=-1 -kerning first=962 second=97 amount=-1 -kerning first=382 second=1108 amount=-1 -kerning first=40 second=81 amount=-2 -kerning first=1041 second=34 amount=-3 -kerning first=1037 second=259 amount=-1 -kerning first=179 second=231 amount=-1 -kerning first=8224 second=8216 amount=-3 -kerning first=60 second=243 amount=-1 -kerning first=200 second=373 amount=-4 -kerning first=318 second=288 amount=-2 -kerning first=315 second=1028 amount=-1 -kerning first=77 second=1263 amount=-1 -kerning first=1100 second=1095 amount=-1 -kerning first=1103 second=336 amount=-2 -kerning first=934 second=350 amount=-1 -kerning first=363 second=1176 amount=-1 -kerning first=966 second=47 amount=-1 -kerning first=960 second=966 amount=-1 -kerning first=126 second=244 amount=-1 -kerning first=963 second=275 amount=-1 -kerning first=268 second=374 amount=-2 -kerning first=263 second=1203 amount=-1 -kerning first=299 second=71 amount=-2 -kerning first=8260 second=940 amount=-1 -kerning first=1080 second=111 amount=-1 -kerning first=207 second=83 amount=-1 -kerning first=84 second=333 amount=-3 -kerning first=107 second=257 amount=-1 -kerning first=1202 second=210 amount=-1 -kerning first=244 second=1299 amount=-1 -kerning first=276 second=84 amount=-5 -kerning first=182 second=1090 amount=-3 -kerning first=185 second=334 amount=-2 -kerning first=300 second=246 amount=-1 -kerning first=65 second=346 amount=-1 -kerning first=1081 second=291 amount=-1 -kerning first=208 second=258 amount=-2 -kerning first=8369 second=1098 amount=-3 -kerning first=900 second=1059 amount=-2 -kerning first=91 second=45 amount=-2 -kerning first=88 second=273 amount=-2 -kerning first=251 second=335 amount=-1 -kerning first=254 second=97 amount=-1 -kerning first=161 second=1108 amount=-1 -kerning first=164 second=347 amount=-1 -kerning first=280 second=34 amount=-3 -kerning first=49 second=121 amount=-1 -kerning first=1041 second=8216 amount=-3 -kerning first=46 second=361 amount=-1 -kerning first=186 second=965 amount=-1 -kerning first=69 second=288 amount=-2 -kerning first=330 second=336 amount=-2 -kerning first=8377 second=970 amount=-1 -kerning first=92 second=220 amount=-2 -kerning first=1170 second=171 amount=-3 -kerning first=1206 second=1063 amount=-2 -kerning first=252 second=966 amount=-1 -kerning first=255 second=275 amount=-1 -kerning first=1026 second=87 amount=-5 -kerning first=168 second=289 amount=-1 -kerning first=8218 second=367 amount=-1 -kerning first=53 second=71 amount=-2 -kerning first=1064 second=249 amount=-1 -kerning first=193 second=221 amount=-5 -kerning first=305 second=351 amount=-1 -kerning first=73 second=233 amount=-1 -kerning first=310 second=111 amount=-2 -kerning first=93 second=375 amount=-1 -kerning first=236 second=290 amount=-2 -kerning first=951 second=338 amount=-2 -kerning first=954 second=100 amount=-2 -kerning first=1220 second=941 amount=-1 -kerning first=376 second=1116 amount=-3 -kerning first=1027 second=262 amount=-2 -kerning first=172 second=234 amount=-1 -kerning first=282 second=364 amount=-2 -kerning first=54 second=246 amount=-1 -kerning first=194 second=376 amount=-5 -kerning first=306 second=1035 amount=-5 -kerning first=311 second=291 amount=-2 -kerning first=1094 second=1098 amount=-2 -kerning first=1097 second=339 amount=-1 -kerning first=214 second=1059 amount=-2 -kerning first=926 second=113 amount=-1 -kerning first=916 second=353 amount=-1 -kerning first=100 second=85 amount=-2 -kerning first=91 second=8249 amount=-3 -kerning first=1184 second=38 amount=-2 -kerning first=240 second=235 amount=-1 -kerning first=35 second=259 amount=-1 -kerning first=38 second=34 amount=-3 -kerning first=1035 second=212 amount=-2 -kerning first=280 second=8216 amount=-3 -kerning first=8240 second=252 amount=-1 -kerning first=8225 second=943 amount=-1 -kerning first=1069 second=354 amount=-2 -kerning first=192 second=8250 amount=-1 -kerning first=78 second=336 amount=-2 -kerning first=221 second=248 amount=-4 -kerning first=339 second=378 amount=-1 -kerning first=342 second=171 amount=-1 -kerning first=358 second=8217 amount=-3 -kerning first=1299 second=355 amount=-1 -kerning first=1033 second=1185 amount=-2 -kerning first=1036 second=367 amount=-1 -kerning first=178 second=337 amount=-1 -kerning first=182 second=99 amount=-1 -kerning first=289 second=940 amount=-1 -kerning first=294 second=249 amount=-1 -kerning first=62 second=111 amount=-1 -kerning first=59 second=351 amount=-1 -kerning first=202 second=261 amount=-1 -kerning first=8361 second=1101 amount=-1 -kerning first=79 second=967 amount=-1 -kerning first=346 second=88 amount=-1 -kerning first=105 second=210 amount=-2 -kerning first=1186 second=368 amount=-1 -kerning first=365 second=941 amount=-1 -kerning first=125 second=352 amount=-1 -kerning first=40 second=364 amount=-2 -kerning first=1034 second=8220 amount=-2 -kerning first=179 second=968 amount=-1 -kerning first=183 second=277 amount=-1 -kerning first=298 second=199 amount=-2 -kerning first=60 second=1035 amount=-5 -kerning first=63 second=291 amount=-1 -kerning first=206 second=211 amount=-2 -kerning first=323 second=339 amount=-1 -kerning first=8365 second=973 amount=-1 -kerning first=318 second=1098 amount=-3 -kerning first=901 second=251 amount=-1 -kerning first=38 second=8216 amount=-3 -kerning first=47 second=74 amount=-3 -kerning first=1048 second=252 amount=-1 -kerning first=299 second=354 amount=-5 -kerning first=296 second=1118 amount=-1 -kerning first=204 second=1184 amount=-5 -kerning first=207 second=366 amount=-2 -kerning first=327 second=279 amount=-1 -kerning first=8378 second=229 amount=-1 -kerning first=87 second=378 amount=-1 -kerning first=233 second=63 amount=-2 -kerning first=948 second=103 amount=-1 -kerning first=104 second=8217 amount=-1 -kerning first=253 second=225 amount=-1 -kerning first=376 second=115 amount=-3 -kerning first=273 second=1185 amount=-3 -kerning first=276 second=367 amount=-1 -kerning first=48 second=249 amount=-1 -kerning first=300 second=1038 amount=-2 -kerning first=1081 second=1101 amount=-1 -kerning first=906 second=356 amount=-5 -kerning first=167 second=1241 amount=-1 -kerning first=170 second=187 amount=-1 -kerning first=274 second=8220 amount=-3 -kerning first=52 second=199 amount=-2 -kerning first=1063 second=357 amount=-1 -kerning first=189 second=1079 amount=-1 -kerning first=195 second=89 amount=-5 -kerning first=72 second=339 amount=-1 -kerning first=1087 second=973 amount=-1 -kerning first=69 second=1098 amount=-3 -kerning first=75 second=101 amount=-2 -kerning first=215 second=251 amount=-1 -kerning first=95 second=263 amount=-1 -kerning first=381 second=240 amount=-1 -kerning first=1026 second=370 amount=-2 -kerning first=53 second=354 amount=-5 -kerning first=50 second=1118 amount=-1 -kerning first=196 second=266 amount=-2 -kerning first=73 second=970 amount=-1 -kerning first=1099 second=229 amount=-1 -kerning first=76 second=279 amount=-1 -kerning first=915 second=920 amount=-2 -kerning first=1171 second=1195 amount=-1 -kerning first=1176 second=371 amount=-1 -kerning first=951 second=1257 amount=-1 -kerning first=1256 second=1046 amount=-3 -kerning first=8230 second=360 amount=-1 -kerning first=8250 second=120 amount=-2 -kerning first=54 second=1038 amount=-2 -kerning first=1071 second=242 amount=-1 -kerning first=200 second=214 amount=-2 -kerning first=1068 second=923 amount=-1 -kerning first=80 second=226 amount=-1 -kerning first=223 second=116 amount=-1 -kerning first=100 second=368 amount=-2 -kerning first=240 second=972 amount=-1 -kerning first=180 second=227 amount=-1 -kerning first=296 second=117 amount=-1 -kerning first=291 second=357 amount=-1 -kerning first=201 second=369 amount=-1 -kerning first=316 second=973 amount=-1 -kerning first=8366 second=232 amount=-1 -kerning first=81 second=381 amount=-1 -kerning first=98 second=8221 amount=-1 -kerning first=1194 second=256 amount=-1 -kerning first=247 second=228 amount=-1 -kerning first=160 second=240 amount=-1 -kerning first=42 second=252 amount=-1 -kerning first=178 second=1256 amount=-2 -kerning first=300 second=67 amount=-2 -kerning first=199 second=8222 amount=-1 -kerning first=325 second=229 amount=-1 -kerning first=900 second=359 amount=-1 -kerning first=903 second=119 amount=-4 -kerning first=1107 second=963 amount=-1 -kerning first=343 second=1195 amount=-1 -kerning first=942 second=286 amount=-2 -kerning first=108 second=253 amount=-1 -kerning first=968 second=218 amount=-2 -kerning first=8211 second=258 amount=-2 -kerning first=1041 second=1174 amount=-2 -kerning first=301 second=242 amount=-1 -kerning first=63 second=1101 amount=-1 -kerning first=1083 second=287 amount=-1 -kerning first=206 second=945 amount=-1 -kerning first=323 second=1262 amount=-2 -kerning first=8377 second=335 amount=-1 -kerning first=89 second=268 amount=-3 -kerning first=1119 second=219 amount=-2 -kerning first=946 second=231 amount=-1 -kerning first=1219 second=121 amount=-1 -kerning first=375 second=243 amount=-1 -kerning first=47 second=357 amount=-1 -kerning first=50 second=117 amount=-1 -kerning first=190 second=269 amount=-1 -kerning first=1090 second=232 amount=-1 -kerning first=8378 second=966 amount=-1 -kerning first=93 second=216 amount=-2 -kerning first=910 second=244 amount=-4 -kerning first=1168 second=374 amount=-5 -kerning first=236 second=106 amount=1 -kerning first=356 second=256 amount=-6 -kerning first=253 second=962 amount=-1 -kerning first=1027 second=83 amount=-1 -kerning first=169 second=283 amount=-1 -kerning first=54 second=67 amount=-2 -kerning first=1065 second=245 amount=-1 -kerning first=194 second=217 amount=-2 -kerning first=74 second=229 amount=-1 -kerning first=214 second=359 amount=-1 -kerning first=94 second=371 amount=-1 -kerning first=91 second=1195 amount=-1 -kerning first=237 second=286 amount=-2 -kerning first=952 second=334 amount=-2 -kerning first=260 second=218 amount=-2 -kerning first=1028 second=258 amount=-1 -kerning first=174 second=230 amount=-1 -kerning first=55 second=242 amount=-1 -kerning first=192 second=947 amount=-4 -kerning first=195 second=372 amount=-5 -kerning first=313 second=287 amount=-1 -kerning first=72 second=1262 amount=-2 -kerning first=75 second=1240 amount=-3 -kerning first=912 second=1108 amount=-1 -kerning first=95 second=1069 amount=-1 -kerning first=361 second=361 amount=-1 -kerning first=961 second=46 amount=-1 -kerning first=121 second=243 amount=-1 -kerning first=261 second=373 amount=-1 -kerning first=381 second=1028 amount=-1 -kerning first=317 second=232 amount=-1 -kerning first=1099 second=966 amount=-1 -kerning first=1107 second=47 amount=-2 -kerning first=337 second=1203 amount=-2 -kerning first=340 second=374 amount=-2 -kerning first=931 second=289 amount=-1 -kerning first=962 second=221 amount=-5 -kerning first=1037 second=363 amount=-1 -kerning first=179 second=333 amount=-1 -kerning first=200 second=949 amount=-1 -kerning first=203 second=257 amount=-1 -kerning first=8365 second=338 amount=-2 -kerning first=8370 second=100 amount=-1 -kerning first=80 second=963 amount=-1 -kerning first=86 second=44 amount=-4 -kerning first=243 second=1090 amount=-1 -kerning first=369 second=246 amount=-1 -kerning first=963 second=376 amount=-5 -kerning first=126 second=346 amount=-1 -kerning first=38 second=1174 amount=-2 -kerning first=41 second=360 amount=-2 -kerning first=1035 second=8212 amount=-2 -kerning first=184 second=273 amount=-1 -kerning first=180 second=964 amount=-3 -kerning first=64 second=287 amount=-1 -kerning first=1080 second=235 amount=-1 -kerning first=327 second=97 amount=-1 -kerning first=353 second=34 amount=-1 -kerning first=247 second=965 amount=-1 -kerning first=160 second=1028 amount=-2 -kerning first=163 second=288 amount=-2 -kerning first=1049 second=248 amount=-1 -kerning first=188 second=220 amount=-2 -kerning first=300 second=350 amount=-1 -kerning first=205 second=1176 amount=-1 -kerning first=325 second=966 amount=-1 -kerning first=332 second=47 amount=-1 -kerning first=1203 second=940 amount=-1 -kerning first=1210 second=249 amount=-1 -kerning first=254 second=221 amount=-5 -kerning first=374 second=351 amount=-3 -kerning first=377 second=111 amount=-1 -kerning first=971 second=261 amount=-1 -kerning first=968 second=953 amount=-1 -kerning first=167 second=233 amount=-1 -kerning first=274 second=1177 amount=-1 -kerning first=49 second=245 amount=-1 -kerning first=189 second=375 amount=-1 -kerning first=304 second=290 amount=-2 -kerning first=1087 second=338 amount=-2 -kerning first=206 second=8211 amount=-2 -kerning first=1095 second=100 amount=-1 -kerning first=95 second=84 amount=-5 -kerning first=1170 second=262 amount=-2 -kerning first=946 second=968 amount=-1 -kerning first=950 second=277 amount=-1 -kerning first=1224 second=199 amount=-2 -kerning first=255 second=376 amount=-5 -kerning first=375 second=1035 amount=-5 -kerning first=1026 second=211 amount=-2 -kerning first=278 second=1059 amount=-2 -kerning first=8222 second=251 amount=-1 -kerning first=1064 second=353 amount=-1 -kerning first=1067 second=113 amount=-1 -kerning first=196 second=85 amount=-2 -kerning first=310 second=235 amount=-2 -kerning first=70 second=1094 amount=-1 -kerning first=73 second=335 amount=-1 -kerning first=334 second=377 amount=-1 -kerning first=96 second=259 amount=-1 -kerning first=1176 second=212 amount=-2 -kerning first=99 second=34 amount=-1 -kerning first=353 second=8216 amount=-1 -kerning first=954 second=224 amount=-1 -kerning first=1220 second=1118 amount=-1 -kerning first=253 second=8250 amount=-1 -kerning first=1256 second=354 amount=-2 -kerning first=262 second=86 amount=-1 -kerning first=973 second=1184 amount=-5 -kerning first=1027 second=366 amount=-2 -kerning first=172 second=336 amount=-2 -kerning first=287 second=248 amount=-1 -kerning first=54 second=350 amount=-1 -kerning first=74 second=966 amount=-1 -kerning first=80 second=47 amount=-3 -kerning first=77 second=275 amount=-1 -kerning first=220 second=197 amount=-2 -kerning first=335 second=1076 amount=-1 -kerning first=1174 second=1185 amount=-2 -kerning first=240 second=337 amount=-1 -kerning first=363 second=249 amount=-1 -kerning first=120 second=351 amount=-1 -kerning first=123 second=111 amount=-1 -kerning first=260 second=953 amount=-1 -kerning first=35 second=363 amount=-1 -kerning first=8240 second=356 amount=-5 -kerning first=8260 second=116 amount=-1 -kerning first=58 second=290 amount=-2 -kerning first=201 second=210 amount=-2 -kerning first=316 second=338 amount=-2 -kerning first=321 second=100 amount=-1 -kerning first=8363 second=281 amount=-1 -kerning first=1101 second=380 amount=-1 -kerning first=221 second=352 amount=-1 -kerning first=928 second=1241 amount=-1 -kerning first=936 second=187 amount=-1 -kerning first=367 second=199 amount=-2 -kerning first=956 second=1079 amount=-1 -kerning first=964 second=89 amount=-5 -kerning first=121 second=1035 amount=-5 -kerning first=124 second=291 amount=-1 -kerning first=36 second=1059 amount=-2 -kerning first=1039 second=251 amount=-1 -kerning first=294 second=353 amount=-1 -kerning first=297 second=113 amount=-1 -kerning first=62 second=235 amount=-1 -kerning first=202 second=365 amount=-1 -kerning first=8369 second=228 amount=-1 -kerning first=99 second=8216 amount=-1 -kerning first=365 second=1118 amount=-1 -kerning first=965 second=266 amount=-2 -kerning first=968 second=39 amount=-3 -kerning first=43 second=248 amount=-1 -kerning first=186 second=171 amount=-3 -kerning first=1083 second=103 amount=-1 -kerning first=200 second=8217 amount=-3 -kerning first=8365 second=1257 amount=-1 -kerning first=904 second=115 amount=-1 -kerning first=901 second=355 amount=-1 -kerning first=86 second=324 amount=-2 -kerning first=1116 second=267 amount=-2 -kerning first=369 second=1038 amount=-2 -kerning first=268 second=8218 amount=-1 -kerning first=47 second=198 amount=-5 -kerning first=1048 second=356 amount=-5 -kerning first=70 second=100 amount=-1 -kerning first=1080 second=972 amount=-1 -kerning first=1084 second=281 amount=-1 -kerning first=207 second=941 amount=-1 -kerning first=87 second=954 amount=-2 -kerning first=910 second=65 amount=-5 -kerning first=90 second=262 amount=-1 -kerning first=948 second=227 amount=-1 -kerning first=113 second=199 amount=-2 -kerning first=1220 second=117 amount=-1 -kerning first=250 second=1079 amount=-1 -kerning first=256 second=89 amount=-5 -kerning first=163 second=1098 amount=-3 -kerning first=166 second=339 amount=-1 -kerning first=169 second=101 amount=-1 -kerning first=51 second=113 amount=-1 -kerning first=48 second=353 amount=-1 -kerning first=194 second=38 amount=-1 -kerning first=191 second=263 amount=-1 -kerning first=94 second=212 amount=-2 -kerning first=1118 second=1194 amount=-2 -kerning first=357 second=252 amount=-1 -kerning first=260 second=39 amount=-3 -kerning first=167 second=970 amount=-1 -kerning first=170 second=279 amount=-1 -kerning first=8225 second=119 amount=-4 -kerning first=1063 second=920 amount=-2 -kerning first=195 second=213 amount=-2 -kerning first=313 second=103 amount=-1 -kerning first=75 second=225 amount=-1 -kerning first=1087 second=1257 amount=-1 -kerning first=215 second=355 amount=-1 -kerning first=92 second=1185 amount=-3 -kerning first=95 second=367 amount=-1 -kerning first=1026 second=945 amount=-1 -kerning first=175 second=226 amount=-1 -kerning first=286 second=356 amount=-1 -kerning first=289 second=116 amount=-1 -kerning first=196 second=368 amount=-2 -kerning first=314 second=281 amount=-1 -kerning first=8361 second=231 amount=-1 -kerning first=310 second=972 amount=-2 -kerning first=222 second=65 amount=-2 -kerning first=93 second=8220 amount=-3 -kerning first=365 second=117 amount=-1 -kerning first=958 second=269 amount=-1 -kerning first=37 second=251 amount=-1 -kerning first=194 second=8221 amount=-3 -kerning first=197 second=1066 amount=-5 -kerning first=318 second=228 amount=-1 -kerning first=220 second=916 amount=-2 -kerning first=223 second=240 amount=-1 -kerning first=338 second=1194 amount=-2 -kerning first=934 second=283 amount=-1 -kerning first=103 second=252 amount=-1 -kerning first=100 second=943 amount=-1 -kerning first=240 second=1256 amount=-2 -kerning first=243 second=382 amount=-1 -kerning first=369 second=67 amount=-2 -kerning first=963 second=217 amount=-2 -kerning first=271 second=79 amount=-2 -kerning first=1044 second=119 amount=-2 -kerning first=291 second=920 amount=-2 -kerning first=64 second=103 amount=-1 -kerning first=1073 second=1026 amount=-5 -kerning first=204 second=253 amount=-1 -kerning first=316 second=1257 amount=-1 -kerning first=8366 second=334 amount=-2 -kerning first=8363 second=1090 amount=-3 -kerning first=84 second=267 amount=-3 -kerning first=244 second=1083 amount=-1 -kerning first=964 second=372 amount=-5 -kerning first=961 second=947 amount=-1 -kerning first=124 second=1101 amount=-1 -kerning first=42 second=356 amount=-5 -kerning first=185 second=268 amount=-2 -kerning first=62 second=972 amount=-1 -kerning first=65 second=281 amount=-1 -kerning first=1081 second=231 amount=-1 -kerning first=8369 second=965 amount=-1 -kerning first=903 second=243 amount=-1 -kerning first=108 second=357 amount=-1 -kerning first=251 second=269 amount=-1 -kerning first=161 second=973 amount=-1 -kerning first=1051 second=244 amount=-1 -kerning first=189 second=216 amount=-2 -kerning first=304 second=106 amount=1 -kerning first=69 second=228 amount=-1 -kerning first=908 second=193 amount=-2 -kerning first=86 second=1194 amount=-2 -kerning first=1170 second=83 amount=-1 -kerning first=946 second=333 amount=-1 -kerning first=1219 second=245 amount=-1 -kerning first=255 second=217 amount=-2 -kerning first=168 second=229 amount=-1 -kerning first=278 second=359 amount=-1 -kerning first=281 second=119 amount=-1 -kerning first=8212 second=1051 amount=-4 -kerning first=47 second=920 amount=-2 -kerning first=190 second=371 amount=-1 -kerning first=302 second=1026 amount=-5 -kerning first=305 second=286 amount=-2 -kerning first=1084 second=1090 amount=-3 -kerning first=210 second=1046 amount=-3 -kerning first=910 second=346 amount=-1 -kerning first=236 second=230 amount=-1 -kerning first=951 second=273 amount=-1 -kerning first=948 second=964 amount=-3 -kerning first=954 second=45 amount=-3 -kerning first=253 second=947 amount=-4 -kerning first=256 second=372 amount=-5 -kerning first=166 second=1262 amount=-2 -kerning first=169 second=1240 amount=-2 -kerning first=1062 second=1108 amount=-1 -kerning first=191 second=1069 amount=-1 -kerning first=197 second=81 amount=-2 -kerning first=311 second=231 amount=-2 -kerning first=332 second=1202 amount=-3 -kerning first=335 second=373 amount=-1 -kerning first=916 second=288 amount=-2 -kerning first=955 second=220 amount=-2 -kerning first=174 second=332 amount=-2 -kerning first=58 second=106 amount=1 -kerning first=8363 second=99 amount=-1 -kerning first=75 second=962 amount=-2 -kerning first=221 second=193 amount=-5 -kerning first=336 second=1071 amount=-1 -kerning first=333 second=8230 amount=-1 -kerning first=928 second=233 amount=-1 -kerning first=956 second=375 amount=-1 -kerning first=1299 second=290 amount=-2 -kerning first=36 second=359 amount=-1 -kerning first=1026 second=8211 amount=-2 -kerning first=175 second=963 amount=-1 -kerning first=178 second=271 amount=-1 -kerning first=56 second=1026 amount=-5 -kerning first=59 second=286 amount=-2 -kerning first=1074 second=234 amount=-1 -kerning first=314 second=1090 amount=-3 -kerning first=317 second=334 amount=-2 -kerning first=8361 second=968 amount=-1 -kerning first=8364 second=277 amount=-1 -kerning first=1176 second=8212 amount=-2 -kerning first=242 second=964 amount=-1 -kerning first=965 second=85 amount=-2 -kerning first=125 second=287 amount=-1 -kerning first=183 second=219 amount=-2 -kerning first=63 second=231 amount=-1 -kerning first=203 second=361 amount=-1 -kerning first=206 second=121 amount=-1 -kerning first=318 second=965 amount=-1 -kerning first=8370 second=224 amount=-1 -kerning first=80 second=1202 amount=-2 -kerning first=83 second=373 amount=-1 -kerning first=223 second=1028 amount=-2 -kerning first=947 second=248 amount=-1 -kerning first=249 second=220 amount=-2 -kerning first=369 second=350 amount=-1 -kerning first=372 second=110 amount=-2 -kerning first=162 second=232 amount=-1 -kerning first=268 second=1176 amount=1 -kerning first=271 second=362 amount=-2 -kerning first=275 second=122 amount=-1 -kerning first=184 second=374 amount=-5 -kerning first=299 second=289 amount=-1 -kerning first=1080 second=337 amount=-1 -kerning first=1084 second=99 amount=-1 -kerning first=327 second=221 amount=-5 -kerning first=902 second=351 amount=-1 -kerning first=905 second=111 amount=-1 -kerning first=81 second=8230 amount=-1 -kerning first=1117 second=261 amount=-1 -kerning first=250 second=375 amount=-1 -kerning first=1049 second=352 amount=-1 -kerning first=191 second=84 amount=-5 -kerning first=303 second=234 amount=-1 -kerning first=65 second=1090 amount=-3 -kerning first=1081 second=968 amount=-1 -kerning first=1085 second=277 amount=-1 -kerning first=903 second=1035 amount=-5 -kerning first=88 second=950 amount=-2 -kerning first=906 second=291 amount=-1 -kerning first=1210 second=353 amount=-1 -kerning first=1223 second=113 amount=-1 -kerning first=377 second=235 amount=-1 -kerning first=971 second=365 amount=-1 -kerning first=167 second=335 amount=-1 -kerning first=170 second=97 amount=-1 -kerning first=49 second=347 amount=-1 -kerning first=192 second=259 amount=-1 -kerning first=195 second=34 amount=-3 -kerning first=69 second=965 amount=-1 -kerning first=1095 second=224 amount=-1 -kerning first=336 second=86 amount=-2 -kerning first=1119 second=1184 amount=-5 -kerning first=1170 second=366 amount=-2 -kerning first=358 second=248 amount=-1 -kerning first=112 second=1113 amount=-1 -kerning first=168 second=966 amount=-1 -kerning first=8226 second=115 amount=-1 -kerning first=8222 second=355 amount=-1 -kerning first=53 second=289 amount=-1 -kerning first=310 second=337 amount=-2 -kerning first=314 second=99 amount=-1 -kerning first=76 second=221 amount=-6 -kerning first=93 second=1177 amount=-1 -kerning first=96 second=363 amount=-1 -kerning first=362 second=198 amount=-2 -kerning first=1027 second=941 amount=-1 -kerning first=287 second=352 amount=-1 -kerning first=8250 second=65 amount=-3 -kerning first=57 second=234 amount=-1 -kerning first=1071 second=187 amount=-1 -kerning first=197 second=364 amount=-2 -kerning first=315 second=277 amount=-1 -kerning first=77 second=376 amount=-5 -kerning first=1103 second=89 amount=-5 -kerning first=916 second=1098 amount=-3 -kerning first=926 second=339 amount=-1 -kerning first=94 second=8212 amount=-2 -kerning first=934 second=101 amount=-1 -kerning first=1184 second=251 amount=-1 -kerning first=363 second=353 amount=-1 -kerning first=960 second=263 amount=-1 -kerning first=123 second=235 amount=-1 -kerning first=8260 second=240 amount=-1 -kerning first=195 second=8216 amount=-3 -kerning first=321 second=224 amount=-1 -kerning first=75 second=8250 amount=-2 -kerning first=928 second=970 amount=-1 -kerning first=936 second=279 amount=-1 -kerning first=244 second=378 amount=-1 -kerning first=247 second=171 amount=-3 -kerning first=964 second=213 amount=-2 -kerning first=261 second=8217 amount=-1 -kerning first=1039 second=355 amount=-1 -kerning first=1046 second=115 amount=-1 -kerning first=185 second=87 amount=-5 -kerning first=62 second=337 amount=-1 -kerning first=65 second=99 amount=-1 -kerning first=202 second=940 amount=-1 -kerning first=205 second=249 amount=-1 -kerning first=942 second=226 amount=-1 -kerning first=245 second=1078 amount=-2 -kerning first=965 second=368 amount=-2 -kerning first=161 second=338 amount=-2 -kerning first=164 second=100 amount=-1 -kerning first=274 second=250 amount=-1 -kerning first=43 second=352 amount=-1 -kerning first=186 second=262 amount=-2 -kerning first=298 second=1241 amount=-1 -kerning first=301 second=187 amount=-1 -kerning first=63 second=968 amount=-1 -kerning first=1083 second=227 amount=-1 -kerning first=209 second=199 amount=-2 -kerning first=323 second=1079 amount=-1 -kerning first=8377 second=269 amount=-1 -kerning first=330 second=89 amount=-5 -kerning first=89 second=211 amount=-3 -kerning first=226 second=1098 amount=-1 -kerning first=252 second=263 amount=-1 -kerning first=963 second=8221 amount=-3 -kerning first=8218 second=118 amount=-2 -kerning first=190 second=212 amount=-2 -kerning first=70 second=224 amount=-1 -kerning first=1080 second=1256 amount=-2 -kerning first=207 second=1118 amount=-1 -kerning first=210 second=354 amount=-2 -kerning first=1171 second=79 amount=-2 -kerning first=256 second=213 amount=-2 -kerning first=376 second=341 amount=-3 -kerning first=973 second=253 amount=-1 -kerning first=169 second=225 amount=-1 -kerning first=282 second=115 amount=-1 -kerning first=188 second=1185 amount=-3 -kerning first=191 second=367 amount=-1 -kerning first=906 second=1101 amount=-1 -kerning first=1169 second=945 amount=-1 -kerning first=237 second=226 amount=-1 -kerning first=357 second=356 amount=-5 -kerning first=952 second=268 amount=-2 -kerning first=377 second=972 amount=-1 -kerning first=380 second=281 amount=-1 -kerning first=8225 second=243 amount=-1 -kerning first=52 second=1241 amount=-1 -kerning first=55 second=187 amount=-1 -kerning first=189 second=8220 amount=-3 -kerning first=78 second=89 amount=-5 -kerning first=72 second=1079 amount=-1 -kerning first=912 second=973 amount=-1 -kerning first=956 second=216 amount=-2 -kerning first=258 second=1066 amount=-5 -kerning first=255 second=8221 amount=-3 -kerning first=1299 second=106 amount=1 -kerning first=1036 second=118 amount=-3 -kerning first=289 second=240 amount=-1 -kerning first=8249 second=193 amount=-1 -kerning first=196 second=943 amount=-1 -kerning first=310 second=1256 amount=-3 -kerning first=8361 second=333 amount=-1 -kerning first=334 second=8222 amount=-1 -kerning first=931 second=229 amount=-1 -kerning first=1186 second=119 amount=-2 -kerning first=954 second=1195 amount=-2 -kerning first=958 second=371 amount=-1 -kerning first=125 second=103 amount=-1 -kerning first=1263 second=1026 amount=-5 -kerning first=382 second=1257 amount=-1 -kerning first=37 second=355 amount=-1 -kerning first=40 second=115 amount=-1 -kerning first=1034 second=1046 amount=-2 -kerning first=179 second=267 amount=-1 -kerning first=8250 second=346 amount=-1 -kerning first=8365 second=273 amount=-1 -kerning first=8370 second=45 amount=-2 -kerning first=1103 second=372 amount=-5 -kerning first=341 second=945 amount=-1 -kerning first=926 second=1262 amount=-2 -kerning first=934 second=1240 amount=-2 -kerning first=103 second=356 amount=-5 -kerning first=960 second=1069 amount=-1 -kerning first=123 second=972 amount=-1 -kerning first=126 second=281 amount=-1 -kerning first=1044 second=243 amount=-1 -kerning first=8260 second=1028 amount=-2 -kerning first=64 second=227 amount=-1 -kerning first=1073 second=1263 amount=-1 -kerning first=207 second=117 amount=-1 -kerning first=204 second=357 amount=-1 -kerning first=8372 second=220 amount=-2 -kerning first=84 second=369 amount=-2 -kerning first=1202 second=244 amount=-1 -kerning first=250 second=216 amount=-2 -kerning first=163 second=228 amount=-1 -kerning first=276 second=118 amount=-4 -kerning first=182 second=1194 amount=-2 -kerning first=185 second=370 amount=-2 -kerning first=300 second=283 amount=-1 -kerning first=62 second=1256 amount=-2 -kerning first=1081 second=333 amount=-1 -kerning first=91 second=79 amount=-2 -kerning first=1118 second=257 amount=-1 -kerning first=354 second=119 amount=-2 -kerning first=942 second=963 amount=-1 -kerning first=108 second=920 amount=-2 -kerning first=251 second=371 amount=-1 -kerning first=371 second=1026 amount=-5 -kerning first=374 second=286 amount=-3 -kerning first=161 second=1257 amount=-1 -kerning first=8217 second=246 amount=-1 -kerning first=1051 second=346 amount=-1 -kerning first=304 second=230 amount=-1 -kerning first=1087 second=273 amount=-1 -kerning first=1095 second=45 amount=-2 -kerning first=1083 second=964 amount=-3 -kerning first=326 second=947 amount=-1 -kerning first=330 second=372 amount=-5 -kerning first=8370 second=8249 amount=-3 -kerning first=89 second=945 amount=-4 -kerning first=950 second=219 amount=-2 -kerning first=1206 second=1108 amount=-1 -kerning first=1219 second=347 amount=-1 -kerning first=252 second=1069 amount=-1 -kerning first=258 second=81 amount=-2 -kerning first=378 second=231 amount=-1 -kerning first=969 second=1175 amount=-1 -kerning first=1026 second=121 amount=-1 -kerning first=47 second=1102 amount=-1 -kerning first=1064 second=288 amount=-2 -kerning first=302 second=1263 amount=-1 -kerning first=73 second=269 amount=-1 -kerning first=1096 second=220 amount=-2 -kerning first=915 second=232 amount=-1 -kerning first=1168 second=1176 amount=-1 -kerning first=1171 second=362 amount=-2 -kerning first=236 second=332 amount=-2 -kerning first=951 second=374 amount=-5 -kerning first=376 second=1298 amount=-5 -kerning first=169 second=962 amount=-1 -kerning first=8224 second=351 amount=-1 -kerning first=54 second=283 amount=-1 -kerning first=57 second=55 amount=-1 -kerning first=311 second=333 amount=-2 -kerning first=77 second=217 amount=-2 -kerning first=338 second=257 amount=-1 -kerning first=100 second=119 amount=-4 -kerning first=237 second=963 amount=-1 -kerning first=240 second=271 amount=-1 -kerning first=243 second=44 amount=-1 -kerning first=960 second=84 amount=-5 -kerning first=117 second=1026 amount=-5 -kerning first=1298 second=234 amount=-1 -kerning first=1035 second=246 amount=-1 -kerning first=177 second=218 amount=-2 -kerning first=8225 second=1035 amount=-5 -kerning first=8240 second=291 amount=-1 -kerning first=58 second=230 amount=-1 -kerning first=198 second=360 amount=-2 -kerning first=321 second=45 amount=-2 -kerning first=316 second=273 amount=-1 -kerning first=78 second=372 amount=-5 -kerning first=1095 second=8249 amount=-3 -kerning first=75 second=947 amount=-3 -kerning first=221 second=287 amount=-4 -kerning first=928 second=335 amount=-1 -kerning first=936 second=97 amount=-1 -kerning first=361 second=1108 amount=-1 -kerning first=964 second=34 amount=-3 -kerning first=124 second=231 amount=-1 -kerning first=39 second=243 amount=-1 -kerning first=178 second=373 amount=-4 -kerning first=289 second=1028 amount=-2 -kerning first=294 second=288 amount=-2 -kerning first=56 second=1263 amount=-1 -kerning first=1074 second=336 amount=-2 -kerning first=322 second=220 amount=-2 -kerning first=8369 second=171 amount=-3 -kerning first=931 second=966 amount=-1 -kerning first=105 second=244 amount=-1 -kerning first=242 second=1203 amount=-2 -kerning first=274 second=71 amount=-2 -kerning first=1041 second=351 amount=-1 -kerning first=186 second=83 amount=-1 -kerning first=298 second=233 amount=-1 -kerning first=63 second=333 amount=-1 -kerning first=206 second=245 amount=-1 -kerning first=323 second=375 amount=-1 -kerning first=901 second=290 amount=-2 -kerning first=86 second=257 amount=-1 -kerning first=341 second=8211 amount=-1 -kerning first=252 second=84 amount=-5 -kerning first=372 second=234 amount=-3 -kerning first=162 second=334 amount=-2 -kerning first=126 second=1090 amount=-3 -kerning first=1048 second=291 amount=-1 -kerning first=1044 second=1035 amount=-2 -kerning first=187 second=258 amount=-3 -kerning first=70 second=45 amount=-2 -kerning first=64 second=964 amount=-3 -kerning first=321 second=8249 amount=-3 -kerning first=8378 second=263 amount=-1 -kerning first=905 second=235 amount=-1 -kerning first=1117 second=365 amount=-1 -kerning first=107 second=1108 amount=-2 -kerning first=113 second=109 amount=2 -kerning first=253 second=259 amount=-1 -kerning first=256 second=34 amount=-3 -kerning first=964 second=8216 amount=-3 -kerning first=163 second=965 amount=-1 -kerning first=48 second=288 amount=-2 -kerning first=303 second=336 amount=-2 -kerning first=332 second=260 amount=-2 -kerning first=91 second=362 amount=-2 -kerning first=88 second=1176 amount=-2 -kerning first=952 second=87 amount=-5 -kerning first=114 second=289 amount=-1 -kerning first=374 second=1096 amount=-3 -kerning first=377 second=337 amount=-1 -kerning first=380 second=99 amount=-1 -kerning first=971 second=940 amount=-1 -kerning first=170 second=221 amount=-5 -kerning first=280 second=351 amount=-1 -kerning first=52 second=233 amount=-1 -kerning first=192 second=363 amount=-1 -kerning first=189 second=1177 amount=-1 -kerning first=72 second=375 amount=-1 -kerning first=215 second=290 amount=-2 -kerning first=912 second=338 amount=-2 -kerning first=89 second=8211 amount=-4 -kerning first=1170 second=941 amount=-1 -kerning first=358 second=352 amount=-1 -kerning first=950 second=954 amount=-2 -kerning first=118 second=234 amount=-1 -kerning first=1224 second=1241 amount=-1 -kerning first=258 second=364 amount=-2 -kerning first=381 second=277 amount=-1 -kerning first=171 second=376 amount=-2 -kerning first=1067 second=339 amount=-1 -kerning first=190 second=8212 amount=-2 -kerning first=193 second=1059 amount=-2 -kerning first=1064 second=1098 amount=-3 -kerning first=70 second=8249 amount=-3 -kerning first=1099 second=263 amount=-1 -kerning first=958 second=212 amount=-2 -kerning first=256 second=8216 amount=-3 -kerning first=1027 second=1118 amount=-1 -kerning first=1034 second=354 amount=-5 -kerning first=169 second=8250 amount=-1 -kerning first=57 second=336 amount=-2 -kerning first=1071 second=279 amount=-1 -kerning first=200 second=248 amount=-1 -kerning first=318 second=171 amount=-3 -kerning first=80 second=260 amount=-4 -kerning first=1103 second=213 amount=-2 -kerning first=335 second=8217 amount=-1 -kerning first=934 second=225 amount=-1 -kerning first=1184 second=355 amount=-1 -kerning first=955 second=1185 amount=-3 -kerning first=960 second=367 amount=-1 -kerning first=123 second=337 amount=-1 -kerning first=126 second=99 amount=-1 -kerning first=41 second=111 amount=-1 -kerning first=1035 second=1038 amount=-2 -kerning first=38 second=351 amount=-1 -kerning first=180 second=261 amount=-1 -kerning first=177 second=953 amount=-1 -kerning first=8240 second=1101 amount=-1 -kerning first=8366 second=268 amount=-2 -kerning first=84 second=210 amount=-1 -kerning first=221 second=1097 amount=-3 -kerning first=247 second=262 amount=-2 -kerning first=367 second=1241 amount=-1 -kerning first=956 second=8220 amount=-3 -kerning first=124 second=968 amount=-1 -kerning first=160 second=277 amount=-1 -kerning first=273 second=199 amount=-2 -kerning first=42 second=291 amount=-1 -kerning first=185 second=211 amount=-2 -kerning first=297 second=339 amount=-1 -kerning first=300 second=101 amount=-1 -kerning first=294 second=1098 amount=-3 -kerning first=205 second=353 amount=-1 -kerning first=325 second=263 amount=-1 -kerning first=1102 second=8221 amount=-1 -kerning first=1203 second=240 amount=-1 -kerning first=251 second=212 amount=-2 -kerning first=965 second=943 amount=-1 -kerning first=968 second=252 amount=-1 -kerning first=164 second=224 amount=-1 -kerning first=274 second=354 amount=-5 -kerning first=183 second=1184 amount=-5 -kerning first=186 second=366 amount=-2 -kerning first=301 second=279 amount=-1 -kerning first=298 second=970 amount=-1 -kerning first=69 second=171 amount=-3 -kerning first=330 second=213 amount=-2 -kerning first=8370 second=1195 amount=-1 -kerning first=8377 second=371 amount=-1 -kerning first=1119 second=253 amount=-1 -kerning first=946 second=267 amount=-1 -kerning first=252 second=367 amount=-1 -kerning first=249 second=1185 amount=-3 -kerning first=8212 second=923 amount=-2 -kerning first=1048 second=1101 amount=-1 -kerning first=305 second=226 amount=-1 -kerning first=8378 second=1069 amount=-1 -kerning first=905 second=972 amount=-1 -kerning first=93 second=250 amount=-1 -kerning first=910 second=281 amount=-4 -kerning first=90 second=941 amount=-1 -kerning first=233 second=380 amount=-1 -kerning first=113 second=1241 amount=-1 -kerning first=250 second=8220 amount=-3 -kerning first=1027 second=117 amount=-1 -kerning first=973 second=357 amount=-1 -kerning first=166 second=1079 amount=-1 -kerning first=172 second=89 amount=-5 -kerning first=48 second=1098 amount=-3 -kerning first=51 second=339 amount=-1 -kerning first=54 second=101 amount=-1 -kerning first=194 second=251 amount=-1 -kerning first=74 second=263 amount=-1 -kerning first=332 second=1066 amount=-2 -kerning first=328 second=8221 amount=-1 -kerning first=916 second=228 amount=-1 -kerning first=952 second=370 amount=-2 -kerning first=260 second=252 amount=-1 -kerning first=377 second=1256 amount=-1 -kerning first=1035 second=67 amount=-2 -kerning first=174 second=266 amount=-2 -kerning first=177 second=39 amount=-3 -kerning first=55 second=279 amount=-1 -kerning first=52 second=970 amount=-1 -kerning first=78 second=213 amount=-2 -kerning first=1095 second=1195 amount=-1 -kerning first=221 second=103 amount=-4 -kerning first=912 second=1257 amount=-1 -kerning first=1299 second=230 amount=-1 -kerning first=1033 second=923 amount=-1 -kerning first=1036 second=242 amount=-2 -kerning first=178 second=214 amount=-2 -kerning first=59 second=226 amount=-1 -kerning first=1067 second=1262 amount=-2 -kerning first=199 second=356 amount=-1 -kerning first=202 second=116 amount=-1 -kerning first=317 second=268 amount=-2 -kerning first=8364 second=219 amount=-2 -kerning first=1099 second=1069 amount=-1 -kerning first=1186 second=243 amount=-1 -kerning first=1263 second=1263 amount=-1 -kerning first=125 second=227 amount=-1 -kerning first=179 second=369 amount=-1 -kerning first=323 second=216 amount=-2 -kerning first=8365 second=374 amount=-5 -kerning first=77 second=8221 amount=-3 -kerning first=80 second=1066 amount=-5 -kerning first=901 second=106 amount=1 -kerning first=347 second=118 amount=-1 -kerning first=934 second=962 amount=-1 -kerning first=369 second=283 amount=-1 -kerning first=123 second=1256 amount=-2 -kerning first=268 second=1044 amount=-1 -kerning first=299 second=229 amount=-1 -kerning first=1076 second=963 amount=-1 -kerning first=1080 second=271 amount=-1 -kerning first=204 second=920 amount=-2 -kerning first=321 second=1195 amount=-1 -kerning first=8378 second=84 amount=-5 -kerning first=902 second=286 amount=-2 -kerning first=87 second=253 amount=-1 -kerning first=944 second=218 amount=-2 -kerning first=373 second=230 amount=-1 -kerning first=967 second=360 amount=-2 -kerning first=276 second=242 amount=-1 -kerning first=42 second=1101 amount=-1 -kerning first=1049 second=287 amount=-1 -kerning first=185 second=945 amount=-1 -kerning first=300 second=1240 amount=-2 -kerning first=297 second=1262 amount=-2 -kerning first=1085 second=219 amount=-2 -kerning first=325 second=1069 amount=-1 -kerning first=906 second=231 amount=-1 -kerning first=1114 second=1175 amount=-2 -kerning first=1118 second=361 amount=-1 -kerning first=354 second=243 amount=-3 -kerning first=945 second=373 amount=-2 -kerning first=1210 second=288 amount=-2 -kerning first=371 second=1263 amount=-1 -kerning first=167 second=269 amount=-1 -kerning first=46 second=973 amount=-1 -kerning first=1063 second=232 amount=-1 -kerning first=304 second=332 amount=-2 -kerning first=72 second=216 amount=-2 -kerning first=1087 second=374 amount=-5 -kerning first=215 second=106 amount=1 -kerning first=95 second=118 amount=-4 -kerning first=1224 second=233 amount=-1 -kerning first=378 second=333 amount=-1 -kerning first=1026 second=245 amount=-1 -kerning first=8222 second=290 amount=-1 -kerning first=53 second=229 amount=-1 -kerning first=196 second=119 amount=-4 -kerning first=193 second=359 amount=-1 -kerning first=305 second=963 amount=-1 -kerning first=310 second=271 amount=-2 -kerning first=70 second=1195 amount=-1 -kerning first=73 second=371 amount=-1 -kerning first=1099 second=84 amount=-5 -kerning first=213 second=1026 amount=-2 -kerning first=915 second=334 amount=-2 -kerning first=910 second=1090 amount=-2 -kerning first=1176 second=246 amount=-1 -kerning first=239 second=218 amount=-2 -kerning first=356 second=1107 amount=-2 -kerning first=119 second=230 amount=-1 -kerning first=382 second=273 amount=-1 -kerning first=34 second=242 amount=-1 -kerning first=169 second=947 amount=-4 -kerning first=172 second=372 amount=-5 -kerning first=287 second=287 amount=-1 -kerning first=54 second=1240 amount=-2 -kerning first=51 second=1262 amount=-2 -kerning first=1071 second=97 amount=-1 -kerning first=315 second=219 amount=-1 -kerning first=74 second=1069 amount=-1 -kerning first=80 second=81 amount=-2 -kerning first=1103 second=34 amount=-3 -kerning first=335 second=1175 amount=-2 -kerning first=338 second=361 amount=-1 -kerning first=916 second=965 amount=-1 -kerning first=100 second=243 amount=-1 -kerning first=240 second=373 amount=-4 -kerning first=363 second=288 amount=-2 -kerning first=117 second=1263 amount=-1 -kerning first=1298 second=336 amount=-2 -kerning first=1035 second=350 amount=-1 -kerning first=291 second=232 amount=-1 -kerning first=58 second=332 amount=-2 -kerning first=1073 second=275 amount=-1 -kerning first=201 second=244 amount=-1 -kerning first=316 second=374 amount=-5 -kerning first=8366 second=87 amount=-5 -kerning first=81 second=256 amount=-2 -kerning first=218 second=1298 amount=-1 -kerning first=936 second=221 amount=-5 -kerning first=1185 second=351 amount=-1 -kerning first=247 second=83 amount=-1 -kerning first=367 second=233 amount=-1 -kerning first=956 second=1177 amount=-1 -kerning first=124 second=333 amount=-1 -kerning first=1039 second=290 amount=-2 -kerning first=178 second=949 amount=-1 -kerning first=182 second=257 amount=-1 -kerning first=59 second=963 amount=-1 -kerning first=62 second=271 amount=-1 -kerning first=325 second=84 amount=-5 -kerning first=8369 second=262 amount=-2 -kerning first=900 second=234 amount=-1 -kerning first=937 second=376 amount=-2 -kerning first=105 second=346 amount=-1 -kerning first=1186 second=1035 amount=-2 -kerning first=958 second=8212 amount=-2 -kerning first=962 second=1059 amount=-2 -kerning first=161 second=273 amount=-1 -kerning first=164 second=45 amount=-2 -kerning first=125 second=964 amount=-3 -kerning first=43 second=287 amount=-1 -kerning first=298 second=335 amount=-1 -kerning first=301 second=97 amount=-1 -kerning first=203 second=1108 amount=-1 -kerning first=206 second=347 amount=-1 -kerning first=330 second=34 amount=-3 -kerning first=8377 second=212 amount=-2 -kerning first=86 second=361 amount=-1 -kerning first=1103 second=8216 amount=-3 -kerning first=83 second=1175 amount=-1 -kerning first=89 second=121 amount=-2 -kerning first=232 second=46 amount=-1 -kerning first=352 second=196 amount=-1 -kerning first=934 second=8250 amount=-1 -kerning first=372 second=336 amount=-2 -kerning first=165 second=220 amount=-2 -kerning first=47 second=232 amount=-2 -kerning first=184 second=1176 amount=-1 -kerning first=299 second=966 amount=-1 -kerning first=302 second=275 amount=-1 -kerning first=67 second=374 amount=-2 -kerning first=8372 second=1185 amount=-3 -kerning first=8378 second=367 amount=-1 -kerning first=905 second=337 amount=-1 -kerning first=910 second=99 amount=-4 -kerning first=93 second=71 amount=-2 -kerning first=1168 second=249 amount=-1 -kerning first=1117 second=940 amount=-1 -kerning first=356 second=111 amount=-3 -kerning first=944 second=953 amount=-1 -kerning first=948 second=261 amount=-1 -kerning first=113 second=233 amount=-1 -kerning first=250 second=1177 amount=-1 -kerning first=253 second=363 amount=-1 -kerning first=166 second=375 amount=-1 -kerning first=1062 second=338 amount=-1 -kerning first=185 second=8211 amount=-2 -kerning first=1065 second=100 amount=-1 -kerning first=74 second=84 amount=-5 -kerning first=214 second=234 amount=-1 -kerning first=906 second=968 amount=-1 -kerning first=94 second=246 amount=-1 -kerning first=1174 second=199 amount=-1 -kerning first=357 second=291 amount=-1 -kerning first=952 second=211 amount=-2 -kerning first=1223 second=339 amount=-1 -kerning first=251 second=8212 amount=-2 -kerning first=254 second=1059 amount=-2 -kerning first=1210 second=1098 amount=-3 -kerning first=164 second=8249 amount=-3 -kerning first=174 second=85 amount=-2 -kerning first=52 second=335 amount=-1 -kerning first=55 second=97 amount=-1 -kerning first=75 second=259 amount=-1 -kerning first=78 second=34 amount=-3 -kerning first=330 second=8216 amount=-3 -kerning first=1170 second=1118 amount=-1 -kerning first=950 second=1184 amount=-5 -kerning first=1224 second=970 amount=-1 -kerning first=1036 second=63 amount=-2 -kerning first=53 second=966 amount=-1 -kerning first=56 second=275 amount=-1 -kerning first=199 second=197 amount=-1 -kerning first=317 second=87 amount=-5 -kerning first=8361 second=267 amount=-1 -kerning first=1099 second=367 amount=-1 -kerning first=1096 second=1185 amount=-3 -kerning first=1176 second=1038 amount=-2 -kerning first=239 second=953 amount=-1 -kerning first=102 second=111 amount=-1 -kerning first=37 second=290 amount=-2 -kerning first=179 second=210 amount=-2 -kerning first=200 second=352 amount=-1 -kerning first=318 second=262 amount=-2 -kerning first=80 second=364 amount=-2 -kerning first=223 second=277 amount=-1 -kerning first=926 second=1079 amount=-1 -kerning first=100 second=1035 amount=-5 -kerning first=103 second=291 amount=-1 -kerning first=363 second=1098 amount=-3 -kerning first=369 second=101 amount=-1 -kerning first=963 second=251 amount=-1 -kerning first=271 second=113 amount=-1 -kerning first=41 second=235 amount=-1 -kerning first=180 second=365 amount=-1 -kerning first=8363 second=1194 amount=-2 -kerning first=8366 second=370 amount=-2 -kerning first=902 second=102 amount=-2 -kerning first=78 second=8216 amount=-3 -kerning first=87 second=74 amount=-3 -kerning first=944 second=39 amount=-3 -kerning first=247 second=366 amount=-2 -kerning first=367 second=970 amount=-1 -kerning first=163 second=171 amount=-3 -kerning first=178 second=8217 amount=-3 -kerning first=1049 second=103 amount=-1 -kerning first=300 second=225 amount=-1 -kerning first=68 second=87 amount=-2 -kerning first=1081 second=267 amount=-1 -kerning first=322 second=1185 amount=-3 -kerning first=325 second=367 amount=-1 -kerning first=88 second=249 amount=-1 -kerning first=245 second=8218 amount=-1 -kerning first=374 second=226 amount=-4 -kerning first=968 second=356 amount=-5 -kerning first=971 second=116 amount=-1 -kerning first=49 second=100 amount=-1 -kerning first=1051 second=281 amount=-1 -kerning first=189 second=250 amount=-1 -kerning first=186 second=941 amount=-1 -kerning first=46 second=338 amount=-1 -kerning first=69 second=262 amount=-2 -kerning first=209 second=1241 amount=-1 -kerning first=323 second=8220 amount=-3 -kerning first=92 second=199 amount=-2 -kerning first=1119 second=357 amount=-1 -kerning first=1170 second=117 amount=-1 -kerning first=946 second=369 amount=-1 -kerning first=109 second=1098 amount=-1 -kerning first=255 second=251 amount=-1 -kerning first=372 second=1224 amount=-2 -kerning first=168 second=263 amount=-1 -kerning first=1241 second=8221 amount=-1 -kerning first=8222 second=106 amount=2 -kerning first=1064 second=228 amount=-1 -kerning first=73 second=212 amount=-2 -kerning first=1084 second=1194 amount=-2 -kerning first=905 second=1256 amount=-2 -kerning first=910 second=382 amount=-2 -kerning first=93 second=354 amount=-5 -kerning first=1176 second=67 amount=-2 -kerning first=236 second=266 amount=-2 -kerning first=239 second=39 amount=-3 -kerning first=113 second=970 amount=-1 -kerning first=376 second=1081 amount=-3 -kerning first=973 second=920 amount=-2 -kerning first=172 second=213 amount=-2 -kerning first=287 second=103 amount=-1 -kerning first=8224 second=286 amount=-2 -kerning first=8230 second=56 amount=-1 -kerning first=54 second=225 amount=-1 -kerning first=1062 second=1257 amount=-1 -kerning first=194 second=355 amount=-1 -kerning first=197 second=115 amount=-1 -kerning first=311 second=267 amount=-2 -kerning first=74 second=367 amount=-1 -kerning first=94 second=1038 amount=-2 -kerning first=240 second=214 amount=-2 -kerning first=357 second=1101 amount=-1 -kerning first=952 second=945 amount=-1 -kerning first=1223 second=1262 amount=-2 -kerning first=120 second=226 amount=-1 -kerning first=260 second=356 amount=-5 -kerning first=174 second=368 amount=-2 -kerning first=8240 second=231 amount=-1 -kerning first=72 second=8220 amount=-3 -kerning first=221 second=227 amount=-4 -kerning first=928 second=269 amount=-1 -kerning first=361 second=973 amount=-1 -kerning first=1299 second=332 amount=-2 -kerning first=1039 second=106 amount=1 -kerning first=175 second=1066 amount=-5 -kerning first=294 second=228 amount=-1 -kerning first=202 second=240 amount=-1 -kerning first=199 second=916 amount=-1 -kerning first=314 second=1194 amount=-2 -kerning first=317 second=370 amount=-2 -kerning first=8369 second=83 amount=-1 -kerning first=965 second=119 amount=-4 -kerning first=962 second=359 amount=-1 -kerning first=43 second=103 amount=-1 -kerning first=1037 second=1026 amount=-5 -kerning first=1041 second=286 amount=-2 -kerning first=183 second=253 amount=-1 -kerning first=63 second=267 amount=-1 -kerning first=901 second=230 amount=-1 -kerning first=934 second=947 amount=-4 -kerning first=103 second=1101 amount=-1 -kerning first=947 second=287 amount=-1 -kerning first=369 second=1240 amount=-2 -kerning first=162 second=268 amount=-2 -kerning first=41 second=972 amount=-1 -kerning first=1048 second=231 amount=-1 -kerning first=1080 second=373 amount=-4 -kerning first=84 second=1169 amount=-2 -kerning first=1207 second=232 amount=-1 -kerning first=166 second=216 amount=-2 -kerning first=8216 second=289 amount=-1 -kerning first=48 second=228 amount=-1 -kerning first=191 second=118 amount=-4 -kerning first=300 second=962 amount=-1 -kerning first=65 second=1194 amount=-2 -kerning first=906 second=333 amount=-1 -kerning first=94 second=67 amount=-2 -kerning first=1169 second=245 amount=-1 -kerning first=354 second=345 amount=-2 -kerning first=114 second=229 amount=-1 -kerning first=254 second=359 amount=-1 -kerning first=257 second=119 amount=-1 -kerning first=374 second=963 amount=-4 -kerning first=377 second=271 amount=-1 -kerning first=164 second=1195 amount=-1 -kerning first=167 second=371 amount=-1 -kerning first=280 second=286 amount=-2 -kerning first=8221 second=234 amount=-1 -kerning first=1051 second=1090 amount=-3 -kerning first=1063 second=334 amount=-2 -kerning first=215 second=230 amount=-1 -kerning first=8377 second=8212 amount=-2 -kerning first=912 second=273 amount=-1 -kerning first=95 second=242 amount=-1 -kerning first=232 second=947 amount=-1 -kerning first=358 second=287 amount=-1 -kerning first=1224 second=335 amount=-1 -kerning first=1026 second=347 amount=-1 -kerning first=168 second=1069 amount=-1 -kerning first=175 second=81 amount=-2 -kerning first=1064 second=965 amount=-1 -kerning first=1070 second=46 amount=-1 -kerning first=196 second=243 amount=-1 -kerning first=310 second=373 amount=-3 -kerning first=923 second=220 amount=-2 -kerning first=1176 second=350 amount=-1 -kerning first=951 second=1176 amount=-1 -kerning first=1263 second=275 amount=-1 -kerning first=37 second=106 amount=1 -kerning first=54 second=962 amount=-1 -kerning first=1071 second=221 amount=-5 -kerning first=318 second=83 amount=-1 -kerning first=341 second=245 amount=-1 -kerning first=926 second=375 amount=-1 -kerning first=1184 second=290 amount=-3 -kerning first=240 second=949 amount=-1 -kerning first=952 second=8211 amount=-2 -kerning first=123 second=271 amount=-1 -kerning first=120 second=963 amount=-2 -kerning first=268 second=194 amount=-1 -kerning first=35 second=1026 amount=-5 -kerning first=38 second=286 amount=-2 -kerning first=291 second=334 amount=-2 -kerning first=8240 second=968 amount=-1 -kerning first=8260 second=277 amount=-1 -kerning first=61 second=218 amount=-2 -kerning first=1073 second=376 amount=-5 -kerning first=201 second=346 amount=-1 -kerning first=8366 second=211 amount=-2 -kerning first=84 second=120 amount=-1 -kerning first=221 second=964 amount=-2 -kerning first=367 second=335 amount=-1 -kerning first=160 second=219 amount=-2 -kerning first=42 second=231 amount=-1 -kerning first=182 second=361 amount=-1 -kerning first=185 second=121 amount=-1 -kerning first=294 second=965 amount=-1 -kerning first=62 second=373 amount=-4 -kerning first=202 second=1028 amount=-2 -kerning first=205 second=288 amount=-2 -kerning first=8364 second=1184 amount=-5 -kerning first=8369 second=366 amount=-2 -kerning first=900 second=336 amount=-2 -kerning first=108 second=232 amount=-1 -kerning first=371 second=275 amount=-1 -kerning first=374 second=47 amount=-4 -kerning first=161 second=374 amount=-5 -kerning first=270 second=1033 amount=-1 -kerning first=274 second=289 amount=-1 -kerning first=1051 second=99 amount=-1 -kerning first=189 second=71 amount=-2 -kerning first=301 second=221 amount=-5 -kerning first=69 second=83 amount=-1 -kerning first=1083 second=261 amount=-1 -kerning first=209 second=233 amount=-1 -kerning first=323 second=1177 amount=-1 -kerning first=89 second=245 amount=-4 -kerning first=946 second=210 amount=-2 -kerning first=1219 second=100 amount=-1 -kerning first=1206 second=338 amount=-1 -kerning first=168 second=84 amount=-5 -kerning first=278 second=234 amount=-1 -kerning first=47 second=334 amount=-2 -kerning first=1048 second=968 amount=-1 -kerning first=190 second=246 amount=-1 -kerning first=44 second=1090 amount=-3 -kerning first=302 second=376 amount=-5 -kerning first=70 second=258 amount=-4 -kerning first=327 second=1059 amount=-2 -kerning first=1171 second=113 amount=-1 -kerning first=1168 second=353 amount=-1 -kerning first=236 second=85 amount=-2 -kerning first=356 second=235 amount=-3 -kerning first=948 second=365 amount=-1 -kerning first=113 second=335 amount=-1 -kerning first=169 second=259 amount=-1 -kerning first=172 second=34 amount=-3 -kerning first=48 second=965 amount=-1 -kerning first=54 second=46 amount=-1 -kerning first=300 second=8250 amount=-1 -kerning first=1085 second=1184 amount=-5 -kerning first=214 second=336 amount=-2 -kerning first=916 second=171 amount=-3 -kerning first=94 second=350 amount=-1 -kerning first=117 second=275 amount=-1 -kerning first=114 second=966 amount=-1 -kerning first=55 second=221 amount=-5 -kerning first=195 second=351 amount=-1 -kerning first=198 second=111 amount=-1 -kerning first=72 second=1177 amount=-1 -kerning first=75 second=363 amount=-1 -kerning first=361 second=338 amount=-2 -kerning first=956 second=250 amount=-1 -kerning first=36 second=234 amount=-1 -kerning first=1036 second=187 amount=-2 -kerning first=175 second=364 amount=-2 -kerning first=289 second=277 amount=-1 -kerning first=56 second=376 amount=-5 -kerning first=1067 second=1079 amount=-1 -kerning first=196 second=1035 amount=-5 -kerning first=1074 second=89 amount=-5 -kerning first=317 second=211 amount=-2 -kerning first=8361 second=369 amount=-1 -kerning first=73 second=8212 amount=-2 -kerning first=76 second=1059 amount=-1 -kerning first=343 second=113 amount=-1 -kerning first=931 second=263 amount=-1 -kerning first=102 second=235 amount=-1 -kerning first=172 second=8216 amount=-3 -kerning first=8230 second=1256 amount=-1 -kerning first=8250 second=382 amount=-1 -kerning first=54 second=8250 amount=-1 -kerning first=315 second=1184 amount=-6 -kerning first=318 second=366 amount=-2 -kerning first=8370 second=79 amount=-2 -kerning first=347 second=63 amount=-2 -kerning first=240 second=8217 amount=-3 -kerning first=947 second=103 amount=-1 -kerning first=369 second=225 amount=-1 -kerning first=963 second=355 amount=-1 -kerning first=162 second=87 amount=-5 -kerning first=41 second=337 amount=-1 -kerning first=184 second=249 amount=-1 -kerning first=180 second=940 amount=-1 -kerning first=64 second=261 amount=-1 -kerning first=1080 second=214 amount=-2 -kerning first=61 second=953 amount=-1 -kerning first=8366 second=945 amount=-1 -kerning first=902 second=226 amount=-1 -kerning first=87 second=198 amount=-5 -kerning first=1117 second=116 amount=-1 -kerning first=1202 second=281 amount=-1 -kerning first=250 second=250 amount=-1 -kerning first=247 second=941 amount=-1 -kerning first=163 second=262 amount=-2 -kerning first=273 second=1241 amount=-1 -kerning first=276 second=187 amount=-1 -kerning first=42 second=968 amount=-1 -kerning first=1049 second=227 amount=-1 -kerning first=188 second=199 amount=-2 -kerning first=297 second=1079 amount=-1 -kerning first=303 second=89 amount=-5 -kerning first=1081 second=369 amount=-1 -kerning first=205 second=1098 amount=-3 -kerning first=88 second=353 amount=-1 -kerning first=91 second=113 amount=-1 -kerning first=942 second=1066 amount=-5 -kerning first=1210 second=228 amount=-1 -kerning first=377 second=90 amount=1 -kerning first=971 second=240 amount=-1 -kerning first=167 second=212 amount=-2 -kerning first=8217 second=283 amount=-1 -kerning first=49 second=224 amount=-1 -kerning first=189 second=354 amount=-5 -kerning first=186 second=1118 amount=-1 -kerning first=304 second=266 amount=-2 -kerning first=66 second=1184 amount=-1 -kerning first=69 second=366 amount=-2 -kerning first=1095 second=79 amount=-2 -kerning first=209 second=970 amount=-1 -kerning first=1119 second=920 amount=-2 -kerning first=358 second=103 amount=-1 -kerning first=950 second=253 amount=-1 -kerning first=1206 second=1257 amount=-1 -kerning first=255 second=355 amount=-1 -kerning first=258 second=115 amount=-1 -kerning first=378 second=267 amount=-1 -kerning first=168 second=367 amount=-1 -kerning first=165 second=1185 amount=-3 -kerning first=47 second=1220 amount=-1 -kerning first=190 second=1038 amount=-2 -kerning first=310 second=214 amount=-3 -kerning first=67 second=8218 amount=-1 -kerning first=1090 second=945 amount=-1 -kerning first=334 second=356 amount=-2 -kerning first=915 second=268 amount=-2 -kerning first=236 second=368 amount=-2 -kerning first=356 second=972 amount=-3 -kerning first=262 second=65 amount=-1 -kerning first=166 second=8220 amount=-3 -kerning first=287 second=227 amount=-1 -kerning first=51 second=1079 amount=-1 -kerning first=57 second=89 amount=-5 -kerning first=77 second=251 amount=-1 -kerning first=926 second=216 amount=-2 -kerning first=234 second=8221 amount=-1 -kerning first=237 second=1066 amount=-5 -kerning first=363 second=228 amount=-1 -kerning first=960 second=118 amount=-4 -kerning first=1035 second=283 amount=-1 -kerning first=174 second=943 amount=-1 -kerning first=177 second=252 amount=-1 -kerning first=8240 second=333 amount=-1 -kerning first=58 second=266 amount=-2 -kerning first=61 second=39 amount=-3 -kerning first=1073 second=217 amount=-2 -kerning first=321 second=79 amount=-2 -kerning first=8363 second=257 amount=-1 -kerning first=1106 second=119 amount=-1 -kerning first=221 second=328 amount=-3 -kerning first=928 second=371 amount=-1 -kerning first=1178 second=1026 amount=-2 -kerning first=361 second=1257 amount=-1 -kerning first=124 second=267 amount=-1 -kerning first=1039 second=230 amount=-1 -kerning first=62 second=214 amount=-2 -kerning first=1074 second=372 amount=-5 -kerning first=317 second=945 amount=-1 -kerning first=931 second=1069 amount=-1 -kerning first=942 second=81 amount=-2 -kerning first=102 second=972 amount=-1 -kerning first=105 second=281 amount=-1 -kerning first=965 second=243 amount=-1 -kerning first=43 second=227 amount=-1 -kerning first=1037 second=1263 amount=-1 -kerning first=183 second=357 amount=-1 -kerning first=186 second=117 amount=-1 -kerning first=298 second=269 amount=-1 -kerning first=63 second=369 amount=-1 -kerning first=203 second=973 amount=-1 -kerning first=8365 second=1176 amount=-1 -kerning first=8370 second=362 amount=-2 -kerning first=901 second=332 amount=-2 -kerning first=1116 second=244 amount=-2 -kerning first=352 second=106 amount=1 -kerning first=252 second=118 amount=-4 -kerning first=369 second=962 amount=-1 -kerning first=126 second=1194 amount=-2 -kerning first=162 second=370 amount=-2 -kerning first=41 second=1256 amount=-2 -kerning first=1048 second=333 amount=-1 -kerning first=190 second=67 amount=-2 -kerning first=302 second=217 amount=-2 -kerning first=70 second=79 amount=-1 -kerning first=1080 second=949 amount=-1 -kerning first=1084 second=257 amount=-1 -kerning first=327 second=359 amount=-1 -kerning first=8366 second=8211 amount=-2 -kerning first=331 second=119 amount=-1 -kerning first=902 second=963 amount=-1 -kerning first=905 second=271 amount=-1 -kerning first=87 second=920 amount=-2 -kerning first=910 second=44 amount=-4 -kerning first=350 second=1026 amount=-1 -kerning first=107 second=1257 amount=-2 -kerning first=1202 second=1090 amount=-2 -kerning first=1049 second=964 amount=-3 -kerning first=191 second=242 amount=-1 -kerning first=1065 second=45 amount=-2 -kerning first=1062 second=273 amount=-1 -kerning first=300 second=947 amount=-4 -kerning first=303 second=372 amount=-5 -kerning first=1118 second=1108 amount=-1 -kerning first=237 second=81 amount=-2 -kerning first=357 second=231 amount=-1 -kerning first=952 second=121 amount=-1 -kerning first=1210 second=965 amount=-1 -kerning first=1257 second=46 amount=-1 -kerning first=971 second=1028 amount=-2 -kerning first=52 second=269 amount=-1 -kerning first=1087 second=1176 amount=-1 -kerning first=1095 second=362 amount=-2 -kerning first=215 second=332 amount=-2 -kerning first=912 second=374 amount=-5 -kerning first=956 second=71 amount=-2 -kerning first=56 second=217 amount=-2 -kerning first=1067 second=375 amount=-1 -kerning first=314 second=257 amount=-1 -kerning first=310 second=949 amount=-2 -kerning first=8361 second=210 amount=-2 -kerning first=76 second=359 amount=-1 -kerning first=222 second=44 amount=-1 -kerning first=931 second=84 amount=-5 -kerning first=96 second=1026 amount=-5 -kerning first=1179 second=234 amount=-1 -kerning first=958 second=246 amount=-1 -kerning first=1263 second=376 amount=-5 -kerning first=37 second=230 amount=-1 -kerning first=176 second=360 amount=-2 -kerning first=287 second=964 amount=-3 -kerning first=54 second=947 amount=-4 -kerning first=57 second=372 amount=-5 -kerning first=1065 second=8249 amount=-1 -kerning first=200 second=287 amount=-1 -kerning first=223 second=219 amount=-2 -kerning first=338 second=1108 amount=-1 -kerning first=341 second=347 amount=-1 -kerning first=934 second=259 amount=-1 -kerning first=103 second=231 amount=-1 -kerning first=363 second=965 amount=-1 -kerning first=123 second=373 amount=-4 -kerning first=35 second=1263 amount=-1 -kerning first=296 second=220 amount=-2 -kerning first=204 second=232 amount=-1 -kerning first=321 second=362 amount=-2 -kerning first=316 second=1176 amount=-1 -kerning first=84 second=244 amount=-3 -kerning first=221 second=1203 amount=-2 -kerning first=345 second=289 amount=-1 -kerning first=1202 second=99 amount=-1 -kerning first=250 second=71 amount=-2 -kerning first=967 second=111 amount=-1 -kerning first=964 second=351 amount=-1 -kerning first=163 second=83 amount=-1 -kerning first=273 second=233 amount=-1 -kerning first=42 second=333 amount=-1 -kerning first=185 second=245 amount=-1 -kerning first=297 second=375 amount=-1 -kerning first=62 second=949 amount=-1 -kerning first=65 second=257 amount=-1 -kerning first=1081 second=210 amount=-2 -kerning first=317 second=8211 amount=-2 -kerning first=8369 second=941 amount=-1 -kerning first=942 second=364 amount=-2 -kerning first=105 second=1090 amount=-3 -kerning first=108 second=334 amount=-2 -kerning first=1203 second=277 amount=-1 -kerning first=251 second=246 amount=-1 -kerning first=371 second=376 amount=-5 -kerning first=965 second=1035 amount=-5 -kerning first=968 second=291 amount=-1 -kerning first=43 second=964 amount=-3 -kerning first=49 second=45 amount=-2 -kerning first=8217 second=101 amount=-1 -kerning first=304 second=85 amount=-2 -kerning first=1083 second=365 amount=-1 -kerning first=209 second=335 amount=-1 -kerning first=86 second=1108 amount=-1 -kerning first=89 second=347 amount=-3 -kerning first=235 second=34 amount=-1 -kerning first=1219 second=224 amount=-1 -kerning first=369 second=8250 amount=-1 -kerning first=372 second=1075 amount=-2 -kerning first=278 second=336 amount=-2 -kerning first=8222 second=51 amount=-1 -kerning first=50 second=220 amount=-2 -kerning first=1064 second=171 amount=-3 -kerning first=190 second=350 amount=-1 -kerning first=70 second=362 amount=-2 -kerning first=1080 second=8217 amount=-3 -kerning first=67 second=1176 amount=1 -kerning first=216 second=47 amount=-1 -kerning first=334 second=197 amount=-2 -kerning first=910 second=324 amount=-3 -kerning first=915 second=87 amount=-5 -kerning first=93 second=289 amount=-1 -kerning first=356 second=337 amount=-3 -kerning first=951 second=249 amount=-1 -kerning first=948 second=940 amount=-1 -kerning first=256 second=351 amount=-1 -kerning first=376 second=953 amount=-2 -kerning first=166 second=1177 amount=-1 -kerning first=169 second=363 amount=-1 -kerning first=279 second=967 amount=-2 -kerning first=8224 second=226 amount=-1 -kerning first=51 second=375 amount=-1 -kerning first=194 second=290 amount=-2 -kerning first=1068 second=88 amount=-2 -kerning first=1094 second=941 amount=-1 -kerning first=916 second=262 amount=-2 -kerning first=1174 second=1241 amount=-1 -kerning first=237 second=364 amount=-2 -kerning first=357 second=968 amount=-1 -kerning first=955 second=199 amount=-2 -kerning first=117 second=376 amount=-5 -kerning first=1223 second=1079 amount=-1 -kerning first=1298 second=89 amount=-5 -kerning first=260 second=291 amount=-1 -kerning first=167 second=8212 amount=-2 -kerning first=170 second=1059 amount=-2 -kerning first=1035 second=101 amount=-1 -kerning first=49 second=8249 amount=-3 -kerning first=58 second=85 amount=-2 -kerning first=198 second=235 amount=-1 -kerning first=313 second=365 amount=-1 -kerning first=928 second=212 amount=-2 -kerning first=235 second=8216 amount=-1 -kerning first=956 second=354 amount=-5 -kerning first=1299 second=266 amount=-2 -kerning first=36 second=336 amount=-2 -kerning first=1036 second=279 amount=-2 -kerning first=178 second=248 amount=-1 -kerning first=294 second=171 amount=-3 -kerning first=1074 second=213 amount=-2 -kerning first=8364 second=253 amount=-1 -kerning first=931 second=367 amount=-1 -kerning first=923 second=1185 amount=-3 -kerning first=102 second=337 amount=-1 -kerning first=105 second=99 amount=-1 -kerning first=958 second=1038 amount=-2 -kerning first=125 second=261 amount=-1 -kerning first=1041 second=226 amount=-1 -kerning first=63 second=210 amount=-2 -kerning first=203 second=338 amount=-2 -kerning first=206 second=100 amount=-1 -kerning first=318 second=941 amount=-1 -kerning first=323 second=250 amount=-1 -kerning first=86 second=112 amount=-2 -kerning first=926 second=8220 amount=-3 -kerning first=103 second=968 amount=-1 -kerning first=947 second=227 amount=-1 -kerning first=249 second=199 amount=-2 -kerning first=162 second=211 amount=-2 -kerning first=271 second=339 amount=-1 -kerning first=184 second=353 amount=-1 -kerning first=299 second=263 amount=-1 -kerning first=64 second=365 amount=-1 -kerning first=1073 second=8221 amount=-3 -kerning first=8378 second=118 amount=-4 -kerning first=1117 second=240 amount=-1 -kerning first=353 second=102 amount=-1 -kerning first=944 second=252 amount=-1 -kerning first=247 second=1118 amount=-1 -kerning first=250 second=354 amount=-5 -kerning first=160 second=1184 amount=-5 -kerning first=163 second=366 amount=-2 -kerning first=273 second=970 amount=-1 -kerning first=276 second=279 amount=-1 -kerning first=8216 second=229 amount=-1 -kerning first=45 second=378 amount=-2 -kerning first=48 second=171 amount=-3 -kerning first=303 second=213 amount=-2 -kerning first=65 second=1063 amount=-3 -kerning first=62 second=8217 amount=-3 -kerning first=71 second=75 amount=2 -kerning first=1085 second=253 amount=-1 -kerning first=906 second=267 amount=-1 -kerning first=228 second=1185 amount=-1 -kerning first=251 second=1038 amount=-2 -kerning first=377 second=214 amount=-1 -kerning first=968 second=1101 amount=-1 -kerning first=280 second=226 amount=-1 -kerning first=1063 second=268 amount=-2 -kerning first=304 second=368 amount=-2 -kerning first=69 second=941 amount=-1 -kerning first=72 second=250 amount=-1 -kerning first=336 second=65 amount=-2 -kerning first=92 second=1241 amount=-1 -kerning first=95 second=187 amount=-1 -kerning first=229 second=8220 amount=-1 -kerning first=358 second=227 amount=-1 -kerning first=950 second=357 amount=-1 -kerning first=1224 second=269 amount=-1 -kerning first=8222 second=332 amount=-1 -kerning first=53 second=263 amount=-1 -kerning first=1067 second=216 amount=-2 -kerning first=302 second=8221 amount=-3 -kerning first=305 second=1066 amount=-5 -kerning first=1099 second=118 amount=-4 -kerning first=334 second=916 amount=-2 -kerning first=910 second=1194 amount=-3 -kerning first=915 second=370 amount=-2 -kerning first=1176 second=283 amount=-1 -kerning first=239 second=252 amount=-1 -kerning first=236 second=943 amount=-1 -kerning first=356 second=1256 amount=-1 -kerning first=958 second=67 amount=-2 -kerning first=1263 second=217 amount=-2 -kerning first=376 second=8222 amount=-4 -kerning first=34 second=279 amount=-1 -kerning first=8224 second=963 amount=-1 -kerning first=57 second=213 amount=-2 -kerning first=1065 second=1195 amount=-1 -kerning first=200 second=103 amount=-1 -kerning first=315 second=253 amount=-1 -kerning first=77 second=355 amount=-1 -kerning first=80 second=115 amount=-1 -kerning first=1184 second=230 amount=-1 -kerning first=960 second=242 amount=-1 -kerning first=123 second=214 amount=-2 -kerning first=1298 second=372 amount=-5 -kerning first=1257 second=947 amount=-1 -kerning first=260 second=1101 amount=-1 -kerning first=38 second=226 amount=-1 -kerning first=1035 second=1240 amount=-2 -kerning first=177 second=356 amount=-5 -kerning first=180 second=116 amount=-1 -kerning first=291 second=268 amount=-2 -kerning first=8260 second=219 amount=-2 -kerning first=58 second=368 amount=-2 -kerning first=198 second=972 amount=-1 -kerning first=201 second=281 amount=-1 -kerning first=8363 second=361 amount=-1 -kerning first=8366 second=121 amount=-1 -kerning first=84 second=65 amount=-6 -kerning first=247 second=117 amount=-1 -kerning first=367 second=269 amount=-1 -kerning first=124 second=369 amount=-1 -kerning first=1039 second=332 amount=-2 -kerning first=297 second=216 amount=-2 -kerning first=8249 second=1203 amount=-1 -kerning first=56 second=8221 amount=-3 -kerning first=59 second=1066 amount=-5 -kerning first=205 second=228 amount=-1 -kerning first=325 second=118 amount=-4 -kerning first=251 second=67 amount=-2 -kerning first=371 second=217 amount=-2 -kerning first=164 second=79 amount=-2 -kerning first=274 second=229 amount=-1 -kerning first=1041 second=963 amount=-1 -kerning first=183 second=920 amount=-2 -kerning first=298 second=371 amount=-1 -kerning first=203 second=1257 amount=-1 -kerning first=8377 second=246 amount=-1 -kerning first=904 second=218 amount=-2 -kerning first=1206 second=273 amount=-1 -kerning first=1219 second=45 amount=-2 -kerning first=252 second=242 amount=-1 -kerning first=369 second=947 amount=-4 -kerning first=162 second=945 amount=-1 -kerning first=271 second=1262 amount=-2 -kerning first=47 second=268 amount=-2 -kerning first=299 second=1069 amount=-1 -kerning first=305 second=81 amount=-2 -kerning first=1084 second=361 amount=-1 -kerning first=905 second=373 amount=-4 -kerning first=87 second=1102 amount=-2 -kerning first=1117 second=1028 amount=-2 -kerning first=1168 second=288 amount=-2 -kerning first=113 second=269 amount=-1 -kerning first=1220 second=220 amount=-2 -kerning first=973 second=232 amount=-1 -kerning first=8216 second=966 amount=-1 -kerning first=8220 second=275 amount=-1 -kerning first=51 second=216 amount=-2 -kerning first=1062 second=374 amount=-2 -kerning first=194 second=106 amount=1 -kerning first=74 second=118 amount=-4 -kerning first=916 second=83 amount=-1 -kerning first=94 second=283 amount=-1 -kerning first=1174 second=233 amount=-1 -kerning first=357 second=333 amount=-1 -kerning first=354 second=1087 amount=-2 -kerning first=952 second=245 amount=-1 -kerning first=117 second=217 amount=-2 -kerning first=1223 second=375 amount=-1 -kerning first=377 second=949 amount=-1 -kerning first=170 second=359 amount=-1 -kerning first=174 second=119 amount=-4 -kerning first=280 second=963 amount=-1 -kerning first=49 second=1195 amount=-1 -kerning first=52 second=371 amount=-1 -kerning first=1069 second=84 amount=-2 -kerning first=192 second=1026 amount=-5 -kerning first=195 second=286 amount=-2 -kerning first=920 second=258 amount=-2 -kerning first=238 second=360 amount=-2 -kerning first=361 second=273 amount=-1 -kerning first=358 second=964 amount=-3 -kerning first=115 second=947 amount=-1 -kerning first=1219 second=8249 amount=-3 -kerning first=1299 second=85 amount=-2 -kerning first=1036 second=97 amount=-1 -kerning first=289 second=219 amount=-2 -kerning first=53 second=1069 amount=-1 -kerning first=59 second=81 amount=-2 -kerning first=1074 second=34 amount=-3 -kerning first=314 second=361 amount=-1 -kerning first=317 second=121 amount=-1 -kerning first=216 second=1202 amount=-3 -kerning first=96 second=1263 amount=-1 -kerning first=365 second=220 amount=-2 -kerning first=958 second=350 amount=-1 -kerning first=37 second=332 amount=-2 -kerning first=1037 second=275 amount=-1 -kerning first=179 second=244 amount=-1 -kerning first=290 second=374 amount=-2 -kerning first=323 second=71 amount=-2 -kerning first=8365 second=249 amount=-1 -kerning first=83 second=193 amount=-1 -kerning first=1103 second=351 amount=-1 -kerning first=217 second=8230 amount=-1 -kerning first=926 second=1177 amount=-1 -kerning first=934 second=363 amount=-1 -kerning first=103 second=333 amount=-1 -kerning first=963 second=290 amount=-2 -kerning first=123 second=949 amount=-1 -kerning first=126 second=257 amount=-1 -kerning first=38 second=963 amount=-1 -kerning first=41 second=271 amount=-1 -kerning first=299 second=84 amount=-5 -kerning first=201 second=1090 amount=-3 -kerning first=204 second=334 amount=-2 -kerning first=8372 second=199 amount=-2 -kerning first=84 second=346 amount=-1 -kerning first=928 second=8212 amount=-2 -kerning first=936 second=1059 amount=-2 -kerning first=107 second=273 amount=-2 -kerning first=104 second=964 amount=-1 -kerning first=967 second=235 amount=-1 -kerning first=273 second=335 amount=-1 -kerning first=276 second=97 amount=-1 -kerning first=182 second=1108 amount=-1 -kerning first=185 second=347 amount=-1 -kerning first=300 second=259 amount=-1 -kerning first=303 second=34 amount=-3 -kerning first=1074 second=8216 amount=-3 -kerning first=65 second=361 amount=-1 -kerning first=205 second=965 amount=-1 -kerning first=211 second=46 amount=-1 -kerning first=8369 second=1118 amount=-1 -kerning first=88 second=288 amount=-3 -kerning first=1210 second=171 amount=-3 -kerning first=251 second=350 amount=-1 -kerning first=248 second=1113 amount=-1 -kerning first=374 second=260 amount=-5 -kerning first=161 second=1176 amount=-1 -kerning first=164 second=362 amount=-2 -kerning first=274 second=966 amount=-1 -kerning first=8217 second=225 amount=-1 -kerning first=46 second=374 amount=-4 -kerning first=1063 second=87 amount=-5 -kerning first=189 second=289 amount=-1 -kerning first=72 second=71 amount=-2 -kerning first=1083 second=940 amount=-1 -kerning first=1087 second=249 amount=-1 -kerning first=212 second=221 amount=-3 -kerning first=330 second=351 amount=-1 -kerning first=8377 second=1038 amount=-2 -kerning first=904 second=953 amount=-1 -kerning first=92 second=233 amount=-1 -kerning first=255 second=290 amount=-2 -kerning first=162 second=8211 amount=-2 -kerning first=1026 second=100 amount=-1 -kerning first=53 second=84 amount=-5 -kerning first=1064 second=262 amount=-2 -kerning first=193 second=234 amount=-1 -kerning first=305 second=364 amount=-2 -kerning first=73 second=246 amount=-1 -kerning first=1096 second=199 amount=-2 -kerning first=213 second=376 amount=-3 -kerning first=915 second=211 amount=-2 -kerning first=1168 second=1098 amount=-3 -kerning first=1171 second=339 amount=-1 -kerning first=1176 second=101 amount=-1 -kerning first=951 second=353 amount=-1 -kerning first=954 second=113 amount=-2 -kerning first=113 second=1074 amount=2 -kerning first=376 second=1179 amount=-3 -kerning first=34 second=97 amount=-1 -kerning first=54 second=259 amount=-1 -kerning first=57 second=34 amount=-3 -kerning first=303 second=8216 amount=-3 -kerning first=916 second=366 amount=-2 -kerning first=240 second=248 amount=-1 -kerning first=363 second=171 amount=-3 -kerning first=1298 second=213 amount=-2 -kerning first=35 second=275 amount=-1 -kerning first=1035 second=225 amount=-1 -kerning first=283 second=1076 amount=-1 -kerning first=291 second=87 amount=-5 -kerning first=8240 second=267 amount=-1 -kerning first=1066 second=1185 amount=-2 -kerning first=198 second=337 amount=-1 -kerning first=201 second=99 amount=-1 -kerning first=313 second=940 amount=-1 -kerning first=316 second=249 amount=-1 -kerning first=78 second=351 amount=-1 -kerning first=221 second=261 amount=-4 -kerning first=98 second=967 amount=-2 -kerning first=1185 second=226 amount=-1 -kerning first=124 second=210 amount=-2 -kerning first=1299 second=368 amount=-2 -kerning first=178 second=352 amount=-1 -kerning first=294 second=262 amount=-2 -kerning first=59 second=364 amount=-2 -kerning first=1067 second=8220 amount=-3 -kerning first=202 second=277 amount=-1 -kerning first=322 second=199 amount=-2 -kerning first=8364 second=357 amount=-1 -kerning first=8369 second=117 amount=-1 -kerning first=900 second=89 amount=-5 -kerning first=79 second=1035 amount=-2 -kerning first=343 second=339 amount=-1 -kerning first=1263 second=8221 amount=-3 -kerning first=125 second=365 amount=-1 -kerning first=298 second=212 amount=-2 -kerning first=57 second=8216 amount=-3 -kerning first=206 second=224 amount=-1 -kerning first=318 second=1118 amount=-1 -kerning first=323 second=354 amount=-5 -kerning first=8377 second=67 amount=-2 -kerning first=901 second=266 amount=-2 -kerning first=904 second=39 amount=-3 -kerning first=223 second=1184 amount=-5 -kerning first=372 second=213 amount=-2 -kerning first=123 second=8217 amount=-3 -kerning first=47 second=87 amount=-5 -kerning first=1048 second=267 amount=-1 -kerning first=296 second=1185 amount=-3 -kerning first=299 second=367 amount=-1 -kerning first=64 second=940 amount=-1 -kerning first=8378 second=242 amount=-1 -kerning first=905 second=214 amount=-2 -kerning first=944 second=356 amount=-5 -kerning first=948 second=116 amount=-1 -kerning first=967 second=972 amount=-1 -kerning first=166 second=250 amount=-1 -kerning first=163 second=941 amount=-1 -kerning first=48 second=262 amount=-2 -kerning first=188 second=1241 amount=-1 -kerning first=191 second=187 amount=-1 -kerning first=297 second=8220 amount=-3 -kerning first=1085 second=357 amount=-1 -kerning first=214 second=89 amount=-5 -kerning first=906 second=369 amount=-1 -kerning first=91 second=339 amount=-1 -kerning first=94 second=101 amount=-1 -kerning first=1118 second=973 amount=-1 -kerning first=88 second=1098 amount=-3 -kerning first=111 second=955 amount=-1 -kerning first=114 second=263 amount=-1 -kerning first=1223 second=216 amount=-2 -kerning first=371 second=8221 amount=-3 -kerning first=8217 second=962 amount=-1 -kerning first=52 second=212 amount=-2 -kerning first=1051 second=1194 amount=-2 -kerning first=1063 second=370 amount=-2 -kerning first=304 second=943 amount=-1 -kerning first=72 second=354 amount=-5 -kerning first=69 second=1118 amount=-1 -kerning first=215 second=266 amount=-2 -kerning first=92 second=970 amount=-1 -kerning first=95 second=279 amount=-1 -kerning first=950 second=920 amount=-2 -kerning first=1219 second=1195 amount=-1 -kerning first=1224 second=371 amount=-1 -kerning first=175 second=115 amount=-1 -kerning first=8226 second=218 amount=-2 -kerning first=53 second=367 amount=-1 -kerning first=50 second=1185 amount=-3 -kerning first=73 second=1038 amount=-2 -kerning first=1099 second=242 amount=-1 -kerning first=915 second=945 amount=-1 -kerning first=1176 second=1240 amount=-2 -kerning first=1171 second=1262 amount=-2 -kerning first=239 second=356 amount=-5 -kerning first=8230 second=373 amount=-2 -kerning first=51 second=8220 amount=-3 -kerning first=200 second=227 amount=-1 -kerning first=318 second=117 amount=-1 -kerning first=315 second=357 amount=-1 -kerning first=338 second=973 amount=-1 -kerning first=1184 second=332 amount=-3 -kerning first=117 second=8221 amount=-3 -kerning first=963 second=106 amount=1 -kerning first=1035 second=962 amount=-1 -kerning first=180 second=240 amount=-1 -kerning first=291 second=370 amount=-2 -kerning first=58 second=943 amount=-1 -kerning first=61 second=252 amount=-1 -kerning first=198 second=1256 amount=-2 -kerning first=8366 second=245 amount=-1 -kerning first=218 second=8222 amount=-1 -kerning first=345 second=229 amount=-1 -kerning first=936 second=359 amount=-1 -kerning first=941 second=119 amount=-1 -kerning first=1185 second=963 amount=-2 -kerning first=367 second=371 amount=-1 -kerning first=964 second=286 amount=-2 -kerning first=160 second=253 amount=-1 -kerning first=42 second=267 amount=-1 -kerning first=325 second=242 amount=-1 -kerning first=900 second=372 amount=-5 -kerning first=108 second=268 amount=-2 -kerning first=374 second=81 amount=-3 -kerning first=968 second=231 amount=-1 -kerning first=8217 second=46 amount=-1 -kerning first=1041 second=1202 amount=-2 -kerning first=69 second=117 amount=-1 -kerning first=209 second=269 amount=-1 -kerning first=8377 second=350 amount=-1 -kerning first=86 second=973 amount=-1 -kerning first=1119 second=232 amount=-1 -kerning first=946 second=244 amount=-1 -kerning first=1206 second=374 amount=-2 -kerning first=255 second=106 amount=1 -kerning first=168 second=118 amount=-4 -kerning first=8218 second=221 amount=-4 -kerning first=44 second=1194 amount=-1 -kerning first=47 second=370 amount=-2 -kerning first=1064 second=83 amount=-1 -kerning first=190 second=283 amount=-1 -kerning first=73 second=67 amount=-2 -kerning first=67 second=1044 amount=-1 -kerning first=1090 second=245 amount=-1 -kerning first=905 second=949 amount=-1 -kerning first=93 second=229 amount=-1 -kerning first=910 second=257 amount=-4 -kerning first=236 second=119 amount=-4 -kerning first=356 second=271 amount=-3 -kerning first=359 second=44 amount=-1 -kerning first=113 second=371 amount=-1 -kerning first=1207 second=1073 amount=-1 -kerning first=253 second=1026 amount=-5 -kerning first=256 second=286 amount=-2 -kerning first=1256 second=84 amount=-2 -kerning first=970 second=1090 amount=-2 -kerning first=973 second=334 amount=-2 -kerning first=282 second=218 amount=-2 -kerning first=194 second=230 amount=-1 -kerning first=306 second=360 amount=-2 -kerning first=74 second=242 amount=-1 -kerning first=214 second=372 amount=-5 -kerning first=91 second=1262 amount=-2 -kerning first=94 second=1240 amount=-2 -kerning first=1174 second=335 amount=-1 -kerning first=952 second=347 amount=-1 -kerning first=1298 second=34 amount=-3 -kerning first=260 second=231 amount=-1 -kerning first=174 second=243 amount=-1 -kerning first=283 second=373 amount=-1 -kerning first=192 second=1263 amount=-1 -kerning first=912 second=1176 amount=-1 -kerning first=1178 second=275 amount=-1 -kerning first=1175 second=966 amount=-1 -kerning first=361 second=374 amount=-5 -kerning first=956 second=289 amount=-1 -kerning first=281 second=8230 amount=-1 -kerning first=294 second=83 amount=-1 -kerning first=8226 second=953 amount=-1 -kerning first=1067 second=1177 amount=-1 -kerning first=317 second=245 amount=-1 -kerning first=337 second=1299 amount=-1 -kerning first=915 second=8211 amount=-2 -kerning first=102 second=271 amount=-1 -kerning first=962 second=234 amount=-1 -kerning first=40 second=218 amount=-2 -kerning first=1037 second=376 amount=-5 -kerning first=179 second=346 amount=-1 -kerning first=60 second=360 amount=-2 -kerning first=1071 second=1059 amount=-2 -kerning first=206 second=45 amount=-2 -kerning first=203 second=273 amount=-1 -kerning first=200 second=964 amount=-3 -kerning first=8370 second=113 amount=-1 -kerning first=8365 second=353 amount=-1 -kerning first=901 second=85 amount=-2 -kerning first=369 second=259 amount=-1 -kerning first=126 second=361 amount=-1 -kerning first=1298 second=8216 amount=-3 -kerning first=162 second=121 amount=-1 -kerning first=275 second=46 amount=-1 -kerning first=38 second=1202 amount=-2 -kerning first=41 second=373 amount=-4 -kerning first=1035 second=8250 amount=-1 -kerning first=180 second=1028 amount=-2 -kerning first=184 second=288 amount=-2 -kerning first=8260 second=1184 amount=-5 -kerning first=1080 second=248 amount=-1 -kerning first=207 second=220 amount=-2 -kerning first=87 second=232 amount=-3 -kerning first=230 second=122 amount=-1 -kerning first=345 second=966 amount=-1 -kerning first=250 second=289 amount=-1 -kerning first=967 second=337 amount=-1 -kerning first=166 second=71 amount=-2 -kerning first=276 second=221 amount=-5 -kerning first=39 second=8230 amount=-1 -kerning first=48 second=83 amount=-1 -kerning first=1049 second=261 amount=-1 -kerning first=1046 second=953 amount=-1 -kerning first=188 second=233 amount=-1 -kerning first=300 second=363 amount=-1 -kerning first=297 second=1177 amount=-1 -kerning first=906 second=210 amount=-2 -kerning first=1118 second=338 amount=-2 -kerning first=1169 second=100 amount=-1 -kerning first=1210 second=262 amount=-2 -kerning first=254 second=234 amount=-1 -kerning first=968 second=968 amount=-1 -kerning first=971 second=277 amount=-1 -kerning first=167 second=246 amount=-1 -kerning first=1063 second=211 amount=-2 -kerning first=301 second=1059 amount=-2 -kerning first=298 second=8212 amount=-2 -kerning first=1095 second=113 amount=-1 -kerning first=1087 second=353 amount=-1 -kerning first=215 second=85 amount=-2 -kerning first=206 second=8249 amount=-3 -kerning first=89 second=1094 amount=-3 -kerning first=92 second=335 amount=-1 -kerning first=95 second=97 amount=-1 -kerning first=1224 second=212 amount=-2 -kerning first=1026 second=224 amount=-1 -kerning first=171 second=196 amount=-1 -kerning first=286 second=86 amount=-2 -kerning first=8222 second=266 amount=-1 -kerning first=8226 second=39 amount=-3 -kerning first=1064 second=366 amount=-2 -kerning first=193 second=336 amount=-2 -kerning first=310 second=248 amount=-2 -kerning first=73 second=350 amount=-1 -kerning first=216 second=260 amount=-2 -kerning first=905 second=8217 amount=-3 -kerning first=93 second=966 amount=-1 -kerning first=96 second=275 amount=-1 -kerning first=1176 second=225 amount=-1 -kerning first=1220 second=1185 amount=-3 -kerning first=379 second=940 amount=-1 -kerning first=176 second=111 amount=-1 -kerning first=172 second=351 amount=-1 -kerning first=282 second=953 amount=-1 -kerning first=287 second=261 amount=-1 -kerning first=8230 second=214 amount=-1 -kerning first=54 second=363 amount=-1 -kerning first=51 second=1177 amount=-1 -kerning first=77 second=290 amount=-2 -kerning first=338 second=338 amount=-2 -kerning first=926 second=250 amount=-1 -kerning first=916 second=941 amount=-1 -kerning first=341 second=100 amount=-1 -kerning first=240 second=352 amount=-1 -kerning first=363 second=262 amount=-2 -kerning first=955 second=1241 amount=-1 -kerning first=960 second=187 amount=-1 -kerning first=1223 second=8220 amount=-3 -kerning first=260 second=968 amount=-1 -kerning first=35 second=376 amount=-5 -kerning first=174 second=1035 amount=-5 -kerning first=177 second=291 amount=-1 -kerning first=291 second=211 amount=-2 -kerning first=8240 second=369 amount=-1 -kerning first=52 second=8212 amount=-2 -kerning first=55 second=1059 amount=-2 -kerning first=1073 second=251 amount=-1 -kerning first=316 second=353 amount=-1 -kerning first=321 second=113 amount=-1 -kerning first=221 second=365 amount=-2 -kerning first=1194 second=90 amount=-1 -kerning first=367 second=212 amount=-2 -kerning first=1299 second=943 amount=-1 -kerning first=1039 second=266 amount=-2 -kerning first=289 second=1184 amount=-5 -kerning first=294 second=366 amount=-2 -kerning first=62 second=248 amount=-1 -kerning first=205 second=171 amount=-3 -kerning first=8364 second=920 amount=-2 -kerning first=900 second=213 amount=-2 -kerning first=942 second=115 amount=-1 -kerning first=108 second=87 amount=-5 -kerning first=365 second=1185 amount=-3 -kerning first=161 second=249 amount=-1 -kerning first=125 second=940 amount=-1 -kerning first=270 second=379 amount=-1 -kerning first=43 second=261 amount=-1 -kerning first=40 second=953 amount=-1 -kerning first=66 second=198 amount=-1 -kerning first=1083 second=116 amount=-1 -kerning first=901 second=368 amount=-2 -kerning first=86 second=338 amount=-2 -kerning first=89 second=100 amount=-4 -kerning first=1116 second=281 amount=-2 -kerning first=249 second=1241 amount=-1 -kerning first=252 second=187 amount=-1 -kerning first=165 second=199 amount=-2 -kerning first=271 second=1079 amount=-1 -kerning first=278 second=89 amount=-5 -kerning first=47 second=211 amount=-1 -kerning first=1048 second=369 amount=-1 -kerning first=184 second=1098 amount=-3 -kerning first=190 second=101 amount=-1 -kerning first=302 second=251 amount=-1 -kerning first=70 second=113 amount=-1 -kerning first=902 second=1066 amount=-5 -kerning first=1168 second=228 amount=-1 -kerning first=948 second=240 amount=-1 -kerning first=113 second=212 amount=-2 -kerning first=1202 second=1194 amount=-1 -kerning first=256 second=102 amount=-2 -kerning first=376 second=252 amount=-2 -kerning first=967 second=1256 amount=-2 -kerning first=166 second=354 amount=-5 -kerning first=163 second=1118 amount=-1 -kerning first=282 second=39 amount=-3 -kerning first=48 second=366 amount=-2 -kerning first=45 second=1184 amount=-4 -kerning first=191 second=279 amount=-1 -kerning first=188 second=970 amount=-1 -kerning first=1065 second=79 amount=-1 -kerning first=1085 second=920 amount=-2 -kerning first=214 second=213 amount=-2 -kerning first=94 second=225 amount=-1 -kerning first=1118 second=1257 amount=-1 -kerning first=237 second=115 amount=-1 -kerning first=357 second=267 amount=-1 -kerning first=111 second=1185 amount=-1 -kerning first=167 second=1038 amount=-2 -kerning first=1063 second=945 amount=-1 -kerning first=195 second=226 amount=-1 -kerning first=313 second=116 amount=-1 -kerning first=215 second=368 amount=-2 -kerning first=950 second=1102 amount=-2 -kerning first=112 second=8220 amount=-1 -kerning first=36 second=89 amount=-5 -kerning first=56 second=251 amount=-1 -kerning first=8361 second=244 amount=-1 -kerning first=216 second=1066 amount=-2 -kerning first=931 second=118 amount=-4 -kerning first=1176 second=962 amount=-1 -kerning first=958 second=283 amount=-1 -kerning first=37 second=266 amount=-2 -kerning first=40 second=39 amount=-3 -kerning first=1037 second=217 amount=-2 -kerning first=1071 second=359 amount=-1 -kerning first=315 second=920 amount=-1 -kerning first=1103 second=286 amount=-2 -kerning first=223 second=253 amount=-1 -kerning first=338 second=1257 amount=-1 -kerning first=103 second=267 amount=-1 -kerning first=963 second=230 amount=-1 -kerning first=41 second=214 amount=-2 -kerning first=1035 second=947 amount=-4 -kerning first=177 second=1101 amount=-1 -kerning first=291 second=945 amount=-1 -kerning first=61 second=356 amount=-5 -kerning first=64 second=116 amount=-1 -kerning first=204 second=268 amount=-2 -kerning first=8363 second=1108 amount=-1 -kerning first=8366 second=347 amount=-1 -kerning first=902 second=81 amount=-2 -kerning first=84 second=281 amount=-3 -kerning first=160 second=357 amount=-1 -kerning first=163 second=117 amount=-1 -kerning first=273 second=269 amount=-1 -kerning first=42 second=369 amount=-1 -kerning first=182 second=973 amount=-1 -kerning first=1081 second=244 amount=-1 -kerning first=328 second=106 amount=1 -kerning first=88 second=228 amount=-1 -kerning first=231 second=118 amount=-1 -kerning first=105 second=1194 amount=-2 -kerning first=108 second=370 amount=-2 -kerning first=1210 second=83 amount=-1 -kerning first=251 second=283 amount=-1 -kerning first=968 second=333 amount=-1 -kerning first=167 second=67 amount=-2 -kerning first=49 second=79 amount=-2 -kerning first=1051 second=257 amount=-1 -kerning first=189 second=229 amount=-1 -kerning first=304 second=119 amount=-4 -kerning first=301 second=359 amount=-1 -kerning first=209 second=371 amount=-1 -kerning first=206 second=1195 amount=-1 -kerning first=330 second=286 amount=-2 -kerning first=86 second=1257 amount=-1 -kerning first=1119 second=334 amount=-2 -kerning first=946 second=346 amount=-1 -kerning first=255 second=230 amount=-1 -kerning first=375 second=360 amount=-2 -kerning first=1026 second=45 amount=-2 -kerning first=168 second=242 amount=-1 -kerning first=275 second=947 amount=-1 -kerning first=278 second=372 amount=-5 -kerning first=8222 second=85 amount=-1 -kerning first=47 second=945 amount=-1 -kerning first=190 second=1240 amount=-2 -kerning first=1084 second=1108 amount=-1 -kerning first=910 second=361 amount=-2 -kerning first=915 second=121 amount=-1 -kerning first=1168 second=965 amount=-1 -kerning first=236 second=243 amount=-1 -kerning first=356 second=373 amount=-2 -kerning first=948 second=1028 amount=-2 -kerning first=951 second=288 amount=-2 -kerning first=253 second=1263 amount=-1 -kerning first=1027 second=220 amount=-2 -kerning first=1065 second=362 amount=-1 -kerning first=194 second=332 amount=-2 -kerning first=311 second=244 amount=-2 -kerning first=77 second=106 amount=1 -kerning first=217 second=256 amount=-2 -kerning first=332 second=1298 amount=-1 -kerning first=926 second=71 amount=-2 -kerning first=94 second=962 amount=-1 -kerning first=354 second=8230 amount=-3 -kerning first=363 second=83 amount=-1 -kerning first=955 second=233 amount=-1 -kerning first=1223 second=1177 amount=-1 -kerning first=260 second=333 amount=-1 -kerning first=35 second=217 amount=-2 -kerning first=8240 second=210 amount=-2 -kerning first=58 second=119 amount=-4 -kerning first=1063 second=8211 amount=-2 -kerning first=55 second=359 amount=-1 -kerning first=195 second=963 amount=-1 -kerning first=198 second=271 amount=-1 -kerning first=78 second=286 amount=-2 -kerning first=928 second=246 amount=-1 -kerning first=1178 second=376 amount=-2 -kerning first=364 second=258 amount=-2 -kerning first=121 second=360 amount=-2 -kerning first=1224 second=8212 amount=-2 -kerning first=261 second=964 amount=-1 -kerning first=36 second=372 amount=-5 -kerning first=1026 second=8249 amount=-3 -kerning first=1039 second=85 amount=-2 -kerning first=178 second=287 amount=-1 -kerning first=202 second=219 amount=-2 -kerning first=314 second=1108 amount=-1 -kerning first=317 second=347 amount=-1 -kerning first=900 second=34 amount=-3 -kerning first=1176 second=8250 amount=-1 -kerning first=962 second=336 amount=-2 -kerning first=183 second=232 amount=-1 -kerning first=8230 second=8217 amount=-1 -kerning first=63 second=244 amount=-1 -kerning first=203 second=374 amount=-5 -kerning first=323 second=289 amount=-1 -kerning first=1116 second=99 amount=-2 -kerning first=947 second=261 amount=-1 -kerning first=249 second=233 amount=-1 -kerning first=369 second=363 amount=-1 -kerning first=162 second=245 amount=-1 -kerning first=271 second=375 amount=-1 -kerning first=8212 second=88 amount=-3 -kerning first=41 second=949 amount=-1 -kerning first=1048 second=210 amount=-2 -kerning first=291 second=8211 amount=-2 -kerning first=67 second=194 amount=-1 -kerning first=1080 second=352 amount=-1 -kerning first=327 second=234 amount=-1 -kerning first=8372 second=1241 amount=-1 -kerning first=8378 second=187 amount=-1 -kerning first=902 second=364 amount=-2 -kerning first=210 second=84 amount=-2 -kerning first=87 second=334 amount=-2 -kerning first=1117 second=277 amount=-1 -kerning first=350 second=376 amount=-2 -kerning first=944 second=291 amount=-1 -kerning first=367 second=8212 amount=-2 -kerning first=8216 second=263 amount=-1 -kerning first=1049 second=365 amount=-1 -kerning first=188 second=335 amount=-1 -kerning first=191 second=97 amount=-1 -kerning first=65 second=1108 amount=-1 -kerning first=214 second=34 amount=-3 -kerning first=900 second=8216 amount=-3 -kerning first=88 second=965 amount=-1 -kerning first=1210 second=366 amount=-2 -kerning first=254 second=336 amount=-2 -kerning first=374 second=937 amount=-2 -kerning first=377 second=248 amount=-1 -kerning first=167 second=350 amount=-1 -kerning first=46 second=1176 amount=-1 -kerning first=49 second=362 amount=-2 -kerning first=189 second=966 amount=-1 -kerning first=192 second=275 amount=-1 -kerning first=72 second=289 amount=-1 -kerning first=912 second=249 amount=-1 -kerning first=95 second=221 amount=-5 -kerning first=238 second=111 amount=-1 -kerning first=358 second=261 amount=-1 -kerning first=972 second=1078 amount=-2 -kerning first=1033 second=88 amount=-2 -kerning first=8222 second=368 amount=-1 -kerning first=47 second=8211 amount=-1 -kerning first=1064 second=941 amount=-1 -kerning first=1067 second=250 amount=-1 -kerning first=310 second=352 amount=-1 -kerning first=76 second=234 amount=-1 -kerning first=1096 second=1241 amount=-1 -kerning first=1099 second=187 amount=-1 -kerning first=923 second=199 amount=-2 -kerning first=96 second=376 amount=-5 -kerning first=1171 second=1079 amount=-1 -kerning first=236 second=1035 amount=-5 -kerning first=239 second=291 amount=-1 -kerning first=951 second=1098 amount=-3 -kerning first=113 second=8212 amount=-2 -kerning first=958 second=101 amount=-1 -kerning first=954 second=339 amount=-2 -kerning first=1263 second=251 amount=-1 -kerning first=37 second=85 amount=-2 -kerning first=176 second=235 amount=-1 -kerning first=287 second=365 amount=-1 -kerning first=8224 second=1066 amount=-5 -kerning first=214 second=8216 amount=-3 -kerning first=341 second=224 amount=-1 -kerning first=916 second=1118 amount=-1 -kerning first=926 second=354 amount=-5 -kerning first=94 second=8250 amount=-1 -kerning first=1184 second=266 amount=-3 -kerning first=363 second=366 amount=-2 -kerning first=960 second=279 amount=-1 -kerning first=955 second=970 amount=-1 -kerning first=123 second=248 amount=-1 -kerning first=268 second=171 amount=-1 -kerning first=38 second=260 amount=-1 -kerning first=283 second=8217 amount=-1 -kerning first=8260 second=253 amount=-1 -kerning first=1073 second=355 amount=-1 -kerning first=204 second=87 amount=-5 -kerning first=84 second=99 amount=-3 -kerning first=221 second=940 amount=-4 -kerning first=928 second=1038 amount=-2 -kerning first=964 second=226 amount=-1 -kerning first=42 second=210 amount=-2 -kerning first=1039 second=368 amount=-2 -kerning first=182 second=338 amount=-2 -kerning first=185 second=100 amount=-1 -kerning first=297 second=250 amount=-1 -kerning first=294 second=941 amount=-1 -kerning first=62 second=352 amount=-1 -kerning first=205 second=262 amount=-2 -kerning first=322 second=1241 amount=-1 -kerning first=325 second=187 amount=-1 -kerning first=108 second=211 amount=-2 -kerning first=245 second=1098 amount=-1 -kerning first=251 second=101 amount=-1 -kerning first=371 second=251 amount=-1 -kerning first=164 second=113 amount=-1 -kerning first=161 second=353 amount=-1 -kerning first=270 second=955 amount=-2 -kerning first=274 second=263 amount=-1 -kerning first=43 second=365 amount=-1 -kerning first=1037 second=8221 amount=-3 -kerning first=1041 second=1066 amount=-5 -kerning first=1083 second=240 amount=-1 -kerning first=209 second=212 amount=-2 -kerning first=8377 second=283 amount=-1 -kerning first=904 second=252 amount=-1 -kerning first=901 second=943 amount=-1 -kerning first=89 second=224 amount=-4 -kerning first=1219 second=79 amount=-2 -kerning first=249 second=970 amount=-1 -kerning first=252 second=279 amount=-1 -kerning first=278 second=213 amount=-2 -kerning first=41 second=8217 amount=-3 -kerning first=44 second=1063 amount=-3 -kerning first=190 second=225 amount=-1 -kerning first=302 second=355 amount=-1 -kerning first=305 second=115 amount=-1 -kerning first=207 second=1185 amount=-3 -kerning first=87 second=1220 amount=-2 -kerning first=90 second=379 amount=1 -kerning first=356 second=214 amount=-1 -kerning first=944 second=1101 amount=-1 -kerning first=1207 second=945 amount=-1 -kerning first=256 second=226 amount=-1 -kerning first=973 second=268 amount=-2 -kerning first=8224 second=81 amount=-2 -kerning first=51 second=250 amount=-1 -kerning first=48 second=941 amount=-1 -kerning first=74 second=187 amount=-1 -kerning first=916 second=117 amount=-1 -kerning first=91 second=1079 amount=-1 -kerning first=1174 second=269 amount=-1 -kerning first=354 second=1187 amount=-2 -kerning first=357 second=369 amount=-1 -kerning first=117 second=251 amount=-1 -kerning first=280 second=1066 amount=-5 -kerning first=277 second=8221 amount=-1 -kerning first=313 second=240 amount=-1 -kerning first=215 second=943 amount=-1 -kerning first=928 second=67 amount=-2 -kerning first=101 second=39 amount=-1 -kerning first=1178 second=217 amount=-1 -kerning first=355 second=8222 amount=-1 -kerning first=956 second=229 amount=-1 -kerning first=1299 second=119 amount=-4 -kerning first=381 second=920 amount=-1 -kerning first=36 second=213 amount=-2 -kerning first=1026 second=1195 amount=-1 -kerning first=178 second=103 amount=-1 -kerning first=289 second=253 amount=-1 -kerning first=56 second=355 amount=-1 -kerning first=59 second=115 amount=-1 -kerning first=8361 second=346 amount=-1 -kerning first=337 second=1083 amount=-1 -kerning first=931 second=242 amount=-1 -kerning first=1176 second=947 amount=-4 -kerning first=239 second=1101 amount=-1 -kerning first=958 second=1240 amount=-2 -kerning first=125 second=116 amount=-1 -kerning first=37 second=368 amount=-2 -kerning first=1041 second=81 amount=-2 -kerning first=176 second=972 amount=-1 -kerning first=179 second=281 amount=-1 -kerning first=1075 second=243 amount=-1 -kerning first=8365 second=288 amount=-2 -kerning first=223 second=357 amount=-1 -kerning first=103 second=369 amount=-1 -kerning first=963 second=332 amount=-2 -kerning first=271 second=216 amount=-2 -kerning first=38 second=1066 amount=-5 -kerning first=35 second=8221 amount=-3 -kerning first=184 second=228 amount=-1 -kerning first=299 second=118 amount=-4 -kerning first=64 second=240 amount=-1 -kerning first=201 second=1194 amount=-2 -kerning first=204 second=370 amount=-2 -kerning first=8372 second=233 amount=-1 -kerning first=84 second=382 amount=-1 -kerning first=101 second=8222 amount=-1 -kerning first=250 second=229 amount=-1 -kerning first=964 second=963 amount=-1 -kerning first=967 second=271 amount=-1 -kerning first=160 second=920 amount=-2 -kerning first=273 second=371 amount=-1 -kerning first=182 second=1257 amount=-1 -kerning first=1081 second=346 amount=-1 -kerning first=903 second=360 amount=-2 -kerning first=1118 second=273 amount=-1 -kerning first=346 second=947 amount=-1 -kerning first=108 second=945 amount=-1 -kerning first=251 second=1240 amount=-2 -kerning first=971 second=219 amount=-2 -kerning first=274 second=1069 amount=-1 -kerning first=280 second=81 amount=-2 -kerning first=8217 second=259 amount=-1 -kerning first=1051 second=361 amount=-1 -kerning first=1063 second=121 amount=-1 -kerning first=304 second=243 amount=-1 -kerning first=1083 second=1028 amount=-2 -kerning first=1087 second=288 amount=-2 -kerning first=89 second=961 amount=-5 -kerning first=92 second=269 amount=-1 -kerning first=1170 second=220 amount=-2 -kerning first=950 second=232 amount=-1 -kerning first=1219 second=362 amount=-2 -kerning first=255 second=332 amount=-2 -kerning first=378 second=244 amount=-1 -kerning first=969 second=1203 amount=-1 -kerning first=53 second=118 amount=-4 -kerning first=1067 second=71 amount=-2 -kerning first=190 second=962 amount=-1 -kerning first=73 second=283 amount=-1 -kerning first=1096 second=233 amount=-1 -kerning first=915 second=245 amount=-1 -kerning first=96 second=217 amount=-2 -kerning first=1171 second=375 amount=-1 -kerning first=356 second=949 amount=-3 -kerning first=256 second=963 amount=-1 -kerning first=262 second=44 amount=-1 -kerning first=169 second=1026 amount=-5 -kerning first=172 second=286 amount=-2 -kerning first=1034 second=84 amount=-5 -kerning first=8224 second=364 amount=-2 -kerning first=1065 second=934 amount=-2 -kerning first=197 second=218 amount=-2 -kerning first=77 second=230 amount=-1 -kerning first=335 second=964 amount=-1 -kerning first=338 second=273 amount=-1 -kerning first=341 second=45 amount=-1 -kerning first=94 second=947 amount=-4 -kerning first=240 second=287 amount=-1 -kerning first=955 second=335 amount=-1 -kerning first=960 second=97 amount=-1 -kerning first=380 second=1108 amount=-1 -kerning first=38 second=81 amount=-2 -kerning first=1035 second=259 amount=-1 -kerning first=177 second=231 amount=-1 -kerning first=283 second=1175 amount=-2 -kerning first=291 second=121 amount=-1 -kerning first=58 second=243 amount=-1 -kerning first=198 second=373 amount=-4 -kerning first=316 second=288 amount=-2 -kerning first=313 second=1028 amount=-1 -kerning first=75 second=1263 amount=-2 -kerning first=1098 second=1095 amount=-1 -kerning first=928 second=350 amount=-1 -kerning first=361 second=1176 amount=-1 -kerning first=956 second=966 amount=-1 -kerning first=124 second=244 amount=-1 -kerning first=266 second=374 amount=-2 -kerning first=1240 second=1033 amount=-1 -kerning first=39 second=256 amount=-3 -kerning first=297 second=71 amount=-2 -kerning first=1074 second=351 amount=-1 -kerning first=1078 second=111 amount=-2 -kerning first=205 second=83 amount=-1 -kerning first=322 second=233 amount=-1 -kerning first=1102 second=967 amount=-2 -kerning first=102 second=949 amount=-1 -kerning first=105 second=257 amount=-1 -kerning first=242 second=1299 amount=-1 -kerning first=274 second=84 amount=-5 -kerning first=1041 second=364 amount=-2 -kerning first=179 second=1090 amount=-3 -kerning first=183 second=334 amount=-2 -kerning first=298 second=246 amount=-1 -kerning first=63 second=346 amount=-1 -kerning first=8365 second=1098 amount=-3 -kerning first=8370 second=339 amount=-1 -kerning first=86 second=273 amount=-1 -kerning first=8377 second=101 amount=-1 -kerning first=89 second=45 amount=-4 -kerning first=249 second=335 amount=-1 -kerning first=252 second=97 amount=-1 -kerning first=126 second=1108 amount=-1 -kerning first=162 second=347 amount=-1 -kerning first=278 second=34 amount=-3 -kerning first=47 second=121 amount=-1 -kerning first=44 second=361 amount=-1 -kerning first=184 second=965 amount=-1 -kerning first=64 second=1028 amount=-2 -kerning first=327 second=336 amount=-2 -kerning first=8372 second=970 amount=-1 -kerning first=8378 second=279 amount=-1 -kerning first=905 second=248 amount=-1 -kerning first=1168 second=171 amount=-3 -kerning first=1202 second=1063 amount=-2 -kerning first=250 second=966 amount=-1 -kerning first=253 second=275 amount=-1 -kerning first=376 second=197 amount=-5 -kerning first=973 second=87 amount=-5 -kerning first=166 second=289 amount=-1 -kerning first=51 second=71 amount=-2 -kerning first=1049 second=940 amount=-1 -kerning first=191 second=221 amount=-5 -kerning first=303 second=351 amount=-1 -kerning first=306 second=111 amount=-1 -kerning first=91 second=375 amount=-1 -kerning first=357 second=210 amount=-2 -kerning first=952 second=100 amount=-1 -kerning first=108 second=8211 amount=-2 -kerning first=1210 second=941 amount=-1 -kerning first=1223 second=250 amount=-1 -kerning first=374 second=1116 amount=-3 -kerning first=170 second=234 amount=-1 -kerning first=280 second=364 amount=-2 -kerning first=52 second=246 amount=-1 -kerning first=192 second=376 amount=-5 -kerning first=304 second=1035 amount=-5 -kerning first=1087 second=1098 amount=-3 -kerning first=1095 second=339 amount=-1 -kerning first=209 second=8212 amount=-2 -kerning first=912 second=353 amount=-1 -kerning first=89 second=8249 amount=-3 -kerning first=1175 second=263 amount=-1 -kerning first=238 second=235 amount=-1 -kerning first=358 second=365 amount=-1 -kerning first=950 second=969 amount=-3 -kerning first=36 second=34 amount=-3 -kerning first=278 second=8216 amount=-3 -kerning first=8226 second=252 amount=-1 -kerning first=1064 second=1118 amount=-1 -kerning first=1067 second=354 amount=-5 -kerning first=190 second=8250 amount=-1 -kerning first=199 second=86 amount=-1 -kerning first=76 second=336 amount=-1 -kerning first=1096 second=970 amount=-1 -kerning first=1099 second=279 amount=-1 -kerning first=337 second=378 amount=-1 -kerning first=340 second=171 amount=-1 -kerning first=958 second=225 amount=-1 -kerning first=1263 second=355 amount=-1 -kerning first=1027 second=1185 amount=-3 -kerning first=176 second=337 amount=-1 -kerning first=179 second=99 amount=-1 -kerning first=287 second=940 amount=-1 -kerning first=60 second=111 amount=-1 -kerning first=57 second=351 amount=-1 -kerning first=200 second=261 amount=-1 -kerning first=197 second=953 amount=-1 -kerning first=1103 second=226 amount=-1 -kerning first=103 second=210 amount=-2 -kerning first=363 second=941 amount=-1 -kerning first=123 second=352 amount=-1 -kerning first=38 second=364 amount=-2 -kerning first=177 second=968 amount=-1 -kerning first=180 second=277 amount=-1 -kerning first=296 second=199 amount=-2 -kerning first=8260 second=357 amount=-1 -kerning first=58 second=1035 amount=-5 -kerning first=61 second=291 amount=-1 -kerning first=204 second=211 amount=-2 -kerning first=321 second=339 amount=-1 -kerning first=8363 second=973 amount=-1 -kerning first=316 second=1098 amount=-3 -kerning first=221 second=1117 amount=-3 -kerning first=345 second=263 amount=-1 -kerning first=1178 second=8221 amount=-2 -kerning first=273 second=212 amount=-2 -kerning first=36 second=8216 amount=-3 -kerning first=1039 second=943 amount=-1 -kerning first=1046 second=252 amount=-1 -kerning first=185 second=224 amount=-1 -kerning first=297 second=354 amount=-5 -kerning first=294 second=1118 amount=-1 -kerning first=202 second=1184 amount=-5 -kerning first=205 second=366 amount=-2 -kerning first=325 second=279 amount=-1 -kerning first=322 second=970 amount=-1 -kerning first=88 second=171 amount=-3 -kerning first=231 second=63 amount=-1 -kerning first=251 second=225 amount=-1 -kerning first=371 second=355 amount=-1 -kerning first=374 second=115 amount=-3 -kerning first=968 second=267 amount=-1 -kerning first=274 second=367 amount=-1 -kerning first=43 second=940 amount=-1 -kerning first=46 second=249 amount=-1 -kerning first=298 second=1038 amount=-2 -kerning first=8377 second=1240 amount=-2 -kerning first=8370 second=1262 amount=-2 -kerning first=904 second=356 amount=-5 -kerning first=330 second=226 amount=-1 -kerning first=86 second=1078 amount=-2 -kerning first=1119 second=268 amount=-2 -kerning first=946 second=281 amount=-1 -kerning first=165 second=1241 amount=-1 -kerning first=168 second=187 amount=-1 -kerning first=271 second=8220 amount=-3 -kerning first=50 second=199 amount=-2 -kerning first=1064 second=117 amount=-1 -kerning first=193 second=89 amount=-5 -kerning first=70 second=339 amount=-1 -kerning first=1084 second=973 amount=-1 -kerning first=73 second=101 amount=-1 -kerning first=93 second=263 amount=-1 -kerning first=1171 second=216 amount=-2 -kerning first=951 second=228 amount=-1 -kerning first=376 second=916 amount=-5 -kerning first=379 second=240 amount=-1 -kerning first=973 second=370 amount=-2 -kerning first=282 second=252 amount=-1 -kerning first=51 second=354 amount=-5 -kerning first=48 second=1118 amount=-1 -kerning first=194 second=266 amount=-2 -kerning first=197 second=39 amount=-3 -kerning first=74 second=279 amount=-1 -kerning first=1169 second=1195 amount=-1 -kerning first=240 second=103 amount=-1 -kerning first=117 second=355 amount=-1 -kerning first=120 second=115 amount=-1 -kerning first=260 second=267 amount=-1 -kerning first=8225 second=360 amount=-2 -kerning first=52 second=1038 amount=-2 -kerning first=1066 second=923 amount=-1 -kerning first=198 second=214 amount=-2 -kerning first=78 second=226 amount=-1 -kerning first=1095 second=1262 amount=-2 -kerning first=238 second=972 amount=-1 -kerning first=1299 second=243 amount=-1 -kerning first=178 second=227 amount=-1 -kerning first=289 second=357 amount=-1 -kerning first=294 second=117 amount=-1 -kerning first=314 second=973 amount=-1 -kerning first=8364 second=232 amount=-1 -kerning first=79 second=381 amount=-1 -kerning first=96 second=8221 amount=-3 -kerning first=958 second=962 amount=-1 -kerning first=125 second=240 amount=-1 -kerning first=37 second=943 amount=-1 -kerning first=40 second=252 amount=-1 -kerning first=176 second=1256 amount=-2 -kerning first=298 second=67 amount=-2 -kerning first=206 second=79 amount=-2 -kerning first=323 second=229 amount=-1 -kerning first=901 second=119 amount=-4 -kerning first=1103 second=963 amount=-1 -kerning first=223 second=920 amount=-2 -kerning first=341 second=1195 amount=-1 -kerning first=934 second=1026 amount=-5 -kerning first=1044 second=360 amount=-1 -kerning first=299 second=242 amount=-1 -kerning first=61 second=1101 amount=-1 -kerning first=1080 second=287 amount=-1 -kerning first=204 second=945 amount=-1 -kerning first=321 second=1262 amount=-2 -kerning first=8372 second=335 amount=-1 -kerning first=8378 second=97 amount=-1 -kerning first=87 second=268 amount=-2 -kerning first=1117 second=219 amount=-2 -kerning first=944 second=231 amount=-1 -kerning first=373 second=243 amount=-1 -kerning first=967 second=373 amount=-4 -kerning first=48 second=117 amount=-1 -kerning first=188 second=269 amount=-1 -kerning first=65 second=973 amount=-1 -kerning first=1085 second=232 amount=-1 -kerning first=906 second=244 amount=-1 -kerning first=91 second=216 amount=-2 -kerning first=1114 second=1203 amount=-2 -kerning first=1118 second=374 amount=-5 -kerning first=354 second=256 amount=-6 -kerning first=1223 second=71 amount=-2 -kerning first=251 second=962 amount=-1 -kerning first=167 second=283 amount=-1 -kerning first=52 second=67 amount=-2 -kerning first=1063 second=245 amount=-1 -kerning first=192 second=217 amount=-2 -kerning first=72 second=229 amount=-1 -kerning first=215 second=119 amount=-4 -kerning first=330 second=963 amount=-1 -kerning first=336 second=44 amount=-1 -kerning first=92 second=371 amount=-1 -kerning first=89 second=1195 amount=-4 -kerning first=950 second=334 amount=-2 -kerning first=946 second=1090 amount=-3 -kerning first=1224 second=246 amount=-1 -kerning first=258 second=218 amount=-2 -kerning first=8218 second=1059 amount=-1 -kerning first=53 second=242 amount=-1 -kerning first=190 second=947 amount=-4 -kerning first=193 second=372 amount=-5 -kerning first=310 second=287 amount=-1 -kerning first=73 second=1240 amount=-2 -kerning first=70 second=1262 amount=-2 -kerning first=1096 second=335 amount=-1 -kerning first=1099 second=97 amount=-1 -kerning first=910 second=1108 amount=-4 -kerning first=915 second=347 amount=-1 -kerning first=93 second=1069 amount=-1 -kerning first=1176 second=259 amount=-1 -kerning first=239 second=231 amount=-1 -kerning first=356 second=1175 amount=-1 -kerning first=951 second=965 amount=-1 -kerning first=119 second=243 amount=-1 -kerning first=259 second=373 amount=-1 -kerning first=379 second=1028 amount=-1 -kerning first=169 second=1263 amount=-1 -kerning first=315 second=232 amount=-1 -kerning first=77 second=332 amount=-2 -kerning first=1097 second=966 amount=-1 -kerning first=335 second=1203 amount=-2 -kerning first=338 second=374 amount=-5 -kerning first=926 second=289 amount=-1 -kerning first=960 second=221 amount=-5 -kerning first=1298 second=351 amount=-1 -kerning first=1035 second=363 amount=-1 -kerning first=177 second=333 amount=-1 -kerning first=291 second=245 amount=-1 -kerning first=1073 second=290 amount=-2 -kerning first=198 second=949 amount=-1 -kerning first=201 second=257 amount=-1 -kerning first=8363 second=338 amount=-2 -kerning first=8366 second=100 amount=-1 -kerning first=78 second=963 amount=-1 -kerning first=84 second=44 amount=-3 -kerning first=936 second=234 amount=-1 -kerning first=241 second=1090 amount=-1 -kerning first=367 second=246 amount=-1 -kerning first=124 second=346 amount=-1 -kerning first=1299 second=1035 amount=-5 -kerning first=182 second=273 amount=-1 -kerning first=185 second=45 amount=-2 -kerning first=178 second=964 amount=-3 -kerning first=62 second=287 amount=-1 -kerning first=1078 second=235 amount=-2 -kerning first=322 second=335 amount=-1 -kerning first=325 second=97 amount=-1 -kerning first=351 second=34 amount=-1 -kerning first=105 second=361 amount=-1 -kerning first=108 second=121 amount=-1 -kerning first=958 second=8250 amount=-1 -kerning first=125 second=1028 amount=-2 -kerning first=161 second=288 amount=-2 -kerning first=186 second=220 amount=-2 -kerning first=298 second=350 amount=-1 -kerning first=206 second=362 amount=-2 -kerning first=203 second=1176 amount=-1 -kerning first=323 second=966 amount=-1 -kerning first=8377 second=225 amount=-1 -kerning first=83 second=1203 amount=-1 -kerning first=86 second=374 amount=-5 -kerning first=1119 second=87 amount=-5 -kerning first=946 second=99 amount=-1 -kerning first=947 second=940 amount=-1 -kerning first=252 second=221 amount=-5 -kerning first=375 second=111 amount=-1 -kerning first=372 second=351 amount=-2 -kerning first=165 second=233 amount=-1 -kerning first=271 second=1177 amount=-1 -kerning first=1241 second=967 amount=-2 -kerning first=47 second=245 amount=-2 -kerning first=1059 second=198 amount=-2 -kerning first=302 second=290 amount=-2 -kerning first=1084 second=338 amount=-2 -kerning first=204 second=8211 amount=-2 -kerning first=1090 second=100 amount=-1 -kerning first=905 second=352 amount=-1 -kerning first=910 second=112 amount=-3 -kerning first=93 second=84 amount=-5 -kerning first=1168 second=262 amount=-2 -kerning first=944 second=968 amount=-1 -kerning first=948 second=277 amount=-1 -kerning first=113 second=246 amount=-1 -kerning first=1220 second=199 amount=-2 -kerning first=253 second=376 amount=-5 -kerning first=376 second=291 amount=-4 -kerning first=973 second=211 amount=-2 -kerning first=273 second=8212 amount=-2 -kerning first=276 second=1059 amount=-2 -kerning first=185 second=8249 amount=-3 -kerning first=1065 second=113 amount=-1 -kerning first=194 second=85 amount=-2 -kerning first=306 second=235 amount=-1 -kerning first=74 second=97 amount=-1 -kerning first=332 second=377 amount=-1 -kerning first=94 second=259 amount=-1 -kerning first=97 second=34 amount=-1 -kerning first=1174 second=212 amount=-1 -kerning first=351 second=8216 amount=-1 -kerning first=952 second=224 amount=-1 -kerning first=1223 second=354 amount=-5 -kerning first=1210 second=1118 amount=-1 -kerning first=251 second=8250 amount=-1 -kerning first=260 second=86 amount=-6 -kerning first=971 second=1184 amount=-5 -kerning first=170 second=336 amount=-2 -kerning first=52 second=350 amount=-1 -kerning first=72 second=966 amount=-1 -kerning first=75 second=275 amount=-2 -kerning first=218 second=197 amount=-2 -kerning first=333 second=1076 amount=-1 -kerning first=1170 second=1185 amount=-3 -kerning first=238 second=337 amount=-1 -kerning first=361 second=249 amount=-1 -kerning first=358 second=940 amount=-1 -kerning first=950 second=1220 amount=-2 -kerning first=118 second=351 amount=-1 -kerning first=1224 second=1038 amount=-2 -kerning first=121 second=111 amount=-1 -kerning first=258 second=953 amount=-1 -kerning first=972 second=8218 amount=-1 -kerning first=8226 second=356 amount=-5 -kerning first=56 second=290 amount=-2 -kerning first=314 second=338 amount=-2 -kerning first=317 second=100 amount=-1 -kerning first=8361 second=281 amount=-1 -kerning first=923 second=1241 amount=-1 -kerning first=931 second=187 amount=-1 -kerning first=1171 second=8220 amount=-3 -kerning first=239 second=968 amount=-1 -kerning first=365 second=199 amount=-2 -kerning first=962 second=89 amount=-5 -kerning first=1037 second=251 amount=-1 -kerning first=60 second=235 amount=-1 -kerning first=200 second=365 amount=-1 -kerning first=8365 second=228 amount=-1 -kerning first=80 second=377 amount=-1 -kerning first=97 second=8216 amount=-1 -kerning first=363 second=1118 amount=-1 -kerning first=963 second=266 amount=-2 -kerning first=966 second=39 amount=-1 -kerning first=41 second=248 amount=-1 -kerning first=184 second=171 amount=-3 -kerning first=8260 second=920 amount=-2 -kerning first=1080 second=103 amount=-1 -kerning first=198 second=8217 amount=-3 -kerning first=8363 second=1257 amount=-1 -kerning first=902 second=115 amount=-1 -kerning first=84 second=324 amount=-2 -kerning first=367 second=1038 amount=-2 -kerning first=967 second=214 amount=-2 -kerning first=266 second=8218 amount=-1 -kerning first=45 second=198 amount=-2 -kerning first=1049 second=116 amount=-1 -kerning first=65 second=338 amount=-2 -kerning first=1081 second=281 amount=-1 -kerning first=205 second=941 amount=-1 -kerning first=1078 second=972 amount=-2 -kerning first=88 second=262 amount=-3 -kerning first=1210 second=117 amount=-1 -kerning first=254 second=89 amount=-5 -kerning first=968 second=369 amount=-1 -kerning first=161 second=1098 amount=-3 -kerning first=164 second=339 amount=-1 -kerning first=167 second=101 amount=-1 -kerning first=49 second=113 amount=-1 -kerning first=189 second=263 amount=-1 -kerning first=1087 second=228 amount=-1 -kerning first=8377 second=962 amount=-1 -kerning first=92 second=212 amount=-2 -kerning first=1119 second=370 amount=-2 -kerning first=235 second=102 amount=-1 -kerning first=1224 second=67 amount=-2 -kerning first=255 second=266 amount=-2 -kerning first=258 second=39 amount=-3 -kerning first=966 second=8222 amount=-1 -kerning first=1026 second=79 amount=-2 -kerning first=168 second=279 amount=-1 -kerning first=165 second=970 amount=-1 -kerning first=8218 second=359 amount=-1 -kerning first=8222 second=119 amount=-2 -kerning first=193 second=213 amount=-2 -kerning first=73 second=225 amount=-1 -kerning first=1084 second=1257 amount=-1 -kerning first=310 second=103 amount=-1 -kerning first=93 second=367 amount=-1 -kerning first=113 second=1038 amount=-2 -kerning first=376 second=1101 amount=-4 -kerning first=973 second=945 amount=-1 -kerning first=172 second=226 amount=-1 -kerning first=282 second=356 amount=-5 -kerning first=287 second=116 amount=-1 -kerning first=194 second=368 amount=-2 -kerning first=306 second=972 amount=-1 -kerning first=311 second=281 amount=-2 -kerning first=220 second=65 amount=-2 -kerning first=91 second=8220 amount=-3 -kerning first=240 second=227 amount=-1 -kerning first=363 second=117 amount=-1 -kerning first=955 second=269 amount=-1 -kerning first=260 second=369 amount=-1 -kerning first=35 second=251 amount=-1 -kerning first=8240 second=244 amount=-1 -kerning first=192 second=8221 amount=-3 -kerning first=195 second=1066 amount=-5 -kerning first=1073 second=106 amount=1 -kerning first=316 second=228 amount=-1 -kerning first=81 second=90 amount=-1 -kerning first=218 second=916 amount=-2 -kerning first=221 second=240 amount=-4 -kerning first=928 second=283 amount=-1 -kerning first=238 second=1256 amount=-2 -kerning first=367 second=67 amount=-2 -kerning first=1039 second=119 amount=-4 -kerning first=1036 second=359 amount=-1 -kerning first=289 second=920 amount=-2 -kerning first=62 second=103 amount=-1 -kerning first=1074 second=286 amount=-2 -kerning first=1070 second=1026 amount=-2 -kerning first=202 second=253 amount=-1 -kerning first=314 second=1257 amount=-1 -kerning first=8364 second=334 amount=-2 -kerning first=8361 second=1090 amount=-3 -kerning first=1195 second=120 amount=-1 -kerning first=242 second=1083 amount=-1 -kerning first=1186 second=360 amount=-1 -kerning first=958 second=947 amount=-4 -kerning first=962 second=372 amount=-5 -kerning first=40 second=356 amount=-5 -kerning first=43 second=116 amount=-1 -kerning first=183 second=268 amount=-2 -kerning first=60 second=972 amount=-1 -kerning first=63 second=281 amount=-1 -kerning first=8365 second=965 amount=-1 -kerning first=901 second=243 amount=-1 -kerning first=1108 second=373 amount=-1 -kerning first=934 second=1263 amount=-1 -kerning first=249 second=269 amount=-1 -kerning first=126 second=973 amount=-1 -kerning first=8212 second=122 amount=-2 -kerning first=1048 second=244 amount=-1 -kerning first=302 second=106 amount=1 -kerning first=8378 second=221 amount=-5 -kerning first=84 second=1194 amount=-1 -kerning first=1168 second=83 amount=-1 -kerning first=944 second=333 amount=-1 -kerning first=113 second=67 amount=-2 -kerning first=1207 second=245 amount=-1 -kerning first=253 second=217 amount=-2 -kerning first=967 second=949 amount=-1 -kerning first=166 second=229 amount=-1 -kerning first=276 second=359 amount=-1 -kerning first=279 second=119 amount=-1 -kerning first=185 second=1195 amount=-1 -kerning first=188 second=371 amount=-1 -kerning first=300 second=1026 amount=-5 -kerning first=303 second=286 amount=-2 -kerning first=65 second=1257 amount=-1 -kerning first=1085 second=334 amount=-2 -kerning first=1081 second=1090 amount=-3 -kerning first=208 second=1046 amount=-3 -kerning first=906 second=346 amount=-1 -kerning first=945 second=964 amount=-2 -kerning first=952 second=45 amount=-2 -kerning first=114 second=242 amount=-1 -kerning first=251 second=947 amount=-4 -kerning first=254 second=372 amount=-5 -kerning first=164 second=1262 amount=-2 -kerning first=167 second=1240 amount=-2 -kerning first=1051 second=1108 amount=-1 -kerning first=1063 second=347 amount=-1 -kerning first=189 second=1069 amount=-1 -kerning first=195 second=81 amount=-2 -kerning first=1087 second=965 amount=-1 -kerning first=215 second=243 amount=-1 -kerning first=333 second=373 amount=-1 -kerning first=8377 second=8250 amount=-1 -kerning first=912 second=288 amount=-2 -kerning first=1224 second=350 amount=-1 -kerning first=381 second=232 amount=-1 -kerning first=1026 second=362 amount=-2 -kerning first=56 second=106 amount=1 -kerning first=1067 second=289 amount=-1 -kerning first=8361 second=99 amount=-1 -kerning first=73 second=962 amount=-1 -kerning first=1099 second=221 amount=-5 -kerning first=219 second=193 amount=-2 -kerning first=334 second=1071 amount=-1 -kerning first=923 second=233 amount=-1 -kerning first=1171 second=1177 amount=-1 -kerning first=1176 second=363 amount=-1 -kerning first=239 second=333 amount=-1 -kerning first=1263 second=290 amount=-2 -kerning first=973 second=8211 amount=-2 -kerning first=37 second=119 amount=-4 -kerning first=172 second=963 amount=-1 -kerning first=176 second=271 amount=-1 -kerning first=54 second=1026 amount=-5 -kerning first=57 second=286 amount=-2 -kerning first=1071 second=234 amount=-1 -kerning first=315 second=334 amount=-1 -kerning first=80 second=218 amount=-2 -kerning first=100 second=360 amount=-2 -kerning first=1174 second=8212 amount=-2 -kerning first=240 second=964 amount=-3 -kerning first=952 second=8249 amount=-3 -kerning first=963 second=85 amount=-2 -kerning first=123 second=287 amount=-1 -kerning first=180 second=219 amount=-2 -kerning first=291 second=347 amount=-1 -kerning first=61 second=231 amount=-1 -kerning first=201 second=361 amount=-1 -kerning first=204 second=121 amount=-1 -kerning first=316 second=965 amount=-1 -kerning first=8366 second=224 amount=-1 -kerning first=221 second=1028 amount=-3 -kerning first=936 second=336 amount=-2 -kerning first=247 second=220 amount=-2 -kerning first=367 second=350 amount=-1 -kerning first=160 second=232 amount=-1 -kerning first=266 second=1176 amount=1 -kerning first=42 second=244 amount=-1 -kerning first=182 second=374 amount=-5 -kerning first=297 second=289 amount=-1 -kerning first=1078 second=337 amount=-2 -kerning first=1081 second=99 amount=-1 -kerning first=325 second=221 amount=-5 -kerning first=900 second=351 amount=-1 -kerning first=903 second=111 amount=-1 -kerning first=79 second=8230 amount=-1 -kerning first=88 second=83 amount=-1 -kerning first=108 second=245 amount=-1 -kerning first=371 second=290 amount=-2 -kerning first=968 second=210 amount=-2 -kerning first=270 second=1051 amount=-1 -kerning first=189 second=84 amount=-5 -kerning first=301 second=234 amount=-1 -kerning first=63 second=1090 amount=-3 -kerning first=1083 second=277 amount=-1 -kerning first=209 second=246 amount=-1 -kerning first=8370 second=1079 amount=-1 -kerning first=901 second=1035 amount=-5 -kerning first=904 second=291 amount=-1 -kerning first=89 second=258 amount=-5 -kerning first=1119 second=211 amount=-2 -kerning first=344 second=8212 amount=-1 -kerning first=1219 second=113 amount=-1 -kerning first=255 second=85 amount=-2 -kerning first=375 second=235 amount=-1 -kerning first=165 second=335 amount=-1 -kerning first=168 second=97 amount=-1 -kerning first=47 second=347 amount=-1 -kerning first=190 second=259 amount=-1 -kerning first=193 second=34 amount=-3 -kerning first=213 second=196 amount=-2 -kerning first=334 second=86 amount=-2 -kerning first=1117 second=1184 amount=-5 -kerning first=1168 second=366 amount=-2 -kerning first=356 second=248 amount=-3 -kerning first=951 second=171 amount=-3 -kerning first=113 second=350 amount=-1 -kerning first=967 second=8217 amount=-3 -kerning first=166 second=966 amount=-1 -kerning first=169 second=275 amount=-1 -kerning first=8224 second=115 amount=-1 -kerning first=51 second=289 amount=-1 -kerning first=306 second=337 amount=-1 -kerning first=311 second=99 amount=-2 -kerning first=74 second=221 amount=-5 -kerning first=214 second=351 amount=-1 -kerning first=91 second=1177 amount=-1 -kerning first=94 second=363 amount=-1 -kerning first=234 second=967 amount=-2 -kerning first=360 second=198 amount=-2 -kerning first=949 second=1078 amount=-1 -kerning first=117 second=290 amount=-2 -kerning first=260 second=210 amount=-2 -kerning first=55 second=234 amount=-1 -kerning first=195 second=364 amount=-2 -kerning first=313 second=277 amount=-1 -kerning first=1095 second=1079 amount=-1 -kerning first=215 second=1035 amount=-5 -kerning first=912 second=1098 amount=-3 -kerning first=928 second=101 amount=-1 -kerning first=95 second=1059 amount=-2 -kerning first=92 second=8212 amount=-2 -kerning first=361 second=353 amount=-1 -kerning first=956 second=263 amount=-1 -kerning first=121 second=235 amount=-1 -kerning first=193 second=8216 amount=-3 -kerning first=317 second=224 amount=-1 -kerning first=73 second=8250 amount=-1 -kerning first=82 second=86 amount=-1 -kerning first=931 second=279 amount=-1 -kerning first=923 second=970 amount=-1 -kerning first=102 second=248 amount=-1 -kerning first=242 second=378 amount=-1 -kerning first=962 second=213 amount=-2 -kerning first=259 second=8217 amount=-1 -kerning first=1037 second=355 amount=-1 -kerning first=1041 second=115 amount=-1 -kerning first=183 second=87 amount=-5 -kerning first=60 second=337 amount=-1 -kerning first=63 second=99 amount=-1 -kerning first=200 second=940 amount=-1 -kerning first=203 second=249 amount=-1 -kerning first=80 second=953 amount=-1 -kerning first=243 second=1078 amount=-2 -kerning first=963 second=368 amount=-2 -kerning first=126 second=338 amount=-2 -kerning first=162 second=100 amount=-1 -kerning first=271 second=250 amount=-1 -kerning first=41 second=352 amount=-1 -kerning first=184 second=262 amount=-2 -kerning first=296 second=1241 amount=-1 -kerning first=299 second=187 amount=-1 -kerning first=61 second=968 amount=-1 -kerning first=64 second=277 amount=-1 -kerning first=1080 second=227 amount=-1 -kerning first=207 second=199 amount=-2 -kerning first=321 second=1079 amount=-1 -kerning first=8372 second=269 amount=-1 -kerning first=327 second=89 amount=-5 -kerning first=87 second=211 amount=-2 -kerning first=224 second=1098 amount=-1 -kerning first=107 second=353 amount=-1 -kerning first=250 second=263 amount=-1 -kerning first=964 second=1066 amount=-5 -kerning first=961 second=8221 amount=-1 -kerning first=1049 second=240 amount=-1 -kerning first=188 second=212 amount=-2 -kerning first=205 second=1118 amount=-1 -kerning first=208 second=354 amount=-2 -kerning first=1107 second=8222 amount=-3 -kerning first=254 second=213 amount=-2 -kerning first=374 second=341 amount=-3 -kerning first=971 second=253 amount=-1 -kerning first=167 second=225 amount=-1 -kerning first=280 second=115 amount=-1 -kerning first=8211 second=1046 amount=-3 -kerning first=186 second=1185 amount=-3 -kerning first=189 second=367 amount=-1 -kerning first=209 second=1038 amount=-2 -kerning first=8377 second=947 amount=-4 -kerning first=904 second=1101 amount=-1 -kerning first=86 second=8218 amount=-4 -kerning first=1119 second=945 amount=-1 -kerning first=358 second=116 amount=-1 -kerning first=950 second=268 amount=-2 -kerning first=255 second=368 amount=-2 -kerning first=375 second=972 amount=-1 -kerning first=378 second=281 amount=-1 -kerning first=50 second=1241 amount=-1 -kerning first=53 second=187 amount=-1 -kerning first=310 second=227 amount=-1 -kerning first=70 second=1079 amount=-1 -kerning first=1096 second=269 amount=-1 -kerning first=76 second=89 amount=-6 -kerning first=910 second=973 amount=-2 -kerning first=96 second=251 amount=-1 -kerning first=256 second=1066 amount=-5 -kerning first=253 second=8221 amount=-3 -kerning first=1263 second=106 amount=1 -kerning first=1034 second=118 amount=-1 -kerning first=287 second=240 amount=-1 -kerning first=194 second=943 amount=-1 -kerning first=197 second=252 amount=-1 -kerning first=306 second=1256 amount=-2 -kerning first=77 second=266 amount=-2 -kerning first=80 second=39 amount=-3 -kerning first=332 second=8222 amount=-1 -kerning first=926 second=229 amount=-1 -kerning first=1184 second=119 amount=-3 -kerning first=952 second=1195 amount=-1 -kerning first=955 second=371 amount=-1 -kerning first=123 second=103 amount=-1 -kerning first=1298 second=286 amount=-2 -kerning first=380 second=1257 amount=-1 -kerning first=35 second=355 amount=-1 -kerning first=38 second=115 amount=-1 -kerning first=1028 second=1046 amount=-2 -kerning first=177 second=267 amount=-1 -kerning first=8240 second=346 amount=-1 -kerning first=1073 second=230 amount=-1 -kerning first=8363 second=273 amount=-1 -kerning first=8366 second=45 amount=-2 -kerning first=928 second=1240 amount=-2 -kerning first=956 second=1069 amount=-1 -kerning first=964 second=81 amount=-2 -kerning first=121 second=972 amount=-1 -kerning first=124 second=281 amount=-1 -kerning first=1039 second=243 amount=-1 -kerning first=62 second=227 amount=-1 -kerning first=205 second=117 amount=-1 -kerning first=202 second=357 amount=-1 -kerning first=322 second=269 amount=-1 -kerning first=8369 second=220 amount=-2 -kerning first=371 second=106 amount=1 -kerning first=161 second=228 amount=-1 -kerning first=274 second=118 amount=-4 -kerning first=43 second=240 amount=-1 -kerning first=1047 second=193 amount=-1 -kerning first=179 second=1194 amount=-2 -kerning first=183 second=370 amount=-2 -kerning first=298 second=283 amount=-1 -kerning first=60 second=1256 amount=-2 -kerning first=209 second=67 amount=-2 -kerning first=8370 second=375 amount=-1 -kerning first=80 second=8222 amount=-4 -kerning first=89 second=79 amount=-3 -kerning first=1116 second=257 amount=-1 -kerning first=352 second=119 amount=-1 -kerning first=249 second=371 amount=-1 -kerning first=369 second=1026 amount=-5 -kerning first=372 second=286 amount=-2 -kerning first=126 second=1257 amount=-1 -kerning first=1048 second=346 amount=-1 -kerning first=302 second=230 amount=-1 -kerning first=1084 second=273 amount=-1 -kerning first=1080 second=964 amount=-3 -kerning first=327 second=372 amount=-5 -kerning first=8366 second=8249 amount=-3 -kerning first=324 second=947 amount=-1 -kerning first=905 second=287 amount=-1 -kerning first=87 second=945 amount=-3 -kerning first=948 second=219 amount=-2 -kerning first=1202 second=1108 amount=-1 -kerning first=250 second=1069 amount=-1 -kerning first=256 second=81 amount=-2 -kerning first=376 second=231 amount=-4 -kerning first=973 second=121 amount=-1 -kerning first=8220 second=196 amount=-3 -kerning first=1049 second=1028 amount=-2 -kerning first=1062 second=288 amount=-1 -kerning first=300 second=1263 amount=-1 -kerning first=1118 second=1176 amount=-1 -kerning first=357 second=244 amount=-1 -kerning first=117 second=106 amount=1 -kerning first=1223 second=289 amount=-1 -kerning first=374 second=1298 amount=-5 -kerning first=167 second=962 amount=-1 -kerning first=8221 second=351 amount=-1 -kerning first=8225 second=111 amount=-1 -kerning first=52 second=283 amount=-1 -kerning first=1095 second=375 amount=-1 -kerning first=95 second=359 amount=-1 -kerning first=1119 second=8211 amount=-2 -kerning first=98 second=119 amount=-1 -kerning first=238 second=271 amount=-1 -kerning first=956 second=84 amount=-5 -kerning first=381 second=334 amount=-1 -kerning first=175 second=218 amount=-2 -kerning first=8222 second=1035 amount=-5 -kerning first=8226 second=291 amount=-1 -kerning first=56 second=230 amount=-1 -kerning first=196 second=360 amount=-2 -kerning first=317 second=45 amount=-2 -kerning first=314 second=273 amount=-1 -kerning first=310 second=964 amount=-4 -kerning first=73 second=947 amount=-4 -kerning first=76 second=372 amount=-4 -kerning first=923 second=335 amount=-1 -kerning first=931 second=97 amount=-1 -kerning first=958 second=259 amount=-1 -kerning first=962 second=34 amount=-3 -kerning first=122 second=231 amount=-1 -kerning first=37 second=243 amount=-1 -kerning first=176 second=373 amount=-4 -kerning first=287 second=1028 amount=-2 -kerning first=54 second=1263 amount=-1 -kerning first=1071 second=336 amount=-2 -kerning first=318 second=220 amount=-2 -kerning first=8365 second=171 amount=-3 -kerning first=223 second=232 amount=-1 -kerning first=338 second=1176 amount=-1 -kerning first=926 second=966 amount=-1 -kerning first=934 second=275 amount=-1 -kerning first=103 second=244 amount=-1 -kerning first=271 second=71 amount=-2 -kerning first=1044 second=111 amount=-1 -kerning first=184 second=83 amount=-1 -kerning first=296 second=233 amount=-1 -kerning first=61 second=333 amount=-1 -kerning first=204 second=245 amount=-1 -kerning first=321 second=375 amount=-1 -kerning first=84 second=257 amount=-2 -kerning first=250 second=84 amount=-5 -kerning first=964 second=364 amount=-2 -kerning first=160 second=334 amount=-2 -kerning first=273 second=246 amount=-1 -kerning first=124 second=1090 amount=-3 -kerning first=42 second=346 amount=-1 -kerning first=1039 second=1035 amount=-5 -kerning first=65 second=273 amount=-1 -kerning first=62 second=964 amount=-3 -kerning first=317 second=8249 amount=-3 -kerning first=903 second=235 amount=-1 -kerning first=105 second=1108 amount=-1 -kerning first=108 second=347 amount=-1 -kerning first=251 second=259 amount=-1 -kerning first=254 second=34 amount=-3 -kerning first=962 second=8216 amount=-3 -kerning first=161 second=965 amount=-1 -kerning first=8211 second=354 amount=-4 -kerning first=43 second=1028 amount=-2 -kerning first=46 second=288 amount=-1 -kerning first=301 second=336 amount=-2 -kerning first=69 second=220 amount=-2 -kerning first=1087 second=171 amount=-3 -kerning first=209 second=350 amount=-1 -kerning first=86 second=1176 amount=-1 -kerning first=1108 second=8217 amount=-1 -kerning first=235 second=47 amount=-1 -kerning first=950 second=87 amount=-5 -kerning first=372 second=1096 amount=-2 -kerning first=375 second=337 amount=-1 -kerning first=378 second=99 amount=-1 -kerning first=168 second=221 amount=-5 -kerning first=278 second=351 amount=-1 -kerning first=50 second=233 amount=-1 -kerning first=190 second=363 amount=-1 -kerning first=70 second=375 amount=-1 -kerning first=910 second=338 amount=-3 -kerning first=915 second=100 amount=-1 -kerning first=87 second=8211 amount=-2 -kerning first=1171 second=250 amount=-1 -kerning first=1168 second=941 amount=-1 -kerning first=356 second=352 amount=-1 -kerning first=951 second=262 amount=-2 -kerning first=1220 second=1241 amount=-1 -kerning first=256 second=364 amount=-2 -kerning first=376 second=968 amount=-2 -kerning first=379 second=277 amount=-1 -kerning first=1027 second=199 amount=-2 -kerning first=169 second=376 amount=-5 -kerning first=282 second=291 amount=-1 -kerning first=1065 second=339 amount=-1 -kerning first=188 second=8212 amount=-2 -kerning first=191 second=1059 amount=-2 -kerning first=1062 second=1098 amount=-2 -kerning first=77 second=85 amount=-2 -kerning first=1097 second=263 amount=-1 -kerning first=955 second=212 amount=-2 -kerning first=254 second=8216 amount=-3 -kerning first=1028 second=354 amount=-1 -kerning first=167 second=8250 amount=-1 -kerning first=55 second=336 amount=-2 -kerning first=198 second=248 amount=-1 -kerning first=316 second=171 amount=-3 -kerning first=333 second=8217 amount=-1 -kerning first=928 second=225 amount=-1 -kerning first=1185 second=115 amount=-1 -kerning first=953 second=1185 amount=-2 -kerning first=956 second=367 amount=-1 -kerning first=121 second=337 amount=-1 -kerning first=124 second=99 amount=-1 -kerning first=1240 second=379 amount=-1 -kerning first=36 second=351 amount=-1 -kerning first=39 second=111 amount=-1 -kerning first=175 second=953 amount=-1 -kerning first=178 second=261 amount=-1 -kerning first=8226 second=1101 amount=-1 -kerning first=1074 second=226 amount=-1 -kerning first=8364 second=268 amount=-2 -kerning first=365 second=1241 amount=-1 -kerning first=125 second=277 amount=-1 -kerning first=37 second=1035 amount=-5 -kerning first=40 second=291 amount=-1 -kerning first=183 second=211 amount=-2 -kerning first=298 second=101 amount=-1 -kerning first=203 second=353 amount=-1 -kerning first=206 second=113 amount=-1 -kerning first=323 second=263 amount=-1 -kerning first=8370 second=216 amount=-2 -kerning first=1103 second=1066 amount=-5 -kerning first=947 second=240 amount=-1 -kerning first=249 second=212 amount=-2 -kerning first=372 second=102 amount=-1 -kerning first=963 second=943 amount=-1 -kerning first=162 second=224 amount=-1 -kerning first=271 second=354 amount=-5 -kerning first=180 second=1184 amount=-5 -kerning first=184 second=366 amount=-2 -kerning first=299 second=279 amount=-1 -kerning first=296 second=970 amount=-1 -kerning first=67 second=171 amount=-1 -kerning first=327 second=213 amount=-2 -kerning first=8366 second=1195 amount=-1 -kerning first=8372 second=371 amount=-1 -kerning first=905 second=103 amount=-1 -kerning first=1117 second=253 amount=-1 -kerning first=944 second=267 amount=-1 -kerning first=250 second=367 amount=-1 -kerning first=247 second=1185 amount=-3 -kerning first=273 second=1038 amount=-2 -kerning first=8216 second=242 amount=-1 -kerning first=1046 second=1101 amount=-2 -kerning first=303 second=226 amount=-1 -kerning first=1085 second=268 amount=-2 -kerning first=903 second=972 amount=-1 -kerning first=906 second=281 amount=-1 -kerning first=91 second=250 amount=-1 -kerning first=88 second=941 amount=-2 -kerning first=248 second=8220 amount=-1 -kerning first=971 second=357 amount=-1 -kerning first=164 second=1079 amount=-1 -kerning first=170 second=89 amount=-5 -kerning first=46 second=1098 amount=-3 -kerning first=49 second=339 amount=-1 -kerning first=1051 second=973 amount=-1 -kerning first=52 second=101 amount=-1 -kerning first=192 second=251 amount=-1 -kerning first=75 second=38 amount=-2 -kerning first=72 second=263 amount=-1 -kerning first=1095 second=216 amount=-2 -kerning first=330 second=1066 amount=-5 -kerning first=326 second=8221 amount=-1 -kerning first=912 second=228 amount=-1 -kerning first=358 second=240 amount=-1 -kerning first=946 second=1194 amount=-2 -kerning first=950 second=370 amount=-2 -kerning first=1224 second=283 amount=-1 -kerning first=255 second=943 amount=-1 -kerning first=258 second=252 amount=-1 -kerning first=375 second=1256 amount=-2 -kerning first=175 second=39 amount=-3 -kerning first=53 second=279 amount=-1 -kerning first=50 second=970 amount=-1 -kerning first=1067 second=229 amount=-1 -kerning first=76 second=213 amount=-1 -kerning first=1090 second=1195 amount=-1 -kerning first=1096 second=371 amount=-1 -kerning first=910 second=1257 amount=-4 -kerning first=96 second=355 amount=-1 -kerning first=239 second=267 amount=-1 -kerning first=1263 second=230 amount=-1 -kerning first=176 second=214 amount=-2 -kerning first=282 second=1101 amount=-1 -kerning first=8230 second=287 amount=-1 -kerning first=57 second=226 amount=-1 -kerning first=1065 second=1262 amount=-1 -kerning first=197 second=356 amount=-5 -kerning first=200 second=116 amount=-1 -kerning first=315 second=268 amount=-1 -kerning first=77 second=368 amount=-2 -kerning first=1103 second=81 amount=-2 -kerning first=1184 second=243 amount=-2 -kerning first=123 second=227 amount=-1 -kerning first=177 second=369 amount=-1 -kerning first=8260 second=232 amount=-1 -kerning first=1073 second=332 amount=-2 -kerning first=321 second=216 amount=-2 -kerning first=8363 second=374 amount=-5 -kerning first=78 second=1066 amount=-5 -kerning first=928 second=962 amount=-1 -kerning first=1194 second=193 amount=-1 -kerning first=367 second=283 amount=-1 -kerning first=121 second=1256 amount=-2 -kerning first=266 second=1044 amount=-1 -kerning first=273 second=67 amount=-2 -kerning first=185 second=79 amount=-2 -kerning first=297 second=229 amount=-1 -kerning first=1074 second=963 amount=-1 -kerning first=1078 second=271 amount=-2 -kerning first=202 second=920 amount=-2 -kerning first=322 second=371 amount=-1 -kerning first=317 second=1195 amount=-1 -kerning first=900 second=286 amount=-2 -kerning first=942 second=218 amount=-2 -kerning first=371 second=230 amount=-1 -kerning first=965 second=360 amount=-2 -kerning first=270 second=923 amount=-2 -kerning first=274 second=242 amount=-1 -kerning first=40 second=1101 amount=-1 -kerning first=183 second=945 amount=-1 -kerning first=298 second=1240 amount=-2 -kerning first=1083 second=219 amount=-2 -kerning first=323 second=1069 amount=-1 -kerning first=330 second=81 amount=-2 -kerning first=904 second=231 amount=-1 -kerning first=8377 second=259 amount=-1 -kerning first=1108 second=1175 amount=-1 -kerning first=1119 second=121 amount=-1 -kerning first=943 second=373 amount=-2 -kerning first=1206 second=288 amount=-1 -kerning first=369 second=1263 amount=-1 -kerning first=165 second=269 amount=-1 -kerning first=8212 second=350 amount=-1 -kerning first=44 second=973 amount=-1 -kerning first=302 second=332 amount=-2 -kerning first=70 second=216 amount=-1 -kerning first=1084 second=374 amount=-5 -kerning first=93 second=118 amount=-4 -kerning first=1171 second=71 amount=-2 -kerning first=356 second=193 amount=-6 -kerning first=951 second=83 amount=-1 -kerning first=113 second=283 amount=-1 -kerning first=1220 second=233 amount=-1 -kerning first=376 second=333 amount=-4 -kerning first=973 second=245 amount=-1 -kerning first=169 second=217 amount=-2 -kerning first=51 second=229 amount=-1 -kerning first=194 second=119 amount=-4 -kerning first=191 second=359 amount=-1 -kerning first=303 second=963 amount=-1 -kerning first=306 second=271 amount=-1 -kerning first=211 second=1026 amount=-2 -kerning first=214 second=286 amount=-2 -kerning first=906 second=1090 amount=-3 -kerning first=1174 second=246 amount=-1 -kerning first=237 second=218 amount=-2 -kerning first=357 second=346 amount=-1 -kerning first=354 second=1107 amount=-2 -kerning first=117 second=230 amount=-1 -kerning first=380 second=273 amount=-1 -kerning first=167 second=947 amount=-4 -kerning first=170 second=372 amount=-5 -kerning first=8225 second=235 amount=-1 -kerning first=52 second=1240 amount=-2 -kerning first=49 second=1262 amount=-2 -kerning first=313 second=219 amount=-1 -kerning first=72 second=1069 amount=-1 -kerning first=78 second=81 amount=-2 -kerning first=1101 second=34 amount=-1 -kerning first=333 second=1175 amount=-2 -kerning first=912 second=965 amount=-1 -kerning first=238 second=373 amount=-4 -kerning first=358 second=1028 amount=-2 -kerning first=361 second=288 amount=-2 -kerning first=289 second=232 amount=-1 -kerning first=56 second=332 amount=-2 -kerning first=1067 second=966 amount=-1 -kerning first=314 second=374 amount=-5 -kerning first=8364 second=87 amount=-5 -kerning first=79 second=256 amount=-2 -kerning first=216 second=1298 amount=-1 -kerning first=931 second=221 amount=-5 -kerning first=1186 second=111 amount=-1 -kerning first=365 second=233 amount=-1 -kerning first=958 second=363 amount=-1 -kerning first=122 second=333 amount=-1 -kerning first=1037 second=290 amount=-2 -kerning first=176 second=949 amount=-1 -kerning first=179 second=257 amount=-1 -kerning first=57 second=963 amount=-1 -kerning first=60 second=271 amount=-1 -kerning first=323 second=84 amount=-5 -kerning first=8365 second=262 amount=-2 -kerning first=1103 second=364 amount=-2 -kerning first=223 second=334 amount=-2 -kerning first=934 second=376 amount=-5 -kerning first=103 second=346 amount=-1 -kerning first=955 second=8212 amount=-2 -kerning first=960 second=1059 amount=-2 -kerning first=126 second=273 amount=-1 -kerning first=162 second=45 amount=-2 -kerning first=123 second=964 amount=-3 -kerning first=41 second=287 amount=-1 -kerning first=1044 second=235 amount=-1 -kerning first=296 second=335 amount=-1 -kerning first=299 second=97 amount=-1 -kerning first=64 second=219 amount=-2 -kerning first=201 second=1108 amount=-1 -kerning first=204 second=347 amount=-1 -kerning first=327 second=34 amount=-3 -kerning first=8372 second=212 amount=-2 -kerning first=84 second=361 amount=-2 -kerning first=87 second=121 amount=-1 -kerning first=1101 second=8216 amount=-1 -kerning first=230 second=46 amount=-1 -kerning first=350 second=196 amount=-1 -kerning first=928 second=8250 amount=-1 -kerning first=967 second=248 amount=-1 -kerning first=163 second=220 amount=-2 -kerning first=273 second=350 amount=-1 -kerning first=182 second=1176 amount=-1 -kerning first=185 second=362 amount=-2 -kerning first=297 second=966 amount=-1 -kerning first=300 second=275 amount=-1 -kerning first=65 second=374 amount=-5 -kerning first=1085 second=87 amount=-5 -kerning first=8369 second=1185 amount=-3 -kerning first=903 second=337 amount=-1 -kerning first=906 second=99 amount=-1 -kerning first=91 second=71 amount=-2 -kerning first=1118 second=249 amount=-1 -kerning first=942 second=953 amount=-1 -kerning first=354 second=111 amount=-3 -kerning first=251 second=363 amount=-1 -kerning first=164 second=375 amount=-1 -kerning first=1051 second=338 amount=-2 -kerning first=183 second=8211 amount=-2 -kerning first=1063 second=100 amount=-1 -kerning first=72 second=84 amount=-5 -kerning first=1087 second=262 amount=-2 -kerning first=330 second=364 amount=-2 -kerning first=8370 second=8220 amount=-3 -kerning first=904 second=968 amount=-1 -kerning first=92 second=246 amount=-1 -kerning first=1170 second=199 amount=-2 -kerning first=352 second=1035 amount=-1 -kerning first=950 second=211 amount=-2 -kerning first=1206 second=1098 amount=-2 -kerning first=249 second=8212 amount=-2 -kerning first=252 second=1059 amount=-2 -kerning first=1219 second=339 amount=-1 -kerning first=1224 second=101 amount=-1 -kerning first=1026 second=113 amount=-1 -kerning first=162 second=8249 amount=-3 -kerning first=47 second=1094 amount=-1 -kerning first=50 second=335 amount=-1 -kerning first=53 second=97 amount=-1 -kerning first=70 second=951 amount=-1 -kerning first=73 second=259 amount=-1 -kerning first=1096 second=212 amount=-2 -kerning first=76 second=34 amount=-3 -kerning first=327 second=8216 amount=-3 -kerning first=915 second=224 amount=-1 -kerning first=1171 second=354 amount=-5 -kerning first=1168 second=1118 amount=-1 -kerning first=948 second=1184 amount=-5 -kerning first=951 second=366 amount=-2 -kerning first=1220 second=970 amount=-1 -kerning first=1034 second=63 amount=-5 -kerning first=8230 second=103 amount=-1 -kerning first=51 second=966 amount=-1 -kerning first=54 second=275 amount=-1 -kerning first=315 second=87 amount=-4 -kerning first=1094 second=1185 amount=-2 -kerning first=338 second=249 amount=-1 -kerning first=100 second=111 amount=-1 -kerning first=1174 second=1038 amount=-1 -kerning first=240 second=261 amount=-1 -kerning first=237 second=953 amount=-1 -kerning first=1298 second=226 amount=-1 -kerning first=35 second=290 amount=-2 -kerning first=177 second=210 amount=-2 -kerning first=291 second=100 amount=-1 -kerning first=8225 second=972 amount=-1 -kerning first=8240 second=281 amount=-1 -kerning first=198 second=352 amount=-1 -kerning first=316 second=262 amount=-2 -kerning first=78 second=364 amount=-2 -kerning first=1095 second=8220 amount=-3 -kerning first=221 second=277 amount=-4 -kerning first=936 second=89 amount=-5 -kerning first=361 second=1098 amount=-3 -kerning first=367 second=101 amount=-1 -kerning first=1240 second=955 amount=-2 -kerning first=39 second=235 amount=-1 -kerning first=178 second=365 amount=-1 -kerning first=322 second=212 amount=-2 -kerning first=8361 second=1194 amount=-2 -kerning first=8364 second=370 amount=-2 -kerning first=76 second=8216 amount=-3 -kerning first=942 second=39 amount=-3 -kerning first=365 second=970 amount=-1 -kerning first=161 second=171 amount=-3 -kerning first=176 second=8217 amount=-3 -kerning first=298 second=225 amount=-1 -kerning first=66 second=87 amount=-1 -kerning first=318 second=1185 amount=-3 -kerning first=323 second=367 amount=-1 -kerning first=86 second=249 amount=-2 -kerning first=243 second=8218 amount=-1 -kerning first=372 second=226 amount=-2 -kerning first=47 second=100 amount=-2 -kerning first=1044 second=972 amount=-1 -kerning first=1048 second=281 amount=-1 -kerning first=184 second=941 amount=-1 -kerning first=44 second=338 amount=-1 -kerning first=207 second=1241 amount=-1 -kerning first=321 second=8220 amount=-3 -kerning first=905 second=227 amount=-1 -kerning first=90 second=199 amount=-1 -kerning first=1117 second=357 amount=-1 -kerning first=1168 second=117 amount=-1 -kerning first=944 second=369 amount=-1 -kerning first=113 second=101 amount=-1 -kerning first=253 second=251 amount=-1 -kerning first=166 second=263 amount=-1 -kerning first=1081 second=1194 amount=-2 -kerning first=1085 second=370 amount=-2 -kerning first=903 second=1256 amount=-2 -kerning first=88 second=1118 amount=-1 -kerning first=91 second=354 amount=-5 -kerning first=1174 second=67 amount=-1 -kerning first=237 second=39 amount=-3 -kerning first=952 second=79 amount=-2 -kerning first=114 second=279 amount=-1 -kerning first=1223 second=229 amount=-1 -kerning first=374 second=1081 amount=-3 -kerning first=971 second=920 amount=-2 -kerning first=170 second=213 amount=-2 -kerning first=1051 second=1257 amount=-1 -kerning first=52 second=225 amount=-1 -kerning first=192 second=355 amount=-1 -kerning first=195 second=115 amount=-1 -kerning first=69 second=1185 amount=-3 -kerning first=72 second=367 amount=-1 -kerning first=92 second=1038 amount=-2 -kerning first=1175 second=242 amount=-1 -kerning first=238 second=214 amount=-2 -kerning first=950 second=945 amount=-1 -kerning first=118 second=226 amount=-1 -kerning first=1224 second=1240 amount=-2 -kerning first=1219 second=1262 amount=-2 -kerning first=258 second=356 amount=-5 -kerning first=381 second=268 amount=-1 -kerning first=8226 second=231 amount=-1 -kerning first=199 second=65 amount=-1 -kerning first=70 second=8220 amount=-3 -kerning first=923 second=269 amount=-1 -kerning first=239 second=369 amount=-1 -kerning first=1263 second=332 amount=-2 -kerning first=1037 second=106 amount=1 -kerning first=172 second=1066 amount=-5 -kerning first=169 second=8221 amount=-3 -kerning first=200 second=240 amount=-1 -kerning first=315 second=370 amount=-1 -kerning first=8365 second=83 amount=-1 -kerning first=77 second=943 amount=-1 -kerning first=80 second=252 amount=-1 -kerning first=934 second=217 amount=-2 -kerning first=963 second=119 amount=-4 -kerning first=960 second=359 amount=-1 -kerning first=1298 second=963 amount=-1 -kerning first=41 second=103 amount=-1 -kerning first=1035 second=1026 amount=-5 -kerning first=180 second=253 amount=-1 -kerning first=8260 second=334 amount=-2 -kerning first=8240 second=1090 amount=-3 -kerning first=61 second=267 amount=-1 -kerning first=1113 second=120 amount=-2 -kerning first=345 second=242 amount=-1 -kerning first=928 second=947 amount=-4 -kerning first=936 second=372 amount=-5 -kerning first=367 second=1240 amount=-2 -kerning first=160 second=268 amount=-2 -kerning first=42 second=281 amount=-1 -kerning first=39 second=972 amount=-1 -kerning first=1046 second=231 amount=-2 -kerning first=88 second=117 amount=-1 -kerning first=105 second=973 amount=-1 -kerning first=1203 second=232 amount=-1 -kerning first=371 second=332 amount=-2 -kerning first=968 second=244 amount=-1 -kerning first=164 second=216 amount=-2 -kerning first=189 second=118 amount=-4 -kerning first=298 second=962 amount=-1 -kerning first=63 second=1194 amount=-2 -kerning first=1075 second=8230 amount=-3 -kerning first=1087 second=83 amount=-1 -kerning first=209 second=283 amount=-1 -kerning first=8377 second=363 amount=-1 -kerning first=8370 second=1177 amount=-1 -kerning first=904 second=333 amount=-1 -kerning first=92 second=67 amount=-2 -kerning first=1119 second=245 amount=-1 -kerning first=946 second=257 amount=-1 -kerning first=252 second=359 amount=-1 -kerning first=255 second=119 amount=-4 -kerning first=375 second=271 amount=-1 -kerning first=372 second=963 amount=-3 -kerning first=162 second=1195 amount=-1 -kerning first=165 second=371 amount=-1 -kerning first=278 second=286 amount=-2 -kerning first=1048 second=1090 amount=-3 -kerning first=187 second=1046 amount=-3 -kerning first=305 second=218 amount=-2 -kerning first=8372 second=8212 amount=-2 -kerning first=8378 second=1059 amount=-2 -kerning first=905 second=964 amount=-3 -kerning first=915 second=45 amount=-2 -kerning first=93 second=242 amount=-1 -kerning first=910 second=273 amount=-4 -kerning first=230 second=947 amount=-1 -kerning first=356 second=287 amount=-2 -kerning first=113 second=1240 amount=-2 -kerning first=1220 second=335 amount=-1 -kerning first=973 second=347 amount=-1 -kerning first=166 second=1069 amount=-1 -kerning first=172 second=81 amount=-2 -kerning first=282 second=231 amount=-1 -kerning first=194 second=243 amount=-1 -kerning first=306 second=373 amount=-4 -kerning first=916 second=220 amount=-2 -kerning first=1169 second=1113 amount=-3 -kerning first=952 second=362 amount=-2 -kerning first=117 second=332 amount=-2 -kerning first=1223 second=966 amount=-1 -kerning first=260 second=244 amount=-1 -kerning first=35 second=106 amount=1 -kerning first=8225 second=337 amount=-1 -kerning first=8240 second=99 amount=-1 -kerning first=52 second=962 amount=-1 -kerning first=1069 second=221 amount=-3 -kerning first=316 second=83 amount=-1 -kerning first=1095 second=1177 amount=-1 -kerning first=1178 second=290 amount=-1 -kerning first=238 second=949 amount=-1 -kerning first=950 second=8211 amount=-2 -kerning first=121 second=271 amount=-1 -kerning first=118 second=963 amount=-1 -kerning first=266 second=194 amount=-1 -kerning first=36 second=286 amount=-2 -kerning first=39 second=56 amount=-1 -kerning first=1036 second=234 amount=-2 -kerning first=289 second=334 amount=-2 -kerning first=8226 second=968 amount=-1 -kerning first=59 second=218 amount=-2 -kerning first=1070 second=376 amount=-3 -kerning first=8364 second=211 amount=-2 -kerning first=1096 second=8212 amount=-2 -kerning first=1099 second=1059 amount=-2 -kerning first=915 second=8249 amount=-3 -kerning first=102 second=287 amount=-1 -kerning first=1186 second=235 amount=-1 -kerning first=365 second=335 amount=-1 -kerning first=125 second=219 amount=-2 -kerning first=40 second=231 amount=-1 -kerning first=179 second=361 amount=-1 -kerning first=183 second=121 amount=-1 -kerning first=60 second=373 amount=-4 -kerning first=200 second=1028 amount=-2 -kerning first=203 second=288 amount=-2 -kerning first=8365 second=366 amount=-2 -kerning first=369 second=275 amount=-1 -kerning first=372 second=47 amount=-3 -kerning first=126 second=374 amount=-5 -kerning first=268 second=1033 amount=-1 -kerning first=271 second=289 amount=-1 -kerning first=1044 second=337 amount=-1 -kerning first=1048 second=99 amount=-1 -kerning first=299 second=221 amount=-5 -kerning first=1080 second=261 amount=-1 -kerning first=207 second=233 amount=-1 -kerning first=321 second=1177 amount=-1 -kerning first=87 second=245 amount=-3 -kerning first=944 second=210 amount=-2 -kerning first=1202 second=338 amount=-1 -kerning first=1207 second=100 amount=-1 -kerning first=967 second=352 amount=-1 -kerning first=166 second=84 amount=-5 -kerning first=276 second=234 amount=-1 -kerning first=42 second=1090 amount=-3 -kerning first=1049 second=277 amount=-1 -kerning first=188 second=246 amount=-1 -kerning first=1046 second=968 amount=-1 -kerning first=300 second=376 amount=-5 -kerning first=65 second=950 amount=-1 -kerning first=1085 second=211 amount=-2 -kerning first=68 second=258 amount=-2 -kerning first=325 second=1059 amount=-2 -kerning first=322 second=8212 amount=-2 -kerning first=1118 second=353 amount=-1 -kerning first=1169 second=113 amount=-1 -kerning first=354 second=235 amount=-3 -kerning first=114 second=97 amount=-1 -kerning first=167 second=259 amount=-1 -kerning first=170 second=34 amount=-3 -kerning first=46 second=965 amount=-1 -kerning first=1063 second=224 amount=-1 -kerning first=298 second=8250 amount=-1 -kerning first=1083 second=1184 amount=-5 -kerning first=1087 second=366 amount=-2 -kerning first=912 second=171 amount=-3 -kerning first=92 second=350 amount=-1 -kerning first=118 second=47 amount=-3 -kerning first=1224 second=225 amount=-1 -kerning first=53 second=221 amount=-5 -kerning first=196 second=111 amount=-1 -kerning first=193 second=351 amount=-1 -kerning first=305 second=953 amount=-1 -kerning first=310 second=261 amount=-1 -kerning first=70 second=1177 amount=-1 -kerning first=73 second=363 amount=-1 -kerning first=213 second=967 amount=-1 -kerning first=910 second=1078 amount=-2 -kerning first=96 second=290 amount=-2 -kerning first=239 second=210 amount=-2 -kerning first=356 second=1097 amount=-2 -kerning first=951 second=941 amount=-1 -kerning first=34 second=234 amount=-1 -kerning first=1027 second=1241 amount=-1 -kerning first=172 second=364 amount=-2 -kerning first=282 second=968 amount=-1 -kerning first=287 second=277 amount=-1 -kerning first=54 second=376 amount=-5 -kerning first=194 second=1035 amount=-5 -kerning first=197 second=291 amount=-1 -kerning first=1071 second=89 amount=-5 -kerning first=315 second=211 amount=-1 -kerning first=74 second=1059 amount=-2 -kerning first=338 second=353 amount=-1 -kerning first=341 second=113 amount=-1 -kerning first=926 second=263 amount=-1 -kerning first=100 second=235 amount=-1 -kerning first=240 second=365 amount=-1 -kerning first=170 second=8216 amount=-3 -kerning first=291 second=224 amount=-1 -kerning first=8225 second=1256 amount=-2 -kerning first=52 second=8250 amount=-1 -kerning first=1073 second=266 amount=-2 -kerning first=313 second=1184 amount=-6 -kerning first=316 second=366 amount=-2 -kerning first=8366 second=79 amount=-2 -kerning first=221 second=378 amount=-2 -kerning first=936 second=213 amount=-2 -kerning first=238 second=8217 amount=-3 -kerning first=367 second=225 amount=-1 -kerning first=964 second=115 amount=-1 -kerning first=160 second=87 amount=-5 -kerning first=39 second=337 amount=-1 -kerning first=42 second=99 amount=-1 -kerning first=182 second=249 amount=-1 -kerning first=178 second=940 amount=-1 -kerning first=62 second=261 amount=-1 -kerning first=59 second=953 amount=-1 -kerning first=8364 second=945 amount=-1 -kerning first=900 second=226 amount=-1 -kerning first=85 second=198 amount=-2 -kerning first=105 second=338 amount=-2 -kerning first=108 second=100 amount=-1 -kerning first=1186 second=972 amount=-1 -kerning first=161 second=262 amount=-2 -kerning first=274 second=187 amount=-1 -kerning first=40 second=968 amount=-1 -kerning first=46 second=49 amount=-4 -kerning first=43 second=277 amount=-1 -kerning first=186 second=199 amount=-2 -kerning first=301 second=89 amount=-5 -kerning first=206 second=339 amount=-1 -kerning first=209 second=101 amount=-1 -kerning first=203 second=1098 amount=-3 -kerning first=86 second=353 amount=-1 -kerning first=89 second=113 amount=-4 -kerning first=934 second=8221 amount=-3 -kerning first=165 second=212 amount=-2 -kerning first=8218 second=55 amount=-1 -kerning first=47 second=224 amount=-2 -kerning first=1044 second=1256 amount=-1 -kerning first=184 second=1118 amount=-1 -kerning first=187 second=354 amount=-3 -kerning first=302 second=266 amount=-2 -kerning first=305 second=39 amount=-3 -kerning first=64 second=1184 amount=-5 -kerning first=207 second=970 amount=-1 -kerning first=8378 second=359 amount=-1 -kerning first=1117 second=920 amount=-2 -kerning first=356 second=103 amount=-2 -kerning first=948 second=253 amount=-1 -kerning first=113 second=225 amount=-1 -kerning first=1202 second=1257 amount=-1 -kerning first=253 second=355 amount=-1 -kerning first=256 second=115 amount=-1 -kerning first=376 second=267 amount=-4 -kerning first=166 second=367 amount=-1 -kerning first=163 second=1185 amount=-3 -kerning first=8220 second=230 amount=-1 -kerning first=188 second=1038 amount=-2 -kerning first=306 second=214 amount=-2 -kerning first=1085 second=945 amount=-1 -kerning first=214 second=226 amount=-1 -kerning first=332 second=356 amount=-2 -kerning first=354 second=972 amount=-3 -kerning first=357 second=281 amount=-1 -kerning first=164 second=8220 amount=-3 -kerning first=55 second=89 amount=-5 -kerning first=49 second=1079 amount=-1 -kerning first=75 second=251 amount=-1 -kerning first=232 second=8221 amount=-1 -kerning first=1178 second=106 amount=7 -kerning first=361 second=228 amount=-1 -kerning first=956 second=118 amount=-4 -kerning first=1224 second=962 amount=-1 -kerning first=175 second=252 amount=-1 -kerning first=8226 second=333 amount=-1 -kerning first=56 second=266 amount=-2 -kerning first=59 second=39 amount=-3 -kerning first=317 second=79 amount=-2 -kerning first=8361 second=257 amount=-1 -kerning first=1099 second=359 amount=-1 -kerning first=1102 second=119 amount=-1 -kerning first=915 second=1195 amount=-1 -kerning first=923 second=371 amount=-1 -kerning first=1176 second=1026 amount=-5 -kerning first=102 second=103 amount=-1 -kerning first=122 second=267 amount=-1 -kerning first=1037 second=230 amount=-1 -kerning first=8230 second=964 amount=-3 -kerning first=60 second=214 amount=-2 -kerning first=1071 second=372 amount=-5 -kerning first=1068 second=947 amount=-1 -kerning first=197 second=1101 amount=-1 -kerning first=315 second=945 amount=-1 -kerning first=80 second=356 amount=-5 -kerning first=223 second=268 amount=-2 -kerning first=926 second=1069 amount=-1 -kerning first=100 second=972 amount=-1 -kerning first=103 second=281 amount=-1 -kerning first=1187 second=231 amount=-1 -kerning first=963 second=243 amount=-1 -kerning first=41 second=227 amount=-1 -kerning first=1035 second=1263 amount=-1 -kerning first=180 second=357 amount=-1 -kerning first=184 second=117 amount=-1 -kerning first=296 second=269 amount=-1 -kerning first=61 second=369 amount=-1 -kerning first=201 second=973 amount=-1 -kerning first=8363 second=1176 amount=-1 -kerning first=8366 second=362 amount=-2 -kerning first=350 second=106 amount=1 -kerning first=107 second=228 amount=-1 -kerning first=250 second=118 amount=-4 -kerning first=367 second=962 amount=-1 -kerning first=124 second=1194 amount=-2 -kerning first=160 second=370 amount=-2 -kerning first=273 second=283 amount=-1 -kerning first=1046 second=333 amount=-2 -kerning first=188 second=67 amount=-2 -kerning first=300 second=217 amount=-2 -kerning first=1081 second=257 amount=-1 -kerning first=1078 second=949 amount=-2 -kerning first=325 second=359 amount=-1 -kerning first=8364 second=8211 amount=-2 -kerning first=328 second=119 amount=-1 -kerning first=900 second=963 amount=-1 -kerning first=903 second=271 amount=-1 -kerning first=346 second=1026 amount=-1 -kerning first=105 second=1257 amount=-1 -kerning first=968 second=346 amount=-1 -kerning first=1063 second=45 amount=-2 -kerning first=189 second=242 amount=-1 -kerning first=1051 second=273 amount=-1 -kerning first=298 second=947 amount=-4 -kerning first=301 second=372 amount=-5 -kerning first=206 second=1262 amount=-2 -kerning first=209 second=1240 amount=-2 -kerning first=1116 second=1108 amount=-2 -kerning first=1119 second=347 amount=-1 -kerning first=946 second=361 amount=-1 -kerning first=950 second=121 amount=-1 -kerning first=255 second=243 amount=-1 -kerning first=375 second=373 amount=-4 -kerning first=8218 second=336 amount=-1 -kerning first=50 second=269 amount=-1 -kerning first=1064 second=220 amount=-2 -kerning first=1084 second=1176 amount=-1 -kerning first=96 second=106 amount=1 -kerning first=1171 second=289 amount=-1 -kerning first=113 second=962 amount=-1 -kerning first=1256 second=221 amount=-3 -kerning first=376 second=1071 amount=-2 -kerning first=373 second=8230 amount=-2 -kerning first=1027 second=233 amount=-1 -kerning first=282 second=333 amount=-1 -kerning first=8230 second=48 amount=-1 -kerning first=54 second=217 amount=-2 -kerning first=306 second=949 amount=-1 -kerning first=311 second=257 amount=-1 -kerning first=77 second=119 amount=-4 -kerning first=1085 second=8211 amount=-2 -kerning first=74 second=359 amount=-1 -kerning first=214 second=963 amount=-1 -kerning first=220 second=44 amount=-1 -kerning first=926 second=84 amount=-5 -kerning first=94 second=1026 amount=-5 -kerning first=357 second=1090 amount=-3 -kerning first=955 second=246 amount=-1 -kerning first=260 second=346 amount=-1 -kerning first=35 second=230 amount=-1 -kerning first=174 second=360 amount=-2 -kerning first=283 second=964 amount=-1 -kerning first=291 second=45 amount=-2 -kerning first=52 second=947 amount=-4 -kerning first=55 second=372 amount=-5 -kerning first=1063 second=8249 amount=-3 -kerning first=1073 second=85 amount=-2 -kerning first=198 second=287 amount=-1 -kerning first=928 second=259 amount=-1 -kerning first=936 second=34 amount=-3 -kerning first=361 second=965 amount=-1 -kerning first=121 second=373 amount=-4 -kerning first=1224 second=8250 amount=-1 -kerning first=1036 second=336 amount=-3 -kerning first=294 second=220 amount=-2 -kerning first=202 second=232 amount=-1 -kerning first=317 second=362 amount=-2 -kerning first=314 second=1176 amount=-1 -kerning first=222 second=374 amount=-3 -kerning first=343 second=289 amount=-1 -kerning first=1186 second=337 amount=-1 -kerning first=965 second=111 amount=-1 -kerning first=962 second=351 amount=-1 -kerning first=161 second=83 amount=-1 -kerning first=119 second=8230 amount=-2 -kerning first=40 second=333 amount=-1 -kerning first=183 second=245 amount=-1 -kerning first=8250 second=1078 amount=-2 -kerning first=60 second=949 amount=-1 -kerning first=63 second=257 amount=-1 -kerning first=315 second=8211 amount=-3 -kerning first=8370 second=250 amount=-1 -kerning first=8365 second=941 amount=-1 -kerning first=86 second=194 amount=-6 -kerning first=103 second=1090 amount=-3 -kerning first=947 second=277 amount=-1 -kerning first=249 second=246 amount=-1 -kerning first=369 second=376 amount=-5 -kerning first=963 second=1035 amount=-5 -kerning first=41 second=964 amount=-3 -kerning first=47 second=45 amount=-1 -kerning first=291 second=8249 amount=-3 -kerning first=302 second=85 amount=-2 -kerning first=1080 second=365 amount=-1 -kerning first=207 second=335 amount=-1 -kerning first=84 second=1108 amount=-3 -kerning first=87 second=347 amount=-2 -kerning first=233 second=34 amount=-1 -kerning first=936 second=8216 amount=-3 -kerning first=113 second=46 amount=2 -kerning first=367 second=8250 amount=-1 -kerning first=276 second=336 amount=-2 -kerning first=48 second=220 amount=-2 -kerning first=8216 second=279 amount=-1 -kerning first=1062 second=171 amount=-1 -kerning first=188 second=350 amount=-1 -kerning first=65 second=1176 amount=-1 -kerning first=332 second=197 amount=-2 -kerning first=91 second=289 amount=-1 -kerning first=354 second=337 amount=-3 -kerning first=357 second=99 amount=-1 -kerning first=254 second=351 amount=-1 -kerning first=374 second=953 amount=-2 -kerning first=164 second=1177 amount=-1 -kerning first=167 second=363 amount=-1 -kerning first=277 second=967 amount=-2 -kerning first=8221 second=226 amount=-1 -kerning first=49 second=375 amount=-1 -kerning first=1066 second=88 amount=-2 -kerning first=192 second=290 amount=-2 -kerning first=1095 second=250 amount=-1 -kerning first=1087 second=941 amount=-1 -kerning first=912 second=262 amount=-2 -kerning first=95 second=234 amount=-1 -kerning first=1170 second=1241 amount=-1 -kerning first=358 second=277 amount=-1 -kerning first=1219 second=1079 amount=-1 -kerning first=255 second=1035 amount=-5 -kerning first=258 second=291 amount=-1 -kerning first=381 second=211 amount=-1 -kerning first=1026 second=339 amount=-1 -kerning first=165 second=8212 amount=-2 -kerning first=168 second=1059 amount=-2 -kerning first=972 second=1098 amount=-1 -kerning first=47 second=8249 amount=-3 -kerning first=56 second=85 amount=-2 -kerning first=1067 second=263 amount=-1 -kerning first=196 second=235 amount=-1 -kerning first=310 second=365 amount=-1 -kerning first=216 second=377 amount=-1 -kerning first=923 second=212 amount=-2 -kerning first=233 second=8216 amount=-1 -kerning first=951 second=1118 amount=-1 -kerning first=113 second=8250 amount=-1 -kerning first=1263 second=266 amount=-2 -kerning first=1027 second=970 amount=-1 -kerning first=176 second=248 amount=-1 -kerning first=1071 second=213 amount=-2 -kerning first=306 second=8217 amount=-3 -kerning first=80 second=197 amount=-4 -kerning first=1103 second=115 amount=-1 -kerning first=223 second=87 amount=-5 -kerning first=926 second=367 amount=-1 -kerning first=916 second=1185 amount=-3 -kerning first=100 second=337 amount=-1 -kerning first=103 second=99 amount=-1 -kerning first=240 second=940 amount=-1 -kerning first=955 second=1038 amount=-2 -kerning first=123 second=261 amount=-1 -kerning first=8260 second=268 amount=-2 -kerning first=61 second=210 amount=-2 -kerning first=1073 second=368 amount=-2 -kerning first=201 second=338 amount=-2 -kerning first=204 second=100 amount=-1 -kerning first=316 second=941 amount=-1 -kerning first=321 second=250 amount=-1 -kerning first=84 second=112 amount=-2 -kerning first=221 second=954 amount=-3 -kerning first=247 second=199 amount=-2 -kerning first=160 second=211 amount=-2 -kerning first=273 second=101 amount=-1 -kerning first=182 second=353 amount=-1 -kerning first=185 second=113 amount=-1 -kerning first=297 second=263 amount=-1 -kerning first=62 second=365 amount=-1 -kerning first=1074 second=1066 amount=-5 -kerning first=351 second=102 amount=-1 -kerning first=942 second=252 amount=-1 -kerning first=108 second=224 amount=-1 -kerning first=1186 second=1256 amount=-1 -kerning first=371 second=266 amount=-2 -kerning first=125 second=1184 amount=-5 -kerning first=161 second=366 amount=-2 -kerning first=274 second=279 amount=-1 -kerning first=301 second=213 amount=-2 -kerning first=60 second=8217 amount=-3 -kerning first=1083 second=253 amount=-1 -kerning first=209 second=225 amount=-1 -kerning first=330 second=115 amount=-1 -kerning first=904 second=267 amount=-1 -kerning first=226 second=1185 amount=-1 -kerning first=249 second=1038 amount=-2 -kerning first=375 second=214 amount=-2 -kerning first=278 second=226 amount=-1 -kerning first=302 second=368 amount=-2 -kerning first=70 second=250 amount=-1 -kerning first=334 second=65 amount=-2 -kerning first=93 second=187 amount=-1 -kerning first=90 second=1241 amount=-1 -kerning first=227 second=8220 amount=-1 -kerning first=356 second=227 amount=-2 -kerning first=948 second=357 amount=-1 -kerning first=951 second=117 amount=-1 -kerning first=113 second=326 amount=2 -kerning first=1220 second=269 amount=-1 -kerning first=376 second=369 amount=-2 -kerning first=169 second=251 amount=-1 -kerning first=51 second=263 amount=-1 -kerning first=1065 second=216 amount=-1 -kerning first=300 second=8221 amount=-3 -kerning first=303 second=1066 amount=-5 -kerning first=332 second=916 amount=-2 -kerning first=906 second=1194 amount=-2 -kerning first=97 second=102 amount=-1 -kerning first=1174 second=283 amount=-1 -kerning first=237 second=252 amount=-1 -kerning first=354 second=1256 amount=-1 -kerning first=955 second=67 amount=-2 -kerning first=117 second=266 amount=-2 -kerning first=374 second=8222 amount=-4 -kerning first=8221 second=963 amount=-1 -kerning first=8225 second=271 amount=-1 -kerning first=55 second=213 amount=-2 -kerning first=1063 second=1195 amount=-1 -kerning first=198 second=103 amount=-1 -kerning first=313 second=253 amount=-1 -kerning first=75 second=355 amount=-1 -kerning first=78 second=115 amount=-1 -kerning first=956 second=242 amount=-1 -kerning first=121 second=214 amount=-2 -kerning first=1224 second=947 amount=-4 -kerning first=258 second=1101 amount=-1 -kerning first=381 second=945 amount=-1 -kerning first=36 second=226 amount=-1 -kerning first=1026 second=1262 amount=-2 -kerning first=175 second=356 amount=-5 -kerning first=178 second=116 amount=-1 -kerning first=289 second=268 amount=-2 -kerning first=56 second=368 amount=-2 -kerning first=1067 second=1069 amount=-1 -kerning first=1074 second=81 amount=-2 -kerning first=196 second=972 amount=-1 -kerning first=8361 second=361 amount=-1 -kerning first=8364 second=121 amount=-1 -kerning first=1176 second=1263 amount=-1 -kerning first=102 second=227 amount=-1 -kerning first=365 second=269 amount=-1 -kerning first=1037 second=332 amount=-2 -kerning first=8250 second=374 amount=-3 -kerning first=57 second=1066 amount=-5 -kerning first=54 second=8221 amount=-3 -kerning first=203 second=228 amount=-1 -kerning first=323 second=118 amount=-4 -kerning first=8370 second=71 amount=-2 -kerning first=80 second=916 amount=-4 -kerning first=223 second=370 amount=-2 -kerning first=100 second=1256 amount=-2 -kerning first=1187 second=333 amount=-1 -kerning first=249 second=67 amount=-2 -kerning first=369 second=217 amount=-2 -kerning first=162 second=79 amount=-2 -kerning first=271 second=229 amount=-1 -kerning first=1241 second=119 amount=-1 -kerning first=1044 second=271 amount=-1 -kerning first=180 second=920 amount=-2 -kerning first=296 second=371 amount=-1 -kerning first=291 second=1195 amount=-1 -kerning first=64 second=253 amount=-1 -kerning first=201 second=1257 amount=-1 -kerning first=8372 second=246 amount=-1 -kerning first=902 second=218 amount=-2 -kerning first=1202 second=273 amount=-1 -kerning first=250 second=242 amount=-1 -kerning first=367 second=947 amount=-4 -kerning first=967 second=287 amount=-1 -kerning first=160 second=945 amount=-1 -kerning first=273 second=1240 amount=-2 -kerning first=8216 second=97 amount=-1 -kerning first=1049 second=219 amount=-2 -kerning first=297 second=1069 amount=-1 -kerning first=303 second=81 amount=-2 -kerning first=1081 second=361 amount=-1 -kerning first=1085 second=121 amount=-1 -kerning first=903 second=373 amount=-4 -kerning first=1118 second=288 amount=-2 -kerning first=1210 second=220 amount=-2 -kerning first=971 second=232 amount=-1 -kerning first=8217 second=275 amount=-1 -kerning first=8221 second=47 amount=-2 -kerning first=49 second=216 amount=-2 -kerning first=1051 second=374 amount=-5 -kerning first=192 second=106 amount=1 -kerning first=72 second=118 amount=-4 -kerning first=1095 second=71 amount=-2 -kerning first=209 second=962 amount=-1 -kerning first=912 second=83 amount=-1 -kerning first=92 second=283 amount=-1 -kerning first=89 second=974 amount=-4 -kerning first=1170 second=233 amount=-1 -kerning first=950 second=245 amount=-1 -kerning first=1219 second=375 amount=-1 -kerning first=375 second=949 amount=-1 -kerning first=168 second=359 amount=-1 -kerning first=278 second=963 amount=-1 -kerning first=47 second=1195 amount=-1 -kerning first=50 second=371 amount=-1 -kerning first=1067 second=84 amount=-5 -kerning first=190 second=1026 amount=-5 -kerning first=193 second=286 amount=-2 -kerning first=1096 second=246 amount=-1 -kerning first=910 second=950 amount=-2 -kerning first=96 second=230 amount=-1 -kerning first=236 second=360 amount=-2 -kerning first=113 second=947 amount=-4 -kerning first=1263 second=85 amount=-2 -kerning first=1027 second=335 amount=-1 -kerning first=287 second=219 amount=-2 -kerning first=51 second=1069 amount=-1 -kerning first=57 second=81 amount=-2 -kerning first=1071 second=34 amount=-3 -kerning first=197 second=231 amount=-1 -kerning first=315 second=121 amount=-1 -kerning first=77 second=243 amount=-1 -kerning first=338 second=288 amount=-2 -kerning first=94 second=1263 amount=-1 -kerning first=363 second=220 amount=-2 -kerning first=955 second=350 amount=-1 -kerning first=35 second=332 amount=-2 -kerning first=1035 second=275 amount=-1 -kerning first=177 second=244 amount=-1 -kerning first=288 second=374 amount=-2 -kerning first=283 second=1203 amount=-2 -kerning first=8260 second=87 amount=-5 -kerning first=321 second=71 amount=-2 -kerning first=8363 second=249 amount=-1 -kerning first=81 second=193 amount=-2 -kerning first=928 second=363 amount=-1 -kerning first=121 second=949 amount=-1 -kerning first=124 second=257 amount=-1 -kerning first=1240 second=1051 amount=-1 -kerning first=381 second=8211 amount=-3 -kerning first=36 second=963 amount=-1 -kerning first=39 second=271 amount=-1 -kerning first=297 second=84 amount=-5 -kerning first=1074 second=364 amount=-2 -kerning first=202 second=334 amount=-2 -kerning first=322 second=246 amount=-1 -kerning first=8369 second=199 amount=-2 -kerning first=923 second=8212 amount=-2 -kerning first=931 second=1059 amount=-2 -kerning first=108 second=45 amount=-2 -kerning first=105 second=273 amount=-1 -kerning first=371 second=85 amount=-2 -kerning first=965 second=235 amount=-1 -kerning first=274 second=97 amount=-1 -kerning first=8211 second=50 amount=-2 -kerning first=43 second=219 amount=-2 -kerning first=179 second=1108 amount=-1 -kerning first=183 second=347 amount=-1 -kerning first=298 second=259 amount=-1 -kerning first=301 second=34 amount=-3 -kerning first=1071 second=8216 amount=-3 -kerning first=63 second=361 amount=-1 -kerning first=203 second=965 amount=-1 -kerning first=8370 second=354 amount=-5 -kerning first=8365 second=1118 amount=-1 -kerning first=86 second=288 amount=-2 -kerning first=246 second=1113 amount=-1 -kerning first=249 second=350 amount=-1 -kerning first=1206 second=171 amount=-1 -kerning first=372 second=260 amount=-5 -kerning first=126 second=1176 amount=-1 -kerning first=162 second=362 amount=-2 -kerning first=271 second=966 amount=-1 -kerning first=44 second=374 amount=-4 -kerning first=70 second=71 amount=-1 -kerning first=1080 second=940 amount=-1 -kerning first=1084 second=249 amount=-1 -kerning first=210 second=221 amount=-3 -kerning first=327 second=351 amount=-1 -kerning first=8372 second=1038 amount=-2 -kerning first=905 second=261 amount=-1 -kerning first=902 second=953 amount=-1 -kerning first=90 second=233 amount=-1 -kerning first=253 second=290 amount=-2 -kerning first=376 second=210 amount=-3 -kerning first=160 second=8211 amount=-2 -kerning first=973 second=100 amount=-1 -kerning first=51 second=84 amount=-5 -kerning first=1062 second=262 amount=-1 -kerning first=191 second=234 amount=-1 -kerning first=303 second=364 amount=-2 -kerning first=211 second=376 amount=-3 -kerning first=1118 second=1098 amount=-3 -kerning first=1174 second=101 amount=-1 -kerning first=1169 second=339 amount=-1 -kerning first=952 second=113 amount=-1 -kerning first=108 second=8249 amount=-3 -kerning first=117 second=85 amount=-2 -kerning first=1223 second=263 amount=-1 -kerning first=374 second=1179 amount=-3 -kerning first=52 second=259 amount=-1 -kerning first=55 second=34 amount=-3 -kerning first=301 second=8216 amount=-3 -kerning first=1087 second=1118 amount=-1 -kerning first=1095 second=354 amount=-5 -kerning first=209 second=8250 amount=-1 -kerning first=912 second=366 amount=-2 -kerning first=908 second=1184 amount=-2 -kerning first=95 second=336 amount=-2 -kerning first=1170 second=970 amount=-1 -kerning first=1175 second=279 amount=-1 -kerning first=238 second=248 amount=-1 -kerning first=361 second=171 amount=-3 -kerning first=375 second=8217 amount=-3 -kerning first=281 second=1076 amount=-1 -kerning first=289 second=87 amount=-5 -kerning first=8226 second=267 amount=-1 -kerning first=1064 second=1185 amount=-3 -kerning first=1067 second=367 amount=-1 -kerning first=196 second=337 amount=-1 -kerning first=310 second=940 amount=-2 -kerning first=314 second=249 amount=-1 -kerning first=1096 second=1038 amount=-2 -kerning first=910 second=8218 amount=-4 -kerning first=1263 second=368 amount=-2 -kerning first=382 second=941 amount=-1 -kerning first=176 second=352 amount=-1 -kerning first=57 second=364 amount=-2 -kerning first=1065 second=8220 amount=-2 -kerning first=197 second=968 amount=-1 -kerning first=200 second=277 amount=-1 -kerning first=318 second=199 amount=-2 -kerning first=8365 second=117 amount=-1 -kerning first=80 second=291 amount=-1 -kerning first=77 second=1035 amount=-5 -kerning first=223 second=211 amount=-2 -kerning first=338 second=1098 amount=-3 -kerning first=341 second=339 amount=-1 -kerning first=934 second=251 amount=-1 -kerning first=123 second=365 amount=-1 -kerning first=1298 second=1066 amount=-5 -kerning first=1257 second=8221 amount=-1 -kerning first=296 second=212 amount=-2 -kerning first=8240 second=1194 amount=-2 -kerning first=8260 second=370 amount=-2 -kerning first=55 second=8216 amount=-3 -kerning first=1073 second=943 amount=-1 -kerning first=204 second=224 amount=-1 -kerning first=316 second=1118 amount=-1 -kerning first=321 second=354 amount=-5 -kerning first=8372 second=67 amount=-2 -kerning first=902 second=39 amount=-3 -kerning first=345 second=279 amount=-1 -kerning first=121 second=8217 amount=-3 -kerning first=967 second=103 amount=-1 -kerning first=273 second=225 amount=-1 -kerning first=1046 second=267 amount=-2 -kerning first=45 second=87 amount=-2 -kerning first=294 second=1185 amount=-3 -kerning first=297 second=367 amount=-1 -kerning first=62 second=940 amount=-1 -kerning first=65 second=249 amount=-1 -kerning first=322 second=1038 amount=-2 -kerning first=903 second=214 amount=-2 -kerning first=222 second=8218 amount=-1 -kerning first=942 second=356 amount=-5 -kerning first=371 second=368 amount=-2 -kerning first=965 second=972 amount=-1 -kerning first=164 second=250 amount=-1 -kerning first=161 second=941 amount=-1 -kerning first=968 second=281 amount=-1 -kerning first=46 second=262 amount=-1 -kerning first=186 second=1241 amount=-1 -kerning first=189 second=187 amount=-1 -kerning first=295 second=8220 amount=-1 -kerning first=69 second=199 amount=-2 -kerning first=1083 second=357 amount=-1 -kerning first=1087 second=117 amount=-1 -kerning first=206 second=1079 amount=-1 -kerning first=212 second=89 amount=-3 -kerning first=904 second=369 amount=-1 -kerning first=86 second=1098 amount=-3 -kerning first=92 second=101 amount=-1 -kerning first=89 second=339 amount=-4 -kerning first=1219 second=216 amount=-2 -kerning first=369 second=8221 amount=-3 -kerning first=50 second=212 amount=-2 -kerning first=1048 second=1194 amount=-2 -kerning first=193 second=102 amount=-2 -kerning first=302 second=943 amount=-1 -kerning first=305 second=252 amount=-1 -kerning first=70 second=354 amount=-5 -kerning first=1096 second=67 amount=-2 -kerning first=915 second=79 amount=-2 -kerning first=93 second=279 amount=-1 -kerning first=1171 second=229 amount=-1 -kerning first=356 second=328 amount=-2 -kerning first=948 second=920 amount=-2 -kerning first=1207 second=1195 amount=-1 -kerning first=1220 second=371 amount=-1 -kerning first=169 second=355 amount=-1 -kerning first=172 second=115 amount=-1 -kerning first=282 second=267 amount=-1 -kerning first=8224 second=218 amount=-2 -kerning first=51 second=367 amount=-1 -kerning first=48 second=1185 amount=-3 -kerning first=1097 second=242 amount=-1 -kerning first=1174 second=1240 amount=-1 -kerning first=237 second=356 amount=-5 -kerning first=240 second=116 amount=-1 -kerning first=117 second=368 amount=-2 -kerning first=1223 second=1069 amount=-1 -kerning first=1298 second=81 amount=-2 -kerning first=260 second=281 amount=-1 -kerning first=8225 second=373 amount=-4 -kerning first=49 second=8220 amount=-3 -kerning first=198 second=227 amount=-1 -kerning first=316 second=117 amount=-1 -kerning first=313 second=357 amount=-1 -kerning first=1178 second=332 amount=-1 -kerning first=115 second=8221 amount=-1 -kerning first=178 second=240 amount=-1 -kerning first=289 second=370 amount=-2 -kerning first=56 second=943 amount=-1 -kerning first=59 second=252 amount=-1 -kerning first=196 second=1256 amount=-2 -kerning first=322 second=67 amount=-2 -kerning first=8364 second=245 amount=-1 -kerning first=216 second=8222 amount=-1 -kerning first=343 second=229 amount=-1 -kerning first=931 second=359 amount=-1 -kerning first=1186 second=271 amount=-1 -kerning first=1179 second=963 amount=-1 -kerning first=365 second=371 amount=-1 -kerning first=958 second=1026 amount=-5 -kerning first=962 second=286 amount=-2 -kerning first=125 second=253 amount=-1 -kerning first=40 second=267 amount=-1 -kerning first=1041 second=218 amount=-2 -kerning first=1079 second=120 amount=-1 -kerning first=323 second=242 amount=-1 -kerning first=80 second=1101 amount=-1 -kerning first=223 second=945 amount=-1 -kerning first=372 second=81 amount=-2 -kerning first=8212 second=46 amount=-1 -kerning first=1044 second=373 amount=-2 -kerning first=64 second=357 amount=-1 -kerning first=207 second=269 amount=-1 -kerning first=8372 second=350 amount=-1 -kerning first=84 second=973 amount=-2 -kerning first=1117 second=232 amount=-1 -kerning first=944 second=244 amount=-1 -kerning first=1202 second=374 amount=-2 -kerning first=253 second=106 amount=1 -kerning first=166 second=118 amount=-4 -kerning first=273 second=962 amount=-1 -kerning first=42 second=1194 amount=-2 -kerning first=188 second=283 amount=-1 -kerning first=1085 second=245 amount=-1 -kerning first=903 second=949 amount=-1 -kerning first=906 second=257 amount=-1 -kerning first=91 second=229 amount=-1 -kerning first=234 second=119 amount=-1 -kerning first=354 second=271 amount=-3 -kerning first=108 second=1195 amount=-1 -kerning first=1203 second=1073 amount=-1 -kerning first=1223 second=84 amount=-5 -kerning first=251 second=1026 amount=-5 -kerning first=254 second=286 amount=-2 -kerning first=968 second=1090 amount=-3 -kerning first=971 second=334 amount=-2 -kerning first=280 second=218 amount=-2 -kerning first=192 second=230 amount=-1 -kerning first=304 second=360 amount=-2 -kerning first=72 second=242 amount=-1 -kerning first=209 second=947 amount=-4 -kerning first=212 second=372 amount=-2 -kerning first=92 second=1240 amount=-2 -kerning first=1170 second=335 amount=-1 -kerning first=358 second=219 amount=-2 -kerning first=946 second=1108 amount=-1 -kerning first=950 second=347 amount=-1 -kerning first=1224 second=259 amount=-1 -kerning first=258 second=231 amount=-1 -kerning first=281 second=373 amount=-1 -kerning first=190 second=1263 amount=-1 -kerning first=1090 second=1113 amount=-3 -kerning first=1096 second=350 amount=-1 -kerning first=910 second=1176 amount=-2 -kerning first=915 second=362 amount=-2 -kerning first=96 second=332 amount=-2 -kerning first=1171 second=966 amount=-1 -kerning first=1176 second=275 amount=-1 -kerning first=239 second=244 amount=-1 -kerning first=356 second=1203 amount=-1 -kerning first=954 second=289 amount=-2 -kerning first=1034 second=221 amount=-5 -kerning first=279 second=8230 amount=-1 -kerning first=8224 second=953 amount=-1 -kerning first=197 second=333 amount=-1 -kerning first=315 second=245 amount=-1 -kerning first=335 second=1299 amount=-1 -kerning first=100 second=271 amount=-1 -kerning first=960 second=234 amount=-1 -kerning first=1298 second=364 amount=-2 -kerning first=260 second=1090 amount=-3 -kerning first=38 second=218 amount=-2 -kerning first=1035 second=376 amount=-5 -kerning first=177 second=346 amount=-1 -kerning first=8260 second=211 amount=-2 -kerning first=58 second=360 amount=-2 -kerning first=204 second=45 amount=-2 -kerning first=201 second=273 amount=-1 -kerning first=198 second=964 amount=-3 -kerning first=8366 second=113 amount=-1 -kerning first=8363 second=353 amount=-1 -kerning first=345 second=97 amount=-1 -kerning first=367 second=259 amount=-1 -kerning first=124 second=361 amount=-1 -kerning first=160 second=121 amount=-1 -kerning first=178 second=1028 amount=-2 -kerning first=182 second=288 amount=-2 -kerning first=8249 second=1184 amount=-1 -kerning first=1078 second=248 amount=-2 -kerning first=205 second=220 amount=-2 -kerning first=322 second=350 amount=-1 -kerning first=343 second=966 amount=-1 -kerning first=105 second=374 amount=-5 -kerning first=965 second=337 amount=-1 -kerning first=968 second=99 amount=-1 -kerning first=164 second=71 amount=-2 -kerning first=274 second=221 amount=-5 -kerning first=1041 second=953 amount=-1 -kerning first=186 second=233 amount=-1 -kerning first=298 second=363 amount=-1 -kerning first=206 second=375 amount=-1 -kerning first=904 second=210 amount=-2 -kerning first=1119 second=100 amount=-1 -kerning first=223 second=8211 amount=-2 -kerning first=1206 second=262 amount=-1 -kerning first=252 second=234 amount=-1 -kerning first=165 second=246 amount=-1 -kerning first=8218 second=89 amount=-4 -kerning first=47 second=258 amount=-5 -kerning first=296 second=8212 amount=-2 -kerning first=299 second=1059 amount=-2 -kerning first=1084 second=353 amount=-1 -kerning first=204 second=8249 amount=-3 -kerning first=1090 second=113 amount=-1 -kerning first=905 second=365 amount=-1 -kerning first=87 second=1094 amount=-2 -kerning first=93 second=97 amount=-1 -kerning first=90 second=335 amount=-1 -kerning first=113 second=259 amount=-1 -kerning first=1220 second=212 amount=-2 -kerning first=973 second=224 amount=-1 -kerning first=273 second=8250 amount=-1 -kerning first=8224 second=39 amount=-3 -kerning first=1049 second=1184 amount=-5 -kerning first=1062 second=366 amount=-1 -kerning first=191 second=336 amount=-2 -kerning first=306 second=248 amount=-1 -kerning first=903 second=8217 amount=-3 -kerning first=91 second=966 amount=-1 -kerning first=94 second=275 amount=-1 -kerning first=1210 second=1185 amount=-3 -kerning first=1223 second=367 amount=-1 -kerning first=260 second=99 amount=-1 -kerning first=377 second=940 amount=-1 -kerning first=174 second=111 amount=-1 -kerning first=170 second=351 amount=-1 -kerning first=280 second=953 amount=-1 -kerning first=8225 second=214 amount=-2 -kerning first=49 second=1177 amount=-1 -kerning first=52 second=363 amount=-1 -kerning first=75 second=290 amount=-3 -kerning first=912 second=941 amount=-1 -kerning first=238 second=352 amount=-1 -kerning first=361 second=262 amount=-2 -kerning first=956 second=187 amount=-1 -kerning first=1219 second=8220 amount=-3 -kerning first=258 second=968 amount=-1 -kerning first=1026 second=1079 amount=-1 -kerning first=171 second=1035 amount=-1 -kerning first=175 second=291 amount=-1 -kerning first=289 second=211 amount=-2 -kerning first=8226 second=369 amount=-1 -kerning first=50 second=8212 amount=-1 -kerning first=53 second=1059 amount=-2 -kerning first=314 second=353 amount=-1 -kerning first=317 second=113 amount=-1 -kerning first=365 second=212 amount=-2 -kerning first=1263 second=943 amount=-1 -kerning first=1037 second=266 amount=-2 -kerning first=1041 second=39 amount=-3 -kerning first=287 second=1184 amount=-5 -kerning first=60 second=248 amount=-1 -kerning first=203 second=171 amount=-3 -kerning first=934 second=355 amount=-1 -kerning first=1187 second=267 amount=-1 -kerning first=363 second=1185 amount=-3 -kerning first=126 second=249 amount=-1 -kerning first=123 second=940 amount=-1 -kerning first=268 second=379 amount=-1 -kerning first=41 second=261 amount=-1 -kerning first=38 second=953 amount=-1 -kerning first=1044 second=214 amount=-1 -kerning first=8260 second=945 amount=-1 -kerning first=1080 second=116 amount=-1 -kerning first=84 second=338 amount=-1 -kerning first=87 second=100 amount=-3 -kerning first=247 second=1241 amount=-1 -kerning first=250 second=187 amount=-1 -kerning first=967 second=227 amount=-1 -kerning first=163 second=199 amount=-2 -kerning first=276 second=89 amount=-5 -kerning first=1046 second=369 amount=-1 -kerning first=182 second=1098 amount=-3 -kerning first=185 second=339 amount=-1 -kerning first=188 second=101 amount=-1 -kerning first=300 second=251 amount=-1 -kerning first=65 second=353 amount=-1 -kerning first=900 second=1066 amount=-5 -kerning first=1118 second=228 amount=-1 -kerning first=371 second=943 amount=-1 -kerning first=374 second=252 amount=-2 -kerning first=965 second=1256 amount=-2 -kerning first=161 second=1118 amount=-1 -kerning first=164 second=354 amount=-5 -kerning first=280 second=39 amount=-3 -kerning first=43 second=1184 amount=-5 -kerning first=46 second=366 amount=-1 -kerning first=1063 second=79 amount=-2 -kerning first=189 second=279 amount=-1 -kerning first=186 second=970 amount=-1 -kerning first=1083 second=920 amount=-2 -kerning first=8377 second=1026 amount=-5 -kerning first=92 second=225 amount=-1 -kerning first=1116 second=1257 amount=-2 -kerning first=109 second=1185 amount=-1 -kerning first=165 second=1038 amount=-2 -kerning first=8212 second=947 amount=-1 -kerning first=8218 second=372 amount=-3 -kerning first=193 second=226 amount=-1 -kerning first=305 second=356 amount=-5 -kerning first=310 second=116 amount=-1 -kerning first=110 second=8220 amount=-1 -kerning first=376 second=1169 amount=-3 -kerning first=1027 second=269 amount=-1 -kerning first=282 second=369 amount=-1 -kerning first=54 second=251 amount=-1 -kerning first=214 second=1066 amount=-5 -kerning first=338 second=228 amount=-1 -kerning first=926 second=118 amount=-4 -kerning first=1174 second=962 amount=-1 -kerning first=240 second=240 amount=-1 -kerning first=357 second=1194 amount=-2 -kerning first=955 second=283 amount=-1 -kerning first=117 second=943 amount=-1 -kerning first=35 second=266 amount=-2 -kerning first=38 second=39 amount=-3 -kerning first=1035 second=217 amount=-2 -kerning first=291 second=79 amount=-2 -kerning first=8225 second=949 amount=-1 -kerning first=8240 second=257 amount=-1 -kerning first=1073 second=119 amount=-4 -kerning first=313 second=920 amount=-1 -kerning first=221 second=253 amount=-2 -kerning first=920 second=1046 amount=-3 -kerning first=1299 second=360 amount=-2 -kerning first=1240 second=923 amount=-2 -kerning first=1033 second=947 amount=-1 -kerning first=175 second=1101 amount=-1 -kerning first=289 second=945 amount=-1 -kerning first=59 second=356 amount=-5 -kerning first=62 second=116 amount=-1 -kerning first=202 second=268 amount=-2 -kerning first=8361 second=1108 amount=-1 -kerning first=8364 second=347 amount=-1 -kerning first=900 second=81 amount=-2 -kerning first=1107 second=231 amount=-1 -kerning first=1186 second=373 amount=-2 -kerning first=958 second=1263 amount=-1 -kerning first=125 second=357 amount=-1 -kerning first=161 second=117 amount=-1 -kerning first=40 second=369 amount=-1 -kerning first=179 second=973 amount=-1 -kerning first=206 second=216 amount=-2 -kerning first=326 second=106 amount=1 -kerning first=8370 second=289 amount=-1 -kerning first=86 second=228 amount=-3 -kerning first=229 second=118 amount=-1 -kerning first=103 second=1194 amount=-2 -kerning first=249 second=283 amount=-1 -kerning first=165 second=67 amount=-2 -kerning first=47 second=79 amount=-1 -kerning first=1048 second=257 amount=-1 -kerning first=1044 second=949 amount=-1 -kerning first=302 second=119 amount=-4 -kerning first=8260 second=8211 amount=-2 -kerning first=299 second=359 amount=-1 -kerning first=64 second=920 amount=-2 -kerning first=207 second=371 amount=-1 -kerning first=204 second=1195 amount=-1 -kerning first=327 second=286 amount=-2 -kerning first=8378 second=234 amount=-1 -kerning first=84 second=1257 amount=-3 -kerning first=1117 second=334 amount=-2 -kerning first=944 second=346 amount=-1 -kerning first=253 second=230 amount=-1 -kerning first=376 second=120 amount=-2 -kerning first=967 second=964 amount=-3 -kerning first=973 second=45 amount=-2 -kerning first=166 second=242 amount=-1 -kerning first=273 second=947 amount=-4 -kerning first=276 second=372 amount=-5 -kerning first=188 second=1240 amount=-2 -kerning first=185 second=1262 amount=-2 -kerning first=1081 second=1108 amount=-1 -kerning first=1085 second=347 amount=-1 -kerning first=214 second=81 amount=-2 -kerning first=906 second=361 amount=-1 -kerning first=1118 second=965 amount=-1 -kerning first=354 second=373 amount=-2 -kerning first=251 second=1263 amount=-1 -kerning first=8221 second=260 amount=-3 -kerning first=1063 second=362 amount=-2 -kerning first=1051 second=1176 amount=-1 -kerning first=192 second=332 amount=-2 -kerning first=1095 second=289 amount=-1 -kerning first=92 second=962 amount=-1 -kerning first=361 second=83 amount=-1 -kerning first=1224 second=363 amount=-1 -kerning first=1219 second=1177 amount=-1 -kerning first=258 second=333 amount=-1 -kerning first=381 second=245 amount=-1 -kerning first=1026 second=375 amount=-1 -kerning first=8226 second=210 amount=-2 -kerning first=56 second=119 amount=-4 -kerning first=53 second=359 amount=-1 -kerning first=193 second=963 amount=-1 -kerning first=196 second=271 amount=-1 -kerning first=199 second=44 amount=-1 -kerning first=73 second=1026 amount=-5 -kerning first=76 second=286 amount=-1 -kerning first=1099 second=234 amount=-1 -kerning first=915 second=934 amount=-3 -kerning first=923 second=246 amount=-1 -kerning first=1176 second=376 amount=-5 -kerning first=239 second=346 amount=-1 -kerning first=362 second=258 amount=-2 -kerning first=1220 second=8212 amount=-2 -kerning first=259 second=964 amount=-1 -kerning first=973 second=8249 amount=-3 -kerning first=1037 second=85 amount=-2 -kerning first=176 second=287 amount=-1 -kerning first=8230 second=365 amount=-1 -kerning first=200 second=219 amount=-2 -kerning first=311 second=1108 amount=-2 -kerning first=80 second=231 amount=-1 -kerning first=223 second=121 amount=-1 -kerning first=338 second=965 amount=-1 -kerning first=100 second=373 amount=-4 -kerning first=240 second=1028 amount=-2 -kerning first=960 second=336 amount=-2 -kerning first=1038 second=260 amount=-2 -kerning first=180 second=232 amount=-1 -kerning first=291 second=362 amount=-2 -kerning first=8225 second=8217 amount=-3 -kerning first=61 second=244 amount=-1 -kerning first=201 second=374 amount=-5 -kerning first=321 second=289 amount=-1 -kerning first=936 second=351 amount=-1 -kerning first=98 second=8230 amount=-1 -kerning first=247 second=233 amount=-1 -kerning first=367 second=363 amount=-1 -kerning first=961 second=967 amount=-2 -kerning first=160 second=245 amount=-1 -kerning first=39 second=949 amount=-1 -kerning first=42 second=257 amount=-1 -kerning first=1046 second=210 amount=-3 -kerning first=289 second=8211 amount=-2 -kerning first=325 second=234 amount=-1 -kerning first=8369 second=1241 amount=-1 -kerning first=900 second=364 amount=-2 -kerning first=208 second=84 amount=-2 -kerning first=346 second=376 amount=-2 -kerning first=942 second=291 amount=-1 -kerning first=365 second=8212 amount=-2 -kerning first=186 second=335 amount=-1 -kerning first=189 second=97 amount=-1 -kerning first=63 second=1108 amount=-1 -kerning first=209 second=259 amount=-1 -kerning first=86 second=965 amount=-1 -kerning first=1119 second=224 amount=-1 -kerning first=1206 second=366 amount=-1 -kerning first=252 second=336 amount=-2 -kerning first=375 second=248 amount=-1 -kerning first=165 second=350 amount=-1 -kerning first=8218 second=213 amount=-1 -kerning first=44 second=1176 amount=-1 -kerning first=47 second=362 amount=-2 -kerning first=1044 second=8217 amount=-2 -kerning first=190 second=275 amount=-1 -kerning first=70 second=289 amount=-1 -kerning first=67 second=1033 amount=-1 -kerning first=905 second=940 amount=-1 -kerning first=910 second=249 amount=-2 -kerning first=93 second=221 amount=-5 -kerning first=236 second=111 amount=-1 -kerning first=356 second=261 amount=-2 -kerning first=113 second=363 amount=-1 -kerning first=169 second=290 amount=-2 -kerning first=282 second=210 amount=-2 -kerning first=1062 second=941 amount=-1 -kerning first=306 second=352 amount=-1 -kerning first=74 second=234 amount=-1 -kerning first=1094 second=1241 amount=-1 -kerning first=214 second=364 amount=-2 -kerning first=916 second=199 amount=-2 -kerning first=94 second=376 amount=-5 -kerning first=237 second=291 amount=-1 -kerning first=955 second=101 amount=-1 -kerning first=952 second=339 amount=-1 -kerning first=974 second=955 amount=-1 -kerning first=35 second=85 amount=-2 -kerning first=174 second=235 amount=-1 -kerning first=1101 second=102 amount=-1 -kerning first=221 second=74 amount=-6 -kerning first=912 second=1118 amount=-1 -kerning first=92 second=8250 amount=-1 -kerning first=920 second=354 amount=-2 -kerning first=1178 second=266 amount=-1 -kerning first=358 second=1184 amount=-5 -kerning first=361 second=366 amount=-2 -kerning first=956 second=279 amount=-1 -kerning first=121 second=248 amount=-1 -kerning first=266 second=171 amount=-1 -kerning first=1036 second=213 amount=-3 -kerning first=281 second=8217 amount=-1 -kerning first=1074 second=115 amount=-1 -kerning first=202 second=87 amount=-5 -kerning first=923 second=1038 amount=-2 -kerning first=102 second=261 amount=-1 -kerning first=1186 second=214 amount=-1 -kerning first=359 second=8218 amount=-1 -kerning first=962 second=226 amount=-1 -kerning first=270 second=88 amount=-3 -kerning first=40 second=210 amount=-2 -kerning first=1037 second=368 amount=-2 -kerning first=179 second=338 amount=-2 -kerning first=183 second=100 amount=-1 -kerning first=60 second=352 amount=-1 -kerning first=203 second=262 amount=-2 -kerning first=318 second=1241 amount=-1 -kerning first=323 second=187 amount=-1 -kerning first=80 second=968 amount=-1 -kerning first=243 second=1098 amount=-1 -kerning first=249 second=101 amount=-1 -kerning first=369 second=251 amount=-1 -kerning first=162 second=113 amount=-1 -kerning first=126 second=353 amount=-1 -kerning first=271 second=263 amount=-1 -kerning first=41 second=365 amount=-1 -kerning first=1035 second=8221 amount=-3 -kerning first=1080 second=240 amount=-1 -kerning first=207 second=212 amount=-2 -kerning first=8372 second=283 amount=-1 -kerning first=902 second=252 amount=-1 -kerning first=87 second=224 amount=-2 -kerning first=353 second=39 amount=-1 -kerning first=247 second=970 amount=-1 -kerning first=250 second=279 amount=-1 -kerning first=276 second=213 amount=-2 -kerning first=1049 second=253 amount=-1 -kerning first=188 second=225 amount=-1 -kerning first=300 second=355 amount=-1 -kerning first=303 second=115 amount=-1 -kerning first=205 second=1185 amount=-3 -kerning first=354 second=214 amount=-1 -kerning first=942 second=1101 amount=-1 -kerning first=1203 second=945 amount=-1 -kerning first=254 second=226 amount=-1 -kerning first=971 second=268 amount=-2 -kerning first=8211 second=1069 amount=-1 -kerning first=49 second=250 amount=-1 -kerning first=69 second=1241 amount=-1 -kerning first=72 second=187 amount=-1 -kerning first=206 second=8220 amount=-3 -kerning first=8377 second=1263 amount=-1 -kerning first=912 second=117 amount=-1 -kerning first=89 second=1079 amount=-4 -kerning first=95 second=89 amount=-5 -kerning first=1170 second=269 amount=-1 -kerning first=946 second=973 amount=-1 -kerning first=1026 second=216 amount=-2 -kerning first=278 second=1066 amount=-5 -kerning first=275 second=8221 amount=-1 -kerning first=1067 second=118 amount=-4 -kerning first=310 second=240 amount=-2 -kerning first=70 second=1099 amount=-1 -kerning first=1096 second=283 amount=-1 -kerning first=910 second=1044 amount=-5 -kerning first=923 second=67 amount=-2 -kerning first=96 second=266 amount=-2 -kerning first=1176 second=217 amount=-2 -kerning first=99 second=39 amount=-1 -kerning first=954 second=229 amount=-1 -kerning first=1263 second=119 amount=-4 -kerning first=379 second=920 amount=-1 -kerning first=1027 second=371 amount=-1 -kerning first=973 second=1195 amount=-1 -kerning first=176 second=103 amount=-1 -kerning first=287 second=253 amount=-1 -kerning first=54 second=355 amount=-1 -kerning first=57 second=115 amount=-1 -kerning first=197 second=267 amount=-1 -kerning first=335 second=1083 amount=-1 -kerning first=926 second=242 amount=-1 -kerning first=100 second=214 amount=-2 -kerning first=1174 second=947 amount=-2 -kerning first=237 second=1101 amount=-1 -kerning first=955 second=1240 amount=-2 -kerning first=952 second=1262 amount=-2 -kerning first=123 second=116 amount=-1 -kerning first=35 second=368 amount=-2 -kerning first=1028 second=1069 amount=1 -kerning first=174 second=972 amount=-1 -kerning first=177 second=281 amount=-1 -kerning first=8240 second=361 amount=-1 -kerning first=8260 second=121 amount=-1 -kerning first=1073 second=243 amount=-1 -kerning first=8363 second=288 amount=-2 -kerning first=36 second=1066 amount=-5 -kerning first=182 second=228 amount=-1 -kerning first=297 second=118 amount=-4 -kerning first=62 second=240 amount=-1 -kerning first=202 second=370 amount=-2 -kerning first=322 second=283 amount=-1 -kerning first=8369 second=233 amount=-1 -kerning first=1107 second=333 amount=-1 -kerning first=222 second=1044 amount=-1 -kerning first=108 second=79 amount=-2 -kerning first=1186 second=949 amount=-1 -kerning first=371 second=119 amount=-4 -kerning first=962 second=963 amount=-1 -kerning first=965 second=271 amount=-1 -kerning first=125 second=920 amount=-2 -kerning first=8211 second=84 amount=-4 -kerning first=43 second=253 amount=-1 -kerning first=179 second=1257 amount=-1 -kerning first=901 second=360 amount=-2 -kerning first=1116 second=273 amount=-2 -kerning first=1119 second=45 amount=-2 -kerning first=249 second=1240 amount=-2 -kerning first=271 second=1069 amount=-1 -kerning first=278 second=81 amount=-2 -kerning first=8218 second=34 amount=-1 -kerning first=1048 second=361 amount=-1 -kerning first=302 second=243 amount=-1 -kerning first=1080 second=1028 amount=-2 -kerning first=1084 second=288 amount=-2 -kerning first=8378 second=336 amount=-2 -kerning first=90 second=269 amount=-1 -kerning first=1168 second=220 amount=-2 -kerning first=948 second=232 amount=-1 -kerning first=253 second=332 amount=-2 -kerning first=376 second=244 amount=-4 -kerning first=169 second=106 amount=1 -kerning first=51 second=118 amount=-4 -kerning first=188 second=962 amount=-1 -kerning first=1065 second=71 amount=-1 -kerning first=1094 second=233 amount=-1 -kerning first=94 second=217 amount=-2 -kerning first=354 second=949 amount=-3 -kerning first=357 second=257 amount=-1 -kerning first=117 second=119 amount=-4 -kerning first=254 second=963 amount=-1 -kerning first=167 second=1026 amount=-5 -kerning first=170 second=286 amount=-2 -kerning first=1028 second=84 amount=-1 -kerning first=195 second=218 amount=-2 -kerning first=75 second=230 amount=-1 -kerning first=215 second=360 amount=-2 -kerning first=212 second=1174 amount=-3 -kerning first=333 second=964 amount=-1 -kerning first=92 second=947 amount=-4 -kerning first=95 second=372 amount=-5 -kerning first=1119 second=8249 amount=-3 -kerning first=1178 second=85 amount=-1 -kerning first=238 second=287 amount=-1 -kerning first=950 second=1094 amount=-2 -kerning first=956 second=97 amount=-1 -kerning first=378 second=1108 amount=-1 -kerning first=36 second=81 amount=-2 -kerning first=175 second=231 amount=-1 -kerning first=281 second=1175 amount=-2 -kerning first=289 second=121 amount=-1 -kerning first=8218 second=8216 amount=-1 -kerning first=56 second=243 amount=-1 -kerning first=1070 second=196 amount=-2 -kerning first=196 second=373 amount=-4 -kerning first=314 second=288 amount=-2 -kerning first=310 second=1028 amount=-3 -kerning first=73 second=1263 amount=-1 -kerning first=1099 second=336 amount=-2 -kerning first=923 second=350 amount=-1 -kerning first=958 second=275 amount=-1 -kerning first=954 second=966 amount=-2 -kerning first=122 second=244 amount=-1 -kerning first=262 second=374 amount=-2 -kerning first=1071 second=351 amount=-1 -kerning first=1075 second=111 amount=-1 -kerning first=203 second=83 amount=-1 -kerning first=318 second=233 amount=-1 -kerning first=80 second=333 amount=-1 -kerning first=223 second=245 amount=-1 -kerning first=934 second=290 amount=-2 -kerning first=100 second=949 amount=-1 -kerning first=103 second=257 amount=-1 -kerning first=271 second=84 amount=-5 -kerning first=180 second=334 amount=-2 -kerning first=177 second=1090 amount=-3 -kerning first=296 second=246 amount=-1 -kerning first=61 second=346 amount=-1 -kerning first=1073 second=1035 amount=-5 -kerning first=8363 second=1098 amount=-3 -kerning first=8366 second=339 amount=-1 -kerning first=8372 second=101 amount=-1 -kerning first=84 second=273 amount=-3 -kerning first=87 second=45 amount=-2 -kerning first=247 second=335 amount=-1 -kerning first=250 second=97 amount=-1 -kerning first=124 second=1108 amount=-1 -kerning first=160 second=347 amount=-1 -kerning first=273 second=259 amount=-1 -kerning first=276 second=34 amount=-3 -kerning first=42 second=361 amount=-1 -kerning first=182 second=965 amount=-1 -kerning first=62 second=1028 amount=-2 -kerning first=65 second=288 amount=-2 -kerning first=325 second=336 amount=-2 -kerning first=8369 second=970 amount=-1 -kerning first=903 second=248 amount=-1 -kerning first=1118 second=171 amount=-3 -kerning first=105 second=1176 amount=-1 -kerning first=108 second=362 amount=-2 -kerning first=111 second=122 amount=-1 -kerning first=1186 second=8217 amount=-2 -kerning first=251 second=275 amount=-1 -kerning first=374 second=197 amount=-5 -kerning first=971 second=87 amount=-5 -kerning first=164 second=289 amount=-1 -kerning first=49 second=71 amount=-2 -kerning first=1051 second=249 amount=-1 -kerning first=189 second=221 amount=-5 -kerning first=301 second=351 amount=-1 -kerning first=304 second=111 amount=-1 -kerning first=69 second=233 amount=-1 -kerning first=209 second=363 amount=-1 -kerning first=206 second=1177 amount=-1 -kerning first=908 second=198 amount=-2 -kerning first=89 second=375 amount=-2 -kerning first=946 second=338 amount=-2 -kerning first=950 second=100 amount=-1 -kerning first=1219 second=250 amount=-1 -kerning first=1206 second=941 amount=-1 -kerning first=372 second=1116 amount=-2 -kerning first=375 second=352 amount=-1 -kerning first=168 second=234 amount=-1 -kerning first=278 second=364 amount=-2 -kerning first=50 second=246 amount=-1 -kerning first=1064 second=199 amount=-2 -kerning first=190 second=376 amount=-5 -kerning first=302 second=1035 amount=-5 -kerning first=305 second=291 amount=-1 -kerning first=1084 second=1098 amount=-3 -kerning first=1090 second=339 amount=-1 -kerning first=207 second=8212 amount=-2 -kerning first=1096 second=101 amount=-1 -kerning first=915 second=113 amount=-1 -kerning first=87 second=8249 amount=-2 -kerning first=96 second=85 amount=-2 -kerning first=1171 second=263 amount=-1 -kerning first=910 second=353 amount=-3 -kerning first=236 second=235 amount=-1 -kerning first=356 second=365 amount=-2 -kerning first=1027 second=212 amount=-2 -kerning first=276 second=8216 amount=-3 -kerning first=8224 second=252 amount=-1 -kerning first=1065 second=354 amount=-2 -kerning first=188 second=8250 amount=-1 -kerning first=197 second=86 amount=-6 -kerning first=74 second=336 amount=-2 -kerning first=1097 second=279 amount=-1 -kerning first=335 second=378 amount=-1 -kerning first=338 second=171 amount=-3 -kerning first=955 second=225 amount=-1 -kerning first=1298 second=115 amount=-1 -kerning first=174 second=337 amount=-1 -kerning first=177 second=99 amount=-1 -kerning first=58 second=111 amount=-1 -kerning first=55 second=351 amount=-1 -kerning first=198 second=261 amount=-1 -kerning first=195 second=953 amount=-1 -kerning first=221 second=198 amount=-5 -kerning first=1178 second=368 amount=-1 -kerning first=361 second=941 amount=-1 -kerning first=121 second=352 amount=-1 -kerning first=36 second=364 amount=-2 -kerning first=1026 second=8220 amount=-3 -kerning first=175 second=968 amount=-1 -kerning first=178 second=277 amount=-1 -kerning first=294 second=199 amount=-2 -kerning first=56 second=1035 amount=-5 -kerning first=59 second=291 amount=-1 -kerning first=202 second=211 amount=-2 -kerning first=317 second=339 amount=-1 -kerning first=8361 second=973 amount=-1 -kerning first=322 second=101 amount=-1 -kerning first=314 second=1098 amount=-3 -kerning first=343 second=263 amount=-1 -kerning first=1176 second=8221 amount=-3 -kerning first=1037 second=943 amount=-1 -kerning first=1041 second=252 amount=-1 -kerning first=183 second=224 amount=-1 -kerning first=8250 second=1044 amount=-2 -kerning first=200 second=1184 amount=-5 -kerning first=203 second=366 amount=-2 -kerning first=318 second=970 amount=-1 -kerning first=323 second=279 amount=-1 -kerning first=8370 second=229 amount=-1 -kerning first=86 second=171 amount=-3 -kerning first=229 second=63 amount=-2 -kerning first=100 second=8217 amount=-3 -kerning first=249 second=225 amount=-1 -kerning first=369 second=355 amount=-1 -kerning first=372 second=115 amount=-2 -kerning first=271 second=367 amount=-1 -kerning first=41 second=940 amount=-1 -kerning first=44 second=249 amount=-1 -kerning first=296 second=1038 amount=-2 -kerning first=8372 second=1240 amount=-2 -kerning first=8366 second=1262 amount=-2 -kerning first=327 second=226 amount=-1 -kerning first=902 second=356 amount=-5 -kerning first=905 second=116 amount=-1 -kerning first=84 second=1078 amount=-1 -kerning first=1117 second=268 amount=-2 -kerning first=944 second=281 amount=-1 -kerning first=107 second=941 amount=-2 -kerning first=376 second=65 amount=-5 -kerning first=163 second=1241 amount=-1 -kerning first=166 second=187 amount=-1 -kerning first=269 second=8220 amount=-1 -kerning first=48 second=199 amount=-2 -kerning first=1049 second=357 amount=-1 -kerning first=185 second=1079 amount=-1 -kerning first=191 second=89 amount=-5 -kerning first=65 second=1098 amount=-3 -kerning first=1081 second=973 amount=-1 -kerning first=91 second=263 amount=-1 -kerning first=1223 second=118 amount=-4 -kerning first=374 second=916 amount=-5 -kerning first=377 second=240 amount=-1 -kerning first=968 second=1194 amount=-2 -kerning first=971 second=370 amount=-2 -kerning first=280 second=252 amount=-1 -kerning first=49 second=354 amount=-5 -kerning first=46 second=1118 amount=-1 -kerning first=192 second=266 amount=-2 -kerning first=195 second=39 amount=-3 -kerning first=72 second=279 amount=-1 -kerning first=69 second=970 amount=-1 -kerning first=1095 second=229 amount=-1 -kerning first=95 second=213 amount=-2 -kerning first=1119 second=1195 amount=-1 -kerning first=1170 second=371 amount=-1 -kerning first=238 second=103 amount=-1 -kerning first=358 second=253 amount=-1 -kerning first=946 second=1257 amount=-1 -kerning first=118 second=115 amount=-1 -kerning first=258 second=267 amount=-1 -kerning first=8222 second=360 amount=-1 -kerning first=50 second=1038 amount=-2 -kerning first=1067 second=242 amount=-1 -kerning first=196 second=214 amount=-2 -kerning first=305 second=1101 amount=-1 -kerning first=1096 second=1240 amount=-2 -kerning first=216 second=356 amount=-2 -kerning first=96 second=368 amount=-2 -kerning first=1171 second=1069 amount=-1 -kerning first=236 second=972 amount=-1 -kerning first=239 second=281 amount=-1 -kerning first=1263 second=243 amount=-1 -kerning first=176 second=227 amount=-1 -kerning first=287 second=357 amount=-1 -kerning first=197 second=369 amount=-1 -kerning first=94 second=8221 amount=-3 -kerning first=934 second=106 amount=1 -kerning first=955 second=962 amount=-1 -kerning first=123 second=240 amount=-1 -kerning first=260 second=1194 amount=-2 -kerning first=35 second=943 amount=-1 -kerning first=38 second=252 amount=-1 -kerning first=174 second=1256 amount=-2 -kerning first=296 second=67 amount=-2 -kerning first=8260 second=245 amount=-1 -kerning first=204 second=79 amount=-2 -kerning first=321 second=229 amount=-1 -kerning first=221 second=920 amount=-3 -kerning first=928 second=1026 amount=-5 -kerning first=936 second=286 amount=-2 -kerning first=964 second=218 amount=-2 -kerning first=1039 second=360 amount=-2 -kerning first=297 second=242 amount=-1 -kerning first=59 second=1101 amount=-1 -kerning first=1078 second=287 amount=-1 -kerning first=202 second=945 amount=-1 -kerning first=317 second=1262 amount=-2 -kerning first=322 second=1240 amount=-2 -kerning first=8369 second=335 amount=-1 -kerning first=942 second=231 amount=-1 -kerning first=371 second=243 amount=-1 -kerning first=965 second=373 amount=-4 -kerning first=43 second=357 amount=-1 -kerning first=46 second=117 amount=-1 -kerning first=186 second=269 amount=-1 -kerning first=63 second=973 amount=-1 -kerning first=1083 second=232 amount=-1 -kerning first=8370 second=966 amount=-1 -kerning first=904 second=244 amount=-1 -kerning first=8377 second=275 amount=-1 -kerning first=89 second=216 amount=-3 -kerning first=1108 second=1203 amount=-1 -kerning first=352 second=256 amount=-1 -kerning first=112 second=118 amount=-1 -kerning first=1219 second=71 amount=-2 -kerning first=249 second=962 amount=-1 -kerning first=165 second=283 amount=-1 -kerning first=50 second=67 amount=-2 -kerning first=190 second=217 amount=-2 -kerning first=70 second=229 amount=-1 -kerning first=327 second=963 amount=-1 -kerning first=334 second=44 amount=-1 -kerning first=910 second=194 amount=-5 -kerning first=87 second=1195 amount=-3 -kerning first=1171 second=84 amount=-5 -kerning first=948 second=334 amount=-2 -kerning first=944 second=1090 amount=-3 -kerning first=1220 second=246 amount=-1 -kerning first=256 second=218 amount=-2 -kerning first=376 second=346 amount=-1 -kerning first=169 second=230 amount=-1 -kerning first=51 second=242 amount=-1 -kerning first=188 second=947 amount=-4 -kerning first=191 second=372 amount=-5 -kerning first=306 second=287 amount=-1 -kerning first=1094 second=335 amount=-1 -kerning first=906 second=1108 amount=-1 -kerning first=91 second=1069 amount=-1 -kerning first=237 second=231 amount=-1 -kerning first=354 second=1175 amount=-1 -kerning first=357 second=361 amount=-1 -kerning first=117 second=243 amount=-1 -kerning first=257 second=373 amount=-1 -kerning first=377 second=1028 amount=-1 -kerning first=167 second=1263 amount=-1 -kerning first=8225 second=248 amount=-1 -kerning first=313 second=232 amount=-1 -kerning first=75 second=332 amount=-3 -kerning first=1095 second=966 amount=-1 -kerning first=1101 second=47 amount=-1 -kerning first=333 second=1203 amount=-2 -kerning first=336 second=374 amount=-3 -kerning first=956 second=221 amount=-5 -kerning first=1299 second=111 amount=-1 -kerning first=1026 second=1177 amount=-1 -kerning first=175 second=333 amount=-1 -kerning first=289 second=245 amount=-1 -kerning first=8249 second=198 amount=-1 -kerning first=196 second=949 amount=-1 -kerning first=8361 second=338 amount=-2 -kerning first=8364 second=100 amount=-1 -kerning first=76 second=963 amount=-1 -kerning first=222 second=194 amount=-2 -kerning first=931 second=234 amount=-1 -kerning first=239 second=1090 amount=-3 -kerning first=365 second=246 amount=-1 -kerning first=958 second=376 amount=-5 -kerning first=1263 second=1035 amount=-5 -kerning first=37 second=360 amount=-2 -kerning first=1027 second=8212 amount=-2 -kerning first=179 second=273 amount=-1 -kerning first=183 second=45 amount=-2 -kerning first=176 second=964 amount=-3 -kerning first=60 second=287 amount=-1 -kerning first=1075 second=235 amount=-1 -kerning first=318 second=335 amount=-1 -kerning first=323 second=97 amount=-1 -kerning first=223 second=347 amount=-1 -kerning first=347 second=34 amount=-1 -kerning first=103 second=361 amount=-1 -kerning first=955 second=8250 amount=-1 -kerning first=123 second=1028 amount=-2 -kerning first=126 second=288 amount=-2 -kerning first=1044 second=248 amount=-1 -kerning first=184 second=220 amount=-2 -kerning first=296 second=350 amount=-1 -kerning first=64 second=232 amount=-1 -kerning first=204 second=362 amount=-2 -kerning first=201 second=1176 amount=-1 -kerning first=321 second=966 amount=-1 -kerning first=8372 second=225 amount=-1 -kerning first=1117 second=87 amount=-5 -kerning first=944 second=99 amount=-1 -kerning first=250 second=221 amount=-5 -kerning first=373 second=111 amount=-1 -kerning first=964 second=953 amount=-1 -kerning first=967 second=261 amount=-1 -kerning first=163 second=233 amount=-1 -kerning first=273 second=363 amount=-1 -kerning first=185 second=375 amount=-1 -kerning first=300 second=290 amount=-2 -kerning first=1081 second=338 amount=-2 -kerning first=202 second=8211 amount=-2 -kerning first=1085 second=100 amount=-1 -kerning first=903 second=352 amount=-1 -kerning first=91 second=84 amount=-5 -kerning first=1118 second=262 amount=-2 -kerning first=942 second=968 amount=-1 -kerning first=1210 second=199 amount=-2 -kerning first=251 second=376 amount=-5 -kerning first=371 second=1035 amount=-5 -kerning first=374 second=291 amount=-4 -kerning first=971 second=211 amount=-2 -kerning first=274 second=1059 amount=-2 -kerning first=1051 second=353 amount=-1 -kerning first=1063 second=113 amount=-1 -kerning first=183 second=8249 amount=-3 -kerning first=192 second=85 amount=-2 -kerning first=304 second=235 amount=-1 -kerning first=69 second=335 amount=-1 -kerning first=72 second=97 amount=-1 -kerning first=95 second=34 amount=-3 -kerning first=92 second=259 amount=-1 -kerning first=1170 second=212 amount=-2 -kerning first=89 second=951 amount=-3 -kerning first=347 second=8216 amount=-1 -kerning first=950 second=224 amount=-1 -kerning first=1219 second=354 amount=-5 -kerning first=249 second=8250 amount=-1 -kerning first=258 second=86 amount=-6 -kerning first=168 second=336 amount=-2 -kerning first=50 second=350 amount=-1 -kerning first=70 second=966 amount=-1 -kerning first=73 second=275 amount=-1 -kerning first=1096 second=225 amount=-1 -kerning first=216 second=197 amount=-2 -kerning first=1171 second=367 amount=-1 -kerning first=1168 second=1185 amount=-3 -kerning first=236 second=337 amount=-1 -kerning first=239 second=99 amount=-1 -kerning first=356 second=940 amount=-3 -kerning first=113 second=1114 amount=2 -kerning first=1220 second=1038 amount=-2 -kerning first=119 second=111 amount=-1 -kerning first=256 second=953 amount=-1 -kerning first=8224 second=356 amount=-5 -kerning first=8230 second=116 amount=-1 -kerning first=54 second=290 amount=-2 -kerning first=197 second=210 amount=-2 -kerning first=315 second=100 amount=-1 -kerning first=338 second=262 amount=-2 -kerning first=916 second=1241 amount=-1 -kerning first=926 second=187 amount=-1 -kerning first=237 second=968 amount=-1 -kerning first=240 second=277 amount=-1 -kerning first=363 second=199 amount=-2 -kerning first=952 second=1079 amount=-1 -kerning first=960 second=89 amount=-5 -kerning first=117 second=1035 amount=-5 -kerning first=120 second=291 amount=-1 -kerning first=1035 second=251 amount=-1 -kerning first=291 second=113 amount=-1 -kerning first=58 second=235 amount=-1 -kerning first=198 second=365 amount=-1 -kerning first=8363 second=228 amount=-1 -kerning first=95 second=8216 amount=-3 -kerning first=361 second=1118 amount=-1 -kerning first=964 second=39 amount=-3 -kerning first=39 second=248 amount=-1 -kerning first=182 second=171 amount=-3 -kerning first=1078 second=103 amount=-1 -kerning first=196 second=8217 amount=-3 -kerning first=8361 second=1257 amount=-1 -kerning first=322 second=225 amount=-1 -kerning first=900 second=115 amount=-1 -kerning first=1107 second=267 amount=-1 -kerning first=102 second=940 amount=-1 -kerning first=105 second=249 amount=-1 -kerning first=365 second=1038 amount=-2 -kerning first=965 second=214 amount=-2 -kerning first=262 second=8218 amount=-1 -kerning first=1041 second=356 amount=-5 -kerning first=63 second=338 amount=-2 -kerning first=1075 second=972 amount=-1 -kerning first=206 second=250 amount=-1 -kerning first=203 second=941 amount=-1 -kerning first=86 second=262 amount=-2 -kerning first=252 second=89 amount=-5 -kerning first=126 second=1098 amount=-3 -kerning first=162 second=339 amount=-1 -kerning first=165 second=101 amount=-1 -kerning first=47 second=113 amount=-2 -kerning first=1084 second=228 amount=-1 -kerning first=8372 second=962 amount=-1 -kerning first=905 second=240 amount=-1 -kerning first=90 second=212 amount=-1 -kerning first=1117 second=370 amount=-2 -kerning first=233 second=102 amount=-1 -kerning first=113 second=114 amount=2 -kerning first=1220 second=67 amount=-2 -kerning first=253 second=266 amount=-2 -kerning first=256 second=39 amount=-3 -kerning first=973 second=79 amount=-2 -kerning first=166 second=279 amount=-1 -kerning first=163 second=970 amount=-1 -kerning first=1049 second=920 amount=-2 -kerning first=191 second=213 amount=-2 -kerning first=306 second=103 amount=-1 -kerning first=1081 second=1257 amount=-1 -kerning first=214 second=115 amount=-1 -kerning first=88 second=1185 amount=-3 -kerning first=91 second=367 amount=-1 -kerning first=1223 second=242 amount=-1 -kerning first=374 second=1101 amount=-4 -kerning first=971 second=945 amount=-1 -kerning first=170 second=226 amount=-1 -kerning first=280 second=356 amount=-5 -kerning first=192 second=368 amount=-2 -kerning first=304 second=972 amount=-1 -kerning first=218 second=65 amount=-2 -kerning first=238 second=227 amount=-1 -kerning first=358 second=357 amount=-1 -kerning first=361 second=117 amount=-1 -kerning first=258 second=369 amount=-1 -kerning first=8226 second=244 amount=-1 -kerning first=193 second=1066 amount=-5 -kerning first=190 second=8221 amount=-3 -kerning first=314 second=228 amount=-1 -kerning first=79 second=90 amount=-1 -kerning first=1096 second=962 amount=-1 -kerning first=216 second=916 amount=-2 -kerning first=923 second=283 amount=-1 -kerning first=96 second=943 amount=-1 -kerning first=236 second=1256 amount=-2 -kerning first=365 second=67 amount=-2 -kerning first=958 second=217 amount=-2 -kerning first=1037 second=119 amount=-4 -kerning first=287 second=920 amount=-2 -kerning first=8250 second=194 amount=-3 -kerning first=60 second=103 amount=-1 -kerning first=1071 second=286 amount=-2 -kerning first=1068 second=1026 amount=-5 -kerning first=200 second=253 amount=-1 -kerning first=311 second=1257 amount=-2 -kerning first=80 second=267 amount=-1 -kerning first=1103 second=218 amount=-2 -kerning first=934 second=230 amount=-1 -kerning first=955 second=947 amount=-4 -kerning first=960 second=372 amount=-5 -kerning first=38 second=356 amount=-5 -kerning first=41 second=116 amount=-1 -kerning first=180 second=268 amount=-2 -kerning first=8240 second=1108 amount=-1 -kerning first=8260 second=347 amount=-1 -kerning first=58 second=972 amount=-1 -kerning first=61 second=281 amount=-1 -kerning first=1076 second=231 amount=-1 -kerning first=8363 second=965 amount=-1 -kerning first=1106 second=373 amount=-1 -kerning first=221 second=1102 amount=-3 -kerning first=928 second=1263 amount=-1 -kerning first=247 second=269 amount=-1 -kerning first=124 second=973 amount=-1 -kerning first=1046 second=244 amount=-2 -kerning first=185 second=216 amount=-2 -kerning first=300 second=106 amount=1 -kerning first=65 second=228 amount=-1 -kerning first=322 second=962 amount=-1 -kerning first=1102 second=8230 amount=-1 -kerning first=1118 second=83 amount=-1 -kerning first=942 second=333 amount=-1 -kerning first=1203 second=245 amount=-1 -kerning first=251 second=217 amount=-2 -kerning first=965 second=949 amount=-1 -kerning first=968 second=257 amount=-1 -kerning first=164 second=229 amount=-1 -kerning first=274 second=359 amount=-1 -kerning first=277 second=119 amount=-1 -kerning first=43 second=920 amount=-2 -kerning first=183 second=1195 amount=-1 -kerning first=186 second=371 amount=-1 -kerning first=298 second=1026 amount=-5 -kerning first=301 second=286 amount=-2 -kerning first=63 second=1257 amount=-1 -kerning first=1079 second=1090 amount=-1 -kerning first=1083 second=334 amount=-2 -kerning first=330 second=218 amount=-2 -kerning first=8377 second=376 amount=-5 -kerning first=904 second=346 amount=-1 -kerning first=946 second=273 amount=-1 -kerning first=950 second=45 amount=-2 -kerning first=943 second=964 amount=-2 -kerning first=249 second=947 amount=-4 -kerning first=252 second=372 amount=-5 -kerning first=375 second=287 amount=-1 -kerning first=162 second=1262 amount=-2 -kerning first=165 second=1240 amount=-2 -kerning first=1048 second=1108 amount=-1 -kerning first=193 second=81 amount=-2 -kerning first=305 second=231 amount=-1 -kerning first=70 second=331 amount=-1 -kerning first=1084 second=965 amount=-1 -kerning first=331 second=373 amount=-1 -kerning first=8372 second=8250 amount=-1 -kerning first=905 second=1028 amount=-2 -kerning first=910 second=288 amount=-3 -kerning first=951 second=220 amount=-2 -kerning first=1220 second=350 amount=-1 -kerning first=379 second=232 amount=-1 -kerning first=973 second=362 amount=-2 -kerning first=169 second=332 amount=-2 -kerning first=282 second=244 amount=-1 -kerning first=54 second=106 amount=1 -kerning first=217 second=193 amount=-2 -kerning first=332 second=1071 amount=-1 -kerning first=338 second=83 amount=-1 -kerning first=916 second=233 amount=-1 -kerning first=237 second=333 amount=-1 -kerning first=952 second=375 amount=-1 -kerning first=260 second=257 amount=-1 -kerning first=971 second=8211 amount=-2 -kerning first=35 second=119 amount=-4 -kerning first=170 second=963 amount=-1 -kerning first=174 second=271 amount=-1 -kerning first=8225 second=352 amount=-1 -kerning first=52 second=1026 amount=-5 -kerning first=55 second=286 amount=-2 -kerning first=313 second=334 amount=-1 -kerning first=78 second=218 amount=-2 -kerning first=1170 second=8212 amount=-2 -kerning first=101 second=120 amount=-2 -kerning first=238 second=964 amount=-3 -kerning first=950 second=8249 amount=-3 -kerning first=121 second=287 amount=-1 -kerning first=1299 second=235 amount=-1 -kerning first=178 second=219 amount=-2 -kerning first=289 second=347 amount=-1 -kerning first=59 second=231 amount=-1 -kerning first=202 second=121 amount=-1 -kerning first=314 second=965 amount=-1 -kerning first=8364 second=224 amount=-1 -kerning first=1096 second=8250 amount=-1 -kerning first=931 second=336 amount=-2 -kerning first=1186 second=248 amount=-1 -kerning first=365 second=350 amount=-1 -kerning first=125 second=232 amount=-1 -kerning first=262 second=1176 amount=1 -kerning first=40 second=244 amount=-1 -kerning first=179 second=374 amount=-5 -kerning first=1075 second=337 amount=-1 -kerning first=206 second=71 amount=-2 -kerning first=323 second=221 amount=-5 -kerning first=901 second=111 amount=-1 -kerning first=86 second=83 amount=-1 -kerning first=1103 second=953 amount=-1 -kerning first=369 second=290 amount=-2 -kerning first=268 second=1051 amount=-1 -kerning first=299 second=234 amount=-1 -kerning first=61 second=1090 amount=-3 -kerning first=64 second=334 amount=-2 -kerning first=1080 second=277 amount=-1 -kerning first=207 second=246 amount=-1 -kerning first=187 second=84 amount=-3 -kerning first=8366 second=1079 amount=-1 -kerning first=8378 second=89 amount=-5 -kerning first=902 second=291 amount=-1 -kerning first=87 second=258 amount=-5 -kerning first=1117 second=211 amount=-2 -kerning first=342 second=8212 amount=-1 -kerning first=1207 second=113 amount=-1 -kerning first=253 second=85 amount=-2 -kerning first=373 second=235 amount=-1 -kerning first=967 second=365 amount=-1 -kerning first=163 second=335 amount=-1 -kerning first=166 second=97 amount=-1 -kerning first=42 second=1108 amount=-1 -kerning first=188 second=259 amount=-1 -kerning first=191 second=34 amount=-3 -kerning first=65 second=965 amount=-1 -kerning first=1085 second=224 amount=-1 -kerning first=211 second=196 amount=-2 -kerning first=322 second=8250 amount=-1 -kerning first=332 second=86 amount=-2 -kerning first=1118 second=366 amount=-2 -kerning first=354 second=248 amount=-3 -kerning first=965 second=8217 amount=-3 -kerning first=164 second=966 amount=-1 -kerning first=167 second=275 amount=-1 -kerning first=8221 second=115 amount=-1 -kerning first=49 second=289 amount=-1 -kerning first=304 second=337 amount=-1 -kerning first=72 second=221 amount=-5 -kerning first=215 second=111 amount=-1 -kerning first=330 second=953 amount=-1 -kerning first=89 second=1177 amount=-4 -kerning first=92 second=363 amount=-1 -kerning first=232 second=967 amount=-2 -kerning first=258 second=210 amount=-2 -kerning first=381 second=100 amount=-1 -kerning first=1026 second=250 amount=-1 -kerning first=53 second=234 amount=-1 -kerning first=1064 second=1241 amount=-1 -kerning first=1067 second=187 amount=-1 -kerning first=193 second=364 amount=-2 -kerning first=305 second=968 amount=-1 -kerning first=310 second=277 amount=-2 -kerning first=73 second=376 amount=-5 -kerning first=1099 second=89 amount=-5 -kerning first=213 second=1035 amount=-2 -kerning first=910 second=1098 amount=-2 -kerning first=915 second=339 amount=-1 -kerning first=93 second=1059 amount=-2 -kerning first=923 second=101 amount=-1 -kerning first=90 second=8212 amount=-3 -kerning first=1176 second=251 amount=-1 -kerning first=356 second=1117 amount=-2 -kerning first=954 second=263 amount=-2 -kerning first=119 second=235 amount=-1 -kerning first=191 second=8216 amount=-3 -kerning first=80 second=86 amount=-1 -kerning first=1103 second=39 amount=-3 -kerning first=338 second=366 amount=-2 -kerning first=916 second=970 amount=-1 -kerning first=926 second=279 amount=-1 -kerning first=100 second=248 amount=-1 -kerning first=960 second=213 amount=-2 -kerning first=257 second=8217 amount=-1 -kerning first=260 second=1063 amount=-3 -kerning first=38 second=197 amount=-1 -kerning first=1035 second=355 amount=-1 -kerning first=180 second=87 amount=-5 -kerning first=58 second=337 amount=-1 -kerning first=61 second=99 amount=-1 -kerning first=198 second=940 amount=-1 -kerning first=201 second=249 amount=-1 -kerning first=78 second=953 amount=-1 -kerning first=336 second=8218 amount=-1 -kerning first=936 second=226 amount=-1 -kerning first=124 second=338 amount=-2 -kerning first=160 second=100 amount=-1 -kerning first=1299 second=972 amount=-1 -kerning first=182 second=262 amount=-2 -kerning first=294 second=1241 amount=-1 -kerning first=297 second=187 amount=-1 -kerning first=59 second=968 amount=-1 -kerning first=62 second=277 amount=-1 -kerning first=1078 second=227 amount=-1 -kerning first=205 second=199 amount=-2 -kerning first=317 second=1079 amount=-1 -kerning first=8369 second=269 amount=-1 -kerning first=325 second=89 amount=-5 -kerning first=108 second=113 amount=-1 -kerning first=105 second=353 amount=-1 -kerning first=245 second=955 amount=-1 -kerning first=962 second=1066 amount=-5 -kerning first=958 second=8221 amount=-3 -kerning first=8211 second=118 amount=-1 -kerning first=186 second=212 amount=-2 -kerning first=203 second=1118 amount=-1 -kerning first=206 second=354 amount=-5 -kerning first=330 second=39 amount=-3 -kerning first=8377 second=217 amount=-2 -kerning first=83 second=1184 amount=-1 -kerning first=86 second=366 amount=-2 -kerning first=1119 second=79 amount=-2 -kerning first=112 second=63 amount=-2 -kerning first=252 second=213 amount=-2 -kerning first=372 second=341 amount=-2 -kerning first=375 second=103 amount=-1 -kerning first=165 second=225 amount=-1 -kerning first=278 second=115 amount=-1 -kerning first=184 second=1185 amount=-3 -kerning first=67 second=379 amount=-1 -kerning first=207 second=1038 amount=-2 -kerning first=8372 second=947 amount=-4 -kerning first=8378 second=372 amount=-5 -kerning first=902 second=1101 amount=-1 -kerning first=84 second=8218 amount=-3 -kerning first=1117 second=945 amount=-1 -kerning first=948 second=268 amount=-2 -kerning first=253 second=368 amount=-2 -kerning first=376 second=281 amount=-4 -kerning first=373 second=972 amount=-1 -kerning first=8220 second=243 amount=-1 -kerning first=48 second=1241 amount=-1 -kerning first=51 second=187 amount=-1 -kerning first=185 second=8220 amount=-3 -kerning first=306 second=227 amount=-1 -kerning first=74 second=89 amount=-5 -kerning first=1094 second=269 amount=-1 -kerning first=906 second=973 amount=-1 -kerning first=94 second=251 amount=-1 -kerning first=952 second=216 amount=-2 -kerning first=254 second=1066 amount=-5 -kerning first=251 second=8221 amount=-3 -kerning first=192 second=943 amount=-1 -kerning first=195 second=252 amount=-1 -kerning first=304 second=1256 amount=-2 -kerning first=78 second=39 amount=-3 -kerning first=75 second=266 amount=-3 -kerning first=1178 second=119 amount=-2 -kerning first=358 second=920 amount=-2 -kerning first=950 second=1195 amount=-1 -kerning first=121 second=103 amount=-1 -kerning first=1224 second=1026 amount=-5 -kerning first=378 second=1257 amount=-1 -kerning first=36 second=115 amount=-1 -kerning first=175 second=267 amount=-1 -kerning first=8226 second=346 amount=-1 -kerning first=8361 second=273 amount=-1 -kerning first=8364 second=45 amount=-2 -kerning first=1096 second=947 amount=-4 -kerning first=1099 second=372 amount=-5 -kerning first=915 second=1262 amount=-2 -kerning first=923 second=1240 amount=-2 -kerning first=962 second=81 amount=-2 -kerning first=119 second=972 amount=-1 -kerning first=122 second=281 amount=-1 -kerning first=1037 second=243 amount=-1 -kerning first=8230 second=1028 amount=-1 -kerning first=60 second=227 amount=-1 -kerning first=203 second=117 amount=-1 -kerning first=200 second=357 amount=-1 -kerning first=318 second=269 amount=-1 -kerning first=8365 second=220 amount=-2 -kerning first=80 second=369 amount=-1 -kerning first=934 second=332 amount=-2 -kerning first=1187 second=244 amount=-1 -kerning first=369 second=106 amount=1 -kerning first=126 second=228 amount=-1 -kerning first=271 second=118 amount=-4 -kerning first=38 second=916 amount=-1 -kerning first=41 second=240 amount=-1 -kerning first=177 second=1194 amount=-2 -kerning first=180 second=370 amount=-2 -kerning first=296 second=283 amount=-1 -kerning first=58 second=1256 amount=-2 -kerning first=1076 second=333 amount=-1 -kerning first=207 second=67 amount=-2 -kerning first=8366 second=375 amount=-1 -kerning first=87 second=79 amount=-2 -kerning first=350 second=119 amount=-1 -kerning first=936 second=963 amount=-1 -kerning first=247 second=371 amount=-1 -kerning first=367 second=1026 amount=-5 -kerning first=124 second=1257 amount=-1 -kerning first=1046 second=346 amount=-1 -kerning first=300 second=230 amount=-1 -kerning first=1085 second=45 amount=-2 -kerning first=1081 second=273 amount=-1 -kerning first=322 second=947 amount=-4 -kerning first=325 second=372 amount=-5 -kerning first=8364 second=8249 amount=-3 -kerning first=903 second=287 amount=-1 -kerning first=254 second=81 amount=-2 -kerning first=374 second=231 amount=-4 -kerning first=968 second=361 amount=-1 -kerning first=971 second=121 amount=-1 -kerning first=8217 second=196 amount=-3 -kerning first=1051 second=288 amount=-2 -kerning first=298 second=1263 amount=-1 -kerning first=69 second=269 amount=-1 -kerning first=1087 second=220 amount=-2 -kerning first=1119 second=362 amount=-2 -kerning first=946 second=374 amount=-5 -kerning first=1219 second=289 amount=-1 -kerning first=1026 second=71 amount=-2 -kerning first=165 second=962 amount=-1 -kerning first=1241 second=8230 amount=-1 -kerning first=50 second=283 amount=-1 -kerning first=1064 second=233 amount=-1 -kerning first=305 second=333 amount=-1 -kerning first=73 second=217 amount=-2 -kerning first=93 second=359 amount=-1 -kerning first=1117 second=8211 amount=-2 -kerning first=96 second=119 amount=-4 -kerning first=236 second=271 amount=-1 -kerning first=113 second=1026 amount=-5 -kerning first=376 second=1090 amount=-2 -kerning first=379 second=334 amount=-1 -kerning first=1027 second=246 amount=-1 -kerning first=172 second=218 amount=-2 -kerning first=282 second=346 amount=-1 -kerning first=8224 second=291 amount=-1 -kerning first=54 second=230 amount=-1 -kerning first=194 second=360 amount=-2 -kerning first=306 second=964 amount=-3 -kerning first=315 second=45 amount=-3 -kerning first=311 second=273 amount=-2 -kerning first=74 second=372 amount=-5 -kerning first=1085 second=8249 amount=-3 -kerning first=916 second=335 amount=-1 -kerning first=926 second=97 amount=-1 -kerning first=240 second=219 amount=-2 -kerning first=357 second=1108 amount=-1 -kerning first=955 second=259 amount=-1 -kerning first=960 second=34 amount=-3 -kerning first=120 second=231 amount=-2 -kerning first=260 second=361 amount=-1 -kerning first=35 second=243 amount=-1 -kerning first=174 second=373 amount=-4 -kerning first=52 second=1263 amount=-1 -kerning first=316 second=220 amount=-2 -kerning first=8363 second=171 amount=-3 -kerning first=221 second=232 amount=-4 -kerning first=928 second=275 amount=-1 -kerning first=1299 second=337 amount=-1 -kerning first=39 second=193 amount=-3 -kerning first=1039 second=111 amount=-1 -kerning first=182 second=83 amount=-1 -kerning first=294 second=233 amount=-1 -kerning first=59 second=333 amount=-1 -kerning first=1070 second=967 amount=-1 -kerning first=202 second=245 amount=-1 -kerning first=317 second=375 amount=-1 -kerning first=962 second=364 amount=-2 -kerning first=125 second=334 amount=-2 -kerning first=40 second=346 amount=-1 -kerning first=1037 second=1035 amount=-5 -kerning first=1041 second=291 amount=-1 -kerning first=63 second=273 amount=-1 -kerning first=60 second=964 amount=-3 -kerning first=315 second=8249 amount=-3 -kerning first=8370 second=263 amount=-1 -kerning first=901 second=235 amount=-1 -kerning first=103 second=1108 amount=-1 -kerning first=249 second=259 amount=-1 -kerning first=252 second=34 amount=-3 -kerning first=960 second=8216 amount=-3 -kerning first=126 second=965 amount=-1 -kerning first=41 second=1028 amount=-2 -kerning first=44 second=288 amount=-1 -kerning first=299 second=336 amount=-2 -kerning first=1084 second=171 amount=-3 -kerning first=207 second=350 amount=-1 -kerning first=8378 second=213 amount=-2 -kerning first=1106 second=8217 amount=-1 -kerning first=233 second=47 amount=-1 -kerning first=948 second=87 amount=-5 -kerning first=376 second=99 amount=-4 -kerning first=373 second=337 amount=-1 -kerning first=967 second=940 amount=-1 -kerning first=166 second=221 amount=-5 -kerning first=276 second=351 amount=-1 -kerning first=48 second=233 amount=-1 -kerning first=188 second=363 amount=-1 -kerning first=185 second=1177 amount=-1 -kerning first=906 second=338 amount=-2 -kerning first=1118 second=941 amount=-1 -kerning first=354 second=352 amount=-1 -kerning first=114 second=234 amount=-1 -kerning first=1210 second=1241 amount=-1 -kerning first=1223 second=187 amount=-1 -kerning first=254 second=364 amount=-2 -kerning first=374 second=968 amount=-2 -kerning first=377 second=277 amount=-1 -kerning first=167 second=376 amount=-5 -kerning first=280 second=291 amount=-1 -kerning first=1063 second=339 amount=-1 -kerning first=186 second=8212 amount=-2 -kerning first=189 second=1059 amount=-2 -kerning first=1051 second=1098 amount=-3 -kerning first=1095 second=263 amount=-1 -kerning first=215 second=235 amount=-1 -kerning first=8377 second=8221 amount=-3 -kerning first=252 second=8216 amount=-3 -kerning first=1026 second=354 amount=-5 -kerning first=165 second=8250 amount=-1 -kerning first=53 second=336 amount=-2 -kerning first=1064 second=970 amount=-1 -kerning first=1067 second=279 amount=-1 -kerning first=196 second=248 amount=-1 -kerning first=314 second=171 amount=-3 -kerning first=1099 second=213 amount=-2 -kerning first=331 second=8217 amount=-1 -kerning first=923 second=225 amount=-1 -kerning first=1176 second=355 amount=-1 -kerning first=951 second=1185 amount=-3 -kerning first=119 second=337 amount=-1 -kerning first=122 second=99 amount=-1 -kerning first=37 second=111 amount=-1 -kerning first=1027 second=1038 amount=-2 -kerning first=176 second=261 amount=-1 -kerning first=172 second=953 amount=-1 -kerning first=34 second=351 amount=-1 -kerning first=8224 second=1101 amount=-1 -kerning first=1071 second=226 amount=-1 -kerning first=80 second=210 amount=-2 -kerning first=223 second=100 amount=-1 -kerning first=338 second=941 amount=-1 -kerning first=100 second=352 amount=-1 -kerning first=363 second=1241 amount=-1 -kerning first=952 second=8220 amount=-3 -kerning first=123 second=277 amount=-1 -kerning first=35 second=1035 amount=-5 -kerning first=38 second=291 amount=-1 -kerning first=180 second=211 amount=-2 -kerning first=291 second=339 amount=-1 -kerning first=8240 second=973 amount=-1 -kerning first=296 second=101 amount=-1 -kerning first=201 second=353 amount=-1 -kerning first=204 second=113 amount=-1 -kerning first=321 second=263 amount=-1 -kerning first=8366 second=216 amount=-2 -kerning first=221 second=969 amount=-4 -kerning first=247 second=212 amount=-2 -kerning first=964 second=252 amount=-1 -kerning first=160 second=224 amount=-1 -kerning first=1299 second=1256 amount=-2 -kerning first=178 second=1184 amount=-5 -kerning first=182 second=366 amount=-2 -kerning first=297 second=279 amount=-1 -kerning first=294 second=970 amount=-1 -kerning first=65 second=171 amount=-3 -kerning first=325 second=213 amount=-2 -kerning first=8364 second=1195 amount=-1 -kerning first=8369 second=371 amount=-1 -kerning first=903 second=103 amount=-1 -kerning first=942 second=267 amount=-1 -kerning first=245 second=1185 amount=-1 -kerning first=1041 second=1101 amount=-1 -kerning first=301 second=226 amount=-1 -kerning first=1083 second=268 amount=-2 -kerning first=8370 second=1069 amount=-1 -kerning first=901 second=972 amount=-1 -kerning first=86 second=941 amount=-1 -kerning first=904 second=281 amount=-1 -kerning first=89 second=250 amount=-2 -kerning first=246 second=8220 amount=-1 -kerning first=375 second=227 amount=-1 -kerning first=162 second=1079 amount=-1 -kerning first=168 second=89 amount=-5 -kerning first=44 second=1098 amount=-3 -kerning first=47 second=339 amount=-2 -kerning first=1048 second=973 amount=-1 -kerning first=50 second=101 amount=-1 -kerning first=190 second=251 amount=-1 -kerning first=70 second=263 amount=-1 -kerning first=327 second=1066 amount=-5 -kerning first=324 second=8221 amount=-1 -kerning first=910 second=228 amount=-4 -kerning first=1171 second=118 amount=-4 -kerning first=356 second=240 amount=-3 -kerning first=944 second=1194 amount=-2 -kerning first=948 second=370 amount=-2 -kerning first=1220 second=283 amount=-1 -kerning first=253 second=943 amount=-1 -kerning first=256 second=252 amount=-1 -kerning first=376 second=382 amount=-2 -kerning first=1027 second=67 amount=-2 -kerning first=169 second=266 amount=-2 -kerning first=172 second=39 amount=-3 -kerning first=48 second=970 amount=-1 -kerning first=51 second=279 amount=-1 -kerning first=74 second=213 amount=-2 -kerning first=1085 second=1195 amount=-1 -kerning first=906 second=1257 amount=-1 -kerning first=94 second=355 amount=-1 -kerning first=237 second=267 amount=-1 -kerning first=174 second=214 amount=-2 -kerning first=280 second=1101 amount=-1 -kerning first=8225 second=287 amount=-1 -kerning first=55 second=226 amount=-1 -kerning first=1063 second=1262 amount=-2 -kerning first=195 second=356 amount=-5 -kerning first=198 second=116 amount=-1 -kerning first=313 second=268 amount=-1 -kerning first=1095 second=1069 amount=-1 -kerning first=215 second=972 amount=-1 -kerning first=1178 second=243 amount=-1 -kerning first=121 second=227 amount=-1 -kerning first=1224 second=1263 amount=-1 -kerning first=175 second=369 amount=-1 -kerning first=317 second=216 amount=-2 -kerning first=8361 second=374 amount=-5 -kerning first=73 second=8221 amount=-3 -kerning first=76 second=1066 amount=-6 -kerning first=923 second=962 amount=-1 -kerning first=102 second=240 amount=-1 -kerning first=239 second=1194 amount=-2 -kerning first=365 second=283 amount=-1 -kerning first=262 second=1044 amount=-1 -kerning first=183 second=79 amount=-2 -kerning first=1071 second=963 amount=-1 -kerning first=1075 second=271 amount=-1 -kerning first=200 second=920 amount=-2 -kerning first=318 second=371 amount=-1 -kerning first=315 second=1195 amount=-1 -kerning first=8370 second=84 amount=-5 -kerning first=369 second=230 amount=-1 -kerning first=963 second=360 amount=-2 -kerning first=966 second=120 amount=-2 -kerning first=268 second=923 amount=-1 -kerning first=271 second=242 amount=-1 -kerning first=38 second=1101 amount=-1 -kerning first=180 second=945 amount=-1 -kerning first=296 second=1240 amount=-2 -kerning first=291 second=1262 amount=-2 -kerning first=64 second=268 amount=-2 -kerning first=1080 second=219 amount=-2 -kerning first=321 second=1069 amount=-1 -kerning first=327 second=81 amount=-2 -kerning first=8378 second=34 amount=-3 -kerning first=902 second=231 amount=-1 -kerning first=8372 second=259 amount=-1 -kerning first=1117 second=121 amount=-1 -kerning first=941 second=373 amount=-1 -kerning first=1202 second=288 amount=-1 -kerning first=367 second=1263 amount=-1 -kerning first=163 second=269 amount=-1 -kerning first=42 second=973 amount=-1 -kerning first=1049 second=232 amount=-1 -kerning first=300 second=332 amount=-2 -kerning first=1081 second=374 amount=-5 -kerning first=91 second=118 amount=-4 -kerning first=354 second=193 amount=-6 -kerning first=1210 second=233 amount=-1 -kerning first=374 second=333 amount=-4 -kerning first=971 second=245 amount=-1 -kerning first=167 second=217 amount=-2 -kerning first=49 second=229 amount=-1 -kerning first=192 second=119 amount=-4 -kerning first=189 second=359 amount=-1 -kerning first=301 second=963 amount=-1 -kerning first=304 second=271 amount=-1 -kerning first=69 second=371 amount=-1 -kerning first=1095 second=84 amount=-5 -kerning first=209 second=1026 amount=-5 -kerning first=904 second=1090 amount=-3 -kerning first=1170 second=246 amount=-1 -kerning first=255 second=360 amount=-2 -kerning first=375 second=964 amount=-3 -kerning first=381 second=45 amount=-3 -kerning first=378 second=273 amount=-1 -kerning first=165 second=947 amount=-4 -kerning first=168 second=372 amount=-5 -kerning first=50 second=1240 amount=-2 -kerning first=47 second=1262 amount=-2 -kerning first=1064 second=335 amount=-1 -kerning first=1067 second=97 amount=-1 -kerning first=70 second=1069 amount=-1 -kerning first=76 second=81 amount=-1 -kerning first=1099 second=34 amount=-3 -kerning first=1096 second=259 amount=-1 -kerning first=8378 second=8216 amount=-3 -kerning first=910 second=965 amount=-2 -kerning first=96 second=243 amount=-1 -kerning first=236 second=373 amount=-4 -kerning first=356 second=1028 amount=-1 -kerning first=113 second=1263 amount=-1 -kerning first=1027 second=350 amount=-1 -kerning first=287 second=232 amount=-1 -kerning first=54 second=332 amount=-2 -kerning first=1065 second=966 amount=-1 -kerning first=197 second=244 amount=-1 -kerning first=926 second=221 amount=-5 -kerning first=1184 second=111 amount=-2 -kerning first=234 second=8230 amount=-1 -kerning first=363 second=233 amount=-1 -kerning first=955 second=363 amount=-1 -kerning first=952 second=1177 amount=-1 -kerning first=120 second=333 amount=-2 -kerning first=1257 second=967 amount=-2 -kerning first=1035 second=290 amount=-2 -kerning first=174 second=949 amount=-1 -kerning first=177 second=257 amount=-1 -kerning first=283 second=1299 amount=-1 -kerning first=8240 second=338 amount=-2 -kerning first=8260 second=100 amount=-1 -kerning first=55 second=963 amount=-1 -kerning first=58 second=271 amount=-1 -kerning first=321 second=84 amount=-5 -kerning first=8363 second=262 amount=-2 -kerning first=221 second=334 amount=-3 -kerning first=928 second=376 amount=-5 -kerning first=1178 second=1035 amount=-2 -kerning first=1185 second=291 amount=-2 -kerning first=956 second=1059 amount=-2 -kerning first=124 second=273 amount=-1 -kerning first=160 second=45 amount=-2 -kerning first=121 second=964 amount=-3 -kerning first=39 second=287 amount=-1 -kerning first=1039 second=235 amount=-1 -kerning first=294 second=335 amount=-1 -kerning first=297 second=97 amount=-1 -kerning first=62 second=219 amount=-2 -kerning first=202 second=347 amount=-1 -kerning first=325 second=34 amount=-3 -kerning first=322 second=259 amount=-1 -kerning first=8369 second=212 amount=-2 -kerning first=1099 second=8216 amount=-3 -kerning first=346 second=196 amount=-1 -kerning first=923 second=8250 amount=-1 -kerning first=105 second=288 amount=-2 -kerning first=965 second=248 amount=-1 -kerning first=161 second=220 amount=-2 -kerning first=43 second=232 amount=-1 -kerning first=179 second=1176 amount=-1 -kerning first=183 second=362 amount=-2 -kerning first=298 second=275 amount=-1 -kerning first=63 second=374 amount=-5 -kerning first=1075 second=1076 amount=-3 -kerning first=206 second=289 amount=-1 -kerning first=1083 second=87 amount=-5 -kerning first=8370 second=367 amount=-1 -kerning first=8365 second=1185 amount=-3 -kerning first=901 second=337 amount=-1 -kerning first=904 second=99 amount=-1 -kerning first=89 second=71 amount=-3 -kerning first=249 second=363 amount=-1 -kerning first=162 second=375 amount=-1 -kerning first=1048 second=338 amount=-2 -kerning first=180 second=8211 amount=-2 -kerning first=70 second=84 amount=-5 -kerning first=1084 second=262 amount=-2 -kerning first=327 second=364 amount=-2 -kerning first=8366 second=8220 amount=-3 -kerning first=902 second=968 amount=-1 -kerning first=905 second=277 amount=-1 -kerning first=90 second=246 amount=-1 -kerning first=1168 second=199 amount=-2 -kerning first=350 second=1035 amount=-1 -kerning first=948 second=211 amount=-2 -kerning first=1202 second=1098 amount=-2 -kerning first=247 second=8212 amount=-2 -kerning first=250 second=1059 amount=-2 -kerning first=1220 second=101 amount=-1 -kerning first=1207 second=339 amount=-1 -kerning first=973 second=113 amount=-1 -kerning first=160 second=8249 amount=-3 -kerning first=169 second=85 amount=-2 -kerning first=48 second=335 amount=-1 -kerning first=51 second=97 amount=-1 -kerning first=74 second=34 amount=-3 -kerning first=325 second=8216 amount=-3 -kerning first=1118 second=1118 amount=-1 -kerning first=1223 second=279 amount=-1 -kerning first=1210 second=970 amount=-1 -kerning first=8225 second=103 amount=-1 -kerning first=49 second=966 amount=-1 -kerning first=52 second=275 amount=-1 -kerning first=313 second=87 amount=-4 -kerning first=1095 second=367 amount=-1 -kerning first=1087 second=1185 amount=-3 -kerning first=215 second=337 amount=-1 -kerning first=95 second=351 amount=-1 -kerning first=1170 second=1038 amount=-2 -kerning first=238 second=261 amount=-1 -kerning first=1240 second=88 amount=-3 -kerning first=175 second=210 amount=-2 -kerning first=289 second=100 amount=-1 -kerning first=8226 second=281 amount=-1 -kerning first=196 second=352 amount=-1 -kerning first=314 second=262 amount=-2 -kerning first=76 second=364 amount=-1 -kerning first=915 second=1079 amount=-1 -kerning first=96 second=1035 amount=-5 -kerning first=931 second=89 amount=-5 -kerning first=365 second=101 amount=-1 -kerning first=958 second=251 amount=-1 -kerning first=37 second=235 amount=-1 -kerning first=176 second=365 amount=-1 -kerning first=318 second=212 amount=-2 -kerning first=74 second=8216 amount=-3 -kerning first=1103 second=252 amount=-1 -kerning first=223 second=224 amount=-1 -kerning first=338 second=1118 amount=-1 -kerning first=934 second=266 amount=-2 -kerning first=240 second=1184 amount=-5 -kerning first=363 second=970 amount=-1 -kerning first=126 second=171 amount=-3 -kerning first=174 second=8217 amount=-3 -kerning first=296 second=225 amount=-1 -kerning first=8240 second=1257 amount=-1 -kerning first=64 second=87 amount=-5 -kerning first=1076 second=267 amount=-1 -kerning first=316 second=1185 amount=-3 -kerning first=321 second=367 amount=-1 -kerning first=84 second=249 amount=-2 -kerning first=221 second=1220 amount=-3 -kerning first=964 second=356 amount=-5 -kerning first=967 second=116 amount=-1 -kerning first=42 second=338 amount=-2 -kerning first=1039 second=972 amount=-1 -kerning first=185 second=250 amount=-1 -kerning first=182 second=941 amount=-1 -kerning first=1046 second=281 amount=-2 -kerning first=65 second=262 amount=-2 -kerning first=205 second=1241 amount=-1 -kerning first=317 second=8220 amount=-3 -kerning first=903 second=227 amount=-1 -kerning first=88 second=199 amount=-3 -kerning first=1118 second=117 amount=-1 -kerning first=942 second=369 amount=-1 -kerning first=105 second=1098 amount=-3 -kerning first=108 second=339 amount=-1 -kerning first=251 second=251 amount=-1 -kerning first=164 second=263 amount=-1 -kerning first=1051 second=228 amount=-1 -kerning first=69 second=212 amount=-2 -kerning first=1083 second=370 amount=-2 -kerning first=330 second=252 amount=-1 -kerning first=901 second=1256 amount=-2 -kerning first=86 second=1118 amount=-1 -kerning first=1170 second=67 amount=-2 -kerning first=235 second=39 amount=-1 -kerning first=950 second=79 amount=-2 -kerning first=1219 second=229 amount=-1 -kerning first=372 second=1081 amount=-2 -kerning first=168 second=213 amount=-2 -kerning first=8212 second=1026 amount=-4 -kerning first=8222 second=56 amount=-1 -kerning first=8218 second=286 amount=-1 -kerning first=50 second=225 amount=-1 -kerning first=1048 second=1257 amount=-1 -kerning first=190 second=355 amount=-1 -kerning first=193 second=115 amount=-1 -kerning first=305 second=267 amount=-1 -kerning first=70 second=367 amount=-1 -kerning first=1171 second=242 amount=-1 -kerning first=236 second=214 amount=-2 -kerning first=948 second=945 amount=-1 -kerning first=1220 second=1240 amount=-2 -kerning first=256 second=356 amount=-5 -kerning first=379 second=268 amount=-1 -kerning first=169 second=368 amount=-2 -kerning first=282 second=281 amount=-1 -kerning first=8224 second=231 amount=-1 -kerning first=338 second=117 amount=-1 -kerning first=916 second=269 amount=-1 -kerning first=237 second=369 amount=-1 -kerning first=357 second=973 amount=-1 -kerning first=1035 second=106 amount=1 -kerning first=170 second=1066 amount=-5 -kerning first=167 second=8221 amount=-3 -kerning first=8221 second=1298 amount=-3 -kerning first=198 second=240 amount=-1 -kerning first=313 second=370 amount=-1 -kerning first=8363 second=83 amount=-1 -kerning first=78 second=252 amount=-1 -kerning first=215 second=1256 amount=-2 -kerning first=336 second=1044 amount=-1 -kerning first=928 second=217 amount=-2 -kerning first=235 second=8222 amount=-1 -kerning first=956 second=359 amount=-1 -kerning first=961 second=119 amount=-1 -kerning first=1299 second=271 amount=-1 -kerning first=381 second=1195 amount=-1 -kerning first=39 second=103 amount=-1 -kerning first=1036 second=286 amount=-3 -kerning first=1033 second=1026 amount=-5 -kerning first=178 second=253 amount=-1 -kerning first=8226 second=1090 amount=-3 -kerning first=59 second=267 amount=-1 -kerning first=1074 second=218 amount=-2 -kerning first=343 second=242 amount=-1 -kerning first=923 second=947 amount=-4 -kerning first=931 second=372 amount=-5 -kerning first=365 second=1240 amount=-2 -kerning first=125 second=268 amount=-2 -kerning first=37 second=972 amount=-1 -kerning first=40 second=281 amount=-1 -kerning first=1041 second=231 amount=-1 -kerning first=86 second=117 amount=-2 -kerning first=103 second=973 amount=-1 -kerning first=947 second=232 amount=-1 -kerning first=369 second=332 amount=-2 -kerning first=162 second=216 amount=-2 -kerning first=1038 second=1298 amount=-1 -kerning first=296 second=962 amount=-1 -kerning first=61 second=1194 amount=-2 -kerning first=64 second=370 amount=-2 -kerning first=1084 second=83 amount=-1 -kerning first=207 second=283 amount=-1 -kerning first=8366 second=1177 amount=-1 -kerning first=8372 second=363 amount=-1 -kerning first=902 second=333 amount=-1 -kerning first=84 second=1044 amount=-4 -kerning first=90 second=67 amount=-1 -kerning first=1117 second=245 amount=-1 -kerning first=944 second=257 amount=-1 -kerning first=250 second=359 amount=-1 -kerning first=253 second=119 amount=-4 -kerning first=373 second=271 amount=-1 -kerning first=376 second=44 amount=-4 -kerning first=160 second=1195 amount=-1 -kerning first=163 second=371 amount=-1 -kerning first=273 second=1026 amount=-5 -kerning first=276 second=286 amount=-2 -kerning first=8216 second=234 amount=-1 -kerning first=42 second=1257 amount=-1 -kerning first=1046 second=1090 amount=-3 -kerning first=1049 second=334 amount=-2 -kerning first=303 second=218 amount=-2 -kerning first=8369 second=8212 amount=-2 -kerning first=906 second=273 amount=-1 -kerning first=903 second=964 amount=-3 -kerning first=91 second=242 amount=-1 -kerning first=228 second=947 amount=-1 -kerning first=354 second=287 amount=-2 -kerning first=108 second=1262 amount=-2 -kerning first=1210 second=335 amount=-1 -kerning first=1223 second=97 amount=-1 -kerning first=968 second=1108 amount=-1 -kerning first=971 second=347 amount=-1 -kerning first=164 second=1069 amount=-1 -kerning first=170 second=81 amount=-2 -kerning first=280 second=231 amount=-1 -kerning first=1051 second=965 amount=-1 -kerning first=192 second=243 amount=-1 -kerning first=304 second=373 amount=-4 -kerning first=209 second=1263 amount=-1 -kerning first=912 second=220 amount=-2 -kerning first=1170 second=350 amount=-1 -kerning first=358 second=232 amount=-1 -kerning first=946 second=1176 amount=-1 -kerning first=950 second=362 amount=-2 -kerning first=1219 second=966 amount=-1 -kerning first=1224 second=275 amount=-1 -kerning first=258 second=244 amount=-1 -kerning first=1026 second=289 amount=-1 -kerning first=171 second=256 amount=-1 -kerning first=8226 second=99 amount=-1 -kerning first=50 second=962 amount=-1 -kerning first=1067 second=221 amount=-5 -kerning first=314 second=83 amount=-1 -kerning first=1096 second=363 amount=-1 -kerning first=915 second=375 amount=-1 -kerning first=1176 second=290 amount=-2 -kerning first=236 second=949 amount=-1 -kerning first=239 second=257 amount=-1 -kerning first=948 second=8211 amount=-2 -kerning first=119 second=271 amount=-1 -kerning first=262 second=194 amount=-1 -kerning first=282 second=1090 amount=-3 -kerning first=287 second=334 amount=-2 -kerning first=8224 second=968 amount=-1 -kerning first=57 second=218 amount=-2 -kerning first=1068 second=376 amount=-5 -kerning first=197 second=346 amount=-1 -kerning first=77 second=360 amount=-2 -kerning first=223 second=45 amount=-2 -kerning first=934 second=85 amount=-2 -kerning first=100 second=287 amount=-1 -kerning first=1184 second=235 amount=-2 -kerning first=363 second=335 amount=-1 -kerning first=123 second=219 amount=-2 -kerning first=260 second=1108 amount=-1 -kerning first=38 second=231 amount=-1 -kerning first=177 second=361 amount=-1 -kerning first=180 second=121 amount=-1 -kerning first=8260 second=224 amount=-1 -kerning first=58 second=373 amount=-4 -kerning first=198 second=1028 amount=-2 -kerning first=201 second=288 amount=-2 -kerning first=8363 second=366 amount=-2 -kerning first=339 second=1113 amount=-1 -kerning first=936 second=260 amount=-3 -kerning first=367 second=275 amount=-1 -kerning first=124 second=374 amount=-5 -kerning first=266 second=1033 amount=-1 -kerning first=1039 second=337 amount=-1 -kerning first=185 second=71 amount=-2 -kerning first=1046 second=99 amount=-2 -kerning first=297 second=221 amount=-5 -kerning first=56 second=8230 amount=-1 -kerning first=65 second=83 amount=-1 -kerning first=1074 second=953 amount=-1 -kerning first=205 second=233 amount=-1 -kerning first=1078 second=261 amount=-1 -kerning first=317 second=1177 amount=-1 -kerning first=322 second=363 amount=-1 -kerning first=942 second=210 amount=-2 -kerning first=1203 second=100 amount=-1 -kerning first=965 second=352 amount=-1 -kerning first=164 second=84 amount=-5 -kerning first=274 second=234 amount=-1 -kerning first=43 second=334 amount=-2 -kerning first=1041 second=968 amount=-1 -kerning first=186 second=246 amount=-1 -kerning first=40 second=1090 amount=-3 -kerning first=298 second=376 amount=-5 -kerning first=1083 second=211 amount=-2 -kerning first=66 second=258 amount=-1 -kerning first=323 second=1059 amount=-2 -kerning first=318 second=8212 amount=-2 -kerning first=8377 second=251 amount=-1 -kerning first=1119 second=113 amount=-1 -kerning first=223 second=8249 amount=-3 -kerning first=1116 second=353 amount=-1 -kerning first=947 second=969 amount=-1 -kerning first=165 second=259 amount=-1 -kerning first=168 second=34 amount=-3 -kerning first=8218 second=102 amount=-2 -kerning first=44 second=965 amount=-1 -kerning first=296 second=8250 amount=-1 -kerning first=1080 second=1184 amount=-5 -kerning first=1084 second=366 amount=-2 -kerning first=910 second=171 amount=-3 -kerning first=941 second=8217 amount=-1 -kerning first=113 second=275 amount=-1 -kerning first=116 second=47 amount=-1 -kerning first=1220 second=225 amount=-1 -kerning first=376 second=324 amount=-3 -kerning first=282 second=99 amount=-1 -kerning first=51 second=221 amount=-5 -kerning first=194 second=111 amount=-1 -kerning first=191 second=351 amount=-1 -kerning first=306 second=261 amount=-1 -kerning first=303 second=953 amount=-1 -kerning first=211 second=967 amount=-1 -kerning first=94 second=290 amount=-2 -kerning first=237 second=210 amount=-2 -kerning first=354 second=1097 amount=-2 -kerning first=357 second=338 amount=-2 -kerning first=952 second=250 amount=-1 -kerning first=170 second=364 amount=-2 -kerning first=280 second=968 amount=-1 -kerning first=8225 second=227 amount=-1 -kerning first=52 second=376 amount=-5 -kerning first=1063 second=1079 amount=-1 -kerning first=192 second=1035 amount=-5 -kerning first=195 second=291 amount=-1 -kerning first=1069 second=89 amount=-3 -kerning first=313 second=211 amount=-1 -kerning first=69 second=8212 amount=-2 -kerning first=72 second=1059 amount=-2 -kerning first=238 second=365 amount=-1 -kerning first=1036 second=102 amount=-2 -kerning first=168 second=8216 amount=-3 -kerning first=289 second=224 amount=-1 -kerning first=8222 second=1256 amount=-1 -kerning first=50 second=8250 amount=-1 -kerning first=1074 second=39 amount=-3 -kerning first=314 second=366 amount=-2 -kerning first=8364 second=79 amount=-2 -kerning first=931 second=213 amount=-2 -kerning first=236 second=8217 amount=-3 -kerning first=365 second=225 amount=-1 -kerning first=958 second=355 amount=-1 -kerning first=962 second=115 amount=-1 -kerning first=125 second=87 amount=-5 -kerning first=37 second=337 amount=-1 -kerning first=40 second=99 amount=-1 -kerning first=179 second=249 amount=-1 -kerning first=176 second=940 amount=-1 -kerning first=60 second=261 amount=-1 -kerning first=57 second=953 amount=-1 -kerning first=83 second=198 amount=-1 -kerning first=1103 second=356 amount=-5 -kerning first=934 second=368 amount=-2 -kerning first=103 second=338 amount=-2 -kerning first=1184 second=972 amount=-2 -kerning first=1187 second=281 amount=-1 -kerning first=126 second=262 amount=-2 -kerning first=271 second=187 amount=-1 -kerning first=38 second=968 amount=-1 -kerning first=44 second=49 amount=-4 -kerning first=41 second=277 amount=-1 -kerning first=184 second=199 amount=-2 -kerning first=291 second=1079 amount=-1 -kerning first=299 second=89 amount=-5 -kerning first=64 second=211 amount=-2 -kerning first=204 second=339 amount=-1 -kerning first=207 second=101 amount=-1 -kerning first=201 second=1098 amount=-3 -kerning first=84 second=353 amount=-3 -kerning first=87 second=113 amount=-3 -kerning first=936 second=1066 amount=-5 -kerning first=928 second=8221 amount=-3 -kerning first=967 second=240 amount=-1 -kerning first=163 second=212 amount=-2 -kerning first=1039 second=1256 amount=-2 -kerning first=185 second=354 amount=-5 -kerning first=182 second=1118 amount=-1 -kerning first=300 second=266 amount=-2 -kerning first=303 second=39 amount=-3 -kerning first=62 second=1184 amount=-5 -kerning first=65 second=366 amount=-2 -kerning first=1085 second=79 amount=-2 -kerning first=205 second=970 amount=-1 -kerning first=354 second=103 amount=-2 -kerning first=251 second=355 amount=-1 -kerning first=254 second=115 amount=-1 -kerning first=374 second=267 amount=-4 -kerning first=164 second=367 amount=-1 -kerning first=161 second=1185 amount=-3 -kerning first=8217 second=230 amount=-1 -kerning first=186 second=1038 amount=-2 -kerning first=304 second=214 amount=-2 -kerning first=1083 second=945 amount=-1 -kerning first=330 second=356 amount=-5 -kerning first=112 second=380 amount=-1 -kerning first=162 second=8220 amount=-3 -kerning first=47 second=1079 amount=-1 -kerning first=53 second=89 amount=-5 -kerning first=1064 second=269 amount=-1 -kerning first=305 second=369 amount=-1 -kerning first=70 second=942 amount=-1 -kerning first=73 second=251 amount=-1 -kerning first=213 second=381 amount=-1 -kerning first=915 second=216 amount=-2 -kerning first=1176 second=106 amount=1 -kerning first=230 second=8221 amount=-1 -kerning first=113 second=1080 amount=2 -kerning first=1220 second=962 amount=-1 -kerning first=376 second=1194 amount=-3 -kerning first=1027 second=283 amount=-1 -kerning first=169 second=943 amount=-1 -kerning first=172 second=252 amount=-1 -kerning first=8224 second=333 amount=-1 -kerning first=54 second=266 amount=-2 -kerning first=57 second=39 amount=-3 -kerning first=315 second=79 amount=-1 -kerning first=916 second=371 amount=-1 -kerning first=100 second=103 amount=-1 -kerning first=1174 second=1026 amount=-2 -kerning first=240 second=253 amount=-1 -kerning first=357 second=1257 amount=-1 -kerning first=120 second=267 amount=-2 -kerning first=1298 second=218 amount=-2 -kerning first=1035 second=230 amount=-1 -kerning first=283 second=1083 amount=-1 -kerning first=8240 second=273 amount=-1 -kerning first=8260 second=45 amount=-2 -kerning first=58 second=214 amount=-2 -kerning first=8225 second=964 amount=-3 -kerning first=1069 second=372 amount=-2 -kerning first=195 second=1101 amount=-1 -kerning first=1066 second=947 amount=-1 -kerning first=313 second=945 amount=-1 -kerning first=78 second=356 amount=-5 -kerning first=221 second=268 amount=-3 -kerning first=936 second=81 amount=-2 -kerning first=1185 second=231 amount=-2 -kerning first=1299 second=373 amount=-4 -kerning first=39 second=227 amount=-1 -kerning first=178 second=357 amount=-1 -kerning first=182 second=117 amount=-1 -kerning first=294 second=269 amount=-1 -kerning first=59 second=369 amount=-1 -kerning first=8361 second=1176 amount=-1 -kerning first=8364 second=362 amount=-2 -kerning first=1107 second=244 amount=-1 -kerning first=346 second=106 amount=1 -kerning first=105 second=228 amount=-1 -kerning first=248 second=118 amount=-1 -kerning first=365 second=962 amount=-1 -kerning first=125 second=370 amount=-2 -kerning first=37 second=1256 amount=-2 -kerning first=1041 second=333 amount=-1 -kerning first=186 second=67 amount=-2 -kerning first=298 second=217 amount=-2 -kerning first=57 second=8222 amount=-1 -kerning first=1075 second=949 amount=-1 -kerning first=206 second=229 amount=-1 -kerning first=323 second=359 amount=-1 -kerning first=326 second=119 amount=-1 -kerning first=901 second=271 amount=-1 -kerning first=86 second=241 amount=-2 -kerning first=223 second=1195 amount=-1 -kerning first=103 second=1257 amount=-1 -kerning first=1187 second=1090 amount=-2 -kerning first=1044 second=964 amount=-2 -kerning first=1048 second=273 amount=-1 -kerning first=296 second=947 amount=-4 -kerning first=299 second=372 amount=-5 -kerning first=8260 second=8249 amount=-3 -kerning first=64 second=945 amount=-1 -kerning first=207 second=1240 amount=-2 -kerning first=204 second=1262 amount=-2 -kerning first=905 second=219 amount=-2 -kerning first=1117 second=347 amount=-1 -kerning first=941 second=1175 amount=-1 -kerning first=944 second=361 amount=-1 -kerning first=948 second=121 amount=-1 -kerning first=253 second=243 amount=-1 -kerning first=967 second=1028 amount=-2 -kerning first=273 second=1263 amount=-1 -kerning first=48 second=269 amount=-1 -kerning first=1062 second=220 amount=-1 -kerning first=1081 second=1176 amount=-1 -kerning first=1085 second=362 amount=-2 -kerning first=906 second=374 amount=-5 -kerning first=94 second=106 amount=1 -kerning first=952 second=71 amount=-2 -kerning first=1223 second=221 amount=-5 -kerning first=374 second=1071 amount=-2 -kerning first=280 second=333 amount=-1 -kerning first=52 second=217 amount=-2 -kerning first=1063 second=375 amount=-1 -kerning first=304 second=949 amount=-1 -kerning first=72 second=359 amount=-1 -kerning first=1083 second=8211 amount=-2 -kerning first=75 second=119 amount=-3 -kerning first=215 second=271 amount=-1 -kerning first=218 second=44 amount=-1 -kerning first=336 second=194 amount=-2 -kerning first=920 second=84 amount=-2 -kerning first=92 second=1026 amount=-5 -kerning first=95 second=286 amount=-2 -kerning first=1175 second=234 amount=-1 -kerning first=358 second=334 amount=-2 -kerning first=1224 second=376 amount=-5 -kerning first=258 second=346 amount=-1 -kerning first=281 second=964 amount=-1 -kerning first=289 second=45 amount=-2 -kerning first=50 second=947 amount=-4 -kerning first=53 second=372 amount=-5 -kerning first=196 second=287 amount=-1 -kerning first=923 second=259 amount=-1 -kerning first=931 second=34 amount=-3 -kerning first=239 second=361 amount=-1 -kerning first=1220 second=8250 amount=-1 -kerning first=200 second=232 amount=-1 -kerning first=315 second=362 amount=-1 -kerning first=80 second=244 amount=-1 -kerning first=341 second=289 amount=-1 -kerning first=1184 second=337 amount=-2 -kerning first=1187 second=99 amount=-1 -kerning first=963 second=111 amount=-1 -kerning first=960 second=351 amount=-1 -kerning first=126 second=83 amount=-1 -kerning first=1298 second=953 amount=-1 -kerning first=38 second=333 amount=-1 -kerning first=180 second=245 amount=-1 -kerning first=291 second=375 amount=-1 -kerning first=58 second=949 amount=-1 -kerning first=61 second=257 amount=-1 -kerning first=313 second=8211 amount=-3 -kerning first=8366 second=250 amount=-1 -kerning first=8363 second=941 amount=-1 -kerning first=84 second=194 amount=-6 -kerning first=345 second=234 amount=-1 -kerning first=936 second=364 amount=-2 -kerning first=101 second=1090 amount=-1 -kerning first=247 second=246 amount=-1 -kerning first=367 second=376 amount=-5 -kerning first=964 second=291 amount=-1 -kerning first=42 second=273 amount=-1 -kerning first=289 second=8249 amount=-3 -kerning first=300 second=85 amount=-2 -kerning first=205 second=335 amount=-1 -kerning first=231 second=34 amount=-1 -kerning first=931 second=8216 amount=-3 -kerning first=105 second=965 amount=-1 -kerning first=111 second=46 amount=-1 -kerning first=365 second=8250 amount=-1 -kerning first=274 second=336 amount=-2 -kerning first=46 second=220 amount=-1 -kerning first=1051 second=171 amount=-3 -kerning first=186 second=350 amount=-1 -kerning first=63 second=1176 amount=-1 -kerning first=206 second=966 amount=-1 -kerning first=212 second=47 amount=-1 -kerning first=209 second=275 amount=-1 -kerning first=8377 second=355 amount=-1 -kerning first=908 second=87 amount=-2 -kerning first=89 second=289 amount=-4 -kerning first=946 second=249 amount=-1 -kerning first=255 second=111 amount=-1 -kerning first=375 second=261 amount=-1 -kerning first=252 second=351 amount=-1 -kerning first=162 second=1177 amount=-1 -kerning first=165 second=363 amount=-1 -kerning first=275 second=967 amount=-2 -kerning first=47 second=375 amount=-1 -kerning first=190 second=290 amount=-2 -kerning first=305 second=210 amount=-2 -kerning first=64 second=8211 amount=-2 -kerning first=1084 second=941 amount=-1 -kerning first=67 second=1051 amount=-1 -kerning first=910 second=262 amount=-3 -kerning first=93 second=234 amount=-1 -kerning first=1168 second=1241 amount=-1 -kerning first=1171 second=187 amount=-1 -kerning first=356 second=277 amount=-3 -kerning first=951 second=199 amount=-2 -kerning first=113 second=376 amount=-5 -kerning first=1256 second=89 amount=-3 -kerning first=253 second=1035 amount=-5 -kerning first=256 second=291 amount=-1 -kerning first=379 second=211 amount=-1 -kerning first=973 second=339 amount=-1 -kerning first=163 second=8212 amount=-2 -kerning first=166 second=1059 amount=-2 -kerning first=1027 second=101 amount=-1 -kerning first=970 second=1098 amount=-2 -kerning first=54 second=85 amount=-2 -kerning first=1065 second=263 amount=-1 -kerning first=194 second=235 amount=-1 -kerning first=306 second=365 amount=-1 -kerning first=916 second=212 amount=-2 -kerning first=231 second=8216 amount=-1 -kerning first=952 second=354 amount=-5 -kerning first=1298 second=39 amount=-3 -kerning first=174 second=248 amount=-1 -kerning first=283 second=378 amount=-1 -kerning first=55 second=260 amount=-5 -kerning first=304 second=8217 amount=-3 -kerning first=912 second=1185 amount=-3 -kerning first=238 second=940 amount=-1 -kerning first=121 second=261 amount=-1 -kerning first=1299 second=214 amount=-2 -kerning first=1036 second=226 amount=-1 -kerning first=59 second=210 amount=-2 -kerning first=202 second=100 amount=-1 -kerning first=314 second=941 amount=-1 -kerning first=317 second=250 amount=-1 -kerning first=915 second=8220 amount=-3 -kerning first=102 second=277 amount=-1 -kerning first=125 second=211 amount=-2 -kerning first=179 second=353 amount=-1 -kerning first=183 second=113 amount=-1 -kerning first=60 second=365 amount=-1 -kerning first=1068 second=8221 amount=-2 -kerning first=1071 second=1066 amount=-5 -kerning first=8370 second=118 amount=-4 -kerning first=347 second=102 amount=-1 -kerning first=934 second=943 amount=-1 -kerning first=1184 second=1256 amount=-3 -kerning first=369 second=266 amount=-2 -kerning first=123 second=1184 amount=-5 -kerning first=126 second=366 amount=-2 -kerning first=271 second=279 amount=-1 -kerning first=299 second=213 amount=-2 -kerning first=8260 second=1195 amount=-1 -kerning first=58 second=8217 amount=-3 -kerning first=1080 second=253 amount=-1 -kerning first=207 second=225 amount=-1 -kerning first=327 second=115 amount=-1 -kerning first=902 second=267 amount=-1 -kerning first=224 second=1185 amount=-1 -kerning first=247 second=1038 amount=-2 -kerning first=964 second=1101 amount=-1 -kerning first=276 second=226 amount=-1 -kerning first=1049 second=268 amount=-2 -kerning first=300 second=368 amount=-2 -kerning first=65 second=941 amount=-1 -kerning first=332 second=65 amount=-2 -kerning first=88 second=1241 amount=-2 -kerning first=91 second=187 amount=-1 -kerning first=225 second=8220 amount=-1 -kerning first=354 second=227 amount=-2 -kerning first=108 second=1079 amount=-1 -kerning first=1210 second=269 amount=-1 -kerning first=374 second=369 amount=-2 -kerning first=968 second=973 amount=-1 -kerning first=167 second=251 amount=-1 -kerning first=49 second=263 amount=-1 -kerning first=1063 second=216 amount=-2 -kerning first=298 second=8221 amount=-3 -kerning first=301 second=1066 amount=-5 -kerning first=1095 second=118 amount=-4 -kerning first=904 second=1194 amount=-2 -kerning first=89 second=1099 amount=-3 -kerning first=1170 second=283 amount=-1 -kerning first=1224 second=217 amount=-2 -kerning first=372 second=8222 amount=-3 -kerning first=381 second=79 amount=-1 -kerning first=1026 second=229 amount=-1 -kerning first=53 second=213 amount=-2 -kerning first=1064 second=371 amount=-1 -kerning first=196 second=103 amount=-1 -kerning first=310 second=253 amount=-2 -kerning first=70 second=1119 amount=-1 -kerning first=73 second=355 amount=-1 -kerning first=1176 second=230 amount=-1 -kerning first=954 second=242 amount=-2 -kerning first=1220 second=947 amount=-4 -kerning first=1256 second=372 amount=-2 -kerning first=256 second=1101 amount=-1 -kerning first=379 second=945 amount=-1 -kerning first=34 second=226 amount=-1 -kerning first=1027 second=1240 amount=-2 -kerning first=973 second=1262 amount=-2 -kerning first=172 second=356 amount=-5 -kerning first=176 second=116 amount=-1 -kerning first=287 second=268 amount=-2 -kerning first=8230 second=219 amount=-1 -kerning first=54 second=368 amount=-2 -kerning first=1071 second=81 amount=-2 -kerning first=194 second=972 amount=-1 -kerning first=197 second=281 amount=-1 -kerning first=80 second=65 amount=-4 -kerning first=100 second=227 amount=-1 -kerning first=240 second=357 amount=-1 -kerning first=363 second=269 amount=-1 -kerning first=260 second=973 amount=-1 -kerning first=1035 second=332 amount=-2 -kerning first=291 second=216 amount=-2 -kerning first=8240 second=374 amount=-5 -kerning first=52 second=8221 amount=-1 -kerning first=55 second=1066 amount=-5 -kerning first=201 second=228 amount=-1 -kerning first=321 second=118 amount=-4 -kerning first=8366 second=71 amount=-2 -kerning first=101 second=382 amount=-1 -kerning first=1185 second=333 amount=-2 -kerning first=247 second=67 amount=-2 -kerning first=367 second=217 amount=-2 -kerning first=118 second=8222 amount=-2 -kerning first=160 second=79 amount=-2 -kerning first=1299 second=949 amount=-1 -kerning first=1036 second=963 amount=-2 -kerning first=1039 second=271 amount=-1 -kerning first=178 second=920 amount=-2 -kerning first=289 second=1195 amount=-1 -kerning first=294 second=371 amount=-1 -kerning first=62 second=253 amount=-1 -kerning first=8369 second=246 amount=-1 -kerning first=900 second=218 amount=-2 -kerning first=1186 second=964 amount=-2 -kerning first=365 second=947 amount=-4 -kerning first=965 second=287 amount=-1 -kerning first=125 second=945 amount=-1 -kerning first=43 second=268 amount=-2 -kerning first=301 second=81 amount=-2 -kerning first=1083 second=121 amount=-1 -kerning first=901 second=373 amount=-4 -kerning first=86 second=343 amount=-2 -kerning first=1206 second=220 amount=-1 -kerning first=47 second=216 amount=-1 -kerning first=1048 second=374 amount=-5 -kerning first=190 second=106 amount=1 -kerning first=70 second=118 amount=-4 -kerning first=207 second=962 amount=-1 -kerning first=8378 second=351 amount=-1 -kerning first=910 second=83 amount=-1 -kerning first=90 second=283 amount=-1 -kerning first=1168 second=233 amount=-1 -kerning first=948 second=245 amount=-1 -kerning first=113 second=217 amount=-2 -kerning first=376 second=257 amount=-4 -kerning first=373 second=949 amount=-1 -kerning first=166 second=359 amount=-1 -kerning first=169 second=119 amount=-4 -kerning first=276 second=963 amount=-1 -kerning first=48 second=371 amount=-1 -kerning first=1065 second=84 amount=-2 -kerning first=188 second=1026 amount=-5 -kerning first=191 second=286 amount=-2 -kerning first=68 second=1046 amount=-3 -kerning first=1094 second=246 amount=-1 -kerning first=214 second=218 amount=-2 -kerning first=94 second=230 amount=-1 -kerning first=357 second=273 amount=-1 -kerning first=111 second=947 amount=-1 -kerning first=49 second=1069 amount=-1 -kerning first=55 second=81 amount=-2 -kerning first=195 second=231 amount=-1 -kerning first=313 second=121 amount=-1 -kerning first=75 second=243 amount=-2 -kerning first=215 second=373 amount=-4 -kerning first=212 second=1202 amount=-3 -kerning first=92 second=1263 amount=-1 -kerning first=361 second=220 amount=-2 -kerning first=1262 second=260 amount=-2 -kerning first=1026 second=966 amount=-1 -kerning first=175 second=244 amount=-1 -kerning first=286 second=374 amount=-2 -kerning first=281 second=1203 amount=-2 -kerning first=317 second=71 amount=-2 -kerning first=8361 second=249 amount=-1 -kerning first=79 second=193 amount=-2 -kerning first=1099 second=351 amount=-1 -kerning first=216 second=1071 amount=-1 -kerning first=213 second=8230 amount=-1 -kerning first=915 second=1177 amount=-1 -kerning first=923 second=363 amount=-1 -kerning first=958 second=290 amount=-2 -kerning first=119 second=949 amount=-1 -kerning first=379 second=8211 amount=-3 -kerning first=37 second=271 amount=-1 -kerning first=34 second=963 amount=-1 -kerning first=1071 second=364 amount=-2 -kerning first=197 second=1090 amount=-3 -kerning first=200 second=334 amount=-2 -kerning first=318 second=246 amount=-1 -kerning first=8365 second=199 amount=-2 -kerning first=80 second=346 amount=-1 -kerning first=1103 second=291 amount=-1 -kerning first=916 second=8212 amount=-2 -kerning first=926 second=1059 amount=-2 -kerning first=100 second=964 amount=-3 -kerning first=103 second=273 amount=-1 -kerning first=369 second=85 amount=-2 -kerning first=963 second=235 amount=-1 -kerning first=271 second=97 amount=-1 -kerning first=41 second=219 amount=-2 -kerning first=177 second=1108 amount=-1 -kerning first=180 second=347 amount=-1 -kerning first=296 second=259 amount=-1 -kerning first=299 second=34 amount=-3 -kerning first=61 second=361 amount=-1 -kerning first=64 second=121 amount=-1 -kerning first=201 second=965 amount=-1 -kerning first=8366 second=354 amount=-5 -kerning first=8363 second=1118 amount=-1 -kerning first=902 second=86 amount=-6 -kerning first=84 second=288 amount=-1 -kerning first=244 second=1113 amount=-1 -kerning first=247 second=350 amount=-1 -kerning first=1202 second=171 amount=-1 -kerning first=370 second=260 amount=-2 -kerning first=124 second=1176 amount=-1 -kerning first=160 second=362 amount=-2 -kerning first=1299 second=8217 amount=-3 -kerning first=273 second=275 amount=-1 -kerning first=42 second=374 amount=-5 -kerning first=1049 second=87 amount=-5 -kerning first=185 second=289 amount=-1 -kerning first=1078 second=940 amount=-2 -kerning first=1081 second=249 amount=-1 -kerning first=208 second=221 amount=-3 -kerning first=325 second=351 amount=-1 -kerning first=8369 second=1038 amount=-2 -kerning first=903 second=261 amount=-1 -kerning first=900 second=953 amount=-1 -kerning first=88 second=233 amount=-2 -kerning first=108 second=375 amount=-1 -kerning first=1195 second=1078 amount=-1 -kerning first=251 second=290 amount=-2 -kerning first=374 second=210 amount=-3 -kerning first=968 second=338 amount=-2 -kerning first=125 second=8211 amount=-2 -kerning first=971 second=100 amount=-1 -kerning first=8211 second=380 amount=-2 -kerning first=49 second=84 amount=-5 -kerning first=1051 second=262 amount=-2 -kerning first=189 second=234 amount=-1 -kerning first=301 second=364 amount=-2 -kerning first=69 second=246 amount=-1 -kerning first=1087 second=199 amount=-2 -kerning first=209 second=376 amount=-5 -kerning first=330 second=291 amount=-1 -kerning first=1119 second=339 amount=-1 -kerning first=1170 second=101 amount=-1 -kerning first=950 second=113 amount=-1 -kerning first=946 second=353 amount=-1 -kerning first=1219 second=263 amount=-1 -kerning first=255 second=235 amount=-1 -kerning first=375 second=365 amount=-1 -kerning first=372 second=1179 amount=-2 -kerning first=47 second=951 amount=-1 -kerning first=53 second=34 amount=-3 -kerning first=1064 second=212 amount=-2 -kerning first=50 second=259 amount=-1 -kerning first=299 second=8216 amount=-3 -kerning first=310 second=74 amount=-1 -kerning first=1084 second=1118 amount=-1 -kerning first=207 second=8250 amount=-1 -kerning first=216 second=86 amount=-2 -kerning first=905 second=1184 amount=-5 -kerning first=93 second=336 amount=-2 -kerning first=1171 second=279 amount=-1 -kerning first=1168 second=970 amount=-1 -kerning first=236 second=248 amount=-1 -kerning first=356 second=378 amount=-1 -kerning first=34 second=47 amount=-2 -kerning first=1027 second=225 amount=-1 -kerning first=279 second=1076 amount=-1 -kerning first=287 second=87 amount=-5 -kerning first=8224 second=267 amount=-1 -kerning first=1062 second=1185 amount=-2 -kerning first=194 second=337 amount=-1 -kerning first=197 second=99 amount=-1 -kerning first=306 second=940 amount=-1 -kerning first=74 second=351 amount=-1 -kerning first=77 second=111 amount=-1 -kerning first=214 second=953 amount=-1 -kerning first=260 second=338 amount=-2 -kerning first=380 second=941 amount=-1 -kerning first=174 second=352 amount=-1 -kerning first=55 second=364 amount=-2 -kerning first=1063 second=8220 amount=-3 -kerning first=195 second=968 amount=-1 -kerning first=198 second=277 amount=-1 -kerning first=316 second=199 amount=-2 -kerning first=8363 second=117 amount=-1 -kerning first=78 second=291 amount=-1 -kerning first=221 second=211 amount=-3 -kerning first=928 second=251 amount=-1 -kerning first=1224 second=8221 amount=-3 -kerning first=121 second=365 amount=-1 -kerning first=294 second=212 amount=-2 -kerning first=8226 second=1194 amount=-2 -kerning first=53 second=8216 amount=-3 -kerning first=1074 second=252 amount=-1 -kerning first=202 second=224 amount=-1 -kerning first=314 second=1118 amount=-1 -kerning first=317 second=354 amount=-5 -kerning first=8369 second=67 amount=-2 -kerning first=900 second=39 amount=-3 -kerning first=343 second=279 amount=-1 -kerning first=105 second=171 amount=-3 -kerning first=248 second=63 amount=-2 -kerning first=965 second=103 amount=-1 -kerning first=43 second=87 amount=-5 -kerning first=1041 second=267 amount=-1 -kerning first=60 second=940 amount=-1 -kerning first=63 second=249 amount=-1 -kerning first=318 second=1038 amount=-2 -kerning first=8370 second=242 amount=-1 -kerning first=901 second=214 amount=-2 -kerning first=1103 second=1101 amount=-1 -kerning first=220 second=8218 amount=-1 -kerning first=369 second=368 amount=-2 -kerning first=963 second=972 amount=-1 -kerning first=162 second=250 amount=-1 -kerning first=126 second=941 amount=-1 -kerning first=44 second=262 amount=-1 -kerning first=184 second=1241 amount=-1 -kerning first=291 second=8220 amount=-3 -kerning first=1080 second=357 amount=-1 -kerning first=1084 second=117 amount=-1 -kerning first=204 second=1079 amount=-1 -kerning first=210 second=89 amount=-3 -kerning first=902 second=369 amount=-1 -kerning first=87 second=339 amount=-3 -kerning first=90 second=101 amount=-1 -kerning first=367 second=8221 amount=-3 -kerning first=48 second=212 amount=-2 -kerning first=1049 second=370 amount=-2 -kerning first=1046 second=1194 amount=-3 -kerning first=300 second=943 amount=-1 -kerning first=303 second=252 amount=-1 -kerning first=65 second=1118 amount=-1 -kerning first=68 second=354 amount=-2 -kerning first=214 second=39 amount=-3 -kerning first=91 second=279 amount=-1 -kerning first=88 second=970 amount=-1 -kerning first=354 second=328 amount=-2 -kerning first=1203 second=1195 amount=-1 -kerning first=1210 second=371 amount=-1 -kerning first=968 second=1257 amount=-1 -kerning first=167 second=355 amount=-1 -kerning first=170 second=115 amount=-1 -kerning first=280 second=267 amount=-1 -kerning first=49 second=367 amount=-1 -kerning first=46 second=1185 amount=-3 -kerning first=69 second=1038 amount=-2 -kerning first=1095 second=242 amount=-1 -kerning first=215 second=214 amount=-2 -kerning first=330 second=1101 amount=-1 -kerning first=95 second=226 amount=-1 -kerning first=1119 second=1262 amount=-2 -kerning first=1170 second=1240 amount=-2 -kerning first=238 second=116 amount=-1 -kerning first=358 second=268 amount=-2 -kerning first=1219 second=1069 amount=-1 -kerning first=255 second=972 amount=-1 -kerning first=258 second=281 amount=-1 -kerning first=8222 second=373 amount=-2 -kerning first=47 second=8220 amount=-3 -kerning first=196 second=227 amount=-1 -kerning first=314 second=117 amount=-1 -kerning first=310 second=357 amount=-1 -kerning first=1176 second=332 amount=-2 -kerning first=113 second=8221 amount=-3 -kerning first=958 second=106 amount=1 -kerning first=1027 second=962 amount=-1 -kerning first=176 second=240 amount=-1 -kerning first=282 second=1194 amount=-2 -kerning first=287 second=370 amount=-2 -kerning first=8220 second=8230 amount=-1 -kerning first=8250 second=83 amount=-1 -kerning first=54 second=943 amount=-1 -kerning first=57 second=252 amount=-1 -kerning first=194 second=1256 amount=-2 -kerning first=318 second=67 amount=-2 -kerning first=223 second=79 amount=-2 -kerning first=341 second=229 amount=-1 -kerning first=926 second=359 amount=-1 -kerning first=934 second=119 amount=-4 -kerning first=1184 second=271 amount=-2 -kerning first=240 second=920 amount=-2 -kerning first=363 second=371 amount=-1 -kerning first=955 second=1026 amount=-5 -kerning first=960 second=286 amount=-2 -kerning first=123 second=253 amount=-1 -kerning first=260 second=1257 amount=-1 -kerning first=38 second=267 amount=-1 -kerning first=1073 second=360 amount=-2 -kerning first=1069 second=1174 amount=-3 -kerning first=321 second=242 amount=-1 -kerning first=78 second=1101 amount=-1 -kerning first=221 second=945 amount=-4 -kerning first=964 second=231 amount=-1 -kerning first=1039 second=373 amount=-4 -kerning first=62 second=357 amount=-1 -kerning first=65 second=117 amount=-1 -kerning first=205 second=269 amount=-1 -kerning first=8369 second=350 amount=-1 -kerning first=942 second=244 amount=-1 -kerning first=108 second=216 amount=-2 -kerning first=251 second=106 amount=1 -kerning first=164 second=118 amount=-4 -kerning first=8211 second=221 amount=-4 -kerning first=40 second=1194 amount=-2 -kerning first=43 second=370 amount=-2 -kerning first=1041 second=1071 amount=-1 -kerning first=1051 second=83 amount=-1 -kerning first=186 second=283 amount=-1 -kerning first=69 second=67 amount=-2 -kerning first=1083 second=245 amount=-1 -kerning first=209 second=217 amount=-2 -kerning first=8377 second=290 amount=-2 -kerning first=901 second=949 amount=-1 -kerning first=904 second=257 amount=-1 -kerning first=89 second=229 amount=-4 -kerning first=232 second=119 amount=-1 -kerning first=355 second=44 amount=-1 -kerning first=1219 second=84 amount=-5 -kerning first=249 second=1026 amount=-5 -kerning first=252 second=286 amount=-2 -kerning first=966 second=1090 amount=-1 -kerning first=278 second=218 amount=-2 -kerning first=8212 second=376 amount=-4 -kerning first=1059 second=258 amount=-2 -kerning first=190 second=230 amount=-1 -kerning first=302 second=360 amount=-2 -kerning first=70 second=242 amount=-1 -kerning first=67 second=923 amount=-1 -kerning first=207 second=947 amount=-4 -kerning first=210 second=372 amount=-2 -kerning first=90 second=1240 amount=-1 -kerning first=1168 second=335 amount=-1 -kerning first=1171 second=97 amount=-1 -kerning first=944 second=1108 amount=-1 -kerning first=948 second=347 amount=-1 -kerning first=1220 second=259 amount=-1 -kerning first=256 second=231 amount=-1 -kerning first=376 second=361 amount=-2 -kerning first=169 second=243 amount=-1 -kerning first=279 second=373 amount=-1 -kerning first=188 second=1263 amount=-1 -kerning first=906 second=1176 amount=-1 -kerning first=94 second=332 amount=-2 -kerning first=1174 second=275 amount=-1 -kerning first=1169 second=966 amount=-1 -kerning first=237 second=244 amount=-1 -kerning first=354 second=1203 amount=-1 -kerning first=357 second=374 amount=-5 -kerning first=952 second=289 amount=-1 -kerning first=1028 second=221 amount=-2 -kerning first=277 second=8230 amount=-1 -kerning first=8225 second=261 amount=-1 -kerning first=1063 second=1177 amount=-1 -kerning first=195 second=333 amount=-1 -kerning first=313 second=245 amount=-1 -kerning first=215 second=949 amount=-1 -kerning first=333 second=1299 amount=-1 -kerning first=95 second=963 amount=-1 -kerning first=101 second=44 amount=-1 -kerning first=956 second=234 amount=-1 -kerning first=258 second=1090 amount=-3 -kerning first=36 second=218 amount=-2 -kerning first=1033 second=376 amount=-5 -kerning first=175 second=346 amount=-1 -kerning first=56 second=360 amount=-2 -kerning first=1067 second=1059 amount=-2 -kerning first=1064 second=8212 amount=-2 -kerning first=196 second=964 amount=-3 -kerning first=202 second=45 amount=-2 -kerning first=8364 second=113 amount=-1 -kerning first=8361 second=353 amount=-1 -kerning first=343 second=97 amount=-1 -kerning first=923 second=936 amount=-3 -kerning first=239 second=1108 amount=-1 -kerning first=365 second=259 amount=-1 -kerning first=125 second=121 amount=-1 -kerning first=270 second=46 amount=-1 -kerning first=37 second=373 amount=-4 -kerning first=1027 second=8250 amount=-1 -kerning first=176 second=1028 amount=-2 -kerning first=179 second=288 amount=-2 -kerning first=8230 second=1184 amount=-5 -kerning first=1075 second=248 amount=-1 -kerning first=203 second=220 amount=-2 -kerning first=318 second=350 amount=-1 -kerning first=223 second=362 amount=-2 -kerning first=341 second=966 amount=-1 -kerning first=103 second=374 amount=-5 -kerning first=963 second=337 amount=-1 -kerning first=162 second=71 amount=-2 -kerning first=271 second=221 amount=-5 -kerning first=184 second=233 amount=-1 -kerning first=296 second=363 amount=-1 -kerning first=291 second=1177 amount=-1 -kerning first=64 second=245 amount=-1 -kerning first=204 second=375 amount=-1 -kerning first=902 second=210 amount=-2 -kerning first=1117 second=100 amount=-1 -kerning first=221 second=8211 amount=-4 -kerning first=1202 second=262 amount=-1 -kerning first=250 second=234 amount=-1 -kerning first=964 second=968 amount=-1 -kerning first=967 second=277 amount=-1 -kerning first=163 second=246 amount=-1 -kerning first=273 second=376 amount=-5 -kerning first=45 second=258 amount=-2 -kerning first=1049 second=211 amount=-2 -kerning first=294 second=8212 amount=-2 -kerning first=297 second=1059 amount=-2 -kerning first=1085 second=113 amount=-1 -kerning first=1081 second=353 amount=-1 -kerning first=202 second=8249 amount=-3 -kerning first=903 second=365 amount=-1 -kerning first=91 second=97 amount=-1 -kerning first=88 second=335 amount=-2 -kerning first=1210 second=212 amount=-2 -kerning first=971 second=224 amount=-1 -kerning first=1047 second=1184 amount=-1 -kerning first=1051 second=366 amount=-2 -kerning first=189 second=336 amount=-2 -kerning first=304 second=248 amount=-1 -kerning first=69 second=350 amount=-1 -kerning first=212 second=260 amount=-2 -kerning first=901 second=8217 amount=-3 -kerning first=89 second=966 amount=-4 -kerning first=92 second=275 amount=-1 -kerning first=1170 second=225 amount=-1 -kerning first=358 second=87 amount=-5 -kerning first=1206 second=1185 amount=-2 -kerning first=1219 second=367 amount=-1 -kerning first=255 second=337 amount=-1 -kerning first=258 second=99 amount=-1 -kerning first=375 second=940 amount=-1 -kerning first=168 second=351 amount=-1 -kerning first=278 second=953 amount=-1 -kerning first=8222 second=214 amount=-1 -kerning first=47 second=1177 amount=-1 -kerning first=50 second=363 amount=-1 -kerning first=73 second=290 amount=-2 -kerning first=915 second=250 amount=-1 -kerning first=910 second=941 amount=-4 -kerning first=236 second=352 amount=-1 -kerning first=356 second=954 amount=-2 -kerning first=951 second=1241 amount=-1 -kerning first=256 second=968 amount=-1 -kerning first=973 second=1079 amount=-1 -kerning first=169 second=1035 amount=-5 -kerning first=172 second=291 amount=-1 -kerning first=1034 second=89 amount=-5 -kerning first=287 second=211 amount=-2 -kerning first=8224 second=369 amount=-1 -kerning first=48 second=8212 amount=-2 -kerning first=51 second=1059 amount=-2 -kerning first=311 second=353 amount=-1 -kerning first=315 second=113 amount=-1 -kerning first=77 second=235 amount=-1 -kerning first=363 second=212 amount=-2 -kerning first=1298 second=252 amount=-1 -kerning first=38 second=86 amount=-3 -kerning first=1035 second=266 amount=-2 -kerning first=8221 second=8222 amount=-1 -kerning first=8260 second=79 amount=-2 -kerning first=58 second=248 amount=-1 -kerning first=201 second=171 amount=-3 -kerning first=215 second=8217 amount=-3 -kerning first=928 second=355 amount=-1 -kerning first=936 second=115 amount=-1 -kerning first=98 second=1076 amount=-1 -kerning first=1185 second=267 amount=-2 -kerning first=361 second=1185 amount=-3 -kerning first=124 second=249 amount=-1 -kerning first=121 second=940 amount=-1 -kerning first=266 second=379 amount=-1 -kerning first=36 second=953 amount=-1 -kerning first=39 second=261 amount=-1 -kerning first=1039 second=214 amount=-2 -kerning first=1074 second=356 amount=-5 -kerning first=1107 second=281 amount=-1 -kerning first=105 second=262 amount=-2 -kerning first=965 second=227 amount=-1 -kerning first=161 second=199 amount=-2 -kerning first=274 second=89 amount=-5 -kerning first=43 second=211 amount=-2 -kerning first=1041 second=369 amount=-1 -kerning first=179 second=1098 amount=-3 -kerning first=183 second=339 amount=-1 -kerning first=186 second=101 amount=-1 -kerning first=298 second=251 amount=-1 -kerning first=63 second=353 amount=-1 -kerning first=206 second=263 amount=-1 -kerning first=8377 second=106 amount=1 -kerning first=1116 second=228 amount=-1 -kerning first=369 second=943 amount=-1 -kerning first=372 second=252 amount=-2 -kerning first=963 second=1256 amount=-2 -kerning first=966 second=382 amount=-1 -kerning first=126 second=1118 amount=-1 -kerning first=162 second=354 amount=-5 -kerning first=278 second=39 amount=-3 -kerning first=41 second=1184 amount=-5 -kerning first=1038 second=8222 amount=-1 -kerning first=44 second=366 amount=-1 -kerning first=184 second=970 amount=-1 -kerning first=1080 second=920 amount=-2 -kerning first=8372 second=1026 amount=-5 -kerning first=8378 second=286 amount=-2 -kerning first=905 second=253 amount=-1 -kerning first=163 second=1038 amount=-2 -kerning first=1049 second=945 amount=-1 -kerning first=191 second=226 amount=-1 -kerning first=303 second=356 amount=-5 -kerning first=306 second=116 amount=-1 -kerning first=108 second=8220 amount=-3 -kerning first=374 second=1169 amount=-3 -kerning first=280 second=369 amount=-1 -kerning first=52 second=251 amount=-1 -kerning first=209 second=8221 amount=-3 -kerning first=212 second=1066 amount=-2 -kerning first=1170 second=962 amount=-1 -kerning first=238 second=240 amount=-1 -kerning first=358 second=370 amount=-2 -kerning first=950 second=974 amount=-3 -kerning first=255 second=1256 amount=-2 -kerning first=36 second=39 amount=-3 -kerning first=289 second=79 amount=-2 -kerning first=8226 second=257 amount=-1 -kerning first=1067 second=359 amount=-1 -kerning first=310 second=920 amount=-3 -kerning first=1096 second=1026 amount=-5 -kerning first=1099 second=286 amount=-2 -kerning first=958 second=230 amount=-1 -kerning first=1256 second=1174 amount=-3 -kerning first=1263 second=360 amount=-2 -kerning first=37 second=214 amount=-2 -kerning first=1027 second=947 amount=-4 -kerning first=172 second=1101 amount=-1 -kerning first=287 second=945 amount=-1 -kerning first=57 second=356 amount=-5 -kerning first=60 second=116 amount=-1 -kerning first=200 second=268 amount=-2 -kerning first=77 second=972 amount=-1 -kerning first=80 second=281 amount=-1 -kerning first=1103 second=231 amount=-1 -kerning first=934 second=243 amount=-1 -kerning first=1184 second=373 amount=-3 -kerning first=955 second=1263 amount=-1 -kerning first=123 second=357 amount=-1 -kerning first=126 second=117 amount=-1 -kerning first=38 second=369 amount=-1 -kerning first=177 second=973 amount=-1 -kerning first=8240 second=1176 amount=-1 -kerning first=8260 second=362 amount=-2 -kerning first=1076 second=244 amount=-1 -kerning first=204 second=216 amount=-2 -kerning first=324 second=106 amount=1 -kerning first=8366 second=289 amount=-1 -kerning first=84 second=228 amount=-2 -kerning first=227 second=118 amount=-1 -kerning first=247 second=283 amount=-1 -kerning first=964 second=333 amount=-1 -kerning first=163 second=67 amount=-2 -kerning first=273 second=217 amount=-2 -kerning first=1039 second=949 amount=-1 -kerning first=1046 second=257 amount=-1 -kerning first=185 second=229 amount=-1 -kerning first=300 second=119 amount=-4 -kerning first=297 second=359 amount=-1 -kerning first=62 second=920 amount=-2 -kerning first=205 second=371 amount=-1 -kerning first=202 second=1195 amount=-1 -kerning first=322 second=1026 amount=-5 -kerning first=325 second=286 amount=-2 -kerning first=942 second=346 amount=-1 -kerning first=251 second=230 amount=-1 -kerning first=371 second=360 amount=-2 -kerning first=374 second=120 amount=-2 -kerning first=968 second=273 amount=-1 -kerning first=971 second=45 amount=-2 -kerning first=164 second=242 amount=-1 -kerning first=965 second=964 amount=-3 -kerning first=274 second=372 amount=-5 -kerning first=43 second=945 amount=-1 -kerning first=186 second=1240 amount=-2 -kerning first=183 second=1262 amount=-2 -kerning first=1083 second=347 amount=-1 -kerning first=206 second=1069 amount=-1 -kerning first=330 second=231 amount=-1 -kerning first=904 second=361 amount=-1 -kerning first=86 second=1084 amount=-2 -kerning first=89 second=331 amount=-3 -kerning first=352 second=373 amount=-1 -kerning first=946 second=288 amount=-2 -kerning first=249 second=1263 amount=-1 -kerning first=1048 second=1176 amount=-1 -kerning first=190 second=332 amount=-2 -kerning first=305 second=244 amount=-1 -kerning first=73 second=106 amount=1 -kerning first=213 second=256 amount=-2 -kerning first=915 second=71 amount=-2 -kerning first=90 second=962 amount=-1 -kerning first=1171 second=221 amount=-5 -kerning first=951 second=233 amount=-1 -kerning first=1220 second=363 amount=-1 -kerning first=256 second=333 amount=-1 -kerning first=379 second=245 amount=-1 -kerning first=973 second=375 amount=-1 -kerning first=282 second=257 amount=-1 -kerning first=8224 second=210 amount=-2 -kerning first=51 second=359 amount=-1 -kerning first=1049 second=8211 amount=-2 -kerning first=54 second=119 amount=-4 -kerning first=191 second=963 amount=-1 -kerning first=194 second=271 amount=-1 -kerning first=71 second=1026 amount=-1 -kerning first=74 second=286 amount=-2 -kerning first=1097 second=234 amount=-1 -kerning first=916 second=246 amount=-1 -kerning first=1174 second=376 amount=-2 -kerning first=237 second=346 amount=-1 -kerning first=360 second=258 amount=-2 -kerning first=117 second=360 amount=-2 -kerning first=1210 second=8212 amount=-2 -kerning first=1223 second=1059 amount=-2 -kerning first=260 second=273 amount=-1 -kerning first=257 second=964 amount=-1 -kerning first=971 second=8249 amount=-3 -kerning first=1035 second=85 amount=-2 -kerning first=174 second=287 amount=-1 -kerning first=8225 second=365 amount=-1 -kerning first=198 second=219 amount=-2 -kerning first=78 second=231 amount=-1 -kerning first=221 second=121 amount=-2 -kerning first=98 second=373 amount=-1 -kerning first=1170 second=8250 amount=-1 -kerning first=238 second=1028 amount=-2 -kerning first=956 second=336 amount=-2 -kerning first=1299 second=248 amount=-1 -kerning first=178 second=232 amount=-1 -kerning first=289 second=362 amount=-2 -kerning first=8222 second=8217 amount=-1 -kerning first=59 second=244 amount=-1 -kerning first=199 second=374 amount=-2 -kerning first=317 second=289 amount=-1 -kerning first=1107 second=99 amount=-1 -kerning first=931 second=351 amount=-1 -kerning first=105 second=83 amount=-1 -kerning first=365 second=363 amount=-1 -kerning first=125 second=245 amount=-1 -kerning first=37 second=949 amount=-1 -kerning first=40 second=257 amount=-1 -kerning first=1041 second=210 amount=-2 -kerning first=287 second=8211 amount=-2 -kerning first=206 second=84 amount=-5 -kerning first=323 second=234 amount=-1 -kerning first=8365 second=1241 amount=-1 -kerning first=8370 second=187 amount=-1 -kerning first=80 second=1090 amount=-3 -kerning first=1103 second=968 amount=-1 -kerning first=344 second=376 amount=-2 -kerning first=934 second=1035 amount=-5 -kerning first=363 second=8212 amount=-2 -kerning first=184 second=335 amount=-1 -kerning first=61 second=1108 amount=-1 -kerning first=64 second=347 amount=-1 -kerning first=207 second=259 amount=-1 -kerning first=84 second=965 amount=-2 -kerning first=1117 second=224 amount=-1 -kerning first=1194 second=1184 amount=-1 -kerning first=1202 second=366 amount=-1 -kerning first=250 second=336 amount=-2 -kerning first=373 second=248 amount=-1 -kerning first=163 second=350 amount=-1 -kerning first=42 second=1176 amount=-1 -kerning first=1046 second=1063 amount=-1 -kerning first=1039 second=8217 amount=-3 -kerning first=185 second=966 amount=-1 -kerning first=188 second=275 amount=-1 -kerning first=906 second=249 amount=-1 -kerning first=903 second=940 amount=-1 -kerning first=91 second=221 amount=-5 -kerning first=354 second=261 amount=-2 -kerning first=108 second=1177 amount=-1 -kerning first=167 second=290 amount=-2 -kerning first=280 second=210 amount=-2 -kerning first=43 second=8211 amount=-2 -kerning first=1051 second=941 amount=-1 -kerning first=1063 second=250 amount=-1 -kerning first=304 second=352 amount=-1 -kerning first=72 second=234 amount=-1 -kerning first=1087 second=1241 amount=-1 -kerning first=1095 second=187 amount=-1 -kerning first=330 second=968 amount=-1 -kerning first=912 second=199 amount=-2 -kerning first=92 second=376 amount=-5 -kerning first=1119 second=1079 amount=-1 -kerning first=358 second=211 amount=-2 -kerning first=946 second=1098 amount=-3 -kerning first=950 second=339 amount=-1 -kerning first=1224 second=251 amount=-1 -kerning first=381 second=113 amount=-1 -kerning first=972 second=955 amount=-1 -kerning first=1026 second=263 amount=-1 -kerning first=8218 second=1066 amount=-5 -kerning first=910 second=1118 amount=-2 -kerning first=915 second=354 amount=-5 -kerning first=1176 second=266 amount=-2 -kerning first=951 second=970 amount=-1 -kerning first=954 second=279 amount=-2 -kerning first=119 second=248 amount=-1 -kerning first=262 second=171 amount=-1 -kerning first=34 second=260 amount=-3 -kerning first=279 second=8217 amount=-1 -kerning first=290 second=75 amount=2 -kerning first=8230 second=253 amount=-1 -kerning first=1071 second=115 amount=-1 -kerning first=200 second=87 amount=-5 -kerning first=77 second=337 amount=-1 -kerning first=80 second=99 amount=-1 -kerning first=916 second=1038 amount=-2 -kerning first=100 second=261 amount=-1 -kerning first=1184 second=214 amount=-3 -kerning first=960 second=226 amount=-1 -kerning first=1298 second=356 amount=-5 -kerning first=268 second=88 amount=-2 -kerning first=38 second=210 amount=-2 -kerning first=1035 second=368 amount=-2 -kerning first=177 second=338 amount=-2 -kerning first=180 second=100 amount=-1 -kerning first=291 second=250 amount=-1 -kerning first=58 second=352 amount=-1 -kerning first=201 second=262 amount=-2 -kerning first=316 second=1241 amount=-1 -kerning first=321 second=187 amount=-1 -kerning first=78 second=968 amount=-1 -kerning first=241 second=1098 amount=-1 -kerning first=247 second=101 amount=-1 -kerning first=367 second=251 amount=-1 -kerning first=160 second=113 amount=-1 -kerning first=124 second=353 amount=-1 -kerning first=1033 second=8221 amount=-2 -kerning first=1078 second=240 amount=-2 -kerning first=205 second=212 amount=-2 -kerning first=8369 second=283 amount=-1 -kerning first=900 second=252 amount=-1 -kerning first=351 second=39 amount=-1 -kerning first=105 second=366 amount=-2 -kerning first=274 second=213 amount=-2 -kerning first=37 second=8217 amount=-3 -kerning first=186 second=225 amount=-1 -kerning first=298 second=355 amount=-1 -kerning first=301 second=115 amount=-1 -kerning first=203 second=1185 amount=-3 -kerning first=206 second=367 amount=-1 -kerning first=8377 second=230 amount=-1 -kerning first=947 second=945 amount=-1 -kerning first=252 second=226 amount=-1 -kerning first=375 second=116 amount=-1 -kerning first=8218 second=81 amount=-1 -kerning first=47 second=250 amount=-1 -kerning first=187 second=380 amount=-1 -kerning first=70 second=187 amount=-1 -kerning first=204 second=8220 amount=-3 -kerning first=8372 second=1263 amount=-1 -kerning first=905 second=357 amount=-1 -kerning first=910 second=117 amount=-2 -kerning first=93 second=89 amount=-5 -kerning first=1168 second=269 amount=-1 -kerning first=944 second=973 amount=-1 -kerning first=113 second=251 amount=-1 -kerning first=973 second=216 amount=-2 -kerning first=276 second=1066 amount=-5 -kerning first=273 second=8221 amount=-3 -kerning first=8220 second=256 amount=-3 -kerning first=1065 second=118 amount=-2 -kerning first=306 second=240 amount=-1 -kerning first=1094 second=283 amount=-1 -kerning first=214 second=252 amount=-1 -kerning first=916 second=67 amount=-2 -kerning first=94 second=266 amount=-2 -kerning first=97 second=39 amount=-1 -kerning first=1174 second=217 amount=-1 -kerning first=952 second=229 amount=-1 -kerning first=1223 second=359 amount=-1 -kerning first=1257 second=119 amount=-1 -kerning first=377 second=920 amount=-1 -kerning first=971 second=1195 amount=-1 -kerning first=174 second=103 amount=-1 -kerning first=52 second=355 amount=-1 -kerning first=55 second=115 amount=-1 -kerning first=195 second=267 amount=-1 -kerning first=333 second=1083 amount=-1 -kerning first=1170 second=947 amount=-4 -kerning first=358 second=945 amount=-1 -kerning first=950 second=1262 amount=-2 -kerning first=121 second=116 amount=-1 -kerning first=1026 second=1069 amount=-1 -kerning first=175 second=281 amount=-1 -kerning first=1036 second=81 amount=-3 -kerning first=8226 second=361 amount=-1 -kerning first=8361 second=288 amount=-2 -kerning first=1096 second=1263 amount=-1 -kerning first=239 second=973 amount=-1 -kerning first=958 second=332 amount=-2 -kerning first=179 second=228 amount=-1 -kerning first=295 second=118 amount=-1 -kerning first=60 second=240 amount=-1 -kerning first=197 second=1194 amount=-2 -kerning first=200 second=370 amount=-2 -kerning first=318 second=283 amount=-1 -kerning first=8365 second=233 amount=-1 -kerning first=77 second=1256 amount=-2 -kerning first=1103 second=333 amount=-1 -kerning first=220 second=1044 amount=-1 -kerning first=1184 second=949 amount=-2 -kerning first=369 second=119 amount=-4 -kerning first=960 second=963 amount=-1 -kerning first=963 second=271 amount=-1 -kerning first=123 second=920 amount=-2 -kerning first=966 second=44 amount=-1 -kerning first=41 second=253 amount=-1 -kerning first=177 second=1257 amount=-1 -kerning first=1106 second=964 amount=-1 -kerning first=1117 second=45 amount=-2 -kerning first=247 second=1240 amount=-2 -kerning first=967 second=219 amount=-2 -kerning first=276 second=81 amount=-2 -kerning first=1046 second=361 amount=-1 -kerning first=1049 second=121 amount=-1 -kerning first=300 second=243 amount=-1 -kerning first=1081 second=288 amount=-2 -kerning first=322 second=1263 amount=-1 -kerning first=88 second=269 amount=-2 -kerning first=1118 second=220 amount=-2 -kerning first=251 second=332 amount=-2 -kerning first=374 second=244 amount=-4 -kerning first=968 second=374 amount=-5 -kerning first=167 second=106 amount=1 -kerning first=49 second=118 amount=-4 -kerning first=1063 second=71 amount=-2 -kerning first=186 second=962 amount=-1 -kerning first=69 second=283 amount=-1 -kerning first=1087 second=233 amount=-1 -kerning first=330 second=333 amount=-1 -kerning first=92 second=217 amount=-2 -kerning first=1119 second=375 amount=-1 -kerning first=115 second=119 amount=-1 -kerning first=947 second=8211 amount=-1 -kerning first=252 second=963 amount=-1 -kerning first=255 second=271 amount=-1 -kerning first=1026 second=84 amount=-5 -kerning first=165 second=1026 amount=-5 -kerning first=168 second=286 amount=-2 -kerning first=8218 second=364 amount=-1 -kerning first=1064 second=246 amount=-1 -kerning first=193 second=218 amount=-2 -kerning first=305 second=346 amount=-1 -kerning first=73 second=230 amount=-1 -kerning first=210 second=1174 amount=-3 -kerning first=331 second=964 amount=-1 -kerning first=93 second=372 amount=-5 -kerning first=1117 second=8249 amount=-3 -kerning first=1176 second=85 amount=-2 -kerning first=236 second=287 amount=-1 -kerning first=951 second=335 amount=-1 -kerning first=954 second=97 amount=-1 -kerning first=376 second=1108 amount=-4 -kerning first=1027 second=259 amount=-1 -kerning first=1034 second=34 amount=-2 -kerning first=172 second=231 amount=-1 -kerning first=279 second=1175 amount=-2 -kerning first=282 second=361 amount=-1 -kerning first=287 second=121 amount=-1 -kerning first=54 second=243 amount=-1 -kerning first=1068 second=196 amount=-1 -kerning first=194 second=373 amount=-4 -kerning first=306 second=1028 amount=-2 -kerning first=1094 second=1095 amount=-2 -kerning first=338 second=220 amount=-2 -kerning first=916 second=350 amount=-1 -kerning first=240 second=232 amount=-1 -kerning first=357 second=1176 amount=-1 -kerning first=952 second=966 amount=-1 -kerning first=955 second=275 amount=-1 -kerning first=120 second=244 amount=-2 -kerning first=260 second=374 amount=-5 -kerning first=291 second=71 amount=-2 -kerning first=8225 second=940 amount=-1 -kerning first=8240 second=249 amount=-1 -kerning first=1073 second=111 amount=-1 -kerning first=201 second=83 amount=-1 -kerning first=316 second=233 amount=-1 -kerning first=78 second=333 amount=-1 -kerning first=221 second=245 amount=-4 -kerning first=928 second=290 amount=-2 -kerning first=358 second=8211 amount=-2 -kerning first=1299 second=352 amount=-1 -kerning first=178 second=334 amount=-2 -kerning first=175 second=1090 amount=-3 -kerning first=294 second=246 amount=-1 -kerning first=59 second=346 amount=-1 -kerning first=1074 second=291 amount=-1 -kerning first=1070 second=1035 amount=-2 -kerning first=8361 second=1098 amount=-3 -kerning first=8364 second=339 amount=-1 -kerning first=8369 second=101 amount=-1 -kerning first=122 second=1108 amount=-1 -kerning first=125 second=347 amount=-1 -kerning first=274 second=34 amount=-3 -kerning first=40 second=361 amount=-1 -kerning first=43 second=121 amount=-1 -kerning first=1034 second=8216 amount=-2 -kerning first=179 second=965 amount=-1 -kerning first=60 second=1028 amount=-2 -kerning first=63 second=288 amount=-2 -kerning first=323 second=336 amount=-2 -kerning first=8365 second=970 amount=-1 -kerning first=8370 second=279 amount=-1 -kerning first=901 second=248 amount=-1 -kerning first=86 second=220 amount=-2 -kerning first=103 second=1176 amount=-1 -kerning first=249 second=275 amount=-1 -kerning first=372 second=197 amount=-5 -kerning first=162 second=289 amount=-1 -kerning first=47 second=71 amount=-1 -kerning first=1044 second=940 amount=-1 -kerning first=1048 second=249 amount=-1 -kerning first=187 second=221 amount=-3 -kerning first=299 second=351 amount=-1 -kerning first=302 second=111 amount=-1 -kerning first=207 second=363 amount=-1 -kerning first=204 second=1177 amount=-1 -kerning first=8378 second=226 amount=-1 -kerning first=87 second=375 amount=-1 -kerning first=1113 second=1078 amount=-2 -kerning first=944 second=338 amount=-2 -kerning first=948 second=100 amount=-1 -kerning first=1202 second=941 amount=-1 -kerning first=376 second=112 amount=-3 -kerning first=166 second=234 amount=-1 -kerning first=276 second=364 amount=-2 -kerning first=48 second=246 amount=-1 -kerning first=1062 second=199 amount=-1 -kerning first=188 second=376 amount=-5 -kerning first=300 second=1035 amount=-5 -kerning first=303 second=291 amount=-1 -kerning first=1081 second=1098 amount=-3 -kerning first=1085 second=339 amount=-1 -kerning first=205 second=8212 amount=-2 -kerning first=1094 second=101 amount=-1 -kerning first=906 second=353 amount=-1 -kerning first=94 second=85 amount=-2 -kerning first=1169 second=263 amount=-1 -kerning first=354 second=365 amount=-2 -kerning first=274 second=8216 amount=-3 -kerning first=1051 second=1118 amount=-1 -kerning first=1063 second=354 amount=-5 -kerning first=186 second=8250 amount=-1 -kerning first=72 second=336 amount=-2 -kerning first=1095 second=279 amount=-1 -kerning first=215 second=248 amount=-1 -kerning first=1087 second=970 amount=-1 -kerning first=333 second=378 amount=-1 -kerning first=1224 second=355 amount=-1 -kerning first=972 second=1185 amount=-1 -kerning first=1026 second=367 amount=-1 -kerning first=175 second=99 amount=-1 -kerning first=56 second=111 amount=-1 -kerning first=1064 second=1038 amount=-2 -kerning first=53 second=351 amount=-1 -kerning first=196 second=261 amount=-1 -kerning first=193 second=953 amount=-1 -kerning first=1099 second=226 amount=-1 -kerning first=219 second=198 amount=-2 -kerning first=1176 second=368 amount=-2 -kerning first=239 second=338 amount=-2 -kerning first=382 second=1241 amount=-1 -kerning first=973 second=8220 amount=-3 -kerning first=172 second=968 amount=-1 -kerning first=176 second=277 amount=-1 -kerning first=8230 second=357 amount=-1 -kerning first=54 second=1035 amount=-5 -kerning first=57 second=291 amount=-1 -kerning first=200 second=211 amount=-2 -kerning first=315 second=339 amount=-1 -kerning first=318 second=101 amount=-1 -kerning first=223 second=113 amount=-1 -kerning first=341 second=263 amount=-1 -kerning first=100 second=365 amount=-1 -kerning first=1174 second=8221 amount=-2 -kerning first=1035 second=943 amount=-1 -kerning first=180 second=224 amount=-1 -kerning first=291 second=354 amount=-5 -kerning first=198 second=1184 amount=-5 -kerning first=201 second=366 amount=-2 -kerning first=321 second=279 amount=-1 -kerning first=316 second=970 amount=-1 -kerning first=8366 second=229 amount=-1 -kerning first=84 second=171 amount=-3 -kerning first=227 second=63 amount=-2 -kerning first=98 second=8217 amount=-1 -kerning first=247 second=225 amount=-1 -kerning first=367 second=355 amount=-1 -kerning first=964 second=267 amount=-1 -kerning first=42 second=249 amount=-1 -kerning first=39 second=940 amount=-1 -kerning first=294 second=1038 amount=-2 -kerning first=1074 second=1101 amount=-1 -kerning first=199 second=8218 amount=-1 -kerning first=8369 second=1240 amount=-2 -kerning first=8364 second=1262 amount=-2 -kerning first=325 second=226 amount=-1 -kerning first=900 second=356 amount=-5 -kerning first=903 second=116 amount=-1 -kerning first=942 second=281 amount=-1 -kerning first=108 second=250 amount=-1 -kerning first=105 second=941 amount=-1 -kerning first=248 second=380 amount=-1 -kerning first=374 second=65 amount=-5 -kerning first=161 second=1241 amount=-1 -kerning first=164 second=187 amount=-1 -kerning first=267 second=8220 amount=-1 -kerning first=46 second=199 amount=-1 -kerning first=1051 second=117 amount=-1 -kerning first=183 second=1079 amount=-1 -kerning first=189 second=89 amount=-5 -kerning first=63 second=1098 amount=-3 -kerning first=69 second=101 amount=-1 -kerning first=209 second=251 amount=-1 -kerning first=8377 second=332 amount=-2 -kerning first=89 second=263 amount=-4 -kerning first=1119 second=216 amount=-2 -kerning first=946 second=228 amount=-1 -kerning first=1219 second=118 amount=-4 -kerning first=375 second=240 amount=-1 -kerning first=372 second=916 amount=-5 -kerning first=278 second=252 amount=-1 -kerning first=47 second=354 amount=-5 -kerning first=44 second=1118 amount=-1 -kerning first=1064 second=67 amount=-2 -kerning first=190 second=266 amount=-2 -kerning first=193 second=39 amount=-3 -kerning first=70 second=279 amount=-1 -kerning first=8378 second=963 amount=-1 -kerning first=905 second=920 amount=-2 -kerning first=93 second=213 amount=-2 -kerning first=1117 second=1195 amount=-1 -kerning first=1168 second=371 amount=-1 -kerning first=910 second=241 amount=-3 -kerning first=236 second=103 amount=-1 -kerning first=356 second=253 amount=-2 -kerning first=944 second=1257 amount=-1 -kerning first=113 second=355 amount=-1 -kerning first=256 second=267 amount=-1 -kerning first=48 second=1038 amount=-2 -kerning first=1065 second=242 amount=-1 -kerning first=194 second=214 amount=-2 -kerning first=303 second=1101 amount=-1 -kerning first=74 second=226 amount=-1 -kerning first=1085 second=1262 amount=-2 -kerning first=214 second=356 amount=-5 -kerning first=94 second=368 amount=-2 -kerning first=237 second=281 amount=-1 -kerning first=174 second=227 amount=-1 -kerning first=195 second=369 amount=-1 -kerning first=92 second=8221 amount=-3 -kerning first=95 second=1066 amount=-5 -kerning first=928 second=106 amount=1 -kerning first=121 second=240 amount=-1 -kerning first=258 second=1194 amount=-2 -kerning first=36 second=252 amount=-1 -kerning first=294 second=67 amount=-2 -kerning first=202 second=79 amount=-2 -kerning first=317 second=229 amount=-1 -kerning first=1099 second=963 amount=-1 -kerning first=1107 second=44 amount=-3 -kerning first=923 second=1026 amount=-5 -kerning first=931 second=286 amount=-2 -kerning first=239 second=1257 amount=-1 -kerning first=962 second=218 amount=-2 -kerning first=1037 second=360 amount=-2 -kerning first=1034 second=1174 amount=-2 -kerning first=57 second=1101 amount=-1 -kerning first=200 second=945 amount=-1 -kerning first=315 second=1262 amount=-1 -kerning first=318 second=1240 amount=-2 -kerning first=8365 second=335 amount=-1 -kerning first=8370 second=97 amount=-1 -kerning first=369 second=243 amount=-1 -kerning first=963 second=373 amount=-4 -kerning first=41 second=357 amount=-1 -kerning first=44 second=117 amount=-1 -kerning first=184 second=269 amount=-1 -kerning first=61 second=973 amount=-1 -kerning first=1080 second=232 amount=-1 -kerning first=8366 second=966 amount=-1 -kerning first=902 second=244 amount=-1 -kerning first=8372 second=275 amount=-1 -kerning first=87 second=216 amount=-2 -kerning first=350 second=256 amount=-1 -kerning first=110 second=118 amount=-1 -kerning first=247 second=962 amount=-1 -kerning first=961 second=8230 amount=-1 -kerning first=163 second=283 amount=-1 -kerning first=48 second=67 amount=-2 -kerning first=1049 second=245 amount=-1 -kerning first=188 second=217 amount=-2 -kerning first=325 second=963 amount=-1 -kerning first=332 second=44 amount=-1 -kerning first=88 second=371 amount=-1 -kerning first=942 second=1090 amount=-3 -kerning first=1210 second=246 amount=-1 -kerning first=254 second=218 amount=-2 -kerning first=374 second=346 amount=-1 -kerning first=167 second=230 amount=-1 -kerning first=49 second=242 amount=-1 -kerning first=186 second=947 amount=-4 -kerning first=189 second=372 amount=-5 -kerning first=304 second=287 amount=-1 -kerning first=69 second=1240 amount=-2 -kerning first=1087 second=335 amount=-1 -kerning first=1095 second=97 amount=-1 -kerning first=904 second=1108 amount=-1 -kerning first=89 second=1069 amount=-2 -kerning first=95 second=81 amount=-2 -kerning first=1170 second=259 amount=-1 -kerning first=352 second=1175 amount=-1 -kerning first=358 second=121 amount=-1 -kerning first=946 second=965 amount=-1 -kerning first=255 second=373 amount=-4 -kerning first=375 second=1028 amount=-2 -kerning first=165 second=1263 amount=-1 -kerning first=1064 second=350 amount=-1 -kerning first=310 second=232 amount=-2 -kerning first=70 second=1085 amount=-1 -kerning first=73 second=332 amount=-2 -kerning first=1096 second=275 amount=-1 -kerning first=1090 second=966 amount=-1 -kerning first=334 second=374 amount=-3 -kerning first=915 second=289 amount=-1 -kerning first=910 second=1033 amount=-5 -kerning first=1263 second=111 amount=-1 -kerning first=382 second=233 amount=-1 -kerning first=1027 second=363 amount=-1 -kerning first=973 second=1177 amount=-1 -kerning first=172 second=333 amount=-1 -kerning first=287 second=245 amount=-1 -kerning first=194 second=949 amount=-1 -kerning first=197 second=257 amount=-1 -kerning first=74 second=963 amount=-1 -kerning first=77 second=271 amount=-1 -kerning first=80 second=44 amount=-4 -kerning first=220 second=194 amount=-2 -kerning first=926 second=234 amount=-1 -kerning first=240 second=334 amount=-2 -kerning first=237 second=1090 amount=-3 -kerning first=363 second=246 amount=-1 -kerning first=955 second=376 amount=-5 -kerning first=1298 second=291 amount=-1 -kerning first=260 second=950 amount=-1 -kerning first=35 second=360 amount=-2 -kerning first=38 second=120 amount=-2 -kerning first=177 second=273 amount=-1 -kerning first=180 second=45 amount=-2 -kerning first=174 second=964 amount=-3 -kerning first=8260 second=113 amount=-1 -kerning first=8240 second=353 amount=-1 -kerning first=58 second=287 amount=-1 -kerning first=1073 second=235 amount=-1 -kerning first=316 second=335 amount=-1 -kerning first=321 second=97 amount=-1 -kerning first=221 second=347 amount=-3 -kerning first=98 second=1175 amount=-2 -kerning first=121 second=1028 amount=-2 -kerning first=124 second=288 amount=-2 -kerning first=1039 second=248 amount=-1 -kerning first=182 second=220 amount=-2 -kerning first=294 second=350 amount=-1 -kerning first=62 second=232 amount=-1 -kerning first=202 second=362 amount=-2 -kerning first=199 second=1176 amount=1 -kerning first=317 second=966 amount=-1 -kerning first=322 second=275 amount=-1 -kerning first=8369 second=225 amount=-1 -kerning first=82 second=374 amount=-2 -kerning first=1102 second=1076 amount=-1 -kerning first=222 second=1033 amount=-1 -kerning first=942 second=99 amount=-1 -kerning first=108 second=71 amount=-2 -kerning first=1186 second=940 amount=-1 -kerning first=371 second=111 amount=-1 -kerning first=965 second=261 amount=-1 -kerning first=962 second=953 amount=-1 -kerning first=161 second=233 amount=-1 -kerning first=43 second=245 amount=-1 -kerning first=1047 second=198 amount=-1 -kerning first=183 second=375 amount=-1 -kerning first=298 second=290 amount=-2 -kerning first=200 second=8211 amount=-2 -kerning first=1083 second=100 amount=-1 -kerning first=901 second=352 amount=-1 -kerning first=1206 second=199 amount=-1 -kerning first=249 second=376 amount=-5 -kerning first=369 second=1035 amount=-5 -kerning first=372 second=291 amount=-2 -kerning first=268 second=8212 amount=-1 -kerning first=271 second=1059 amount=-2 -kerning first=1048 second=353 amount=-1 -kerning first=180 second=8249 amount=-3 -kerning first=190 second=85 amount=-2 -kerning first=302 second=235 amount=-1 -kerning first=70 second=97 amount=-1 -kerning first=93 second=34 amount=-3 -kerning first=87 second=951 amount=-2 -kerning first=1168 second=212 amount=-2 -kerning first=356 second=74 amount=-5 -kerning first=948 second=224 amount=-1 -kerning first=247 second=8250 amount=-1 -kerning first=256 second=86 amount=-6 -kerning first=967 second=1184 amount=-5 -kerning first=166 second=336 amount=-2 -kerning first=48 second=350 amount=-1 -kerning first=1065 second=63 amount=-2 -kerning first=74 second=47 amount=-1 -kerning first=1118 second=1185 amount=-3 -kerning first=237 second=99 amount=-1 -kerning first=357 second=249 amount=-1 -kerning first=354 second=940 amount=-3 -kerning first=114 second=351 amount=-1 -kerning first=117 second=111 amount=-1 -kerning first=1210 second=1038 amount=-2 -kerning first=254 second=953 amount=-1 -kerning first=8225 second=116 amount=-1 -kerning first=52 second=290 amount=-2 -kerning first=195 second=210 amount=-2 -kerning first=313 second=100 amount=-1 -kerning first=215 second=352 amount=-1 -kerning first=912 second=1241 amount=-1 -kerning first=95 second=364 amount=-2 -kerning first=1119 second=8220 amount=-3 -kerning first=238 second=277 amount=-1 -kerning first=361 second=199 amount=-2 -kerning first=950 second=1079 amount=-1 -kerning first=956 second=89 amount=-5 -kerning first=118 second=291 amount=-1 -kerning first=381 second=339 amount=-1 -kerning first=289 second=113 amount=-1 -kerning first=56 second=235 amount=-1 -kerning first=196 second=365 amount=-1 -kerning first=8361 second=228 amount=-1 -kerning first=93 second=8216 amount=-3 -kerning first=1176 second=943 amount=-1 -kerning first=958 second=266 amount=-2 -kerning first=962 second=39 amount=-3 -kerning first=37 second=248 amount=-1 -kerning first=179 second=171 amount=-3 -kerning first=295 second=63 amount=-2 -kerning first=8230 second=920 amount=-1 -kerning first=197 second=1063 amount=-3 -kerning first=194 second=8217 amount=-3 -kerning first=318 second=225 amount=-1 -kerning first=83 second=87 amount=-2 -kerning first=1103 second=267 amount=-1 -kerning first=338 second=1185 amount=-3 -kerning first=100 second=940 amount=-1 -kerning first=103 second=249 amount=-1 -kerning first=363 second=1038 amount=-2 -kerning first=963 second=214 amount=-2 -kerning first=1298 second=1101 amount=-1 -kerning first=61 second=338 amount=-2 -kerning first=64 second=100 amount=-1 -kerning first=1073 second=972 amount=-1 -kerning first=204 second=250 amount=-1 -kerning first=201 second=941 amount=-1 -kerning first=1076 second=281 amount=-1 -kerning first=84 second=262 amount=-1 -kerning first=339 second=8220 amount=-1 -kerning first=250 second=89 amount=-5 -kerning first=964 second=369 amount=-1 -kerning first=124 second=1098 amount=-3 -kerning first=160 second=339 amount=-1 -kerning first=163 second=101 amount=-1 -kerning first=273 second=251 amount=-1 -kerning first=42 second=353 amount=-1 -kerning first=185 second=263 amount=-1 -kerning first=1081 second=228 amount=-1 -kerning first=8369 second=962 amount=-1 -kerning first=903 second=240 amount=-1 -kerning first=88 second=212 amount=-3 -kerning first=105 second=1118 amount=-1 -kerning first=108 second=354 amount=-5 -kerning first=1210 second=67 amount=-2 -kerning first=251 second=266 amount=-2 -kerning first=254 second=39 amount=-3 -kerning first=971 second=79 amount=-2 -kerning first=164 second=279 amount=-1 -kerning first=161 second=970 amount=-1 -kerning first=189 second=213 amount=-2 -kerning first=304 second=103 amount=-1 -kerning first=69 second=225 amount=-1 -kerning first=209 second=355 amount=-1 -kerning first=330 second=267 amount=-1 -kerning first=86 second=1185 amount=-3 -kerning first=89 second=367 amount=-2 -kerning first=1219 second=242 amount=-1 -kerning first=255 second=214 amount=-2 -kerning first=168 second=226 amount=-1 -kerning first=278 second=356 amount=-5 -kerning first=190 second=368 amount=-2 -kerning first=302 second=972 amount=-1 -kerning first=305 second=281 amount=-1 -kerning first=70 second=380 amount=-1 -kerning first=216 second=65 amount=-2 -kerning first=910 second=343 amount=-3 -kerning first=236 second=227 amount=-1 -kerning first=951 second=269 amount=-1 -kerning first=256 second=369 amount=-1 -kerning first=376 second=973 amount=-2 -kerning first=8224 second=244 amount=-1 -kerning first=191 second=1066 amount=-5 -kerning first=188 second=8221 amount=-3 -kerning first=311 second=228 amount=-1 -kerning first=1094 second=962 amount=-1 -kerning first=916 second=283 amount=-1 -kerning first=94 second=943 amount=-1 -kerning first=363 second=67 amount=-2 -kerning first=955 second=217 amount=-2 -kerning first=1035 second=119 amount=-4 -kerning first=58 second=103 amount=-1 -kerning first=1066 second=1026 amount=-5 -kerning first=198 second=253 amount=-1 -kerning first=78 second=267 amount=-1 -kerning first=928 second=230 amount=-1 -kerning first=1178 second=360 amount=-1 -kerning first=953 second=947 amount=-2 -kerning first=956 second=372 amount=-5 -kerning first=1299 second=287 amount=-1 -kerning first=36 second=356 amount=-5 -kerning first=178 second=268 amount=-2 -kerning first=8226 second=1108 amount=-1 -kerning first=56 second=972 amount=-1 -kerning first=59 second=281 amount=-1 -kerning first=1074 second=231 amount=-1 -kerning first=8361 second=965 amount=-1 -kerning first=1102 second=373 amount=-1 -kerning first=923 second=1263 amount=-1 -kerning first=105 second=117 amount=-1 -kerning first=1041 second=244 amount=-1 -kerning first=183 second=216 amount=-2 -kerning first=298 second=106 amount=1 -kerning first=8250 second=1033 amount=-2 -kerning first=63 second=228 amount=-1 -kerning first=206 second=118 amount=-4 -kerning first=318 second=962 amount=-1 -kerning first=8370 second=221 amount=-5 -kerning first=80 second=1194 amount=-2 -kerning first=947 second=245 amount=-1 -kerning first=249 second=217 amount=-2 -kerning first=963 second=949 amount=-1 -kerning first=162 second=229 amount=-1 -kerning first=271 second=359 amount=-1 -kerning first=275 second=119 amount=-1 -kerning first=41 second=920 amount=-2 -kerning first=180 second=1195 amount=-1 -kerning first=184 second=371 amount=-1 -kerning first=296 second=1026 amount=-5 -kerning first=299 second=286 amount=-2 -kerning first=61 second=1257 amount=-1 -kerning first=1076 second=1090 amount=-2 -kerning first=1080 second=334 amount=-2 -kerning first=327 second=218 amount=-2 -kerning first=8372 second=376 amount=-5 -kerning first=902 second=346 amount=-1 -kerning first=944 second=273 amount=-1 -kerning first=948 second=45 amount=-2 -kerning first=353 second=120 amount=-1 -kerning first=247 second=947 amount=-4 -kerning first=250 second=372 amount=-5 -kerning first=373 second=287 amount=-1 -kerning first=160 second=1262 amount=-2 -kerning first=163 second=1240 amount=-2 -kerning first=1049 second=347 amount=-1 -kerning first=1046 second=1108 amount=-2 -kerning first=185 second=1069 amount=-1 -kerning first=191 second=81 amount=-2 -kerning first=303 second=231 amount=-1 -kerning first=1081 second=965 amount=-1 -kerning first=328 second=373 amount=-1 -kerning first=8369 second=8250 amount=-1 -kerning first=903 second=1028 amount=-2 -kerning first=906 second=288 amount=-2 -kerning first=1210 second=350 amount=-1 -kerning first=377 second=232 amount=-1 -kerning first=971 second=362 amount=-2 -kerning first=968 second=1176 amount=-1 -kerning first=167 second=332 amount=-2 -kerning first=280 second=244 amount=-1 -kerning first=8221 second=197 amount=-3 -kerning first=52 second=106 amount=1 -kerning first=1063 second=289 amount=-1 -kerning first=69 second=962 amount=-1 -kerning first=1095 second=221 amount=-5 -kerning first=912 second=233 amount=-1 -kerning first=1119 second=1177 amount=-1 -kerning first=1170 second=363 amount=-1 -kerning first=358 second=245 amount=-1 -kerning first=950 second=375 amount=-1 -kerning first=1224 second=290 amount=-2 -kerning first=255 second=949 amount=-1 -kerning first=258 second=257 amount=-1 -kerning first=168 second=963 amount=-1 -kerning first=50 second=1026 amount=-5 -kerning first=53 second=286 amount=-2 -kerning first=1067 second=234 amount=-1 -kerning first=305 second=1090 amount=-3 -kerning first=310 second=334 amount=-3 -kerning first=76 second=218 amount=-1 -kerning first=1096 second=376 amount=-5 -kerning first=96 second=360 amount=-2 -kerning first=1168 second=8212 amount=-2 -kerning first=1171 second=1059 amount=-2 -kerning first=99 second=120 amount=-1 -kerning first=239 second=273 amount=-1 -kerning first=236 second=964 amount=-3 -kerning first=948 second=8249 amount=-3 -kerning first=958 second=85 amount=-2 -kerning first=119 second=287 amount=-1 -kerning first=1263 second=235 amount=-1 -kerning first=382 second=335 amount=-1 -kerning first=176 second=219 amount=-2 -kerning first=282 second=1108 amount=-1 -kerning first=287 second=347 amount=-1 -kerning first=57 second=231 amount=-1 -kerning first=197 second=361 amount=-1 -kerning first=200 second=121 amount=-1 -kerning first=77 second=373 amount=-4 -kerning first=926 second=336 amount=-2 -kerning first=1184 second=248 amount=-2 -kerning first=363 second=350 amount=-1 -kerning first=123 second=232 amount=-1 -kerning first=260 second=1176 amount=-1 -kerning first=38 second=244 amount=-1 -kerning first=1038 second=197 amount=-2 -kerning first=177 second=374 amount=-5 -kerning first=291 second=289 amount=-1 -kerning first=1073 second=337 amount=-1 -kerning first=1076 second=99 amount=-1 -kerning first=204 second=71 amount=-2 -kerning first=321 second=221 amount=-5 -kerning first=84 second=83 amount=-1 -kerning first=1194 second=198 amount=-1 -kerning first=367 second=290 amount=-2 -kerning first=964 second=210 amount=-2 -kerning first=266 second=1051 amount=-1 -kerning first=1039 second=352 amount=-1 -kerning first=185 second=84 amount=-5 -kerning first=297 second=234 amount=-1 -kerning first=59 second=1090 amount=-3 -kerning first=62 second=334 amount=-2 -kerning first=1074 second=968 amount=-1 -kerning first=1078 second=277 amount=-2 -kerning first=205 second=246 amount=-1 -kerning first=322 second=376 amount=-5 -kerning first=8364 second=1079 amount=-1 -kerning first=900 second=291 amount=-1 -kerning first=85 second=258 amount=-2 -kerning first=340 second=8212 amount=-1 -kerning first=1203 second=113 amount=-1 -kerning first=251 second=85 amount=-2 -kerning first=371 second=235 amount=-1 -kerning first=965 second=365 amount=-1 -kerning first=161 second=335 amount=-1 -kerning first=164 second=97 amount=-1 -kerning first=40 second=1108 amount=-1 -kerning first=43 second=347 amount=-1 -kerning first=186 second=259 amount=-1 -kerning first=189 second=34 amount=-3 -kerning first=63 second=965 amount=-1 -kerning first=1083 second=224 amount=-1 -kerning first=318 second=8250 amount=-1 -kerning first=8377 second=266 amount=-2 -kerning first=946 second=171 amount=-3 -kerning first=963 second=8217 amount=-3 -kerning first=162 second=966 amount=-1 -kerning first=165 second=275 amount=-1 -kerning first=1241 second=1076 amount=-1 -kerning first=47 second=289 amount=-1 -kerning first=302 second=337 amount=-1 -kerning first=305 second=99 amount=-1 -kerning first=70 second=221 amount=-5 -kerning first=327 second=953 amount=-1 -kerning first=230 second=967 amount=-2 -kerning first=356 second=198 amount=-6 -kerning first=113 second=290 amount=-2 -kerning first=256 second=210 amount=-2 -kerning first=376 second=338 amount=-3 -kerning first=379 second=100 amount=-1 -kerning first=973 second=250 amount=-1 -kerning first=51 second=234 amount=-1 -kerning first=1062 second=1241 amount=-1 -kerning first=191 second=364 amount=-2 -kerning first=303 second=968 amount=-1 -kerning first=306 second=277 amount=-1 -kerning first=71 second=376 amount=-2 -kerning first=1085 second=1079 amount=-1 -kerning first=214 second=291 amount=-1 -kerning first=211 second=1035 amount=-2 -kerning first=906 second=1098 amount=-3 -kerning first=916 second=101 amount=-1 -kerning first=91 second=1059 amount=-2 -kerning first=88 second=8212 amount=-3 -kerning first=354 second=1117 amount=-2 -kerning first=357 second=353 amount=-1 -kerning first=949 second=955 amount=-1 -kerning first=952 second=263 amount=-1 -kerning first=117 second=235 amount=-1 -kerning first=8225 second=240 amount=-1 -kerning first=8221 second=916 amount=-3 -kerning first=189 second=8216 amount=-3 -kerning first=69 second=8250 amount=-1 -kerning first=1101 second=39 amount=-1 -kerning first=912 second=970 amount=-1 -kerning first=956 second=213 amount=-2 -kerning first=255 second=8217 amount=-3 -kerning first=258 second=1063 amount=-3 -kerning first=1299 second=103 amount=-1 -kerning first=178 second=87 amount=-5 -kerning first=56 second=337 amount=-1 -kerning first=59 second=99 amount=-1 -kerning first=196 second=940 amount=-1 -kerning first=334 second=8218 amount=-1 -kerning first=931 second=226 amount=-1 -kerning first=958 second=368 amount=-2 -kerning first=125 second=100 amount=-1 -kerning first=1263 second=972 amount=-1 -kerning first=37 second=352 amount=-1 -kerning first=179 second=262 amount=-2 -kerning first=57 second=968 amount=-1 -kerning first=60 second=277 amount=-1 -kerning first=203 second=199 amount=-2 -kerning first=323 second=89 amount=-5 -kerning first=8365 second=269 amount=-1 -kerning first=1103 second=369 amount=-1 -kerning first=223 second=339 amount=-1 -kerning first=103 second=353 amount=-1 -kerning first=243 second=955 amount=-1 -kerning first=960 second=1066 amount=-5 -kerning first=955 second=8221 amount=-3 -kerning first=1038 second=916 amount=-2 -kerning first=184 second=212 amount=-2 -kerning first=1044 second=240 amount=-1 -kerning first=1073 second=1256 amount=-2 -kerning first=64 second=224 amount=-1 -kerning first=201 second=1118 amount=-1 -kerning first=204 second=354 amount=-5 -kerning first=327 second=39 amount=-3 -kerning first=8372 second=217 amount=-2 -kerning first=81 second=1184 amount=-2 -kerning first=1101 second=8222 amount=-1 -kerning first=1117 second=79 amount=-2 -kerning first=110 second=63 amount=-2 -kerning first=250 second=213 amount=-2 -kerning first=373 second=103 amount=-1 -kerning first=967 second=253 amount=-1 -kerning first=163 second=225 amount=-1 -kerning first=273 second=355 amount=-1 -kerning first=276 second=115 amount=-1 -kerning first=182 second=1185 amount=-3 -kerning first=185 second=367 amount=-1 -kerning first=205 second=1038 amount=-2 -kerning first=8369 second=947 amount=-4 -kerning first=900 second=1101 amount=-1 -kerning first=251 second=368 amount=-2 -kerning first=371 second=972 amount=-1 -kerning first=374 second=281 amount=-4 -kerning first=8217 second=243 amount=-1 -kerning first=49 second=187 amount=-1 -kerning first=183 second=8220 amount=-3 -kerning first=304 second=227 amount=-1 -kerning first=72 second=89 amount=-5 -kerning first=1087 second=269 amount=-1 -kerning first=330 second=369 amount=-1 -kerning first=904 second=973 amount=-1 -kerning first=89 second=942 amount=-3 -kerning first=92 second=251 amount=-1 -kerning first=950 second=216 amount=-2 -kerning first=252 second=1066 amount=-5 -kerning first=249 second=8221 amount=-3 -kerning first=1224 second=106 amount=1 -kerning first=1026 second=118 amount=-4 -kerning first=47 second=1099 amount=-1 -kerning first=1064 second=283 amount=-1 -kerning first=190 second=943 amount=-1 -kerning first=193 second=252 amount=-1 -kerning first=302 second=1256 amount=-2 -kerning first=73 second=266 amount=-2 -kerning first=76 second=39 amount=-3 -kerning first=1096 second=217 amount=-2 -kerning first=915 second=229 amount=-1 -kerning first=1171 second=359 amount=-1 -kerning first=1176 second=119 amount=-4 -kerning first=356 second=920 amount=-1 -kerning first=948 second=1195 amount=-1 -kerning first=951 second=371 amount=-1 -kerning first=113 second=1100 amount=2 -kerning first=119 second=103 amount=-1 -kerning first=1220 second=1026 amount=-5 -kerning first=376 second=1257 amount=-4 -kerning first=34 second=115 amount=-1 -kerning first=172 second=267 amount=-1 -kerning first=8224 second=346 amount=-1 -kerning first=77 second=214 amount=-2 -kerning first=214 second=1101 amount=-1 -kerning first=916 second=1240 amount=-2 -kerning first=100 second=116 amount=-1 -kerning first=240 second=268 amount=-2 -kerning first=952 second=1069 amount=-1 -kerning first=960 second=81 amount=-2 -kerning first=117 second=972 amount=-1 -kerning first=120 second=281 amount=-2 -kerning first=1298 second=231 amount=-1 -kerning first=38 second=65 amount=-1 -kerning first=1035 second=243 amount=-1 -kerning first=8225 second=1028 amount=-2 -kerning first=8240 second=288 amount=-2 -kerning first=58 second=227 amount=-1 -kerning first=201 second=117 amount=-1 -kerning first=198 second=357 amount=-1 -kerning first=316 second=269 amount=-1 -kerning first=8363 second=220 amount=-2 -kerning first=78 second=369 amount=-1 -kerning first=928 second=332 amount=-2 -kerning first=1185 second=244 amount=-2 -kerning first=367 second=106 amount=1 -kerning first=124 second=228 amount=-1 -kerning first=1262 second=1298 amount=-1 -kerning first=269 second=118 amount=-1 -kerning first=39 second=240 amount=-1 -kerning first=175 second=1194 amount=-2 -kerning first=178 second=370 amount=-2 -kerning first=294 second=283 amount=-1 -kerning first=56 second=1256 amount=-2 -kerning first=1074 second=333 amount=-1 -kerning first=205 second=67 amount=-2 -kerning first=199 second=1044 amount=-1 -kerning first=322 second=217 amount=-2 -kerning first=8364 second=375 amount=-1 -kerning first=346 second=119 amount=-1 -kerning first=931 second=963 amount=-1 -kerning first=365 second=1026 amount=-5 -kerning first=122 second=1257 amount=-1 -kerning first=1041 second=346 amount=-1 -kerning first=298 second=230 amount=-1 -kerning first=1083 second=45 amount=-2 -kerning first=206 second=242 amount=-1 -kerning first=318 second=947 amount=-4 -kerning first=323 second=372 amount=-5 -kerning first=8377 second=85 amount=-2 -kerning first=901 second=287 amount=-1 -kerning first=223 second=1262 amount=-2 -kerning first=1187 second=1108 amount=-1 -kerning first=947 second=347 amount=-1 -kerning first=252 second=81 amount=-2 -kerning first=372 second=231 amount=-3 -kerning first=8212 second=196 amount=-2 -kerning first=1241 second=373 amount=-1 -kerning first=1048 second=288 amount=-2 -kerning first=1044 second=1028 amount=-1 -kerning first=296 second=1263 amount=-1 -kerning first=1084 second=220 amount=-2 -kerning first=905 second=232 amount=-1 -kerning first=1117 second=362 amount=-2 -kerning first=944 second=374 amount=-5 -kerning first=941 second=1203 amount=-1 -kerning first=113 second=106 amount=11 -kerning first=370 second=1298 amount=-1 -kerning first=973 second=71 amount=-2 -kerning first=163 second=962 amount=-1 -kerning first=8216 second=351 amount=-1 -kerning first=8220 second=111 amount=-1 -kerning first=48 second=283 amount=-1 -kerning first=51 second=55 amount=-1 -kerning first=1062 second=233 amount=-1 -kerning first=303 second=333 amount=-1 -kerning first=1085 second=375 amount=-1 -kerning first=91 second=359 amount=-1 -kerning first=94 second=119 amount=-4 -kerning first=952 second=84 amount=-5 -kerning first=1223 second=234 amount=-1 -kerning first=374 second=1090 amount=-2 -kerning first=377 second=334 amount=-1 -kerning first=170 second=218 amount=-2 -kerning first=280 second=346 amount=-1 -kerning first=8221 second=291 amount=-1 -kerning first=52 second=230 amount=-1 -kerning first=192 second=360 amount=-2 -kerning first=304 second=964 amount=-3 -kerning first=313 second=45 amount=-3 -kerning first=69 second=947 amount=-4 -kerning first=72 second=372 amount=-5 -kerning first=1083 second=8249 amount=-3 -kerning first=215 second=287 amount=-1 -kerning first=912 second=335 amount=-1 -kerning first=238 second=219 amount=-2 -kerning first=358 second=347 amount=-1 -kerning first=950 second=951 amount=-2 -kerning first=956 second=34 amount=-3 -kerning first=118 second=231 amount=-1 -kerning first=258 second=361 amount=-1 -kerning first=1240 second=46 amount=-1 -kerning first=1033 second=196 amount=-1 -kerning first=50 second=1263 amount=-1 -kerning first=1067 second=336 amount=-2 -kerning first=314 second=220 amount=-2 -kerning first=8361 second=171 amount=-3 -kerning first=915 second=966 amount=-1 -kerning first=923 second=275 amount=-1 -kerning first=239 second=374 amount=-5 -kerning first=1263 second=337 amount=-1 -kerning first=1037 second=111 amount=-1 -kerning first=179 second=83 amount=-1 -kerning first=57 second=333 amount=-1 -kerning first=200 second=245 amount=-1 -kerning first=315 second=375 amount=-1 -kerning first=80 second=257 amount=-1 -kerning first=77 second=949 amount=-1 -kerning first=1103 second=210 amount=-2 -kerning first=1184 second=352 amount=-1 -kerning first=960 second=364 amount=-2 -kerning first=123 second=334 amount=-2 -kerning first=1298 second=968 amount=-1 -kerning first=38 second=346 amount=-1 -kerning first=1035 second=1035 amount=-5 -kerning first=8240 second=1098 amount=-3 -kerning first=8260 second=339 amount=-1 -kerning first=61 second=273 amount=-1 -kerning first=64 second=45 amount=-2 -kerning first=58 second=964 amount=-3 -kerning first=313 second=8249 amount=-3 -kerning first=8366 second=263 amount=-1 -kerning first=221 second=1094 amount=-3 -kerning first=247 second=259 amount=-1 -kerning first=250 second=34 amount=-3 -kerning first=956 second=8216 amount=-3 -kerning first=124 second=965 amount=-1 -kerning first=42 second=288 amount=-2 -kerning first=297 second=336 amount=-2 -kerning first=65 second=220 amount=-2 -kerning first=1081 second=171 amount=-3 -kerning first=205 second=350 amount=-1 -kerning first=1102 second=8217 amount=-1 -kerning first=108 second=289 amount=-1 -kerning first=371 second=337 amount=-1 -kerning first=374 second=99 amount=-4 -kerning first=965 second=940 amount=-1 -kerning first=968 second=249 amount=-1 -kerning first=164 second=221 amount=-5 -kerning first=274 second=351 amount=-1 -kerning first=186 second=363 amount=-1 -kerning first=183 second=1177 amount=-1 -kerning first=1079 second=1078 amount=-1 -kerning first=209 second=290 amount=-2 -kerning first=330 second=210 amount=-2 -kerning first=8377 second=368 amount=-2 -kerning first=904 second=338 amount=-2 -kerning first=1119 second=250 amount=-1 -kerning first=1116 second=941 amount=-2 -kerning first=946 second=262 amount=-2 -kerning first=1219 second=187 amount=-1 -kerning first=1206 second=1241 amount=-1 -kerning first=252 second=364 amount=-2 -kerning first=375 second=277 amount=-1 -kerning first=372 second=968 amount=-2 -kerning first=165 second=376 amount=-5 -kerning first=278 second=291 amount=-1 -kerning first=1048 second=1098 amount=-3 -kerning first=184 second=8212 amount=-2 -kerning first=1064 second=101 amount=-1 -kerning first=64 second=8249 amount=-3 -kerning first=73 second=85 amount=-2 -kerning first=1090 second=263 amount=-1 -kerning first=8378 second=1066 amount=-5 -kerning first=8372 second=8221 amount=-3 -kerning first=951 second=212 amount=-2 -kerning first=250 second=8216 amount=-3 -kerning first=973 second=354 amount=-5 -kerning first=163 second=8250 amount=-1 -kerning first=51 second=336 amount=-2 -kerning first=1065 second=279 amount=-1 -kerning first=194 second=248 amount=-1 -kerning first=74 second=260 amount=-1 -kerning first=328 second=8217 amount=-1 -kerning first=916 second=225 amount=-1 -kerning first=234 second=1076 amount=-1 -kerning first=240 second=87 amount=-5 -kerning first=952 second=367 amount=-1 -kerning first=117 second=337 amount=-1 -kerning first=120 second=99 amount=-2 -kerning first=260 second=249 amount=-1 -kerning first=35 second=111 amount=-1 -kerning first=174 second=261 amount=-1 -kerning first=170 second=953 amount=-1 -kerning first=78 second=210 amount=-2 -kerning first=221 second=100 amount=-4 -kerning first=361 second=1241 amount=-1 -kerning first=950 second=8220 amount=-3 -kerning first=121 second=277 amount=-1 -kerning first=1299 second=227 amount=-1 -kerning first=36 second=291 amount=-1 -kerning first=178 second=211 amount=-2 -kerning first=289 second=339 amount=-1 -kerning first=294 second=101 amount=-1 -kerning first=8226 second=973 amount=-1 -kerning first=1070 second=381 amount=-1 -kerning first=202 second=113 amount=-1 -kerning first=317 second=263 amount=-1 -kerning first=8364 second=216 amount=-2 -kerning first=1096 second=8221 amount=-3 -kerning first=1099 second=1066 amount=-5 -kerning first=1186 second=240 amount=-1 -kerning first=958 second=943 amount=-1 -kerning first=962 second=252 amount=-1 -kerning first=125 second=224 amount=-1 -kerning first=1263 second=1256 amount=-2 -kerning first=176 second=1184 amount=-5 -kerning first=179 second=366 amount=-2 -kerning first=63 second=171 amount=-3 -kerning first=323 second=213 amount=-2 -kerning first=8365 second=371 amount=-1 -kerning first=901 second=103 amount=-1 -kerning first=77 second=8217 amount=-3 -kerning first=243 second=1185 amount=-1 -kerning first=299 second=226 amount=-1 -kerning first=8260 second=1262 amount=-2 -kerning first=67 second=88 amount=-2 -kerning first=1080 second=268 amount=-2 -kerning first=8366 second=1069 amount=-1 -kerning first=8378 second=81 amount=-2 -kerning first=902 second=281 amount=-1 -kerning first=84 second=941 amount=-3 -kerning first=87 second=250 amount=-2 -kerning first=107 second=1241 amount=-2 -kerning first=244 second=8220 amount=-1 -kerning first=373 second=227 amount=-1 -kerning first=967 second=357 amount=-1 -kerning first=160 second=1079 amount=-1 -kerning first=166 second=89 amount=-5 -kerning first=42 second=1098 amount=-3 -kerning first=48 second=101 amount=-1 -kerning first=1046 second=973 amount=-1 -kerning first=188 second=251 amount=-1 -kerning first=1085 second=216 amount=-2 -kerning first=322 second=8221 amount=-3 -kerning first=325 second=1066 amount=-5 -kerning first=906 second=228 amount=-1 -kerning first=354 second=240 amount=-3 -kerning first=942 second=1194 amount=-2 -kerning first=1210 second=283 amount=-1 -kerning first=251 second=943 amount=-1 -kerning first=254 second=252 amount=-1 -kerning first=371 second=1256 amount=-2 -kerning first=374 second=382 amount=-2 -kerning first=167 second=266 amount=-2 -kerning first=170 second=39 amount=-3 -kerning first=49 second=279 amount=-1 -kerning first=1063 second=229 amount=-1 -kerning first=72 second=213 amount=-2 -kerning first=1087 second=371 amount=-1 -kerning first=1083 second=1195 amount=-1 -kerning first=215 second=103 amount=-1 -kerning first=904 second=1257 amount=-1 -kerning first=89 second=1119 amount=-3 -kerning first=95 second=115 amount=-1 -kerning first=92 second=355 amount=-1 -kerning first=1224 second=230 amount=-1 -kerning first=1026 second=242 amount=-1 -kerning first=278 second=1101 amount=-1 -kerning first=8222 second=287 amount=-1 -kerning first=53 second=226 amount=-1 -kerning first=1064 second=1240 amount=-2 -kerning first=193 second=356 amount=-5 -kerning first=196 second=116 amount=-1 -kerning first=310 second=268 amount=-3 -kerning first=73 second=368 amount=-2 -kerning first=1099 second=81 amount=-2 -kerning first=910 second=1084 amount=-3 -kerning first=1176 second=243 amount=-1 -kerning first=356 second=1102 amount=-2 -kerning first=119 second=227 amount=-1 -kerning first=1220 second=1263 amount=-1 -kerning first=382 second=269 amount=-1 -kerning first=172 second=369 amount=-1 -kerning first=282 second=973 amount=-1 -kerning first=315 second=216 amount=-1 -kerning first=74 second=1066 amount=-5 -kerning first=916 second=962 amount=-1 -kerning first=100 second=240 amount=-1 -kerning first=237 second=1194 amount=-2 -kerning first=240 second=370 amount=-2 -kerning first=363 second=283 amount=-1 -kerning first=117 second=1256 amount=-2 -kerning first=1298 second=333 amount=-1 -kerning first=180 second=79 amount=-2 -kerning first=291 second=229 amount=-1 -kerning first=1073 second=271 amount=-1 -kerning first=198 second=920 amount=-2 -kerning first=316 second=371 amount=-1 -kerning first=313 second=1195 amount=-1 -kerning first=8366 second=84 amount=-5 -kerning first=936 second=218 amount=-2 -kerning first=367 second=230 amount=-1 -kerning first=1299 second=964 amount=-3 -kerning first=266 second=923 amount=-1 -kerning first=36 second=1101 amount=-1 -kerning first=1039 second=287 amount=-1 -kerning first=178 second=945 amount=-1 -kerning first=294 second=1240 amount=-2 -kerning first=289 second=1262 amount=-2 -kerning first=62 second=268 amount=-2 -kerning first=317 second=1069 amount=-1 -kerning first=325 second=81 amount=-2 -kerning first=900 second=231 amount=-1 -kerning first=8369 second=259 amount=-1 -kerning first=1102 second=1175 amount=-2 -kerning first=1186 second=1028 amount=-1 -kerning first=365 second=1263 amount=-1 -kerning first=161 second=269 amount=-1 -kerning first=40 second=973 amount=-1 -kerning first=46 second=54 amount=-1 -kerning first=298 second=332 amount=-2 -kerning first=209 second=106 amount=1 -kerning first=89 second=118 amount=-2 -kerning first=1119 second=71 amount=-2 -kerning first=352 second=193 amount=-1 -kerning first=946 second=83 amount=-1 -kerning first=1206 second=233 amount=-1 -kerning first=372 second=333 amount=-3 -kerning first=165 second=217 amount=-2 -kerning first=47 second=229 amount=-2 -kerning first=190 second=119 amount=-4 -kerning first=299 second=963 amount=-1 -kerning first=302 second=271 amount=-1 -kerning first=64 second=1195 amount=-1 -kerning first=207 second=1026 amount=-5 -kerning first=8378 second=364 amount=-2 -kerning first=905 second=334 amount=-2 -kerning first=902 second=1090 amount=-3 -kerning first=1168 second=246 amount=-1 -kerning first=113 second=230 amount=-1 -kerning first=253 second=360 amount=-2 -kerning first=376 second=273 amount=-4 -kerning first=379 second=45 amount=-3 -kerning first=163 second=947 amount=-4 -kerning first=166 second=372 amount=-5 -kerning first=8220 second=235 amount=-1 -kerning first=48 second=1240 amount=-2 -kerning first=1062 second=335 amount=-1 -kerning first=306 second=219 amount=-2 -kerning first=74 second=81 amount=-2 -kerning first=214 second=231 amount=-1 -kerning first=906 second=965 amount=-1 -kerning first=94 second=243 amount=-1 -kerning first=234 second=373 amount=-1 -kerning first=357 second=288 amount=-2 -kerning first=354 second=1028 amount=-1 -kerning first=1223 second=336 amount=-2 -kerning first=52 second=332 amount=-2 -kerning first=1063 second=966 amount=-1 -kerning first=1069 second=47 amount=-1 -kerning first=195 second=244 amount=-1 -kerning first=212 second=1298 amount=-1 -kerning first=920 second=221 amount=-3 -kerning first=1178 second=111 amount=-1 -kerning first=232 second=8230 amount=-1 -kerning first=361 second=233 amount=-1 -kerning first=950 second=1177 amount=-1 -kerning first=118 second=333 amount=-1 -kerning first=175 second=257 amount=-1 -kerning first=281 second=1299 amount=-1 -kerning first=8226 second=338 amount=-2 -kerning first=53 second=963 amount=-1 -kerning first=56 second=271 amount=-1 -kerning first=199 second=194 amount=-1 -kerning first=317 second=84 amount=-5 -kerning first=8361 second=262 amount=-2 -kerning first=1099 second=364 amount=-2 -kerning first=923 second=376 amount=-5 -kerning first=1176 second=1035 amount=-5 -kerning first=951 second=8212 amount=-2 -kerning first=122 second=273 amount=-1 -kerning first=125 second=45 amount=-2 -kerning first=37 second=287 amount=-1 -kerning first=1037 second=235 amount=-1 -kerning first=60 second=219 amount=-2 -kerning first=197 second=1108 amount=-1 -kerning first=200 second=347 amount=-1 -kerning first=323 second=34 amount=-3 -kerning first=318 second=259 amount=-1 -kerning first=8365 second=212 amount=-2 -kerning first=80 second=361 amount=-1 -kerning first=916 second=8250 amount=-1 -kerning first=100 second=1028 amount=-2 -kerning first=103 second=288 amount=-2 -kerning first=963 second=248 amount=-1 -kerning first=126 second=220 amount=-2 -kerning first=41 second=232 amount=-1 -kerning first=177 second=1176 amount=-1 -kerning first=180 second=362 amount=-2 -kerning first=291 second=966 amount=-1 -kerning first=296 second=275 amount=-1 -kerning first=61 second=374 amount=-5 -kerning first=1073 second=1076 amount=-1 -kerning first=204 second=289 amount=-1 -kerning first=1080 second=87 amount=-5 -kerning first=8366 second=367 amount=-1 -kerning first=8363 second=1185 amount=-3 -kerning first=902 second=99 amount=-1 -kerning first=87 second=71 amount=-2 -kerning first=345 second=351 amount=-1 -kerning first=936 second=953 amount=-1 -kerning first=107 second=233 amount=-2 -kerning first=247 second=363 amount=-1 -kerning first=160 second=375 amount=-1 -kerning first=273 second=290 amount=-2 -kerning first=1046 second=338 amount=-3 -kerning first=178 second=8211 amount=-2 -kerning first=1049 second=100 amount=-1 -kerning first=1081 second=262 amount=-2 -kerning first=68 second=84 amount=-2 -kerning first=325 second=364 amount=-2 -kerning first=8364 second=8220 amount=-3 -kerning first=900 second=968 amount=-1 -kerning first=903 second=277 amount=-1 -kerning first=88 second=246 amount=-2 -kerning first=1118 second=199 amount=-2 -kerning first=346 second=1035 amount=-1 -kerning first=1210 second=101 amount=-1 -kerning first=1203 second=339 amount=-1 -kerning first=968 second=353 amount=-1 -kerning first=971 second=113 amount=-1 -kerning first=125 second=8249 amount=-3 -kerning first=167 second=85 amount=-2 -kerning first=49 second=97 amount=-1 -kerning first=69 second=259 amount=-1 -kerning first=72 second=34 amount=-3 -kerning first=1087 second=212 amount=-2 -kerning first=323 second=8216 amount=-3 -kerning first=8377 second=943 amount=-1 -kerning first=1119 second=354 amount=-5 -kerning first=946 second=366 amount=-2 -kerning first=1219 second=279 amount=-1 -kerning first=255 second=248 amount=-1 -kerning first=8222 second=103 amount=-1 -kerning first=1241 second=8217 amount=-1 -kerning first=47 second=966 amount=-1 -kerning first=50 second=275 amount=-1 -kerning first=1064 second=225 amount=-1 -kerning first=1084 second=1185 amount=-3 -kerning first=93 second=351 amount=-1 -kerning first=1168 second=1038 amount=-2 -kerning first=96 second=111 amount=-1 -kerning first=236 second=261 amount=-1 -kerning first=376 second=1078 amount=-2 -kerning first=172 second=210 amount=-2 -kerning first=282 second=338 amount=-2 -kerning first=287 second=100 amount=-1 -kerning first=8230 second=53 amount=-1 -kerning first=8224 second=281 amount=-1 -kerning first=8220 second=972 amount=-1 -kerning first=194 second=352 amount=-1 -kerning first=74 second=364 amount=-2 -kerning first=1085 second=8220 amount=-3 -kerning first=214 second=968 amount=-1 -kerning first=338 second=199 amount=-2 -kerning first=94 second=1035 amount=-5 -kerning first=926 second=89 amount=-5 -kerning first=240 second=211 amount=-2 -kerning first=357 second=1098 amount=-3 -kerning first=363 second=101 amount=-1 -kerning first=955 second=251 amount=-1 -kerning first=260 second=353 amount=-1 -kerning first=35 second=235 amount=-1 -kerning first=174 second=365 amount=-1 -kerning first=8240 second=228 amount=-1 -kerning first=316 second=212 amount=-2 -kerning first=72 second=8216 amount=-3 -kerning first=221 second=224 amount=-4 -kerning first=928 second=266 amount=-2 -kerning first=936 second=39 amount=-3 -kerning first=238 second=1184 amount=-5 -kerning first=361 second=970 amount=-1 -kerning first=124 second=171 amount=-3 -kerning first=269 second=63 amount=-1 -kerning first=1039 second=103 amount=-1 -kerning first=294 second=225 amount=-1 -kerning first=8226 second=1257 amount=-1 -kerning first=1074 second=267 amount=-1 -kerning first=62 second=87 amount=-5 -kerning first=314 second=1185 amount=-3 -kerning first=317 second=367 amount=-1 -kerning first=222 second=379 amount=-1 -kerning first=962 second=356 amount=-5 -kerning first=965 second=116 amount=-1 -kerning first=40 second=338 amount=-2 -kerning first=43 second=100 amount=-1 -kerning first=1037 second=972 amount=-1 -kerning first=183 second=250 amount=-1 -kerning first=179 second=941 amount=-1 -kerning first=1041 second=281 amount=-1 -kerning first=63 second=262 amount=-2 -kerning first=203 second=1241 amount=-1 -kerning first=206 second=187 amount=-1 -kerning first=315 second=8220 amount=-3 -kerning first=901 second=227 amount=-1 -kerning first=86 second=199 amount=-2 -kerning first=223 second=1079 amount=-1 -kerning first=103 second=1098 amount=-3 -kerning first=249 second=251 amount=-1 -kerning first=162 second=263 amount=-1 -kerning first=1048 second=228 amount=-1 -kerning first=1080 second=370 amount=-2 -kerning first=327 second=252 amount=-1 -kerning first=84 second=1118 amount=-2 -kerning first=1168 second=67 amount=-2 -kerning first=233 second=39 amount=-1 -kerning first=948 second=79 amount=-2 -kerning first=967 second=920 amount=-2 -kerning first=166 second=213 amount=-2 -kerning first=8220 second=56 amount=-1 -kerning first=48 second=225 amount=-1 -kerning first=1046 second=1257 amount=-2 -kerning first=188 second=355 amount=-1 -kerning first=191 second=115 amount=-1 -kerning first=303 second=267 amount=-1 -kerning first=65 second=1185 amount=-3 -kerning first=1169 second=242 amount=-1 -kerning first=114 second=226 amount=-1 -kerning first=1210 second=1240 amount=-2 -kerning first=254 second=356 amount=-5 -kerning first=377 second=268 amount=-1 -kerning first=167 second=368 amount=-2 -kerning first=280 second=281 amount=-1 -kerning first=8221 second=231 amount=-1 -kerning first=215 second=227 amount=-1 -kerning first=912 second=269 amount=-1 -kerning first=1224 second=332 amount=-2 -kerning first=381 second=216 amount=-1 -kerning first=168 second=1066 amount=-5 -kerning first=165 second=8221 amount=-3 -kerning first=1064 second=962 amount=-1 -kerning first=196 second=240 amount=-1 -kerning first=305 second=1194 amount=-2 -kerning first=8361 second=83 amount=-1 -kerning first=73 second=943 amount=-1 -kerning first=76 second=252 amount=-1 -kerning first=334 second=1044 amount=-1 -kerning first=923 second=217 amount=-2 -kerning first=233 second=8222 amount=-1 -kerning first=958 second=119 amount=-4 -kerning first=1263 second=271 amount=-1 -kerning first=379 second=1195 amount=-1 -kerning first=37 second=103 amount=-1 -kerning first=1027 second=1026 amount=-5 -kerning first=176 second=253 amount=-1 -kerning first=282 second=1257 amount=-1 -kerning first=8224 second=1090 amount=-3 -kerning first=8230 second=334 amount=-1 -kerning first=57 second=267 amount=-1 -kerning first=1071 second=218 amount=-2 -kerning first=341 second=242 amount=-1 -kerning first=916 second=947 amount=-4 -kerning first=926 second=372 amount=-5 -kerning first=1184 second=287 amount=-1 -kerning first=240 second=945 amount=-1 -kerning first=363 second=1240 amount=-2 -kerning first=123 second=268 amount=-2 -kerning first=35 second=972 amount=-1 -kerning first=38 second=281 amount=-1 -kerning first=8240 second=965 amount=-1 -kerning first=1069 second=1202 amount=-3 -kerning first=1073 second=373 amount=-4 -kerning first=84 second=117 amount=-2 -kerning first=221 second=961 amount=-5 -kerning first=367 second=332 amount=-2 -kerning first=964 second=244 amount=-1 -kerning first=160 second=216 amount=-2 -kerning first=273 second=106 amount=1 -kerning first=42 second=228 amount=-1 -kerning first=185 second=118 amount=-4 -kerning first=294 second=962 amount=-1 -kerning first=59 second=1194 amount=-2 -kerning first=62 second=370 amount=-2 -kerning first=1070 second=8230 amount=-1 -kerning first=1081 second=83 amount=-1 -kerning first=205 second=283 amount=-1 -kerning first=8364 second=1177 amount=-1 -kerning first=8369 second=363 amount=-1 -kerning first=900 second=333 amount=-1 -kerning first=88 second=67 amount=-3 -kerning first=942 second=257 amount=-1 -kerning first=108 second=229 amount=-1 -kerning first=251 second=119 amount=-4 -kerning first=371 second=271 amount=-1 -kerning first=374 second=44 amount=-4 -kerning first=125 second=1195 amount=-1 -kerning first=161 second=371 amount=-1 -kerning first=274 second=286 amount=-2 -kerning first=270 second=1026 amount=-2 -kerning first=40 second=1257 amount=-1 -kerning first=1041 second=1090 amount=-3 -kerning first=301 second=218 amount=-2 -kerning first=209 second=230 amount=-1 -kerning first=8365 second=8212 amount=-2 -kerning first=8370 second=1059 amount=-2 -kerning first=904 second=273 amount=-1 -kerning first=901 second=964 amount=-3 -kerning first=86 second=923 amount=-6 -kerning first=89 second=242 amount=-4 -kerning first=226 second=947 amount=-1 -kerning first=1206 second=335 amount=-1 -kerning first=1219 second=97 amount=-1 -kerning first=375 second=219 amount=-2 -kerning first=162 second=1069 amount=-1 -kerning first=168 second=81 amount=-2 -kerning first=278 second=231 amount=-1 -kerning first=1241 second=1175 amount=-2 -kerning first=47 second=331 amount=-1 -kerning first=1048 second=965 amount=-1 -kerning first=190 second=243 amount=-1 -kerning first=302 second=373 amount=-4 -kerning first=207 second=1263 amount=-1 -kerning first=1168 second=350 amount=-1 -kerning first=356 second=232 amount=-3 -kerning first=944 second=1176 amount=-1 -kerning first=948 second=362 amount=-2 -kerning first=113 second=332 amount=-2 -kerning first=1256 second=47 amount=-1 -kerning first=256 second=244 amount=-1 -kerning first=1220 second=275 amount=-1 -kerning first=1207 second=966 amount=-1 -kerning first=973 second=289 amount=-1 -kerning first=8220 second=337 amount=-1 -kerning first=8224 second=99 amount=-1 -kerning first=48 second=962 amount=-1 -kerning first=1065 second=221 amount=-2 -kerning first=1085 second=1177 amount=-1 -kerning first=214 second=333 amount=-1 -kerning first=1174 second=290 amount=-1 -kerning first=237 second=257 amount=-1 -kerning first=114 second=963 amount=-1 -kerning first=117 second=271 amount=-1 -kerning first=280 second=1090 amount=-3 -kerning first=8225 second=277 amount=-1 -kerning first=55 second=218 amount=-2 -kerning first=1066 second=376 amount=-5 -kerning first=195 second=346 amount=-1 -kerning first=1087 second=8212 amount=-2 -kerning first=1095 second=1059 amount=-2 -kerning first=215 second=964 amount=-3 -kerning first=221 second=45 amount=-4 -kerning first=928 second=85 amount=-2 -kerning first=1178 second=235 amount=-1 -kerning first=361 second=335 amount=-1 -kerning first=121 second=219 amount=-2 -kerning first=258 second=1108 amount=-1 -kerning first=36 second=231 amount=-1 -kerning first=171 second=1175 amount=-1 -kerning first=175 second=361 amount=-1 -kerning first=178 second=121 amount=-1 -kerning first=56 second=373 amount=-4 -kerning first=1064 second=8250 amount=-1 -kerning first=196 second=1028 amount=-2 -kerning first=8361 second=366 amount=-2 -kerning first=337 second=1113 amount=-1 -kerning first=102 second=232 amount=-1 -kerning first=239 second=1176 amount=-1 -kerning first=245 second=122 amount=-1 -kerning first=365 second=275 amount=-1 -kerning first=262 second=1033 amount=-1 -kerning first=34 second=1298 amount=-3 -kerning first=1037 second=337 amount=-1 -kerning first=1041 second=99 amount=-1 -kerning first=183 second=71 amount=-2 -kerning first=54 second=8230 amount=-1 -kerning first=63 second=83 amount=-1 -kerning first=1071 second=953 amount=-1 -kerning first=203 second=233 amount=-1 -kerning first=318 second=363 amount=-1 -kerning first=223 second=375 amount=-1 -kerning first=947 second=100 amount=-1 -kerning first=240 second=8211 amount=-2 -kerning first=963 second=352 amount=-1 -kerning first=162 second=84 amount=-5 -kerning first=271 second=234 amount=-1 -kerning first=41 second=334 amount=-2 -kerning first=38 second=1090 amount=-3 -kerning first=184 second=246 amount=-1 -kerning first=1044 second=277 amount=-1 -kerning first=296 second=376 amount=-5 -kerning first=8260 second=1079 amount=-1 -kerning first=1080 second=211 amount=-2 -kerning first=321 second=1059 amount=-2 -kerning first=316 second=8212 amount=-2 -kerning first=8372 second=251 amount=-1 -kerning first=1117 second=113 amount=-1 -kerning first=221 second=8249 amount=-3 -kerning first=107 second=335 amount=-2 -kerning first=163 second=259 amount=-1 -kerning first=166 second=34 amount=-3 -kerning first=42 second=965 amount=-1 -kerning first=48 second=46 amount=-1 -kerning first=1049 second=224 amount=-1 -kerning first=294 second=8250 amount=-1 -kerning first=1081 second=366 amount=-2 -kerning first=906 second=171 amount=-3 -kerning first=88 second=350 amount=-1 -kerning first=108 second=966 amount=-1 -kerning first=114 second=47 amount=-2 -kerning first=1210 second=225 amount=-1 -kerning first=374 second=324 amount=-3 -kerning first=280 second=99 amount=-1 -kerning first=8221 second=52 amount=-1 -kerning first=49 second=221 amount=-5 -kerning first=192 second=111 amount=-1 -kerning first=189 second=351 amount=-1 -kerning first=304 second=261 amount=-1 -kerning first=301 second=953 amount=-1 -kerning first=69 second=363 amount=-1 -kerning first=92 second=290 amount=-2 -kerning first=358 second=100 amount=-1 -kerning first=950 second=250 amount=-1 -kerning first=946 second=941 amount=-1 -kerning first=255 second=352 amount=-1 -kerning first=1026 second=187 amount=-1 -kerning first=168 second=364 amount=-2 -kerning first=278 second=968 amount=-1 -kerning first=50 second=376 amount=-5 -kerning first=1067 second=89 amount=-5 -kerning first=190 second=1035 amount=-5 -kerning first=193 second=291 amount=-1 -kerning first=310 second=211 amount=-3 -kerning first=70 second=1059 amount=-2 -kerning first=1096 second=251 amount=-1 -kerning first=67 second=8212 amount=-1 -kerning first=910 second=955 amount=-2 -kerning first=923 second=38 amount=-1 -kerning first=96 second=235 amount=-1 -kerning first=915 second=263 amount=-1 -kerning first=236 second=365 amount=-1 -kerning first=166 second=8216 amount=-3 -kerning first=287 second=224 amount=-1 -kerning first=48 second=8250 amount=-1 -kerning first=1071 second=39 amount=-3 -kerning first=306 second=1184 amount=-5 -kerning first=77 second=248 amount=-1 -kerning first=926 second=213 amount=-2 -kerning first=1184 second=103 amount=-1 -kerning first=234 second=8217 amount=-1 -kerning first=363 second=225 amount=-1 -kerning first=955 second=355 amount=-1 -kerning first=960 second=115 amount=-1 -kerning first=1298 second=267 amount=-1 -kerning first=123 second=87 amount=-5 -kerning first=35 second=337 amount=-1 -kerning first=38 second=99 amount=-1 -kerning first=177 second=249 amount=-1 -kerning first=174 second=940 amount=-1 -kerning first=58 second=261 amount=-1 -kerning first=55 second=953 amount=-1 -kerning first=1073 second=214 amount=-2 -kerning first=81 second=198 amount=-2 -kerning first=928 second=368 amount=-2 -kerning first=1185 second=281 amount=-2 -kerning first=1178 second=972 amount=-1 -kerning first=124 second=262 amount=-2 -kerning first=36 second=968 amount=-1 -kerning first=39 second=277 amount=-1 -kerning first=1039 second=227 amount=-1 -kerning first=182 second=199 amount=-2 -kerning first=289 second=1079 amount=-1 -kerning first=297 second=89 amount=-5 -kerning first=62 second=211 amount=-2 -kerning first=1074 second=369 amount=-1 -kerning first=202 second=339 amount=-1 -kerning first=205 second=101 amount=-1 -kerning first=322 second=251 amount=-1 -kerning first=222 second=955 amount=-2 -kerning first=931 second=1066 amount=-5 -kerning first=923 second=8221 amount=-3 -kerning first=965 second=240 amount=-1 -kerning first=161 second=212 amount=-2 -kerning first=8211 second=55 amount=-3 -kerning first=43 second=224 amount=-1 -kerning first=1037 second=1256 amount=-2 -kerning first=183 second=354 amount=-5 -kerning first=179 second=1118 amount=-1 -kerning first=298 second=266 amount=-2 -kerning first=301 second=39 amount=-3 -kerning first=60 second=1184 amount=-5 -kerning first=63 second=366 amount=-2 -kerning first=1083 second=79 amount=-2 -kerning first=206 second=279 amount=-1 -kerning first=203 second=970 amount=-1 -kerning first=8370 second=359 amount=-1 -kerning first=8377 second=119 amount=-4 -kerning first=89 second=63 amount=-1 -kerning first=1187 second=1257 amount=-1 -kerning first=249 second=355 amount=-1 -kerning first=252 second=115 amount=-1 -kerning first=372 second=267 amount=-3 -kerning first=162 second=367 amount=-1 -kerning first=126 second=1185 amount=-3 -kerning first=184 second=1038 amount=-2 -kerning first=302 second=214 amount=-2 -kerning first=1080 second=945 amount=-1 -kerning first=327 second=356 amount=-5 -kerning first=905 second=268 amount=-2 -kerning first=160 second=8220 amount=-3 -kerning first=51 second=89 amount=-5 -kerning first=1062 second=269 amount=-1 -kerning first=303 second=369 amount=-1 -kerning first=211 second=381 amount=-1 -kerning first=228 second=8221 amount=-1 -kerning first=1174 second=106 amount=7 -kerning first=357 second=228 amount=-1 -kerning first=952 second=118 amount=-4 -kerning first=1210 second=962 amount=-1 -kerning first=374 second=1194 amount=-3 -kerning first=167 second=943 amount=-1 -kerning first=170 second=252 amount=-1 -kerning first=8221 second=333 amount=-1 -kerning first=52 second=266 amount=-2 -kerning first=55 second=39 amount=-3 -kerning first=313 second=79 amount=-1 -kerning first=1095 second=359 amount=-1 -kerning first=912 second=371 amount=-1 -kerning first=1170 second=1026 amount=-5 -kerning first=238 second=253 amount=-1 -kerning first=118 second=267 amount=-1 -kerning first=281 second=1083 amount=-1 -kerning first=8222 second=964 amount=-3 -kerning first=8226 second=273 amount=-1 -kerning first=56 second=214 amount=-2 -kerning first=1064 second=947 amount=-4 -kerning first=1067 second=372 amount=-5 -kerning first=193 second=1101 amount=-1 -kerning first=310 second=945 amount=-2 -kerning first=76 second=356 amount=-6 -kerning first=915 second=1069 amount=-1 -kerning first=931 second=81 amount=-2 -kerning first=96 second=972 amount=-1 -kerning first=1179 second=231 amount=-1 -kerning first=958 second=243 amount=-1 -kerning first=1263 second=373 amount=-4 -kerning first=1256 second=1202 amount=-3 -kerning first=1027 second=1263 amount=-1 -kerning first=37 second=227 amount=-1 -kerning first=176 second=357 amount=-1 -kerning first=179 second=117 amount=-1 -kerning first=57 second=369 amount=-1 -kerning first=197 second=973 amount=-1 -kerning first=1103 second=244 amount=-1 -kerning first=223 second=216 amount=-2 -kerning first=344 second=106 amount=2 -kerning first=103 second=228 amount=-1 -kerning first=246 second=118 amount=-1 -kerning first=363 second=962 amount=-1 -kerning first=123 second=370 amount=-2 -kerning first=1257 second=8230 amount=-1 -kerning first=35 second=1256 amount=-2 -kerning first=184 second=67 amount=-2 -kerning first=296 second=217 amount=-2 -kerning first=8260 second=375 amount=-1 -kerning first=55 second=8222 amount=-4 -kerning first=64 second=79 amount=-2 -kerning first=1073 second=949 amount=-1 -kerning first=204 second=229 amount=-1 -kerning first=321 second=359 amount=-1 -kerning first=324 second=119 amount=-1 -kerning first=84 second=241 amount=-2 -kerning first=221 second=1195 amount=-4 -kerning first=964 second=346 amount=-1 -kerning first=273 second=230 amount=-1 -kerning first=1039 second=964 amount=-3 -kerning first=1049 second=45 amount=-2 -kerning first=185 second=242 amount=-1 -kerning first=1046 second=273 amount=-2 -kerning first=294 second=947 amount=-4 -kerning first=297 second=372 amount=-5 -kerning first=62 second=945 amount=-1 -kerning first=205 second=1240 amount=-2 -kerning first=202 second=1262 amount=-2 -kerning first=903 second=219 amount=-2 -kerning first=1107 second=1108 amount=-1 -kerning first=942 second=361 amount=-1 -kerning first=251 second=243 amount=-1 -kerning first=371 second=373 amount=-4 -kerning first=965 second=1028 amount=-2 -kerning first=968 second=288 amount=-2 -kerning first=1051 second=220 amount=-2 -kerning first=1083 second=362 amount=-2 -kerning first=209 second=332 amount=-2 -kerning first=330 second=244 amount=-1 -kerning first=904 second=374 amount=-5 -kerning first=92 second=106 amount=1 -kerning first=1119 second=289 amount=-1 -kerning first=950 second=71 amount=-2 -kerning first=1219 second=221 amount=-5 -kerning first=278 second=333 amount=-1 -kerning first=8222 second=48 amount=-1 -kerning first=50 second=217 amount=-2 -kerning first=302 second=949 amount=-1 -kerning first=305 second=257 amount=-1 -kerning first=73 second=119 amount=-4 -kerning first=1080 second=8211 amount=-2 -kerning first=70 second=359 amount=-1 -kerning first=216 second=44 amount=-1 -kerning first=334 second=194 amount=-2 -kerning first=915 second=84 amount=-5 -kerning first=93 second=286 amount=-2 -kerning first=1171 second=234 amount=-1 -kerning first=356 second=334 amount=-1 -kerning first=951 second=246 amount=-1 -kerning first=1220 second=376 amount=-5 -kerning first=256 second=346 amount=-1 -kerning first=376 second=950 amount=-2 -kerning first=169 second=360 amount=-2 -kerning first=282 second=273 amount=-1 -kerning first=287 second=45 amount=-2 -kerning first=279 second=964 amount=-1 -kerning first=48 second=947 amount=-4 -kerning first=51 second=372 amount=-5 -kerning first=1049 second=8249 amount=-3 -kerning first=194 second=287 amount=-1 -kerning first=916 second=259 amount=-1 -kerning first=926 second=34 amount=-3 -kerning first=234 second=1175 amount=-2 -kerning first=237 second=361 amount=-1 -kerning first=240 second=121 amount=-1 -kerning first=357 second=965 amount=-1 -kerning first=117 second=373 amount=-4 -kerning first=1210 second=8250 amount=-1 -kerning first=260 second=288 amount=-2 -kerning first=8240 second=171 amount=-3 -kerning first=1069 second=260 amount=-2 -kerning first=198 second=232 amount=-1 -kerning first=313 second=362 amount=-1 -kerning first=78 second=244 amount=-1 -kerning first=336 second=1033 amount=-1 -kerning first=1185 second=99 amount=-2 -kerning first=1178 second=337 amount=-1 -kerning first=956 second=351 amount=-1 -kerning first=124 second=83 amount=-1 -kerning first=1299 second=261 amount=-1 -kerning first=36 second=333 amount=-1 -kerning first=178 second=245 amount=-1 -kerning first=289 second=375 amount=-1 -kerning first=56 second=949 amount=-1 -kerning first=59 second=257 amount=-1 -kerning first=1074 second=210 amount=-2 -kerning first=310 second=8211 amount=-4 -kerning first=8364 second=250 amount=-1 -kerning first=8361 second=941 amount=-1 -kerning first=343 second=234 amount=-1 -kerning first=931 second=364 amount=-2 -kerning first=1186 second=277 amount=-1 -kerning first=365 second=376 amount=-5 -kerning first=958 second=1035 amount=-5 -kerning first=962 second=291 amount=-1 -kerning first=40 second=273 amount=-1 -kerning first=43 second=45 amount=-2 -kerning first=37 second=964 amount=-3 -kerning first=287 second=8249 amount=-3 -kerning first=298 second=85 amount=-2 -kerning first=203 second=335 amount=-1 -kerning first=206 second=97 amount=-1 -kerning first=80 second=1108 amount=-1 -kerning first=86 second=109 amount=-2 -kerning first=229 second=34 amount=-1 -kerning first=926 second=8216 amount=-3 -kerning first=103 second=965 amount=-1 -kerning first=947 second=224 amount=-1 -kerning first=363 second=8250 amount=-1 -kerning first=271 second=336 amount=-2 -kerning first=8212 second=51 amount=-2 -kerning first=44 second=220 amount=-1 -kerning first=1048 second=171 amount=-3 -kerning first=184 second=350 amount=-1 -kerning first=64 second=362 amount=-2 -kerning first=1073 second=8217 amount=-3 -kerning first=61 second=1176 amount=-1 -kerning first=204 second=966 amount=-1 -kerning first=210 second=47 amount=-1 -kerning first=207 second=275 amount=-1 -kerning first=8372 second=355 amount=-1 -kerning first=8378 second=115 amount=-1 -kerning first=905 second=87 amount=-5 -kerning first=84 second=1033 amount=-4 -kerning first=87 second=289 amount=-2 -kerning first=944 second=249 amount=-1 -kerning first=253 second=111 amount=-1 -kerning first=250 second=351 amount=-1 -kerning first=373 second=261 amount=-1 -kerning first=160 second=1177 amount=-1 -kerning first=163 second=363 amount=-1 -kerning first=8216 second=226 amount=-1 -kerning first=188 second=290 amount=-2 -kerning first=303 second=210 amount=-2 -kerning first=62 second=8211 amount=-2 -kerning first=1085 second=250 amount=-1 -kerning first=1081 second=941 amount=-1 -kerning first=906 second=262 amount=-2 -kerning first=91 second=234 amount=-1 -kerning first=1118 second=1241 amount=-1 -kerning first=354 second=277 amount=-3 -kerning first=1223 second=89 amount=-5 -kerning first=251 second=1035 amount=-5 -kerning first=254 second=291 amount=-1 -kerning first=377 second=211 amount=-1 -kerning first=971 second=339 amount=-1 -kerning first=161 second=8212 amount=-2 -kerning first=164 second=1059 amount=-2 -kerning first=968 second=1098 amount=-3 -kerning first=43 second=8249 amount=-3 -kerning first=52 second=85 amount=-2 -kerning first=1063 second=263 amount=-1 -kerning first=192 second=235 amount=-1 -kerning first=304 second=365 amount=-1 -kerning first=212 second=377 amount=-1 -kerning first=912 second=212 amount=-2 -kerning first=229 second=8216 amount=-1 -kerning first=358 second=224 amount=-1 -kerning first=950 second=354 amount=-5 -kerning first=946 second=1118 amount=-1 -kerning first=1224 second=266 amount=-2 -kerning first=375 second=1184 amount=-5 -kerning first=1026 second=279 amount=-1 -kerning first=281 second=378 amount=-1 -kerning first=1067 second=213 amount=-2 -kerning first=302 second=8217 amount=-3 -kerning first=1099 second=115 amount=-1 -kerning first=1096 second=355 amount=-1 -kerning first=915 second=367 amount=-1 -kerning first=910 second=1185 amount=-2 -kerning first=96 second=337 amount=-1 -kerning first=236 second=940 amount=-1 -kerning first=239 second=249 amount=-1 -kerning first=356 second=1220 amount=-2 -kerning first=951 second=1038 amount=-2 -kerning first=119 second=261 amount=-1 -kerning first=1263 second=214 amount=-2 -kerning first=376 second=8218 amount=-4 -kerning first=8230 second=268 amount=-1 -kerning first=57 second=210 amount=-2 -kerning first=197 second=338 amount=-2 -kerning first=200 second=100 amount=-1 -kerning first=315 second=250 amount=-1 -kerning first=311 second=941 amount=-2 -kerning first=77 second=352 amount=-1 -kerning first=338 second=1241 amount=-1 -kerning first=100 second=277 amount=-1 -kerning first=1184 second=227 amount=-1 -kerning first=123 second=211 amount=-2 -kerning first=1298 second=369 amount=-1 -kerning first=260 second=1098 amount=-3 -kerning first=177 second=353 amount=-1 -kerning first=180 second=113 amount=-1 -kerning first=291 second=263 amount=-1 -kerning first=8260 second=216 amount=-2 -kerning first=58 second=365 amount=-1 -kerning first=1066 second=8221 amount=-2 -kerning first=1069 second=1066 amount=-2 -kerning first=8366 second=118 amount=-4 -kerning first=928 second=943 amount=-1 -kerning first=936 second=252 amount=-1 -kerning first=1178 second=1256 amount=-1 -kerning first=367 second=266 amount=-2 -kerning first=121 second=1184 amount=-5 -kerning first=124 second=366 amount=-2 -kerning first=1262 second=8222 amount=-1 -kerning first=42 second=171 amount=-3 -kerning first=297 second=213 amount=-2 -kerning first=56 second=8217 amount=-3 -kerning first=205 second=225 amount=-1 -kerning first=325 second=115 amount=-1 -kerning first=322 second=355 amount=-1 -kerning first=900 second=267 amount=-1 -kerning first=371 second=214 amount=-2 -kerning first=962 second=1101 amount=-1 -kerning first=274 second=226 amount=-1 -kerning first=298 second=368 amount=-2 -kerning first=63 second=941 amount=-1 -kerning first=8377 second=243 amount=-1 -kerning first=86 second=1241 amount=-1 -kerning first=89 second=187 amount=-2 -kerning first=223 second=8220 amount=-3 -kerning first=946 second=117 amount=-1 -kerning first=947 second=961 amount=-2 -kerning first=1206 second=269 amount=-1 -kerning first=372 second=369 amount=-2 -kerning first=165 second=251 amount=-1 -kerning first=47 second=263 amount=-1 -kerning first=296 second=8221 amount=-3 -kerning first=299 second=1066 amount=-5 -kerning first=213 second=90 amount=-1 -kerning first=902 second=1194 amount=-2 -kerning first=905 second=370 amount=-2 -kerning first=87 second=1099 amount=-2 -kerning first=1168 second=283 amount=-1 -kerning first=951 second=67 amount=-2 -kerning first=113 second=266 amount=-2 -kerning first=1220 second=217 amount=-2 -kerning first=370 second=8222 amount=-1 -kerning first=379 second=79 amount=-1 -kerning first=973 second=229 amount=-1 -kerning first=8216 second=963 amount=-1 -kerning first=8220 second=271 amount=-1 -kerning first=51 second=213 amount=-2 -kerning first=1049 second=1195 amount=-1 -kerning first=194 second=103 amount=-1 -kerning first=306 second=253 amount=-1 -kerning first=74 second=115 amount=-1 -kerning first=214 second=267 amount=-1 -kerning first=952 second=242 amount=-1 -kerning first=117 second=214 amount=-2 -kerning first=1210 second=947 amount=-4 -kerning first=1223 second=372 amount=-5 -kerning first=254 second=1101 amount=-1 -kerning first=377 second=945 amount=-1 -kerning first=971 second=1262 amount=-2 -kerning first=170 second=356 amount=-5 -kerning first=174 second=116 amount=-1 -kerning first=8225 second=219 amount=-2 -kerning first=52 second=368 amount=-2 -kerning first=1063 second=1069 amount=-1 -kerning first=192 second=972 amount=-1 -kerning first=195 second=281 amount=-1 -kerning first=1170 second=1263 amount=-1 -kerning first=238 second=357 amount=-1 -kerning first=361 second=269 amount=-1 -kerning first=258 second=973 amount=-1 -kerning first=289 second=216 amount=-2 -kerning first=8226 second=374 amount=-5 -kerning first=53 second=1066 amount=-5 -kerning first=50 second=8221 amount=-3 -kerning first=1070 second=256 amount=-2 -kerning first=317 second=118 amount=-4 -kerning first=8364 second=71 amount=-2 -kerning first=96 second=1256 amount=-2 -kerning first=1179 second=333 amount=-1 -kerning first=365 second=217 amount=-2 -kerning first=116 second=8222 amount=-1 -kerning first=125 second=79 amount=-2 -kerning first=1263 second=949 amount=-1 -kerning first=1037 second=271 amount=-1 -kerning first=176 second=920 amount=-2 -kerning first=287 second=1195 amount=-1 -kerning first=60 second=253 amount=-1 -kerning first=197 second=1257 amount=-1 -kerning first=8365 second=246 amount=-1 -kerning first=1103 second=346 amount=-1 -kerning first=934 second=360 amount=-2 -kerning first=1184 second=964 amount=-4 -kerning first=1187 second=273 amount=-1 -kerning first=947 second=45 amount=-1 -kerning first=363 second=947 amount=-4 -kerning first=963 second=287 amount=-1 -kerning first=123 second=945 amount=-1 -kerning first=41 second=268 amount=-2 -kerning first=1044 second=219 amount=-1 -kerning first=291 second=1069 amount=-1 -kerning first=299 second=81 amount=-2 -kerning first=1073 second=1175 amount=-2 -kerning first=1080 second=121 amount=-1 -kerning first=84 second=343 amount=-2 -kerning first=107 second=269 amount=-2 -kerning first=1202 second=220 amount=-1 -kerning first=967 second=232 amount=-1 -kerning first=273 second=332 amount=-2 -kerning first=8216 second=47 amount=-2 -kerning first=188 second=106 amount=1 -kerning first=1085 second=71 amount=-2 -kerning first=205 second=962 amount=-1 -kerning first=906 second=83 amount=-1 -kerning first=88 second=283 amount=-2 -kerning first=1118 second=233 amount=-1 -kerning first=371 second=949 amount=-1 -kerning first=374 second=257 amount=-4 -kerning first=164 second=359 amount=-1 -kerning first=167 second=119 amount=-4 -kerning first=274 second=963 amount=-1 -kerning first=43 second=1195 amount=-1 -kerning first=46 second=371 amount=-1 -kerning first=1063 second=84 amount=-5 -kerning first=186 second=1026 amount=-5 -kerning first=189 second=286 amount=-2 -kerning first=66 second=1046 amount=-2 -kerning first=1087 second=246 amount=-1 -kerning first=330 second=346 amount=-1 -kerning first=8377 second=1035 amount=-5 -kerning first=908 second=258 amount=-2 -kerning first=92 second=230 amount=-1 -kerning first=235 second=120 amount=-2 -kerning first=358 second=45 amount=-2 -kerning first=109 second=947 amount=-1 -kerning first=947 second=8249 amount=-1 -kerning first=1224 second=85 amount=-2 -kerning first=255 second=287 amount=-1 -kerning first=1026 second=97 amount=-1 -kerning first=47 second=1069 amount=-1 -kerning first=53 second=81 amount=-2 -kerning first=1067 second=34 amount=-3 -kerning first=1064 second=259 amount=-1 -kerning first=193 second=231 amount=-1 -kerning first=305 second=361 amount=-1 -kerning first=310 second=121 amount=-2 -kerning first=73 second=243 amount=-1 -kerning first=210 second=1202 amount=-3 -kerning first=1171 second=336 amount=-2 -kerning first=951 second=350 amount=-1 -kerning first=1256 second=260 amount=-2 -kerning first=376 second=1176 amount=-2 -kerning first=973 second=966 amount=-1 -kerning first=1027 second=275 amount=-1 -kerning first=172 second=244 amount=-1 -kerning first=282 second=374 amount=-5 -kerning first=279 second=1203 amount=-2 -kerning first=8230 second=87 amount=-3 -kerning first=315 second=71 amount=-1 -kerning first=211 second=8230 amount=-1 -kerning first=338 second=233 amount=-1 -kerning first=916 second=363 amount=-1 -kerning first=240 second=245 amount=-1 -kerning first=955 second=290 amount=-2 -kerning first=117 second=949 amount=-1 -kerning first=120 second=257 amount=-1 -kerning first=1298 second=210 amount=-2 -kerning first=377 second=8211 amount=-3 -kerning first=35 second=271 amount=-1 -kerning first=291 second=84 amount=-5 -kerning first=8240 second=262 amount=-2 -kerning first=195 second=1090 amount=-3 -kerning first=198 second=334 amount=-2 -kerning first=316 second=246 amount=-1 -kerning first=8363 second=199 amount=-2 -kerning first=78 second=346 amount=-1 -kerning first=221 second=258 amount=-5 -kerning first=912 second=8212 amount=-2 -kerning first=98 second=964 amount=-1 -kerning first=358 second=8249 amount=-3 -kerning first=367 second=85 amount=-2 -kerning first=1299 second=365 amount=-1 -kerning first=175 second=1108 amount=-1 -kerning first=178 second=347 amount=-1 -kerning first=294 second=259 amount=-1 -kerning first=297 second=34 amount=-3 -kerning first=59 second=361 amount=-1 -kerning first=1067 second=8216 amount=-3 -kerning first=62 second=121 amount=-1 -kerning first=8364 second=354 amount=-5 -kerning first=8361 second=1118 amount=-1 -kerning first=105 second=220 amount=-2 -kerning first=242 second=1113 amount=-1 -kerning first=368 second=260 amount=-2 -kerning first=125 second=362 amount=-2 -kerning first=1263 second=8217 amount=-3 -kerning first=40 second=374 amount=-5 -kerning first=1047 second=87 amount=-1 -kerning first=183 second=289 amount=-1 -kerning first=1075 second=940 amount=-1 -kerning first=206 second=221 amount=-5 -kerning first=323 second=351 amount=-1 -kerning first=8365 second=1038 amount=-2 -kerning first=901 second=261 amount=-1 -kerning first=86 second=233 amount=-3 -kerning first=223 second=1177 amount=-1 -kerning first=249 second=290 amount=-2 -kerning first=372 second=210 amount=-2 -kerning first=123 second=8211 amount=-2 -kerning first=47 second=84 amount=-5 -kerning first=1048 second=262 amount=-2 -kerning first=299 second=364 amount=-2 -kerning first=8260 second=8220 amount=-3 -kerning first=1084 second=199 amount=-2 -kerning first=207 second=376 amount=-5 -kerning first=327 second=291 amount=-1 -kerning first=905 second=211 amount=-2 -kerning first=1117 second=339 amount=-1 -kerning first=1168 second=101 amount=-1 -kerning first=948 second=113 amount=-1 -kerning first=944 second=353 amount=-1 -kerning first=113 second=85 amount=-2 -kerning first=1207 second=263 amount=-1 -kerning first=253 second=235 amount=-1 -kerning first=967 second=969 amount=-1 -kerning first=48 second=259 amount=-1 -kerning first=51 second=34 amount=-3 -kerning first=1062 second=212 amount=-1 -kerning first=297 second=8216 amount=-3 -kerning first=1081 second=1118 amount=-1 -kerning first=1085 second=354 amount=-5 -kerning first=205 second=8250 amount=-1 -kerning first=903 second=1184 amount=-5 -kerning first=906 second=366 amount=-2 -kerning first=91 second=336 amount=-2 -kerning first=1118 second=970 amount=-1 -kerning first=1169 second=279 amount=-1 -kerning first=354 second=378 amount=-1 -kerning first=357 second=171 amount=-3 -kerning first=1223 second=213 amount=-2 -kerning first=371 second=8217 amount=-3 -kerning first=277 second=1076 amount=-1 -kerning first=8221 second=267 amount=-1 -kerning first=1051 second=1185 amount=-3 -kerning first=1063 second=367 amount=-1 -kerning first=192 second=337 amount=-1 -kerning first=195 second=99 amount=-1 -kerning first=304 second=940 amount=-1 -kerning first=72 second=351 amount=-1 -kerning first=1087 second=1038 amount=-2 -kerning first=75 second=111 amount=-2 -kerning first=215 second=261 amount=-1 -kerning first=1224 second=368 amount=-2 -kerning first=258 second=338 amount=-2 -kerning first=378 second=941 amount=-1 -kerning first=53 second=364 amount=-2 -kerning first=193 second=968 amount=-1 -kerning first=196 second=277 amount=-1 -kerning first=314 second=199 amount=-2 -kerning first=8361 second=117 amount=-1 -kerning first=73 second=1035 amount=-5 -kerning first=76 second=291 amount=-1 -kerning first=923 second=251 amount=-1 -kerning first=239 second=353 amount=-1 -kerning first=359 second=955 amount=-1 -kerning first=1220 second=8221 amount=-3 -kerning first=1256 second=1066 amount=-2 -kerning first=8224 second=1194 amount=-2 -kerning first=8230 second=370 amount=-1 -kerning first=51 second=8216 amount=-3 -kerning first=1071 second=252 amount=-1 -kerning first=200 second=224 amount=-1 -kerning first=315 second=354 amount=-6 -kerning first=8365 second=67 amount=-2 -kerning first=338 second=970 amount=-1 -kerning first=341 second=279 amount=-1 -kerning first=103 second=171 amount=-3 -kerning first=246 second=63 amount=-2 -kerning first=117 second=8217 amount=-3 -kerning first=963 second=103 amount=-1 -kerning first=41 second=87 amount=-5 -kerning first=291 second=367 amount=-1 -kerning first=61 second=249 amount=-1 -kerning first=58 second=940 amount=-1 -kerning first=316 second=1038 amount=-2 -kerning first=8366 second=242 amount=-1 -kerning first=218 second=8218 amount=-1 -kerning first=936 second=356 amount=-5 -kerning first=345 second=226 amount=-1 -kerning first=101 second=1078 amount=-2 -kerning first=367 second=368 amount=-2 -kerning first=964 second=281 amount=-1 -kerning first=160 second=250 amount=-1 -kerning first=124 second=941 amount=-1 -kerning first=42 second=262 amount=-2 -kerning first=182 second=1241 amount=-1 -kerning first=185 second=187 amount=-1 -kerning first=289 second=8220 amount=-3 -kerning first=65 second=199 amount=-2 -kerning first=1081 second=117 amount=-1 -kerning first=202 second=1079 amount=-1 -kerning first=208 second=89 amount=-3 -kerning first=900 second=369 amount=-1 -kerning first=88 second=101 amount=-2 -kerning first=108 second=263 amount=-1 -kerning first=365 second=8221 amount=-3 -kerning first=968 second=228 amount=-1 -kerning first=46 second=212 amount=-1 -kerning first=1041 second=1194 amount=-2 -kerning first=298 second=943 amount=-1 -kerning first=301 second=252 amount=-1 -kerning first=63 second=1118 amount=-1 -kerning first=66 second=354 amount=-1 -kerning first=1087 second=67 amount=-2 -kerning first=209 second=266 amount=-2 -kerning first=86 second=970 amount=-1 -kerning first=89 second=279 amount=-4 -kerning first=1119 second=229 amount=-1 -kerning first=947 second=1195 amount=-1 -kerning first=255 second=103 amount=-1 -kerning first=375 second=253 amount=-1 -kerning first=165 second=355 amount=-1 -kerning first=168 second=115 amount=-1 -kerning first=278 second=267 amount=-1 -kerning first=8218 second=218 amount=-1 -kerning first=47 second=367 amount=-1 -kerning first=44 second=1185 amount=-3 -kerning first=1090 second=242 amount=-1 -kerning first=327 second=1101 amount=-1 -kerning first=905 second=945 amount=-1 -kerning first=93 second=226 amount=-1 -kerning first=1117 second=1262 amount=-2 -kerning first=1168 second=1240 amount=-2 -kerning first=236 second=116 amount=-1 -kerning first=356 second=268 amount=-1 -kerning first=113 second=368 amount=-2 -kerning first=253 second=972 amount=-1 -kerning first=256 second=281 amount=-1 -kerning first=194 second=227 amount=-1 -kerning first=306 second=357 amount=-1 -kerning first=214 second=369 amount=-1 -kerning first=1174 second=332 amount=-1 -kerning first=955 second=106 amount=1 -kerning first=111 second=8221 amount=-1 -kerning first=260 second=228 amount=-1 -kerning first=174 second=240 amount=-1 -kerning first=280 second=1194 amount=-2 -kerning first=8217 second=8230 amount=-1 -kerning first=8240 second=83 amount=-1 -kerning first=52 second=943 amount=-1 -kerning first=55 second=252 amount=-1 -kerning first=192 second=1256 amount=-2 -kerning first=316 second=67 amount=-2 -kerning first=212 second=8222 amount=-1 -kerning first=221 second=79 amount=-3 -kerning first=928 second=119 amount=-4 -kerning first=1178 second=271 amount=-1 -kerning first=1175 second=963 amount=-1 -kerning first=238 second=920 amount=-2 -kerning first=358 second=1195 amount=-1 -kerning first=361 second=371 amount=-1 -kerning first=956 second=286 amount=-2 -kerning first=121 second=253 amount=-1 -kerning first=258 second=1257 amount=-1 -kerning first=36 second=267 amount=-1 -kerning first=8249 second=258 amount=-1 -kerning first=1074 second=120 amount=-1 -kerning first=317 second=242 amount=-1 -kerning first=1186 second=219 amount=-1 -kerning first=962 second=231 amount=-1 -kerning first=1037 second=373 amount=-4 -kerning first=1034 second=1202 amount=-2 -kerning first=60 second=357 amount=-1 -kerning first=63 second=117 amount=-1 -kerning first=203 second=269 amount=-1 -kerning first=8365 second=350 amount=-1 -kerning first=80 second=973 amount=-1 -kerning first=249 second=106 amount=1 -kerning first=162 second=118 amount=-4 -kerning first=38 second=1194 amount=-2 -kerning first=41 second=370 amount=-2 -kerning first=1048 second=83 amount=-1 -kerning first=184 second=283 amount=-1 -kerning first=8260 second=1177 amount=-1 -kerning first=1080 second=245 amount=-1 -kerning first=207 second=217 amount=-2 -kerning first=8372 second=290 amount=-2 -kerning first=902 second=257 amount=-1 -kerning first=87 second=229 amount=-2 -kerning first=230 second=119 amount=-1 -kerning first=345 second=963 amount=-1 -kerning first=247 second=1026 amount=-5 -kerning first=250 second=286 amount=-2 -kerning first=964 second=1090 amount=-3 -kerning first=967 second=334 amount=-2 -kerning first=276 second=218 amount=-2 -kerning first=1046 second=950 amount=-2 -kerning first=188 second=230 amount=-1 -kerning first=300 second=360 amount=-2 -kerning first=205 second=947 amount=-4 -kerning first=208 second=372 amount=-2 -kerning first=88 second=1240 amount=-3 -kerning first=1118 second=335 amount=-1 -kerning first=942 second=1108 amount=-1 -kerning first=108 second=1069 amount=-1 -kerning first=1210 second=259 amount=-1 -kerning first=1223 second=34 amount=-3 -kerning first=254 second=231 amount=-1 -kerning first=374 second=361 amount=-2 -kerning first=968 second=965 amount=-1 -kerning first=167 second=243 amount=-1 -kerning first=277 second=373 amount=-1 -kerning first=186 second=1263 amount=-1 -kerning first=1087 second=350 amount=-1 -kerning first=904 second=1176 amount=-1 -kerning first=89 second=1085 amount=-3 -kerning first=92 second=332 amount=-2 -kerning first=1119 second=966 amount=-1 -kerning first=1170 second=275 amount=-1 -kerning first=352 second=1203 amount=-1 -kerning first=950 second=289 amount=-1 -kerning first=381 second=71 amount=-1 -kerning first=1026 second=221 amount=-5 -kerning first=171 second=193 amount=-1 -kerning first=275 second=8230 amount=-1 -kerning first=1064 second=363 amount=-1 -kerning first=193 second=333 amount=-1 -kerning first=310 second=245 amount=-2 -kerning first=1096 second=290 amount=-2 -kerning first=905 second=8211 amount=-2 -kerning first=93 second=963 amount=-1 -kerning first=96 second=271 amount=-1 -kerning first=910 second=1051 amount=-5 -kerning first=954 second=234 amount=-2 -kerning first=256 second=1090 amount=-3 -kerning first=382 second=246 amount=-1 -kerning first=1027 second=376 amount=-5 -kerning first=172 second=346 amount=-1 -kerning first=8230 second=211 amount=-1 -kerning first=54 second=360 amount=-2 -kerning first=1065 second=1059 amount=-1 -kerning first=1062 second=8212 amount=-2 -kerning first=197 second=273 amount=-1 -kerning first=200 second=45 amount=-2 -kerning first=194 second=964 amount=-3 -kerning first=77 second=287 amount=-1 -kerning first=338 second=335 amount=-1 -kerning first=341 second=97 amount=-1 -kerning first=916 second=936 amount=-3 -kerning first=100 second=219 amount=-2 -kerning first=237 second=1108 amount=-1 -kerning first=240 second=347 amount=-1 -kerning first=363 second=259 amount=-1 -kerning first=1223 second=8216 amount=-3 -kerning first=123 second=121 amount=-1 -kerning first=260 second=965 amount=-1 -kerning first=268 second=46 amount=-1 -kerning first=35 second=373 amount=-4 -kerning first=174 second=1028 amount=-2 -kerning first=177 second=288 amount=-2 -kerning first=8225 second=1184 amount=-5 -kerning first=8240 second=366 amount=-2 -kerning first=1073 second=248 amount=-1 -kerning first=201 second=220 amount=-2 -kerning first=316 second=350 amount=-1 -kerning first=345 second=47 amount=-2 -kerning first=936 second=197 amount=-3 -kerning first=98 second=1203 amount=-2 -kerning first=1194 second=87 amount=-1 -kerning first=964 second=99 amount=-1 -kerning first=160 second=71 amount=-2 -kerning first=1299 second=940 amount=-1 -kerning first=42 second=83 amount=-1 -kerning first=1039 second=261 amount=-1 -kerning first=182 second=233 amount=-1 -kerning first=294 second=363 amount=-1 -kerning first=289 second=1177 amount=-1 -kerning first=62 second=245 amount=-1 -kerning first=202 second=375 amount=-1 -kerning first=322 second=290 amount=-2 -kerning first=900 second=210 amount=-2 -kerning first=222 second=1051 amount=-1 -kerning first=108 second=84 amount=-5 -kerning first=962 second=968 amount=-1 -kerning first=965 second=277 amount=-1 -kerning first=161 second=246 amount=-1 -kerning first=270 second=376 amount=-3 -kerning first=8211 second=89 amount=-4 -kerning first=1083 second=113 amount=-1 -kerning first=200 second=8249 amount=-3 -kerning first=209 second=85 amount=-2 -kerning first=901 second=365 amount=-1 -kerning first=86 second=335 amount=-1 -kerning first=89 second=97 amount=-4 -kerning first=112 second=34 amount=-1 -kerning first=1206 second=212 amount=-1 -kerning first=8218 second=39 amount=-1 -kerning first=1044 second=1184 amount=-2 -kerning first=1048 second=366 amount=-2 -kerning first=302 second=248 amount=-1 -kerning first=70 second=110 amount=-1 -kerning first=210 second=260 amount=-2 -kerning first=902 second=1063 amount=-3 -kerning first=87 second=966 amount=-3 -kerning first=90 second=275 amount=-1 -kerning first=1168 second=225 amount=-1 -kerning first=1202 second=1185 amount=-2 -kerning first=253 second=337 amount=-1 -kerning first=256 second=99 amount=-1 -kerning first=376 second=249 amount=-2 -kerning first=373 second=940 amount=-1 -kerning first=169 second=111 amount=-1 -kerning first=166 second=351 amount=-1 -kerning first=276 second=953 amount=-1 -kerning first=48 second=363 amount=-1 -kerning first=214 second=210 amount=-2 -kerning first=906 second=941 amount=-1 -kerning first=357 second=262 amount=-2 -kerning first=354 second=954 amount=-2 -kerning first=952 second=187 amount=-1 -kerning first=254 second=968 amount=-1 -kerning first=971 second=1079 amount=-1 -kerning first=167 second=1035 amount=-5 -kerning first=170 second=291 amount=-1 -kerning first=1028 second=89 amount=-2 -kerning first=49 second=1059 amount=-2 -kerning first=46 second=8212 amount=-1 -kerning first=313 second=113 amount=-1 -kerning first=75 second=235 amount=-2 -kerning first=215 second=365 amount=-1 -kerning first=361 second=212 amount=-2 -kerning first=950 second=1099 amount=-2 -kerning first=112 second=8216 amount=-1 -kerning first=1224 second=943 amount=-1 -kerning first=56 second=248 amount=-1 -kerning first=199 second=171 amount=-1 -kerning first=923 second=355 amount=-1 -kerning first=931 second=115 amount=-1 -kerning first=1179 second=267 amount=-1 -kerning first=119 second=940 amount=-1 -kerning first=262 second=379 amount=-1 -kerning first=37 second=261 amount=-1 -kerning first=1037 second=214 amount=-2 -kerning first=1071 second=356 amount=-5 -kerning first=80 second=338 amount=-2 -kerning first=1103 second=281 amount=-1 -kerning first=223 second=250 amount=-1 -kerning first=103 second=262 amount=-2 -kerning first=963 second=227 amount=-1 -kerning first=126 second=199 amount=-2 -kerning first=271 second=89 amount=-5 -kerning first=41 second=211 amount=-2 -kerning first=177 second=1098 amount=-3 -kerning first=180 second=339 amount=-1 -kerning first=184 second=101 amount=-1 -kerning first=296 second=251 amount=-1 -kerning first=61 second=353 amount=-1 -kerning first=64 second=113 amount=-1 -kerning first=204 second=263 amount=-1 -kerning first=8372 second=106 amount=1 -kerning first=936 second=916 amount=-3 -kerning first=367 second=943 amount=-1 -kerning first=124 second=1118 amount=-1 -kerning first=160 second=354 amount=-5 -kerning first=273 second=266 amount=-2 -kerning first=276 second=39 amount=-3 -kerning first=42 second=366 amount=-2 -kerning first=1049 second=79 amount=-2 -kerning first=185 second=279 amount=-1 -kerning first=182 second=970 amount=-1 -kerning first=8369 second=1026 amount=-5 -kerning first=903 second=253 amount=-1 -kerning first=88 second=225 amount=-1 -kerning first=1107 second=1257 amount=-1 -kerning first=108 second=367 amount=-1 -kerning first=105 second=1185 amount=-3 -kerning first=161 second=1038 amount=-2 -kerning first=8211 second=372 amount=-2 -kerning first=189 second=226 amount=-1 -kerning first=301 second=356 amount=-5 -kerning first=304 second=116 amount=-1 -kerning first=209 second=368 amount=-2 -kerning first=330 second=281 amount=-1 -kerning first=89 second=380 amount=-2 -kerning first=255 second=227 amount=-1 -kerning first=375 second=357 amount=-1 -kerning first=372 second=1169 amount=-2 -kerning first=278 second=369 amount=-1 -kerning first=47 second=942 amount=-1 -kerning first=50 second=251 amount=-1 -kerning first=207 second=8221 amount=-3 -kerning first=1096 second=106 amount=1 -kerning first=210 second=1066 amount=-2 -kerning first=915 second=118 amount=-4 -kerning first=1168 second=962 amount=-1 -kerning first=236 second=240 amount=-1 -kerning first=951 second=283 amount=-1 -kerning first=113 second=943 amount=-1 -kerning first=253 second=1256 amount=-2 -kerning first=376 second=1044 amount=-5 -kerning first=1027 second=217 amount=-2 -kerning first=287 second=79 amount=-2 -kerning first=8220 second=949 amount=-1 -kerning first=8224 second=257 amount=-1 -kerning first=1068 second=119 amount=-1 -kerning first=306 second=920 amount=-2 -kerning first=77 second=103 amount=-1 -kerning first=955 second=230 amount=-1 -kerning first=35 second=214 amount=-2 -kerning first=1028 second=372 amount=-1 -kerning first=170 second=1101 amount=-1 -kerning first=55 second=356 amount=-5 -kerning first=58 second=116 amount=-1 -kerning first=198 second=268 amount=-2 -kerning first=78 second=281 amount=-1 -kerning first=75 second=972 amount=-2 -kerning first=928 second=243 amount=-1 -kerning first=1178 second=373 amount=-2 -kerning first=121 second=357 amount=-1 -kerning first=124 second=117 amount=-1 -kerning first=36 second=369 amount=-1 -kerning first=175 second=973 amount=-1 -kerning first=8226 second=1176 amount=-1 -kerning first=1074 second=244 amount=-1 -kerning first=202 second=216 amount=-2 -kerning first=322 second=106 amount=1 -kerning first=8364 second=289 amount=-1 -kerning first=225 second=118 amount=-1 -kerning first=962 second=333 amount=-1 -kerning first=161 second=67 amount=-2 -kerning first=34 second=8222 amount=-1 -kerning first=43 second=79 amount=-2 -kerning first=1037 second=949 amount=-1 -kerning first=1041 second=257 amount=-1 -kerning first=183 second=229 amount=-1 -kerning first=298 second=119 amount=-4 -kerning first=8230 second=8211 amount=-1 -kerning first=8250 second=1051 amount=-2 -kerning first=60 second=920 amount=-2 -kerning first=203 second=371 amount=-1 -kerning first=200 second=1195 amount=-1 -kerning first=318 second=1026 amount=-5 -kerning first=323 second=286 amount=-2 -kerning first=8370 second=234 amount=-1 -kerning first=80 second=1257 amount=-1 -kerning first=1103 second=1090 amount=-3 -kerning first=249 second=230 amount=-1 -kerning first=369 second=360 amount=-2 -kerning first=372 second=120 amount=-1 -kerning first=963 second=964 amount=-3 -kerning first=162 second=242 amount=-1 -kerning first=271 second=372 amount=-5 -kerning first=41 second=945 amount=-1 -kerning first=184 second=1240 amount=-2 -kerning first=180 second=1262 amount=-2 -kerning first=1080 second=347 amount=-1 -kerning first=1076 second=1108 amount=-1 -kerning first=204 second=1069 amount=-1 -kerning first=327 second=231 amount=-1 -kerning first=902 second=361 amount=-1 -kerning first=905 second=121 amount=-1 -kerning first=84 second=1084 amount=-2 -kerning first=87 second=331 amount=-2 -kerning first=350 second=373 amount=-1 -kerning first=944 second=288 amount=-2 -kerning first=247 second=1263 amount=-1 -kerning first=8216 second=260 amount=-3 -kerning first=1049 second=362 amount=-2 -kerning first=1046 second=1176 amount=-2 -kerning first=188 second=332 amount=-2 -kerning first=303 second=244 amount=-1 -kerning first=71 second=106 amount=2 -kerning first=1085 second=289 amount=-1 -kerning first=211 second=256 amount=-2 -kerning first=88 second=962 amount=-2 -kerning first=357 second=83 amount=-1 -kerning first=1210 second=363 amount=-1 -kerning first=254 second=333 amount=-1 -kerning first=377 second=245 amount=-1 -kerning first=971 second=375 amount=-1 -kerning first=280 second=257 amount=-1 -kerning first=49 second=359 amount=-1 -kerning first=52 second=119 amount=-4 -kerning first=189 second=963 amount=-1 -kerning first=192 second=271 amount=-1 -kerning first=69 second=1026 amount=-5 -kerning first=72 second=286 amount=-2 -kerning first=1095 second=234 amount=-1 -kerning first=330 second=1090 amount=-3 -kerning first=912 second=246 amount=-1 -kerning first=95 second=218 amount=-2 -kerning first=1170 second=376 amount=-5 -kerning first=1206 second=8212 amount=-2 -kerning first=1219 second=1059 amount=-2 -kerning first=258 second=273 amount=-1 -kerning first=255 second=964 amount=-3 -kerning first=8222 second=365 amount=-1 -kerning first=196 second=219 amount=-2 -kerning first=305 second=1108 amount=-1 -kerning first=76 second=231 amount=-1 -kerning first=96 second=373 amount=-4 -kerning first=1168 second=8250 amount=-1 -kerning first=236 second=1028 amount=-2 -kerning first=239 second=288 amount=-2 -kerning first=1263 second=248 amount=-1 -kerning first=1034 second=260 amount=-1 -kerning first=176 second=232 amount=-1 -kerning first=287 second=362 amount=-2 -kerning first=282 second=1176 amount=-1 -kerning first=57 second=244 amount=-1 -kerning first=197 second=374 amount=-5 -kerning first=315 second=289 amount=-1 -kerning first=1103 second=99 amount=-1 -kerning first=223 second=71 amount=-2 -kerning first=934 second=111 amount=-1 -kerning first=926 second=351 amount=-1 -kerning first=103 second=83 amount=-1 -kerning first=1184 second=261 amount=-1 -kerning first=363 second=363 amount=-1 -kerning first=955 second=967 amount=-3 -kerning first=123 second=245 amount=-1 -kerning first=35 second=949 amount=-1 -kerning first=38 second=257 amount=-1 -kerning first=8260 second=250 amount=-1 -kerning first=8240 second=941 amount=-1 -kerning first=1073 second=352 amount=-1 -kerning first=204 second=84 amount=-5 -kerning first=321 second=234 amount=-1 -kerning first=8363 second=1241 amount=-1 -kerning first=8366 second=187 amount=-1 -kerning first=78 second=1090 amount=-3 -kerning first=342 second=376 amount=-2 -kerning first=928 second=1035 amount=-5 -kerning first=936 second=291 amount=-1 -kerning first=361 second=8212 amount=-2 -kerning first=273 second=85 amount=-2 -kerning first=1039 second=365 amount=-1 -kerning first=182 second=335 amount=-1 -kerning first=185 second=97 amount=-1 -kerning first=59 second=1108 amount=-1 -kerning first=62 second=347 amount=-1 -kerning first=205 second=259 amount=-1 -kerning first=1186 second=1184 amount=-2 -kerning first=371 second=248 amount=-1 -kerning first=968 second=171 amount=-3 -kerning first=161 second=350 amount=-1 -kerning first=40 second=1176 amount=-1 -kerning first=43 second=362 amount=-2 -kerning first=1041 second=1063 amount=-1 -kerning first=1037 second=8217 amount=-3 -kerning first=183 second=966 amount=-1 -kerning first=186 second=275 amount=-1 -kerning first=330 second=99 amount=-1 -kerning first=901 second=940 amount=-1 -kerning first=904 second=249 amount=-1 -kerning first=966 second=1078 amount=-2 -kerning first=165 second=290 amount=-2 -kerning first=278 second=210 amount=-2 -kerning first=41 second=8211 amount=-2 -kerning first=1048 second=941 amount=-1 -kerning first=302 second=352 amount=-1 -kerning first=70 second=234 amount=-1 -kerning first=1084 second=1241 amount=-1 -kerning first=327 second=968 amount=-1 -kerning first=910 second=199 amount=-3 -kerning first=1117 second=1079 amount=-1 -kerning first=1171 second=89 amount=-5 -kerning first=356 second=211 amount=-1 -kerning first=944 second=1098 amount=-3 -kerning first=948 second=339 amount=-1 -kerning first=951 second=101 amount=-1 -kerning first=107 second=8212 amount=-3 -kerning first=1220 second=251 amount=-1 -kerning first=376 second=353 amount=-3 -kerning first=379 second=113 amount=-1 -kerning first=973 second=263 amount=-1 -kerning first=169 second=235 amount=-1 -kerning first=906 second=1118 amount=-1 -kerning first=88 second=8250 amount=-1 -kerning first=1174 second=266 amount=-1 -kerning first=357 second=366 amount=-2 -kerning first=952 second=279 amount=-1 -kerning first=117 second=248 amount=-1 -kerning first=260 second=171 amount=-3 -kerning first=277 second=8217 amount=-1 -kerning first=288 second=75 amount=2 -kerning first=8225 second=253 amount=-1 -kerning first=55 second=197 amount=-5 -kerning first=198 second=87 amount=-5 -kerning first=78 second=99 amount=-1 -kerning first=75 second=337 amount=-2 -kerning first=215 second=940 amount=-1 -kerning first=336 second=379 amount=-1 -kerning first=912 second=1038 amount=-2 -kerning first=95 second=953 amount=-1 -kerning first=1178 second=214 amount=-1 -kerning first=355 second=8218 amount=-1 -kerning first=956 second=226 amount=-1 -kerning first=1299 second=116 amount=-1 -kerning first=266 second=88 amount=-2 -kerning first=36 second=210 amount=-2 -kerning first=175 second=338 amount=-2 -kerning first=178 second=100 amount=-1 -kerning first=289 second=250 amount=-1 -kerning first=56 second=352 amount=-1 -kerning first=314 second=1241 amount=-1 -kerning first=317 second=187 amount=-1 -kerning first=76 second=968 amount=-1 -kerning first=239 second=1098 amount=-3 -kerning first=365 second=251 amount=-1 -kerning first=125 second=113 amount=-1 -kerning first=37 second=365 amount=-1 -kerning first=1027 second=8221 amount=-3 -kerning first=1034 second=1066 amount=-5 -kerning first=1075 second=240 amount=-1 -kerning first=203 second=212 amount=-2 -kerning first=8365 second=283 amount=-1 -kerning first=223 second=354 amount=-5 -kerning first=347 second=39 amount=-1 -kerning first=100 second=1184 amount=-5 -kerning first=103 second=366 amount=-2 -kerning first=271 second=213 amount=-2 -kerning first=35 second=8217 amount=-3 -kerning first=184 second=225 amount=-1 -kerning first=296 second=355 amount=-1 -kerning first=299 second=115 amount=-1 -kerning first=201 second=1185 amount=-3 -kerning first=204 second=367 amount=-1 -kerning first=8372 second=230 amount=-1 -kerning first=936 second=1101 amount=-1 -kerning first=101 second=8218 amount=-1 -kerning first=250 second=226 amount=-1 -kerning first=967 second=268 amount=-2 -kerning first=273 second=368 amount=-2 -kerning first=42 second=941 amount=-1 -kerning first=65 second=1241 amount=-1 -kerning first=202 second=8220 amount=-3 -kerning first=8369 second=1263 amount=-1 -kerning first=903 second=357 amount=-1 -kerning first=906 second=117 amount=-1 -kerning first=91 second=89 amount=-5 -kerning first=1118 second=269 amount=-1 -kerning first=942 second=973 amount=-1 -kerning first=971 second=216 amount=-2 -kerning first=274 second=1066 amount=-5 -kerning first=8217 second=256 amount=-3 -kerning first=1063 second=118 amount=-4 -kerning first=304 second=240 amount=-1 -kerning first=1087 second=283 amount=-1 -kerning first=209 second=943 amount=-1 -kerning first=92 second=266 amount=-2 -kerning first=912 second=67 amount=-2 -kerning first=1170 second=217 amount=-2 -kerning first=95 second=39 amount=-3 -kerning first=358 second=79 amount=-2 -kerning first=950 second=229 amount=-1 -kerning first=1224 second=119 amount=-4 -kerning first=1219 second=359 amount=-1 -kerning first=375 second=920 amount=-2 -kerning first=47 second=1119 amount=-1 -kerning first=53 second=115 amount=-1 -kerning first=50 second=355 amount=-1 -kerning first=193 second=267 amount=-1 -kerning first=1096 second=230 amount=-1 -kerning first=915 second=242 amount=-1 -kerning first=96 second=214 amount=-2 -kerning first=1168 second=947 amount=-4 -kerning first=1171 second=372 amount=-5 -kerning first=910 second=923 amount=-5 -kerning first=356 second=945 amount=-3 -kerning first=951 second=1240 amount=-2 -kerning first=948 second=1262 amount=-2 -kerning first=973 second=1069 amount=-1 -kerning first=169 second=972 amount=-1 -kerning first=172 second=281 amount=-1 -kerning first=8224 second=361 amount=-1 -kerning first=8230 second=121 amount=-1 -kerning first=77 second=227 amount=-1 -kerning first=338 second=269 amount=-1 -kerning first=237 second=973 amount=-1 -kerning first=955 second=332 amount=-2 -kerning first=1298 second=244 amount=-1 -kerning first=177 second=228 amount=-1 -kerning first=291 second=118 amount=-4 -kerning first=8260 second=71 amount=-2 -kerning first=55 second=916 amount=-5 -kerning first=58 second=240 amount=-1 -kerning first=195 second=1194 amount=-2 -kerning first=198 second=370 amount=-2 -kerning first=316 second=283 amount=-1 -kerning first=8363 second=233 amount=-1 -kerning first=75 second=1256 amount=-3 -kerning first=218 second=1044 amount=-1 -kerning first=1185 second=257 amount=-1 -kerning first=1178 second=949 amount=-1 -kerning first=367 second=119 amount=-4 -kerning first=956 second=963 amount=-1 -kerning first=121 second=920 amount=-2 -kerning first=1240 second=1026 amount=-2 -kerning first=175 second=1257 amount=-1 -kerning first=1074 second=346 amount=-1 -kerning first=322 second=230 amount=-1 -kerning first=1102 second=964 amount=-1 -kerning first=1107 second=273 amount=-1 -kerning first=222 second=923 amount=-2 -kerning first=102 second=945 amount=-1 -kerning first=965 second=219 amount=-2 -kerning first=274 second=81 amount=-2 -kerning first=1041 second=361 amount=-1 -kerning first=298 second=243 amount=-1 -kerning first=318 second=1263 amount=-1 -kerning first=8370 second=336 amount=-2 -kerning first=86 second=269 amount=-1 -kerning first=249 second=332 amount=-2 -kerning first=372 second=244 amount=-3 -kerning first=165 second=106 amount=1 -kerning first=47 second=118 amount=-4 -kerning first=184 second=962 amount=-1 -kerning first=1084 second=233 amount=-1 -kerning first=327 second=333 amount=-1 -kerning first=905 second=245 amount=-1 -kerning first=1117 second=375 amount=-1 -kerning first=113 second=119 amount=-4 -kerning first=1194 second=8211 amount=-1 -kerning first=250 second=963 amount=-1 -kerning first=253 second=271 amount=-1 -kerning first=376 second=194 amount=-5 -kerning first=973 second=84 amount=-5 -kerning first=163 second=1026 amount=-5 -kerning first=166 second=286 amount=-2 -kerning first=45 second=1046 amount=-3 -kerning first=1062 second=246 amount=-1 -kerning first=191 second=218 amount=-2 -kerning first=303 second=346 amount=-1 -kerning first=208 second=1174 amount=-3 -kerning first=328 second=964 amount=-1 -kerning first=91 second=372 amount=-5 -kerning first=88 second=947 amount=-3 -kerning first=1174 second=85 amount=-1 -kerning first=952 second=97 amount=-1 -kerning first=374 second=1108 amount=-4 -kerning first=170 second=231 amount=-1 -kerning first=277 second=1175 amount=-2 -kerning first=280 second=361 amount=-1 -kerning first=52 second=243 amount=-1 -kerning first=1066 second=196 amount=-1 -kerning first=192 second=373 amount=-4 -kerning first=304 second=1028 amount=-2 -kerning first=69 second=1263 amount=-1 -kerning first=1095 second=336 amount=-2 -kerning first=912 second=350 amount=-1 -kerning first=238 second=232 amount=-1 -kerning first=358 second=362 amount=-2 -kerning first=950 second=966 amount=-1 -kerning first=118 second=244 amount=-1 -kerning first=1262 second=197 amount=-2 -kerning first=258 second=374 amount=-5 -kerning first=289 second=71 amount=-2 -kerning first=8226 second=249 amount=-1 -kerning first=1067 second=351 amount=-1 -kerning first=314 second=233 amount=-1 -kerning first=76 second=333 amount=-1 -kerning first=923 second=290 amount=-2 -kerning first=96 second=949 amount=-1 -kerning first=356 second=8211 amount=-4 -kerning first=1263 second=352 amount=-1 -kerning first=176 second=334 amount=-2 -kerning first=172 second=1090 amount=-3 -kerning first=57 second=346 amount=-1 -kerning first=1068 second=1035 amount=-5 -kerning first=1071 second=291 amount=-1 -kerning first=197 second=950 amount=-1 -kerning first=80 second=273 amount=-1 -kerning first=8365 second=101 amount=-1 -kerning first=77 second=964 amount=-3 -kerning first=934 second=235 amount=-1 -kerning first=1184 second=365 amount=-1 -kerning first=120 second=1108 amount=-2 -kerning first=123 second=347 amount=-1 -kerning first=271 second=34 amount=-3 -kerning first=38 second=361 amount=-1 -kerning first=41 second=121 amount=-1 -kerning first=177 second=965 amount=-1 -kerning first=8240 second=1118 amount=-1 -kerning first=8260 second=354 amount=-5 -kerning first=58 second=1028 amount=-2 -kerning first=61 second=288 amount=-2 -kerning first=321 second=336 amount=-2 -kerning first=8363 second=970 amount=-1 -kerning first=8366 second=279 amount=-1 -kerning first=1178 second=8217 amount=-2 -kerning first=247 second=275 amount=-1 -kerning first=370 second=197 amount=-2 -kerning first=961 second=1076 amount=-1 -kerning first=160 second=289 amount=-1 -kerning first=967 second=87 amount=-5 -kerning first=1039 second=940 amount=-1 -kerning first=1046 second=249 amount=-1 -kerning first=185 second=221 amount=-5 -kerning first=297 second=351 amount=-1 -kerning first=300 second=111 amount=-1 -kerning first=65 second=233 amount=-1 -kerning first=205 second=363 amount=-1 -kerning first=202 second=1177 amount=-1 -kerning first=942 second=338 amount=-2 -kerning first=102 second=8211 amount=-2 -kerning first=371 second=352 amount=-1 -kerning first=374 second=112 amount=-3 -kerning first=968 second=262 amount=-2 -kerning first=164 second=234 amount=-1 -kerning first=274 second=364 amount=-2 -kerning first=1051 second=199 amount=-2 -kerning first=186 second=376 amount=-5 -kerning first=298 second=1035 amount=-5 -kerning first=301 second=291 amount=-1 -kerning first=1079 second=1098 amount=-1 -kerning first=1083 second=339 amount=-1 -kerning first=206 second=1059 amount=-2 -kerning first=203 second=8212 amount=-2 -kerning first=1087 second=101 amount=-1 -kerning first=904 second=353 amount=-1 -kerning first=86 second=1074 amount=-2 -kerning first=92 second=85 amount=-2 -kerning first=1119 second=263 amount=-1 -kerning first=271 second=8216 amount=-3 -kerning first=8218 second=252 amount=-1 -kerning first=1048 second=1118 amount=-1 -kerning first=184 second=8250 amount=-1 -kerning first=193 second=86 amount=-6 -kerning first=70 second=336 amount=-2 -kerning first=1084 second=970 amount=-1 -kerning first=1090 second=279 amount=-1 -kerning first=1171 second=213 amount=-2 -kerning first=951 second=225 amount=-1 -kerning first=1220 second=355 amount=-1 -kerning first=970 second=1185 amount=-2 -kerning first=973 second=367 amount=-1 -kerning first=169 second=337 amount=-1 -kerning first=172 second=99 amount=-1 -kerning first=282 second=249 amount=-1 -kerning first=54 second=111 amount=-1 -kerning first=51 second=351 amount=-1 -kerning first=194 second=261 amount=-1 -kerning first=191 second=953 amount=-1 -kerning first=1062 second=1038 amount=-1 -kerning first=217 second=198 amount=-2 -kerning first=1174 second=368 amount=-1 -kerning first=237 second=338 amount=-2 -kerning first=240 second=100 amount=-1 -kerning first=357 second=941 amount=-1 -kerning first=117 second=352 amount=-1 -kerning first=260 second=262 amount=-2 -kerning first=380 second=1241 amount=-1 -kerning first=971 second=8220 amount=-3 -kerning first=170 second=968 amount=-1 -kerning first=174 second=277 amount=-1 -kerning first=8225 second=357 amount=-1 -kerning first=8240 second=117 amount=-1 -kerning first=52 second=1035 amount=-5 -kerning first=55 second=291 amount=-1 -kerning first=198 second=211 amount=-2 -kerning first=313 second=339 amount=-1 -kerning first=316 second=101 amount=-1 -kerning first=221 second=113 amount=-4 -kerning first=336 second=955 amount=-2 -kerning first=1170 second=8221 amount=-3 -kerning first=1299 second=240 amount=-1 -kerning first=1262 second=916 amount=-2 -kerning first=39 second=74 amount=-4 -kerning first=1036 second=252 amount=-1 -kerning first=178 second=224 amount=-1 -kerning first=289 second=354 amount=-5 -kerning first=196 second=1184 amount=-5 -kerning first=317 second=279 amount=-1 -kerning first=314 second=970 amount=-1 -kerning first=8364 second=229 amount=-1 -kerning first=82 second=171 amount=-1 -kerning first=225 second=63 amount=-2 -kerning first=96 second=8217 amount=-3 -kerning first=365 second=355 amount=-1 -kerning first=962 second=267 amount=-1 -kerning first=40 second=249 amount=-1 -kerning first=37 second=940 amount=-1 -kerning first=8250 second=923 amount=-3 -kerning first=1071 second=1101 amount=-1 -kerning first=8365 second=1240 amount=-2 -kerning first=323 second=226 amount=-1 -kerning first=901 second=116 amount=-1 -kerning first=103 second=941 amount=-1 -kerning first=934 second=972 amount=-1 -kerning first=246 second=380 amount=-1 -kerning first=372 second=65 amount=-5 -kerning first=126 second=1241 amount=-1 -kerning first=162 second=187 amount=-1 -kerning first=263 second=8220 amount=-1 -kerning first=44 second=199 amount=-1 -kerning first=1048 second=117 amount=-1 -kerning first=180 second=1079 amount=-1 -kerning first=187 second=89 amount=-3 -kerning first=61 second=1098 amount=-3 -kerning first=64 second=339 amount=-1 -kerning first=207 second=251 amount=-1 -kerning first=8372 second=332 amount=-2 -kerning first=87 second=263 amount=-3 -kerning first=1117 second=216 amount=-2 -kerning first=944 second=228 amount=-1 -kerning first=370 second=916 amount=-2 -kerning first=373 second=240 amount=-1 -kerning first=964 second=1194 amount=-2 -kerning first=967 second=370 amount=-2 -kerning first=273 second=943 amount=-1 -kerning first=276 second=252 amount=-1 -kerning first=42 second=1118 amount=-1 -kerning first=45 second=354 amount=-4 -kerning first=1062 second=67 amount=-1 -kerning first=188 second=266 amount=-2 -kerning first=191 second=39 amount=-3 -kerning first=65 second=970 amount=-1 -kerning first=1085 second=229 amount=-1 -kerning first=903 second=920 amount=-2 -kerning first=91 second=213 amount=-2 -kerning first=1118 second=371 amount=-1 -kerning first=354 second=253 amount=-2 -kerning first=942 second=1257 amount=-1 -kerning first=114 second=115 amount=-1 -kerning first=254 second=267 amount=-1 -kerning first=8211 second=1174 amount=-3 -kerning first=46 second=1038 amount=-1 -kerning first=1063 second=242 amount=-1 -kerning first=192 second=214 amount=-2 -kerning first=301 second=1101 amount=-1 -kerning first=72 second=226 amount=-1 -kerning first=1083 second=1262 amount=-2 -kerning first=1087 second=1240 amount=-2 -kerning first=215 second=116 amount=-1 -kerning first=212 second=356 amount=-2 -kerning first=92 second=368 amount=-2 -kerning first=1119 second=1069 amount=-1 -kerning first=950 second=331 amount=-2 -kerning first=1224 second=243 amount=-1 -kerning first=193 second=369 amount=-1 -kerning first=305 second=973 amount=-1 -kerning first=70 second=1224 amount=-1 -kerning first=1096 second=332 amount=-2 -kerning first=923 second=106 amount=1 -kerning first=93 second=1066 amount=-5 -kerning first=239 second=228 amount=-1 -kerning first=951 second=962 amount=-1 -kerning first=119 second=240 amount=-1 -kerning first=256 second=1194 amount=-2 -kerning first=382 second=283 amount=-1 -kerning first=169 second=1256 amount=-2 -kerning first=200 second=79 amount=-2 -kerning first=1097 second=963 amount=-1 -kerning first=338 second=371 amount=-1 -kerning first=916 second=1026 amount=-5 -kerning first=926 second=286 amount=-2 -kerning first=100 second=253 amount=-1 -kerning first=237 second=1257 amount=-1 -kerning first=960 second=218 amount=-2 -kerning first=1298 second=346 amount=-1 -kerning first=1035 second=360 amount=-2 -kerning first=1028 second=1174 amount=-2 -kerning first=291 second=242 amount=-1 -kerning first=55 second=1101 amount=-1 -kerning first=1073 second=287 amount=-1 -kerning first=198 second=945 amount=-1 -kerning first=313 second=1262 amount=-1 -kerning first=316 second=1240 amount=-2 -kerning first=8363 second=335 amount=-1 -kerning first=8366 second=97 amount=-1 -kerning first=936 second=231 amount=-1 -kerning first=367 second=243 amount=-1 -kerning first=961 second=373 amount=-1 -kerning first=1299 second=1028 amount=-2 -kerning first=42 second=117 amount=-1 -kerning first=182 second=269 amount=-1 -kerning first=59 second=973 amount=-1 -kerning first=1078 second=232 amount=-2 -kerning first=322 second=332 amount=-2 -kerning first=8364 second=966 amount=-1 -kerning first=900 second=244 amount=-1 -kerning first=8369 second=275 amount=-1 -kerning first=1102 second=1203 amount=-2 -kerning first=228 second=106 amount=1 -kerning first=346 second=256 amount=-1 -kerning first=108 second=118 amount=-4 -kerning first=968 second=83 amount=-1 -kerning first=161 second=283 amount=-1 -kerning first=46 second=67 amount=-1 -kerning first=186 second=217 amount=-2 -kerning first=1075 second=1299 amount=-3 -kerning first=209 second=119 amount=-4 -kerning first=206 second=359 amount=-1 -kerning first=323 second=963 amount=-1 -kerning first=86 second=371 amount=-1 -kerning first=1119 second=84 amount=-5 -kerning first=940 second=1090 amount=-2 -kerning first=1206 second=246 amount=-1 -kerning first=252 second=218 amount=-2 -kerning first=372 second=346 amount=-1 -kerning first=165 second=230 amount=-1 -kerning first=1241 second=964 amount=-1 -kerning first=47 second=242 amount=-2 -kerning first=184 second=947 amount=-4 -kerning first=187 second=372 amount=-3 -kerning first=302 second=287 amount=-1 -kerning first=64 second=1262 amount=-2 -kerning first=1084 second=335 amount=-1 -kerning first=902 second=1108 amount=-1 -kerning first=905 second=347 amount=-1 -kerning first=910 second=109 amount=-3 -kerning first=93 second=81 amount=-2 -kerning first=1168 second=259 amount=-1 -kerning first=1171 second=34 amount=-3 -kerning first=350 second=1175 amount=-1 -kerning first=356 second=121 amount=-2 -kerning first=944 second=965 amount=-1 -kerning first=113 second=243 amount=-1 -kerning first=253 second=373 amount=-4 -kerning first=376 second=288 amount=-3 -kerning first=163 second=1263 amount=-1 -kerning first=8220 second=248 amount=-1 -kerning first=306 second=232 amount=-1 -kerning first=1085 second=966 amount=-1 -kerning first=1094 second=275 amount=-1 -kerning first=214 second=244 amount=-1 -kerning first=332 second=374 amount=-3 -kerning first=952 second=221 amount=-5 -kerning first=1223 second=351 amount=-1 -kerning first=260 second=83 amount=-1 -kerning first=380 second=233 amount=-1 -kerning first=971 second=1177 amount=-1 -kerning first=170 second=333 amount=-1 -kerning first=192 second=949 amount=-1 -kerning first=195 second=257 amount=-1 -kerning first=72 second=963 amount=-1 -kerning first=75 second=271 amount=-2 -kerning first=218 second=194 amount=-2 -kerning first=238 second=334 amount=-2 -kerning first=235 second=1090 amount=-1 -kerning first=361 second=246 amount=-1 -kerning first=1224 second=1035 amount=-5 -kerning first=258 second=950 amount=-1 -kerning first=1026 second=1059 amount=-2 -kerning first=175 second=273 amount=-1 -kerning first=178 second=45 amount=-2 -kerning first=8226 second=353 amount=-1 -kerning first=56 second=287 amount=-1 -kerning first=314 second=335 amount=-1 -kerning first=317 second=97 amount=-1 -kerning first=1171 second=8216 amount=-3 -kerning first=239 second=965 amount=-1 -kerning first=245 second=46 amount=-1 -kerning first=951 second=8250 amount=-1 -kerning first=1037 second=248 amount=-1 -kerning first=179 second=220 amount=-2 -kerning first=60 second=232 amount=-1 -kerning first=200 second=362 amount=-2 -kerning first=197 second=1176 amount=-1 -kerning first=315 second=966 amount=-1 -kerning first=318 second=275 amount=-1 -kerning first=8365 second=225 amount=-1 -kerning first=80 second=374 amount=-5 -kerning first=223 second=289 amount=-1 -kerning first=220 second=1033 amount=-1 -kerning first=934 second=337 amount=-1 -kerning first=1184 second=940 amount=-2 -kerning first=369 second=111 amount=-1 -kerning first=963 second=261 amount=-1 -kerning first=960 second=953 amount=-1 -kerning first=126 second=233 amount=-1 -kerning first=41 second=245 amount=-1 -kerning first=180 second=375 amount=-1 -kerning first=296 second=290 amount=-2 -kerning first=198 second=8211 amount=-2 -kerning first=1080 second=100 amount=-1 -kerning first=936 second=968 amount=-1 -kerning first=107 second=246 amount=-2 -kerning first=1202 second=199 amount=-1 -kerning first=247 second=376 amount=-5 -kerning first=367 second=1035 amount=-5 -kerning first=967 second=211 amount=-2 -kerning first=266 second=8212 amount=-1 -kerning first=1046 second=353 amount=-1 -kerning first=1049 second=113 amount=-1 -kerning first=178 second=8249 amount=-3 -kerning first=188 second=85 amount=-2 -kerning first=300 second=235 amount=-1 -kerning first=65 second=335 amount=-1 -kerning first=1078 second=969 amount=-1 -kerning first=91 second=34 amount=-3 -kerning first=88 second=259 amount=-1 -kerning first=1118 second=212 amount=-2 -kerning first=354 second=74 amount=-5 -kerning first=965 second=1184 amount=-5 -kerning first=968 second=366 amount=-2 -kerning first=164 second=336 amount=-2 -kerning first=69 second=275 amount=-1 -kerning first=1087 second=225 amount=-1 -kerning first=212 second=197 amount=-2 -kerning first=1119 second=367 amount=-1 -kerning first=1206 second=1038 amount=-1 -kerning first=255 second=261 amount=-1 -kerning first=252 second=953 amount=-1 -kerning first=966 second=8218 amount=-1 -kerning first=8218 second=356 amount=-5 -kerning first=8222 second=116 amount=-1 -kerning first=50 second=290 amount=-2 -kerning first=193 second=210 amount=-2 -kerning first=305 second=338 amount=-2 -kerning first=310 second=100 amount=-2 -kerning first=910 second=1241 amount=-4 -kerning first=915 second=187 amount=-1 -kerning first=93 second=364 amount=-2 -kerning first=1117 second=8220 amount=-3 -kerning first=236 second=277 amount=-1 -kerning first=948 second=1079 amount=-1 -kerning first=113 second=1035 amount=-5 -kerning first=376 second=1098 amount=-2 -kerning first=379 second=339 amount=-1 -kerning first=382 second=101 amount=-1 -kerning first=1027 second=251 amount=-1 -kerning first=282 second=353 amount=-1 -kerning first=287 second=113 amount=-1 -kerning first=54 second=235 amount=-1 -kerning first=194 second=365 amount=-1 -kerning first=338 second=212 amount=-2 -kerning first=91 second=8216 amount=-3 -kerning first=240 second=224 amount=-1 -kerning first=357 second=1118 amount=-1 -kerning first=955 second=266 amount=-2 -kerning first=960 second=39 amount=-3 -kerning first=260 second=366 amount=-2 -kerning first=35 second=248 amount=-1 -kerning first=177 second=171 amount=-3 -kerning first=8225 second=920 amount=-2 -kerning first=192 second=8217 amount=-3 -kerning first=1073 second=103 amount=-1 -kerning first=316 second=225 amount=-1 -kerning first=81 second=87 amount=-2 -kerning first=361 second=1038 amount=-2 -kerning first=39 second=198 amount=-3 -kerning first=1039 second=116 amount=-1 -kerning first=59 second=338 amount=-2 -kerning first=62 second=100 amount=-1 -kerning first=202 second=250 amount=-1 -kerning first=1074 second=281 amount=-1 -kerning first=337 second=8220 amount=-1 -kerning first=105 second=199 amount=-2 -kerning first=962 second=369 amount=-1 -kerning first=125 second=339 amount=-1 -kerning first=161 second=101 amount=-1 -kerning first=43 second=113 amount=-1 -kerning first=40 second=353 amount=-1 -kerning first=183 second=263 amount=-1 -kerning first=8365 second=962 amount=-1 -kerning first=901 second=240 amount=-1 -kerning first=86 second=212 amount=-2 -kerning first=1103 second=1194 amount=-2 -kerning first=229 second=102 amount=-1 -kerning first=934 second=1256 amount=-2 -kerning first=103 second=1118 amount=-1 -kerning first=1206 second=67 amount=-1 -kerning first=249 second=266 amount=-2 -kerning first=252 second=39 amount=-3 -kerning first=162 second=279 amount=-1 -kerning first=126 second=970 amount=-1 -kerning first=8212 second=119 amount=-1 -kerning first=1044 second=920 amount=-1 -kerning first=302 second=103 amount=-1 -kerning first=1076 second=1257 amount=-1 -kerning first=207 second=355 amount=-1 -kerning first=327 second=267 amount=-1 -kerning first=8378 second=218 amount=-2 -kerning first=87 second=367 amount=-2 -kerning first=1207 second=242 amount=-1 -kerning first=253 second=214 amount=-2 -kerning first=967 second=945 amount=-1 -kerning first=276 second=356 amount=-5 -kerning first=166 second=226 amount=-1 -kerning first=188 second=368 amount=-2 -kerning first=300 second=972 amount=-1 -kerning first=303 second=281 amount=-1 -kerning first=357 second=117 amount=-1 -kerning first=254 second=369 amount=-1 -kerning first=374 second=973 amount=-2 -kerning first=8221 second=244 amount=-1 -kerning first=189 second=1066 amount=-5 -kerning first=186 second=8221 amount=-3 -kerning first=1087 second=962 amount=-1 -kerning first=212 second=916 amount=-2 -kerning first=215 second=240 amount=-1 -kerning first=330 second=1194 amount=-2 -kerning first=912 second=283 amount=-1 -kerning first=95 second=252 amount=-1 -kerning first=92 second=943 amount=-1 -kerning first=235 second=382 amount=-1 -kerning first=361 second=67 amount=-2 -kerning first=1026 second=359 amount=-1 -kerning first=1033 second=119 amount=-1 -kerning first=56 second=103 amount=-1 -kerning first=1064 second=1026 amount=-5 -kerning first=1067 second=286 amount=-2 -kerning first=196 second=253 amount=-1 -kerning first=305 second=1257 amount=-1 -kerning first=76 second=267 amount=-1 -kerning first=1099 second=218 amount=-2 -kerning first=923 second=230 amount=-1 -kerning first=1176 second=360 amount=-2 -kerning first=951 second=947 amount=-4 -kerning first=1263 second=287 amount=-1 -kerning first=37 second=116 amount=-1 -kerning first=176 second=268 amount=-2 -kerning first=8224 second=1108 amount=-1 -kerning first=54 second=972 amount=-1 -kerning first=57 second=281 amount=-1 -kerning first=1071 second=231 amount=-1 -kerning first=916 second=1263 amount=-1 -kerning first=103 second=117 amount=-1 -kerning first=100 second=357 amount=-1 -kerning first=180 second=216 amount=-2 -kerning first=8260 second=289 amount=-1 -kerning first=296 second=106 amount=1 -kerning first=61 second=228 amount=-1 -kerning first=1069 second=1298 amount=-1 -kerning first=204 second=118 amount=-4 -kerning first=316 second=962 amount=-1 -kerning first=8366 second=221 amount=-5 -kerning first=78 second=1194 amount=-2 -kerning first=221 second=974 amount=-4 -kerning first=936 second=333 amount=-1 -kerning first=247 second=217 amount=-2 -kerning first=964 second=257 amount=-1 -kerning first=160 second=229 amount=-1 -kerning first=273 second=119 amount=-4 -kerning first=178 second=1195 amount=-1 -kerning first=182 second=371 amount=-1 -kerning first=294 second=1026 amount=-5 -kerning first=297 second=286 amount=-2 -kerning first=59 second=1257 amount=-1 -kerning first=1074 second=1090 amount=-3 -kerning first=325 second=218 amount=-2 -kerning first=8369 second=376 amount=-5 -kerning first=900 second=346 amount=-1 -kerning first=942 second=273 amount=-1 -kerning first=108 second=242 amount=-1 -kerning first=351 second=120 amount=-1 -kerning first=245 second=947 amount=-1 -kerning first=371 second=287 amount=-1 -kerning first=125 second=1262 amount=-2 -kerning first=161 second=1240 amount=-2 -kerning first=1041 second=1108 amount=-1 -kerning first=183 second=1069 amount=-1 -kerning first=189 second=81 amount=-2 -kerning first=301 second=231 amount=-1 -kerning first=209 second=243 amount=-1 -kerning first=326 second=373 amount=-1 -kerning first=8365 second=8250 amount=-1 -kerning first=901 second=1028 amount=-2 -kerning first=904 second=288 amount=-2 -kerning first=946 second=220 amount=-2 -kerning first=375 second=232 amount=-1 -kerning first=972 second=122 amount=-1 -kerning first=165 second=332 amount=-2 -kerning first=278 second=244 amount=-1 -kerning first=1241 second=1203 amount=-2 -kerning first=50 second=106 amount=1 -kerning first=213 second=193 amount=-2 -kerning first=8378 second=953 amount=-1 -kerning first=910 second=233 amount=-4 -kerning first=1117 second=1177 amount=-1 -kerning first=1168 second=363 amount=-1 -kerning first=356 second=245 amount=-3 -kerning first=948 second=375 amount=-1 -kerning first=113 second=345 amount=2 -kerning first=1220 second=290 amount=-2 -kerning first=253 second=949 amount=-1 -kerning first=256 second=257 amount=-1 -kerning first=967 second=8211 amount=-2 -kerning first=166 second=963 amount=-1 -kerning first=169 second=271 amount=-1 -kerning first=48 second=1026 amount=-5 -kerning first=51 second=286 amount=-2 -kerning first=1065 second=234 amount=-1 -kerning first=303 second=1090 amount=-3 -kerning first=306 second=334 amount=-2 -kerning first=74 second=218 amount=-2 -kerning first=214 second=346 amount=-1 -kerning first=94 second=360 amount=-2 -kerning first=1118 second=8212 amount=-2 -kerning first=237 second=273 amount=-1 -kerning first=240 second=45 amount=-2 -kerning first=234 second=964 amount=-1 -kerning first=955 second=85 amount=-2 -kerning first=117 second=287 amount=-1 -kerning first=380 second=335 amount=-1 -kerning first=174 second=219 amount=-2 -kerning first=280 second=1108 amount=-1 -kerning first=55 second=231 amount=-1 -kerning first=195 second=361 amount=-1 -kerning first=198 second=121 amount=-1 -kerning first=75 second=373 amount=-3 -kerning first=1087 second=8250 amount=-1 -kerning first=215 second=1028 amount=-2 -kerning first=1178 second=248 amount=-1 -kerning first=361 second=350 amount=-1 -kerning first=121 second=232 amount=-1 -kerning first=258 second=1176 amount=-1 -kerning first=381 second=966 amount=-1 -kerning first=36 second=244 amount=-1 -kerning first=175 second=374 amount=-5 -kerning first=171 second=1203 amount=-1 -kerning first=289 second=289 amount=-1 -kerning first=1074 second=99 amount=-1 -kerning first=202 second=71 amount=-2 -kerning first=317 second=221 amount=-5 -kerning first=1099 second=953 amount=-1 -kerning first=102 second=245 amount=-1 -kerning first=365 second=290 amount=-2 -kerning first=962 second=210 amount=-2 -kerning first=262 second=1051 amount=-1 -kerning first=1037 second=352 amount=-1 -kerning first=183 second=84 amount=-5 -kerning first=57 second=1090 amount=-3 -kerning first=60 second=334 amount=-2 -kerning first=1071 second=968 amount=-1 -kerning first=203 second=246 amount=-1 -kerning first=1075 second=277 amount=-1 -kerning first=318 second=376 amount=-5 -kerning first=8370 second=89 amount=-5 -kerning first=80 second=950 amount=-1 -kerning first=83 second=258 amount=-1 -kerning first=338 second=8212 amount=-2 -kerning first=240 second=8249 amount=-3 -kerning first=947 second=113 amount=-1 -kerning first=249 second=85 amount=-2 -kerning first=369 second=235 amount=-1 -kerning first=963 second=365 amount=-1 -kerning first=126 second=335 amount=-1 -kerning first=162 second=97 amount=-1 -kerning first=38 second=1108 amount=-1 -kerning first=41 second=347 amount=-1 -kerning first=184 second=259 amount=-1 -kerning first=61 second=965 amount=-1 -kerning first=1080 second=224 amount=-1 -kerning first=67 second=46 amount=-1 -kerning first=316 second=8250 amount=-1 -kerning first=8372 second=266 amount=-2 -kerning first=8378 second=39 amount=-3 -kerning first=944 second=171 amount=-3 -kerning first=961 second=8217 amount=-1 -kerning first=160 second=966 amount=-1 -kerning first=163 second=275 amount=-1 -kerning first=8216 second=115 amount=-1 -kerning first=300 second=337 amount=-1 -kerning first=303 second=99 amount=-1 -kerning first=68 second=221 amount=-3 -kerning first=325 second=953 amount=-1 -kerning first=88 second=363 amount=-1 -kerning first=1107 second=8218 amount=-3 -kerning first=354 second=198 amount=-6 -kerning first=254 second=210 amount=-2 -kerning first=374 second=338 amount=-3 -kerning first=377 second=100 amount=-1 -kerning first=971 second=250 amount=-1 -kerning first=968 second=941 amount=-1 -kerning first=8221 second=65 amount=-3 -kerning first=49 second=234 amount=-1 -kerning first=1051 second=1241 amount=-1 -kerning first=1063 second=187 amount=-1 -kerning first=189 second=364 amount=-2 -kerning first=301 second=968 amount=-1 -kerning first=304 second=277 amount=-1 -kerning first=69 second=376 amount=-5 -kerning first=1083 second=1079 amount=-1 -kerning first=209 second=1035 amount=-5 -kerning first=1095 second=89 amount=-5 -kerning first=904 second=1098 amount=-3 -kerning first=86 second=8212 amount=-2 -kerning first=912 second=101 amount=-1 -kerning first=1170 second=251 amount=-1 -kerning first=358 second=113 amount=-1 -kerning first=950 second=263 amount=-1 -kerning first=255 second=365 amount=-1 -kerning first=196 second=74 amount=-1 -kerning first=310 second=224 amount=-1 -kerning first=70 second=1075 amount=-1 -kerning first=76 second=86 amount=-5 -kerning first=1096 second=266 amount=-2 -kerning first=1099 second=39 amount=-3 -kerning first=915 second=279 amount=-1 -kerning first=910 second=970 amount=-2 -kerning first=96 second=248 amount=-1 -kerning first=239 second=171 amount=-3 -kerning first=253 second=8217 amount=-3 -kerning first=256 second=1063 amount=-3 -kerning first=1263 second=103 amount=-1 -kerning first=34 second=197 amount=-3 -kerning first=1027 second=355 amount=-1 -kerning first=176 second=87 amount=-5 -kerning first=54 second=337 amount=-1 -kerning first=57 second=99 amount=-1 -kerning first=194 second=940 amount=-1 -kerning first=197 second=249 amount=-1 -kerning first=74 second=953 amount=-1 -kerning first=77 second=261 amount=-1 -kerning first=332 second=8218 amount=-1 -kerning first=926 second=226 amount=-1 -kerning first=1184 second=116 amount=-1 -kerning first=955 second=368 amount=-2 -kerning first=123 second=100 amount=-1 -kerning first=1298 second=281 amount=-1 -kerning first=260 second=941 amount=-1 -kerning first=35 second=352 amount=-1 -kerning first=1038 second=65 amount=-2 -kerning first=177 second=262 amount=-2 -kerning first=291 second=187 amount=-1 -kerning first=55 second=968 amount=-1 -kerning first=58 second=277 amount=-1 -kerning first=1073 second=227 amount=-1 -kerning first=201 second=199 amount=-2 -kerning first=321 second=89 amount=-5 -kerning first=8363 second=269 amount=-1 -kerning first=221 second=339 amount=-4 -kerning first=956 second=1066 amount=-5 -kerning first=1039 second=240 amount=-1 -kerning first=182 second=212 amount=-2 -kerning first=62 second=224 amount=-1 -kerning first=202 second=354 amount=-5 -kerning first=322 second=266 amount=-2 -kerning first=325 second=39 amount=-3 -kerning first=8369 second=217 amount=-2 -kerning first=79 second=1184 amount=-2 -kerning first=1186 second=920 amount=-1 -kerning first=371 second=103 amount=-1 -kerning first=965 second=253 amount=-1 -kerning first=161 second=225 amount=-1 -kerning first=274 second=115 amount=-1 -kerning first=179 second=1185 amount=-3 -kerning first=183 second=367 amount=-1 -kerning first=1075 second=1083 amount=-3 -kerning first=203 second=1038 amount=-2 -kerning first=8365 second=947 amount=-4 -kerning first=8370 second=372 amount=-5 -kerning first=80 second=8218 amount=-4 -kerning first=249 second=368 amount=-2 -kerning first=369 second=972 amount=-1 -kerning first=372 second=281 amount=-3 -kerning first=47 second=187 amount=-1 -kerning first=180 second=8220 amount=-3 -kerning first=302 second=227 amount=-1 -kerning first=70 second=89 amount=-5 -kerning first=64 second=1079 amount=-1 -kerning first=1084 second=269 amount=-1 -kerning first=327 second=369 amount=-1 -kerning first=902 second=973 amount=-1 -kerning first=87 second=942 amount=-2 -kerning first=948 second=216 amount=-2 -kerning first=250 second=1066 amount=-5 -kerning first=247 second=8221 amount=-3 -kerning first=1220 second=106 amount=1 -kerning first=376 second=228 amount=-4 -kerning first=973 second=118 amount=-4 -kerning first=8220 second=193 amount=-3 -kerning first=1062 second=283 amount=-1 -kerning first=188 second=943 amount=-1 -kerning first=191 second=252 amount=-1 -kerning first=300 second=1256 amount=-2 -kerning first=74 second=39 amount=-3 -kerning first=1174 second=119 amount=-2 -kerning first=354 second=920 amount=-1 -kerning first=117 second=103 amount=-1 -kerning first=1210 second=1026 amount=-5 -kerning first=1223 second=286 amount=-2 -kerning first=374 second=1257 amount=-4 -kerning first=170 second=267 amount=-1 -kerning first=55 second=52 amount=-4 -kerning first=1087 second=947 amount=-4 -kerning first=1095 second=372 amount=-5 -kerning first=75 second=214 amount=-3 -kerning first=912 second=1240 amount=-2 -kerning first=95 second=356 amount=-5 -kerning first=238 second=268 amount=-2 -kerning first=950 second=1069 amount=-1 -kerning first=956 second=81 amount=-2 -kerning first=118 second=281 amount=-1 -kerning first=8226 second=288 amount=-2 -kerning first=8222 second=1028 amount=-1 -kerning first=56 second=227 amount=-1 -kerning first=1064 second=1263 amount=-1 -kerning first=196 second=357 amount=-1 -kerning first=314 second=269 amount=-1 -kerning first=8361 second=220 amount=-2 -kerning first=76 second=369 amount=-1 -kerning first=923 second=332 amount=-2 -kerning first=1179 second=244 amount=-1 -kerning first=365 second=106 amount=1 -kerning first=1256 second=1298 amount=-1 -kerning first=267 second=118 amount=-1 -kerning first=382 second=962 amount=-1 -kerning first=37 second=240 amount=-1 -kerning first=34 second=916 amount=-3 -kerning first=172 second=1194 amount=-2 -kerning first=176 second=370 amount=-2 -kerning first=54 second=1256 amount=-2 -kerning first=1071 second=333 amount=-1 -kerning first=203 second=67 amount=-2 -kerning first=318 second=217 amount=-2 -kerning first=74 second=8222 amount=-1 -kerning first=1103 second=257 amount=-1 -kerning first=223 second=229 amount=-1 -kerning first=926 second=963 amount=-1 -kerning first=934 second=271 amount=-1 -kerning first=100 second=920 amount=-2 -kerning first=240 second=1195 amount=-1 -kerning first=363 second=1026 amount=-5 -kerning first=120 second=1257 amount=-2 -kerning first=1298 second=1090 amount=-3 -kerning first=296 second=230 amount=-1 -kerning first=1073 second=964 amount=-3 -kerning first=1080 second=45 amount=-2 -kerning first=204 second=242 amount=-1 -kerning first=1076 second=273 amount=-1 -kerning first=316 second=947 amount=-4 -kerning first=321 second=372 amount=-5 -kerning first=8372 second=85 amount=-2 -kerning first=1185 second=1108 amount=-2 -kerning first=250 second=81 amount=-2 -kerning first=961 second=1175 amount=-2 -kerning first=964 second=361 amount=-1 -kerning first=967 second=121 amount=-1 -kerning first=273 second=243 amount=-1 -kerning first=1039 second=1028 amount=-2 -kerning first=1046 second=288 amount=-3 -kerning first=294 second=1263 amount=-1 -kerning first=65 second=269 amount=-1 -kerning first=1081 second=220 amount=-2 -kerning first=903 second=232 amount=-1 -kerning first=942 second=374 amount=-5 -kerning first=368 second=1298 amount=-1 -kerning first=971 second=71 amount=-2 -kerning first=161 second=962 amount=-1 -kerning first=8217 second=111 amount=-1 -kerning first=1051 second=233 amount=-1 -kerning first=301 second=333 amount=-1 -kerning first=69 second=217 amount=-2 -kerning first=1083 second=375 amount=-1 -kerning first=330 second=257 amount=-1 -kerning first=92 second=119 amount=-4 -kerning first=235 second=44 amount=-1 -kerning first=950 second=84 amount=-5 -kerning first=1219 second=234 amount=-1 -kerning first=375 second=334 amount=-2 -kerning first=168 second=218 amount=-2 -kerning first=278 second=346 amount=-1 -kerning first=8212 second=1035 amount=-4 -kerning first=8218 second=291 amount=-1 -kerning first=50 second=230 amount=-1 -kerning first=187 second=1174 amount=-3 -kerning first=190 second=360 amount=-2 -kerning first=305 second=273 amount=-1 -kerning first=302 second=964 amount=-3 -kerning first=310 second=45 amount=-4 -kerning first=70 second=372 amount=-5 -kerning first=1080 second=8249 amount=-3 -kerning first=1096 second=85 amount=-2 -kerning first=910 second=335 amount=-4 -kerning first=915 second=97 amount=-1 -kerning first=236 second=219 amount=-2 -kerning first=356 second=347 amount=-3 -kerning first=951 second=259 amount=-1 -kerning first=256 second=361 amount=-1 -kerning first=376 second=965 amount=-2 -kerning first=169 second=373 amount=-4 -kerning first=282 second=288 amount=-2 -kerning first=48 second=1263 amount=-1 -kerning first=1065 second=336 amount=-1 -kerning first=916 second=275 amount=-1 -kerning first=234 second=1203 amount=-2 -kerning first=237 second=374 amount=-5 -kerning first=1298 second=99 amount=-1 -kerning first=1035 second=111 amount=-1 -kerning first=177 second=83 amount=-1 -kerning first=55 second=333 amount=-1 -kerning first=198 second=245 amount=-1 -kerning first=313 second=375 amount=-1 -kerning first=78 second=257 amount=-1 -kerning first=75 second=949 amount=-2 -kerning first=336 second=1051 amount=-1 -kerning first=956 second=364 amount=-2 -kerning first=121 second=334 amount=-2 -kerning first=1299 second=277 amount=-1 -kerning first=1240 second=376 amount=-3 -kerning first=36 second=346 amount=-1 -kerning first=1036 second=291 amount=-1 -kerning first=1033 second=1035 amount=-5 -kerning first=8226 second=1098 amount=-3 -kerning first=59 second=273 amount=-1 -kerning first=62 second=45 amount=-2 -kerning first=56 second=964 amount=-3 -kerning first=310 second=8249 amount=-3 -kerning first=322 second=85 amount=-2 -kerning first=8364 second=263 amount=-1 -kerning first=102 second=347 amount=-1 -kerning first=248 second=34 amount=-1 -kerning first=270 second=196 amount=-2 -kerning first=37 second=1028 amount=-2 -kerning first=40 second=288 amount=-2 -kerning first=63 second=220 amount=-2 -kerning first=203 second=350 amount=-1 -kerning first=8370 second=213 amount=-2 -kerning first=80 second=1176 amount=-1 -kerning first=86 second=122 amount=-2 -kerning first=223 second=966 amount=-1 -kerning first=369 second=337 amount=-1 -kerning first=372 second=99 amount=-3 -kerning first=963 second=940 amount=-1 -kerning first=162 second=221 amount=-5 -kerning first=271 second=351 amount=-1 -kerning first=184 second=363 amount=-1 -kerning first=180 second=1177 amount=-1 -kerning first=64 second=375 amount=-1 -kerning first=207 second=290 amount=-2 -kerning first=327 second=210 amount=-2 -kerning first=8372 second=368 amount=-2 -kerning first=902 second=338 amount=-2 -kerning first=905 second=100 amount=-1 -kerning first=84 second=1051 amount=-4 -kerning first=1117 second=250 amount=-1 -kerning first=944 second=262 amount=-2 -kerning first=1202 second=1241 amount=-1 -kerning first=250 second=364 amount=-2 -kerning first=373 second=277 amount=-1 -kerning first=163 second=376 amount=-5 -kerning first=273 second=1035 amount=-5 -kerning first=276 second=291 amount=-1 -kerning first=1049 second=339 amount=-1 -kerning first=182 second=8212 amount=-2 -kerning first=185 second=1059 amount=-2 -kerning first=1046 second=1098 amount=-3 -kerning first=1062 second=101 amount=-1 -kerning first=62 second=8249 amount=-3 -kerning first=1085 second=263 amount=-1 -kerning first=8369 second=8221 amount=-3 -kerning first=248 second=8216 amount=-1 -kerning first=971 second=354 amount=-5 -kerning first=968 second=1118 amount=-1 -kerning first=161 second=8250 amount=-1 -kerning first=49 second=336 amount=-2 -kerning first=1063 second=279 amount=-1 -kerning first=192 second=248 amount=-1 -kerning first=1051 second=970 amount=-1 -kerning first=1095 second=213 amount=-2 -kerning first=326 second=8217 amount=-1 -kerning first=912 second=225 amount=-1 -kerning first=1170 second=355 amount=-1 -kerning first=232 second=1076 amount=-1 -kerning first=238 second=87 amount=-5 -kerning first=950 second=367 amount=-1 -kerning first=946 second=1185 amount=-3 -kerning first=118 second=99 amount=-1 -kerning first=258 second=249 amount=-1 -kerning first=255 second=940 amount=-1 -kerning first=168 second=953 amount=-1 -kerning first=1067 second=226 amount=-1 -kerning first=76 second=210 amount=-1 -kerning first=1096 second=368 amount=-2 -kerning first=96 second=352 amount=-1 -kerning first=239 second=262 amount=-2 -kerning first=948 second=8220 amount=-3 -kerning first=119 second=277 amount=-1 -kerning first=1263 second=227 amount=-1 -kerning first=34 second=291 amount=-1 -kerning first=176 second=211 amount=-2 -kerning first=282 second=1098 amount=-3 -kerning first=287 second=339 amount=-1 -kerning first=8224 second=973 amount=-1 -kerning first=197 second=353 amount=-1 -kerning first=200 second=113 amount=-1 -kerning first=315 second=263 amount=-1 -kerning first=77 second=365 amount=-1 -kerning first=1184 second=240 amount=-2 -kerning first=955 second=943 amount=-1 -kerning first=960 second=252 amount=-1 -kerning first=123 second=224 amount=-1 -kerning first=260 second=1118 amount=-1 -kerning first=174 second=1184 amount=-5 -kerning first=177 second=366 amount=-2 -kerning first=291 second=279 amount=-1 -kerning first=8260 second=229 amount=-1 -kerning first=61 second=171 amount=-3 -kerning first=321 second=213 amount=-2 -kerning first=8363 second=371 amount=-1 -kerning first=345 second=115 amount=-1 -kerning first=936 second=267 amount=-1 -kerning first=241 second=1185 amount=-1 -kerning first=1036 second=1101 amount=-1 -kerning first=297 second=226 amount=-1 -kerning first=322 second=368 amount=-2 -kerning first=8364 second=1069 amount=-1 -kerning first=900 second=281 amount=-1 -kerning first=105 second=1241 amount=-1 -kerning first=108 second=187 amount=-1 -kerning first=242 second=8220 amount=-1 -kerning first=371 second=227 amount=-1 -kerning first=965 second=357 amount=-1 -kerning first=968 second=117 amount=-1 -kerning first=125 second=1079 amount=-1 -kerning first=164 second=89 amount=-5 -kerning first=40 second=1098 amount=-3 -kerning first=43 second=339 amount=-1 -kerning first=1041 second=973 amount=-1 -kerning first=186 second=251 amount=-1 -kerning first=1083 second=216 amount=-2 -kerning first=318 second=8221 amount=-3 -kerning first=323 second=1066 amount=-5 -kerning first=904 second=228 amount=-1 -kerning first=1119 second=118 amount=-4 -kerning first=112 second=102 amount=-1 -kerning first=947 second=974 amount=-1 -kerning first=249 second=943 amount=-1 -kerning first=252 second=252 amount=-1 -kerning first=1206 second=283 amount=-1 -kerning first=369 second=1256 amount=-2 -kerning first=372 second=382 amount=-1 -kerning first=165 second=266 amount=-2 -kerning first=168 second=39 amount=-3 -kerning first=47 second=279 amount=-1 -kerning first=70 second=213 amount=-1 -kerning first=1084 second=371 amount=-1 -kerning first=1080 second=1195 amount=-1 -kerning first=902 second=1257 amount=-1 -kerning first=87 second=1119 amount=-2 -kerning first=93 second=115 amount=-1 -kerning first=1220 second=230 amount=-1 -kerning first=973 second=242 amount=-1 -kerning first=169 second=214 amount=-2 -kerning first=276 second=1101 amount=-1 -kerning first=8220 second=287 amount=-1 -kerning first=51 second=226 amount=-1 -kerning first=1049 second=1262 amount=-2 -kerning first=1062 second=1240 amount=-1 -kerning first=191 second=356 amount=-5 -kerning first=194 second=116 amount=-1 -kerning first=306 second=268 amount=-2 -kerning first=1085 second=1069 amount=-1 -kerning first=214 second=281 amount=-1 -kerning first=1174 second=243 amount=-1 -kerning first=354 second=1102 amount=-2 -kerning first=117 second=227 amount=-1 -kerning first=1210 second=1263 amount=-1 -kerning first=260 second=117 amount=-1 -kerning first=380 second=269 amount=-1 -kerning first=170 second=369 amount=-1 -kerning first=280 second=973 amount=-1 -kerning first=8225 second=232 amount=-1 -kerning first=313 second=216 amount=-1 -kerning first=69 second=8221 amount=-3 -kerning first=72 second=1066 amount=-5 -kerning first=339 second=118 amount=-1 -kerning first=912 second=962 amount=-1 -kerning first=238 second=370 amount=-2 -kerning first=361 second=283 amount=-1 -kerning first=178 second=79 amount=-2 -kerning first=289 second=229 amount=-1 -kerning first=1067 second=963 amount=-1 -kerning first=196 second=920 amount=-2 -kerning first=314 second=371 amount=-1 -kerning first=310 second=1195 amount=-2 -kerning first=8364 second=84 amount=-5 -kerning first=931 second=218 amount=-2 -kerning first=365 second=230 amount=-1 -kerning first=958 second=360 amount=-2 -kerning first=1263 second=964 amount=-3 -kerning first=262 second=923 amount=-1 -kerning first=1037 second=287 amount=-1 -kerning first=176 second=945 amount=-1 -kerning first=287 second=1262 amount=-2 -kerning first=60 second=268 amount=-2 -kerning first=323 second=81 amount=-2 -kerning first=8370 second=34 amount=-3 -kerning first=8365 second=259 amount=-1 -kerning first=1100 second=1175 amount=-2 -kerning first=1103 second=361 amount=-1 -kerning first=934 second=373 amount=-4 -kerning first=1184 second=1028 amount=-3 -kerning first=363 second=1263 amount=-1 -kerning first=126 second=269 amount=-1 -kerning first=38 second=973 amount=-1 -kerning first=44 second=54 amount=-1 -kerning first=1044 second=232 amount=-1 -kerning first=296 second=332 amount=-2 -kerning first=8260 second=966 amount=-1 -kerning first=64 second=216 amount=-2 -kerning first=1073 second=1203 amount=-2 -kerning first=207 second=106 amount=1 -kerning first=87 second=118 amount=-1 -kerning first=1117 second=71 amount=-2 -kerning first=350 second=193 amount=-1 -kerning first=944 second=83 amount=-1 -kerning first=107 second=283 amount=-2 -kerning first=1202 second=233 amount=-1 -kerning first=967 second=245 amount=-1 -kerning first=163 second=217 amount=-2 -kerning first=188 second=119 amount=-4 -kerning first=185 second=359 amount=-1 -kerning first=297 second=963 amount=-1 -kerning first=300 second=271 amount=-1 -kerning first=62 second=1195 amount=-1 -kerning first=65 second=371 amount=-1 -kerning first=1078 second=1073 amount=-1 -kerning first=1085 second=84 amount=-5 -kerning first=205 second=1026 amount=-5 -kerning first=903 second=334 amount=-2 -kerning first=900 second=1090 amount=-3 -kerning first=1118 second=246 amount=-1 -kerning first=251 second=360 amount=-2 -kerning first=371 second=964 amount=-3 -kerning first=374 second=273 amount=-4 -kerning first=377 second=45 amount=-3 -kerning first=161 second=947 amount=-4 -kerning first=164 second=372 amount=-5 -kerning first=8217 second=235 amount=-1 -kerning first=43 second=1262 amount=-2 -kerning first=46 second=1240 amount=-1 -kerning first=1051 second=335 amount=-1 -kerning first=1063 second=97 amount=-1 -kerning first=304 second=219 amount=-2 -kerning first=72 second=81 amount=-2 -kerning first=1095 second=34 amount=-3 -kerning first=1087 second=259 amount=-1 -kerning first=330 second=361 amount=-1 -kerning first=8370 second=8216 amount=-3 -kerning first=904 second=965 amount=-1 -kerning first=92 second=243 amount=-1 -kerning first=232 second=373 amount=-1 -kerning first=1219 second=336 amount=-2 -kerning first=47 second=1085 amount=-1 -kerning first=50 second=332 amount=-2 -kerning first=1064 second=275 amount=-1 -kerning first=193 second=244 amount=-1 -kerning first=305 second=374 amount=-5 -kerning first=210 second=1298 amount=-1 -kerning first=915 second=221 amount=-5 -kerning first=1176 second=111 amount=-1 -kerning first=1171 second=351 amount=-1 -kerning first=239 second=83 amount=-1 -kerning first=230 second=8230 amount=-1 -kerning first=951 second=363 amount=-1 -kerning first=948 second=1177 amount=-1 -kerning first=113 second=1087 amount=2 -kerning first=1027 second=290 amount=-2 -kerning first=169 second=949 amount=-1 -kerning first=172 second=257 amount=-1 -kerning first=279 second=1299 amount=-1 -kerning first=8224 second=338 amount=-2 -kerning first=51 second=963 amount=-1 -kerning first=57 second=44 amount=-1 -kerning first=54 second=271 amount=-1 -kerning first=315 second=84 amount=-6 -kerning first=214 second=1090 amount=-3 -kerning first=338 second=246 amount=-1 -kerning first=916 second=376 amount=-5 -kerning first=1174 second=1035 amount=-2 -kerning first=952 second=1059 amount=-2 -kerning first=117 second=964 amount=-3 -kerning first=123 second=45 amount=-2 -kerning first=120 second=273 amount=-2 -kerning first=35 second=287 amount=-1 -kerning first=1035 second=235 amount=-1 -kerning first=291 second=97 amount=-1 -kerning first=58 second=219 amount=-2 -kerning first=1069 second=377 amount=-1 -kerning first=195 second=1108 amount=-1 -kerning first=198 second=347 amount=-1 -kerning first=321 second=34 amount=-3 -kerning first=316 second=259 amount=-1 -kerning first=8363 second=212 amount=-2 -kerning first=78 second=361 amount=-1 -kerning first=1095 second=8216 amount=-3 -kerning first=912 second=8250 amount=-1 -kerning first=124 second=220 amount=-2 -kerning first=39 second=232 amount=-1 -kerning first=175 second=1176 amount=-1 -kerning first=178 second=362 amount=-2 -kerning first=289 second=966 amount=-1 -kerning first=294 second=275 amount=-1 -kerning first=59 second=374 amount=-5 -kerning first=199 second=1033 amount=-1 -kerning first=202 second=289 amount=-1 -kerning first=8364 second=367 amount=-1 -kerning first=8361 second=1185 amount=-3 -kerning first=900 second=99 amount=-1 -kerning first=343 second=351 amount=-1 -kerning first=931 second=953 amount=-1 -kerning first=105 second=233 amount=-1 -kerning first=125 second=375 amount=-1 -kerning first=1041 second=338 amount=-2 -kerning first=176 second=8211 amount=-2 -kerning first=66 second=84 amount=-1 -kerning first=206 second=234 amount=-1 -kerning first=323 second=364 amount=-2 -kerning first=86 second=246 amount=-3 -kerning first=901 second=277 amount=-1 -kerning first=1187 second=1098 amount=-2 -kerning first=947 second=339 amount=-1 -kerning first=1206 second=101 amount=-1 -kerning first=123 second=8249 amount=-3 -kerning first=165 second=85 amount=-2 -kerning first=47 second=97 amount=-2 -kerning first=70 second=34 amount=-3 -kerning first=1084 second=212 amount=-2 -kerning first=321 second=8216 amount=-3 -kerning first=8372 second=943 amount=-1 -kerning first=8378 second=252 amount=-1 -kerning first=905 second=224 amount=-1 -kerning first=1117 second=354 amount=-5 -kerning first=944 second=366 amount=-2 -kerning first=1207 second=279 amount=-1 -kerning first=253 second=248 amount=-1 -kerning first=376 second=171 amount=-3 -kerning first=8220 second=103 amount=-1 -kerning first=48 second=275 amount=-1 -kerning first=306 second=87 amount=-5 -kerning first=1085 second=367 amount=-1 -kerning first=1081 second=1185 amount=-3 -kerning first=214 second=99 amount=-1 -kerning first=91 second=351 amount=-1 -kerning first=94 second=111 amount=-1 -kerning first=1118 second=1038 amount=-2 -kerning first=111 second=967 amount=-2 -kerning first=1223 second=226 amount=-1 -kerning first=374 second=1078 amount=-2 -kerning first=170 second=210 amount=-2 -kerning first=280 second=338 amount=-2 -kerning first=8217 second=972 amount=-1 -kerning first=8221 second=281 amount=-1 -kerning first=192 second=352 amount=-1 -kerning first=72 second=364 amount=-2 -kerning first=1083 second=8220 amount=-3 -kerning first=215 second=277 amount=-1 -kerning first=920 second=89 amount=-3 -kerning first=92 second=1035 amount=-5 -kerning first=95 second=291 amount=-1 -kerning first=238 second=211 amount=-2 -kerning first=358 second=339 amount=-1 -kerning first=950 second=942 amount=-2 -kerning first=361 second=101 amount=-1 -kerning first=258 second=353 amount=-1 -kerning first=381 second=263 amount=-1 -kerning first=8226 second=228 amount=-1 -kerning first=1070 second=90 amount=-1 -kerning first=314 second=212 amount=-2 -kerning first=70 second=8216 amount=-3 -kerning first=1099 second=252 amount=-1 -kerning first=1096 second=943 amount=-1 -kerning first=923 second=266 amount=-2 -kerning first=931 second=39 amount=-3 -kerning first=236 second=1184 amount=-5 -kerning first=239 second=366 amount=-2 -kerning first=267 second=63 amount=-1 -kerning first=169 second=8217 amount=-3 -kerning first=1037 second=103 amount=-1 -kerning first=8224 second=1257 amount=-1 -kerning first=60 second=87 amount=-5 -kerning first=1071 second=267 amount=-1 -kerning first=315 second=367 amount=-1 -kerning first=77 second=940 amount=-1 -kerning first=80 second=249 amount=-1 -kerning first=338 second=1038 amount=-2 -kerning first=934 second=214 amount=-2 -kerning first=960 second=356 amount=-5 -kerning first=963 second=116 amount=-1 -kerning first=38 second=338 amount=-2 -kerning first=41 second=100 amount=-1 -kerning first=1035 second=972 amount=-1 -kerning first=180 second=250 amount=-1 -kerning first=177 second=941 amount=-1 -kerning first=61 second=262 amount=-2 -kerning first=201 second=1241 amount=-1 -kerning first=204 second=187 amount=-1 -kerning first=313 second=8220 amount=-3 -kerning first=84 second=199 amount=-1 -kerning first=221 second=1079 amount=-4 -kerning first=936 second=369 amount=-1 -kerning first=101 second=1098 amount=-1 -kerning first=107 second=101 amount=-2 -kerning first=247 second=251 amount=-1 -kerning first=160 second=263 amount=-1 -kerning first=45 second=50 amount=-2 -kerning first=1046 second=228 amount=-1 -kerning first=65 second=212 amount=-2 -kerning first=1074 second=1194 amount=-2 -kerning first=325 second=252 amount=-1 -kerning first=322 second=943 amount=-1 -kerning first=1118 second=67 amount=-2 -kerning first=231 second=39 amount=-1 -kerning first=105 second=970 amount=-1 -kerning first=108 second=279 amount=-1 -kerning first=965 second=920 amount=-2 -kerning first=164 second=213 amount=-2 -kerning first=8217 second=56 amount=-1 -kerning first=1041 second=1257 amount=-1 -kerning first=186 second=355 amount=-1 -kerning first=189 second=115 amount=-1 -kerning first=301 second=267 amount=-1 -kerning first=63 second=1185 amount=-3 -kerning first=8377 second=360 amount=-2 -kerning first=86 second=1038 amount=-2 -kerning first=1119 second=242 amount=-1 -kerning first=1206 second=1240 amount=-1 -kerning first=252 second=356 amount=-5 -kerning first=255 second=116 amount=-1 -kerning first=375 second=268 amount=-2 -kerning first=165 second=368 amount=-2 -kerning first=278 second=281 amount=-1 -kerning first=47 second=380 amount=-2 -kerning first=64 second=8220 amount=-3 -kerning first=910 second=269 amount=-4 -kerning first=1220 second=332 amount=-2 -kerning first=379 second=216 amount=-1 -kerning first=166 second=1066 amount=-5 -kerning first=163 second=8221 amount=-3 -kerning first=1027 second=106 amount=1 -kerning first=282 second=228 amount=-1 -kerning first=8216 second=1298 amount=-3 -kerning first=1062 second=962 amount=-1 -kerning first=194 second=240 amount=-1 -kerning first=303 second=1194 amount=-2 -kerning first=306 second=370 amount=-2 -kerning first=74 second=252 amount=-1 -kerning first=332 second=1044 amount=-1 -kerning first=338 second=67 amount=-2 -kerning first=916 second=217 amount=-2 -kerning first=240 second=79 amount=-2 -kerning first=955 second=119 amount=-4 -kerning first=952 second=359 amount=-1 -kerning first=1223 second=963 amount=-1 -kerning first=377 second=1195 amount=-1 -kerning first=35 second=103 amount=-1 -kerning first=174 second=253 amount=-1 -kerning first=280 second=1257 amount=-1 -kerning first=8225 second=334 amount=-2 -kerning first=55 second=267 amount=-1 -kerning first=1101 second=120 amount=-2 -kerning first=336 second=923 amount=-2 -kerning first=912 second=947 amount=-4 -kerning first=920 second=372 amount=-2 -kerning first=95 second=1101 amount=-1 -kerning first=238 second=945 amount=-1 -kerning first=358 second=1262 amount=-2 -kerning first=361 second=1240 amount=-2 -kerning first=121 second=268 amount=-2 -kerning first=1299 second=219 amount=-2 -kerning first=36 second=281 amount=-1 -kerning first=1036 second=231 amount=-2 -kerning first=8226 second=965 amount=-1 -kerning first=1186 second=232 amount=-1 -kerning first=365 second=332 amount=-2 -kerning first=962 second=244 amount=-1 -kerning first=125 second=216 amount=-2 -kerning first=40 second=228 amount=-1 -kerning first=183 second=118 amount=-4 -kerning first=57 second=1194 amount=-2 -kerning first=60 second=370 amount=-2 -kerning first=203 second=283 amount=-1 -kerning first=8365 second=363 amount=-1 -kerning first=86 second=67 amount=-2 -kerning first=934 second=949 amount=-1 -kerning first=249 second=119 amount=-4 -kerning first=369 second=271 amount=-1 -kerning first=372 second=44 amount=-3 -kerning first=123 second=1195 amount=-1 -kerning first=126 second=371 amount=-1 -kerning first=268 second=1026 amount=-1 -kerning first=271 second=286 amount=-2 -kerning first=38 second=1257 amount=-1 -kerning first=1044 second=334 amount=-1 -kerning first=299 second=218 amount=-2 -kerning first=207 second=230 amount=-1 -kerning first=8363 second=8212 amount=-2 -kerning first=8366 second=1059 amount=-2 -kerning first=902 second=273 amount=-1 -kerning first=905 second=45 amount=-2 -kerning first=84 second=923 amount=-6 -kerning first=87 second=242 amount=-3 -kerning first=224 second=947 amount=-1 -kerning first=1202 second=335 amount=-1 -kerning first=964 second=1108 amount=-1 -kerning first=967 second=347 amount=-1 -kerning first=160 second=1069 amount=-1 -kerning first=166 second=81 amount=-2 -kerning first=276 second=231 amount=-1 -kerning first=1046 second=965 amount=-1 -kerning first=188 second=243 amount=-1 -kerning first=300 second=373 amount=-4 -kerning first=205 second=1263 amount=-1 -kerning first=906 second=220 amount=-2 -kerning first=1118 second=350 amount=-1 -kerning first=354 second=232 amount=-3 -kerning first=942 second=1176 amount=-1 -kerning first=1203 second=966 amount=-1 -kerning first=1210 second=275 amount=-1 -kerning first=254 second=244 amount=-1 -kerning first=971 second=289 amount=-1 -kerning first=8217 second=337 amount=-1 -kerning first=8221 second=99 amount=-1 -kerning first=1063 second=221 amount=-5 -kerning first=1083 second=1177 amount=-1 -kerning first=1087 second=363 amount=-1 -kerning first=1170 second=290 amount=-2 -kerning first=118 second=44 amount=-2 -kerning first=1026 second=234 amount=-1 -kerning first=278 second=1090 amount=-3 -kerning first=8218 second=968 amount=-1 -kerning first=53 second=218 amount=-2 -kerning first=1064 second=376 amount=-5 -kerning first=193 second=346 amount=-1 -kerning first=73 second=360 amount=-2 -kerning first=1084 second=8212 amount=-2 -kerning first=905 second=8249 amount=-3 -kerning first=923 second=85 amount=-2 -kerning first=96 second=287 amount=-1 -kerning first=910 second=1074 amount=-3 -kerning first=1176 second=235 amount=-1 -kerning first=356 second=1094 amount=-2 -kerning first=1256 second=377 amount=-1 -kerning first=256 second=1108 amount=-1 -kerning first=34 second=231 amount=-1 -kerning first=172 second=361 amount=-1 -kerning first=176 second=121 amount=-1 -kerning first=282 second=965 amount=-1 -kerning first=54 second=373 amount=-4 -kerning first=194 second=1028 amount=-2 -kerning first=197 second=288 amount=-2 -kerning first=338 second=350 amount=-1 -kerning first=335 second=1113 amount=-1 -kerning first=100 second=232 amount=-1 -kerning first=237 second=1176 amount=-1 -kerning first=240 second=362 amount=-2 -kerning first=243 second=122 amount=-1 -kerning first=363 second=275 amount=-1 -kerning first=1257 second=1076 amount=-1 -kerning first=1035 second=337 amount=-1 -kerning first=180 second=71 amount=-2 -kerning first=291 second=221 amount=-5 -kerning first=61 second=83 amount=-1 -kerning first=1073 second=261 amount=-1 -kerning first=201 second=233 amount=-1 -kerning first=316 second=363 amount=-1 -kerning first=221 second=375 amount=-2 -kerning first=936 second=210 amount=-2 -kerning first=98 second=1299 amount=-1 -kerning first=238 second=8211 amount=-2 -kerning first=160 second=84 amount=-5 -kerning first=36 second=1090 amount=-3 -kerning first=1039 second=277 amount=-1 -kerning first=182 second=246 amount=-1 -kerning first=1036 second=968 amount=-1 -kerning first=294 second=376 amount=-5 -kerning first=317 second=1059 amount=-2 -kerning first=314 second=8212 amount=-2 -kerning first=8369 second=251 amount=-1 -kerning first=105 second=335 amount=-1 -kerning first=108 second=97 amount=-1 -kerning first=161 second=259 amount=-1 -kerning first=164 second=34 amount=-3 -kerning first=8211 second=102 amount=-2 -kerning first=40 second=965 amount=-1 -kerning first=206 second=336 amount=-2 -kerning first=904 second=171 amount=-3 -kerning first=86 second=350 amount=-1 -kerning first=89 second=110 amount=-3 -kerning first=934 second=8217 amount=-3 -kerning first=112 second=47 amount=-1 -kerning first=372 second=324 amount=-2 -kerning first=375 second=87 amount=-5 -kerning first=278 second=99 amount=-1 -kerning first=8218 second=52 amount=-1 -kerning first=47 second=221 amount=-5 -kerning first=190 second=111 amount=-1 -kerning first=302 second=261 amount=-1 -kerning first=299 second=953 amount=-1 -kerning first=64 second=1177 amount=-1 -kerning first=8378 second=356 amount=-5 -kerning first=90 second=290 amount=-1 -kerning first=948 second=250 amount=-1 -kerning first=944 second=941 amount=-1 -kerning first=356 second=100 amount=-3 -kerning first=253 second=352 amount=-1 -kerning first=376 second=262 amount=-3 -kerning first=973 second=187 amount=-1 -kerning first=166 second=364 amount=-2 -kerning first=276 second=968 amount=-1 -kerning first=8220 second=227 amount=-1 -kerning first=48 second=376 amount=-5 -kerning first=1049 second=1079 amount=-1 -kerning first=188 second=1035 amount=-5 -kerning first=191 second=291 amount=-1 -kerning first=1065 second=89 amount=-2 -kerning first=306 second=211 amount=-2 -kerning first=65 second=8212 amount=-2 -kerning first=916 second=38 amount=-1 -kerning first=94 second=235 amount=-1 -kerning first=164 second=8216 amount=-3 -kerning first=304 second=1184 amount=-5 -kerning first=75 second=248 amount=-2 -kerning first=339 second=63 amount=-2 -kerning first=232 second=8217 amount=-1 -kerning first=361 second=225 amount=-1 -kerning first=950 second=1119 amount=-2 -kerning first=956 second=115 amount=-1 -kerning first=121 second=87 amount=-5 -kerning first=36 second=99 amount=-1 -kerning first=175 second=249 amount=-1 -kerning first=56 second=261 amount=-1 -kerning first=53 second=953 amount=-1 -kerning first=79 second=198 amount=-2 -kerning first=1099 second=356 amount=-5 -kerning first=222 second=88 amount=-3 -kerning first=923 second=368 amount=-2 -kerning first=1176 second=972 amount=-1 -kerning first=239 second=941 amount=-1 -kerning first=102 second=100 amount=-1 -kerning first=1179 second=281 amount=-1 -kerning first=37 second=277 amount=-1 -kerning first=1037 second=227 amount=-1 -kerning first=179 second=199 amount=-2 -kerning first=287 second=1079 amount=-1 -kerning first=60 second=211 amount=-2 -kerning first=1071 second=369 amount=-1 -kerning first=200 second=339 amount=-1 -kerning first=203 second=101 amount=-1 -kerning first=197 second=1098 amount=-3 -kerning first=318 second=251 amount=-1 -kerning first=80 second=353 amount=-1 -kerning first=223 second=263 amount=-1 -kerning first=926 second=1066 amount=-5 -kerning first=916 second=8221 amount=-3 -kerning first=963 second=240 amount=-1 -kerning first=126 second=212 amount=-2 -kerning first=1298 second=1194 amount=-2 -kerning first=41 second=224 amount=-1 -kerning first=1035 second=1256 amount=-2 -kerning first=180 second=354 amount=-5 -kerning first=177 second=1118 amount=-1 -kerning first=296 second=266 amount=-2 -kerning first=299 second=39 amount=-3 -kerning first=58 second=1184 amount=-5 -kerning first=61 second=366 amount=-2 -kerning first=1069 second=8222 amount=-1 -kerning first=1080 second=79 amount=-2 -kerning first=204 second=279 amount=-1 -kerning first=201 second=970 amount=-1 -kerning first=8366 second=359 amount=-1 -kerning first=8372 second=119 amount=-4 -kerning first=87 second=63 amount=-1 -kerning first=107 second=225 amount=-1 -kerning first=1185 second=1257 amount=-2 -kerning first=250 second=115 amount=-1 -kerning first=247 second=355 amount=-1 -kerning first=160 second=367 amount=-1 -kerning first=124 second=1185 amount=-3 -kerning first=182 second=1038 amount=-2 -kerning first=300 second=214 amount=-2 -kerning first=1078 second=945 amount=-2 -kerning first=325 second=356 amount=-5 -kerning first=903 second=268 amount=-2 -kerning first=125 second=8220 amount=-3 -kerning first=43 second=1079 amount=-1 -kerning first=1051 second=269 amount=-1 -kerning first=49 second=89 amount=-5 -kerning first=301 second=369 amount=-1 -kerning first=69 second=251 amount=-1 -kerning first=1170 second=106 amount=1 -kerning first=226 second=8221 amount=-1 -kerning first=950 second=118 amount=-4 -kerning first=1206 second=962 amount=-1 -kerning first=255 second=240 amount=-1 -kerning first=372 second=1194 amount=-2 -kerning first=375 second=370 amount=-2 -kerning first=165 second=943 amount=-1 -kerning first=168 second=252 amount=-1 -kerning first=50 second=266 amount=-2 -kerning first=53 second=39 amount=-3 -kerning first=1064 second=217 amount=-2 -kerning first=310 second=79 amount=-3 -kerning first=1096 second=119 amount=-4 -kerning first=905 second=1195 amount=-1 -kerning first=910 second=371 amount=-2 -kerning first=1168 second=1026 amount=-5 -kerning first=1171 second=286 amount=-2 -kerning first=96 second=103 amount=-1 -kerning first=236 second=253 amount=-1 -kerning first=34 second=52 amount=-1 -kerning first=1027 second=230 amount=-1 -kerning first=279 second=1083 amount=-1 -kerning first=8224 second=273 amount=-1 -kerning first=8230 second=45 amount=-1 -kerning first=54 second=214 amount=-2 -kerning first=1062 second=947 amount=-2 -kerning first=191 second=1101 amount=-1 -kerning first=306 second=945 amount=-1 -kerning first=74 second=356 amount=-5 -kerning first=77 second=116 amount=-1 -kerning first=926 second=81 amount=-2 -kerning first=94 second=972 amount=-1 -kerning first=955 second=243 amount=-1 -kerning first=1257 second=373 amount=-1 -kerning first=35 second=227 amount=-1 -kerning first=174 second=357 amount=-1 -kerning first=177 second=117 amount=-1 -kerning first=8240 second=220 amount=-2 -kerning first=55 second=369 amount=-1 -kerning first=195 second=973 amount=-1 -kerning first=221 second=216 amount=-3 -kerning first=342 second=106 amount=2 -kerning first=244 second=118 amount=-1 -kerning first=361 second=962 amount=-1 -kerning first=121 second=370 amount=-2 -kerning first=1036 second=333 amount=-2 -kerning first=182 second=67 amount=-2 -kerning first=294 second=217 amount=-2 -kerning first=53 second=8222 amount=-1 -kerning first=62 second=79 amount=-2 -kerning first=1074 second=257 amount=-1 -kerning first=202 second=229 amount=-1 -kerning first=317 second=359 amount=-1 -kerning first=322 second=119 amount=-4 -kerning first=1186 second=334 amount=-1 -kerning first=1179 second=1090 amount=-2 -kerning first=962 second=346 amount=-1 -kerning first=1037 second=964 amount=-3 -kerning first=1041 second=273 amount=-1 -kerning first=183 second=242 amount=-1 -kerning first=60 second=945 amount=-1 -kerning first=203 second=1240 amount=-2 -kerning first=200 second=1262 amount=-2 -kerning first=901 second=219 amount=-2 -kerning first=1103 second=1108 amount=-1 -kerning first=223 second=1069 amount=-1 -kerning first=249 second=243 amount=-1 -kerning first=369 second=373 amount=-4 -kerning first=963 second=1028 amount=-2 -kerning first=1048 second=220 amount=-2 -kerning first=1080 second=362 amount=-2 -kerning first=207 second=332 amount=-2 -kerning first=327 second=244 amount=-1 -kerning first=902 second=374 amount=-5 -kerning first=1117 second=289 amount=-1 -kerning first=948 second=71 amount=-2 -kerning first=107 second=962 amount=-2 -kerning first=376 second=83 amount=-1 -kerning first=276 second=333 amount=-1 -kerning first=48 second=217 amount=-2 -kerning first=1049 second=375 amount=-1 -kerning first=300 second=949 amount=-1 -kerning first=303 second=257 amount=-1 -kerning first=1078 second=8211 amount=-3 -kerning first=332 second=194 amount=-2 -kerning first=91 second=286 amount=-2 -kerning first=1169 second=234 amount=-1 -kerning first=354 second=334 amount=-1 -kerning first=1210 second=376 amount=-5 -kerning first=254 second=346 amount=-1 -kerning first=374 second=950 amount=-2 -kerning first=167 second=360 amount=-2 -kerning first=280 second=273 amount=-1 -kerning first=277 second=964 amount=-1 -kerning first=46 second=947 amount=-2 -kerning first=49 second=372 amount=-5 -kerning first=192 second=287 amount=-1 -kerning first=215 second=219 amount=-2 -kerning first=330 second=1108 amount=-1 -kerning first=912 second=259 amount=-1 -kerning first=95 second=231 amount=-1 -kerning first=232 second=1175 amount=-2 -kerning first=238 second=121 amount=-1 -kerning first=115 second=373 amount=-1 -kerning first=255 second=1028 amount=-2 -kerning first=258 second=288 amount=-2 -kerning first=1026 second=336 amount=-2 -kerning first=8226 second=171 amount=-3 -kerning first=196 second=232 amount=-1 -kerning first=305 second=1176 amount=-1 -kerning first=76 second=244 amount=-1 -kerning first=216 second=374 amount=-3 -kerning first=334 second=1033 amount=-1 -kerning first=1176 second=337 amount=-1 -kerning first=1179 second=99 amount=-1 -kerning first=113 second=8230 amount=2 -kerning first=958 second=111 amount=-1 -kerning first=954 second=351 amount=-1 -kerning first=1263 second=261 amount=-1 -kerning first=34 second=333 amount=-1 -kerning first=176 second=245 amount=-1 -kerning first=287 second=375 amount=-1 -kerning first=8250 second=88 amount=-3 -kerning first=54 second=949 amount=-1 -kerning first=57 second=257 amount=-1 -kerning first=1071 second=210 amount=-2 -kerning first=306 second=8211 amount=-2 -kerning first=80 second=194 amount=-4 -kerning first=223 second=84 amount=-5 -kerning first=341 second=234 amount=-1 -kerning first=926 second=364 amount=-2 -kerning first=97 second=1090 amount=-1 -kerning first=100 second=334 amount=-2 -kerning first=1184 second=277 amount=-2 -kerning first=363 second=376 amount=-5 -kerning first=955 second=1035 amount=-5 -kerning first=960 second=291 amount=-1 -kerning first=38 second=273 amount=-1 -kerning first=41 second=45 amount=-2 -kerning first=35 second=964 amount=-3 -kerning first=296 second=85 amount=-2 -kerning first=8260 second=263 amount=-1 -kerning first=1073 second=365 amount=-1 -kerning first=201 second=335 amount=-1 -kerning first=204 second=97 amount=-1 -kerning first=78 second=1108 amount=-1 -kerning first=84 second=109 amount=-2 -kerning first=221 second=951 amount=-3 -kerning first=227 second=34 amount=-1 -kerning first=361 second=8250 amount=-1 -kerning first=1299 second=1184 amount=-5 -kerning first=42 second=220 amount=-2 -kerning first=1046 second=171 amount=-3 -kerning first=182 second=350 amount=-1 -kerning first=62 second=362 amount=-2 -kerning first=59 second=1176 amount=-1 -kerning first=202 second=966 amount=-1 -kerning first=208 second=47 amount=-1 -kerning first=205 second=275 amount=-1 -kerning first=8369 second=355 amount=-1 -kerning first=903 second=87 amount=-5 -kerning first=942 second=249 amount=-1 -kerning first=108 second=221 amount=-5 -kerning first=251 second=111 amount=-1 -kerning first=371 second=261 amount=-1 -kerning first=125 second=1177 amount=-1 -kerning first=161 second=363 amount=-1 -kerning first=270 second=967 amount=-1 -kerning first=43 second=375 amount=-1 -kerning first=186 second=290 amount=-2 -kerning first=301 second=210 amount=-2 -kerning first=60 second=8211 amount=-2 -kerning first=1083 second=250 amount=-1 -kerning first=904 second=262 amount=-2 -kerning first=89 second=234 amount=-4 -kerning first=1119 second=187 amount=-1 -kerning first=1116 second=1241 amount=-2 -kerning first=946 second=199 amount=-2 -kerning first=1219 second=89 amount=-5 -kerning first=249 second=1035 amount=-5 -kerning first=252 second=291 amount=-1 -kerning first=375 second=211 amount=-2 -kerning first=966 second=1098 amount=-1 -kerning first=126 second=8212 amount=-2 -kerning first=162 second=1059 amount=-2 -kerning first=8212 second=381 amount=-2 -kerning first=41 second=8249 amount=-3 -kerning first=50 second=85 amount=-2 -kerning first=190 second=235 amount=-1 -kerning first=302 second=365 amount=-1 -kerning first=210 second=377 amount=-1 -kerning first=910 second=212 amount=-3 -kerning first=227 second=8216 amount=-1 -kerning first=356 second=224 amount=-2 -kerning first=948 second=354 amount=-5 -kerning first=944 second=1118 amount=-1 -kerning first=1220 second=266 amount=-2 -kerning first=973 second=279 amount=-1 -kerning first=169 second=248 amount=-1 -kerning first=279 second=378 amount=-1 -kerning first=282 second=171 amount=-3 -kerning first=1065 second=213 amount=-1 -kerning first=300 second=8217 amount=-3 -kerning first=74 second=197 amount=-1 -kerning first=906 second=1185 amount=-3 -kerning first=94 second=337 amount=-1 -kerning first=237 second=249 amount=-1 -kerning first=354 second=1220 amount=-2 -kerning first=117 second=261 amount=-1 -kerning first=374 second=8218 amount=-4 -kerning first=8225 second=268 amount=-2 -kerning first=55 second=210 amount=-2 -kerning first=195 second=338 amount=-2 -kerning first=198 second=100 amount=-1 -kerning first=313 second=250 amount=-1 -kerning first=75 second=352 amount=-1 -kerning first=95 second=968 amount=-1 -kerning first=358 second=1079 amount=-1 -kerning first=121 second=211 amount=-2 -kerning first=258 second=1098 amount=-3 -kerning first=178 second=113 amount=-1 -kerning first=175 second=353 amount=-1 -kerning first=289 second=263 amount=-1 -kerning first=56 second=365 amount=-1 -kerning first=1064 second=8221 amount=-3 -kerning first=1067 second=1066 amount=-5 -kerning first=8364 second=118 amount=-4 -kerning first=923 second=943 amount=-1 -kerning first=931 second=252 amount=-1 -kerning first=102 second=224 amount=-1 -kerning first=1176 second=1256 amount=-2 -kerning first=239 second=1118 amount=-1 -kerning first=365 second=266 amount=-2 -kerning first=1256 second=8222 amount=-1 -kerning first=40 second=171 amount=-3 -kerning first=54 second=8217 amount=-3 -kerning first=203 second=225 amount=-1 -kerning first=323 second=115 amount=-1 -kerning first=318 second=355 amount=-1 -kerning first=223 second=367 amount=-1 -kerning first=369 second=214 amount=-2 -kerning first=960 second=1101 amount=-1 -kerning first=271 second=226 amount=-1 -kerning first=38 second=1078 amount=-2 -kerning first=1044 second=268 amount=-1 -kerning first=296 second=368 amount=-2 -kerning first=8260 second=1069 amount=-1 -kerning first=64 second=250 amount=-1 -kerning first=61 second=941 amount=-1 -kerning first=8372 second=243 amount=-1 -kerning first=84 second=1241 amount=-3 -kerning first=87 second=187 amount=-2 -kerning first=944 second=117 amount=-1 -kerning first=1202 second=269 amount=-1 -kerning first=964 second=973 amount=-1 -kerning first=163 second=251 amount=-1 -kerning first=1049 second=216 amount=-2 -kerning first=294 second=8221 amount=-3 -kerning first=297 second=1066 amount=-5 -kerning first=1085 second=118 amount=-4 -kerning first=211 second=90 amount=-1 -kerning first=900 second=1194 amount=-2 -kerning first=903 second=370 amount=-2 -kerning first=1118 second=283 amount=-1 -kerning first=1210 second=217 amount=-2 -kerning first=368 second=8222 amount=-1 -kerning first=377 second=79 amount=-1 -kerning first=971 second=229 amount=-1 -kerning first=8217 second=271 amount=-1 -kerning first=8221 second=44 amount=-1 -kerning first=49 second=213 amount=-2 -kerning first=1051 second=371 amount=-1 -kerning first=192 second=103 amount=-1 -kerning first=304 second=253 amount=-1 -kerning first=69 second=355 amount=-1 -kerning first=72 second=115 amount=-1 -kerning first=1170 second=230 amount=-1 -kerning first=950 second=242 amount=-1 -kerning first=1219 second=372 amount=-5 -kerning first=1206 second=947 amount=-2 -kerning first=252 second=1101 amount=-1 -kerning first=375 second=945 amount=-1 -kerning first=168 second=356 amount=-5 -kerning first=8222 second=219 amount=-1 -kerning first=50 second=368 amount=-2 -kerning first=1067 second=81 amount=-2 -kerning first=190 second=972 amount=-1 -kerning first=193 second=281 amount=-1 -kerning first=1096 second=243 amount=-1 -kerning first=96 second=227 amount=-1 -kerning first=1168 second=1263 amount=-1 -kerning first=236 second=357 amount=-1 -kerning first=239 second=117 amount=-1 -kerning first=113 second=1187 amount=2 -kerning first=256 second=973 amount=-1 -kerning first=1027 second=332 amount=-2 -kerning first=287 second=216 amount=-2 -kerning first=8224 second=374 amount=-5 -kerning first=51 second=1066 amount=-5 -kerning first=48 second=8221 amount=-3 -kerning first=1068 second=256 amount=-1 -kerning first=197 second=228 amount=-1 -kerning first=315 second=118 amount=-3 -kerning first=74 second=916 amount=-1 -kerning first=77 second=240 amount=-1 -kerning first=214 second=1194 amount=-2 -kerning first=338 second=283 amount=-1 -kerning first=94 second=1256 amount=-2 -kerning first=363 second=217 amount=-2 -kerning first=114 second=8222 amount=-3 -kerning first=123 second=79 amount=-2 -kerning first=1298 second=257 amount=-1 -kerning first=1035 second=271 amount=-1 -kerning first=174 second=920 amount=-2 -kerning first=1038 second=44 amount=-1 -kerning first=8260 second=84 amount=-5 -kerning first=58 second=253 amount=-1 -kerning first=195 second=1257 amount=-1 -kerning first=8363 second=246 amount=-1 -kerning first=920 second=1174 amount=-3 -kerning first=928 second=360 amount=-2 -kerning first=98 second=1083 amount=-1 -kerning first=1185 second=273 amount=-2 -kerning first=1194 second=45 amount=-1 -kerning first=1178 second=964 amount=-2 -kerning first=361 second=947 amount=-4 -kerning first=121 second=945 amount=-1 -kerning first=1039 second=219 amount=-2 -kerning first=289 second=1069 amount=-1 -kerning first=297 second=81 amount=-2 -kerning first=1074 second=361 amount=-1 -kerning first=322 second=243 amount=-1 -kerning first=105 second=269 amount=-1 -kerning first=965 second=232 amount=-1 -kerning first=8211 second=47 amount=-1 -kerning first=43 second=216 amount=-2 -kerning first=1041 second=374 amount=-5 -kerning first=186 second=106 amount=1 -kerning first=1083 second=71 amount=-2 -kerning first=203 second=962 amount=-1 -kerning first=8377 second=111 amount=-1 -kerning first=8370 second=351 amount=-1 -kerning first=904 second=83 amount=-1 -kerning first=86 second=283 amount=-1 -kerning first=1116 second=233 amount=-2 -kerning first=369 second=949 amount=-1 -kerning first=372 second=257 amount=-2 -kerning first=162 second=359 amount=-1 -kerning first=165 second=119 amount=-4 -kerning first=271 second=963 amount=-1 -kerning first=41 second=1195 amount=-1 -kerning first=44 second=371 amount=-1 -kerning first=184 second=1026 amount=-5 -kerning first=1084 second=246 amount=-1 -kerning first=327 second=346 amount=-1 -kerning first=8372 second=1035 amount=-5 -kerning first=8378 second=291 amount=-1 -kerning first=902 second=950 amount=-1 -kerning first=233 second=120 amount=-2 -kerning first=356 second=45 amount=-4 -kerning first=1194 second=8249 amount=-1 -kerning first=1220 second=85 amount=-2 -kerning first=253 second=287 amount=-1 -kerning first=973 second=97 amount=-1 -kerning first=45 second=1069 amount=-1 -kerning first=51 second=81 amount=-2 -kerning first=1065 second=34 amount=-2 -kerning first=191 second=231 amount=-1 -kerning first=303 second=361 amount=-1 -kerning first=306 second=121 amount=-1 -kerning first=208 second=1202 amount=-3 -kerning first=88 second=1263 amount=-1 -kerning first=357 second=220 amount=-2 -kerning first=374 second=1176 amount=-2 -kerning first=1028 second=47 amount=-1 -kerning first=170 second=244 amount=-1 -kerning first=971 second=966 amount=-1 -kerning first=280 second=374 amount=-5 -kerning first=277 second=1203 amount=-2 -kerning first=8225 second=87 amount=-5 -kerning first=313 second=71 amount=-1 -kerning first=1095 second=351 amount=-1 -kerning first=212 second=1071 amount=-1 -kerning first=912 second=363 amount=-1 -kerning first=95 second=333 amount=-1 -kerning first=238 second=245 amount=-1 -kerning first=358 second=375 amount=-1 -kerning first=118 second=257 amount=-1 -kerning first=375 second=8211 amount=-2 -kerning first=289 second=84 amount=-5 -kerning first=8226 second=262 amount=-2 -kerning first=1067 second=364 amount=-2 -kerning first=193 second=1090 amount=-3 -kerning first=196 second=334 amount=-2 -kerning first=314 second=246 amount=-1 -kerning first=8361 second=199 amount=-2 -kerning first=1096 second=1035 amount=-5 -kerning first=1099 second=291 amount=-1 -kerning first=219 second=258 amount=-2 -kerning first=915 second=1059 amount=-2 -kerning first=96 second=964 amount=-3 -kerning first=910 second=8212 amount=-4 -kerning first=102 second=45 amount=-2 -kerning first=356 second=8249 amount=-3 -kerning first=365 second=85 amount=-2 -kerning first=958 second=235 amount=-1 -kerning first=1263 second=365 amount=-1 -kerning first=37 second=219 amount=-2 -kerning first=172 second=1108 amount=-1 -kerning first=176 second=347 amount=-1 -kerning first=295 second=34 amount=-1 -kerning first=57 second=361 amount=-1 -kerning first=60 second=121 amount=-1 -kerning first=1065 second=8216 amount=-2 -kerning first=197 second=965 amount=-1 -kerning first=77 second=1028 amount=-2 -kerning first=80 second=288 amount=-2 -kerning first=934 second=248 amount=-1 -kerning first=103 second=220 amount=-2 -kerning first=366 second=260 amount=-2 -kerning first=123 second=362 amount=-2 -kerning first=1257 second=8217 amount=-1 -kerning first=38 second=374 amount=-5 -kerning first=180 second=289 amount=-1 -kerning first=8260 second=367 amount=-1 -kerning first=8240 second=1185 amount=-3 -kerning first=64 second=71 amount=-2 -kerning first=1073 second=940 amount=-1 -kerning first=204 second=221 amount=-5 -kerning first=321 second=351 amount=-1 -kerning first=8363 second=1038 amount=-2 -kerning first=84 second=233 amount=-3 -kerning first=221 second=1177 amount=-4 -kerning first=247 second=290 amount=-2 -kerning first=967 second=100 amount=-1 -kerning first=964 second=338 amount=-2 -kerning first=121 second=8211 amount=-2 -kerning first=45 second=84 amount=-4 -kerning first=1046 second=262 amount=-3 -kerning first=185 second=234 amount=-1 -kerning first=297 second=364 amount=-2 -kerning first=65 second=246 amount=-1 -kerning first=1081 second=199 amount=-2 -kerning first=205 second=376 amount=-5 -kerning first=322 second=1035 amount=-5 -kerning first=325 second=291 amount=-1 -kerning first=903 second=211 amount=-2 -kerning first=1118 second=101 amount=-1 -kerning first=942 second=353 amount=-1 -kerning first=1195 second=955 amount=-1 -kerning first=1203 second=263 amount=-1 -kerning first=251 second=235 amount=-1 -kerning first=371 second=365 amount=-1 -kerning first=49 second=34 amount=-3 -kerning first=1051 second=212 amount=-2 -kerning first=295 second=8216 amount=-1 -kerning first=1083 second=354 amount=-5 -kerning first=203 second=8250 amount=-1 -kerning first=212 second=86 amount=-2 -kerning first=901 second=1184 amount=-5 -kerning first=904 second=366 amount=-2 -kerning first=89 second=336 amount=-3 -kerning first=1119 second=279 amount=-1 -kerning first=1219 second=213 amount=-2 -kerning first=369 second=8217 amount=-3 -kerning first=275 second=1076 amount=-1 -kerning first=1048 second=1185 amount=-3 -kerning first=190 second=337 amount=-1 -kerning first=193 second=99 amount=-1 -kerning first=302 second=940 amount=-1 -kerning first=305 second=249 amount=-1 -kerning first=70 second=351 amount=-1 -kerning first=1084 second=1038 amount=-2 -kerning first=73 second=111 amount=-1 -kerning first=8378 second=1101 amount=-1 -kerning first=1171 second=226 amount=-1 -kerning first=353 second=1078 amount=-1 -kerning first=1220 second=368 amount=-2 -kerning first=256 second=338 amount=-2 -kerning first=376 second=941 amount=-4 -kerning first=169 second=352 amount=-1 -kerning first=282 second=262 amount=-2 -kerning first=51 second=364 amount=-2 -kerning first=1049 second=8220 amount=-3 -kerning first=191 second=968 amount=-1 -kerning first=194 second=277 amount=-1 -kerning first=74 second=291 amount=-1 -kerning first=71 second=1035 amount=-1 -kerning first=338 second=101 amount=-1 -kerning first=916 second=251 amount=-1 -kerning first=240 second=113 amount=-1 -kerning first=237 second=353 amount=-1 -kerning first=117 second=365 amount=-1 -kerning first=1223 second=1066 amount=-5 -kerning first=1210 second=8221 amount=-3 -kerning first=8225 second=370 amount=-2 -kerning first=49 second=8216 amount=-3 -kerning first=198 second=224 amount=-1 -kerning first=313 second=354 amount=-6 -kerning first=8363 second=67 amount=-2 -kerning first=215 second=1184 amount=-5 -kerning first=98 second=378 amount=-1 -kerning first=244 second=63 amount=-2 -kerning first=115 second=8217 amount=-1 -kerning first=1299 second=253 amount=-1 -kerning first=1036 second=267 amount=-2 -kerning first=289 second=367 amount=-1 -kerning first=59 second=249 amount=-1 -kerning first=56 second=940 amount=-1 -kerning first=199 second=379 amount=-1 -kerning first=314 second=1038 amount=-2 -kerning first=8364 second=242 amount=-1 -kerning first=1099 second=1101 amount=-1 -kerning first=216 second=8218 amount=-1 -kerning first=931 second=356 amount=-5 -kerning first=343 second=226 amount=-1 -kerning first=99 second=1078 amount=-1 -kerning first=1186 second=268 amount=-1 -kerning first=365 second=368 amount=-2 -kerning first=958 second=972 amount=-1 -kerning first=962 second=281 amount=-1 -kerning first=125 second=250 amount=-1 -kerning first=122 second=941 amount=-1 -kerning first=40 second=262 amount=-2 -kerning first=179 second=1241 amount=-1 -kerning first=183 second=187 amount=-1 -kerning first=287 second=8220 amount=-3 -kerning first=63 second=199 amount=-2 -kerning first=200 second=1079 amount=-1 -kerning first=206 second=89 amount=-5 -kerning first=80 second=1098 amount=-3 -kerning first=86 second=101 amount=-3 -kerning first=1103 second=973 amount=-1 -kerning first=363 second=8221 amount=-3 -kerning first=44 second=212 amount=-1 -kerning first=1044 second=370 amount=-1 -kerning first=296 second=943 amount=-1 -kerning first=299 second=252 amount=-1 -kerning first=64 second=354 amount=-5 -kerning first=61 second=1118 amount=-1 -kerning first=1084 second=67 amount=-2 -kerning first=207 second=266 amount=-2 -kerning first=905 second=79 amount=-2 -kerning first=87 second=279 amount=-3 -kerning first=1117 second=229 amount=-1 -kerning first=253 second=103 amount=-1 -kerning first=964 second=1257 amount=-1 -kerning first=163 second=355 amount=-1 -kerning first=166 second=115 amount=-1 -kerning first=276 second=267 amount=-1 -kerning first=42 second=1185 amount=-3 -kerning first=65 second=1038 amount=-2 -kerning first=1085 second=242 amount=-1 -kerning first=325 second=1101 amount=-1 -kerning first=903 second=945 amount=-1 -kerning first=91 second=226 amount=-1 -kerning first=1118 second=1240 amount=-2 -kerning first=354 second=268 amount=-1 -kerning first=1223 second=81 amount=-2 -kerning first=251 second=972 amount=-1 -kerning first=254 second=281 amount=-1 -kerning first=8211 second=1202 amount=-3 -kerning first=43 second=8220 amount=-3 -kerning first=192 second=227 amount=-1 -kerning first=304 second=357 amount=-1 -kerning first=330 second=973 amount=-1 -kerning first=89 second=1224 amount=-3 -kerning first=1170 second=332 amount=-2 -kerning first=358 second=216 amount=-2 -kerning first=109 second=8221 amount=-1 -kerning first=258 second=228 amount=-1 -kerning first=278 second=1194 amount=-2 -kerning first=8212 second=8230 amount=-1 -kerning first=8226 second=83 amount=-1 -kerning first=50 second=943 amount=-1 -kerning first=53 second=252 amount=-1 -kerning first=190 second=1256 amount=-2 -kerning first=314 second=67 amount=-2 -kerning first=210 second=8222 amount=-1 -kerning first=915 second=359 amount=-1 -kerning first=923 second=119 amount=-4 -kerning first=1171 second=963 amount=-1 -kerning first=1176 second=271 amount=-1 -kerning first=236 second=920 amount=-2 -kerning first=356 second=1195 amount=-3 -kerning first=951 second=1026 amount=-5 -kerning first=256 second=1257 amount=-1 -kerning first=34 second=267 amount=-1 -kerning first=315 second=242 amount=-1 -kerning first=74 second=1101 amount=-1 -kerning first=338 second=1240 amount=-2 -kerning first=100 second=268 amount=-2 -kerning first=960 second=231 amount=-1 -kerning first=1298 second=361 amount=-1 -kerning first=1257 second=1175 amount=-2 -kerning first=1035 second=373 amount=-4 -kerning first=1028 second=1202 amount=-2 -kerning first=58 second=357 amount=-1 -kerning first=61 second=117 amount=-1 -kerning first=201 second=269 amount=-1 -kerning first=8363 second=350 amount=-1 -kerning first=78 second=973 amount=-1 -kerning first=936 second=244 amount=-1 -kerning first=247 second=106 amount=1 -kerning first=160 second=118 amount=-4 -kerning first=36 second=1194 amount=-2 -kerning first=182 second=283 amount=-1 -kerning first=1046 second=83 amount=-1 -kerning first=65 second=67 amount=-2 -kerning first=1078 second=245 amount=-2 -kerning first=205 second=217 amount=-2 -kerning first=8369 second=290 amount=-2 -kerning first=900 second=257 amount=-1 -kerning first=1102 second=1299 amount=-1 -kerning first=228 second=119 amount=-1 -kerning first=343 second=963 amount=-1 -kerning first=105 second=371 amount=-1 -kerning first=102 second=1195 amount=-1 -kerning first=962 second=1090 amount=-3 -kerning first=965 second=334 amount=-2 -kerning first=274 second=218 amount=-2 -kerning first=1047 second=258 amount=-1 -kerning first=186 second=230 amount=-1 -kerning first=298 second=360 amount=-2 -kerning first=203 second=947 amount=-4 -kerning first=206 second=372 amount=-5 -kerning first=8377 second=235 amount=-1 -kerning first=86 second=1240 amount=-2 -kerning first=1116 second=335 amount=-2 -kerning first=1119 second=97 amount=-1 -kerning first=1219 second=34 amount=-3 -kerning first=252 second=231 amount=-1 -kerning first=375 second=121 amount=-1 -kerning first=372 second=361 amount=-2 -kerning first=972 second=46 amount=-1 -kerning first=165 second=243 amount=-1 -kerning first=275 second=373 amount=-1 -kerning first=8218 second=86 amount=-4 -kerning first=184 second=1263 amount=-1 -kerning first=1084 second=350 amount=-1 -kerning first=902 second=1176 amount=-1 -kerning first=905 second=362 amount=-2 -kerning first=87 second=1085 amount=-2 -kerning first=910 second=122 amount=-2 -kerning first=1117 second=966 amount=-1 -kerning first=1168 second=275 amount=-1 -kerning first=90 second=332 amount=-1 -kerning first=350 second=1203 amount=-1 -kerning first=948 second=289 amount=-1 -kerning first=379 second=71 amount=-1 -kerning first=973 second=221 amount=-5 -kerning first=282 second=83 amount=-1 -kerning first=8220 second=261 amount=-1 -kerning first=1049 second=1177 amount=-1 -kerning first=191 second=333 amount=-1 -kerning first=306 second=245 amount=-1 -kerning first=214 second=257 amount=-1 -kerning first=903 second=8211 amount=-2 -kerning first=91 second=963 amount=-1 -kerning first=94 second=271 amount=-1 -kerning first=952 second=234 amount=-1 -kerning first=1223 second=364 amount=-2 -kerning first=254 second=1090 amount=-3 -kerning first=380 second=246 amount=-1 -kerning first=170 second=346 amount=-1 -kerning first=8225 second=211 amount=-2 -kerning first=52 second=360 amount=-2 -kerning first=1063 second=1059 amount=-2 -kerning first=1051 second=8212 amount=-2 -kerning first=195 second=273 amount=-1 -kerning first=198 second=45 amount=-2 -kerning first=192 second=964 amount=-3 -kerning first=75 second=287 amount=-1 -kerning first=238 second=347 amount=-1 -kerning first=361 second=259 amount=-1 -kerning first=115 second=1175 amount=-1 -kerning first=1219 second=8216 amount=-3 -kerning first=121 second=121 amount=-1 -kerning first=258 second=965 amount=-1 -kerning first=266 second=46 amount=-1 -kerning first=1240 second=196 amount=-2 -kerning first=175 second=288 amount=-2 -kerning first=8222 second=1184 amount=-5 -kerning first=8226 second=366 amount=-2 -kerning first=314 second=350 amount=-1 -kerning first=343 second=47 amount=-2 -kerning first=958 second=337 amount=-1 -kerning first=962 second=99 amount=-1 -kerning first=125 second=71 amount=-2 -kerning first=1263 second=940 amount=-1 -kerning first=40 second=83 amount=-1 -kerning first=1037 second=261 amount=-1 -kerning first=179 second=233 amount=-1 -kerning first=287 second=1177 amount=-1 -kerning first=60 second=245 amount=-1 -kerning first=200 second=375 amount=-1 -kerning first=318 second=290 amount=-2 -kerning first=1103 second=338 amount=-2 -kerning first=220 second=1051 amount=-1 -kerning first=934 second=352 amount=-1 -kerning first=960 second=968 amount=-1 -kerning first=963 second=277 amount=-1 -kerning first=126 second=246 amount=-1 -kerning first=268 second=376 amount=-2 -kerning first=1044 second=211 amount=-1 -kerning first=291 second=1059 amount=-2 -kerning first=1080 second=113 amount=-1 -kerning first=198 second=8249 amount=-3 -kerning first=207 second=85 amount=-2 -kerning first=84 second=335 amount=-3 -kerning first=87 second=97 amount=-2 -kerning first=107 second=259 amount=-1 -kerning first=110 second=34 amount=-1 -kerning first=1202 second=212 amount=-1 -kerning first=967 second=224 amount=-1 -kerning first=1039 second=1184 amount=-5 -kerning first=185 second=336 amount=-2 -kerning first=300 second=248 amount=-1 -kerning first=65 second=350 amount=-1 -kerning first=208 second=260 amount=-2 -kerning first=88 second=275 amount=-2 -kerning first=1118 second=225 amount=-1 -kerning first=251 second=337 amount=-1 -kerning first=254 second=99 amount=-1 -kerning first=371 second=940 amount=-1 -kerning first=374 second=249 amount=-2 -kerning first=167 second=111 amount=-1 -kerning first=164 second=351 amount=-1 -kerning first=274 second=953 amount=-1 -kerning first=43 second=1177 amount=-1 -kerning first=46 second=363 amount=-1 -kerning first=69 second=290 amount=-2 -kerning first=330 second=338 amount=-2 -kerning first=8377 second=972 amount=-1 -kerning first=904 second=941 amount=-1 -kerning first=946 second=1241 amount=-1 -kerning first=950 second=187 amount=-1 -kerning first=252 second=968 amount=-1 -kerning first=255 second=277 amount=-1 -kerning first=165 second=1035 amount=-5 -kerning first=168 second=291 amount=-1 -kerning first=1026 second=89 amount=-5 -kerning first=8218 second=369 amount=-1 -kerning first=47 second=1059 amount=-2 -kerning first=44 second=8212 amount=-1 -kerning first=1064 second=251 amount=-1 -kerning first=305 second=353 amount=-1 -kerning first=310 second=113 amount=-2 -kerning first=73 second=235 amount=-1 -kerning first=110 second=8216 amount=-1 -kerning first=1220 second=943 amount=-1 -kerning first=376 second=1118 amount=-2 -kerning first=1027 second=266 amount=-2 -kerning first=1034 second=39 amount=-2 -kerning first=282 second=366 amount=-2 -kerning first=8216 second=8222 amount=-1 -kerning first=8230 second=79 amount=-1 -kerning first=54 second=248 amount=-1 -kerning first=197 second=171 amount=-3 -kerning first=315 second=63 amount=-4 -kerning first=338 second=225 amount=-1 -kerning first=916 second=355 amount=-1 -kerning first=926 second=115 amount=-1 -kerning first=100 second=87 amount=-5 -kerning first=357 second=1185 amount=-3 -kerning first=117 second=940 amount=-1 -kerning first=35 second=261 amount=-1 -kerning first=1035 second=214 amount=-2 -kerning first=8225 second=945 amount=-1 -kerning first=1073 second=116 amount=-1 -kerning first=1069 second=356 amount=-2 -kerning first=78 second=338 amount=-2 -kerning first=221 second=250 amount=-2 -kerning first=339 second=380 amount=-1 -kerning first=936 second=65 amount=-3 -kerning first=358 second=8220 amount=-3 -kerning first=124 second=199 amount=-2 -kerning first=1299 second=357 amount=-1 -kerning first=1036 second=369 amount=-1 -kerning first=175 second=1098 amount=-3 -kerning first=178 second=339 amount=-1 -kerning first=182 second=101 amount=-1 -kerning first=294 second=251 amount=-1 -kerning first=59 second=353 amount=-1 -kerning first=62 second=113 amount=-1 -kerning first=202 second=263 amount=-1 -kerning first=8369 second=106 amount=1 -kerning first=105 second=212 amount=-2 -kerning first=1186 second=370 amount=-1 -kerning first=248 second=102 amount=-1 -kerning first=365 second=943 amount=-1 -kerning first=958 second=1256 amount=-2 -kerning first=125 second=354 amount=-5 -kerning first=274 second=39 amount=-3 -kerning first=37 second=1184 amount=-5 -kerning first=40 second=366 amount=-2 -kerning first=179 second=970 amount=-1 -kerning first=183 second=279 amount=-1 -kerning first=206 second=213 amount=-2 -kerning first=8365 second=1026 amount=-5 -kerning first=8370 second=286 amount=-2 -kerning first=901 second=253 amount=-1 -kerning first=86 second=225 amount=-3 -kerning first=1103 second=1257 amount=-1 -kerning first=103 second=1185 amount=-3 -kerning first=126 second=1038 amount=-2 -kerning first=1044 second=945 amount=-1 -kerning first=299 second=356 amount=-5 -kerning first=302 second=116 amount=-1 -kerning first=207 second=368 amount=-2 -kerning first=327 second=281 amount=-1 -kerning first=8378 second=231 amount=-1 -kerning first=87 second=380 amount=-1 -kerning first=104 second=8220 amount=-1 -kerning first=253 second=227 amount=-1 -kerning first=376 second=117 amount=-2 -kerning first=276 second=369 amount=-1 -kerning first=48 second=251 amount=-1 -kerning first=205 second=8221 amount=-3 -kerning first=208 second=1066 amount=-2 -kerning first=1118 second=962 amount=-1 -kerning first=251 second=1256 amount=-2 -kerning first=374 second=1044 amount=-5 -kerning first=8217 second=949 amount=-1 -kerning first=8221 second=257 amount=-1 -kerning first=1063 second=359 amount=-1 -kerning first=1066 second=119 amount=-1 -kerning first=304 second=920 amount=-2 -kerning first=1087 second=1026 amount=-5 -kerning first=1095 second=286 amount=-2 -kerning first=215 second=253 amount=-1 -kerning first=75 second=103 amount=-1 -kerning first=330 second=1257 amount=-1 -kerning first=908 second=1046 amount=-3 -kerning first=95 second=267 amount=-1 -kerning first=1224 second=360 amount=-2 -kerning first=381 second=242 amount=-1 -kerning first=1026 second=372 amount=-5 -kerning first=972 second=947 amount=-1 -kerning first=168 second=1101 amount=-1 -kerning first=53 second=356 amount=-5 -kerning first=56 second=116 amount=-1 -kerning first=196 second=268 amount=-2 -kerning first=73 second=972 amount=-1 -kerning first=1099 second=231 amount=-1 -kerning first=76 second=281 amount=-1 -kerning first=923 second=243 amount=-1 -kerning first=1176 second=373 amount=-4 -kerning first=951 second=1263 amount=-1 -kerning first=172 second=973 amount=-1 -kerning first=8224 second=1176 amount=-1 -kerning first=8230 second=362 amount=-1 -kerning first=8250 second=122 amount=-1 -kerning first=1071 second=244 amount=-1 -kerning first=200 second=216 amount=-2 -kerning first=318 second=106 amount=1 -kerning first=80 second=228 amount=-1 -kerning first=223 second=118 amount=-4 -kerning first=338 second=962 amount=-1 -kerning first=100 second=370 amount=-2 -kerning first=960 second=333 amount=-1 -kerning first=126 second=67 amount=-2 -kerning first=41 second=79 amount=-2 -kerning first=1035 second=949 amount=-1 -kerning first=180 second=229 amount=-1 -kerning first=296 second=119 amount=-4 -kerning first=8225 second=8211 amount=-2 -kerning first=291 second=359 amount=-1 -kerning first=58 second=920 amount=-2 -kerning first=201 second=371 amount=-1 -kerning first=198 second=1195 amount=-1 -kerning first=316 second=1026 amount=-5 -kerning first=321 second=286 amount=-2 -kerning first=8366 second=234 amount=-1 -kerning first=78 second=1257 amount=-1 -kerning first=1101 second=1090 amount=-1 -kerning first=936 second=346 amount=-1 -kerning first=1194 second=258 amount=-1 -kerning first=247 second=230 amount=-1 -kerning first=367 second=360 amount=-2 -kerning first=964 second=273 amount=-1 -kerning first=967 second=45 amount=-2 -kerning first=160 second=242 amount=-1 -kerning first=961 second=964 amount=-1 -kerning first=39 second=945 amount=-1 -kerning first=182 second=1240 amount=-2 -kerning first=178 second=1262 amount=-2 -kerning first=1074 second=1108 amount=-1 -kerning first=1078 second=347 amount=-1 -kerning first=202 second=1069 amount=-1 -kerning first=325 second=231 amount=-1 -kerning first=900 second=361 amount=-1 -kerning first=903 second=121 amount=-1 -kerning first=346 second=373 amount=-1 -kerning first=942 second=288 amount=-2 -kerning first=968 second=220 amount=-2 -kerning first=8211 second=260 amount=-2 -kerning first=1041 second=1176 amount=-1 -kerning first=186 second=332 amount=-2 -kerning first=301 second=244 amount=-1 -kerning first=69 second=106 amount=1 -kerning first=1083 second=289 amount=-1 -kerning first=8377 second=337 amount=-1 -kerning first=86 second=962 amount=-1 -kerning first=1119 second=221 amount=-5 -kerning first=946 second=233 amount=-1 -kerning first=252 second=333 amount=-1 -kerning first=375 second=245 amount=-1 -kerning first=278 second=257 amount=-1 -kerning first=8218 second=210 amount=-1 -kerning first=1241 second=1299 amount=-1 -kerning first=47 second=359 amount=-1 -kerning first=50 second=119 amount=-4 -kerning first=1044 second=8211 amount=-2 -kerning first=190 second=271 amount=-1 -kerning first=70 second=286 amount=-2 -kerning first=67 second=1026 amount=-1 -kerning first=1090 second=234 amount=-1 -kerning first=327 second=1090 amount=-3 -kerning first=8378 second=968 amount=-1 -kerning first=93 second=218 amount=-2 -kerning first=1168 second=376 amount=-5 -kerning first=910 second=246 amount=-4 -kerning first=356 second=258 amount=-6 -kerning first=113 second=360 amount=-2 -kerning first=1202 second=8212 amount=-2 -kerning first=256 second=273 amount=-1 -kerning first=253 second=964 amount=-3 -kerning first=967 second=8249 amount=-3 -kerning first=1027 second=85 amount=-2 -kerning first=169 second=287 amount=-1 -kerning first=194 second=219 amount=-2 -kerning first=303 second=1108 amount=-1 -kerning first=306 second=347 amount=-1 -kerning first=74 second=231 amount=-1 -kerning first=214 second=361 amount=-1 -kerning first=94 second=373 amount=-4 -kerning first=1118 second=8250 amount=-1 -kerning first=237 second=288 amount=-2 -kerning first=952 second=336 amount=-2 -kerning first=260 second=220 amount=-2 -kerning first=1028 second=260 amount=-1 -kerning first=174 second=232 amount=-1 -kerning first=280 second=1176 amount=-1 -kerning first=55 second=244 amount=-1 -kerning first=1069 second=197 amount=-2 -kerning first=195 second=374 amount=-5 -kerning first=313 second=289 amount=-1 -kerning first=221 second=71 amount=-3 -kerning first=928 second=111 amount=-1 -kerning first=358 second=1177 amount=-1 -kerning first=361 second=363 amount=-1 -kerning first=953 second=967 amount=-2 -kerning first=121 second=245 amount=-1 -kerning first=36 second=257 amount=-1 -kerning first=1036 second=210 amount=-3 -kerning first=8226 second=941 amount=-1 -kerning first=202 second=84 amount=-5 -kerning first=317 second=234 amount=-1 -kerning first=8361 second=1241 amount=-1 -kerning first=8364 second=187 amount=-1 -kerning first=1099 second=968 amount=-1 -kerning first=340 second=376 amount=-2 -kerning first=923 second=1035 amount=-5 -kerning first=931 second=291 amount=-1 -kerning first=1186 second=211 amount=-1 -kerning first=1037 second=365 amount=-1 -kerning first=179 second=335 amount=-1 -kerning first=183 second=97 amount=-1 -kerning first=57 second=1108 amount=-1 -kerning first=60 second=347 amount=-1 -kerning first=203 second=259 amount=-1 -kerning first=206 second=34 amount=-3 -kerning first=86 second=46 amount=-4 -kerning first=80 second=965 amount=-1 -kerning first=338 second=8250 amount=-1 -kerning first=369 second=248 amount=-1 -kerning first=126 second=350 amount=-1 -kerning first=38 second=1176 amount=-1 -kerning first=41 second=362 amount=-2 -kerning first=1035 second=8217 amount=-3 -kerning first=180 second=966 amount=-1 -kerning first=184 second=275 amount=-1 -kerning first=64 second=289 amount=-1 -kerning first=327 second=99 amount=-1 -kerning first=902 second=249 amount=-1 -kerning first=163 second=290 amount=-2 -kerning first=276 second=210 amount=-2 -kerning first=1049 second=250 amount=-1 -kerning first=1046 second=941 amount=-2 -kerning first=300 second=352 amount=-1 -kerning first=1081 second=1241 amount=-1 -kerning first=1085 second=187 amount=-1 -kerning first=325 second=968 amount=-1 -kerning first=906 second=199 amount=-2 -kerning first=354 second=211 amount=-1 -kerning first=942 second=1098 amount=-3 -kerning first=108 second=1059 amount=-2 -kerning first=105 second=8212 amount=-2 -kerning first=1210 second=251 amount=-1 -kerning first=374 second=353 amount=-3 -kerning first=377 second=113 amount=-1 -kerning first=971 second=263 amount=-1 -kerning first=167 second=235 amount=-1 -kerning first=8211 second=1066 amount=-4 -kerning first=206 second=8216 amount=-3 -kerning first=8377 second=1256 amount=-2 -kerning first=904 second=1118 amount=-1 -kerning first=86 second=8250 amount=-2 -kerning first=908 second=354 amount=-2 -kerning first=89 second=1075 amount=-3 -kerning first=1170 second=266 amount=-2 -kerning first=352 second=1184 amount=-1 -kerning first=946 second=970 amount=-1 -kerning first=950 second=279 amount=-1 -kerning first=258 second=171 amount=-3 -kerning first=1026 second=213 amount=-2 -kerning first=275 second=8217 amount=-1 -kerning first=286 second=75 amount=2 -kerning first=8222 second=253 amount=-1 -kerning first=1067 second=115 amount=-1 -kerning first=1064 second=355 amount=-1 -kerning first=196 second=87 amount=-5 -kerning first=70 second=1096 amount=-1 -kerning first=73 second=337 amount=-1 -kerning first=76 second=99 amount=-1 -kerning first=334 second=379 amount=-1 -kerning first=93 second=953 amount=-1 -kerning first=96 second=261 amount=-1 -kerning first=1176 second=214 amount=-2 -kerning first=954 second=226 amount=-1 -kerning first=1256 second=356 amount=-2 -kerning first=1263 second=116 amount=-1 -kerning first=262 second=88 amount=-2 -kerning first=1027 second=368 amount=-2 -kerning first=172 second=338 amount=-2 -kerning first=176 second=100 amount=-1 -kerning first=282 second=941 amount=-1 -kerning first=287 second=250 amount=-1 -kerning first=54 second=352 amount=-1 -kerning first=197 second=262 amount=-2 -kerning first=311 second=1241 amount=-2 -kerning first=74 second=968 amount=-1 -kerning first=77 second=277 amount=-1 -kerning first=100 second=211 amount=-2 -kerning first=237 second=1098 amount=-3 -kerning first=240 second=339 amount=-1 -kerning first=363 second=251 amount=-1 -kerning first=123 second=113 amount=-1 -kerning first=120 second=353 amount=-1 -kerning first=35 second=365 amount=-1 -kerning first=1028 second=1066 amount=-1 -kerning first=8260 second=118 amount=-4 -kerning first=1069 second=916 amount=-2 -kerning first=1073 second=240 amount=-1 -kerning first=201 second=212 amount=-2 -kerning first=8363 second=283 amount=-1 -kerning first=1101 second=382 amount=-1 -kerning first=1299 second=920 amount=-2 -kerning first=1039 second=253 amount=-1 -kerning first=182 second=225 amount=-1 -kerning first=294 second=355 amount=-1 -kerning first=297 second=115 amount=-1 -kerning first=8249 second=1046 amount=-1 -kerning first=202 second=367 amount=-1 -kerning first=8369 second=230 amount=-1 -kerning first=1102 second=1083 amount=-1 -kerning first=931 second=1101 amount=-1 -kerning first=1186 second=945 amount=-1 -kerning first=371 second=116 amount=-1 -kerning first=965 second=268 amount=-2 -kerning first=43 second=250 amount=-1 -kerning first=40 second=941 amount=-1 -kerning first=63 second=1241 amount=-1 -kerning first=200 second=8220 amount=-3 -kerning first=8365 second=1263 amount=-1 -kerning first=901 second=357 amount=-1 -kerning first=904 second=117 amount=-1 -kerning first=86 second=326 amount=-2 -kerning first=1116 second=269 amount=-2 -kerning first=271 second=1066 amount=-5 -kerning first=8212 second=256 amount=-2 -kerning first=302 second=240 amount=-1 -kerning first=1084 second=283 amount=-1 -kerning first=207 second=943 amount=-1 -kerning first=8378 second=333 amount=-1 -kerning first=910 second=67 amount=-3 -kerning first=93 second=39 amount=-3 -kerning first=1168 second=217 amount=-2 -kerning first=90 second=266 amount=-1 -kerning first=345 second=8222 amount=-3 -kerning first=948 second=229 amount=-1 -kerning first=356 second=79 amount=-1 -kerning first=1220 second=119 amount=-4 -kerning first=376 second=241 amount=-3 -kerning first=967 second=1195 amount=-1 -kerning first=169 second=103 amount=-1 -kerning first=48 second=355 amount=-1 -kerning first=51 second=115 amount=-1 -kerning first=191 second=267 amount=-1 -kerning first=94 second=214 amount=-2 -kerning first=1118 second=947 amount=-4 -kerning first=354 second=945 amount=-3 -kerning first=117 second=116 amount=-1 -kerning first=971 second=1069 amount=-1 -kerning first=167 second=972 amount=-1 -kerning first=170 second=281 amount=-1 -kerning first=8225 second=121 amount=-1 -kerning first=55 second=65 amount=-5 -kerning first=1087 second=1263 amount=-1 -kerning first=75 second=227 amount=-1 -kerning first=215 second=357 amount=-1 -kerning first=95 second=369 amount=-1 -kerning first=950 second=1085 amount=-2 -kerning first=1033 second=256 amount=-1 -kerning first=175 second=228 amount=-1 -kerning first=289 second=118 amount=-4 -kerning first=56 second=240 amount=-1 -kerning first=1070 second=193 amount=-2 -kerning first=193 second=1194 amount=-2 -kerning first=196 second=370 amount=-2 -kerning first=314 second=283 amount=-1 -kerning first=8361 second=233 amount=-1 -kerning first=73 second=1256 amount=-2 -kerning first=1099 second=333 amount=-1 -kerning first=216 second=1044 amount=-1 -kerning first=1176 second=949 amount=-1 -kerning first=365 second=119 amount=-4 -kerning first=958 second=271 amount=-1 -kerning first=954 second=963 amount=-2 -kerning first=37 second=253 amount=-1 -kerning first=172 second=1257 amount=-1 -kerning first=1071 second=346 amount=-1 -kerning first=318 second=230 amount=-1 -kerning first=1103 second=273 amount=-1 -kerning first=223 second=242 amount=-1 -kerning first=220 second=923 amount=-2 -kerning first=338 second=947 amount=-4 -kerning first=934 second=287 amount=-1 -kerning first=100 second=945 amount=-1 -kerning first=240 second=1262 amount=-2 -kerning first=963 second=219 amount=-2 -kerning first=1298 second=1108 amount=-1 -kerning first=271 second=81 amount=-2 -kerning first=296 second=243 amount=-1 -kerning first=1073 second=1028 amount=-2 -kerning first=316 second=1263 amount=-1 -kerning first=8366 second=336 amount=-2 -kerning first=84 second=269 amount=-3 -kerning first=247 second=332 amount=-2 -kerning first=964 second=374 amount=-5 -kerning first=961 second=1203 amount=-2 -kerning first=163 second=106 amount=1 -kerning first=45 second=118 amount=-1 -kerning first=1049 second=71 amount=-2 -kerning first=182 second=962 amount=-1 -kerning first=65 second=283 amount=-1 -kerning first=1081 second=233 amount=-1 -kerning first=325 second=333 amount=-1 -kerning first=903 second=245 amount=-1 -kerning first=108 second=359 amount=-1 -kerning first=111 second=119 amount=-1 -kerning first=1186 second=8211 amount=-2 -kerning first=251 second=271 amount=-1 -kerning first=374 second=194 amount=-5 -kerning first=971 second=84 amount=-5 -kerning first=161 second=1026 amount=-5 -kerning first=164 second=286 amount=-2 -kerning first=1051 second=246 amount=-1 -kerning first=189 second=218 amount=-2 -kerning first=301 second=346 amount=-1 -kerning first=69 second=230 amount=-1 -kerning first=209 second=360 amount=-2 -kerning first=326 second=964 amount=-1 -kerning first=330 second=273 amount=-1 -kerning first=86 second=947 amount=-4 -kerning first=1170 second=85 amount=-2 -kerning first=946 second=335 amount=-1 -kerning first=950 second=97 amount=-1 -kerning first=255 second=219 amount=-2 -kerning first=372 second=1108 amount=-3 -kerning first=375 second=347 amount=-1 -kerning first=1026 second=34 amount=-3 -kerning first=168 second=231 amount=-1 -kerning first=275 second=1175 amount=-2 -kerning first=278 second=361 amount=-1 -kerning first=50 second=243 amount=-1 -kerning first=190 second=373 amount=-4 -kerning first=187 second=1202 amount=-3 -kerning first=302 second=1028 amount=-2 -kerning first=305 second=288 amount=-2 -kerning first=910 second=350 amount=-1 -kerning first=236 second=232 amount=-1 -kerning first=948 second=966 amount=-1 -kerning first=951 second=275 amount=-1 -kerning first=1256 second=197 amount=-2 -kerning first=256 second=374 amount=-5 -kerning first=376 second=1033 amount=-5 -kerning first=287 second=71 amount=-2 -kerning first=8220 second=940 amount=-1 -kerning first=8224 second=249 amount=-1 -kerning first=197 second=83 amount=-1 -kerning first=311 second=233 amount=-2 -kerning first=74 second=333 amount=-1 -kerning first=916 second=290 amount=-2 -kerning first=94 second=949 amount=-1 -kerning first=234 second=1299 amount=-1 -kerning first=354 second=8211 amount=-4 -kerning first=174 second=334 amount=-2 -kerning first=170 second=1090 amount=-3 -kerning first=8240 second=199 amount=-2 -kerning first=55 second=346 amount=-1 -kerning first=1066 second=1035 amount=-5 -kerning first=78 second=273 amount=-1 -kerning first=8363 second=101 amount=-1 -kerning first=75 second=964 amount=-4 -kerning first=928 second=235 amount=-1 -kerning first=121 second=347 amount=-1 -kerning first=118 second=1108 amount=-1 -kerning first=269 second=34 amount=-1 -kerning first=36 second=361 amount=-1 -kerning first=1026 second=8216 amount=-3 -kerning first=175 second=965 amount=-1 -kerning first=8226 second=1118 amount=-1 -kerning first=8249 second=354 amount=-1 -kerning first=56 second=1028 amount=-2 -kerning first=59 second=288 amount=-2 -kerning first=317 second=336 amount=-2 -kerning first=8364 second=279 amount=-1 -kerning first=8361 second=970 amount=-1 -kerning first=1102 second=378 amount=-1 -kerning first=1176 second=8217 amount=-3 -kerning first=248 second=47 amount=-1 -kerning first=368 second=197 amount=-2 -kerning first=965 second=87 amount=-5 -kerning first=125 second=289 amount=-1 -kerning first=43 second=71 amount=-2 -kerning first=1037 second=940 amount=-1 -kerning first=1041 second=249 amount=-1 -kerning first=183 second=221 amount=-5 -kerning first=298 second=111 amount=-1 -kerning first=63 second=233 amount=-1 -kerning first=203 second=363 amount=-1 -kerning first=200 second=1177 amount=-1 -kerning first=8370 second=226 amount=-1 -kerning first=100 second=8211 amount=-2 -kerning first=1187 second=941 amount=-1 -kerning first=369 second=352 amount=-1 -kerning first=372 second=112 amount=-2 -kerning first=162 second=234 amount=-1 -kerning first=271 second=364 amount=-2 -kerning first=1048 second=199 amount=-2 -kerning first=184 second=376 amount=-5 -kerning first=296 second=1035 amount=-5 -kerning first=299 second=291 amount=-1 -kerning first=1076 second=1098 amount=-2 -kerning first=1080 second=339 amount=-1 -kerning first=204 second=1059 amount=-2 -kerning first=201 second=8212 amount=-2 -kerning first=1084 second=101 amount=-1 -kerning first=905 second=113 amount=-1 -kerning first=902 second=353 amount=-1 -kerning first=84 second=1074 amount=-2 -kerning first=1117 second=263 amount=-1 -kerning first=269 second=8216 amount=-1 -kerning first=1046 second=1118 amount=-1 -kerning first=1049 second=354 amount=-5 -kerning first=182 second=8250 amount=-1 -kerning first=1081 second=970 amount=-1 -kerning first=1085 second=279 amount=-1 -kerning first=88 second=952 amount=-2 -kerning first=1210 second=355 amount=-1 -kerning first=1223 second=115 amount=-1 -kerning first=968 second=1185 amount=-3 -kerning first=971 second=367 amount=-1 -kerning first=167 second=337 amount=-1 -kerning first=170 second=99 amount=-1 -kerning first=280 second=249 amount=-1 -kerning first=52 second=111 amount=-1 -kerning first=1051 second=1038 amount=-2 -kerning first=49 second=351 amount=-1 -kerning first=192 second=261 amount=-1 -kerning first=189 second=953 amount=-1 -kerning first=1095 second=226 amount=-1 -kerning first=336 second=88 amount=-3 -kerning first=95 second=210 amount=-2 -kerning first=1170 second=368 amount=-2 -kerning first=238 second=100 amount=-1 -kerning first=358 second=250 amount=-1 -kerning first=258 second=262 amount=-2 -kerning first=1262 second=65 amount=-2 -kerning first=378 second=1241 amount=-1 -kerning first=168 second=968 amount=-1 -kerning first=8222 second=357 amount=-1 -kerning first=8226 second=117 amount=-1 -kerning first=50 second=1035 amount=-5 -kerning first=53 second=291 amount=-1 -kerning first=196 second=211 amount=-2 -kerning first=305 second=1098 amount=-3 -kerning first=314 second=101 amount=-1 -kerning first=310 second=339 amount=-2 -kerning first=334 second=955 amount=-2 -kerning first=96 second=365 amount=-1 -kerning first=1171 second=1066 amount=-5 -kerning first=1168 second=8221 amount=-3 -kerning first=1263 second=240 amount=-1 -kerning first=1256 second=916 amount=-2 -kerning first=1027 second=943 amount=-1 -kerning first=176 second=224 amount=-1 -kerning first=287 second=354 amount=-5 -kerning first=282 second=1118 amount=-1 -kerning first=194 second=1184 amount=-5 -kerning first=197 second=366 amount=-2 -kerning first=315 second=279 amount=-1 -kerning first=80 second=171 amount=-3 -kerning first=94 second=8217 amount=-3 -kerning first=934 second=103 amount=-1 -kerning first=1184 second=253 amount=-2 -kerning first=363 second=355 amount=-1 -kerning first=960 second=267 amount=-1 -kerning first=260 second=1185 amount=-3 -kerning first=38 second=249 amount=-1 -kerning first=35 second=940 amount=-1 -kerning first=8260 second=242 amount=-1 -kerning first=8363 second=1240 amount=-2 -kerning first=321 second=226 amount=-1 -kerning first=928 second=972 amount=-1 -kerning first=936 second=281 amount=-1 -kerning first=244 second=380 amount=-1 -kerning first=370 second=65 amount=-2 -kerning first=124 second=1241 amount=-1 -kerning first=160 second=187 amount=-1 -kerning first=261 second=8220 amount=-1 -kerning first=42 second=199 amount=-2 -kerning first=1039 second=357 amount=-1 -kerning first=178 second=1079 amount=-1 -kerning first=185 second=89 amount=-5 -kerning first=1046 second=117 amount=-1 -kerning first=59 second=1098 amount=-3 -kerning first=62 second=339 amount=-1 -kerning first=1074 second=973 amount=-1 -kerning first=65 second=101 amount=-1 -kerning first=205 second=251 amount=-1 -kerning first=8369 second=332 amount=-2 -kerning first=88 second=38 amount=-2 -kerning first=942 second=228 amount=-1 -kerning first=371 second=240 amount=-1 -kerning first=368 second=916 amount=-2 -kerning first=962 second=1194 amount=-2 -kerning first=965 second=370 amount=-2 -kerning first=274 second=252 amount=-1 -kerning first=43 second=354 amount=-5 -kerning first=40 second=1118 amount=-1 -kerning first=1051 second=67 amount=-2 -kerning first=186 second=266 amount=-2 -kerning first=189 second=39 amount=-3 -kerning first=63 second=970 amount=-1 -kerning first=1083 second=229 amount=-1 -kerning first=8370 second=963 amount=-1 -kerning first=8377 second=271 amount=-1 -kerning first=901 second=920 amount=-2 -kerning first=89 second=213 amount=-3 -kerning first=252 second=267 amount=-1 -kerning first=1241 second=1083 amount=-1 -kerning first=44 second=1038 amount=-1 -kerning first=190 second=214 amount=-2 -kerning first=299 second=1101 amount=-1 -kerning first=70 second=226 amount=-1 -kerning first=1080 second=1262 amount=-2 -kerning first=1084 second=1240 amount=-2 -kerning first=210 second=356 amount=-2 -kerning first=1117 second=1069 amount=-1 -kerning first=1171 second=81 amount=-2 -kerning first=1220 second=243 amount=-1 -kerning first=376 second=343 amount=-3 -kerning first=169 second=227 amount=-1 -kerning first=282 second=117 amount=-1 -kerning first=191 second=369 amount=-1 -kerning first=303 second=973 amount=-1 -kerning first=916 second=106 amount=1 -kerning first=91 second=1066 amount=-5 -kerning first=237 second=228 amount=-1 -kerning first=117 second=240 amount=-1 -kerning first=254 second=1194 amount=-2 -kerning first=380 second=283 amount=-1 -kerning first=167 second=1256 amount=-2 -kerning first=8225 second=245 amount=-1 -kerning first=198 second=79 amount=-2 -kerning first=1095 second=963 amount=-1 -kerning first=1101 second=44 amount=-1 -kerning first=215 second=920 amount=-2 -kerning first=912 second=1026 amount=-5 -kerning first=956 second=218 amount=-2 -kerning first=289 second=242 amount=-1 -kerning first=53 second=1101 amount=-1 -kerning first=196 second=945 amount=-1 -kerning first=314 second=1240 amount=-2 -kerning first=8361 second=335 amount=-1 -kerning first=8364 second=97 amount=-1 -kerning first=931 second=231 amount=-1 -kerning first=365 second=243 amount=-1 -kerning first=958 second=373 amount=-4 -kerning first=1263 second=1028 amount=-2 -kerning first=37 second=357 amount=-1 -kerning first=40 second=117 amount=-1 -kerning first=179 second=269 amount=-1 -kerning first=8250 second=350 amount=-1 -kerning first=57 second=973 amount=-1 -kerning first=1075 second=232 amount=-1 -kerning first=318 second=332 amount=-2 -kerning first=8365 second=275 amount=-1 -kerning first=1100 second=1203 amount=-2 -kerning first=1103 second=374 amount=-5 -kerning first=226 second=106 amount=1 -kerning first=126 second=283 amount=-1 -kerning first=44 second=67 amount=-1 -kerning first=1044 second=245 amount=-1 -kerning first=184 second=217 amount=-2 -kerning first=64 second=229 amount=-1 -kerning first=1073 second=1299 amount=-1 -kerning first=207 second=119 amount=-4 -kerning first=204 second=359 amount=-1 -kerning first=321 second=963 amount=-1 -kerning first=84 second=371 amount=-2 -kerning first=1117 second=84 amount=-5 -kerning first=936 second=1090 amount=-3 -kerning first=1202 second=246 amount=-1 -kerning first=250 second=218 amount=-2 -kerning first=163 second=230 amount=-1 -kerning first=273 second=360 amount=-2 -kerning first=182 second=947 amount=-4 -kerning first=185 second=372 amount=-5 -kerning first=300 second=287 amount=-1 -kerning first=65 second=1240 amount=-2 -kerning first=62 second=1262 amount=-2 -kerning first=1081 second=335 amount=-1 -kerning first=1085 second=97 amount=-1 -kerning first=900 second=1108 amount=-1 -kerning first=903 second=347 amount=-1 -kerning first=91 second=81 amount=-2 -kerning first=1118 second=259 amount=-1 -kerning first=346 second=1175 amount=-1 -kerning first=354 second=121 amount=-2 -kerning first=942 second=965 amount=-1 -kerning first=251 second=373 amount=-4 -kerning first=371 second=1028 amount=-2 -kerning first=374 second=288 amount=-3 -kerning first=161 second=1263 amount=-1 -kerning first=8217 second=248 amount=-1 -kerning first=1051 second=350 amount=-1 -kerning first=304 second=232 amount=-1 -kerning first=69 second=332 amount=-2 -kerning first=1083 second=966 amount=-1 -kerning first=1087 second=275 amount=-1 -kerning first=330 second=374 amount=-5 -kerning first=358 second=71 amount=-2 -kerning first=950 second=221 amount=-5 -kerning first=1224 second=111 amount=-1 -kerning first=1219 second=351 amount=-1 -kerning first=258 second=83 amount=-1 -kerning first=378 second=233 amount=-1 -kerning first=168 second=333 amount=-1 -kerning first=1064 second=290 amount=-2 -kerning first=190 second=949 amount=-1 -kerning first=193 second=257 amount=-1 -kerning first=70 second=963 amount=-1 -kerning first=73 second=271 amount=-1 -kerning first=216 second=194 amount=-2 -kerning first=915 second=234 amount=-1 -kerning first=1171 second=364 amount=-2 -kerning first=233 second=1090 amount=-1 -kerning first=236 second=334 amount=-2 -kerning first=951 second=376 amount=-5 -kerning first=113 second=1107 amount=2 -kerning first=1220 second=1035 amount=-5 -kerning first=256 second=950 amount=-1 -kerning first=973 second=1059 amount=-2 -kerning first=172 second=273 amount=-1 -kerning first=176 second=45 amount=-2 -kerning first=169 second=964 amount=-3 -kerning first=8224 second=353 amount=-1 -kerning first=54 second=287 amount=-1 -kerning first=311 second=335 amount=-2 -kerning first=77 second=219 amount=-2 -kerning first=214 second=1108 amount=-1 -kerning first=338 second=259 amount=-1 -kerning first=100 second=121 amount=-1 -kerning first=1184 second=74 amount=-1 -kerning first=237 second=965 amount=-1 -kerning first=243 second=46 amount=-1 -kerning first=117 second=1028 amount=-2 -kerning first=1035 second=248 amount=-1 -kerning first=177 second=220 amount=-2 -kerning first=283 second=1113 amount=-1 -kerning first=58 second=232 amount=-1 -kerning first=198 second=362 amount=-2 -kerning first=195 second=1176 amount=-1 -kerning first=313 second=966 amount=-1 -kerning first=316 second=275 amount=-1 -kerning first=8363 second=225 amount=-1 -kerning first=78 second=374 amount=-5 -kerning first=218 second=1033 amount=-1 -kerning first=221 second=289 amount=-4 -kerning first=928 second=337 amount=-1 -kerning first=936 second=99 amount=-1 -kerning first=1178 second=940 amount=-1 -kerning first=367 second=111 amount=-1 -kerning first=956 second=953 amount=-1 -kerning first=124 second=233 amount=-1 -kerning first=1240 second=967 amount=-1 -kerning first=39 second=245 amount=-1 -kerning first=178 second=375 amount=-1 -kerning first=294 second=290 amount=-2 -kerning first=1074 second=338 amount=-2 -kerning first=196 second=8211 amount=-2 -kerning first=199 second=1051 amount=-1 -kerning first=1078 second=100 amount=-2 -kerning first=931 second=968 amount=-1 -kerning first=105 second=246 amount=-1 -kerning first=365 second=1035 amount=-5 -kerning first=965 second=211 amount=-2 -kerning first=262 second=8212 amount=-1 -kerning first=1041 second=353 amount=-1 -kerning first=176 second=8249 amount=-3 -kerning first=186 second=85 amount=-2 -kerning first=298 second=235 amount=-1 -kerning first=63 second=335 amount=-1 -kerning first=86 second=259 amount=-1 -kerning first=963 second=1184 amount=-5 -kerning first=162 second=336 amount=-2 -kerning first=1241 second=378 amount=-1 -kerning first=47 second=110 amount=-1 -kerning first=187 second=260 amount=-3 -kerning first=70 second=47 amount=-2 -kerning first=64 second=966 amount=-1 -kerning first=1084 second=225 amount=-1 -kerning first=210 second=197 amount=-2 -kerning first=8378 second=267 amount=-1 -kerning first=1117 second=367 amount=-1 -kerning first=113 second=111 amount=-1 -kerning first=1202 second=1038 amount=-1 -kerning first=253 second=261 amount=-1 -kerning first=250 second=953 amount=-1 -kerning first=48 second=290 amount=-2 -kerning first=191 second=210 amount=-2 -kerning first=303 second=338 amount=-2 -kerning first=306 second=100 amount=-1 -kerning first=906 second=1241 amount=-1 -kerning first=91 second=364 amount=-2 -kerning first=357 second=199 amount=-2 -kerning first=952 second=89 amount=-5 -kerning first=114 second=291 amount=-1 -kerning first=374 second=1098 amount=-2 -kerning first=377 second=339 amount=-1 -kerning first=380 second=101 amount=-1 -kerning first=280 second=353 amount=-1 -kerning first=52 second=235 amount=-1 -kerning first=192 second=365 amount=-1 -kerning first=1170 second=943 amount=-1 -kerning first=238 second=224 amount=-1 -kerning first=358 second=354 amount=-5 -kerning first=956 second=39 amount=-3 -kerning first=255 second=1184 amount=-5 -kerning first=258 second=366 amount=-2 -kerning first=381 second=279 amount=-1 -kerning first=175 second=171 amount=-3 -kerning first=8222 second=920 amount=-1 -kerning first=193 second=1063 amount=-3 -kerning first=190 second=8217 amount=-3 -kerning first=314 second=225 amount=-1 -kerning first=79 second=87 amount=-2 -kerning first=1099 second=267 amount=-1 -kerning first=96 second=940 amount=-1 -kerning first=958 second=214 amount=-2 -kerning first=1037 second=116 amount=-1 -kerning first=1034 second=356 amount=-5 -kerning first=57 second=338 amount=-2 -kerning first=60 second=100 amount=-1 -kerning first=1071 second=281 amount=-1 -kerning first=200 second=250 amount=-1 -kerning first=197 second=941 amount=-1 -kerning first=80 second=262 amount=-2 -kerning first=223 second=187 amount=-1 -kerning first=335 second=8220 amount=-1 -kerning first=934 second=227 amount=-1 -kerning first=103 second=199 amount=-2 -kerning first=1184 second=357 amount=-1 -kerning first=240 second=1079 amount=-1 -kerning first=960 second=369 amount=-1 -kerning first=123 second=339 amount=-1 -kerning first=1298 second=973 amount=-1 -kerning first=126 second=101 amount=-1 -kerning first=41 second=113 amount=-1 -kerning first=38 second=353 amount=-1 -kerning first=180 second=263 amount=-1 -kerning first=8363 second=962 amount=-1 -kerning first=84 second=212 amount=-1 -kerning first=221 second=1099 amount=-3 -kerning first=227 second=102 amount=-1 -kerning first=928 second=1256 amount=-2 -kerning first=1202 second=67 amount=-1 -kerning first=247 second=266 amount=-2 -kerning first=250 second=39 amount=-3 -kerning first=967 second=79 amount=-2 -kerning first=160 second=279 amount=-1 -kerning first=124 second=970 amount=-1 -kerning first=1039 second=920 amount=-2 -kerning first=185 second=213 amount=-2 -kerning first=300 second=103 amount=-1 -kerning first=65 second=225 amount=-1 -kerning first=1074 second=1257 amount=-1 -kerning first=205 second=355 amount=-1 -kerning first=325 second=267 amount=-1 -kerning first=105 second=1038 amount=-2 -kerning first=1203 second=242 amount=-1 -kerning first=251 second=214 amount=-2 -kerning first=965 second=945 amount=-1 -kerning first=164 second=226 amount=-1 -kerning first=274 second=356 amount=-5 -kerning first=186 second=368 amount=-2 -kerning first=298 second=972 amount=-1 -kerning first=301 second=281 amount=-1 -kerning first=212 second=65 amount=-2 -kerning first=8377 second=373 amount=-4 -kerning first=946 second=269 amount=-1 -kerning first=252 second=369 amount=-1 -kerning first=372 second=973 amount=-2 -kerning first=1064 second=106 amount=1 -kerning first=184 second=8221 amount=-3 -kerning first=187 second=1066 amount=-3 -kerning first=305 second=228 amount=-1 -kerning first=1084 second=962 amount=-1 -kerning first=210 second=916 amount=-2 -kerning first=327 second=1194 amount=-2 -kerning first=910 second=283 amount=-4 -kerning first=93 second=252 amount=-1 -kerning first=233 second=382 amount=-1 -kerning first=951 second=217 amount=-2 -kerning first=1027 second=119 amount=-4 -kerning first=973 second=359 amount=-1 -kerning first=54 second=103 amount=-1 -kerning first=1062 second=1026 amount=-2 -kerning first=1065 second=286 amount=-1 -kerning first=194 second=253 amount=-1 -kerning first=303 second=1257 amount=-1 -kerning first=74 second=267 amount=-1 -kerning first=916 second=230 amount=-1 -kerning first=1174 second=360 amount=-1 -kerning first=234 second=1083 amount=-1 -kerning first=1177 second=120 amount=-1 -kerning first=949 second=947 amount=-1 -kerning first=952 second=372 amount=-5 -kerning first=35 second=116 amount=-1 -kerning first=174 second=268 amount=-2 -kerning first=8225 second=347 amount=-1 -kerning first=8221 second=1108 amount=-1 -kerning first=52 second=972 amount=-1 -kerning first=55 second=281 amount=-1 -kerning first=912 second=1263 amount=-1 -kerning first=1299 second=232 amount=-1 -kerning first=1036 second=244 amount=-2 -kerning first=178 second=216 amount=-2 -kerning first=294 second=106 amount=1 -kerning first=59 second=228 amount=-1 -kerning first=202 second=118 amount=-4 -kerning first=314 second=962 amount=-1 -kerning first=8364 second=221 amount=-5 -kerning first=76 second=1194 amount=-1 -kerning first=931 second=333 amount=-1 -kerning first=105 second=67 amount=-2 -kerning first=1186 second=245 amount=-1 -kerning first=958 second=949 amount=-1 -kerning first=962 second=257 amount=-1 -kerning first=125 second=229 amount=-1 -kerning first=37 second=920 amount=-2 -kerning first=176 second=1195 amount=-1 -kerning first=179 second=371 amount=-1 -kerning first=290 second=1026 amount=-1 -kerning first=57 second=1257 amount=-1 -kerning first=1071 second=1090 amount=-3 -kerning first=323 second=218 amount=-2 -kerning first=8365 second=376 amount=-5 -kerning first=934 second=964 amount=-3 -kerning first=347 second=120 amount=-1 -kerning first=243 second=947 amount=-1 -kerning first=369 second=287 amount=-1 -kerning first=123 second=1262 amount=-2 -kerning first=126 second=1240 amount=-2 -kerning first=180 second=1069 amount=-1 -kerning first=299 second=231 amount=-1 -kerning first=207 second=243 amount=-1 -kerning first=324 second=373 amount=-1 -kerning first=8363 second=8250 amount=-1 -kerning first=902 second=288 amount=-2 -kerning first=944 second=220 amount=-2 -kerning first=373 second=232 amount=-1 -kerning first=967 second=362 amount=-2 -kerning first=964 second=1176 amount=-1 -kerning first=163 second=332 amount=-2 -kerning first=276 second=244 amount=-1 -kerning first=8216 second=197 amount=-3 -kerning first=1049 second=289 amount=-1 -kerning first=48 second=106 amount=1 -kerning first=65 second=962 amount=-1 -kerning first=1085 second=221 amount=-5 -kerning first=211 second=193 amount=-2 -kerning first=906 second=233 amount=-1 -kerning first=1118 second=363 amount=-1 -kerning first=354 second=245 amount=-3 -kerning first=1210 second=290 amount=-2 -kerning first=251 second=949 amount=-1 -kerning first=254 second=257 amount=-1 -kerning first=965 second=8211 amount=-2 -kerning first=164 second=963 amount=-1 -kerning first=167 second=271 amount=-1 -kerning first=49 second=286 amount=-2 -kerning first=1063 second=234 amount=-1 -kerning first=46 second=1026 amount=-5 -kerning first=301 second=1090 amount=-3 -kerning first=304 second=334 amount=-2 -kerning first=72 second=218 amount=-2 -kerning first=1087 second=376 amount=-5 -kerning first=92 second=360 amount=-2 -kerning first=1116 second=8212 amount=-3 -kerning first=1119 second=1059 amount=-2 -kerning first=232 second=964 amount=-1 -kerning first=238 second=45 amount=-2 -kerning first=1224 second=235 amount=-1 -kerning first=378 second=335 amount=-1 -kerning first=278 second=1108 amount=-1 -kerning first=53 second=231 amount=-1 -kerning first=193 second=361 amount=-1 -kerning first=305 second=965 amount=-1 -kerning first=196 second=121 amount=-1 -kerning first=73 second=373 amount=-4 -kerning first=1084 second=8250 amount=-1 -kerning first=915 second=336 amount=-2 -kerning first=1176 second=248 amount=-1 -kerning first=239 second=220 amount=-2 -kerning first=119 second=232 amount=-1 -kerning first=256 second=1176 amount=-1 -kerning first=379 second=966 amount=-1 -kerning first=382 second=275 amount=-1 -kerning first=34 second=244 amount=-1 -kerning first=1034 second=197 amount=-1 -kerning first=172 second=374 amount=-5 -kerning first=287 second=289 amount=-1 -kerning first=1071 second=99 amount=-1 -kerning first=200 second=71 amount=-2 -kerning first=315 second=221 amount=-6 -kerning first=80 second=83 amount=-1 -kerning first=338 second=363 amount=-1 -kerning first=100 second=245 amount=-1 -kerning first=240 second=375 amount=-1 -kerning first=363 second=290 amount=-2 -kerning first=960 second=210 amount=-2 -kerning first=1298 second=338 amount=-2 -kerning first=38 second=194 amount=-1 -kerning first=1035 second=352 amount=-1 -kerning first=180 second=84 amount=-5 -kerning first=291 second=234 amount=-1 -kerning first=8240 second=1241 amount=-1 -kerning first=8260 second=187 amount=-1 -kerning first=55 second=1090 amount=-3 -kerning first=58 second=334 amount=-2 -kerning first=1073 second=277 amount=-1 -kerning first=201 second=246 amount=-1 -kerning first=316 second=376 amount=-5 -kerning first=8366 second=89 amount=-5 -kerning first=81 second=258 amount=-2 -kerning first=1185 second=353 amount=-1 -kerning first=238 second=8249 amount=-3 -kerning first=247 second=85 amount=-2 -kerning first=367 second=235 amount=-1 -kerning first=124 second=335 amount=-1 -kerning first=160 second=97 amount=-1 -kerning first=36 second=1108 amount=-1 -kerning first=39 second=347 amount=-1 -kerning first=182 second=259 amount=-1 -kerning first=185 second=34 amount=-3 -kerning first=59 second=965 amount=-1 -kerning first=1078 second=224 amount=-1 -kerning first=314 second=8250 amount=-1 -kerning first=8369 second=266 amount=-2 -kerning first=942 second=171 amount=-3 -kerning first=105 second=350 amount=-1 -kerning first=958 second=8217 amount=-3 -kerning first=125 second=966 amount=-1 -kerning first=161 second=275 amount=-1 -kerning first=43 second=289 amount=-1 -kerning first=298 second=337 amount=-1 -kerning first=301 second=99 amount=-1 -kerning first=66 second=221 amount=-2 -kerning first=206 second=351 amount=-1 -kerning first=209 second=111 amount=-1 -kerning first=323 second=953 amount=-1 -kerning first=8377 second=214 amount=-2 -kerning first=86 second=363 amount=-1 -kerning first=352 second=198 amount=-1 -kerning first=252 second=210 amount=-2 -kerning first=375 second=100 amount=-1 -kerning first=372 second=338 amount=-2 -kerning first=47 second=234 amount=-2 -kerning first=1048 second=1241 amount=-1 -kerning first=299 second=968 amount=-1 -kerning first=302 second=277 amount=-1 -kerning first=67 second=376 amount=-2 -kerning first=1080 second=1079 amount=-1 -kerning first=207 second=1035 amount=-5 -kerning first=8378 second=369 amount=-1 -kerning first=902 second=1098 amount=-3 -kerning first=905 second=339 amount=-1 -kerning first=84 second=8212 amount=-4 -kerning first=910 second=101 amount=-4 -kerning first=1168 second=251 amount=-1 -kerning first=356 second=113 amount=-3 -kerning first=948 second=263 amount=-1 -kerning first=113 second=235 amount=-1 -kerning first=253 second=365 amount=-1 -kerning first=373 second=969 amount=-1 -kerning first=8216 second=916 amount=-3 -kerning first=8220 second=240 amount=-1 -kerning first=185 second=8216 amount=-3 -kerning first=194 second=74 amount=-1 -kerning first=306 second=224 amount=-1 -kerning first=65 second=8250 amount=-1 -kerning first=906 second=970 amount=-1 -kerning first=94 second=248 amount=-1 -kerning first=234 second=378 amount=-1 -kerning first=237 second=171 amount=-3 -kerning first=952 second=213 amount=-2 -kerning first=251 second=8217 amount=-3 -kerning first=174 second=87 amount=-5 -kerning first=52 second=337 amount=-1 -kerning first=55 second=99 amount=-1 -kerning first=192 second=940 amount=-1 -kerning first=195 second=249 amount=-1 -kerning first=72 second=953 amount=-1 -kerning first=75 second=261 amount=-1 -kerning first=235 second=1078 amount=-2 -kerning first=121 second=100 amount=-1 -kerning first=258 second=941 amount=-1 -kerning first=1224 second=972 amount=-1 -kerning first=175 second=262 amount=-2 -kerning first=289 second=187 amount=-1 -kerning first=53 second=968 amount=-1 -kerning first=56 second=277 amount=-1 -kerning first=310 second=1079 amount=-1 -kerning first=317 second=89 amount=-5 -kerning first=8361 second=269 amount=-1 -kerning first=1099 second=369 amount=-1 -kerning first=102 second=113 amount=-1 -kerning first=951 second=8221 amount=-3 -kerning first=119 second=969 amount=-1 -kerning first=1037 second=240 amount=-1 -kerning first=179 second=212 amount=-2 -kerning first=1034 second=916 amount=-1 -kerning first=295 second=102 amount=-1 -kerning first=60 second=224 amount=-1 -kerning first=200 second=354 amount=-5 -kerning first=197 second=1118 amount=-1 -kerning first=318 second=266 amount=-2 -kerning first=323 second=39 amount=-3 -kerning first=8365 second=217 amount=-2 -kerning first=77 second=1184 amount=-5 -kerning first=80 second=366 amount=-2 -kerning first=223 second=279 amount=-1 -kerning first=1184 second=920 amount=-3 -kerning first=369 second=103 amount=-1 -kerning first=963 second=253 amount=-1 -kerning first=126 second=225 amount=-1 -kerning first=1298 second=1257 amount=-1 -kerning first=271 second=115 amount=-1 -kerning first=177 second=1185 amount=-3 -kerning first=180 second=367 amount=-1 -kerning first=1073 second=1083 amount=-1 -kerning first=201 second=1038 amount=-2 -kerning first=8363 second=947 amount=-4 -kerning first=8366 second=372 amount=-5 -kerning first=247 second=368 amount=-2 -kerning first=367 second=972 amount=-1 -kerning first=42 second=1241 amount=-1 -kerning first=178 second=8220 amount=-3 -kerning first=300 second=227 amount=-1 -kerning first=62 second=1079 amount=-1 -kerning first=1081 second=269 amount=-1 -kerning first=68 second=89 amount=-3 -kerning first=325 second=369 amount=-1 -kerning first=900 second=973 amount=-1 -kerning first=88 second=251 amount=-1 -kerning first=1210 second=106 amount=1 -kerning first=245 second=8221 amount=-1 -kerning first=374 second=228 amount=-4 -kerning first=971 second=118 amount=-4 -kerning first=8217 second=193 amount=-3 -kerning first=1051 second=283 amount=-1 -kerning first=186 second=943 amount=-1 -kerning first=189 second=252 amount=-1 -kerning first=298 second=1256 amount=-2 -kerning first=69 second=266 amount=-2 -kerning first=72 second=39 amount=-3 -kerning first=1087 second=217 amount=-2 -kerning first=8377 second=949 amount=-1 -kerning first=1119 second=359 amount=-1 -kerning first=1170 second=119 amount=-4 -kerning first=946 second=371 amount=-1 -kerning first=1206 second=1026 amount=-2 -kerning first=1219 second=286 amount=-2 -kerning first=255 second=253 amount=-1 -kerning first=372 second=1257 amount=-3 -kerning first=168 second=267 amount=-1 -kerning first=1064 second=230 amount=-1 -kerning first=73 second=214 amount=-2 -kerning first=1084 second=947 amount=-4 -kerning first=905 second=1262 amount=-2 -kerning first=910 second=1240 amount=-3 -kerning first=93 second=356 amount=-5 -kerning first=96 second=116 amount=-1 -kerning first=236 second=268 amount=-2 -kerning first=948 second=1069 amount=-1 -kerning first=113 second=972 amount=-1 -kerning first=376 second=1084 amount=-3 -kerning first=34 second=65 amount=-3 -kerning first=1027 second=243 amount=-1 -kerning first=8224 second=288 amount=-2 -kerning first=54 second=227 amount=-1 -kerning first=194 second=357 amount=-1 -kerning first=197 second=117 amount=-1 -kerning first=311 second=269 amount=-2 -kerning first=74 second=369 amount=-1 -kerning first=214 second=973 amount=-1 -kerning first=916 second=332 amount=-2 -kerning first=240 second=216 amount=-2 -kerning first=363 second=106 amount=1 -kerning first=120 second=228 amount=-1 -kerning first=263 second=118 amount=-1 -kerning first=380 second=962 amount=-1 -kerning first=35 second=240 amount=-1 -kerning first=170 second=1194 amount=-2 -kerning first=174 second=370 amount=-2 -kerning first=8240 second=233 amount=-1 -kerning first=52 second=1256 amount=-2 -kerning first=201 second=67 amount=-2 -kerning first=316 second=217 amount=-2 -kerning first=221 second=229 amount=-4 -kerning first=928 second=271 amount=-1 -kerning first=238 second=1195 amount=-1 -kerning first=361 second=1026 amount=-5 -kerning first=118 second=1257 amount=-1 -kerning first=1299 second=334 amount=-2 -kerning first=1036 second=346 amount=-1 -kerning first=294 second=230 amount=-1 -kerning first=1074 second=273 amount=-1 -kerning first=202 second=242 amount=-1 -kerning first=199 second=923 amount=-1 -kerning first=1078 second=45 amount=-3 -kerning first=314 second=947 amount=-4 -kerning first=317 second=372 amount=-5 -kerning first=8369 second=85 amount=-2 -kerning first=1179 second=1108 amount=-1 -kerning first=962 second=361 amount=-1 -kerning first=965 second=121 amount=-1 -kerning first=1037 second=1028 amount=-2 -kerning first=1041 second=288 amount=-2 -kerning first=63 second=269 amount=-1 -kerning first=901 second=232 amount=-1 -kerning first=1103 second=1176 amount=-1 -kerning first=109 second=106 amount=1 -kerning first=947 second=289 amount=-1 -kerning first=366 second=1298 amount=-1 -kerning first=126 second=962 amount=-1 -kerning first=1048 second=233 amount=-1 -kerning first=299 second=333 amount=-1 -kerning first=1080 second=375 amount=-1 -kerning first=327 second=257 amount=-1 -kerning first=8378 second=210 amount=-2 -kerning first=233 second=44 amount=-1 -kerning first=948 second=84 amount=-5 -kerning first=1207 second=234 amount=-1 -kerning first=166 second=218 amount=-2 -kerning first=276 second=346 amount=-1 -kerning first=8216 second=291 amount=-1 -kerning first=48 second=230 amount=-1 -kerning first=188 second=360 amount=-2 -kerning first=306 second=45 amount=-2 -kerning first=303 second=273 amount=-1 -kerning first=300 second=964 amount=-3 -kerning first=65 second=947 amount=-4 -kerning first=68 second=372 amount=-2 -kerning first=1078 second=8249 amount=-2 -kerning first=906 second=335 amount=-1 -kerning first=88 second=1047 amount=-2 -kerning first=354 second=347 amount=-3 -kerning first=952 second=34 amount=-3 -kerning first=114 second=231 amount=-1 -kerning first=254 second=361 amount=-1 -kerning first=374 second=965 amount=-2 -kerning first=167 second=373 amount=-4 -kerning first=280 second=288 amount=-2 -kerning first=46 second=1263 amount=-1 -kerning first=1063 second=336 amount=-2 -kerning first=215 second=232 amount=-1 -kerning first=330 second=1176 amount=-1 -kerning first=8377 second=8217 amount=-3 -kerning first=912 second=275 amount=-1 -kerning first=920 second=47 amount=-1 -kerning first=95 second=244 amount=-1 -kerning first=232 second=1203 amount=-2 -kerning first=358 second=289 amount=-1 -kerning first=1224 second=337 amount=-1 -kerning first=1026 second=351 amount=-1 -kerning first=175 second=83 amount=-1 -kerning first=53 second=333 amount=-1 -kerning first=196 second=245 amount=-1 -kerning first=310 second=375 amount=-2 -kerning first=73 second=949 amount=-1 -kerning first=1099 second=210 amount=-2 -kerning first=334 second=1051 amount=-1 -kerning first=1176 second=352 amount=-1 -kerning first=1263 second=277 amount=-1 -kerning first=1027 second=1035 amount=-5 -kerning first=8224 second=1098 amount=-3 -kerning first=57 second=273 amount=-1 -kerning first=60 second=45 amount=-2 -kerning first=54 second=964 amount=-3 -kerning first=306 second=8249 amount=-3 -kerning first=318 second=85 amount=-2 -kerning first=223 second=97 amount=-1 -kerning first=100 second=347 amount=-1 -kerning first=246 second=34 amount=-1 -kerning first=952 second=8216 amount=-3 -kerning first=268 second=196 amount=-1 -kerning first=35 second=1028 amount=-2 -kerning first=38 second=288 amount=-2 -kerning first=291 second=336 amount=-2 -kerning first=8260 second=279 amount=-1 -kerning first=61 second=220 amount=-2 -kerning first=8240 second=970 amount=-1 -kerning first=201 second=350 amount=-1 -kerning first=8366 second=213 amount=-2 -kerning first=78 second=1176 amount=-1 -kerning first=84 second=122 amount=-1 -kerning first=221 second=966 amount=-4 -kerning first=367 second=337 amount=-1 -kerning first=964 second=249 amount=-1 -kerning first=160 second=221 amount=-5 -kerning first=273 second=111 amount=-1 -kerning first=42 second=233 amount=-1 -kerning first=182 second=363 amount=-1 -kerning first=178 second=1177 amount=-1 -kerning first=62 second=375 amount=-1 -kerning first=1074 second=1078 amount=-1 -kerning first=205 second=290 amount=-2 -kerning first=325 second=210 amount=-2 -kerning first=8369 second=368 amount=-2 -kerning first=900 second=338 amount=-2 -kerning first=903 second=100 amount=-1 -kerning first=1107 second=941 amount=-1 -kerning first=942 second=262 amount=-2 -kerning first=108 second=234 amount=-1 -kerning first=371 second=277 amount=-1 -kerning first=968 second=199 amount=-2 -kerning first=161 second=376 amount=-5 -kerning first=270 second=1035 amount=-2 -kerning first=274 second=291 amount=-1 -kerning first=1041 second=1098 amount=-3 -kerning first=179 second=8212 amount=-2 -kerning first=183 second=1059 amount=-2 -kerning first=1051 second=101 amount=-1 -kerning first=60 second=8249 amount=-3 -kerning first=69 second=85 amount=-2 -kerning first=1083 second=263 amount=-1 -kerning first=209 second=235 amount=-1 -kerning first=8370 second=1066 amount=-5 -kerning first=8365 second=8221 amount=-3 -kerning first=946 second=212 amount=-2 -kerning first=246 second=8216 amount=-1 -kerning first=375 second=224 amount=-1 -kerning first=126 second=8250 amount=-1 -kerning first=47 second=336 amount=-2 -kerning first=1048 second=970 amount=-1 -kerning first=190 second=248 amount=-1 -kerning first=305 second=171 amount=-3 -kerning first=70 second=260 amount=-4 -kerning first=324 second=8217 amount=-1 -kerning first=910 second=225 amount=-4 -kerning first=1168 second=355 amount=-1 -kerning first=1171 second=115 amount=-1 -kerning first=230 second=1076 amount=-1 -kerning first=236 second=87 amount=-5 -kerning first=948 second=367 amount=-1 -kerning first=944 second=1185 amount=-3 -kerning first=113 second=337 amount=-1 -kerning first=256 second=249 amount=-1 -kerning first=253 second=940 amount=-1 -kerning first=169 second=261 amount=-1 -kerning first=166 second=953 amount=-1 -kerning first=74 second=210 amount=-2 -kerning first=214 second=338 amount=-2 -kerning first=94 second=352 amount=-1 -kerning first=237 second=262 amount=-2 -kerning first=357 second=1241 amount=-1 -kerning first=117 second=277 amount=-1 -kerning first=260 second=199 amount=-2 -kerning first=174 second=211 amount=-2 -kerning first=280 second=1098 amount=-3 -kerning first=195 second=353 amount=-1 -kerning first=198 second=113 amount=-1 -kerning first=313 second=263 amount=-1 -kerning first=75 second=365 amount=-1 -kerning first=1087 second=8221 amount=-3 -kerning first=1095 second=1066 amount=-5 -kerning first=1178 second=240 amount=-1 -kerning first=956 second=252 amount=-1 -kerning first=121 second=224 amount=-1 -kerning first=1224 second=1256 amount=-2 -kerning first=258 second=1118 amount=-1 -kerning first=175 second=366 amount=-2 -kerning first=171 second=1184 amount=-1 -kerning first=289 second=279 amount=-1 -kerning first=59 second=171 amount=-3 -kerning first=317 second=213 amount=-2 -kerning first=8361 second=371 amount=-1 -kerning first=73 second=8217 amount=-3 -kerning first=343 second=115 amount=-1 -kerning first=931 second=267 amount=-1 -kerning first=239 second=1185 amount=-3 -kerning first=8230 second=1262 amount=-1 -kerning first=318 second=368 amount=-2 -kerning first=8370 second=81 amount=-2 -kerning first=80 second=941 amount=-1 -kerning first=103 second=1241 amount=-1 -kerning first=240 second=8220 amount=-3 -kerning first=369 second=227 amount=-1 -kerning first=963 second=357 amount=-1 -kerning first=123 second=1079 amount=-1 -kerning first=162 second=89 amount=-5 -kerning first=38 second=1098 amount=-3 -kerning first=41 second=339 amount=-1 -kerning first=184 second=251 amount=-1 -kerning first=64 second=263 amount=-1 -kerning first=1080 second=216 amount=-2 -kerning first=316 second=8221 amount=-3 -kerning first=321 second=1066 amount=-5 -kerning first=902 second=228 amount=-1 -kerning first=1117 second=118 amount=-4 -kerning first=936 second=1194 amount=-2 -kerning first=110 second=102 amount=-1 -kerning first=1202 second=283 amount=-1 -kerning first=250 second=252 amount=-1 -kerning first=247 second=943 amount=-1 -kerning first=367 second=1256 amount=-2 -kerning first=163 second=266 amount=-2 -kerning first=166 second=39 amount=-3 -kerning first=42 second=970 amount=-1 -kerning first=1049 second=229 amount=-1 -kerning first=1078 second=1195 amount=-2 -kerning first=1081 second=371 amount=-1 -kerning first=900 second=1257 amount=-1 -kerning first=91 second=115 amount=-1 -kerning first=88 second=355 amount=-1 -kerning first=1210 second=230 amount=-1 -kerning first=971 second=242 amount=-1 -kerning first=167 second=214 amount=-2 -kerning first=274 second=1101 amount=-1 -kerning first=8217 second=287 amount=-1 -kerning first=1051 second=1240 amount=-2 -kerning first=49 second=226 amount=-1 -kerning first=189 second=356 amount=-5 -kerning first=192 second=116 amount=-1 -kerning first=304 second=268 amount=-2 -kerning first=69 second=368 amount=-2 -kerning first=1083 second=1069 amount=-1 -kerning first=1095 second=81 amount=-2 -kerning first=209 second=972 amount=-1 -kerning first=1170 second=243 amount=-1 -kerning first=255 second=357 amount=-1 -kerning first=258 second=117 amount=-1 -kerning first=378 second=269 amount=-1 -kerning first=168 second=369 amount=-1 -kerning first=278 second=973 amount=-1 -kerning first=47 second=1224 amount=-1 -kerning first=1064 second=332 amount=-2 -kerning first=310 second=216 amount=-3 -kerning first=70 second=1066 amount=-5 -kerning first=337 second=118 amount=-1 -kerning first=910 second=962 amount=-4 -kerning first=96 second=240 amount=-1 -kerning first=236 second=370 amount=-2 -kerning first=113 second=1256 amount=-2 -kerning first=176 second=79 amount=-2 -kerning first=287 second=229 amount=-1 -kerning first=1065 second=963 amount=-1 -kerning first=194 second=920 amount=-2 -kerning first=306 second=1195 amount=-1 -kerning first=77 second=253 amount=-1 -kerning first=214 second=1257 amount=-1 -kerning first=926 second=218 amount=-2 -kerning first=363 second=230 amount=-1 -kerning first=955 second=360 amount=-2 -kerning first=1298 second=273 amount=-1 -kerning first=1257 second=964 amount=-1 -kerning first=1035 second=287 amount=-1 -kerning first=174 second=945 amount=-1 -kerning first=8240 second=335 amount=-1 -kerning first=8260 second=97 amount=-1 -kerning first=58 second=268 amount=-2 -kerning first=1073 second=219 amount=-2 -kerning first=321 second=81 amount=-2 -kerning first=8366 second=34 amount=-3 -kerning first=8363 second=259 amount=-1 -kerning first=1098 second=1175 amount=-2 -kerning first=221 second=331 amount=-3 -kerning first=920 second=1202 amount=-3 -kerning first=928 second=373 amount=-4 -kerning first=1178 second=1028 amount=-1 -kerning first=361 second=1263 amount=-1 -kerning first=124 second=269 amount=-1 -kerning first=36 second=973 amount=-1 -kerning first=1039 second=232 amount=-1 -kerning first=294 second=332 amount=-2 -kerning first=62 second=216 amount=-2 -kerning first=1074 second=374 amount=-5 -kerning first=205 second=106 amount=1 -kerning first=346 second=193 amount=-1 -kerning first=942 second=83 amount=-1 -kerning first=105 second=283 amount=-1 -kerning first=965 second=245 amount=-1 -kerning first=161 second=217 amount=-2 -kerning first=43 second=229 amount=-1 -kerning first=186 second=119 amount=-4 -kerning first=183 second=359 amount=-1 -kerning first=298 second=271 amount=-1 -kerning first=60 second=1195 amount=-1 -kerning first=63 second=371 amount=-1 -kerning first=1083 second=84 amount=-5 -kerning first=203 second=1026 amount=-5 -kerning first=206 second=286 amount=-2 -kerning first=8370 second=364 amount=-2 -kerning first=901 second=334 amount=-2 -kerning first=83 second=1046 amount=-1 -kerning first=1116 second=246 amount=-2 -kerning first=249 second=360 amount=-2 -kerning first=369 second=964 amount=-3 -kerning first=375 second=45 amount=-2 -kerning first=372 second=273 amount=-3 -kerning first=126 second=947 amount=-4 -kerning first=162 second=372 amount=-5 -kerning first=41 second=1262 amount=-2 -kerning first=44 second=1240 amount=-1 -kerning first=1048 second=335 amount=-1 -kerning first=302 second=219 amount=-2 -kerning first=64 second=1069 amount=-1 -kerning first=70 second=81 amount=-1 -kerning first=1084 second=259 amount=-1 -kerning first=327 second=361 amount=-1 -kerning first=8366 second=8216 amount=-3 -kerning first=902 second=965 amount=-1 -kerning first=910 second=46 amount=-4 -kerning first=90 second=243 amount=-1 -kerning first=230 second=373 amount=-1 -kerning first=48 second=332 amount=-2 -kerning first=1049 second=966 amount=-1 -kerning first=1062 second=275 amount=-1 -kerning first=191 second=244 amount=-1 -kerning first=303 second=374 amount=-5 -kerning first=208 second=1298 amount=-1 -kerning first=911 second=221 amount=-2 -kerning first=1174 second=111 amount=-1 -kerning first=237 second=83 amount=-1 -kerning first=357 second=233 amount=-1 -kerning first=114 second=333 amount=-1 -kerning first=167 second=949 amount=-1 -kerning first=170 second=257 amount=-1 -kerning first=277 second=1299 amount=-1 -kerning first=8225 second=100 amount=-1 -kerning first=49 second=963 amount=-1 -kerning first=55 second=44 amount=-4 -kerning first=52 second=271 amount=-1 -kerning first=313 second=84 amount=-6 -kerning first=1095 second=364 amount=-2 -kerning first=215 second=334 amount=-2 -kerning first=912 second=376 amount=-5 -kerning first=95 second=346 amount=-1 -kerning first=1170 second=1035 amount=-5 -kerning first=946 second=8212 amount=-2 -kerning first=950 second=1059 amount=-2 -kerning first=121 second=45 amount=-2 -kerning first=118 second=273 amount=-1 -kerning first=375 second=8249 amount=-3 -kerning first=289 second=97 amount=-1 -kerning first=56 second=219 amount=-2 -kerning first=193 second=1108 amount=-1 -kerning first=196 second=347 amount=-1 -kerning first=317 second=34 amount=-3 -kerning first=314 second=259 amount=-1 -kerning first=8361 second=212 amount=-2 -kerning first=76 second=361 amount=-1 -kerning first=222 second=46 amount=-1 -kerning first=910 second=8250 amount=-2 -kerning first=96 second=1028 amount=-2 -kerning first=958 second=248 amount=-1 -kerning first=37 second=232 amount=-1 -kerning first=172 second=1176 amount=-1 -kerning first=176 second=362 amount=-2 -kerning first=287 second=966 amount=-1 -kerning first=57 second=374 amount=-5 -kerning first=200 second=289 amount=-1 -kerning first=1103 second=249 amount=-1 -kerning first=223 second=221 amount=-5 -kerning first=341 second=351 amount=-1 -kerning first=934 second=261 amount=-1 -kerning first=926 second=953 amount=-1 -kerning first=103 second=233 amount=-1 -kerning first=240 second=1177 amount=-1 -kerning first=123 second=375 amount=-1 -kerning first=174 second=8211 amount=-2 -kerning first=1044 second=100 amount=-1 -kerning first=64 second=84 amount=-5 -kerning first=204 second=234 amount=-1 -kerning first=321 second=364 amount=-2 -kerning first=84 second=246 amount=-3 -kerning first=345 second=291 amount=-1 -kerning first=1202 second=101 amount=-1 -kerning first=964 second=353 amount=-1 -kerning first=967 second=113 amount=-1 -kerning first=121 second=8249 amount=-3 -kerning first=163 second=85 amount=-2 -kerning first=273 second=235 amount=-1 -kerning first=42 second=335 amount=-1 -kerning first=65 second=259 amount=-1 -kerning first=1081 second=212 amount=-2 -kerning first=317 second=8216 amount=-3 -kerning first=8369 second=943 amount=-1 -kerning first=903 second=224 amount=-1 -kerning first=942 second=366 amount=-2 -kerning first=108 second=336 amount=-2 -kerning first=1203 second=279 amount=-1 -kerning first=251 second=248 amount=-1 -kerning first=374 second=171 amount=-3 -kerning first=8217 second=103 amount=-1 -kerning first=43 second=966 amount=-1 -kerning first=1051 second=225 amount=-1 -kerning first=304 second=87 amount=-5 -kerning first=1083 second=367 amount=-1 -kerning first=1079 second=1185 amount=-1 -kerning first=209 second=337 amount=-1 -kerning first=330 second=249 amount=-1 -kerning first=86 second=1114 amount=-2 -kerning first=92 second=111 amount=-1 -kerning first=89 second=351 amount=-3 -kerning first=1219 second=226 amount=-1 -kerning first=372 second=1078 amount=-1 -kerning first=168 second=210 amount=-2 -kerning first=278 second=338 amount=-2 -kerning first=8222 second=53 amount=-1 -kerning first=190 second=352 amount=-1 -kerning first=305 second=262 amount=-2 -kerning first=70 second=364 amount=-2 -kerning first=1080 second=8220 amount=-3 -kerning first=905 second=1079 amount=-1 -kerning first=915 second=89 amount=-5 -kerning first=93 second=291 amount=-1 -kerning first=910 second=326 amount=-3 -kerning first=236 second=211 amount=-2 -kerning first=356 second=339 amount=-3 -kerning first=951 second=251 amount=-1 -kerning first=256 second=353 amount=-1 -kerning first=376 second=955 amount=-2 -kerning first=379 second=263 amount=-1 -kerning first=169 second=365 amount=-1 -kerning first=8224 second=228 amount=-1 -kerning first=916 second=266 amount=-2 -kerning first=926 second=39 amount=-3 -kerning first=237 second=366 amount=-2 -kerning first=357 second=970 amount=-1 -kerning first=120 second=171 amount=-2 -kerning first=263 second=63 amount=-1 -kerning first=167 second=8217 amount=-3 -kerning first=1035 second=103 amount=-1 -kerning first=8221 second=1257 amount=-1 -kerning first=58 second=87 amount=-5 -kerning first=313 second=367 amount=-1 -kerning first=75 second=940 amount=-2 -kerning first=78 second=249 amount=-1 -kerning first=928 second=214 amount=-2 -kerning first=235 second=8218 amount=-1 -kerning first=956 second=356 amount=-5 -kerning first=1299 second=268 amount=-2 -kerning first=36 second=338 amount=-2 -kerning first=1036 second=281 amount=-2 -kerning first=39 second=100 amount=-1 -kerning first=178 second=250 amount=-1 -kerning first=175 second=941 amount=-1 -kerning first=59 second=262 amount=-2 -kerning first=202 second=187 amount=-1 -kerning first=931 second=369 amount=-1 -kerning first=102 second=339 amount=-1 -kerning first=105 second=101 amount=-1 -kerning first=125 second=263 amount=-1 -kerning first=1041 second=228 amount=-1 -kerning first=63 second=212 amount=-2 -kerning first=1071 second=1194 amount=-2 -kerning first=323 second=252 amount=-1 -kerning first=318 second=943 amount=-1 -kerning first=80 second=1118 amount=-1 -kerning first=83 second=354 amount=-1 -kerning first=86 second=114 amount=-2 -kerning first=229 second=39 amount=-1 -kerning first=103 second=970 amount=-1 -kerning first=947 second=229 amount=-1 -kerning first=963 second=920 amount=-2 -kerning first=162 second=213 amount=-2 -kerning first=184 second=355 amount=-1 -kerning first=299 second=267 amount=-1 -kerning first=61 second=1185 amount=-3 -kerning first=64 second=367 amount=-1 -kerning first=8372 second=360 amount=-2 -kerning first=1117 second=242 amount=-1 -kerning first=1202 second=1240 amount=-1 -kerning first=250 second=356 amount=-5 -kerning first=253 second=116 amount=-1 -kerning first=163 second=368 amount=-2 -kerning first=273 second=972 amount=-1 -kerning first=276 second=281 amount=-1 -kerning first=8216 second=231 amount=-1 -kerning first=45 second=380 amount=-2 -kerning first=62 second=8220 amount=-3 -kerning first=906 second=269 amount=-1 -kerning first=1210 second=332 amount=-2 -kerning first=377 second=216 amount=-1 -kerning first=164 second=1066 amount=-5 -kerning first=161 second=8221 amount=-3 -kerning first=280 second=228 amount=-1 -kerning first=8211 second=1298 amount=-4 -kerning first=1051 second=962 amount=-1 -kerning first=192 second=240 amount=-1 -kerning first=301 second=1194 amount=-2 -kerning first=304 second=370 amount=-2 -kerning first=69 second=943 amount=-1 -kerning first=72 second=252 amount=-1 -kerning first=209 second=1256 amount=-2 -kerning first=912 second=217 amount=-2 -kerning first=238 second=79 amount=-2 -kerning first=358 second=229 amount=-1 -kerning first=950 second=359 amount=-1 -kerning first=953 second=119 amount=-2 -kerning first=1219 second=963 amount=-1 -kerning first=1224 second=271 amount=-1 -kerning first=1262 second=44 amount=-1 -kerning first=255 second=920 amount=-2 -kerning first=375 second=1195 amount=-1 -kerning first=1026 second=286 amount=-2 -kerning first=278 second=1257 amount=-1 -kerning first=8218 second=1090 amount=-3 -kerning first=8222 second=334 amount=-1 -kerning first=53 second=267 amount=-1 -kerning first=1067 second=218 amount=-2 -kerning first=1096 second=360 amount=-2 -kerning first=334 second=923 amount=-2 -kerning first=910 second=947 amount=-2 -kerning first=915 second=372 amount=-5 -kerning first=93 second=1101 amount=-1 -kerning first=1176 second=287 amount=-1 -kerning first=236 second=945 amount=-1 -kerning first=1263 second=219 amount=-2 -kerning first=34 second=281 amount=-1 -kerning first=8224 second=965 amount=-1 -kerning first=1068 second=373 amount=-1 -kerning first=80 second=117 amount=-1 -kerning first=77 second=357 amount=-1 -kerning first=1184 second=232 amount=-2 -kerning first=363 second=332 amount=-2 -kerning first=960 second=244 amount=-1 -kerning first=123 second=216 amount=-2 -kerning first=1298 second=374 amount=-5 -kerning first=1257 second=1203 amount=-2 -kerning first=268 second=106 amount=1 -kerning first=38 second=228 amount=-1 -kerning first=1028 second=1298 amount=-1 -kerning first=180 second=118 amount=-4 -kerning first=8260 second=221 amount=-5 -kerning first=55 second=1194 amount=-2 -kerning first=58 second=370 amount=-2 -kerning first=1069 second=1071 amount=-1 -kerning first=201 second=283 amount=-1 -kerning first=8363 second=363 amount=-1 -kerning first=84 second=67 amount=-1 -kerning first=928 second=949 amount=-1 -kerning first=936 second=257 amount=-1 -kerning first=247 second=119 amount=-4 -kerning first=367 second=271 amount=-1 -kerning first=370 second=44 amount=-1 -kerning first=121 second=1195 amount=-1 -kerning first=124 second=371 amount=-1 -kerning first=266 second=1026 amount=-1 -kerning first=36 second=1257 amount=-1 -kerning first=1036 second=1090 amount=-4 -kerning first=1039 second=334 amount=-2 -kerning first=297 second=218 amount=-2 -kerning first=205 second=230 amount=-1 -kerning first=322 second=360 amount=-2 -kerning first=8361 second=8212 amount=-2 -kerning first=8364 second=1059 amount=-2 -kerning first=900 second=273 amount=-1 -kerning first=903 second=45 amount=-2 -kerning first=105 second=1240 amount=-2 -kerning first=371 second=219 amount=-2 -kerning first=962 second=1108 amount=-1 -kerning first=965 second=347 amount=-1 -kerning first=125 second=1069 amount=-1 -kerning first=164 second=81 amount=-2 -kerning first=274 second=231 amount=-1 -kerning first=1041 second=965 amount=-1 -kerning first=186 second=243 amount=-1 -kerning first=298 second=373 amount=-4 -kerning first=203 second=1263 amount=-1 -kerning first=8377 second=248 amount=-1 -kerning first=904 second=220 amount=-2 -kerning first=947 second=966 amount=-1 -kerning first=1206 second=275 amount=-1 -kerning first=252 second=244 amount=-1 -kerning first=305 second=83 amount=-1 -kerning first=1080 second=1177 amount=-1 -kerning first=1084 second=363 amount=-1 -kerning first=905 second=375 amount=-1 -kerning first=1168 second=290 amount=-2 -kerning first=113 second=271 amount=-1 -kerning first=116 second=44 amount=-1 -kerning first=973 second=234 amount=-1 -kerning first=276 second=1090 amount=-3 -kerning first=8220 second=277 amount=-1 -kerning first=51 second=218 amount=-2 -kerning first=1062 second=376 amount=-2 -kerning first=191 second=346 amount=-1 -kerning first=68 second=1174 amount=-3 -kerning first=1085 second=1059 amount=-2 -kerning first=1081 second=8212 amount=-2 -kerning first=214 second=273 amount=-1 -kerning first=903 second=8249 amount=-3 -kerning first=916 second=85 amount=-2 -kerning first=94 second=287 amount=-1 -kerning first=1174 second=235 amount=-1 -kerning first=357 second=335 amount=-1 -kerning first=354 second=1094 amount=-2 -kerning first=117 second=219 amount=-2 -kerning first=254 second=1108 amount=-1 -kerning first=170 second=361 amount=-1 -kerning first=174 second=121 amount=-1 -kerning first=280 second=965 amount=-1 -kerning first=8225 second=224 amount=-1 -kerning first=52 second=373 amount=-4 -kerning first=1051 second=8250 amount=-1 -kerning first=1069 second=86 amount=-2 -kerning first=192 second=1028 amount=-2 -kerning first=195 second=288 amount=-2 -kerning first=333 second=1113 amount=-1 -kerning first=920 second=260 amount=-2 -kerning first=238 second=362 amount=-2 -kerning first=358 second=966 amount=-1 -kerning first=361 second=275 amount=-1 -kerning first=115 second=1203 amount=-1 -kerning first=1299 second=87 amount=-5 -kerning first=1036 second=99 amount=-2 -kerning first=178 second=71 amount=-2 -kerning first=289 second=221 amount=-5 -kerning first=59 second=83 amount=-1 -kerning first=1067 second=953 amount=-1 -kerning first=314 second=363 amount=-1 -kerning first=310 second=1177 amount=-1 -kerning first=931 second=210 amount=-2 -kerning first=1186 second=100 amount=-1 -kerning first=236 second=8211 amount=-2 -kerning first=958 second=352 amount=-1 -kerning first=125 second=84 amount=-5 -kerning first=37 second=334 amount=-2 -kerning first=1037 second=277 amount=-1 -kerning first=179 second=246 amount=-1 -kerning first=290 second=376 amount=-2 -kerning first=315 second=1059 amount=-1 -kerning first=311 second=8212 amount=-3 -kerning first=8365 second=251 amount=-1 -kerning first=1103 second=353 amount=-1 -kerning first=934 second=365 amount=-1 -kerning first=103 second=335 amount=-1 -kerning first=126 second=259 amount=-1 -kerning first=162 second=34 amount=-3 -kerning first=38 second=965 amount=-1 -kerning first=1073 second=1184 amount=-5 -kerning first=204 second=336 amount=-2 -kerning first=902 second=171 amount=-3 -kerning first=84 second=350 amount=-1 -kerning first=87 second=110 amount=-2 -kerning first=928 second=8217 amount=-3 -kerning first=107 second=275 amount=-2 -kerning first=273 second=337 amount=-1 -kerning first=276 second=99 amount=-1 -kerning first=8216 second=52 amount=-1 -kerning first=45 second=221 amount=-4 -kerning first=188 second=111 amount=-1 -kerning first=185 second=351 amount=-1 -kerning first=300 second=261 amount=-1 -kerning first=297 second=953 amount=-1 -kerning first=65 second=363 amount=-1 -kerning first=62 second=1177 amount=-1 -kerning first=88 second=290 amount=-3 -kerning first=942 second=941 amount=-1 -kerning first=354 second=100 amount=-3 -kerning first=251 second=352 amount=-1 -kerning first=374 second=262 amount=-3 -kerning first=968 second=1241 amount=-1 -kerning first=971 second=187 amount=-1 -kerning first=164 second=364 amount=-2 -kerning first=274 second=968 amount=-1 -kerning first=8217 second=227 amount=-1 -kerning first=46 second=376 amount=-4 -kerning first=186 second=1035 amount=-5 -kerning first=189 second=291 amount=-1 -kerning first=1063 second=89 amount=-5 -kerning first=304 second=211 amount=-2 -kerning first=63 second=8212 amount=-2 -kerning first=1087 second=251 amount=-1 -kerning first=330 second=353 amount=-1 -kerning first=92 second=235 amount=-1 -kerning first=162 second=8216 amount=-3 -kerning first=47 second=1075 amount=-1 -kerning first=1064 second=266 amount=-2 -kerning first=1067 second=39 amount=-3 -kerning first=302 second=1184 amount=-5 -kerning first=305 second=366 amount=-2 -kerning first=73 second=248 amount=-1 -kerning first=337 second=63 amount=-2 -kerning first=915 second=213 amount=-2 -kerning first=1176 second=103 amount=-1 -kerning first=230 second=8217 amount=-1 -kerning first=951 second=355 amount=-1 -kerning first=954 second=115 amount=-1 -kerning first=376 second=1185 amount=-2 -kerning first=34 second=99 amount=-1 -kerning first=172 second=249 amount=-1 -kerning first=169 second=940 amount=-1 -kerning first=54 second=261 amount=-1 -kerning first=51 second=953 amount=-1 -kerning first=916 second=368 amount=-2 -kerning first=100 second=100 amount=-1 -kerning first=1174 second=972 amount=-1 -kerning first=240 second=250 amount=-1 -kerning first=237 second=941 amount=-1 -kerning first=260 second=1241 amount=-1 -kerning first=35 second=277 amount=-1 -kerning first=1035 second=227 amount=-1 -kerning first=177 second=199 amount=-2 -kerning first=291 second=89 amount=-5 -kerning first=8240 second=269 amount=-1 -kerning first=58 second=211 amount=-2 -kerning first=198 second=339 amount=-1 -kerning first=201 second=101 amount=-1 -kerning first=195 second=1098 amount=-3 -kerning first=316 second=251 amount=-1 -kerning first=78 second=353 amount=-1 -kerning first=221 second=263 amount=-4 -kerning first=912 second=8221 amount=-3 -kerning first=920 second=1066 amount=-2 -kerning first=1185 second=228 amount=-1 -kerning first=124 second=212 amount=-2 -kerning first=1299 second=370 amount=-2 -kerning first=39 second=224 amount=-1 -kerning first=178 second=354 amount=-5 -kerning first=175 second=1118 amount=-1 -kerning first=294 second=266 amount=-2 -kerning first=297 second=39 amount=-3 -kerning first=56 second=1184 amount=-5 -kerning first=59 second=366 amount=-2 -kerning first=202 second=279 amount=-1 -kerning first=8364 second=359 amount=-1 -kerning first=8369 second=119 amount=-4 -kerning first=105 second=225 amount=-1 -kerning first=1179 second=1257 amount=-1 -kerning first=125 second=367 amount=-1 -kerning first=179 second=1038 amount=-2 -kerning first=298 second=214 amount=-2 -kerning first=57 second=8218 amount=-1 -kerning first=1075 second=945 amount=-1 -kerning first=206 second=226 amount=-1 -kerning first=323 second=356 amount=-5 -kerning first=901 second=268 amount=-2 -kerning first=123 second=8220 amount=-3 -kerning first=41 second=1079 amount=-1 -kerning first=47 second=89 amount=-5 -kerning first=1048 second=269 amount=-1 -kerning first=299 second=369 amount=-1 -kerning first=8378 second=244 amount=-1 -kerning first=905 second=216 amount=-2 -kerning first=1168 second=106 amount=1 -kerning first=224 second=8221 amount=-1 -kerning first=948 second=118 amount=-4 -kerning first=1202 second=962 amount=-1 -kerning first=253 second=240 amount=-1 -kerning first=967 second=974 amount=-1 -kerning first=163 second=943 amount=-1 -kerning first=166 second=252 amount=-1 -kerning first=273 second=1256 amount=-2 -kerning first=8216 second=333 amount=-1 -kerning first=48 second=266 amount=-2 -kerning first=51 second=39 amount=-3 -kerning first=1062 second=217 amount=-1 -kerning first=306 second=79 amount=-2 -kerning first=1085 second=359 amount=-1 -kerning first=903 second=1195 amount=-1 -kerning first=906 second=371 amount=-1 -kerning first=94 second=103 amount=-1 -kerning first=1118 second=1026 amount=-5 -kerning first=114 second=267 amount=-1 -kerning first=1223 second=218 amount=-2 -kerning first=277 second=1083 amount=-1 -kerning first=8225 second=45 amount=-2 -kerning first=8221 second=273 amount=-1 -kerning first=52 second=214 amount=-2 -kerning first=1051 second=947 amount=-4 -kerning first=1063 second=372 amount=-5 -kerning first=189 second=1101 amount=-1 -kerning first=304 second=945 amount=-1 -kerning first=72 second=356 amount=-5 -kerning first=75 second=116 amount=-1 -kerning first=215 second=268 amount=-2 -kerning first=92 second=972 amount=-1 -kerning first=95 second=281 amount=-1 -kerning first=1175 second=231 amount=-1 -kerning first=1224 second=373 amount=-4 -kerning first=175 second=117 amount=-1 -kerning first=8226 second=220 amount=-2 -kerning first=53 second=369 amount=-1 -kerning first=193 second=973 amount=-1 -kerning first=1099 second=244 amount=-1 -kerning first=340 second=106 amount=2 -kerning first=242 second=118 amount=-1 -kerning first=1256 second=1071 amount=-1 -kerning first=179 second=67 amount=-2 -kerning first=8230 second=375 amount=-1 -kerning first=51 second=8222 amount=-1 -kerning first=60 second=79 amount=-2 -kerning first=1071 second=257 amount=-1 -kerning first=200 second=229 amount=-1 -kerning first=315 second=359 amount=-1 -kerning first=318 second=119 amount=-4 -kerning first=77 second=920 amount=-2 -kerning first=338 second=1026 amount=-5 -kerning first=1184 second=334 amount=-3 -kerning first=1177 second=1090 amount=-1 -kerning first=960 second=346 amount=-1 -kerning first=1035 second=964 amount=-3 -kerning first=1044 second=45 amount=-2 -kerning first=180 second=242 amount=-1 -kerning first=291 second=372 amount=-5 -kerning first=8225 second=8249 amount=-3 -kerning first=58 second=945 amount=-1 -kerning first=201 second=1240 amount=-2 -kerning first=198 second=1262 amount=-2 -kerning first=221 second=1069 amount=-2 -kerning first=345 second=231 amount=-1 -kerning first=936 second=361 amount=-1 -kerning first=247 second=243 amount=-1 -kerning first=367 second=373 amount=-4 -kerning first=964 second=288 amount=-2 -kerning first=42 second=269 amount=-1 -kerning first=1074 second=1176 amount=-1 -kerning first=205 second=332 amount=-2 -kerning first=325 second=244 amount=-1 -kerning first=900 second=374 amount=-5 -kerning first=105 second=962 amount=-1 -kerning first=374 second=83 amount=-1 -kerning first=968 second=233 amount=-1 -kerning first=274 second=333 amount=-1 -kerning first=46 second=217 amount=-1 -kerning first=298 second=949 amount=-1 -kerning first=301 second=257 amount=-1 -kerning first=69 second=119 amount=-4 -kerning first=206 second=963 amount=-1 -kerning first=209 second=271 amount=-1 -kerning first=212 second=44 amount=-1 -kerning first=8377 second=352 amount=-1 -kerning first=908 second=84 amount=-2 -kerning first=86 second=1026 amount=-5 -kerning first=89 second=286 amount=-3 -kerning first=1119 second=234 amount=-1 -kerning first=946 second=246 amount=-1 -kerning first=1206 second=376 amount=-2 -kerning first=252 second=346 amount=-1 -kerning first=165 second=360 amount=-2 -kerning first=278 second=273 amount=-1 -kerning first=275 second=964 amount=-1 -kerning first=44 second=947 amount=-2 -kerning first=47 second=372 amount=-5 -kerning first=1044 second=8249 amount=-1 -kerning first=1064 second=85 amount=-2 -kerning first=190 second=287 amount=-1 -kerning first=327 second=1108 amount=-1 -kerning first=910 second=259 amount=-4 -kerning first=915 second=34 amount=-3 -kerning first=93 second=231 amount=-1 -kerning first=230 second=1175 amount=-2 -kerning first=236 second=121 amount=-1 -kerning first=359 second=46 amount=-1 -kerning first=113 second=373 amount=-4 -kerning first=1256 second=86 amount=-2 -kerning first=253 second=1028 amount=-2 -kerning first=256 second=288 amount=-2 -kerning first=973 second=336 amount=-2 -kerning first=282 second=220 amount=-2 -kerning first=8224 second=171 amount=-3 -kerning first=194 second=232 amount=-1 -kerning first=306 second=362 amount=-2 -kerning first=303 second=1176 amount=-1 -kerning first=74 second=244 amount=-1 -kerning first=214 second=374 amount=-5 -kerning first=332 second=1033 amount=-1 -kerning first=1174 second=337 amount=-1 -kerning first=240 second=71 amount=-2 -kerning first=955 second=111 amount=-1 -kerning first=952 second=351 amount=-1 -kerning first=111 second=8230 amount=-1 -kerning first=1223 second=953 amount=-1 -kerning first=260 second=233 amount=-1 -kerning first=974 second=967 amount=-1 -kerning first=174 second=245 amount=-1 -kerning first=52 second=949 amount=-1 -kerning first=55 second=257 amount=-1 -kerning first=304 second=8211 amount=-2 -kerning first=95 second=1090 amount=-3 -kerning first=1178 second=277 amount=-1 -kerning first=361 second=376 amount=-5 -kerning first=956 second=291 amount=-1 -kerning first=118 second=950 amount=-2 -kerning first=1299 second=211 amount=-2 -kerning first=36 second=273 amount=-1 -kerning first=294 second=85 amount=-2 -kerning first=202 second=97 amount=-1 -kerning first=76 second=1108 amount=-1 -kerning first=225 second=34 amount=-1 -kerning first=915 second=8216 amount=-3 -kerning first=1263 second=1184 amount=-5 -kerning first=40 second=220 amount=-2 -kerning first=1041 second=171 amount=-3 -kerning first=179 second=350 amount=-1 -kerning first=57 second=1176 amount=-1 -kerning first=60 second=362 amount=-2 -kerning first=1068 second=8217 amount=-2 -kerning first=200 second=966 amount=-1 -kerning first=203 second=275 amount=-1 -kerning first=8365 second=355 amount=-1 -kerning first=8370 second=115 amount=-1 -kerning first=901 second=87 amount=-5 -kerning first=934 second=940 amount=-1 -kerning first=249 second=111 amount=-1 -kerning first=369 second=261 amount=-1 -kerning first=123 second=1177 amount=-1 -kerning first=126 second=363 amount=-1 -kerning first=41 second=375 amount=-1 -kerning first=184 second=290 amount=-2 -kerning first=299 second=210 amount=-2 -kerning first=58 second=8211 amount=-2 -kerning first=1080 second=250 amount=-1 -kerning first=1076 second=941 amount=-1 -kerning first=902 second=262 amount=-2 -kerning first=87 second=234 amount=-3 -kerning first=1117 second=187 amount=-1 -kerning first=944 second=199 amount=-2 -kerning first=247 second=1035 amount=-5 -kerning first=250 second=291 amount=-1 -kerning first=967 second=339 amount=-1 -kerning first=124 second=8212 amount=-2 -kerning first=160 second=1059 amount=-2 -kerning first=964 second=1098 amount=-3 -kerning first=48 second=85 amount=-2 -kerning first=1049 second=263 amount=-1 -kerning first=188 second=235 amount=-1 -kerning first=300 second=365 amount=-1 -kerning first=65 second=936 amount=-3 -kerning first=208 second=377 amount=-1 -kerning first=906 second=212 amount=-2 -kerning first=225 second=8216 amount=-1 -kerning first=354 second=224 amount=-2 -kerning first=942 second=1118 amount=-1 -kerning first=105 second=8250 amount=-1 -kerning first=1210 second=266 amount=-2 -kerning first=1223 second=39 amount=-3 -kerning first=371 second=1184 amount=-5 -kerning first=971 second=279 amount=-1 -kerning first=167 second=248 amount=-1 -kerning first=968 second=970 amount=-1 -kerning first=277 second=378 amount=-1 -kerning first=280 second=171 amount=-3 -kerning first=1063 second=213 amount=-2 -kerning first=298 second=8217 amount=-3 -kerning first=1095 second=115 amount=-1 -kerning first=1087 second=355 amount=-1 -kerning first=215 second=87 amount=-5 -kerning first=904 second=1185 amount=-3 -kerning first=92 second=337 amount=-1 -kerning first=95 second=99 amount=-1 -kerning first=89 second=1096 amount=-3 -kerning first=946 second=1038 amount=-2 -kerning first=1224 second=214 amount=-2 -kerning first=372 second=8218 amount=-3 -kerning first=1026 second=226 amount=-1 -kerning first=171 second=198 amount=-1 -kerning first=8222 second=268 amount=-1 -kerning first=53 second=210 amount=-2 -kerning first=1064 second=368 amount=-2 -kerning first=193 second=338 amount=-2 -kerning first=196 second=100 amount=-1 -kerning first=305 second=941 amount=-1 -kerning first=310 second=250 amount=-1 -kerning first=70 second=1116 amount=-1 -kerning first=73 second=352 amount=-1 -kerning first=905 second=8220 amount=-3 -kerning first=93 second=968 amount=-1 -kerning first=96 second=277 amount=-1 -kerning first=1176 second=227 amount=-1 -kerning first=239 second=199 amount=-2 -kerning first=356 second=1079 amount=-2 -kerning first=256 second=1098 amount=-3 -kerning first=176 second=113 amount=-1 -kerning first=172 second=353 amount=-1 -kerning first=287 second=263 amount=-1 -kerning first=8230 second=216 amount=-1 -kerning first=54 second=365 amount=-1 -kerning first=1062 second=8221 amount=-2 -kerning first=1065 second=1066 amount=-2 -kerning first=916 second=943 amount=-1 -kerning first=926 second=252 amount=-1 -kerning first=100 second=224 amount=-1 -kerning first=1174 second=1256 amount=-1 -kerning first=237 second=1118 amount=-1 -kerning first=240 second=354 amount=-5 -kerning first=363 second=266 amount=-2 -kerning first=117 second=1184 amount=-5 -kerning first=260 second=970 amount=-1 -kerning first=38 second=171 amount=-3 -kerning first=291 second=213 amount=-2 -kerning first=8240 second=371 amount=-1 -kerning first=8225 second=1195 amount=-1 -kerning first=52 second=8217 amount=-1 -kerning first=1073 second=253 amount=-1 -kerning first=201 second=225 amount=-1 -kerning first=321 second=115 amount=-1 -kerning first=316 second=355 amount=-1 -kerning first=221 second=367 amount=-2 -kerning first=367 second=214 amount=-2 -kerning first=956 second=1101 amount=-1 -kerning first=118 second=8218 amount=-2 -kerning first=1299 second=945 amount=-1 -kerning first=1039 second=268 amount=-2 -kerning first=294 second=368 amount=-2 -kerning first=62 second=250 amount=-1 -kerning first=59 second=941 amount=-1 -kerning first=8369 second=243 amount=-1 -kerning first=942 second=117 amount=-1 -kerning first=108 second=89 amount=-5 -kerning first=962 second=973 amount=-1 -kerning first=161 second=251 amount=-1 -kerning first=270 second=381 amount=-1 -kerning first=43 second=263 amount=-1 -kerning first=1083 second=118 amount=-4 -kerning first=901 second=370 amount=-2 -kerning first=1116 second=283 amount=-2 -kerning first=946 second=67 amount=-2 -kerning first=112 second=39 amount=-1 -kerning first=1206 second=217 amount=-1 -kerning first=366 second=8222 amount=-1 -kerning first=375 second=79 amount=-2 -kerning first=47 second=213 amount=-1 -kerning first=1048 second=371 amount=-1 -kerning first=1044 second=1195 amount=-1 -kerning first=190 second=103 amount=-1 -kerning first=302 second=253 amount=-1 -kerning first=70 second=115 amount=-1 -kerning first=8378 second=346 amount=-1 -kerning first=1168 second=230 amount=-1 -kerning first=948 second=242 amount=-1 -kerning first=113 second=214 amount=-2 -kerning first=1202 second=947 amount=-2 -kerning first=250 second=1101 amount=-1 -kerning first=373 second=945 amount=-1 -kerning first=967 second=1262 amount=-2 -kerning first=166 second=356 amount=-5 -kerning first=169 second=116 amount=-1 -kerning first=48 second=368 amount=-2 -kerning first=1049 second=1069 amount=-1 -kerning first=188 second=972 amount=-1 -kerning first=191 second=281 amount=-1 -kerning first=1065 second=81 amount=-1 -kerning first=74 second=65 amount=-1 -kerning first=1094 second=243 amount=-1 -kerning first=94 second=227 amount=-1 -kerning first=1118 second=1263 amount=-1 -kerning first=237 second=117 amount=-1 -kerning first=357 second=269 amount=-1 -kerning first=254 second=973 amount=-1 -kerning first=49 second=1066 amount=-5 -kerning first=46 second=8221 amount=-1 -kerning first=1066 second=256 amount=-1 -kerning first=195 second=228 amount=-1 -kerning first=313 second=118 amount=-3 -kerning first=75 second=240 amount=-2 -kerning first=215 second=370 amount=-2 -kerning first=92 second=1256 amount=-2 -kerning first=1175 second=333 amount=-1 -kerning first=361 second=217 amount=-2 -kerning first=112 second=8222 amount=-1 -kerning first=121 second=79 amount=-2 -kerning first=1224 second=949 amount=-1 -kerning first=1026 second=963 amount=-1 -kerning first=8249 second=84 amount=-1 -kerning first=56 second=253 amount=-1 -kerning first=193 second=1257 amount=-1 -kerning first=8361 second=246 amount=-1 -kerning first=1099 second=346 amount=-1 -kerning first=923 second=360 amount=-2 -kerning first=1176 second=964 amount=-3 -kerning first=1186 second=45 amount=-2 -kerning first=1179 second=273 amount=-1 -kerning first=958 second=287 amount=-1 -kerning first=119 second=945 amount=-1 -kerning first=37 second=268 amount=-2 -kerning first=1037 second=219 amount=-2 -kerning first=287 second=1069 amount=-1 -kerning first=1071 second=361 amount=-1 -kerning first=318 second=243 amount=-1 -kerning first=1103 second=288 amount=-2 -kerning first=338 second=1263 amount=-1 -kerning first=103 second=269 amount=-1 -kerning first=963 second=232 amount=-1 -kerning first=1298 second=1176 amount=-1 -kerning first=41 second=216 amount=-2 -kerning first=184 second=106 amount=1 -kerning first=64 second=118 amount=-4 -kerning first=1080 second=71 amount=-2 -kerning first=201 second=962 amount=-1 -kerning first=8372 second=111 amount=-1 -kerning first=8366 second=351 amount=-1 -kerning first=902 second=83 amount=-1 -kerning first=84 second=283 amount=-3 -kerning first=345 second=333 amount=-1 -kerning first=367 second=949 amount=-1 -kerning first=961 second=1299 amount=-1 -kerning first=160 second=359 amount=-1 -kerning first=1299 second=8211 amount=-2 -kerning first=163 second=119 amount=-4 -kerning first=273 second=271 amount=-1 -kerning first=39 second=1195 amount=-1 -kerning first=42 second=371 amount=-1 -kerning first=182 second=1026 amount=-5 -kerning first=1049 second=84 amount=-5 -kerning first=185 second=286 amount=-2 -kerning first=1081 second=246 amount=-1 -kerning first=325 second=346 amount=-1 -kerning first=8369 second=1035 amount=-5 -kerning first=88 second=230 amount=-1 -kerning first=231 second=120 amount=-1 -kerning first=354 second=45 amount=-4 -kerning first=105 second=947 amount=-4 -kerning first=108 second=372 amount=-5 -kerning first=1186 second=8249 amount=-1 -kerning first=1210 second=85 amount=-2 -kerning first=251 second=287 amount=-1 -kerning first=968 second=335 amount=-1 -kerning first=971 second=97 amount=-1 -kerning first=8211 second=377 amount=-2 -kerning first=43 second=1069 amount=-1 -kerning first=49 second=81 amount=-2 -kerning first=1063 second=34 amount=-3 -kerning first=1051 second=259 amount=-1 -kerning first=189 second=231 amount=-1 -kerning first=301 second=361 amount=-1 -kerning first=304 second=121 amount=-1 -kerning first=69 second=243 amount=-1 -kerning first=209 second=373 amount=-4 -kerning first=330 second=288 amount=-2 -kerning first=86 second=1263 amount=-1 -kerning first=1119 second=336 amount=-2 -kerning first=950 second=110 amount=-2 -kerning first=946 second=350 amount=-1 -kerning first=255 second=232 amount=-1 -kerning first=375 second=362 amount=-2 -kerning first=168 second=244 amount=-1 -kerning first=278 second=374 amount=-5 -kerning first=275 second=1203 amount=-2 -kerning first=8222 second=87 amount=-3 -kerning first=187 second=1298 amount=-2 -kerning first=310 second=71 amount=-3 -kerning first=210 second=1071 amount=-1 -kerning first=1096 second=111 amount=-1 -kerning first=905 second=1177 amount=-1 -kerning first=910 second=363 amount=-2 -kerning first=93 second=333 amount=-1 -kerning first=236 second=245 amount=-1 -kerning first=356 second=375 amount=-2 -kerning first=951 second=290 amount=-2 -kerning first=113 second=949 amount=-1 -kerning first=376 second=1051 amount=-5 -kerning first=373 second=8211 amount=-1 -kerning first=34 second=44 amount=-1 -kerning first=287 second=84 amount=-5 -kerning first=8224 second=262 amount=-2 -kerning first=1065 second=364 amount=-1 -kerning first=191 second=1090 amount=-3 -kerning first=194 second=334 amount=-2 -kerning first=311 second=246 amount=-2 -kerning first=74 second=346 amount=-1 -kerning first=217 second=258 amount=-2 -kerning first=906 second=8212 amount=-2 -kerning first=100 second=45 amount=-2 -kerning first=94 second=964 amount=-3 -kerning first=354 second=8249 amount=-3 -kerning first=363 second=85 amount=-2 -kerning first=955 second=235 amount=-1 -kerning first=260 second=335 amount=-1 -kerning first=35 second=219 amount=-2 -kerning first=1028 second=377 amount=-1 -kerning first=170 second=1108 amount=-1 -kerning first=174 second=347 amount=-1 -kerning first=291 second=34 amount=-3 -kerning first=8240 second=212 amount=-2 -kerning first=55 second=361 amount=-1 -kerning first=1063 second=8216 amount=-3 -kerning first=58 second=121 amount=-1 -kerning first=195 second=965 amount=-1 -kerning first=75 second=1028 amount=-3 -kerning first=78 second=288 amount=-2 -kerning first=928 second=248 amount=-1 -kerning first=364 second=260 amount=-2 -kerning first=121 second=362 amount=-2 -kerning first=1224 second=8217 amount=-3 -kerning first=36 second=374 amount=-5 -kerning first=1039 second=87 amount=-5 -kerning first=178 second=289 amount=-1 -kerning first=8226 second=1185 amount=-3 -kerning first=62 second=71 amount=-2 -kerning first=1074 second=249 amount=-1 -kerning first=202 second=221 amount=-5 -kerning first=317 second=351 amount=-1 -kerning first=8361 second=1038 amount=-2 -kerning first=322 second=111 amount=-1 -kerning first=962 second=338 amount=-2 -kerning first=965 second=100 amount=-1 -kerning first=119 second=8211 amount=-1 -kerning first=43 second=84 amount=-5 -kerning first=1041 second=262 amount=-2 -kerning first=183 second=234 amount=-1 -kerning first=8230 second=8220 amount=-1 -kerning first=63 second=246 amount=-1 -kerning first=203 second=376 amount=-5 -kerning first=318 second=1035 amount=-5 -kerning first=323 second=291 amount=-1 -kerning first=901 second=211 amount=-2 -kerning first=1103 second=1098 amount=-3 -kerning first=1116 second=101 amount=-2 -kerning first=223 second=1059 amount=-2 -kerning first=100 second=8249 amount=-3 -kerning first=947 second=263 amount=-1 -kerning first=249 second=235 amount=-1 -kerning first=369 second=365 amount=-1 -kerning first=8212 second=90 amount=-2 -kerning first=47 second=34 amount=-3 -kerning first=1048 second=212 amount=-2 -kerning first=291 second=8216 amount=-3 -kerning first=67 second=196 amount=-1 -kerning first=1080 second=354 amount=-5 -kerning first=201 second=8250 amount=-1 -kerning first=210 second=86 amount=-2 -kerning first=902 second=366 amount=-2 -kerning first=87 second=336 amount=-2 -kerning first=1117 second=279 amount=-1 -kerning first=367 second=8217 amount=-3 -kerning first=8216 second=267 amount=-1 -kerning first=1046 second=1185 amount=-3 -kerning first=1049 second=367 amount=-1 -kerning first=188 second=337 amount=-1 -kerning first=191 second=99 amount=-1 -kerning first=300 second=940 amount=-1 -kerning first=303 second=249 amount=-1 -kerning first=1081 second=1038 amount=-2 -kerning first=88 second=967 amount=-2 -kerning first=351 second=1078 amount=-1 -kerning first=1210 second=368 amount=-2 -kerning first=254 second=338 amount=-2 -kerning first=374 second=941 amount=-4 -kerning first=167 second=352 amount=-1 -kerning first=280 second=262 amount=-2 -kerning first=49 second=364 amount=-2 -kerning first=189 second=968 amount=-1 -kerning first=192 second=277 amount=-1 -kerning first=69 second=1035 amount=-5 -kerning first=72 second=291 amount=-1 -kerning first=215 second=211 amount=-2 -kerning first=330 second=1098 amount=-3 -kerning first=912 second=251 amount=-1 -kerning first=238 second=113 amount=-1 -kerning first=355 second=955 amount=-1 -kerning first=358 second=263 amount=-1 -kerning first=1219 second=1066 amount=-5 -kerning first=1206 second=8221 amount=-2 -kerning first=8218 second=1194 amount=-1 -kerning first=8222 second=370 amount=-1 -kerning first=47 second=8216 amount=-3 -kerning first=1067 second=252 amount=-1 -kerning first=196 second=224 amount=-1 -kerning first=1064 second=943 amount=-1 -kerning first=305 second=1118 amount=-1 -kerning first=8361 second=67 amount=-2 -kerning first=213 second=1184 amount=-2 -kerning first=242 second=63 amount=-2 -kerning first=113 second=8217 amount=-3 -kerning first=958 second=103 amount=-1 -kerning first=1263 second=253 amount=-1 -kerning first=37 second=87 amount=-5 -kerning first=282 second=1185 amount=-3 -kerning first=287 second=367 amount=-1 -kerning first=57 second=249 amount=-1 -kerning first=54 second=940 amount=-1 -kerning first=926 second=356 amount=-5 -kerning first=934 second=116 amount=-1 -kerning first=341 second=226 amount=-1 -kerning first=1184 second=268 amount=-3 -kerning first=363 second=368 amount=-2 -kerning first=955 second=972 amount=-1 -kerning first=123 second=250 amount=-1 -kerning first=960 second=281 amount=-1 -kerning first=120 second=941 amount=-2 -kerning first=38 second=262 amount=-2 -kerning first=177 second=1241 amount=-1 -kerning first=180 second=187 amount=-1 -kerning first=283 second=8220 amount=-1 -kerning first=61 second=199 amount=-2 -kerning first=1073 second=357 amount=-1 -kerning first=198 second=1079 amount=-1 -kerning first=204 second=89 amount=-5 -kerning first=78 second=1098 amount=-3 -kerning first=84 second=101 amount=-3 -kerning first=221 second=942 amount=-3 -kerning first=101 second=955 amount=-1 -kerning first=361 second=8221 amount=-3 -kerning first=964 second=228 amount=-1 -kerning first=42 second=212 amount=-2 -kerning first=1039 second=370 amount=-2 -kerning first=1036 second=1194 amount=-3 -kerning first=294 second=943 amount=-1 -kerning first=297 second=252 amount=-1 -kerning first=62 second=354 amount=-5 -kerning first=59 second=1118 amount=-1 -kerning first=1081 second=67 amount=-2 -kerning first=205 second=266 amount=-2 -kerning first=903 second=79 amount=-2 -kerning first=108 second=213 amount=-2 -kerning first=1186 second=1195 amount=-1 -kerning first=251 second=103 amount=-1 -kerning first=371 second=253 amount=-1 -kerning first=962 second=1257 amount=-1 -kerning first=161 second=355 amount=-1 -kerning first=164 second=115 amount=-1 -kerning first=274 second=267 amount=-1 -kerning first=43 second=367 amount=-1 -kerning first=40 second=1185 amount=-3 -kerning first=63 second=1038 amount=-2 -kerning first=1083 second=242 amount=-1 -kerning first=209 second=214 amount=-2 -kerning first=323 second=1101 amount=-1 -kerning first=8377 second=287 amount=-1 -kerning first=901 second=945 amount=-1 -kerning first=89 second=226 amount=-4 -kerning first=1219 second=81 amount=-2 -kerning first=249 second=972 amount=-1 -kerning first=252 second=281 amount=-1 -kerning first=8212 second=373 amount=-1 -kerning first=41 second=8220 amount=-3 -kerning first=190 second=227 amount=-1 -kerning first=305 second=117 amount=-1 -kerning first=302 second=357 amount=-1 -kerning first=327 second=973 amount=-1 -kerning first=87 second=1224 amount=-2 -kerning first=90 second=381 amount=1 -kerning first=1168 second=332 amount=-2 -kerning first=356 second=216 amount=-1 -kerning first=951 second=106 amount=1 -kerning first=256 second=228 amount=-1 -kerning first=169 second=240 amount=-1 -kerning first=276 second=1194 amount=-2 -kerning first=8224 second=83 amount=-1 -kerning first=48 second=943 amount=-1 -kerning first=51 second=252 amount=-1 -kerning first=188 second=1256 amount=-2 -kerning first=208 second=8222 amount=-1 -kerning first=916 second=119 amount=-4 -kerning first=1174 second=271 amount=-1 -kerning first=1169 second=963 amount=-1 -kerning first=354 second=1195 amount=-3 -kerning first=357 second=371 amount=-1 -kerning first=952 second=286 amount=-2 -kerning first=117 second=253 amount=-1 -kerning first=254 second=1257 amount=-1 -kerning first=313 second=242 amount=-1 -kerning first=72 second=1101 amount=-1 -kerning first=215 second=945 amount=-1 -kerning first=1178 second=219 amount=-1 -kerning first=358 second=1069 amount=-1 -kerning first=956 second=231 amount=-1 -kerning first=1299 second=121 amount=-1 -kerning first=1033 second=373 amount=-1 -kerning first=56 second=357 amount=-1 -kerning first=59 second=117 amount=-1 -kerning first=8361 second=350 amount=-1 -kerning first=76 second=973 amount=-1 -kerning first=931 second=244 amount=-1 -kerning first=125 second=118 amount=-4 -kerning first=37 second=370 amount=-2 -kerning first=1034 second=1071 amount=-1 -kerning first=1041 second=83 amount=-1 -kerning first=179 second=283 amount=-1 -kerning first=63 second=67 amount=-2 -kerning first=1075 second=245 amount=-1 -kerning first=203 second=217 amount=-2 -kerning first=8365 second=290 amount=-2 -kerning first=223 second=359 amount=-1 -kerning first=226 second=119 amount=-1 -kerning first=341 second=963 amount=-1 -kerning first=103 second=371 amount=-1 -kerning first=100 second=1195 amount=-1 -kerning first=960 second=1090 amount=-3 -kerning first=963 second=334 amount=-2 -kerning first=271 second=218 amount=-2 -kerning first=184 second=230 amount=-1 -kerning first=296 second=360 amount=-2 -kerning first=8260 second=1059 amount=-2 -kerning first=8240 second=8212 amount=-2 -kerning first=64 second=242 amount=-1 -kerning first=201 second=947 amount=-4 -kerning first=204 second=372 amount=-5 -kerning first=8372 second=235 amount=-1 -kerning first=84 second=1240 amount=-1 -kerning first=1117 second=97 amount=-1 -kerning first=936 second=1108 amount=-1 -kerning first=250 second=231 amount=-1 -kerning first=964 second=965 amount=-1 -kerning first=163 second=243 amount=-1 -kerning first=273 second=373 amount=-4 -kerning first=182 second=1263 amount=-1 -kerning first=1081 second=350 amount=-1 -kerning first=900 second=1176 amount=-1 -kerning first=903 second=362 amount=-2 -kerning first=88 second=332 amount=-3 -kerning first=1118 second=275 amount=-1 -kerning first=1169 second=47 amount=-2 -kerning first=346 second=1203 amount=-1 -kerning first=377 second=71 amount=-1 -kerning first=971 second=221 amount=-5 -kerning first=270 second=8230 amount=-1 -kerning first=280 second=83 amount=-1 -kerning first=8217 second=261 amount=-1 -kerning first=1051 second=363 amount=-1 -kerning first=189 second=333 amount=-1 -kerning first=304 second=245 amount=-1 -kerning first=1087 second=290 amount=-2 -kerning first=209 second=949 amount=-1 -kerning first=901 second=8211 amount=-2 -kerning first=92 second=271 amount=-1 -kerning first=89 second=963 amount=-4 -kerning first=358 second=84 amount=-5 -kerning first=950 second=234 amount=-1 -kerning first=1219 second=364 amount=-2 -kerning first=255 second=334 amount=-2 -kerning first=252 second=1090 amount=-3 -kerning first=378 second=246 amount=-1 -kerning first=168 second=346 amount=-1 -kerning first=8222 second=211 amount=-1 -kerning first=50 second=360 amount=-2 -kerning first=1048 second=8212 amount=-2 -kerning first=190 second=964 amount=-3 -kerning first=193 second=273 amount=-1 -kerning first=196 second=45 amount=-2 -kerning first=73 second=287 amount=-1 -kerning first=1096 second=235 amount=-1 -kerning first=96 second=219 amount=-2 -kerning first=236 second=347 amount=-1 -kerning first=356 second=951 amount=-2 -kerning first=256 second=965 amount=-1 -kerning first=262 second=46 amount=-1 -kerning first=169 second=1028 amount=-2 -kerning first=172 second=288 amount=-2 -kerning first=8224 second=366 amount=-2 -kerning first=197 second=220 amount=-2 -kerning first=77 second=232 amount=-1 -kerning first=214 second=1176 amount=-1 -kerning first=338 second=275 amount=-1 -kerning first=341 second=47 amount=-2 -kerning first=240 second=289 amount=-1 -kerning first=955 second=337 amount=-1 -kerning first=960 second=99 amount=-1 -kerning first=123 second=71 amount=-2 -kerning first=1298 second=249 amount=-1 -kerning first=38 second=83 amount=-1 -kerning first=1035 second=261 amount=-1 -kerning first=177 second=233 amount=-1 -kerning first=8221 second=8218 amount=-1 -kerning first=58 second=245 amount=-1 -kerning first=198 second=375 amount=-1 -kerning first=316 second=290 amount=-2 -kerning first=215 second=8211 amount=-2 -kerning first=218 second=1051 amount=-1 -kerning first=928 second=352 amount=-1 -kerning first=956 second=968 amount=-1 -kerning first=124 second=246 amount=-1 -kerning first=266 second=376 amount=-2 -kerning first=1240 second=1035 amount=-2 -kerning first=39 second=258 amount=-3 -kerning first=1039 second=211 amount=-2 -kerning first=289 second=1059 amount=-2 -kerning first=1074 second=353 amount=-1 -kerning first=196 second=8249 amount=-3 -kerning first=1078 second=113 amount=-2 -kerning first=205 second=85 amount=-2 -kerning first=322 second=235 amount=-1 -kerning first=108 second=34 amount=-3 -kerning first=105 second=259 amount=-1 -kerning first=965 second=224 amount=-1 -kerning first=1037 second=1184 amount=-5 -kerning first=1041 second=366 amount=-2 -kerning first=183 second=336 amount=-2 -kerning first=298 second=248 amount=-1 -kerning first=63 second=350 amount=-1 -kerning first=8377 second=103 amount=-1 -kerning first=89 second=47 amount=-4 -kerning first=86 second=275 amount=-1 -kerning first=1116 second=225 amount=-1 -kerning first=352 second=87 amount=-2 -kerning first=1187 second=1185 amount=-2 -kerning first=249 second=337 amount=-1 -kerning first=252 second=99 amount=-1 -kerning first=369 second=940 amount=-1 -kerning first=372 second=249 amount=-2 -kerning first=165 second=111 amount=-1 -kerning first=162 second=351 amount=-1 -kerning first=271 second=953 amount=-1 -kerning first=41 second=1177 amount=-1 -kerning first=44 second=363 amount=-1 -kerning first=1038 second=8218 amount=-1 -kerning first=327 second=338 amount=-2 -kerning first=8372 second=972 amount=-1 -kerning first=905 second=250 amount=-1 -kerning first=902 second=941 amount=-1 -kerning first=8378 second=281 amount=-1 -kerning first=944 second=1241 amount=-1 -kerning first=948 second=187 amount=-1 -kerning first=250 second=968 amount=-1 -kerning first=253 second=277 amount=-1 -kerning first=376 second=199 amount=-3 -kerning first=967 second=1079 amount=-1 -kerning first=163 second=1035 amount=-5 -kerning first=166 second=291 amount=-1 -kerning first=973 second=89 amount=-5 -kerning first=42 second=8212 amount=-2 -kerning first=303 second=353 amount=-1 -kerning first=306 second=113 amount=-1 -kerning first=357 second=212 amount=-2 -kerning first=108 second=8216 amount=-3 -kerning first=1210 second=943 amount=-1 -kerning first=1223 second=252 amount=-1 -kerning first=374 second=1118 amount=-2 -kerning first=280 second=366 amount=-2 -kerning first=8211 second=8222 amount=-1 -kerning first=8225 second=79 amount=-2 -kerning first=52 second=248 amount=-1 -kerning first=195 second=171 amount=-3 -kerning first=313 second=63 amount=-4 -kerning first=209 second=8217 amount=-3 -kerning first=912 second=355 amount=-1 -kerning first=1175 second=267 amount=-1 -kerning first=358 second=367 amount=-1 -kerning first=1067 second=356 amount=-5 -kerning first=199 second=88 amount=-2 -kerning first=76 second=338 amount=-1 -kerning first=1096 second=972 amount=-1 -kerning first=1099 second=281 amount=-1 -kerning first=337 second=380 amount=-1 -kerning first=239 second=1241 amount=-1 -kerning first=958 second=227 amount=-1 -kerning first=1263 second=357 amount=-1 -kerning first=37 second=211 amount=-2 -kerning first=172 second=1098 amount=-3 -kerning first=176 second=339 amount=-1 -kerning first=179 second=101 amount=-1 -kerning first=57 second=353 amount=-1 -kerning first=60 second=113 amount=-1 -kerning first=200 second=263 amount=-1 -kerning first=8365 second=106 amount=1 -kerning first=1103 second=228 amount=-1 -kerning first=934 second=240 amount=-1 -kerning first=103 second=212 amount=-2 -kerning first=246 second=102 amount=-1 -kerning first=363 second=943 amount=-1 -kerning first=955 second=1256 amount=-2 -kerning first=123 second=354 amount=-5 -kerning first=271 second=39 amount=-3 -kerning first=35 second=1184 amount=-5 -kerning first=38 second=366 amount=-2 -kerning first=1028 second=8222 amount=-1 -kerning first=177 second=970 amount=-1 -kerning first=180 second=279 amount=-1 -kerning first=1044 second=79 amount=-1 -kerning first=8260 second=359 amount=-1 -kerning first=1073 second=920 amount=-2 -kerning first=204 second=213 amount=-2 -kerning first=8363 second=1026 amount=-5 -kerning first=8366 second=286 amount=-2 -kerning first=84 second=225 amount=-2 -kerning first=221 second=1119 amount=-3 -kerning first=345 second=267 amount=-1 -kerning first=101 second=1185 amount=-1 -kerning first=961 second=1083 amount=-1 -kerning first=124 second=1038 amount=-2 -kerning first=273 second=214 amount=-2 -kerning first=1039 second=945 amount=-1 -kerning first=185 second=226 amount=-1 -kerning first=297 second=356 amount=-5 -kerning first=300 second=116 amount=-1 -kerning first=205 second=368 amount=-2 -kerning first=322 second=972 amount=-1 -kerning first=325 second=281 amount=-1 -kerning first=251 second=227 amount=-1 -kerning first=371 second=357 amount=-1 -kerning first=374 second=117 amount=-2 -kerning first=968 second=269 amount=-1 -kerning first=274 second=369 amount=-1 -kerning first=46 second=251 amount=-1 -kerning first=203 second=8221 amount=-3 -kerning first=206 second=1066 amount=-5 -kerning first=1087 second=106 amount=1 -kerning first=330 second=228 amount=-1 -kerning first=86 second=1080 amount=-2 -kerning first=1116 second=962 amount=-2 -kerning first=946 second=283 amount=-1 -kerning first=249 second=1256 amount=-2 -kerning first=1064 second=119 amount=-4 -kerning first=302 second=920 amount=-2 -kerning first=70 second=341 amount=-1 -kerning first=1084 second=1026 amount=-5 -kerning first=73 second=103 amount=-1 -kerning first=327 second=1257 amount=-1 -kerning first=8378 second=1090 amount=-3 -kerning first=93 second=267 amount=-1 -kerning first=1171 second=218 amount=-2 -kerning first=951 second=230 amount=-1 -kerning first=1220 second=360 amount=-2 -kerning first=376 second=923 amount=-5 -kerning first=379 second=242 amount=-1 -kerning first=973 second=372 amount=-5 -kerning first=970 second=947 amount=-2 -kerning first=166 second=1101 amount=-1 -kerning first=51 second=356 amount=-5 -kerning first=54 second=116 amount=-1 -kerning first=194 second=268 amount=-2 -kerning first=74 second=281 amount=-1 -kerning first=1097 second=231 amount=-1 -kerning first=916 second=243 amount=-1 -kerning first=1174 second=373 amount=-2 -kerning first=117 second=357 amount=-1 -kerning first=260 second=269 amount=-1 -kerning first=170 second=973 amount=-1 -kerning first=8225 second=362 amount=-2 -kerning first=198 second=216 amount=-2 -kerning first=316 second=106 amount=1 -kerning first=78 second=228 amount=-1 -kerning first=221 second=118 amount=-2 -kerning first=95 second=1194 amount=-2 -kerning first=956 second=333 amount=-1 -kerning first=124 second=67 amount=-2 -kerning first=1299 second=245 amount=-1 -kerning first=1036 second=257 amount=-1 -kerning first=178 second=229 amount=-1 -kerning first=294 second=119 amount=-4 -kerning first=289 second=359 amount=-1 -kerning first=8222 second=8211 amount=-1 -kerning first=56 second=920 amount=-2 -kerning first=196 second=1195 amount=-1 -kerning first=314 second=1026 amount=-5 -kerning first=317 second=286 amount=-2 -kerning first=8364 second=234 amount=-1 -kerning first=76 second=1257 amount=-1 -kerning first=1099 second=1090 amount=-3 -kerning first=931 second=346 amount=-1 -kerning first=365 second=360 amount=-2 -kerning first=958 second=964 amount=-3 -kerning first=962 second=273 amount=-1 -kerning first=965 second=45 amount=-2 -kerning first=125 second=242 amount=-1 -kerning first=37 second=945 amount=-1 -kerning first=179 second=1240 amount=-2 -kerning first=176 second=1262 amount=-2 -kerning first=1071 second=1108 amount=-1 -kerning first=200 second=1069 amount=-1 -kerning first=206 second=81 amount=-2 -kerning first=323 second=231 amount=-1 -kerning first=901 second=121 amount=-1 -kerning first=1103 second=965 amount=-1 -kerning first=934 second=1028 amount=-2 -kerning first=1044 second=362 amount=-1 -kerning first=184 second=332 amount=-2 -kerning first=299 second=244 amount=-1 -kerning first=1080 second=289 amount=-1 -kerning first=67 second=106 amount=1 -kerning first=8372 second=337 amount=-1 -kerning first=8378 second=99 amount=-1 -kerning first=905 second=71 amount=-2 -kerning first=84 second=962 amount=-3 -kerning first=1117 second=221 amount=-5 -kerning first=944 second=233 amount=-1 -kerning first=250 second=333 amount=-1 -kerning first=373 second=245 amount=-1 -kerning first=967 second=375 amount=-1 -kerning first=273 second=949 amount=-1 -kerning first=276 second=257 amount=-1 -kerning first=1039 second=8211 amount=-2 -kerning first=48 second=119 amount=-4 -kerning first=185 second=963 amount=-1 -kerning first=188 second=271 amount=-1 +kerning first=56 second=8220 amount=-1 +kerning first=56 second=8221 amount=-1 +kerning first=56 second=8222 amount=-1 +kerning first=56 second=8230 amount=-1 +kerning first=57 second=44 amount=-1 +kerning first=57 second=46 amount=-1 +kerning first=57 second=55 amount=-1 +kerning first=57 second=8218 amount=-1 +kerning first=57 second=8222 amount=-1 +kerning first=57 second=8230 amount=-1 +kerning first=110 second=34 amount=-1 +kerning first=110 second=39 amount=-1 +kerning first=110 second=63 amount=-2 +kerning first=110 second=102 amount=-1 +kerning first=110 second=106 amount=1 +kerning first=110 second=118 amount=-1 +kerning first=110 second=119 amount=-1 +kerning first=110 second=373 amount=-1 +kerning first=110 second=947 amount=-1 +kerning first=110 second=957 amount=-1 +kerning first=110 second=964 amount=-1 +kerning first=110 second=1090 amount=-1 +kerning first=110 second=1098 amount=-1 +kerning first=110 second=1112 amount=1 +kerning first=110 second=1185 amount=-1 +kerning first=110 second=1199 amount=-1 +kerning first=110 second=8216 amount=-1 +kerning first=110 second=8217 amount=-1 +kerning first=110 second=8220 amount=-1 +kerning first=110 second=8221 amount=-1 +kerning first=64 second=106 amount=5 +kerning first=64 second=1112 amount=5 +kerning first=65 second=34 amount=-3 +kerning first=65 second=38 amount=-1 +kerning first=65 second=39 amount=-3 +kerning first=65 second=45 amount=-2 +kerning first=65 second=63 amount=-5 +kerning first=65 second=67 amount=-2 +kerning first=65 second=71 amount=-2 +kerning first=65 second=74 amount=-1 +kerning first=65 second=79 amount=-2 +kerning first=65 second=81 amount=-2 +kerning first=65 second=83 amount=-1 +kerning first=65 second=84 amount=-5 +kerning first=65 second=85 amount=-2 +kerning first=65 second=86 amount=-6 +kerning first=65 second=87 amount=-5 +kerning first=65 second=89 amount=-5 +kerning first=65 second=97 amount=-1 +kerning first=65 second=99 amount=-1 +kerning first=65 second=100 amount=-1 +kerning first=65 second=101 amount=-1 +kerning first=65 second=102 amount=-2 +kerning first=65 second=103 amount=-1 +kerning first=65 second=106 amount=1 +kerning first=65 second=111 amount=-1 +kerning first=65 second=113 amount=-1 +kerning first=65 second=115 amount=-1 +kerning first=65 second=116 amount=-1 +kerning first=65 second=117 amount=-1 +kerning first=65 second=118 amount=-4 +kerning first=65 second=119 amount=-4 +kerning first=65 second=121 amount=-1 +kerning first=65 second=171 amount=-3 +kerning first=65 second=173 amount=-2 +kerning first=65 second=187 amount=-1 +kerning first=65 second=199 amount=-2 +kerning first=65 second=210 amount=-2 +kerning first=65 second=211 amount=-2 +kerning first=65 second=212 amount=-2 +kerning first=65 second=213 amount=-2 +kerning first=65 second=214 amount=-2 +kerning first=65 second=216 amount=-2 +kerning first=65 second=217 amount=-2 +kerning first=65 second=218 amount=-2 +kerning first=65 second=219 amount=-2 +kerning first=65 second=220 amount=-2 +kerning first=65 second=221 amount=-5 +kerning first=65 second=224 amount=-1 +kerning first=65 second=225 amount=-1 +kerning first=65 second=226 amount=-1 +kerning first=65 second=227 amount=-1 +kerning first=65 second=228 amount=-1 +kerning first=65 second=229 amount=-1 +kerning first=65 second=230 amount=-1 +kerning first=65 second=231 amount=-1 +kerning first=65 second=232 amount=-1 +kerning first=65 second=233 amount=-1 +kerning first=65 second=234 amount=-1 +kerning first=65 second=235 amount=-1 +kerning first=65 second=240 amount=-1 +kerning first=65 second=242 amount=-1 +kerning first=65 second=243 amount=-1 +kerning first=65 second=244 amount=-1 +kerning first=65 second=245 amount=-1 +kerning first=65 second=246 amount=-1 +kerning first=65 second=248 amount=-1 +kerning first=65 second=249 amount=-1 +kerning first=65 second=250 amount=-1 +kerning first=65 second=251 amount=-1 +kerning first=65 second=252 amount=-1 +kerning first=65 second=253 amount=-1 +kerning first=65 second=257 amount=-1 +kerning first=65 second=259 amount=-1 +kerning first=65 second=261 amount=-1 +kerning first=65 second=262 amount=-2 +kerning first=65 second=263 amount=-1 +kerning first=65 second=266 amount=-2 +kerning first=65 second=267 amount=-1 +kerning first=65 second=268 amount=-2 +kerning first=65 second=269 amount=-1 +kerning first=65 second=271 amount=-1 +kerning first=65 second=273 amount=-1 +kerning first=65 second=275 amount=-1 +kerning first=65 second=277 amount=-1 +kerning first=65 second=279 amount=-1 +kerning first=65 second=281 amount=-1 +kerning first=65 second=283 amount=-1 +kerning first=65 second=286 amount=-2 +kerning first=65 second=287 amount=-1 +kerning first=65 second=288 amount=-2 +kerning first=65 second=289 amount=-1 +kerning first=65 second=290 amount=-2 +kerning first=65 second=291 amount=-1 +kerning first=65 second=332 amount=-2 +kerning first=65 second=333 amount=-1 +kerning first=65 second=334 amount=-2 +kerning first=65 second=335 amount=-1 +kerning first=65 second=336 amount=-2 +kerning first=65 second=337 amount=-1 +kerning first=65 second=338 amount=-2 +kerning first=65 second=339 amount=-1 +kerning first=65 second=346 amount=-1 +kerning first=65 second=347 amount=-1 +kerning first=65 second=350 amount=-1 +kerning first=65 second=351 amount=-1 +kerning first=65 second=352 amount=-1 +kerning first=65 second=353 amount=-1 +kerning first=65 second=354 amount=-5 +kerning first=65 second=355 amount=-1 +kerning first=65 second=356 amount=-5 +kerning first=65 second=357 amount=-1 +kerning first=65 second=359 amount=-1 +kerning first=65 second=360 amount=-2 +kerning first=65 second=361 amount=-1 +kerning first=65 second=362 amount=-2 +kerning first=65 second=363 amount=-1 +kerning first=65 second=364 amount=-2 +kerning first=65 second=365 amount=-1 +kerning first=65 second=366 amount=-2 +kerning first=65 second=367 amount=-1 +kerning first=65 second=368 amount=-2 +kerning first=65 second=369 amount=-1 +kerning first=65 second=370 amount=-2 +kerning first=65 second=371 amount=-1 +kerning first=65 second=372 amount=-5 +kerning first=65 second=373 amount=-4 +kerning first=65 second=374 amount=-5 +kerning first=65 second=375 amount=-1 +kerning first=65 second=376 amount=-5 +kerning first=65 second=920 amount=-2 +kerning first=65 second=927 amount=-2 +kerning first=65 second=932 amount=-5 +kerning first=65 second=933 amount=-5 +kerning first=65 second=936 amount=-3 +kerning first=65 second=939 amount=-5 +kerning first=65 second=940 amount=-1 +kerning first=65 second=941 amount=-1 +kerning first=65 second=943 amount=-1 +kerning first=65 second=945 amount=-1 +kerning first=65 second=947 amount=-4 +kerning first=65 second=949 amount=-1 +kerning first=65 second=950 amount=-1 +kerning first=65 second=953 amount=-1 +kerning first=65 second=957 amount=-4 +kerning first=65 second=959 amount=-1 +kerning first=65 second=962 amount=-1 +kerning first=65 second=963 amount=-1 +kerning first=65 second=964 amount=-3 +kerning first=65 second=965 amount=-1 +kerning first=65 second=966 amount=-1 +kerning first=65 second=968 amount=-1 +kerning first=65 second=970 amount=-1 +kerning first=65 second=972 amount=-1 +kerning first=65 second=973 amount=-1 kerning first=65 second=1026 amount=-5 -kerning first=1085 second=234 amount=-1 -kerning first=325 second=1090 amount=-3 -kerning first=906 second=246 amount=-1 -kerning first=91 second=218 amount=-2 -kerning first=1118 second=376 amount=-5 -kerning first=354 second=258 amount=-6 -kerning first=254 second=273 amount=-1 -kerning first=251 second=964 amount=-3 -kerning first=965 second=8249 amount=-3 -kerning first=167 second=287 amount=-1 -kerning first=192 second=219 amount=-2 -kerning first=301 second=1108 amount=-1 -kerning first=304 second=347 amount=-1 -kerning first=72 second=231 amount=-1 -kerning first=215 second=121 amount=-1 -kerning first=330 second=965 amount=-1 -kerning first=336 second=46 amount=-1 -kerning first=92 second=373 amount=-4 -kerning first=950 second=336 amount=-2 -kerning first=1224 second=248 amount=-1 -kerning first=258 second=220 amount=-2 -kerning first=278 second=1176 amount=-1 -kerning first=8218 second=1063 amount=-3 -kerning first=53 second=244 amount=-1 -kerning first=193 second=374 amount=-5 -kerning first=310 second=289 amount=-1 -kerning first=1096 second=337 amount=-1 -kerning first=1099 second=99 amount=-1 -kerning first=910 second=1114 amount=-3 -kerning first=923 second=111 amount=-1 -kerning first=915 second=351 amount=-1 -kerning first=1176 second=261 amount=-1 -kerning first=1171 second=953 amount=-1 -kerning first=239 second=233 amount=-1 -kerning first=356 second=1177 amount=-2 -kerning first=119 second=245 amount=-1 -kerning first=34 second=257 amount=-1 -kerning first=8224 second=941 amount=-1 -kerning first=8230 second=250 amount=-1 -kerning first=200 second=84 amount=-5 -kerning first=74 second=1090 amount=-3 -kerning first=77 second=334 amount=-2 -kerning first=315 second=234 amount=-1 -kerning first=338 second=376 amount=-5 -kerning first=916 second=1035 amount=-5 -kerning first=926 second=291 amount=-1 -kerning first=1184 second=211 amount=-3 -kerning first=357 second=8212 amount=-2 -kerning first=1298 second=353 amount=-1 -kerning first=1035 second=365 amount=-1 -kerning first=177 second=335 amount=-1 -kerning first=180 second=97 amount=-1 -kerning first=55 second=1108 amount=-1 -kerning first=58 second=347 amount=-1 -kerning first=201 second=259 amount=-1 -kerning first=204 second=34 amount=-3 -kerning first=78 second=965 amount=-1 -kerning first=84 second=46 amount=-3 -kerning first=1178 second=1184 amount=-2 -kerning first=367 second=248 amount=-1 -kerning first=961 second=378 amount=-1 -kerning first=964 second=171 amount=-3 -kerning first=124 second=350 amount=-1 -kerning first=36 second=1176 amount=-1 -kerning first=1033 second=8217 amount=-2 -kerning first=178 second=966 amount=-1 -kerning first=182 second=275 amount=-1 -kerning first=62 second=289 amount=-1 -kerning first=322 second=337 amount=-1 -kerning first=325 second=99 amount=-1 -kerning first=900 second=249 amount=-1 -kerning first=105 second=363 amount=-1 -kerning first=245 second=967 amount=-2 -kerning first=161 second=290 amount=-2 -kerning first=274 second=210 amount=-2 -kerning first=37 second=8211 amount=-2 -kerning first=1041 second=941 amount=-1 -kerning first=298 second=352 amount=-1 -kerning first=1083 second=187 amount=-1 -kerning first=206 second=364 amount=-2 -kerning first=323 second=968 amount=-1 -kerning first=8377 second=227 amount=-1 -kerning first=904 second=199 amount=-2 -kerning first=86 second=376 amount=-5 -kerning first=1119 second=89 amount=-5 -kerning first=940 second=1098 amount=-2 -kerning first=946 second=101 amount=-1 -kerning first=103 second=8212 amount=-2 -kerning first=372 second=353 amount=-2 -kerning first=375 second=113 amount=-1 -kerning first=966 second=955 amount=-1 -kerning first=165 second=235 amount=-1 -kerning first=204 second=8216 amount=-3 -kerning first=8372 second=1256 amount=-2 -kerning first=902 second=1118 amount=-1 -kerning first=905 second=354 amount=-5 -kerning first=84 second=8250 amount=-1 -kerning first=87 second=1075 amount=-2 -kerning first=910 second=114 amount=-3 -kerning first=1168 second=266 amount=-2 -kerning first=1171 second=39 amount=-3 -kerning first=350 second=1184 amount=-1 -kerning first=944 second=970 amount=-1 -kerning first=948 second=279 amount=-1 -kerning first=113 second=248 amount=-1 -kerning first=256 second=171 amount=-3 -kerning first=973 second=213 amount=-2 -kerning first=273 second=8217 amount=-3 -kerning first=194 second=87 amount=-5 -kerning first=74 second=99 amount=-1 -kerning first=214 second=249 amount=-1 -kerning first=332 second=379 amount=-1 -kerning first=906 second=1038 amount=-2 -kerning first=91 second=953 amount=-1 -kerning first=94 second=261 amount=-1 -kerning first=1174 second=214 amount=-1 -kerning first=952 second=226 amount=-1 -kerning first=1223 second=356 amount=-5 -kerning first=170 second=338 amount=-2 -kerning first=174 second=100 amount=-1 -kerning first=280 second=941 amount=-1 -kerning first=52 second=352 amount=-1 -kerning first=1069 second=65 amount=-2 -kerning first=195 second=262 amount=-2 -kerning first=72 second=968 amount=-1 -kerning first=75 second=277 amount=-2 -kerning first=235 second=1098 amount=-1 -kerning first=238 second=339 amount=-1 -kerning first=361 second=251 amount=-1 -kerning first=950 second=1224 amount=-2 -kerning first=121 second=113 amount=-1 -kerning first=118 second=353 amount=-1 -kerning first=972 second=8221 amount=-1 -kerning first=1026 second=1066 amount=-5 -kerning first=8361 second=283 amount=-1 -kerning first=1096 second=1256 amount=-2 -kerning first=96 second=1184 amount=-5 -kerning first=1186 second=79 amount=-1 -kerning first=239 second=970 amount=-1 -kerning first=1263 second=920 amount=-2 -kerning first=1037 second=253 amount=-1 -kerning first=179 second=225 amount=-1 -kerning first=197 second=1185 amount=-3 -kerning first=200 second=367 amount=-1 -kerning first=8365 second=230 amount=-1 -kerning first=80 second=379 amount=-1 -kerning first=926 second=1101 amount=-1 -kerning first=1184 second=945 amount=-2 -kerning first=369 second=116 amount=-1 -kerning first=963 second=268 amount=-2 -kerning first=41 second=250 amount=-1 -kerning first=38 second=941 amount=-1 -kerning first=61 second=1241 amount=-1 -kerning first=64 second=187 amount=-1 -kerning first=198 second=8220 amount=-3 -kerning first=8363 second=1263 amount=-1 -kerning first=902 second=117 amount=-1 -kerning first=84 second=326 amount=-2 -kerning first=936 second=973 amount=-1 -kerning first=967 second=216 amount=-2 -kerning first=1049 second=118 amount=-4 -kerning first=300 second=240 amount=-1 -kerning first=1078 second=974 amount=-1 -kerning first=1081 second=283 amount=-1 -kerning first=205 second=943 amount=-1 -kerning first=322 second=1256 amount=-2 -kerning first=906 second=67 amount=-2 -kerning first=88 second=266 amount=-3 -kerning first=91 second=39 amount=-3 -kerning first=1118 second=217 amount=-2 -kerning first=343 second=8222 amount=-3 -kerning first=354 second=79 amount=-1 -kerning first=1210 second=119 amount=-4 -kerning first=371 second=920 amount=-2 -kerning first=374 second=241 amount=-3 -kerning first=965 second=1195 amount=-1 -kerning first=968 second=371 amount=-1 -kerning first=167 second=103 amount=-1 -kerning first=46 second=355 amount=-1 -kerning first=49 second=115 amount=-1 -kerning first=1047 second=1046 amount=-2 -kerning first=189 second=267 amount=-1 -kerning first=1087 second=230 amount=-1 -kerning first=92 second=214 amount=-2 -kerning first=8377 second=964 amount=-3 -kerning first=1119 second=372 amount=-5 -kerning first=946 second=1240 amount=-2 -kerning first=255 second=268 amount=-2 -kerning first=1026 second=81 amount=-2 -kerning first=165 second=972 amount=-1 -kerning first=168 second=281 amount=-1 -kerning first=8212 second=1175 amount=-2 -kerning first=8218 second=361 amount=-1 -kerning first=8222 second=121 amount=-1 -kerning first=1064 second=243 amount=-1 -kerning first=73 second=227 amount=-1 -kerning first=1084 second=1263 amount=-1 -kerning first=93 second=369 amount=-1 -kerning first=951 second=332 amount=-2 -kerning first=172 second=228 amount=-1 -kerning first=287 second=118 amount=-4 -kerning first=8230 second=71 amount=-1 -kerning first=54 second=240 amount=-1 -kerning first=1068 second=193 amount=-1 -kerning first=191 second=1194 amount=-2 -kerning first=194 second=370 amount=-2 -kerning first=311 second=283 amount=-2 -kerning first=1097 second=333 amount=-1 -kerning first=338 second=217 amount=-2 -kerning first=100 second=79 amount=-2 -kerning first=1174 second=949 amount=-1 -kerning first=240 second=229 amount=-1 -kerning first=363 second=119 amount=-4 -kerning first=955 second=271 amount=-1 -kerning first=952 second=963 amount=-1 -kerning first=117 second=920 amount=-2 -kerning first=260 second=371 amount=-1 -kerning first=35 second=253 amount=-1 -kerning first=170 second=1257 amount=-1 -kerning first=8240 second=246 amount=-1 -kerning first=316 second=230 amount=-1 -kerning first=218 second=923 amount=-2 -kerning first=221 second=242 amount=-4 -kerning first=928 second=287 amount=-1 -kerning first=238 second=1262 amount=-2 -kerning first=1299 second=347 amount=-1 -kerning first=1036 second=361 amount=-1 -kerning first=1039 second=121 amount=-1 -kerning first=294 second=243 amount=-1 -kerning first=1074 second=288 amount=-2 -kerning first=314 second=1263 amount=-1 -kerning first=8364 second=336 amount=-2 -kerning first=1186 second=362 amount=-1 -kerning first=962 second=374 amount=-5 -kerning first=161 second=106 amount=1 -kerning first=270 second=256 amount=-2 -kerning first=43 second=118 amount=-4 -kerning first=179 second=962 amount=-1 -kerning first=63 second=283 amount=-1 -kerning first=323 second=333 amount=-1 -kerning first=901 second=245 amount=-1 -kerning first=86 second=217 amount=-2 -kerning first=1184 second=8211 amount=-4 -kerning first=109 second=119 amount=-1 -kerning first=249 second=271 amount=-1 -kerning first=372 second=194 amount=-5 -kerning first=126 second=1026 amount=-5 -kerning first=162 second=286 amount=-2 -kerning first=1044 second=934 amount=-2 -kerning first=1048 second=246 amount=-1 -kerning first=299 second=346 amount=-1 -kerning first=207 second=360 amount=-2 -kerning first=324 second=964 amount=-1 -kerning first=327 second=273 amount=-1 -kerning first=84 second=947 amount=-2 -kerning first=1168 second=85 amount=-2 -kerning first=944 second=335 amount=-1 -kerning first=948 second=97 amount=-1 -kerning first=253 second=219 amount=-2 -kerning first=376 second=109 amount=-3 -kerning first=373 second=347 amount=-1 -kerning first=973 second=34 amount=-3 -kerning first=166 second=231 amount=-1 -kerning first=276 second=361 amount=-1 -kerning first=8220 second=74 amount=-4 -kerning first=48 second=243 amount=-1 -kerning first=188 second=373 amount=-4 -kerning first=300 second=1028 amount=-2 -kerning first=303 second=288 amount=-2 +kerning first=65 second=1028 amount=-2 +kerning first=65 second=1029 amount=-1 +kerning first=65 second=1032 amount=-1 +kerning first=65 second=1035 amount=-5 +kerning first=65 second=1038 amount=-2 +kerning first=65 second=1054 amount=-2 +kerning first=65 second=1057 amount=-2 +kerning first=65 second=1058 amount=-5 +kerning first=65 second=1059 amount=-2 +kerning first=65 second=1063 amount=-3 +kerning first=65 second=1066 amount=-5 +kerning first=65 second=1069 amount=-1 +kerning first=65 second=1072 amount=-1 +kerning first=65 second=1077 amount=-1 +kerning first=65 second=1079 amount=-1 +kerning first=65 second=1086 amount=-1 +kerning first=65 second=1089 amount=-1 +kerning first=65 second=1090 amount=-3 +kerning first=65 second=1091 amount=-1 +kerning first=65 second=1092 amount=-1 +kerning first=65 second=1098 amount=-3 +kerning first=65 second=1101 amount=-1 +kerning first=65 second=1104 amount=-1 +kerning first=65 second=1105 amount=-1 +kerning first=65 second=1108 amount=-1 +kerning first=65 second=1109 amount=-1 +kerning first=65 second=1112 amount=1 +kerning first=65 second=1118 amount=-1 +kerning first=65 second=1176 amount=-1 +kerning first=65 second=1177 amount=-1 +kerning first=65 second=1184 amount=-5 +kerning first=65 second=1185 amount=-3 +kerning first=65 second=1194 amount=-2 +kerning first=65 second=1195 amount=-1 +kerning first=65 second=1198 amount=-5 +kerning first=65 second=1199 amount=-4 +kerning first=65 second=1240 amount=-2 +kerning first=65 second=1241 amount=-1 +kerning first=65 second=1256 amount=-2 +kerning first=65 second=1257 amount=-1 +kerning first=65 second=1262 amount=-2 kerning first=65 second=1263 amount=-1 -kerning first=1085 second=336 amount=-2 -kerning first=906 second=350 amount=-1 +kerning first=65 second=8211 amount=-2 +kerning first=65 second=8212 amount=-2 +kerning first=65 second=8216 amount=-3 +kerning first=65 second=8217 amount=-3 +kerning first=65 second=8220 amount=-3 +kerning first=65 second=8221 amount=-3 +kerning first=65 second=8249 amount=-3 +kerning first=65 second=8250 amount=-1 +kerning first=66 second=65 amount=-1 +kerning first=66 second=84 amount=-1 +kerning first=66 second=86 amount=-1 +kerning first=66 second=87 amount=-1 +kerning first=66 second=88 amount=-2 +kerning first=66 second=89 amount=-2 +kerning first=66 second=193 amount=-1 +kerning first=66 second=194 amount=-1 +kerning first=66 second=196 amount=-1 +kerning first=66 second=197 amount=-1 +kerning first=66 second=198 amount=-1 +kerning first=66 second=221 amount=-2 +kerning first=66 second=256 amount=-1 +kerning first=66 second=258 amount=-1 +kerning first=66 second=260 amount=-1 +kerning first=66 second=354 amount=-1 +kerning first=66 second=356 amount=-1 +kerning first=66 second=372 amount=-1 +kerning first=66 second=374 amount=-2 +kerning first=66 second=376 amount=-2 +kerning first=66 second=913 amount=-1 +kerning first=66 second=916 amount=-1 +kerning first=66 second=923 amount=-1 +kerning first=66 second=932 amount=-1 +kerning first=66 second=933 amount=-2 +kerning first=66 second=935 amount=-2 +kerning first=66 second=939 amount=-2 +kerning first=66 second=955 amount=-1 +kerning first=66 second=1026 amount=-1 +kerning first=66 second=1035 amount=-1 +kerning first=66 second=1040 amount=-1 +kerning first=66 second=1046 amount=-2 +kerning first=66 second=1058 amount=-1 +kerning first=66 second=1061 amount=-2 +kerning first=66 second=1066 amount=-1 +kerning first=66 second=1174 amount=-2 +kerning first=66 second=1184 amount=-1 +kerning first=66 second=1198 amount=-2 +kerning first=66 second=1202 amount=-2 +kerning first=67 second=44 amount=-1 +kerning first=67 second=45 amount=-1 +kerning first=67 second=46 amount=-1 +kerning first=67 second=47 amount=-1 +kerning first=67 second=65 amount=-1 +kerning first=67 second=84 amount=-1 +kerning first=67 second=86 amount=-1 +kerning first=67 second=87 amount=-1 +kerning first=67 second=88 amount=-2 +kerning first=67 second=89 amount=-2 +kerning first=67 second=90 amount=-1 +kerning first=67 second=106 amount=1 +kerning first=67 second=171 amount=-1 +kerning first=67 second=173 amount=-1 +kerning first=67 second=193 amount=-1 +kerning first=67 second=194 amount=-1 +kerning first=67 second=196 amount=-1 +kerning first=67 second=197 amount=-1 +kerning first=67 second=198 amount=-1 +kerning first=67 second=221 amount=-2 +kerning first=67 second=256 amount=-1 +kerning first=67 second=258 amount=-1 +kerning first=67 second=260 amount=-1 +kerning first=67 second=354 amount=-1 +kerning first=67 second=356 amount=-1 +kerning first=67 second=372 amount=-1 +kerning first=67 second=374 amount=-2 +kerning first=67 second=376 amount=-2 +kerning first=67 second=377 amount=-1 +kerning first=67 second=379 amount=-1 +kerning first=67 second=381 amount=-1 +kerning first=67 second=913 amount=-1 +kerning first=67 second=916 amount=-1 +kerning first=67 second=918 amount=-1 +kerning first=67 second=923 amount=-1 +kerning first=67 second=932 amount=-1 +kerning first=67 second=933 amount=-2 +kerning first=67 second=935 amount=-2 +kerning first=67 second=939 amount=-2 +kerning first=67 second=1026 amount=-1 +kerning first=67 second=1033 amount=-1 +kerning first=67 second=1035 amount=-1 +kerning first=67 second=1040 amount=-1 +kerning first=67 second=1044 amount=-1 +kerning first=67 second=1046 amount=-2 +kerning first=67 second=1051 amount=-1 +kerning first=67 second=1058 amount=-1 +kerning first=67 second=1061 amount=-2 +kerning first=67 second=1066 amount=-1 +kerning first=67 second=1069 amount=1 +kerning first=67 second=1112 amount=1 +kerning first=67 second=1174 amount=-2 +kerning first=67 second=1176 amount=1 +kerning first=67 second=1184 amount=-1 +kerning first=67 second=1198 amount=-2 +kerning first=67 second=1202 amount=-2 +kerning first=67 second=1298 amount=-1 +kerning first=67 second=8211 amount=-1 +kerning first=67 second=8212 amount=-1 +kerning first=67 second=8218 amount=-1 +kerning first=67 second=8222 amount=-1 +kerning first=67 second=8230 amount=-1 +kerning first=67 second=8249 amount=-1 +kerning first=68 second=44 amount=-1 +kerning first=68 second=46 amount=-1 +kerning first=68 second=47 amount=-1 +kerning first=68 second=65 amount=-2 +kerning first=68 second=84 amount=-2 +kerning first=68 second=86 amount=-2 +kerning first=68 second=87 amount=-2 +kerning first=68 second=88 amount=-3 +kerning first=68 second=89 amount=-3 +kerning first=68 second=90 amount=-1 +kerning first=68 second=193 amount=-2 +kerning first=68 second=194 amount=-2 +kerning first=68 second=196 amount=-2 +kerning first=68 second=197 amount=-2 +kerning first=68 second=198 amount=-2 +kerning first=68 second=221 amount=-3 +kerning first=68 second=256 amount=-2 +kerning first=68 second=258 amount=-2 +kerning first=68 second=260 amount=-2 +kerning first=68 second=354 amount=-2 +kerning first=68 second=356 amount=-2 +kerning first=68 second=372 amount=-2 +kerning first=68 second=374 amount=-3 +kerning first=68 second=376 amount=-3 +kerning first=68 second=377 amount=-1 +kerning first=68 second=379 amount=-1 +kerning first=68 second=381 amount=-1 +kerning first=68 second=913 amount=-2 +kerning first=68 second=916 amount=-2 +kerning first=68 second=918 amount=-1 +kerning first=68 second=923 amount=-2 +kerning first=68 second=932 amount=-2 +kerning first=68 second=933 amount=-3 +kerning first=68 second=935 amount=-3 +kerning first=68 second=939 amount=-3 +kerning first=68 second=955 amount=-2 +kerning first=68 second=967 amount=-1 +kerning first=68 second=1026 amount=-2 +kerning first=68 second=1033 amount=-1 +kerning first=68 second=1035 amount=-2 +kerning first=68 second=1040 amount=-2 +kerning first=68 second=1044 amount=-1 +kerning first=68 second=1046 amount=-3 +kerning first=68 second=1051 amount=-1 +kerning first=68 second=1058 amount=-2 +kerning first=68 second=1061 amount=-3 +kerning first=68 second=1066 amount=-2 +kerning first=68 second=1071 amount=-1 +kerning first=68 second=1174 amount=-3 +kerning first=68 second=1184 amount=-2 +kerning first=68 second=1198 amount=-3 +kerning first=68 second=1202 amount=-3 +kerning first=68 second=1298 amount=-1 +kerning first=68 second=8218 amount=-1 +kerning first=68 second=8222 amount=-1 +kerning first=68 second=8230 amount=-1 +kerning first=70 second=44 amount=-4 +kerning first=70 second=46 amount=-4 +kerning first=70 second=47 amount=-2 +kerning first=70 second=110 amount=-1 +kerning first=70 second=65 amount=-4 +kerning first=70 second=67 amount=-1 +kerning first=70 second=114 amount=-1 +kerning first=70 second=71 amount=-1 +kerning first=70 second=74 amount=-6 +kerning first=70 second=79 amount=-1 +kerning first=70 second=81 amount=-1 +kerning first=70 second=97 amount=-1 +kerning first=70 second=99 amount=-1 +kerning first=70 second=100 amount=-1 +kerning first=70 second=101 amount=-1 +kerning first=70 second=103 amount=-1 +kerning first=70 second=109 amount=-1 +kerning first=70 second=111 amount=-1 +kerning first=70 second=112 amount=-1 +kerning first=70 second=113 amount=-1 +kerning first=70 second=115 amount=-1 +kerning first=70 second=117 amount=-1 +kerning first=70 second=121 amount=-1 +kerning first=70 second=122 amount=-1 +kerning first=70 second=193 amount=-4 +kerning first=70 second=194 amount=-4 +kerning first=70 second=196 amount=-4 +kerning first=70 second=197 amount=-4 +kerning first=70 second=198 amount=-4 +kerning first=70 second=199 amount=-1 +kerning first=70 second=210 amount=-1 +kerning first=70 second=211 amount=-1 +kerning first=70 second=212 amount=-1 +kerning first=70 second=213 amount=-1 +kerning first=70 second=214 amount=-1 +kerning first=70 second=216 amount=-1 +kerning first=70 second=224 amount=-1 +kerning first=70 second=225 amount=-1 +kerning first=70 second=226 amount=-1 +kerning first=70 second=227 amount=-1 +kerning first=70 second=228 amount=-1 +kerning first=70 second=229 amount=-1 +kerning first=70 second=230 amount=-1 +kerning first=70 second=231 amount=-1 +kerning first=70 second=232 amount=-1 +kerning first=70 second=233 amount=-1 +kerning first=70 second=234 amount=-1 +kerning first=70 second=235 amount=-1 +kerning first=70 second=240 amount=-1 +kerning first=70 second=241 amount=-1 +kerning first=70 second=242 amount=-1 +kerning first=70 second=243 amount=-1 +kerning first=70 second=244 amount=-1 +kerning first=70 second=245 amount=-1 +kerning first=70 second=246 amount=-1 +kerning first=70 second=248 amount=-1 +kerning first=70 second=249 amount=-1 +kerning first=70 second=250 amount=-1 +kerning first=70 second=251 amount=-1 +kerning first=70 second=252 amount=-1 +kerning first=70 second=253 amount=-1 +kerning first=70 second=256 amount=-4 +kerning first=70 second=257 amount=-1 +kerning first=70 second=258 amount=-4 +kerning first=70 second=259 amount=-1 +kerning first=70 second=260 amount=-4 +kerning first=70 second=261 amount=-1 +kerning first=70 second=262 amount=-1 +kerning first=70 second=263 amount=-1 +kerning first=70 second=266 amount=-1 +kerning first=70 second=267 amount=-1 +kerning first=70 second=268 amount=-1 +kerning first=70 second=269 amount=-1 +kerning first=70 second=271 amount=-1 +kerning first=70 second=273 amount=-1 +kerning first=70 second=275 amount=-1 +kerning first=70 second=277 amount=-1 +kerning first=70 second=279 amount=-1 +kerning first=70 second=281 amount=-1 +kerning first=70 second=283 amount=-1 +kerning first=70 second=286 amount=-1 +kerning first=70 second=287 amount=-1 +kerning first=70 second=288 amount=-1 +kerning first=70 second=289 amount=-1 +kerning first=70 second=290 amount=-1 +kerning first=70 second=291 amount=-1 +kerning first=70 second=324 amount=-1 +kerning first=70 second=326 amount=-1 +kerning first=70 second=328 amount=-1 +kerning first=70 second=331 amount=-1 +kerning first=70 second=332 amount=-1 +kerning first=70 second=333 amount=-1 +kerning first=70 second=334 amount=-1 +kerning first=70 second=335 amount=-1 +kerning first=70 second=336 amount=-1 +kerning first=70 second=337 amount=-1 +kerning first=70 second=338 amount=-1 +kerning first=70 second=339 amount=-1 +kerning first=70 second=341 amount=-1 +kerning first=70 second=343 amount=-1 +kerning first=70 second=345 amount=-1 +kerning first=70 second=347 amount=-1 +kerning first=70 second=351 amount=-1 +kerning first=70 second=353 amount=-1 +kerning first=70 second=361 amount=-1 +kerning first=70 second=363 amount=-1 +kerning first=70 second=365 amount=-1 +kerning first=70 second=367 amount=-1 +kerning first=70 second=369 amount=-1 +kerning first=70 second=371 amount=-1 +kerning first=70 second=375 amount=-1 +kerning first=70 second=378 amount=-1 +kerning first=70 second=380 amount=-1 +kerning first=70 second=382 amount=-1 +kerning first=70 second=913 amount=-4 +kerning first=70 second=916 amount=-4 +kerning first=70 second=920 amount=-1 +kerning first=70 second=923 amount=-4 +kerning first=70 second=927 amount=-1 +kerning first=70 second=940 amount=-1 +kerning first=70 second=941 amount=-1 +kerning first=70 second=942 amount=-1 +kerning first=70 second=945 amount=-1 +kerning first=70 second=949 amount=-1 +kerning first=70 second=951 amount=-1 +kerning first=70 second=954 amount=-1 +kerning first=70 second=959 amount=-1 +kerning first=70 second=962 amount=-1 +kerning first=70 second=963 amount=-1 +kerning first=70 second=965 amount=-1 +kerning first=70 second=966 amount=-1 +kerning first=70 second=968 amount=-1 +kerning first=70 second=972 amount=-1 +kerning first=70 second=973 amount=-1 +kerning first=70 second=1028 amount=-1 +kerning first=70 second=1032 amount=-6 +kerning first=70 second=1040 amount=-4 +kerning first=70 second=1054 amount=-1 +kerning first=70 second=1057 amount=-1 +kerning first=70 second=1072 amount=-1 +kerning first=70 second=1074 amount=-1 +kerning first=70 second=1075 amount=-1 +kerning first=70 second=1077 amount=-1 +kerning first=70 second=1079 amount=-1 +kerning first=70 second=1080 amount=-1 +kerning first=70 second=1081 amount=-1 +kerning first=70 second=1082 amount=-1 +kerning first=70 second=1084 amount=-1 +kerning first=70 second=1085 amount=-1 +kerning first=70 second=1086 amount=-1 +kerning first=70 second=1087 amount=-1 +kerning first=70 second=1088 amount=-1 +kerning first=70 second=1089 amount=-1 +kerning first=70 second=1091 amount=-1 +kerning first=70 second=1092 amount=-1 +kerning first=70 second=1094 amount=-1 +kerning first=70 second=1096 amount=-1 +kerning first=70 second=1097 amount=-1 +kerning first=70 second=1099 amount=-1 +kerning first=70 second=1100 amount=-1 +kerning first=70 second=1101 amount=-1 +kerning first=70 second=1102 amount=-1 +kerning first=70 second=1104 amount=-1 +kerning first=70 second=1105 amount=-1 +kerning first=70 second=1107 amount=-1 +kerning first=70 second=1108 amount=-1 +kerning first=70 second=1109 amount=-1 +kerning first=70 second=1114 amount=-1 +kerning first=70 second=1116 amount=-1 +kerning first=70 second=1117 amount=-1 +kerning first=70 second=1118 amount=-1 +kerning first=70 second=1119 amount=-1 +kerning first=70 second=1169 amount=-1 +kerning first=70 second=1177 amount=-1 +kerning first=70 second=1179 amount=-1 +kerning first=70 second=1187 amount=-1 +kerning first=70 second=1194 amount=-1 +kerning first=70 second=1195 amount=-1 +kerning first=70 second=1220 amount=-1 +kerning first=70 second=1224 amount=-1 +kerning first=70 second=1240 amount=-1 +kerning first=70 second=1241 amount=-1 +kerning first=70 second=1256 amount=-1 +kerning first=70 second=1257 amount=-1 +kerning first=70 second=1263 amount=-1 +kerning first=70 second=8218 amount=-4 +kerning first=70 second=8222 amount=-4 +kerning first=70 second=8230 amount=-4 +kerning first=114 second=44 amount=-3 +kerning first=114 second=45 amount=-1 +kerning first=114 second=46 amount=-3 +kerning first=114 second=47 amount=-2 +kerning first=114 second=97 amount=-1 +kerning first=114 second=99 amount=-1 +kerning first=114 second=100 amount=-1 +kerning first=114 second=101 amount=-1 +kerning first=114 second=103 amount=-1 +kerning first=114 second=111 amount=-1 +kerning first=114 second=113 amount=-1 +kerning first=114 second=115 amount=-1 +kerning first=114 second=173 amount=-1 +kerning first=114 second=224 amount=-1 +kerning first=114 second=225 amount=-1 +kerning first=114 second=226 amount=-1 +kerning first=114 second=227 amount=-1 +kerning first=114 second=228 amount=-1 +kerning first=114 second=229 amount=-1 +kerning first=114 second=230 amount=-1 +kerning first=114 second=231 amount=-1 +kerning first=114 second=232 amount=-1 +kerning first=114 second=233 amount=-1 +kerning first=114 second=234 amount=-1 +kerning first=114 second=235 amount=-1 +kerning first=114 second=240 amount=-1 +kerning first=114 second=242 amount=-1 +kerning first=114 second=243 amount=-1 kerning first=114 second=244 amount=-1 -kerning first=254 second=374 amount=-5 -kerning first=374 second=1033 amount=-5 -kerning first=8217 second=940 amount=-1 -kerning first=1063 second=351 amount=-1 -kerning first=195 second=83 amount=-1 -kerning first=72 second=333 amount=-1 -kerning first=215 second=245 amount=-1 -kerning first=912 second=290 amount=-2 -kerning first=92 second=949 amount=-1 -kerning first=95 second=257 amount=-1 -kerning first=232 second=1299 amount=-1 -kerning first=1224 second=352 amount=-1 -kerning first=381 second=234 amount=-1 -kerning first=1026 second=364 amount=-2 -kerning first=168 second=1090 amount=-3 -kerning first=8226 second=199 amount=-2 -kerning first=53 second=346 amount=-1 -kerning first=1064 second=1035 amount=-5 -kerning first=1067 second=291 amount=-1 -kerning first=193 second=950 amount=-1 -kerning first=8361 second=101 amount=-1 -kerning first=73 second=964 amount=-3 +kerning first=114 second=245 amount=-1 +kerning first=114 second=246 amount=-1 +kerning first=114 second=248 amount=-1 +kerning first=114 second=257 amount=-1 +kerning first=114 second=259 amount=-1 +kerning first=114 second=261 amount=-1 +kerning first=114 second=263 amount=-1 +kerning first=114 second=267 amount=-1 +kerning first=114 second=269 amount=-1 +kerning first=114 second=271 amount=-1 +kerning first=114 second=273 amount=-1 +kerning first=114 second=275 amount=-1 +kerning first=114 second=277 amount=-1 +kerning first=114 second=279 amount=-1 +kerning first=114 second=281 amount=-1 +kerning first=114 second=283 amount=-1 +kerning first=114 second=287 amount=-1 +kerning first=114 second=289 amount=-1 +kerning first=114 second=291 amount=-1 +kerning first=114 second=333 amount=-1 +kerning first=114 second=335 amount=-1 +kerning first=114 second=337 amount=-1 +kerning first=114 second=339 amount=-1 +kerning first=114 second=347 amount=-1 +kerning first=114 second=351 amount=-1 +kerning first=114 second=353 amount=-1 +kerning first=114 second=940 amount=-1 +kerning first=114 second=941 amount=-1 +kerning first=114 second=945 amount=-1 +kerning first=114 second=949 amount=-1 +kerning first=114 second=955 amount=-3 +kerning first=114 second=959 amount=-1 +kerning first=114 second=962 amount=-1 +kerning first=114 second=963 amount=-1 +kerning first=114 second=966 amount=-1 +kerning first=114 second=972 amount=-1 +kerning first=114 second=1072 amount=-1 +kerning first=114 second=1077 amount=-1 +kerning first=114 second=1086 amount=-1 +kerning first=114 second=1089 amount=-1 +kerning first=114 second=1092 amount=-1 +kerning first=114 second=1104 amount=-1 +kerning first=114 second=1105 amount=-1 +kerning first=114 second=1108 amount=-1 +kerning first=114 second=1109 amount=-1 +kerning first=114 second=1195 amount=-1 +kerning first=114 second=1241 amount=-1 +kerning first=114 second=1257 amount=-1 +kerning first=114 second=8211 amount=-1 +kerning first=114 second=8212 amount=-1 +kerning first=114 second=8218 amount=-3 +kerning first=114 second=8222 amount=-3 +kerning first=114 second=8230 amount=-3 +kerning first=71 second=75 amount=2 +kerning first=71 second=84 amount=-1 +kerning first=71 second=86 amount=-2 +kerning first=71 second=87 amount=-1 +kerning first=71 second=89 amount=-2 +kerning first=71 second=106 amount=2 +kerning first=71 second=221 amount=-2 +kerning first=71 second=354 amount=-1 +kerning first=71 second=356 amount=-1 +kerning first=71 second=372 amount=-1 +kerning first=71 second=374 amount=-2 +kerning first=71 second=376 amount=-2 +kerning first=71 second=922 amount=2 +kerning first=71 second=932 amount=-1 +kerning first=71 second=933 amount=-2 +kerning first=71 second=939 amount=-2 +kerning first=71 second=1026 amount=-1 +kerning first=71 second=1035 amount=-1 +kerning first=71 second=1050 amount=2 +kerning first=71 second=1058 amount=-1 +kerning first=71 second=1066 amount=-1 +kerning first=71 second=1112 amount=2 +kerning first=71 second=1184 amount=-1 +kerning first=71 second=1198 amount=-2 +kerning first=74 second=44 amount=-1 +kerning first=74 second=46 amount=-1 +kerning first=74 second=47 amount=-1 +kerning first=74 second=65 amount=-1 +kerning first=74 second=193 amount=-1 +kerning first=74 second=194 amount=-1 +kerning first=74 second=196 amount=-1 +kerning first=74 second=197 amount=-1 +kerning first=74 second=198 amount=-1 +kerning first=74 second=256 amount=-1 +kerning first=74 second=258 amount=-1 +kerning first=74 second=260 amount=-1 +kerning first=74 second=913 amount=-1 +kerning first=74 second=916 amount=-1 +kerning first=74 second=923 amount=-1 +kerning first=74 second=1040 amount=-1 +kerning first=74 second=8218 amount=-1 +kerning first=74 second=8222 amount=-1 +kerning first=74 second=8230 amount=-1 +kerning first=75 second=38 amount=-2 +kerning first=75 second=45 amount=-4 +kerning first=75 second=63 amount=-2 +kerning first=75 second=67 amount=-3 +kerning first=75 second=71 amount=-3 +kerning first=75 second=74 amount=-1 +kerning first=75 second=79 amount=-3 +kerning first=75 second=81 amount=-3 +kerning first=75 second=83 amount=-1 +kerning first=75 second=97 amount=-1 +kerning first=75 second=99 amount=-2 +kerning first=75 second=100 amount=-2 +kerning first=75 second=101 amount=-2 +kerning first=75 second=102 amount=-2 +kerning first=75 second=103 amount=-1 +kerning first=75 second=111 amount=-2 +kerning first=75 second=113 amount=-2 +kerning first=75 second=116 amount=-1 +kerning first=75 second=117 amount=-1 +kerning first=75 second=118 amount=-3 +kerning first=75 second=119 amount=-3 +kerning first=75 second=121 amount=-2 +kerning first=75 second=171 amount=-3 +kerning first=75 second=173 amount=-4 +kerning first=75 second=187 amount=-2 +kerning first=75 second=199 amount=-3 +kerning first=75 second=210 amount=-3 +kerning first=75 second=211 amount=-3 +kerning first=75 second=212 amount=-3 +kerning first=75 second=213 amount=-3 +kerning first=75 second=214 amount=-3 +kerning first=75 second=216 amount=-3 +kerning first=75 second=224 amount=-1 +kerning first=75 second=225 amount=-1 +kerning first=75 second=226 amount=-1 +kerning first=75 second=227 amount=-1 +kerning first=75 second=228 amount=-1 +kerning first=75 second=229 amount=-1 +kerning first=75 second=230 amount=-1 +kerning first=75 second=231 amount=-2 +kerning first=75 second=232 amount=-2 +kerning first=75 second=233 amount=-2 +kerning first=75 second=234 amount=-2 +kerning first=75 second=235 amount=-2 +kerning first=75 second=240 amount=-2 +kerning first=75 second=242 amount=-2 +kerning first=75 second=243 amount=-2 +kerning first=75 second=244 amount=-2 +kerning first=75 second=245 amount=-2 +kerning first=75 second=246 amount=-2 +kerning first=75 second=248 amount=-2 +kerning first=75 second=249 amount=-1 +kerning first=75 second=250 amount=-1 +kerning first=75 second=251 amount=-1 +kerning first=75 second=252 amount=-1 +kerning first=75 second=253 amount=-2 +kerning first=75 second=257 amount=-1 +kerning first=75 second=259 amount=-1 +kerning first=75 second=261 amount=-1 +kerning first=75 second=262 amount=-3 +kerning first=75 second=263 amount=-2 +kerning first=75 second=266 amount=-3 +kerning first=75 second=267 amount=-2 +kerning first=75 second=268 amount=-3 +kerning first=75 second=269 amount=-2 +kerning first=75 second=271 amount=-2 +kerning first=75 second=273 amount=-2 +kerning first=75 second=275 amount=-2 +kerning first=75 second=277 amount=-2 +kerning first=75 second=279 amount=-2 +kerning first=75 second=281 amount=-2 +kerning first=75 second=283 amount=-2 +kerning first=75 second=286 amount=-3 +kerning first=75 second=287 amount=-1 +kerning first=75 second=288 amount=-3 +kerning first=75 second=289 amount=-1 +kerning first=75 second=290 amount=-3 +kerning first=75 second=291 amount=-1 +kerning first=75 second=332 amount=-3 +kerning first=75 second=333 amount=-2 +kerning first=75 second=334 amount=-3 +kerning first=75 second=335 amount=-2 +kerning first=75 second=336 amount=-3 +kerning first=75 second=337 amount=-2 +kerning first=75 second=338 amount=-3 +kerning first=75 second=339 amount=-2 +kerning first=75 second=346 amount=-1 +kerning first=75 second=350 amount=-1 +kerning first=75 second=352 amount=-1 +kerning first=75 second=355 amount=-1 +kerning first=75 second=357 amount=-1 +kerning first=75 second=359 amount=-1 +kerning first=75 second=361 amount=-1 +kerning first=75 second=363 amount=-1 +kerning first=75 second=365 amount=-1 +kerning first=75 second=367 amount=-1 +kerning first=75 second=369 amount=-1 +kerning first=75 second=371 amount=-1 +kerning first=75 second=373 amount=-3 +kerning first=75 second=375 amount=-2 +kerning first=75 second=920 amount=-3 +kerning first=75 second=927 amount=-3 +kerning first=75 second=940 amount=-2 +kerning first=75 second=941 amount=-2 +kerning first=75 second=945 amount=-2 +kerning first=75 second=947 amount=-3 +kerning first=75 second=949 amount=-2 +kerning first=75 second=957 amount=-3 +kerning first=75 second=959 amount=-2 +kerning first=75 second=962 amount=-2 +kerning first=75 second=963 amount=-2 +kerning first=75 second=964 amount=-4 +kerning first=75 second=965 amount=-1 +kerning first=75 second=966 amount=-2 +kerning first=75 second=968 amount=-1 +kerning first=75 second=972 amount=-2 +kerning first=75 second=973 amount=-1 +kerning first=75 second=1028 amount=-3 +kerning first=75 second=1029 amount=-1 +kerning first=75 second=1032 amount=-1 +kerning first=75 second=1054 amount=-3 +kerning first=75 second=1057 amount=-3 +kerning first=75 second=1069 amount=-2 +kerning first=75 second=1072 amount=-1 +kerning first=75 second=1077 amount=-2 +kerning first=75 second=1079 amount=-1 +kerning first=75 second=1086 amount=-2 +kerning first=75 second=1089 amount=-2 +kerning first=75 second=1090 amount=-4 +kerning first=75 second=1091 amount=-2 +kerning first=75 second=1092 amount=-2 +kerning first=75 second=1098 amount=-4 +kerning first=75 second=1101 amount=-1 +kerning first=75 second=1104 amount=-2 +kerning first=75 second=1105 amount=-2 +kerning first=75 second=1108 amount=-2 +kerning first=75 second=1118 amount=-2 +kerning first=75 second=1176 amount=-2 +kerning first=75 second=1177 amount=-1 +kerning first=75 second=1185 amount=-4 +kerning first=75 second=1194 amount=-3 +kerning first=75 second=1195 amount=-2 +kerning first=75 second=1199 amount=-3 +kerning first=75 second=1240 amount=-3 +kerning first=75 second=1241 amount=-2 +kerning first=75 second=1256 amount=-3 +kerning first=75 second=1257 amount=-2 +kerning first=75 second=1263 amount=-2 +kerning first=75 second=8211 amount=-4 +kerning first=75 second=8212 amount=-4 +kerning first=75 second=8249 amount=-3 +kerning first=75 second=8250 amount=-2 +kerning first=76 second=34 amount=-3 +kerning first=76 second=39 amount=-3 +kerning first=76 second=45 amount=-3 +kerning first=76 second=63 amount=-4 +kerning first=76 second=67 amount=-1 +kerning first=76 second=71 amount=-1 +kerning first=76 second=79 amount=-1 +kerning first=76 second=81 amount=-1 +kerning first=76 second=84 amount=-6 +kerning first=76 second=85 amount=-1 +kerning first=76 second=86 amount=-5 +kerning first=76 second=87 amount=-4 +kerning first=76 second=89 amount=-6 +kerning first=76 second=99 amount=-1 +kerning first=76 second=100 amount=-1 +kerning first=76 second=101 amount=-1 +kerning first=76 second=103 amount=-1 +kerning first=76 second=111 amount=-1 +kerning first=76 second=113 amount=-1 +kerning first=76 second=116 amount=-1 +kerning first=76 second=117 amount=-1 +kerning first=76 second=118 amount=-3 +kerning first=76 second=119 amount=-3 +kerning first=76 second=121 amount=-1 +kerning first=76 second=171 amount=-3 +kerning first=76 second=173 amount=-3 +kerning first=76 second=199 amount=-1 +kerning first=76 second=210 amount=-1 +kerning first=76 second=211 amount=-1 +kerning first=76 second=212 amount=-1 +kerning first=76 second=213 amount=-1 +kerning first=76 second=214 amount=-1 +kerning first=76 second=216 amount=-1 +kerning first=76 second=217 amount=-1 +kerning first=76 second=218 amount=-1 +kerning first=76 second=219 amount=-1 +kerning first=76 second=220 amount=-1 +kerning first=76 second=221 amount=-6 +kerning first=76 second=231 amount=-1 +kerning first=76 second=232 amount=-1 +kerning first=76 second=233 amount=-1 +kerning first=76 second=234 amount=-1 +kerning first=76 second=235 amount=-1 +kerning first=76 second=240 amount=-1 +kerning first=76 second=242 amount=-1 +kerning first=76 second=243 amount=-1 +kerning first=76 second=244 amount=-1 +kerning first=76 second=245 amount=-1 +kerning first=76 second=246 amount=-1 +kerning first=76 second=248 amount=-1 +kerning first=76 second=249 amount=-1 +kerning first=76 second=250 amount=-1 +kerning first=76 second=251 amount=-1 +kerning first=76 second=252 amount=-1 +kerning first=76 second=253 amount=-1 +kerning first=76 second=262 amount=-1 +kerning first=76 second=263 amount=-1 +kerning first=76 second=266 amount=-1 +kerning first=76 second=267 amount=-1 +kerning first=76 second=268 amount=-1 +kerning first=76 second=269 amount=-1 +kerning first=76 second=271 amount=-1 kerning first=76 second=273 amount=-1 -kerning first=923 second=235 amount=-1 -kerning first=1176 second=365 amount=-1 -kerning first=239 second=335 amount=-1 -kerning first=119 second=347 amount=-1 -kerning first=267 second=34 amount=-1 -kerning first=37 second=121 amount=-1 -kerning first=973 second=8216 amount=-3 -kerning first=172 second=965 amount=-1 -kerning first=8224 second=1118 amount=-1 -kerning first=8230 second=354 amount=-5 -kerning first=54 second=1028 amount=-2 -kerning first=57 second=288 amount=-2 -kerning first=80 second=220 amount=-2 -kerning first=315 second=336 amount=-1 -kerning first=1103 second=171 amount=-3 -kerning first=100 second=362 amount=-2 -kerning first=1174 second=8217 amount=-2 -kerning first=240 second=966 amount=-1 -kerning first=246 second=47 amount=-1 -kerning first=366 second=197 amount=-2 -kerning first=123 second=289 amount=-1 -kerning first=963 second=87 amount=-5 -kerning first=41 second=71 amount=-2 -kerning first=1035 second=940 amount=-1 -kerning first=180 second=221 amount=-5 -kerning first=291 second=351 amount=-1 -kerning first=8240 second=1038 amount=-2 -kerning first=296 second=111 amount=-1 -kerning first=61 second=233 amount=-1 -kerning first=201 second=363 amount=-1 -kerning first=198 second=1177 amount=-1 -kerning first=8366 second=226 amount=-1 -kerning first=1101 second=1078 amount=-2 -kerning first=936 second=338 amount=-2 -kerning first=1185 second=941 amount=-2 -kerning first=367 second=352 amount=-1 -kerning first=964 second=262 amount=-2 -kerning first=160 second=234 amount=-1 -kerning first=42 second=246 amount=-1 -kerning first=1046 second=199 amount=-3 -kerning first=182 second=376 amount=-5 -kerning first=294 second=1035 amount=-5 -kerning first=297 second=291 amount=-1 -kerning first=1074 second=1098 amount=-3 -kerning first=1078 second=339 amount=-2 -kerning first=1081 second=101 amount=-1 -kerning first=202 second=1059 amount=-2 -kerning first=199 second=8212 amount=-1 -kerning first=903 second=113 amount=-1 -kerning first=900 second=353 amount=-1 -kerning first=1107 second=955 amount=-4 -kerning first=968 second=212 amount=-2 -kerning first=267 second=8216 amount=-1 -kerning first=1041 second=1118 amount=-1 -kerning first=1047 second=354 amount=-1 -kerning first=179 second=8250 amount=-1 -kerning first=1083 second=279 amount=-1 -kerning first=209 second=248 amount=-1 -kerning first=330 second=171 amount=-3 -kerning first=89 second=260 amount=-5 -kerning first=1119 second=213 amount=-2 -kerning first=946 second=225 amount=-1 -kerning first=1219 second=115 amount=-1 -kerning first=255 second=87 amount=-5 -kerning first=966 second=1185 amount=-1 -kerning first=165 second=337 amount=-1 -kerning first=168 second=99 amount=-1 -kerning first=278 second=249 amount=-1 -kerning first=47 second=351 amount=-1 -kerning first=1048 second=1038 amount=-2 -kerning first=50 second=111 amount=-1 -kerning first=190 second=261 amount=-1 -kerning first=213 second=198 amount=-2 -kerning first=334 second=88 amount=-3 -kerning first=93 second=210 amount=-2 -kerning first=1168 second=368 amount=-2 -kerning first=236 second=100 amount=-1 -kerning first=356 second=250 amount=-2 -kerning first=113 second=352 amount=-1 -kerning first=256 second=262 amount=-2 -kerning first=1256 second=65 amount=-2 -kerning first=376 second=1241 amount=-4 -kerning first=967 second=8220 amount=-3 -kerning first=166 second=968 amount=-1 -kerning first=169 second=277 amount=-1 -kerning first=282 second=199 amount=-2 -kerning first=8224 second=117 amount=-1 -kerning first=48 second=1035 amount=-5 -kerning first=51 second=291 amount=-1 -kerning first=194 second=211 amount=-2 -kerning first=306 second=339 amount=-1 -kerning first=303 second=1098 amount=-3 -kerning first=311 second=101 amount=-2 -kerning first=214 second=353 amount=-1 -kerning first=332 second=955 amount=-2 -kerning first=94 second=365 amount=-1 -kerning first=1118 second=8221 amount=-3 -kerning first=260 second=212 amount=-2 -kerning first=174 second=224 amount=-1 -kerning first=280 second=1118 amount=-1 -kerning first=8221 second=1044 amount=-3 -kerning first=8240 second=67 amount=-2 -kerning first=192 second=1184 amount=-5 -kerning first=195 second=366 amount=-2 -kerning first=313 second=279 amount=-1 -kerning first=78 second=171 amount=-3 -kerning first=221 second=63 amount=-1 -kerning first=928 second=103 amount=-1 -kerning first=92 second=8217 amount=-3 -kerning first=361 second=355 amount=-1 -kerning first=956 second=267 amount=-1 -kerning first=258 second=1185 amount=-3 -kerning first=36 second=249 amount=-1 -kerning first=1067 second=1101 amount=-1 -kerning first=8361 second=1240 amount=-2 -kerning first=317 second=226 amount=-1 -kerning first=923 second=972 amount=-1 -kerning first=931 second=281 amount=-1 -kerning first=242 second=380 amount=-1 -kerning first=368 second=65 amount=-2 -kerning first=125 second=187 amount=-1 -kerning first=122 second=1241 amount=-1 -kerning first=259 second=8220 amount=-1 -kerning first=40 second=199 amount=-2 -kerning first=1041 second=117 amount=-1 -kerning first=1037 second=357 amount=-1 -kerning first=183 second=89 amount=-5 -kerning first=176 second=1079 amount=-1 -kerning first=57 second=1098 amount=-3 -kerning first=60 second=339 amount=-1 -kerning first=1071 second=973 amount=-1 -kerning first=63 second=101 amount=-1 -kerning first=203 second=251 amount=-1 -kerning first=8365 second=332 amount=-2 -kerning first=80 second=955 amount=-3 -kerning first=86 second=38 amount=-1 -kerning first=338 second=8221 amount=-3 -kerning first=369 second=240 amount=-1 -kerning first=366 second=916 amount=-2 -kerning first=960 second=1194 amount=-2 -kerning first=963 second=370 amount=-2 -kerning first=271 second=252 amount=-1 -kerning first=38 second=1118 amount=-1 -kerning first=41 second=354 amount=-5 -kerning first=1048 second=67 amount=-2 -kerning first=184 second=266 amount=-2 -kerning first=1038 second=1044 amount=-1 -kerning first=64 second=279 amount=-1 -kerning first=61 second=970 amount=-1 -kerning first=1080 second=229 amount=-1 -kerning first=8366 second=963 amount=-1 -kerning first=8372 second=271 amount=-1 -kerning first=87 second=213 amount=-2 -kerning first=936 second=1257 amount=-1 -kerning first=1194 second=1046 amount=-2 -kerning first=250 second=267 amount=-1 -kerning first=42 second=1038 amount=-2 -kerning first=1049 second=242 amount=-1 -kerning first=188 second=214 amount=-2 -kerning first=297 second=1101 amount=-1 -kerning first=1081 second=1240 amount=-2 -kerning first=208 second=356 amount=-2 -kerning first=1210 second=243 amount=-1 -kerning first=374 second=343 amount=-3 -kerning first=167 second=227 amount=-1 -kerning first=280 second=117 amount=-1 -kerning first=189 second=369 amount=-1 -kerning first=301 second=973 amount=-1 -kerning first=1087 second=332 amount=-2 -kerning first=86 second=8221 amount=-3 -kerning first=912 second=106 amount=1 -kerning first=358 second=118 amount=-4 -kerning first=946 second=962 amount=-1 -kerning first=252 second=1194 amount=-2 -kerning first=255 second=370 amount=-2 -kerning first=378 second=283 amount=-1 -kerning first=165 second=1256 amount=-2 -kerning first=196 second=79 amount=-2 -kerning first=310 second=229 amount=-1 -kerning first=70 second=1081 amount=-1 -kerning first=1090 second=963 amount=-1 -kerning first=1096 second=271 amount=-1 -kerning first=915 second=286 amount=-2 -kerning first=96 second=253 amount=-1 -kerning first=1027 second=360 amount=-2 -kerning first=287 second=242 amount=-1 -kerning first=51 second=1101 amount=-1 -kerning first=194 second=945 amount=-1 -kerning first=306 second=1262 amount=-2 -kerning first=77 second=268 amount=-2 -kerning first=926 second=231 amount=-1 -kerning first=1184 second=121 amount=-2 -kerning first=363 second=243 amount=-1 -kerning first=955 second=373 amount=-4 -kerning first=1298 second=288 amount=-2 -kerning first=35 second=357 amount=-1 -kerning first=38 second=117 amount=-1 -kerning first=177 second=269 amount=-1 -kerning first=8240 second=350 amount=-1 -kerning first=55 second=973 amount=-1 -kerning first=1073 second=232 amount=-1 -kerning first=316 second=332 amount=-2 -kerning first=8363 second=275 amount=-1 -kerning first=1098 second=1203 amount=-2 -kerning first=224 second=106 amount=1 -kerning first=920 second=1298 amount=-1 -kerning first=104 second=118 amount=-1 -kerning first=964 second=83 amount=-1 -kerning first=124 second=283 amount=-1 -kerning first=42 second=67 amount=-2 -kerning first=1039 second=245 amount=-1 -kerning first=182 second=217 amount=-2 -kerning first=62 second=229 amount=-1 -kerning first=205 second=119 amount=-4 -kerning first=202 second=359 amount=-1 -kerning first=317 second=963 amount=-1 -kerning first=322 second=271 amount=-1 -kerning first=222 second=1026 amount=-2 -kerning first=931 second=1090 amount=-3 -kerning first=1186 second=934 amount=-2 -kerning first=161 second=230 amount=-1 -kerning first=43 second=242 amount=-1 -kerning first=179 second=947 amount=-4 -kerning first=183 second=372 amount=-5 -kerning first=298 second=287 amount=-1 -kerning first=63 second=1240 amount=-2 -kerning first=60 second=1262 amount=-2 -kerning first=1083 second=97 amount=-1 -kerning first=901 second=347 amount=-1 -kerning first=89 second=81 amount=-3 -kerning first=1119 second=34 amount=-3 -kerning first=1116 second=259 amount=-1 -kerning first=249 second=373 amount=-4 -kerning first=369 second=1028 amount=-2 -kerning first=372 second=288 amount=-2 -kerning first=126 second=1263 amount=-1 -kerning first=1048 second=350 amount=-1 -kerning first=302 second=232 amount=-1 -kerning first=1080 second=966 amount=-1 -kerning first=1090 second=47 amount=-2 -kerning first=1084 second=275 amount=-1 -kerning first=327 second=374 amount=-5 -kerning first=905 second=289 amount=-1 -kerning first=356 second=71 amount=-1 -kerning first=948 second=221 amount=-5 -kerning first=1220 second=111 amount=-1 -kerning first=256 second=83 amount=-1 -kerning first=376 second=233 amount=-4 -kerning first=967 second=1177 amount=-1 -kerning first=166 second=333 amount=-1 -kerning first=8220 second=198 amount=-3 -kerning first=1062 second=290 amount=-1 -kerning first=188 second=949 amount=-1 -kerning first=191 second=257 amount=-1 -kerning first=74 second=44 amount=-1 -kerning first=357 second=246 amount=-1 -kerning first=1210 second=1035 amount=-5 -kerning first=1223 second=291 amount=-1 -kerning first=968 second=8212 amount=-2 -kerning first=971 second=1059 amount=-2 -kerning first=170 second=273 amount=-1 -kerning first=174 second=45 amount=-2 -kerning first=167 second=964 amount=-3 -kerning first=8225 second=113 amount=-1 -kerning first=8221 second=353 amount=-1 -kerning first=52 second=287 amount=-1 -kerning first=55 second=57 amount=-1 -kerning first=215 second=347 amount=-1 -kerning first=339 second=34 amount=-1 -kerning first=95 second=361 amount=-1 -kerning first=1119 second=8216 amount=-3 -kerning first=946 second=8250 amount=-1 -kerning first=950 second=1075 amount=-2 -kerning first=381 second=336 amount=-1 -kerning first=175 second=220 amount=-2 -kerning first=281 second=1113 amount=-1 -kerning first=56 second=232 amount=-1 -kerning first=196 second=362 amount=-2 -kerning first=193 second=1176 amount=-1 -kerning first=310 second=966 amount=-2 -kerning first=314 second=275 amount=-1 -kerning first=8361 second=225 amount=-1 -kerning first=76 second=374 amount=-6 -kerning first=216 second=1033 amount=-1 -kerning first=923 second=337 amount=-1 -kerning first=931 second=99 amount=-1 -kerning first=1176 second=940 amount=-1 -kerning first=365 second=111 amount=-1 -kerning first=958 second=261 amount=-1 -kerning first=122 second=233 amount=-1 -kerning first=37 second=245 amount=-1 -kerning first=176 second=375 amount=-1 -kerning first=1071 second=338 amount=-2 -kerning first=194 second=8211 amount=-2 -kerning first=1075 second=100 amount=-1 -kerning first=83 second=84 amount=-1 -kerning first=1103 second=262 amount=-2 -kerning first=223 second=234 amount=-1 -kerning first=926 second=968 amount=-1 -kerning first=934 second=277 amount=-1 -kerning first=103 second=246 amount=-1 -kerning first=363 second=1035 amount=-5 -kerning first=963 second=211 amount=-2 -kerning first=1298 second=1098 amount=-3 -kerning first=260 second=8212 amount=-2 -kerning first=174 second=8249 amount=-3 -kerning first=1044 second=113 amount=-1 -kerning first=184 second=85 amount=-2 -kerning first=296 second=235 amount=-1 -kerning first=61 second=335 amount=-1 -kerning first=64 second=97 amount=-1 -kerning first=84 second=259 amount=-2 -kerning first=339 second=8216 amount=-1 -kerning first=1194 second=354 amount=-1 -kerning first=964 second=366 amount=-2 -kerning first=160 second=336 amount=-2 -kerning first=273 second=248 amount=-1 -kerning first=42 second=350 amount=-1 -kerning first=68 second=47 amount=-1 -kerning first=62 second=966 amount=-1 -kerning first=65 second=275 amount=-1 -kerning first=1081 second=225 amount=-1 -kerning first=208 second=197 amount=-2 -kerning first=108 second=351 amount=-1 -kerning first=251 second=261 amount=-1 -kerning first=8211 second=356 amount=-4 -kerning first=46 second=290 amount=-1 -kerning first=189 second=210 amount=-2 -kerning first=301 second=338 amount=-2 -kerning first=304 second=100 amount=-1 -kerning first=209 second=352 amount=-1 -kerning first=330 second=262 amount=-2 -kerning first=904 second=1241 amount=-1 -kerning first=1108 second=8220 amount=-1 -kerning first=950 second=89 amount=-5 -kerning first=255 second=211 amount=-2 -kerning first=375 second=339 amount=-1 -kerning first=378 second=101 amount=-1 -kerning first=278 second=353 amount=-1 -kerning first=50 second=235 amount=-1 -kerning first=190 second=365 amount=-1 -kerning first=8378 second=1194 amount=-2 -kerning first=1168 second=943 amount=-1 -kerning first=1171 second=252 amount=-1 -kerning first=236 second=224 amount=-1 -kerning first=951 second=266 amount=-2 -kerning first=253 second=1184 amount=-5 -kerning first=256 second=366 amount=-2 -kerning first=376 second=970 amount=-2 -kerning first=379 second=279 amount=-1 -kerning first=172 second=171 amount=-3 -kerning first=188 second=8217 amount=-3 -kerning first=311 second=225 amount=-1 -kerning first=77 second=87 amount=-5 -kerning first=1097 second=267 amount=-1 -kerning first=94 second=940 amount=-1 -kerning first=357 second=1038 amount=-2 -kerning first=955 second=214 amount=-2 -kerning first=1223 second=1101 amount=-1 -kerning first=1028 second=356 amount=-1 -kerning first=1035 second=116 amount=-1 -kerning first=55 second=338 amount=-2 -kerning first=58 second=100 amount=-1 -kerning first=198 second=250 amount=-1 -kerning first=195 second=941 amount=-1 -kerning first=78 second=262 amount=-2 -kerning first=221 second=187 amount=-2 -kerning first=333 second=8220 amount=-1 -kerning first=928 second=227 amount=-1 -kerning first=238 second=1079 amount=-1 -kerning first=956 second=369 amount=-1 -kerning first=121 second=339 amount=-1 -kerning first=124 second=101 amount=-1 -kerning first=1240 second=381 amount=-1 -kerning first=36 second=353 amount=-1 -kerning first=39 second=113 amount=-1 -kerning first=178 second=263 amount=-1 -kerning first=1074 second=228 amount=-1 -kerning first=8361 second=962 amount=-1 -kerning first=1099 second=1194 amount=-2 -kerning first=225 second=102 amount=-1 -kerning first=923 second=1256 amount=-2 -kerning first=248 second=39 amount=-1 -kerning first=965 second=79 amount=-2 -kerning first=125 second=279 amount=-1 -kerning first=1037 second=920 amount=-2 -kerning first=183 second=213 amount=-2 -kerning first=298 second=103 amount=-1 -kerning first=8250 second=1026 amount=-3 -kerning first=63 second=225 amount=-1 -kerning first=1071 second=1257 amount=-1 -kerning first=203 second=355 amount=-1 -kerning first=206 second=115 amount=-1 -kerning first=323 second=267 amount=-1 -kerning first=8370 second=218 amount=-2 -kerning first=80 second=1185 amount=-3 -kerning first=103 second=1038 amount=-2 -kerning first=947 second=242 amount=-1 -kerning first=249 second=214 amount=-2 -kerning first=963 second=945 amount=-1 -kerning first=162 second=226 amount=-1 -kerning first=271 second=356 amount=-5 -kerning first=184 second=368 amount=-2 -kerning first=296 second=972 amount=-1 -kerning first=299 second=281 amount=-1 -kerning first=210 second=65 amount=-2 -kerning first=8372 second=373 amount=-4 -kerning first=944 second=269 amount=-1 -kerning first=250 second=369 amount=-1 -kerning first=8216 second=244 amount=-1 -kerning first=1062 second=106 amount=7 -kerning first=185 second=1066 amount=-5 -kerning first=182 second=8221 amount=-3 -kerning first=303 second=228 amount=-1 -kerning first=1081 second=962 amount=-1 -kerning first=208 second=916 amount=-2 -kerning first=325 second=1194 amount=-2 -kerning first=906 second=283 amount=-1 -kerning first=91 second=252 amount=-1 -kerning first=88 second=943 amount=-1 -kerning first=357 second=67 amount=-2 -kerning first=248 second=8222 amount=-1 -kerning first=971 second=359 amount=-1 -kerning first=8221 second=194 amount=-3 -kerning first=52 second=103 amount=-1 -kerning first=1051 second=1026 amount=-5 -kerning first=1063 second=286 amount=-2 -kerning first=192 second=253 amount=-1 -kerning first=301 second=1257 amount=-1 -kerning first=72 second=267 amount=-1 -kerning first=1095 second=218 amount=-2 -kerning first=912 second=230 amount=-1 -kerning first=1170 second=360 amount=-2 -kerning first=232 second=1083 amount=-1 -kerning first=358 second=242 amount=-1 -kerning first=946 second=947 amount=-4 -kerning first=950 second=372 amount=-5 -kerning first=1224 second=287 amount=-1 -kerning first=255 second=945 amount=-1 -kerning first=375 second=1262 amount=-2 -kerning first=50 second=972 amount=-1 -kerning first=53 second=281 amount=-1 -kerning first=1067 second=231 amount=-1 -kerning first=1096 second=373 amount=-4 -kerning first=910 second=1263 amount=-2 -kerning first=96 second=357 amount=-1 -kerning first=239 second=269 amount=-1 -kerning first=1263 second=232 amount=-1 -kerning first=176 second=216 amount=-2 -kerning first=290 second=106 amount=2 -kerning first=8230 second=289 amount=-1 -kerning first=57 second=228 amount=-1 -kerning first=200 second=118 amount=-4 -kerning first=311 second=962 amount=-2 -kerning first=74 second=1194 amount=-2 -kerning first=77 second=370 amount=-2 -kerning first=1103 second=83 amount=-1 -kerning first=926 second=333 amount=-1 -kerning first=103 second=67 amount=-2 -kerning first=1184 second=245 amount=-2 -kerning first=955 second=949 amount=-1 -kerning first=960 second=257 amount=-1 -kerning first=123 second=229 amount=-1 -kerning first=1257 second=1299 amount=-1 -kerning first=35 second=920 amount=-2 -kerning first=174 second=1195 amount=-1 -kerning first=177 second=371 amount=-1 -kerning first=1038 second=194 amount=-2 -kerning first=288 second=1026 amount=-1 -kerning first=291 second=286 amount=-2 -kerning first=8260 second=234 amount=-1 -kerning first=55 second=1257 amount=-1 -kerning first=1073 second=334 amount=-2 -kerning first=321 second=218 amount=-2 -kerning first=8363 second=376 amount=-5 -kerning first=936 second=273 amount=-1 -kerning first=928 second=964 amount=-3 -kerning first=241 second=947 amount=-1 -kerning first=367 second=287 amount=-1 -kerning first=121 second=1262 amount=-2 -kerning first=124 second=1240 amount=-2 -kerning first=1036 second=1108 amount=-2 -kerning first=1039 second=347 amount=-1 -kerning first=178 second=1069 amount=-1 -kerning first=185 second=81 amount=-2 -kerning first=297 second=231 amount=-1 -kerning first=1074 second=965 amount=-1 -kerning first=205 second=243 amount=-1 -kerning first=322 second=373 amount=-4 -kerning first=8361 second=8250 amount=-1 -kerning first=900 second=288 amount=-2 -kerning first=942 second=220 amount=-2 -kerning first=371 second=232 amount=-1 -kerning first=965 second=362 amount=-2 -kerning first=962 second=1176 amount=-1 -kerning first=161 second=332 amount=-2 -kerning first=274 second=244 amount=-1 -kerning first=8211 second=197 amount=-2 -kerning first=46 second=106 amount=2 -kerning first=63 second=962 amount=-1 -kerning first=1083 second=221 amount=-5 -kerning first=330 second=83 amount=-1 -kerning first=8377 second=261 amount=-1 -kerning first=904 second=233 amount=-1 -kerning first=8370 second=953 amount=-1 -kerning first=1206 second=290 amount=-1 -kerning first=249 second=949 amount=-1 -kerning first=252 second=257 amount=-1 -kerning first=963 second=8211 amount=-2 -kerning first=162 second=963 amount=-1 -kerning first=165 second=271 amount=-1 -kerning first=8212 second=352 amount=-1 -kerning first=47 second=286 amount=-2 -kerning first=44 second=1026 amount=-5 -kerning first=299 second=1090 amount=-3 -kerning first=302 second=334 amount=-2 -kerning first=70 second=218 amount=-2 -kerning first=1084 second=376 amount=-5 -kerning first=1117 second=1059 amount=-2 -kerning first=230 second=964 amount=-1 -kerning first=236 second=45 amount=-2 -kerning first=951 second=85 amount=-2 -kerning first=113 second=287 amount=-1 -kerning first=1220 second=235 amount=-1 -kerning first=376 second=335 amount=-4 -kerning first=169 second=219 amount=-2 -kerning first=276 second=1108 amount=-1 -kerning first=51 second=231 amount=-1 -kerning first=191 second=361 amount=-1 -kerning first=194 second=121 amount=-1 -kerning first=303 second=965 amount=-1 -kerning first=68 second=1202 amount=-3 -kerning first=1081 second=8250 amount=-1 -kerning first=214 second=288 amount=-2 -kerning first=1174 second=248 amount=-1 -kerning first=237 second=220 amount=-2 -kerning first=357 second=350 amount=-1 -kerning first=117 second=232 amount=-1 -kerning first=254 second=1176 amount=-1 -kerning first=377 second=966 amount=-1 -kerning first=380 second=275 amount=-1 -kerning first=1028 second=197 amount=-1 -kerning first=170 second=374 amount=-5 -kerning first=198 second=71 amount=-2 -kerning first=313 second=221 amount=-6 -kerning first=78 second=83 amount=-1 -kerning first=1095 second=953 amount=-1 -kerning first=238 second=375 amount=-1 -kerning first=361 second=290 amount=-2 -kerning first=956 second=210 amount=-2 -kerning first=255 second=8211 amount=-2 -kerning first=1299 second=100 amount=-1 -kerning first=178 second=84 amount=-5 -kerning first=289 second=234 amount=-1 -kerning first=8226 second=1241 amount=-1 -kerning first=56 second=334 amount=-2 -kerning first=1067 second=968 amount=-1 -kerning first=53 second=1090 amount=-3 -kerning first=314 second=376 amount=-5 -kerning first=8364 second=89 amount=-5 +kerning first=76 second=275 amount=-1 +kerning first=76 second=277 amount=-1 +kerning first=76 second=279 amount=-1 +kerning first=76 second=281 amount=-1 +kerning first=76 second=283 amount=-1 +kerning first=76 second=286 amount=-1 +kerning first=76 second=287 amount=-1 +kerning first=76 second=288 amount=-1 +kerning first=76 second=289 amount=-1 +kerning first=76 second=290 amount=-1 +kerning first=76 second=291 amount=-1 +kerning first=76 second=332 amount=-1 +kerning first=76 second=333 amount=-1 +kerning first=76 second=334 amount=-1 +kerning first=76 second=335 amount=-1 +kerning first=76 second=336 amount=-1 +kerning first=76 second=337 amount=-1 +kerning first=76 second=338 amount=-1 +kerning first=76 second=339 amount=-1 +kerning first=76 second=354 amount=-6 +kerning first=76 second=355 amount=-1 +kerning first=76 second=356 amount=-6 +kerning first=76 second=357 amount=-1 +kerning first=76 second=359 amount=-1 +kerning first=76 second=360 amount=-1 +kerning first=76 second=361 amount=-1 +kerning first=76 second=362 amount=-1 +kerning first=76 second=363 amount=-1 +kerning first=76 second=364 amount=-1 +kerning first=76 second=365 amount=-1 +kerning first=76 second=366 amount=-1 +kerning first=76 second=367 amount=-1 +kerning first=76 second=368 amount=-1 +kerning first=76 second=369 amount=-1 +kerning first=76 second=370 amount=-1 +kerning first=76 second=371 amount=-1 +kerning first=76 second=372 amount=-4 +kerning first=76 second=373 amount=-3 +kerning first=76 second=374 amount=-6 +kerning first=76 second=375 amount=-1 +kerning first=76 second=376 amount=-6 +kerning first=76 second=920 amount=-1 +kerning first=76 second=927 amount=-1 +kerning first=76 second=932 amount=-6 +kerning first=76 second=933 amount=-6 +kerning first=76 second=939 amount=-6 +kerning first=76 second=940 amount=-1 +kerning first=76 second=941 amount=-1 +kerning first=76 second=945 amount=-1 +kerning first=76 second=947 amount=-3 +kerning first=76 second=949 amount=-1 +kerning first=76 second=957 amount=-3 +kerning first=76 second=959 amount=-1 +kerning first=76 second=962 amount=-1 +kerning first=76 second=963 amount=-1 +kerning first=76 second=965 amount=-1 +kerning first=76 second=966 amount=-1 +kerning first=76 second=968 amount=-1 +kerning first=76 second=972 amount=-1 +kerning first=76 second=973 amount=-1 +kerning first=76 second=1026 amount=-6 +kerning first=76 second=1028 amount=-1 +kerning first=76 second=1035 amount=-6 +kerning first=76 second=1038 amount=-1 +kerning first=76 second=1054 amount=-1 +kerning first=76 second=1057 amount=-1 +kerning first=76 second=1058 amount=-6 +kerning first=76 second=1059 amount=-1 +kerning first=76 second=1066 amount=-6 +kerning first=76 second=1077 amount=-1 +kerning first=76 second=1086 amount=-1 +kerning first=76 second=1089 amount=-1 +kerning first=76 second=1091 amount=-1 +kerning first=76 second=1092 amount=-1 +kerning first=76 second=1104 amount=-1 +kerning first=76 second=1105 amount=-1 +kerning first=76 second=1108 amount=-1 +kerning first=76 second=1118 amount=-1 +kerning first=76 second=1184 amount=-6 +kerning first=76 second=1194 amount=-1 +kerning first=76 second=1195 amount=-1 +kerning first=76 second=1198 amount=-6 +kerning first=76 second=1199 amount=-3 +kerning first=76 second=1240 amount=-1 +kerning first=76 second=1241 amount=-1 +kerning first=76 second=1256 amount=-1 +kerning first=76 second=1257 amount=-1 +kerning first=76 second=1262 amount=-1 +kerning first=76 second=1263 amount=-1 +kerning first=76 second=8211 amount=-3 +kerning first=76 second=8212 amount=-3 +kerning first=76 second=8216 amount=-3 +kerning first=76 second=8217 amount=-3 +kerning first=76 second=8220 amount=-3 +kerning first=76 second=8221 amount=-3 +kerning first=76 second=8249 amount=-3 +kerning first=79 second=44 amount=-1 +kerning first=79 second=46 amount=-1 +kerning first=79 second=47 amount=-1 +kerning first=79 second=65 amount=-2 +kerning first=79 second=84 amount=-2 +kerning first=79 second=86 amount=-2 +kerning first=79 second=87 amount=-2 +kerning first=79 second=88 amount=-3 +kerning first=79 second=89 amount=-3 +kerning first=79 second=90 amount=-1 +kerning first=79 second=193 amount=-2 +kerning first=79 second=194 amount=-2 +kerning first=79 second=196 amount=-2 +kerning first=79 second=197 amount=-2 +kerning first=79 second=198 amount=-2 +kerning first=79 second=221 amount=-3 +kerning first=79 second=256 amount=-2 kerning first=79 second=258 amount=-2 -kerning first=236 second=8249 amount=-3 -kerning first=1186 second=113 amount=-1 -kerning first=365 second=235 amount=-1 -kerning first=958 second=365 amount=-1 -kerning first=122 second=335 amount=-1 -kerning first=125 second=97 amount=-1 -kerning first=34 second=1108 amount=-1 -kerning first=37 second=347 amount=-1 -kerning first=179 second=259 amount=-1 -kerning first=183 second=34 amount=-3 -kerning first=57 second=965 amount=-1 -kerning first=8365 second=266 amount=-2 -kerning first=8370 second=39 amount=-3 -kerning first=1103 second=366 amount=-2 -kerning first=223 second=336 amount=-2 -kerning first=103 second=350 amount=-1 -kerning first=955 second=8217 amount=-3 -kerning first=123 second=966 amount=-1 -kerning first=126 second=275 amount=-1 -kerning first=41 second=289 amount=-1 -kerning first=296 second=337 amount=-1 -kerning first=299 second=99 amount=-1 -kerning first=64 second=221 amount=-5 -kerning first=204 second=351 amount=-1 -kerning first=207 second=111 amount=-1 -kerning first=321 second=953 amount=-1 -kerning first=8372 second=214 amount=-2 -kerning first=84 second=363 amount=-2 -kerning first=1101 second=8218 amount=-1 -kerning first=350 second=198 amount=-1 -kerning first=250 second=210 amount=-2 -kerning first=373 second=100 amount=-1 -kerning first=964 second=941 amount=-1 -kerning first=967 second=250 amount=-1 -kerning first=273 second=352 amount=-1 -kerning first=8216 second=65 amount=-3 -kerning first=1049 second=187 amount=-1 -kerning first=185 second=364 amount=-2 -kerning first=1046 second=1241 amount=-2 -kerning first=297 second=968 amount=-1 -kerning first=300 second=277 amount=-1 -kerning first=65 second=376 amount=-5 -kerning first=205 second=1035 amount=-5 -kerning first=1085 second=89 amount=-5 -kerning first=900 second=1098 amount=-3 -kerning first=903 second=339 amount=-1 -kerning first=906 second=101 amount=-1 -kerning first=82 second=8212 amount=-1 -kerning first=1118 second=251 amount=-1 -kerning first=354 second=113 amount=-3 -kerning first=251 second=365 amount=-1 -kerning first=8211 second=916 amount=-2 -kerning first=8217 second=240 amount=-1 -kerning first=183 second=8216 amount=-3 -kerning first=304 second=224 amount=-1 -kerning first=63 second=8250 amount=-1 -kerning first=1087 second=266 amount=-2 -kerning first=1095 second=39 amount=-3 -kerning first=330 second=366 amount=-2 -kerning first=904 second=970 amount=-1 -kerning first=89 second=937 amount=-2 -kerning first=92 second=248 amount=-1 -kerning first=232 second=378 amount=-1 -kerning first=950 second=213 amount=-2 -kerning first=249 second=8217 amount=-3 -kerning first=1224 second=103 amount=-1 -kerning first=1026 second=115 amount=-1 -kerning first=47 second=1096 amount=-1 -kerning first=50 second=337 amount=-1 -kerning first=53 second=99 amount=-1 -kerning first=190 second=940 amount=-1 -kerning first=193 second=249 amount=-1 -kerning first=70 second=953 amount=-1 -kerning first=73 second=261 amount=-1 -kerning first=1096 second=214 amount=-2 -kerning first=915 second=226 amount=-1 -kerning first=1171 second=356 amount=-5 -kerning first=1176 second=116 amount=-1 -kerning first=233 second=1078 amount=-2 -kerning first=951 second=368 amount=-2 -kerning first=113 second=1097 amount=2 -kerning first=119 second=100 amount=-1 -kerning first=1220 second=972 amount=-1 -kerning first=256 second=941 amount=-1 -kerning first=172 second=262 amount=-2 -kerning first=1034 second=65 amount=-1 -kerning first=282 second=1241 amount=-1 -kerning first=287 second=187 amount=-1 -kerning first=51 second=968 amount=-1 -kerning first=54 second=277 amount=-1 -kerning first=197 second=199 amount=-2 -kerning first=306 second=1079 amount=-1 -kerning first=315 second=89 amount=-6 -kerning first=77 second=211 amount=-2 -kerning first=214 second=1098 amount=-3 -kerning first=338 second=251 amount=-1 -kerning first=100 second=113 amount=-1 -kerning first=240 second=263 amount=-1 -kerning first=952 second=1066 amount=-5 -kerning first=949 second=8221 amount=-1 -kerning first=1298 second=228 amount=-1 -kerning first=1028 second=916 amount=-1 -kerning first=1035 second=240 amount=-1 -kerning first=177 second=212 amount=-2 -kerning first=8240 second=283 amount=-1 -kerning first=58 second=224 amount=-1 -kerning first=198 second=354 amount=-5 -kerning first=195 second=1118 amount=-1 -kerning first=316 second=266 amount=-2 -kerning first=321 second=39 amount=-3 -kerning first=8363 second=217 amount=-2 -kerning first=78 second=366 amount=-2 -kerning first=221 second=279 amount=-4 -kerning first=104 second=63 amount=-2 -kerning first=1178 second=920 amount=-1 -kerning first=367 second=103 amount=-1 -kerning first=124 second=225 amount=-1 -kerning first=175 second=1185 amount=-3 -kerning first=178 second=367 amount=-1 -kerning first=322 second=214 amount=-2 -kerning first=8361 second=947 amount=-4 -kerning first=8364 second=372 amount=-5 -kerning first=365 second=972 amount=-1 -kerning first=40 second=1241 amount=-1 -kerning first=43 second=187 amount=-1 -kerning first=176 second=8220 amount=-3 -kerning first=298 second=227 amount=-1 -kerning first=60 second=1079 amount=-1 -kerning first=66 second=89 amount=-2 -kerning first=323 second=369 amount=-1 -kerning first=86 second=251 amount=-2 -kerning first=243 second=8221 amount=-1 -kerning first=1206 second=106 amount=7 -kerning first=372 second=228 amount=-2 -kerning first=8212 second=193 amount=-2 -kerning first=47 second=102 amount=-1 -kerning first=1048 second=283 amount=-1 -kerning first=184 second=943 amount=-1 -kerning first=296 second=1256 amount=-2 -kerning first=70 second=39 amount=-3 -kerning first=1084 second=217 amount=-2 -kerning first=8372 second=949 amount=-1 -kerning first=8378 second=257 amount=-1 -kerning first=905 second=229 amount=-1 -kerning first=1117 second=359 amount=-1 -kerning first=1168 second=119 amount=-4 -kerning first=944 second=371 amount=-1 -kerning first=113 second=103 amount=3 -kerning first=1202 second=1026 amount=-2 -kerning first=253 second=253 amount=-1 -kerning first=166 second=267 amount=-1 -kerning first=1081 second=947 amount=-4 -kerning first=1085 second=372 amount=-5 -kerning first=903 second=1262 amount=-2 -kerning first=906 second=1240 amount=-2 -kerning first=91 second=356 amount=-5 -kerning first=94 second=116 amount=-1 -kerning first=952 second=81 amount=-2 -kerning first=114 second=281 amount=-1 -kerning first=1223 second=231 amount=-1 -kerning first=374 second=1084 amount=-3 -kerning first=52 second=227 amount=-1 -kerning first=1051 second=1263 amount=-1 -kerning first=192 second=357 amount=-1 -kerning first=195 second=117 amount=-1 -kerning first=72 second=369 amount=-1 -kerning first=912 second=332 amount=-2 -kerning first=1175 second=244 amount=-1 -kerning first=238 second=216 amount=-2 -kerning first=361 second=106 amount=1 -kerning first=118 second=228 amount=-1 -kerning first=261 second=118 amount=-1 -kerning first=378 second=962 amount=-1 -kerning first=1033 second=193 amount=-1 -kerning first=168 second=1194 amount=-2 -kerning first=8226 second=233 amount=-1 -kerning first=50 second=1256 amount=-2 -kerning first=1067 second=333 amount=-1 -kerning first=314 second=217 amount=-2 -kerning first=70 second=8222 amount=-4 -kerning first=1096 second=949 amount=-1 -kerning first=1099 second=257 amount=-1 -kerning first=915 second=963 amount=-1 -kerning first=923 second=271 amount=-1 -kerning first=96 second=920 amount=-2 -kerning first=236 second=1195 amount=-1 -kerning first=239 second=371 amount=-1 -kerning first=1263 second=334 amount=-2 -kerning first=1068 second=964 amount=-2 -kerning first=1071 second=273 amount=-1 -kerning first=200 second=242 amount=-1 -kerning first=315 second=372 amount=-4 -kerning first=8365 second=85 amount=-2 -kerning first=77 second=945 amount=-1 -kerning first=934 second=219 amount=-2 -kerning first=240 second=1069 amount=-1 -kerning first=960 second=361 amount=-1 -kerning first=963 second=121 amount=-1 -kerning first=1298 second=965 amount=-1 -kerning first=1035 second=1028 amount=-2 -kerning first=8260 second=336 amount=-2 -kerning first=61 second=269 amount=-1 -kerning first=221 second=1085 amount=-3 -kerning first=345 second=244 amount=-1 -kerning first=936 second=374 amount=-5 -kerning first=107 second=106 amount=1 -kerning first=364 second=1298 amount=-1 -kerning first=967 second=71 amount=-2 -kerning first=124 second=962 amount=-1 -kerning first=1240 second=8230 amount=-1 -kerning first=42 second=283 amount=-1 -kerning first=45 second=55 amount=-3 -kerning first=1046 second=233 amount=-2 -kerning first=297 second=333 amount=-1 -kerning first=65 second=217 amount=-2 -kerning first=322 second=949 amount=-1 -kerning first=325 second=257 amount=-1 -kerning first=88 second=119 amount=-3 -kerning first=105 second=1026 amount=-5 -kerning first=108 second=286 amount=-2 -kerning first=1203 second=234 amount=-1 -kerning first=371 second=334 amount=-2 -kerning first=968 second=246 amount=-1 -kerning first=164 second=218 amount=-2 -kerning first=274 second=346 amount=-1 -kerning first=186 second=360 amount=-2 -kerning first=298 second=964 amount=-3 -kerning first=304 second=45 amount=-2 -kerning first=301 second=273 amount=-1 -kerning first=63 second=947 amount=-4 -kerning first=66 second=372 amount=-1 -kerning first=1087 second=85 amount=-2 -kerning first=209 second=287 amount=-1 -kerning first=8377 second=365 amount=-1 -kerning first=904 second=335 amount=-1 -kerning first=946 second=259 amount=-1 -kerning first=950 second=34 amount=-3 -kerning first=252 second=361 amount=-1 -kerning first=255 second=121 amount=-1 -kerning first=372 second=965 amount=-2 -kerning first=165 second=373 amount=-4 -kerning first=278 second=288 amount=-2 -kerning first=44 second=1263 amount=-1 -kerning first=305 second=220 amount=-2 -kerning first=327 second=1176 amount=-1 -kerning first=8372 second=8217 amount=-3 -kerning first=905 second=966 amount=-1 -kerning first=93 second=244 amount=-1 -kerning first=910 second=275 amount=-4 -kerning first=230 second=1203 amount=-2 -kerning first=356 second=289 amount=-2 -kerning first=1220 second=337 amount=-1 -kerning first=973 second=351 amount=-1 -kerning first=1027 second=111 amount=-1 -kerning first=172 second=83 amount=-1 -kerning first=282 second=233 amount=-1 -kerning first=51 second=333 amount=-1 -kerning first=194 second=245 amount=-1 -kerning first=306 second=375 amount=-1 -kerning first=74 second=257 amount=-1 -kerning first=332 second=1051 amount=-1 -kerning first=240 second=84 amount=-5 -kerning first=952 second=364 amount=-2 -kerning first=117 second=334 amount=-2 -kerning first=1223 second=968 amount=-1 -kerning first=260 second=246 amount=-1 -kerning first=8225 second=339 amount=-1 -kerning first=55 second=273 amount=-1 -kerning first=58 second=45 amount=-2 -kerning first=8240 second=101 amount=-1 -kerning first=52 second=964 amount=-3 -kerning first=304 second=8249 amount=-3 -kerning first=316 second=85 amount=-2 -kerning first=221 second=97 amount=-4 -kerning first=920 second=377 amount=-1 -kerning first=95 second=1108 amount=-1 -kerning first=244 second=34 amount=-1 -kerning first=950 second=8216 amount=-3 -kerning first=1299 second=224 amount=-1 -kerning first=266 second=196 amount=-1 -kerning first=36 second=288 amount=-2 -kerning first=289 second=336 amount=-2 -kerning first=8226 second=970 amount=-1 -kerning first=59 second=220 amount=-2 -kerning first=1074 second=171 amount=-3 -kerning first=8364 second=213 amount=-2 -kerning first=1096 second=8217 amount=-3 -kerning first=102 second=289 amount=-1 -kerning first=365 second=337 amount=-1 -kerning first=962 second=249 amount=-1 -kerning first=958 second=940 amount=-1 -kerning first=125 second=221 amount=-5 -kerning first=40 second=233 amount=-1 -kerning first=179 second=363 amount=-1 -kerning first=176 second=1177 amount=-1 -kerning first=60 second=375 amount=-1 -kerning first=203 second=290 amount=-2 -kerning first=323 second=210 amount=-2 -kerning first=8365 second=368 amount=-2 -kerning first=77 second=8211 amount=-2 -kerning first=901 second=100 amount=-1 -kerning first=1103 second=941 amount=-1 -kerning first=1187 second=1241 amount=-1 -kerning first=369 second=277 amount=-1 -kerning first=126 second=376 amount=-5 -kerning first=268 second=1035 amount=-1 -kerning first=271 second=291 amount=-1 -kerning first=1044 second=339 amount=-1 -kerning first=177 second=8212 amount=-2 -kerning first=180 second=1059 amount=-2 -kerning first=1048 second=101 amount=-1 -kerning first=58 second=8249 amount=-3 -kerning first=1080 second=263 amount=-1 -kerning first=207 second=235 amount=-1 -kerning first=8366 second=1066 amount=-5 -kerning first=8363 second=8221 amount=-3 -kerning first=944 second=212 amount=-2 -kerning first=244 second=8216 amount=-1 -kerning first=373 second=224 amount=-1 -kerning first=967 second=354 amount=-5 -kerning first=964 second=1118 amount=-1 -kerning first=124 second=8250 amount=-1 -kerning first=1049 second=279 amount=-1 -kerning first=188 second=248 amount=-1 -kerning first=1046 second=970 amount=-1 -kerning first=303 second=171 amount=-3 -kerning first=68 second=260 amount=-2 -kerning first=1085 second=213 amount=-2 -kerning first=322 second=8217 amount=-3 -kerning first=906 second=225 amount=-1 -kerning first=1118 second=355 amount=-1 -kerning first=942 second=1185 amount=-3 -kerning first=114 second=99 amount=-1 -kerning first=254 second=249 amount=-1 -kerning first=251 second=940 amount=-1 -kerning first=968 second=1038 amount=-2 -kerning first=167 second=261 amount=-1 -kerning first=164 second=953 amount=-1 -kerning first=1063 second=226 amount=-1 -kerning first=72 second=210 amount=-2 -kerning first=1087 second=368 amount=-2 -kerning first=215 second=100 amount=-1 -kerning first=330 second=941 amount=-1 -kerning first=92 second=352 amount=-1 -kerning first=89 second=1116 amount=-3 -kerning first=358 second=187 amount=-1 -kerning first=1224 second=227 amount=-1 -kerning first=258 second=199 amount=-2 -kerning first=375 second=1079 amount=-1 -kerning first=278 second=1098 amount=-3 -kerning first=8218 second=973 amount=-1 -kerning first=193 second=353 amount=-1 -kerning first=196 second=113 amount=-1 -kerning first=310 second=263 amount=-2 -kerning first=70 second=1179 amount=-1 -kerning first=73 second=365 amount=-1 -kerning first=1084 second=8221 amount=-3 -kerning first=910 second=1080 amount=-3 -kerning first=1176 second=240 amount=-1 -kerning first=239 second=212 amount=-2 -kerning first=356 second=1099 amount=-2 -kerning first=951 second=943 amount=-1 -kerning first=119 second=224 amount=-1 -kerning first=1220 second=1256 amount=-2 -kerning first=256 second=1118 amount=-1 -kerning first=169 second=1184 amount=-5 -kerning first=172 second=366 amount=-2 -kerning first=287 second=279 amount=-1 -kerning first=282 second=970 amount=-1 -kerning first=57 second=171 amount=-3 -kerning first=315 second=213 amount=-1 -kerning first=338 second=355 amount=-1 -kerning first=341 second=115 amount=-1 -kerning first=926 second=267 amount=-1 -kerning first=240 second=367 amount=-1 -kerning first=237 second=1185 amount=-3 -kerning first=1257 second=1083 amount=-1 -kerning first=260 second=1038 amount=-2 -kerning first=291 second=226 amount=-1 -kerning first=8225 second=1262 amount=-2 -kerning first=8240 second=1240 amount=-2 -kerning first=1073 second=268 amount=-2 -kerning first=316 second=368 amount=-2 -kerning first=8366 second=81 amount=-2 -kerning first=78 second=941 amount=-1 -kerning first=221 second=380 amount=-2 -kerning first=238 second=8220 amount=-3 -kerning first=367 second=227 amount=-1 -kerning first=964 second=117 amount=-1 -kerning first=121 second=1079 amount=-1 -kerning first=160 second=89 amount=-5 -kerning first=36 second=1098 amount=-3 -kerning first=42 second=101 amount=-1 -kerning first=1036 second=973 amount=-1 -kerning first=39 second=339 amount=-1 -kerning first=182 second=251 amount=-1 -kerning first=65 second=38 amount=-1 -kerning first=62 second=263 amount=-1 -kerning first=314 second=8221 amount=-3 -kerning first=317 second=1066 amount=-5 -kerning first=900 second=228 amount=-1 -kerning first=931 second=1194 amount=-2 -kerning first=365 second=1256 amount=-2 -kerning first=968 second=67 amount=-2 -kerning first=161 second=266 amount=-2 -kerning first=164 second=39 amount=-3 -kerning first=46 second=51 amount=-1 -kerning first=43 second=279 amount=-1 -kerning first=40 second=970 amount=-1 -kerning first=1075 second=1195 amount=-1 -kerning first=209 second=103 amount=-1 -kerning first=86 second=355 amount=-1 -kerning first=89 second=115 amount=-3 -kerning first=165 second=214 amount=-2 -kerning first=271 second=1101 amount=-1 -kerning first=47 second=226 amount=-2 -kerning first=1048 second=1240 amount=-2 -kerning first=1044 second=1262 amount=-1 -kerning first=187 second=356 amount=-3 -kerning first=190 second=116 amount=-1 -kerning first=302 second=268 amount=-2 -kerning first=1080 second=1069 amount=-1 -kerning first=207 second=972 amount=-1 -kerning first=8378 second=361 amount=-1 -kerning first=1168 second=243 amount=-1 -kerning first=113 second=227 amount=-1 -kerning first=253 second=357 amount=-1 -kerning first=256 second=117 amount=-1 -kerning first=373 second=961 amount=-2 -kerning first=376 second=269 amount=-4 -kerning first=166 second=369 amount=-1 -kerning first=276 second=973 amount=-1 -kerning first=8220 second=232 amount=-1 -kerning first=1062 second=332 amount=-1 -kerning first=306 second=216 amount=-2 -kerning first=65 second=8221 amount=-3 -kerning first=68 second=1066 amount=-2 -kerning first=214 second=228 amount=-1 -kerning first=335 second=118 amount=-1 -kerning first=906 second=962 amount=-1 -kerning first=94 second=240 amount=-1 -kerning first=357 second=283 amount=-1 -kerning first=1223 second=333 amount=-1 -kerning first=260 second=67 amount=-2 -kerning first=174 second=79 amount=-2 -kerning first=1063 second=963 amount=-1 -kerning first=192 second=920 amount=-2 -kerning first=1069 second=44 amount=-1 -kerning first=304 second=1195 amount=-1 -kerning first=75 second=253 amount=-2 -kerning first=361 second=230 amount=-1 -kerning first=1224 second=964 amount=-3 -kerning first=1299 second=45 amount=-2 -kerning first=8226 second=335 amount=-1 -kerning first=56 second=268 amount=-2 -kerning first=310 second=1069 amount=-2 -kerning first=317 second=81 amount=-2 -kerning first=8364 second=34 amount=-3 -kerning first=8361 second=259 amount=-1 -kerning first=1099 second=361 amount=-1 -kerning first=923 second=373 amount=-4 -kerning first=1176 second=1028 amount=-2 -kerning first=119 second=961 amount=-2 -kerning first=122 second=269 amount=-1 -kerning first=1037 second=232 amount=-1 -kerning first=60 second=216 amount=-2 -kerning first=1071 second=374 amount=-5 -kerning first=203 second=106 amount=1 -kerning first=83 second=118 amount=-1 -kerning first=103 second=283 amount=-1 -kerning first=1187 second=233 amount=-1 -kerning first=963 second=245 amount=-1 -kerning first=126 second=217 amount=-2 -kerning first=41 second=229 amount=-1 -kerning first=184 second=119 amount=-4 -kerning first=180 second=359 amount=-1 -kerning first=291 second=963 amount=-1 -kerning first=296 second=271 amount=-1 -kerning first=58 second=1195 amount=-1 -kerning first=61 second=371 amount=-1 -kerning first=1080 second=84 amount=-5 -kerning first=201 second=1026 amount=-5 -kerning first=204 second=286 amount=-2 -kerning first=8366 second=364 amount=-2 +kerning first=79 second=260 amount=-2 +kerning first=79 second=354 amount=-2 +kerning first=79 second=356 amount=-2 +kerning first=79 second=372 amount=-2 +kerning first=79 second=374 amount=-3 +kerning first=79 second=376 amount=-3 +kerning first=79 second=377 amount=-1 +kerning first=79 second=379 amount=-1 +kerning first=79 second=381 amount=-1 +kerning first=79 second=913 amount=-2 +kerning first=79 second=916 amount=-2 +kerning first=79 second=918 amount=-1 +kerning first=79 second=923 amount=-2 +kerning first=79 second=932 amount=-2 +kerning first=79 second=933 amount=-3 +kerning first=79 second=935 amount=-3 +kerning first=79 second=939 amount=-3 +kerning first=79 second=955 amount=-2 +kerning first=79 second=967 amount=-1 +kerning first=79 second=1026 amount=-2 +kerning first=79 second=1033 amount=-1 +kerning first=79 second=1035 amount=-2 +kerning first=79 second=1040 amount=-2 +kerning first=79 second=1044 amount=-1 +kerning first=79 second=1046 amount=-3 +kerning first=79 second=1051 amount=-1 +kerning first=79 second=1058 amount=-2 +kerning first=79 second=1061 amount=-3 +kerning first=79 second=1066 amount=-2 +kerning first=79 second=1071 amount=-1 +kerning first=79 second=1174 amount=-3 +kerning first=79 second=1184 amount=-2 +kerning first=79 second=1198 amount=-3 +kerning first=79 second=1202 amount=-3 +kerning first=79 second=1298 amount=-1 +kerning first=79 second=8218 amount=-1 +kerning first=79 second=8222 amount=-1 +kerning first=79 second=8230 amount=-1 +kerning first=80 second=44 amount=-4 +kerning first=80 second=45 amount=-1 +kerning first=80 second=46 amount=-4 +kerning first=80 second=47 amount=-3 +kerning first=80 second=65 amount=-4 +kerning first=80 second=74 amount=-3 +kerning first=80 second=86 amount=-1 +kerning first=80 second=87 amount=-1 +kerning first=80 second=88 amount=-2 +kerning first=80 second=89 amount=-2 +kerning first=80 second=90 amount=-1 +kerning first=80 second=97 amount=-1 +kerning first=80 second=103 amount=-1 +kerning first=80 second=173 amount=-1 +kerning first=80 second=193 amount=-4 +kerning first=80 second=194 amount=-4 +kerning first=80 second=196 amount=-4 +kerning first=80 second=197 amount=-4 +kerning first=80 second=198 amount=-4 +kerning first=80 second=221 amount=-2 +kerning first=80 second=224 amount=-1 +kerning first=80 second=225 amount=-1 +kerning first=80 second=226 amount=-1 +kerning first=80 second=227 amount=-1 +kerning first=80 second=228 amount=-1 +kerning first=80 second=229 amount=-1 +kerning first=80 second=230 amount=-1 +kerning first=80 second=256 amount=-4 +kerning first=80 second=257 amount=-1 +kerning first=80 second=258 amount=-4 +kerning first=80 second=259 amount=-1 +kerning first=80 second=260 amount=-4 +kerning first=80 second=261 amount=-1 +kerning first=80 second=287 amount=-1 +kerning first=80 second=289 amount=-1 +kerning first=80 second=291 amount=-1 +kerning first=80 second=372 amount=-1 +kerning first=80 second=374 amount=-2 +kerning first=80 second=376 amount=-2 +kerning first=80 second=377 amount=-1 +kerning first=80 second=379 amount=-1 +kerning first=80 second=381 amount=-1 +kerning first=80 second=913 amount=-4 +kerning first=80 second=916 amount=-4 +kerning first=80 second=918 amount=-1 +kerning first=80 second=923 amount=-4 +kerning first=80 second=933 amount=-2 +kerning first=80 second=935 amount=-2 +kerning first=80 second=939 amount=-2 +kerning first=80 second=950 amount=-1 +kerning first=80 second=955 amount=-3 +kerning first=80 second=961 amount=-1 +kerning first=80 second=1032 amount=-3 +kerning first=80 second=1040 amount=-4 +kerning first=80 second=1046 amount=-2 +kerning first=80 second=1061 amount=-2 +kerning first=80 second=1072 amount=-1 +kerning first=80 second=1174 amount=-2 +kerning first=80 second=1198 amount=-2 +kerning first=80 second=1202 amount=-2 +kerning first=80 second=8211 amount=-1 +kerning first=80 second=8212 amount=-1 +kerning first=80 second=8218 amount=-4 +kerning first=80 second=8222 amount=-4 +kerning first=80 second=8230 amount=-4 +kerning first=81 second=44 amount=-1 +kerning first=81 second=46 amount=-1 +kerning first=81 second=47 amount=-1 +kerning first=81 second=65 amount=-2 +kerning first=81 second=84 amount=-2 +kerning first=81 second=86 amount=-2 +kerning first=81 second=87 amount=-2 +kerning first=81 second=88 amount=-3 +kerning first=81 second=89 amount=-3 +kerning first=81 second=90 amount=-1 +kerning first=81 second=193 amount=-2 +kerning first=81 second=194 amount=-2 +kerning first=81 second=196 amount=-2 +kerning first=81 second=197 amount=-2 +kerning first=81 second=198 amount=-2 +kerning first=81 second=221 amount=-3 +kerning first=81 second=256 amount=-2 +kerning first=81 second=258 amount=-2 +kerning first=81 second=260 amount=-2 +kerning first=81 second=354 amount=-2 +kerning first=81 second=356 amount=-2 +kerning first=81 second=372 amount=-2 +kerning first=81 second=374 amount=-3 +kerning first=81 second=376 amount=-3 +kerning first=81 second=377 amount=-1 +kerning first=81 second=379 amount=-1 +kerning first=81 second=381 amount=-1 +kerning first=81 second=913 amount=-2 +kerning first=81 second=916 amount=-2 +kerning first=81 second=918 amount=-1 +kerning first=81 second=923 amount=-2 +kerning first=81 second=932 amount=-2 +kerning first=81 second=933 amount=-3 +kerning first=81 second=935 amount=-3 +kerning first=81 second=939 amount=-3 +kerning first=81 second=955 amount=-2 +kerning first=81 second=967 amount=-1 +kerning first=81 second=1026 amount=-2 +kerning first=81 second=1033 amount=-1 +kerning first=81 second=1035 amount=-2 +kerning first=81 second=1040 amount=-2 +kerning first=81 second=1044 amount=-1 kerning first=81 second=1046 amount=-3 -kerning first=936 second=950 amount=-1 -kerning first=107 second=230 amount=-1 -kerning first=247 second=360 amount=-2 -kerning first=367 second=964 amount=-3 -kerning first=373 second=45 amount=-1 -kerning first=124 second=947 amount=-4 -kerning first=160 second=372 amount=-5 -kerning first=1299 second=8249 amount=-3 -kerning first=273 second=287 amount=-1 -kerning first=42 second=1240 amount=-2 -kerning first=1049 second=97 amount=-1 -kerning first=1046 second=335 amount=-2 -kerning first=300 second=219 amount=-2 -kerning first=62 second=1069 amount=-1 -kerning first=1085 second=34 amount=-3 -kerning first=1081 second=259 amount=-1 -kerning first=325 second=361 amount=-1 -kerning first=8364 second=8216 amount=-3 -kerning first=900 second=965 amount=-1 -kerning first=88 second=243 amount=-2 -kerning first=228 second=373 amount=-1 -kerning first=105 second=1263 amount=-1 -kerning first=968 second=350 amount=-1 -kerning first=46 second=332 amount=-1 -kerning first=1051 second=275 amount=-1 -kerning first=189 second=244 amount=-1 -kerning first=301 second=374 amount=-5 -kerning first=8377 second=940 amount=-1 -kerning first=908 second=221 amount=-3 -kerning first=1170 second=111 amount=-1 -kerning first=1119 second=351 amount=-1 -kerning first=946 second=363 amount=-1 -kerning first=255 second=245 amount=-1 -kerning first=375 second=375 amount=-1 -kerning first=165 second=949 amount=-1 -kerning first=168 second=257 amount=-1 -kerning first=275 second=1299 amount=-1 -kerning first=8218 second=338 amount=-1 -kerning first=47 second=963 amount=-1 -kerning first=53 second=44 amount=-1 -kerning first=50 second=271 amount=-1 -kerning first=93 second=346 amount=-1 -kerning first=1168 second=1035 amount=-5 -kerning first=1171 second=291 amount=-1 -kerning first=944 second=8212 amount=-2 -kerning first=948 second=1059 amount=-2 -kerning first=113 second=964 amount=-3 -kerning first=119 second=45 amount=-1 -kerning first=376 second=1074 amount=-3 -kerning first=373 second=8249 amount=-1 -kerning first=1027 second=235 amount=-1 -kerning first=282 second=335 amount=-1 -kerning first=287 second=97 amount=-1 -kerning first=54 second=219 amount=-2 -kerning first=191 second=1108 amount=-1 -kerning first=194 second=347 amount=-1 -kerning first=315 second=34 amount=-3 -kerning first=311 second=259 amount=-1 -kerning first=74 second=361 amount=-1 -kerning first=1085 second=8216 amount=-3 -kerning first=77 second=121 amount=-1 -kerning first=214 second=965 amount=-1 -kerning first=220 second=46 amount=-1 -kerning first=906 second=8250 amount=-1 -kerning first=94 second=1028 amount=-2 -kerning first=955 second=248 amount=-1 -kerning first=1298 second=171 amount=-3 -kerning first=1257 second=378 amount=-1 -kerning first=260 second=350 amount=-1 -kerning first=35 second=232 amount=-1 -kerning first=170 second=1176 amount=-1 -kerning first=174 second=362 amount=-2 -kerning first=8240 second=225 amount=-1 -kerning first=55 second=374 amount=-5 -kerning first=1073 second=87 amount=-5 -kerning first=198 second=289 amount=-1 -kerning first=928 second=261 amount=-1 -kerning first=238 second=1177 amount=-1 -kerning first=121 second=375 amount=-1 -kerning first=1036 second=338 amount=-3 -kerning first=1039 second=100 amount=-1 -kerning first=62 second=84 amount=-5 -kerning first=1074 second=262 amount=-2 -kerning first=202 second=234 amount=-1 -kerning first=317 second=364 amount=-2 -kerning first=222 second=376 amount=-3 -kerning first=343 second=291 amount=-1 -kerning first=1179 second=1098 amount=-2 -kerning first=239 second=8212 amount=-2 -kerning first=1186 second=339 amount=-1 -kerning first=962 second=353 amount=-1 -kerning first=965 second=113 amount=-1 -kerning first=119 second=8249 amount=-1 -kerning first=161 second=85 amount=-2 -kerning first=40 second=335 amount=-1 -kerning first=43 second=97 amount=-1 -kerning first=63 second=259 amount=-1 -kerning first=315 second=8216 amount=-3 -kerning first=8365 second=943 amount=-1 -kerning first=8370 second=252 amount=-1 -kerning first=901 second=224 amount=-1 -kerning first=86 second=196 amount=-6 -kerning first=1103 second=1118 amount=-1 -kerning first=934 second=1184 amount=-5 -kerning first=947 second=279 amount=-1 -kerning first=249 second=248 amount=-1 -kerning first=372 second=171 amount=-2 -kerning first=41 second=966 amount=-1 -kerning first=1048 second=225 amount=-1 -kerning first=187 second=197 amount=-3 -kerning first=302 second=87 amount=-5 -kerning first=1080 second=367 amount=-1 -kerning first=1076 second=1185 amount=-2 -kerning first=207 second=337 amount=-1 -kerning first=327 second=249 amount=-1 +kerning first=81 second=1051 amount=-1 +kerning first=81 second=1058 amount=-2 +kerning first=81 second=1061 amount=-3 +kerning first=81 second=1066 amount=-2 +kerning first=81 second=1071 amount=-1 +kerning first=81 second=1174 amount=-3 +kerning first=81 second=1184 amount=-2 +kerning first=81 second=1198 amount=-3 +kerning first=81 second=1202 amount=-3 +kerning first=81 second=1298 amount=-1 +kerning first=81 second=8218 amount=-1 +kerning first=81 second=8222 amount=-1 +kerning first=81 second=8230 amount=-1 +kerning first=82 second=45 amount=-1 +kerning first=82 second=86 amount=-1 +kerning first=82 second=87 amount=-1 +kerning first=82 second=89 amount=-2 +kerning first=82 second=106 amount=2 +kerning first=82 second=171 amount=-1 +kerning first=82 second=173 amount=-1 +kerning first=82 second=221 amount=-2 +kerning first=82 second=372 amount=-1 +kerning first=82 second=374 amount=-2 +kerning first=82 second=376 amount=-2 +kerning first=82 second=933 amount=-2 +kerning first=82 second=939 amount=-2 +kerning first=82 second=1112 amount=2 +kerning first=82 second=1198 amount=-2 +kerning first=82 second=8211 amount=-1 +kerning first=82 second=8212 amount=-1 +kerning first=82 second=8249 amount=-1 +kerning first=83 second=65 amount=-1 +kerning first=83 second=84 amount=-1 +kerning first=83 second=86 amount=-2 +kerning first=83 second=87 amount=-2 +kerning first=83 second=88 amount=-1 +kerning first=83 second=89 amount=-2 +kerning first=83 second=106 amount=1 +kerning first=83 second=118 amount=-1 +kerning first=83 second=119 amount=-1 +kerning first=83 second=120 amount=-1 +kerning first=83 second=193 amount=-1 +kerning first=83 second=194 amount=-1 +kerning first=83 second=196 amount=-1 +kerning first=83 second=197 amount=-1 +kerning first=83 second=198 amount=-1 +kerning first=83 second=221 amount=-2 +kerning first=83 second=256 amount=-1 +kerning first=83 second=258 amount=-1 +kerning first=83 second=260 amount=-1 +kerning first=83 second=354 amount=-1 +kerning first=83 second=356 amount=-1 +kerning first=83 second=372 amount=-2 +kerning first=83 second=373 amount=-1 +kerning first=83 second=374 amount=-2 +kerning first=83 second=376 amount=-2 +kerning first=83 second=913 amount=-1 +kerning first=83 second=916 amount=-1 +kerning first=83 second=923 amount=-1 +kerning first=83 second=932 amount=-1 +kerning first=83 second=933 amount=-2 +kerning first=83 second=935 amount=-1 +kerning first=83 second=939 amount=-2 +kerning first=83 second=947 amount=-1 +kerning first=83 second=957 amount=-1 +kerning first=83 second=1026 amount=-1 +kerning first=83 second=1035 amount=-1 +kerning first=83 second=1040 amount=-1 +kerning first=83 second=1046 amount=-1 +kerning first=83 second=1058 amount=-1 +kerning first=83 second=1061 amount=-1 +kerning first=83 second=1066 amount=-1 +kerning first=83 second=1078 amount=-1 +kerning first=83 second=1093 amount=-1 +kerning first=83 second=1112 amount=1 +kerning first=83 second=1174 amount=-1 +kerning first=83 second=1175 amount=-1 +kerning first=83 second=1184 amount=-1 +kerning first=83 second=1198 amount=-2 +kerning first=83 second=1199 amount=-1 +kerning first=83 second=1202 amount=-1 +kerning first=83 second=1203 amount=-1 +kerning first=84 second=44 amount=-3 +kerning first=84 second=45 amount=-4 +kerning first=84 second=46 amount=-3 +kerning first=84 second=47 amount=-4 +kerning first=84 second=110 amount=-2 +kerning first=84 second=65 amount=-6 +kerning first=84 second=67 amount=-1 +kerning first=84 second=114 amount=-2 +kerning first=84 second=71 amount=-1 +kerning first=84 second=74 amount=-5 +kerning first=84 second=79 amount=-1 +kerning first=84 second=81 amount=-1 +kerning first=84 second=83 amount=-1 +kerning first=84 second=97 amount=-2 +kerning first=84 second=99 amount=-3 +kerning first=84 second=100 amount=-3 +kerning first=84 second=101 amount=-3 +kerning first=84 second=103 amount=-2 +kerning first=84 second=109 amount=-2 +kerning first=84 second=111 amount=-3 +kerning first=84 second=112 amount=-2 +kerning first=84 second=113 amount=-3 +kerning first=84 second=115 amount=-3 +kerning first=84 second=117 amount=-2 +kerning first=84 second=118 amount=-2 +kerning first=84 second=119 amount=-2 +kerning first=84 second=120 amount=-1 +kerning first=84 second=121 amount=-2 +kerning first=84 second=122 amount=-1 +kerning first=84 second=171 amount=-3 +kerning first=84 second=173 amount=-4 +kerning first=84 second=187 amount=-1 +kerning first=84 second=193 amount=-6 +kerning first=84 second=194 amount=-6 +kerning first=84 second=196 amount=-6 +kerning first=84 second=197 amount=-6 +kerning first=84 second=198 amount=-6 +kerning first=84 second=199 amount=-1 +kerning first=84 second=210 amount=-1 +kerning first=84 second=211 amount=-1 +kerning first=84 second=212 amount=-1 +kerning first=84 second=213 amount=-1 +kerning first=84 second=214 amount=-1 +kerning first=84 second=216 amount=-1 +kerning first=84 second=224 amount=-2 +kerning first=84 second=225 amount=-2 +kerning first=84 second=226 amount=-2 +kerning first=84 second=227 amount=-2 +kerning first=84 second=228 amount=-2 +kerning first=84 second=229 amount=-2 +kerning first=84 second=230 amount=-2 +kerning first=84 second=231 amount=-3 +kerning first=84 second=232 amount=-3 +kerning first=84 second=233 amount=-3 +kerning first=84 second=234 amount=-3 +kerning first=84 second=235 amount=-3 +kerning first=84 second=240 amount=-3 +kerning first=84 second=241 amount=-2 +kerning first=84 second=242 amount=-3 +kerning first=84 second=243 amount=-3 +kerning first=84 second=244 amount=-3 +kerning first=84 second=245 amount=-3 +kerning first=84 second=246 amount=-3 +kerning first=84 second=248 amount=-3 +kerning first=84 second=249 amount=-2 +kerning first=84 second=250 amount=-2 +kerning first=84 second=251 amount=-2 +kerning first=84 second=252 amount=-2 +kerning first=84 second=253 amount=-2 +kerning first=84 second=256 amount=-6 +kerning first=84 second=257 amount=-2 +kerning first=84 second=258 amount=-6 +kerning first=84 second=259 amount=-2 +kerning first=84 second=260 amount=-6 +kerning first=84 second=261 amount=-2 +kerning first=84 second=262 amount=-1 +kerning first=84 second=263 amount=-3 +kerning first=84 second=266 amount=-1 +kerning first=84 second=267 amount=-3 +kerning first=84 second=268 amount=-1 +kerning first=84 second=269 amount=-3 +kerning first=84 second=271 amount=-3 +kerning first=84 second=273 amount=-3 +kerning first=84 second=275 amount=-3 +kerning first=84 second=277 amount=-3 +kerning first=84 second=279 amount=-3 +kerning first=84 second=281 amount=-3 +kerning first=84 second=283 amount=-3 +kerning first=84 second=286 amount=-1 +kerning first=84 second=287 amount=-2 +kerning first=84 second=288 amount=-1 +kerning first=84 second=289 amount=-2 +kerning first=84 second=290 amount=-1 +kerning first=84 second=291 amount=-2 +kerning first=84 second=324 amount=-2 +kerning first=84 second=326 amount=-2 +kerning first=84 second=328 amount=-2 +kerning first=84 second=331 amount=-2 +kerning first=84 second=332 amount=-1 +kerning first=84 second=333 amount=-3 +kerning first=84 second=334 amount=-1 +kerning first=84 second=335 amount=-3 +kerning first=84 second=336 amount=-1 +kerning first=84 second=337 amount=-3 +kerning first=84 second=338 amount=-1 +kerning first=84 second=339 amount=-3 +kerning first=84 second=341 amount=-2 +kerning first=84 second=343 amount=-2 +kerning first=84 second=345 amount=-2 +kerning first=84 second=346 amount=-1 +kerning first=84 second=347 amount=-3 +kerning first=84 second=350 amount=-1 +kerning first=84 second=351 amount=-3 +kerning first=84 second=352 amount=-1 +kerning first=84 second=353 amount=-3 +kerning first=84 second=361 amount=-2 +kerning first=84 second=363 amount=-2 +kerning first=84 second=365 amount=-2 +kerning first=84 second=367 amount=-2 +kerning first=84 second=369 amount=-2 +kerning first=84 second=371 amount=-2 +kerning first=84 second=373 amount=-2 +kerning first=84 second=375 amount=-2 +kerning first=84 second=378 amount=-1 +kerning first=84 second=380 amount=-1 +kerning first=84 second=382 amount=-1 +kerning first=84 second=913 amount=-6 +kerning first=84 second=916 amount=-6 +kerning first=84 second=920 amount=-1 +kerning first=84 second=923 amount=-6 +kerning first=84 second=927 amount=-1 +kerning first=84 second=940 amount=-3 +kerning first=84 second=941 amount=-3 +kerning first=84 second=942 amount=-2 +kerning first=84 second=945 amount=-3 +kerning first=84 second=947 amount=-2 +kerning first=84 second=949 amount=-3 +kerning first=84 second=951 amount=-2 +kerning first=84 second=954 amount=-2 +kerning first=84 second=957 amount=-2 +kerning first=84 second=959 amount=-3 +kerning first=84 second=962 amount=-3 +kerning first=84 second=963 amount=-3 +kerning first=84 second=965 amount=-2 +kerning first=84 second=966 amount=-3 +kerning first=84 second=968 amount=-2 +kerning first=84 second=972 amount=-3 +kerning first=84 second=973 amount=-2 +kerning first=84 second=1028 amount=-1 +kerning first=84 second=1029 amount=-1 +kerning first=84 second=1032 amount=-5 +kerning first=84 second=1033 amount=-4 +kerning first=84 second=1040 amount=-6 +kerning first=84 second=1044 amount=-4 +kerning first=84 second=1051 amount=-4 +kerning first=84 second=1054 amount=-1 +kerning first=84 second=1057 amount=-1 +kerning first=84 second=1072 amount=-2 +kerning first=84 second=1074 amount=-2 +kerning first=84 second=1075 amount=-2 +kerning first=84 second=1077 amount=-3 +kerning first=84 second=1078 amount=-1 +kerning first=84 second=1079 amount=-2 +kerning first=84 second=1080 amount=-2 +kerning first=84 second=1081 amount=-2 +kerning first=84 second=1082 amount=-2 +kerning first=84 second=1084 amount=-2 +kerning first=84 second=1085 amount=-2 +kerning first=84 second=1086 amount=-3 +kerning first=84 second=1087 amount=-2 +kerning first=84 second=1088 amount=-2 +kerning first=84 second=1089 amount=-3 +kerning first=84 second=1091 amount=-2 +kerning first=84 second=1092 amount=-3 +kerning first=84 second=1093 amount=-1 +kerning first=84 second=1094 amount=-2 +kerning first=84 second=1096 amount=-2 +kerning first=84 second=1097 amount=-2 +kerning first=84 second=1099 amount=-2 +kerning first=84 second=1100 amount=-2 +kerning first=84 second=1101 amount=-2 +kerning first=84 second=1102 amount=-2 +kerning first=84 second=1104 amount=-3 +kerning first=84 second=1105 amount=-3 +kerning first=84 second=1107 amount=-2 +kerning first=84 second=1108 amount=-3 +kerning first=84 second=1109 amount=-3 kerning first=84 second=1114 amount=-2 -kerning first=87 second=351 amount=-2 -kerning first=90 second=111 amount=-1 -kerning first=166 second=210 amount=-2 -kerning first=276 second=338 amount=-2 -kerning first=8216 second=281 amount=-1 -kerning first=188 second=352 amount=-1 -kerning first=303 second=262 amount=-2 -kerning first=903 second=1079 amount=-1 -kerning first=911 second=89 amount=-2 -kerning first=91 second=291 amount=-1 -kerning first=357 second=101 amount=-1 -kerning first=354 second=339 amount=-3 -kerning first=254 second=353 amount=-1 -kerning first=374 second=955 amount=-2 -kerning first=377 second=263 amount=-1 -kerning first=167 second=365 amount=-1 -kerning first=8221 second=228 amount=-1 -kerning first=75 second=74 amount=-1 -kerning first=1095 second=252 amount=-1 -kerning first=215 second=224 amount=-1 -kerning first=1087 second=943 amount=-1 -kerning first=330 second=1118 amount=-1 -kerning first=912 second=266 amount=-2 -kerning first=358 second=279 amount=-1 -kerning first=118 second=171 amount=-1 -kerning first=261 second=63 amount=-2 -kerning first=381 second=213 amount=-1 -kerning first=165 second=8217 amount=-3 -kerning first=56 second=87 amount=-5 -kerning first=1067 second=267 amount=-1 -kerning first=305 second=1185 amount=-3 -kerning first=310 second=367 amount=-1 -kerning first=73 second=940 amount=-1 -kerning first=76 second=249 amount=-1 -kerning first=216 second=379 amount=-1 -kerning first=923 second=214 amount=-2 -kerning first=1171 second=1101 amount=-1 -kerning first=233 second=8218 amount=-1 -kerning first=958 second=116 amount=-1 -kerning first=1263 second=268 amount=-2 -kerning first=37 second=100 amount=-1 -kerning first=176 second=250 amount=-1 -kerning first=172 second=941 amount=-1 -kerning first=1027 second=972 amount=-1 -kerning first=57 second=262 amount=-2 -kerning first=197 second=1241 amount=-1 -kerning first=200 second=187 amount=-1 -kerning first=306 second=8220 amount=-3 -kerning first=80 second=199 amount=-2 -kerning first=1103 second=117 amount=-1 -kerning first=223 second=89 amount=-5 -kerning first=926 second=369 amount=-1 -kerning first=100 second=339 amount=-1 -kerning first=103 second=101 amount=-1 -kerning first=97 second=1098 amount=-1 -kerning first=123 second=263 amount=-1 -kerning first=8240 second=962 amount=-1 -kerning first=61 second=212 amount=-2 -kerning first=1073 second=370 amount=-2 -kerning first=321 second=252 amount=-1 -kerning first=316 second=943 amount=-1 -kerning first=78 second=1118 amount=-1 -kerning first=81 second=354 amount=-2 -kerning first=84 second=114 amount=-2 -kerning first=227 second=39 amount=-1 -kerning first=920 second=8222 amount=-1 -kerning first=160 second=213 amount=-2 -kerning first=1299 second=1195 amount=-1 -kerning first=273 second=103 amount=-1 -kerning first=42 second=225 amount=-1 -kerning first=1036 second=1257 amount=-2 -kerning first=182 second=355 amount=-1 -kerning first=185 second=115 amount=-1 -kerning first=297 second=267 amount=-1 -kerning first=59 second=1185 amount=-3 -kerning first=62 second=367 amount=-1 -kerning first=8369 second=360 amount=-2 -kerning first=108 second=226 amount=-1 -kerning first=1186 second=1262 amount=-1 -kerning first=251 second=116 amount=-1 -kerning first=371 second=268 amount=-2 -kerning first=161 second=368 amount=-2 -kerning first=274 second=281 amount=-1 -kerning first=60 second=8220 amount=-3 -kerning first=209 second=227 amount=-1 -kerning first=330 second=117 amount=-1 -kerning first=904 second=269 amount=-1 -kerning first=1206 second=332 amount=-1 -kerning first=375 second=216 amount=-2 -kerning first=162 second=1066 amount=-5 -kerning first=126 second=8221 amount=-3 -kerning first=278 second=228 amount=-1 -kerning first=1048 second=962 amount=-1 -kerning first=190 second=240 amount=-1 -kerning first=187 second=916 amount=-3 -kerning first=299 second=1194 amount=-2 -kerning first=302 second=370 amount=-2 -kerning first=70 second=252 amount=-1 -kerning first=207 second=1256 amount=-2 -kerning first=236 second=79 amount=-2 -kerning first=356 second=229 amount=-2 -kerning first=948 second=359 amount=-1 -kerning first=951 second=119 amount=-4 -kerning first=113 second=328 amount=2 -kerning first=1220 second=271 amount=-1 -kerning first=1256 second=44 amount=-1 -kerning first=253 second=920 amount=-2 -kerning first=1207 second=963 amount=-1 -kerning first=373 second=1195 amount=-1 -kerning first=376 second=371 amount=-2 -kerning first=973 second=286 amount=-2 -kerning first=169 second=253 amount=-1 -kerning first=276 second=1257 amount=-1 -kerning first=51 second=267 amount=-1 -kerning first=1065 second=218 amount=-1 -kerning first=332 second=923 amount=-2 -kerning first=906 second=947 amount=-4 -kerning first=91 second=1101 amount=-1 -kerning first=357 second=1240 amount=-2 -kerning first=117 second=268 amount=-2 -kerning first=1066 second=373 amount=-1 -kerning first=78 second=117 amount=-1 -kerning first=75 second=357 amount=-1 -kerning first=95 second=973 amount=-1 -kerning first=1178 second=232 amount=-1 -kerning first=361 second=332 amount=-2 -kerning first=956 second=244 amount=-1 -kerning first=121 second=216 amount=-2 -kerning first=266 second=106 amount=1 -kerning first=1240 second=256 amount=-2 -kerning first=36 second=228 amount=-1 -kerning first=178 second=118 amount=-4 -kerning first=8249 second=221 amount=-2 -kerning first=53 second=1194 amount=-2 -kerning first=56 second=370 amount=-2 -kerning first=1074 second=83 amount=-1 -kerning first=8361 second=363 amount=-1 -kerning first=923 second=949 amount=-1 -kerning first=931 second=257 amount=-1 -kerning first=102 second=229 amount=-1 -kerning first=245 second=119 amount=-1 -kerning first=365 second=271 amount=-1 -kerning first=368 second=44 amount=-1 -kerning first=119 second=1195 amount=-1 -kerning first=262 second=1026 amount=-1 -kerning first=34 second=1257 amount=-1 -kerning first=1034 second=1090 amount=-2 -kerning first=1037 second=334 amount=-2 -kerning first=8250 second=376 amount=-3 -kerning first=203 second=230 amount=-1 -kerning first=318 second=360 amount=-2 -kerning first=901 second=45 amount=-2 -kerning first=80 second=923 amount=-4 -kerning first=223 second=372 amount=-5 -kerning first=100 second=1262 amount=-2 -kerning first=103 second=1240 amount=-2 -kerning first=1187 second=335 amount=-1 -kerning first=947 second=97 amount=-1 -kerning first=369 second=219 amount=-2 -kerning first=960 second=1108 amount=-1 -kerning first=963 second=347 amount=-1 -kerning first=123 second=1069 amount=-1 -kerning first=162 second=81 amount=-2 -kerning first=271 second=231 amount=-1 -kerning first=184 second=243 amount=-1 -kerning first=296 second=373 amount=-4 -kerning first=8240 second=8250 amount=-1 -kerning first=201 second=1263 amount=-1 -kerning first=8372 second=248 amount=-1 -kerning first=902 second=220 amount=-2 -kerning first=936 second=1176 amount=-1 -kerning first=1202 second=275 amount=-1 -kerning first=250 second=244 amount=-1 -kerning first=967 second=289 amount=-1 -kerning first=42 second=962 amount=-1 -kerning first=8216 second=99 amount=-1 -kerning first=1049 second=221 amount=-5 -kerning first=303 second=83 amount=-1 -kerning first=1081 second=363 amount=-1 -kerning first=903 second=375 amount=-1 -kerning first=1118 second=290 amount=-2 -kerning first=108 second=963 amount=-1 -kerning first=114 second=44 amount=-3 -kerning first=971 second=234 amount=-1 -kerning first=274 second=1090 amount=-3 -kerning first=8217 second=277 amount=-1 -kerning first=49 second=218 amount=-2 -kerning first=1051 second=376 amount=-5 -kerning first=189 second=346 amount=-1 -kerning first=66 second=1174 amount=-2 -kerning first=69 second=360 amount=-2 -kerning first=1083 second=1059 amount=-2 -kerning first=215 second=45 amount=-2 -kerning first=209 second=964 amount=-3 -kerning first=901 second=8249 amount=-3 -kerning first=912 second=85 amount=-2 -kerning first=92 second=287 amount=-1 -kerning first=1170 second=235 amount=-1 -kerning first=358 second=97 amount=-1 -kerning first=252 second=1108 amount=-1 -kerning first=255 second=347 amount=-1 -kerning first=168 second=361 amount=-1 -kerning first=278 second=965 amount=-1 -kerning first=50 second=373 amount=-4 -kerning first=1048 second=8250 amount=-1 -kerning first=190 second=1028 amount=-2 -kerning first=193 second=288 amount=-2 -kerning first=1096 second=248 amount=-1 -kerning first=910 second=952 amount=-2 -kerning first=96 second=232 amount=-1 -kerning first=236 second=362 amount=-2 -kerning first=356 second=966 amount=-3 -kerning first=1263 second=87 amount=-5 -kerning first=1027 second=337 amount=-1 -kerning first=176 second=71 amount=-2 -kerning first=287 second=221 amount=-5 -kerning first=48 second=8230 amount=-1 -kerning first=57 second=83 amount=-1 -kerning first=197 second=233 amount=-1 -kerning first=306 second=1177 amount=-1 -kerning first=77 second=245 amount=-1 -kerning first=338 second=290 amount=-2 -kerning first=926 second=210 amount=-2 -kerning first=1184 second=100 amount=-2 -kerning first=955 second=352 amount=-1 -kerning first=123 second=84 amount=-5 -kerning first=1298 second=262 amount=-2 -kerning first=35 second=334 amount=-2 -kerning first=1035 second=277 amount=-1 -kerning first=177 second=246 amount=-1 -kerning first=288 second=376 amount=-2 -kerning first=8225 second=1079 amount=-1 -kerning first=8260 second=89 amount=-5 -kerning first=1073 second=211 amount=-2 -kerning first=313 second=1059 amount=-1 -kerning first=8363 second=251 amount=-1 -kerning first=215 second=8249 amount=-3 -kerning first=928 second=365 amount=-1 -kerning first=124 second=259 amount=-1 -kerning first=160 second=34 amount=-3 -kerning first=36 second=965 amount=-1 -kerning first=1039 second=224 amount=-1 -kerning first=1070 second=1184 amount=-2 -kerning first=1074 second=366 amount=-2 -kerning first=202 second=336 amount=-2 -kerning first=322 second=248 amount=-1 -kerning first=900 second=171 amount=-3 -kerning first=923 second=8217 amount=-3 -kerning first=105 second=275 amount=-1 -kerning first=102 second=966 amount=-1 -kerning first=371 second=87 amount=-5 -kerning first=274 second=99 amount=-1 -kerning first=43 second=221 amount=-5 -kerning first=186 second=111 amount=-1 -kerning first=183 second=351 amount=-1 -kerning first=298 second=261 amount=-1 -kerning first=63 second=363 amount=-1 -kerning first=60 second=1177 amount=-1 -kerning first=8370 second=356 amount=-5 -kerning first=8377 second=116 amount=-1 +kerning first=84 second=1116 amount=-2 +kerning first=84 second=1117 amount=-2 +kerning first=84 second=1118 amount=-2 +kerning first=84 second=1119 amount=-2 +kerning first=84 second=1169 amount=-2 +kerning first=84 second=1175 amount=-1 +kerning first=84 second=1177 amount=-2 +kerning first=84 second=1179 amount=-2 +kerning first=84 second=1187 amount=-2 +kerning first=84 second=1194 amount=-1 +kerning first=84 second=1195 amount=-3 +kerning first=84 second=1199 amount=-2 +kerning first=84 second=1203 amount=-1 +kerning first=84 second=1220 amount=-2 +kerning first=84 second=1224 amount=-2 +kerning first=84 second=1240 amount=-1 +kerning first=84 second=1241 amount=-3 +kerning first=84 second=1256 amount=-1 +kerning first=84 second=1257 amount=-3 +kerning first=84 second=1263 amount=-2 +kerning first=84 second=1298 amount=-4 +kerning first=84 second=8211 amount=-4 +kerning first=84 second=8212 amount=-4 +kerning first=84 second=8218 amount=-3 +kerning first=84 second=8222 amount=-3 +kerning first=84 second=8230 amount=-3 +kerning first=84 second=8249 amount=-3 +kerning first=84 second=8250 amount=-1 +kerning first=85 second=44 amount=-1 +kerning first=85 second=46 amount=-1 +kerning first=85 second=65 amount=-2 +kerning first=85 second=193 amount=-2 +kerning first=85 second=194 amount=-2 +kerning first=85 second=196 amount=-2 +kerning first=85 second=197 amount=-2 +kerning first=85 second=198 amount=-2 +kerning first=85 second=256 amount=-2 +kerning first=85 second=258 amount=-2 +kerning first=85 second=260 amount=-2 +kerning first=85 second=913 amount=-2 +kerning first=85 second=916 amount=-2 +kerning first=85 second=923 amount=-2 +kerning first=85 second=1033 amount=-1 +kerning first=85 second=1040 amount=-2 +kerning first=85 second=1044 amount=-1 +kerning first=85 second=1051 amount=-1 +kerning first=85 second=1298 amount=-1 +kerning first=85 second=8218 amount=-1 +kerning first=85 second=8222 amount=-1 +kerning first=85 second=8230 amount=-1 +kerning first=86 second=38 amount=-1 +kerning first=86 second=44 amount=-4 +kerning first=86 second=45 amount=-2 +kerning first=86 second=46 amount=-4 +kerning first=86 second=47 amount=-4 +kerning first=86 second=110 amount=-2 +kerning first=86 second=63 amount=-1 +kerning first=86 second=65 amount=-6 +kerning first=86 second=67 amount=-2 +kerning first=86 second=114 amount=-2 +kerning first=86 second=71 amount=-2 +kerning first=86 second=74 amount=-4 +kerning first=86 second=79 amount=-2 +kerning first=86 second=81 amount=-2 +kerning first=86 second=83 amount=-1 +kerning first=86 second=97 amount=-3 +kerning first=86 second=99 amount=-3 +kerning first=86 second=100 amount=-3 +kerning first=86 second=101 amount=-3 +kerning first=86 second=102 amount=-1 +kerning first=86 second=103 amount=-3 +kerning first=86 second=109 amount=-2 +kerning first=86 second=111 amount=-3 +kerning first=86 second=112 amount=-2 +kerning first=86 second=113 amount=-3 +kerning first=86 second=115 amount=-3 +kerning first=86 second=117 amount=-2 +kerning first=86 second=118 amount=-1 +kerning first=86 second=119 amount=-1 +kerning first=86 second=120 amount=-2 +kerning first=86 second=121 amount=-2 +kerning first=86 second=122 amount=-2 +kerning first=86 second=171 amount=-3 +kerning first=86 second=173 amount=-2 +kerning first=86 second=187 amount=-2 +kerning first=86 second=193 amount=-6 +kerning first=86 second=194 amount=-6 +kerning first=86 second=196 amount=-6 +kerning first=86 second=197 amount=-6 +kerning first=86 second=198 amount=-6 +kerning first=86 second=199 amount=-2 +kerning first=86 second=210 amount=-2 +kerning first=86 second=211 amount=-2 +kerning first=86 second=212 amount=-2 +kerning first=86 second=213 amount=-2 +kerning first=86 second=214 amount=-2 +kerning first=86 second=216 amount=-2 +kerning first=86 second=224 amount=-3 +kerning first=86 second=225 amount=-3 +kerning first=86 second=226 amount=-3 +kerning first=86 second=227 amount=-3 +kerning first=86 second=228 amount=-3 +kerning first=86 second=229 amount=-3 +kerning first=86 second=230 amount=-3 +kerning first=86 second=231 amount=-3 +kerning first=86 second=232 amount=-3 +kerning first=86 second=233 amount=-3 +kerning first=86 second=234 amount=-3 +kerning first=86 second=235 amount=-3 +kerning first=86 second=240 amount=-3 +kerning first=86 second=241 amount=-2 +kerning first=86 second=242 amount=-3 +kerning first=86 second=243 amount=-3 +kerning first=86 second=244 amount=-3 +kerning first=86 second=245 amount=-3 +kerning first=86 second=246 amount=-3 +kerning first=86 second=248 amount=-3 +kerning first=86 second=249 amount=-2 +kerning first=86 second=250 amount=-2 +kerning first=86 second=251 amount=-2 +kerning first=86 second=252 amount=-2 +kerning first=86 second=253 amount=-2 +kerning first=86 second=256 amount=-6 +kerning first=86 second=257 amount=-3 +kerning first=86 second=258 amount=-6 +kerning first=86 second=259 amount=-3 +kerning first=86 second=260 amount=-6 +kerning first=86 second=261 amount=-3 +kerning first=86 second=262 amount=-2 +kerning first=86 second=263 amount=-3 +kerning first=86 second=266 amount=-2 +kerning first=86 second=267 amount=-3 +kerning first=86 second=268 amount=-2 +kerning first=86 second=269 amount=-3 +kerning first=86 second=271 amount=-3 +kerning first=86 second=273 amount=-3 +kerning first=86 second=275 amount=-3 +kerning first=86 second=277 amount=-3 +kerning first=86 second=279 amount=-3 +kerning first=86 second=281 amount=-3 +kerning first=86 second=283 amount=-3 +kerning first=86 second=286 amount=-2 +kerning first=86 second=287 amount=-3 +kerning first=86 second=288 amount=-2 +kerning first=86 second=289 amount=-3 kerning first=86 second=290 amount=-2 -kerning first=249 second=352 amount=-1 -kerning first=372 second=262 amount=-2 -kerning first=162 second=364 amount=-2 -kerning first=271 second=968 amount=-1 -kerning first=44 second=376 amount=-4 -kerning first=184 second=1035 amount=-5 -kerning first=302 second=211 amount=-2 -kerning first=61 second=8212 amount=-2 -kerning first=64 second=1059 amount=-2 -kerning first=1084 second=251 amount=-1 -kerning first=327 second=353 amount=-1 -kerning first=905 second=263 amount=-1 -kerning first=910 second=38 amount=-2 -kerning first=90 second=235 amount=-1 -kerning first=376 second=212 amount=-3 -kerning first=160 second=8216 amount=-3 -kerning first=42 second=8250 amount=-1 -kerning first=1062 second=266 amount=-1 -kerning first=1065 second=39 amount=-2 -kerning first=300 second=1184 amount=-5 -kerning first=303 second=366 amount=-2 -kerning first=214 second=171 amount=-3 -kerning first=335 second=63 amount=-2 -kerning first=228 second=8217 amount=-1 -kerning first=357 second=225 amount=-1 -kerning first=952 second=115 amount=-1 -kerning first=111 second=1076 amount=-1 -kerning first=117 second=87 amount=-5 -kerning first=1223 second=267 amount=-1 -kerning first=374 second=1185 amount=-2 -kerning first=170 second=249 amount=-1 -kerning first=167 second=940 amount=-1 -kerning first=49 second=953 amount=-1 -kerning first=52 second=261 amount=-1 -kerning first=1095 second=356 amount=-5 -kerning first=912 second=368 amount=-2 -kerning first=95 second=338 amount=-2 -kerning first=1170 second=972 amount=-1 -kerning first=1175 second=281 amount=-1 -kerning first=238 second=250 amount=-1 -kerning first=258 second=1241 amount=-1 -kerning first=375 second=8220 amount=-3 -kerning first=175 second=199 amount=-2 -kerning first=289 second=89 amount=-5 -kerning first=8226 second=269 amount=-1 -kerning first=56 second=211 amount=-2 -kerning first=1067 second=369 amount=-1 -kerning first=196 second=339 amount=-1 -kerning first=193 second=1098 amount=-3 -kerning first=314 second=251 amount=-1 -kerning first=216 second=955 amount=-2 -kerning first=915 second=1066 amount=-5 -kerning first=958 second=240 amount=-1 -kerning first=1263 second=370 amount=-2 -kerning first=37 second=224 amount=-1 -kerning first=1027 second=1256 amount=-2 -kerning first=176 second=354 amount=-5 -kerning first=172 second=1118 amount=-1 -kerning first=295 second=39 amount=-1 -kerning first=54 second=1184 amount=-5 -kerning first=57 second=366 amount=-2 -kerning first=200 second=279 amount=-1 -kerning first=197 second=970 amount=-1 -kerning first=8365 second=119 amount=-4 -kerning first=223 second=213 amount=-2 -kerning first=934 second=253 amount=-1 -kerning first=103 second=225 amount=-1 -kerning first=123 second=367 amount=-1 -kerning first=177 second=1038 amount=-2 -kerning first=296 second=214 amount=-2 -kerning first=8240 second=947 amount=-4 -kerning first=8260 second=372 amount=-5 -kerning first=55 second=8218 amount=-4 -kerning first=1073 second=945 amount=-1 -kerning first=204 second=226 amount=-1 -kerning first=321 second=356 amount=-5 -kerning first=345 second=281 amount=-1 -kerning first=121 second=8220 amount=-3 -kerning first=273 second=227 amount=-1 -kerning first=1046 second=269 amount=-2 -kerning first=45 second=89 amount=-4 -kerning first=297 second=369 amount=-1 -kerning first=65 second=251 amount=-1 -kerning first=903 second=216 amount=-2 -kerning first=1118 second=106 amount=1 -kerning first=945 second=118 amount=-2 -kerning first=251 second=240 amount=-1 -kerning first=371 second=370 amount=-2 -kerning first=968 second=283 amount=-1 -kerning first=161 second=943 amount=-1 -kerning first=164 second=252 amount=-1 -kerning first=49 second=39 amount=-3 -kerning first=46 second=266 amount=-1 -kerning first=1051 second=217 amount=-2 -kerning first=304 second=79 amount=-2 -kerning first=1083 second=359 amount=-1 -kerning first=1087 second=119 amount=-4 -kerning first=901 second=1195 amount=-1 -kerning first=904 second=371 amount=-1 +kerning first=86 second=291 amount=-3 +kerning first=86 second=324 amount=-2 +kerning first=86 second=326 amount=-2 +kerning first=86 second=328 amount=-2 +kerning first=86 second=331 amount=-2 +kerning first=86 second=332 amount=-2 +kerning first=86 second=333 amount=-3 +kerning first=86 second=334 amount=-2 +kerning first=86 second=335 amount=-3 +kerning first=86 second=336 amount=-2 +kerning first=86 second=337 amount=-3 +kerning first=86 second=338 amount=-2 +kerning first=86 second=339 amount=-3 +kerning first=86 second=341 amount=-2 +kerning first=86 second=343 amount=-2 +kerning first=86 second=345 amount=-2 +kerning first=86 second=346 amount=-1 +kerning first=86 second=347 amount=-3 +kerning first=86 second=350 amount=-1 +kerning first=86 second=351 amount=-3 +kerning first=86 second=352 amount=-1 +kerning first=86 second=353 amount=-3 +kerning first=86 second=361 amount=-2 +kerning first=86 second=363 amount=-2 +kerning first=86 second=365 amount=-2 +kerning first=86 second=367 amount=-2 +kerning first=86 second=369 amount=-2 +kerning first=86 second=371 amount=-2 +kerning first=86 second=373 amount=-1 +kerning first=86 second=375 amount=-2 +kerning first=86 second=378 amount=-2 +kerning first=86 second=380 amount=-2 +kerning first=86 second=382 amount=-2 +kerning first=86 second=913 amount=-6 +kerning first=86 second=916 amount=-6 +kerning first=86 second=920 amount=-2 +kerning first=86 second=923 amount=-6 +kerning first=86 second=927 amount=-2 +kerning first=86 second=940 amount=-3 +kerning first=86 second=941 amount=-3 +kerning first=86 second=942 amount=-2 +kerning first=86 second=945 amount=-3 +kerning first=86 second=947 amount=-1 +kerning first=86 second=949 amount=-3 +kerning first=86 second=951 amount=-2 +kerning first=86 second=954 amount=-2 +kerning first=86 second=957 amount=-1 +kerning first=86 second=959 amount=-3 +kerning first=86 second=962 amount=-3 +kerning first=86 second=963 amount=-3 +kerning first=86 second=965 amount=-2 +kerning first=86 second=966 amount=-3 +kerning first=86 second=968 amount=-2 +kerning first=86 second=972 amount=-3 +kerning first=86 second=973 amount=-2 +kerning first=86 second=1028 amount=-2 +kerning first=86 second=1029 amount=-1 +kerning first=86 second=1032 amount=-4 +kerning first=86 second=1040 amount=-6 +kerning first=86 second=1054 amount=-2 +kerning first=86 second=1057 amount=-2 +kerning first=86 second=1072 amount=-3 +kerning first=86 second=1074 amount=-2 +kerning first=86 second=1075 amount=-2 +kerning first=86 second=1077 amount=-3 +kerning first=86 second=1078 amount=-2 +kerning first=86 second=1079 amount=-2 +kerning first=86 second=1080 amount=-2 +kerning first=86 second=1081 amount=-2 +kerning first=86 second=1082 amount=-2 +kerning first=86 second=1084 amount=-2 +kerning first=86 second=1085 amount=-2 +kerning first=86 second=1086 amount=-3 +kerning first=86 second=1087 amount=-2 +kerning first=86 second=1088 amount=-2 +kerning first=86 second=1089 amount=-3 +kerning first=86 second=1091 amount=-2 +kerning first=86 second=1092 amount=-3 +kerning first=86 second=1093 amount=-2 +kerning first=86 second=1094 amount=-2 +kerning first=86 second=1096 amount=-2 +kerning first=86 second=1097 amount=-2 +kerning first=86 second=1099 amount=-2 kerning first=86 second=1100 amount=-2 -kerning first=89 second=341 amount=-3 -kerning first=92 second=103 amount=-1 -kerning first=1119 second=286 amount=-2 -kerning first=1219 second=218 amount=-2 -kerning first=275 second=1083 amount=-1 -kerning first=8222 second=45 amount=-1 -kerning first=50 second=214 amount=-2 -kerning first=1048 second=947 amount=-4 -kerning first=302 second=945 amount=-1 -kerning first=70 second=356 amount=-5 -kerning first=73 second=116 amount=-1 -kerning first=8378 second=1108 amount=-1 -kerning first=905 second=1069 amount=-1 -kerning first=915 second=81 amount=-2 -kerning first=93 second=281 amount=-1 -kerning first=90 second=972 amount=-1 -kerning first=1171 second=231 amount=-1 -kerning first=356 second=331 amount=-2 -kerning first=951 second=243 amount=-1 -kerning first=1220 second=373 amount=-4 -kerning first=169 second=357 amount=-1 -kerning first=172 second=117 amount=-1 -kerning first=282 second=269 amount=-1 -kerning first=8224 second=220 amount=-2 -kerning first=51 second=369 amount=-1 -kerning first=191 second=973 amount=-1 -kerning first=1097 second=244 amount=-1 -kerning first=338 second=106 amount=1 -kerning first=240 second=118 amount=-4 -kerning first=357 second=962 amount=-1 -kerning first=117 second=370 amount=-2 -kerning first=1298 second=83 amount=-1 -kerning first=260 second=283 amount=-1 -kerning first=177 second=67 amount=-2 -kerning first=8225 second=375 amount=-1 -kerning first=58 second=79 amount=-2 -kerning first=198 second=229 amount=-1 -kerning first=316 second=119 amount=-4 -kerning first=75 second=920 amount=-3 -kerning first=313 second=359 amount=-1 -kerning first=215 second=1195 amount=-1 -kerning first=336 second=1026 amount=-2 -kerning first=95 second=1257 amount=-1 -kerning first=1178 second=334 amount=-1 -kerning first=1175 second=1090 amount=-2 -kerning first=956 second=346 amount=-1 -kerning first=1039 second=45 amount=-2 -kerning first=1036 second=273 amount=-2 -kerning first=178 second=242 amount=-1 -kerning first=1033 second=964 amount=-2 -kerning first=289 second=372 amount=-5 -kerning first=56 second=945 amount=-1 -kerning first=196 second=1262 amount=-2 -kerning first=1099 second=1108 amount=-1 -kerning first=343 second=231 amount=-1 -kerning first=931 second=361 amount=-1 -kerning first=365 second=373 amount=-4 -kerning first=958 second=1028 amount=-2 -kerning first=962 second=288 amount=-2 -kerning first=40 second=269 amount=-1 -kerning first=1041 second=220 amount=-2 -kerning first=1071 second=1176 amount=-1 -kerning first=203 second=332 amount=-2 -kerning first=323 second=244 amount=-1 -kerning first=86 second=106 amount=1 -kerning first=103 second=962 amount=-1 -kerning first=372 second=83 amount=-1 -kerning first=271 second=333 amount=-1 -kerning first=44 second=217 amount=-1 -kerning first=296 second=949 amount=-1 -kerning first=299 second=257 amount=-1 -kerning first=64 second=359 amount=-1 -kerning first=1073 second=8211 amount=-2 -kerning first=204 second=963 amount=-1 -kerning first=207 second=271 amount=-1 -kerning first=210 second=44 amount=-1 -kerning first=8372 second=352 amount=-1 -kerning first=905 second=84 amount=-5 -kerning first=87 second=286 amount=-2 -kerning first=1117 second=234 amount=-1 -kerning first=944 second=246 amount=-1 -kerning first=1202 second=376 amount=-2 -kerning first=250 second=346 amount=-1 -kerning first=163 second=360 amount=-2 -kerning first=273 second=964 amount=-3 -kerning first=276 second=273 amount=-1 -kerning first=42 second=947 amount=-4 -kerning first=45 second=372 amount=-2 -kerning first=1039 second=8249 amount=-3 -kerning first=1062 second=85 amount=-1 -kerning first=188 second=287 amount=-1 -kerning first=325 second=1108 amount=-1 -kerning first=906 second=259 amount=-1 -kerning first=91 second=231 amount=-1 -kerning first=111 second=373 amount=-1 -kerning first=251 second=1028 amount=-2 -kerning first=254 second=288 amount=-2 -kerning first=971 second=336 amount=-2 -kerning first=280 second=220 amount=-2 -kerning first=192 second=232 amount=-1 -kerning first=304 second=362 amount=-2 -kerning first=301 second=1176 amount=-1 -kerning first=72 second=244 amount=-1 -kerning first=212 second=374 amount=-3 -kerning first=89 second=1298 amount=-5 -kerning first=1170 second=337 amount=-1 -kerning first=1175 second=99 amount=-1 -kerning first=238 second=71 amount=-2 -kerning first=358 second=221 amount=-5 -kerning first=950 second=351 amount=-1 -kerning first=1219 second=953 amount=-1 -kerning first=1224 second=261 amount=-1 -kerning first=258 second=233 amount=-1 -kerning first=375 second=1177 amount=-1 -kerning first=972 second=967 amount=-2 -kerning first=50 second=949 amount=-1 -kerning first=53 second=257 amount=-1 -kerning first=1067 second=210 amount=-2 -kerning first=302 second=8211 amount=-2 -kerning first=1096 second=352 amount=-1 -kerning first=915 second=364 amount=-2 -kerning first=93 second=1090 amount=-3 -kerning first=96 second=334 amount=-2 -kerning first=1171 second=968 amount=-1 -kerning first=1176 second=277 amount=-1 -kerning first=239 second=246 amount=-1 -kerning first=951 second=1035 amount=-5 -kerning first=954 second=291 amount=-2 -kerning first=1263 second=211 amount=-2 -kerning first=376 second=8212 amount=-4 -kerning first=34 second=273 amount=-1 -kerning first=37 second=45 amount=-2 -kerning first=197 second=335 amount=-1 -kerning first=200 second=97 amount=-1 -kerning first=74 second=1108 amount=-1 -kerning first=77 second=347 amount=-1 -kerning first=223 second=34 amount=-3 -kerning first=1184 second=224 amount=-1 -kerning first=357 second=8250 amount=-1 -kerning first=1298 second=366 amount=-2 -kerning first=38 second=220 amount=-2 -kerning first=177 second=350 amount=-1 -kerning first=8260 second=213 amount=-2 -kerning first=55 second=1176 amount=-1 -kerning first=58 second=362 amount=-2 -kerning first=1066 second=8217 amount=-2 -kerning first=198 second=966 amount=-1 -kerning first=201 second=275 amount=-1 -kerning first=8363 second=355 amount=-1 -kerning first=8366 second=115 amount=-1 -kerning first=345 second=99 amount=-1 -kerning first=936 second=249 amount=-1 -kerning first=928 second=940 amount=-1 -kerning first=247 second=111 amount=-1 -kerning first=367 second=261 amount=-1 -kerning first=121 second=1177 amount=-1 -kerning first=124 second=363 amount=-1 -kerning first=1262 second=8218 amount=-1 -kerning first=182 second=290 amount=-2 -kerning first=297 second=210 amount=-2 -kerning first=56 second=8211 amount=-2 -kerning first=1074 second=941 amount=-1 -kerning first=322 second=352 amount=-1 -kerning first=900 second=262 amount=-2 -kerning first=1107 second=1241 amount=-1 -kerning first=942 second=199 amount=-2 -kerning first=105 second=376 amount=-5 -kerning first=371 second=211 amount=-2 -kerning first=962 second=1098 amount=-3 -kerning first=965 second=339 amount=-1 -kerning first=125 second=1059 amount=-2 -kerning first=968 second=101 amount=-1 -kerning first=37 second=8249 amount=-3 -kerning first=46 second=85 amount=-1 -kerning first=186 second=235 amount=-1 -kerning first=298 second=365 amount=-1 -kerning first=8377 second=240 amount=-1 -kerning first=904 second=212 amount=-2 -kerning first=223 second=8216 amount=-3 -kerning first=103 second=8250 amount=-1 -kerning first=1219 second=39 amount=-3 -kerning first=1206 second=266 amount=-1 -kerning first=369 second=1184 amount=-5 -kerning first=165 second=248 amount=-1 -kerning first=275 second=378 amount=-1 -kerning first=278 second=171 amount=-3 -kerning first=47 second=260 amount=-5 -kerning first=296 second=8217 amount=-3 -kerning first=70 second=197 amount=-4 -kerning first=1084 second=355 amount=-1 -kerning first=213 second=87 amount=-2 -kerning first=905 second=367 amount=-1 -kerning first=902 second=1185 amount=-3 -kerning first=87 second=1096 amount=-2 -kerning first=93 second=99 amount=-1 -kerning first=90 second=337 amount=-1 -kerning first=944 second=1038 amount=-2 -kerning first=113 second=261 amount=-1 -kerning first=1220 second=214 amount=-2 -kerning first=370 second=8218 amount=-1 -kerning first=973 second=226 amount=-1 -kerning first=51 second=210 amount=-2 -kerning first=1062 second=368 amount=-1 -kerning first=191 second=338 amount=-2 -kerning first=194 second=100 amount=-1 -kerning first=306 second=250 amount=-1 -kerning first=303 second=941 amount=-1 -kerning first=214 second=262 amount=-2 -kerning first=903 second=8220 amount=-3 -kerning first=91 second=968 amount=-1 -kerning first=94 second=277 amount=-1 -kerning first=237 second=199 amount=-2 -kerning first=354 second=1079 amount=-2 -kerning first=117 second=211 amount=-2 -kerning first=1223 second=369 amount=-1 -kerning first=254 second=1098 amount=-3 -kerning first=260 second=101 amount=-1 -kerning first=174 second=113 amount=-1 -kerning first=170 second=353 amount=-1 -kerning first=8225 second=216 amount=-2 -kerning first=52 second=365 amount=-1 -kerning first=1051 second=8221 amount=-3 -kerning first=1063 second=1066 amount=-5 -kerning first=339 second=102 amount=-1 -kerning first=912 second=943 amount=-1 -kerning first=1170 second=1256 amount=-2 -kerning first=238 second=354 amount=-5 -kerning first=361 second=266 amount=-2 -kerning first=1299 second=79 amount=-2 -kerning first=258 second=970 amount=-1 -kerning first=36 second=171 amount=-3 -kerning first=289 second=213 amount=-2 -kerning first=8226 second=371 amount=-1 -kerning first=50 second=8217 amount=-3 -kerning first=317 second=115 amount=-1 -kerning first=314 second=355 amount=-1 -kerning first=239 second=1038 amount=-2 -kerning first=365 second=214 amount=-2 -kerning first=116 second=8218 amount=-1 -kerning first=1263 second=945 amount=-1 -kerning first=1037 second=268 amount=-2 -kerning first=8230 second=1069 amount=-1 -kerning first=60 second=250 amount=-1 -kerning first=57 second=941 amount=-1 -kerning first=8365 second=243 amount=-1 -kerning first=80 second=1241 amount=-1 -kerning first=934 second=357 amount=-1 -kerning first=100 second=1079 amount=-1 -kerning first=1187 second=269 amount=-1 -kerning first=960 second=973 amount=-1 -kerning first=126 second=251 amount=-1 -kerning first=268 second=381 amount=-1 -kerning first=41 second=263 amount=-1 -kerning first=1044 second=216 amount=-1 -kerning first=291 second=1066 amount=-5 -kerning first=1080 second=118 amount=-4 +kerning first=86 second=1101 amount=-2 +kerning first=86 second=1102 amount=-2 +kerning first=86 second=1104 amount=-3 +kerning first=86 second=1105 amount=-3 +kerning first=86 second=1107 amount=-2 +kerning first=86 second=1108 amount=-3 +kerning first=86 second=1109 amount=-3 +kerning first=86 second=1114 amount=-2 +kerning first=86 second=1116 amount=-2 +kerning first=86 second=1117 amount=-2 +kerning first=86 second=1118 amount=-2 +kerning first=86 second=1119 amount=-2 +kerning first=86 second=1169 amount=-2 +kerning first=86 second=1175 amount=-2 +kerning first=86 second=1177 amount=-2 +kerning first=86 second=1179 amount=-2 +kerning first=86 second=1187 amount=-2 +kerning first=86 second=1194 amount=-2 +kerning first=86 second=1195 amount=-3 +kerning first=86 second=1199 amount=-1 +kerning first=86 second=1203 amount=-2 +kerning first=86 second=1220 amount=-2 +kerning first=86 second=1224 amount=-2 +kerning first=86 second=1240 amount=-2 +kerning first=86 second=1241 amount=-3 +kerning first=86 second=1256 amount=-2 +kerning first=86 second=1257 amount=-3 +kerning first=86 second=1263 amount=-2 +kerning first=86 second=8211 amount=-2 +kerning first=86 second=8212 amount=-2 +kerning first=86 second=8218 amount=-4 +kerning first=86 second=8222 amount=-4 +kerning first=86 second=8230 amount=-4 +kerning first=86 second=8249 amount=-3 +kerning first=86 second=8250 amount=-2 +kerning first=87 second=38 amount=-1 +kerning first=87 second=44 amount=-3 +kerning first=87 second=45 amount=-2 +kerning first=87 second=46 amount=-3 +kerning first=87 second=47 amount=-3 +kerning first=87 second=110 amount=-2 +kerning first=87 second=63 amount=-1 +kerning first=87 second=65 amount=-5 +kerning first=87 second=67 amount=-2 +kerning first=87 second=114 amount=-2 +kerning first=87 second=71 amount=-2 +kerning first=87 second=74 amount=-3 +kerning first=87 second=79 amount=-2 +kerning first=87 second=81 amount=-2 +kerning first=87 second=83 amount=-1 +kerning first=87 second=97 amount=-2 +kerning first=87 second=99 amount=-3 +kerning first=87 second=100 amount=-3 +kerning first=87 second=101 amount=-3 kerning first=87 second=102 amount=-1 -kerning first=944 second=67 amount=-2 -kerning first=110 second=39 amount=-1 -kerning first=1202 second=217 amount=-1 -kerning first=364 second=8222 amount=-1 -kerning first=967 second=229 amount=-1 -kerning first=8216 second=44 amount=-1 -kerning first=1039 second=1195 amount=-1 -kerning first=1046 second=371 amount=-1 -kerning first=188 second=103 amount=-1 -kerning first=300 second=253 amount=-1 -kerning first=65 second=355 amount=-1 -kerning first=1118 second=230 amount=-1 -kerning first=1195 second=947 amount=-1 -kerning first=371 second=945 amount=-1 -kerning first=968 second=1240 amount=-2 -kerning first=965 second=1262 amount=-2 -kerning first=164 second=356 amount=-5 -kerning first=167 second=116 amount=-1 -kerning first=46 second=368 amount=-1 -kerning first=1063 second=81 amount=-2 -kerning first=186 second=972 amount=-1 -kerning first=189 second=281 amount=-1 -kerning first=1087 second=243 amount=-1 -kerning first=8377 second=1028 amount=-2 -kerning first=92 second=227 amount=-1 -kerning first=252 second=973 amount=-1 -kerning first=8212 second=1203 amount=-2 -kerning first=8218 second=374 amount=-4 -kerning first=47 second=1066 amount=-5 -kerning first=44 second=8221 amount=-1 -kerning first=193 second=228 amount=-1 -kerning first=310 second=118 amount=-3 -kerning first=70 second=916 amount=-4 -kerning first=73 second=240 amount=-1 -kerning first=90 second=1256 amount=-1 -kerning first=1171 second=333 amount=-1 -kerning first=239 second=67 amount=-2 -kerning first=1220 second=949 amount=-1 -kerning first=973 second=963 amount=-1 -kerning first=1027 second=271 amount=-1 -kerning first=169 second=920 amount=-2 -kerning first=282 second=371 amount=-1 -kerning first=8230 second=84 amount=-5 -kerning first=54 second=253 amount=-1 -kerning first=191 second=1257 amount=-1 -kerning first=338 second=230 amount=-1 -kerning first=916 second=360 amount=-2 -kerning first=1174 second=964 amount=-2 -kerning first=1184 second=45 amount=-4 -kerning first=240 second=242 amount=-1 -kerning first=357 second=947 amount=-4 -kerning first=955 second=287 amount=-1 -kerning first=117 second=945 amount=-1 -kerning first=260 second=1240 amount=-2 -kerning first=35 second=268 amount=-2 -kerning first=1035 second=219 amount=-2 -kerning first=291 second=81 amount=-2 -kerning first=8260 second=34 amount=-3 -kerning first=8240 second=259 amount=-1 -kerning first=1073 second=121 amount=-1 -kerning first=316 second=243 amount=-1 -kerning first=1299 second=362 amount=-2 -kerning first=182 second=106 amount=1 -kerning first=62 second=118 amount=-4 -kerning first=8369 second=111 amount=-1 -kerning first=8364 second=351 amount=-1 -kerning first=900 second=83 amount=-1 -kerning first=1107 second=233 amount=-1 -kerning first=343 second=333 amount=-1 -kerning first=105 second=217 amount=-2 -kerning first=365 second=949 amount=-1 -kerning first=125 second=359 amount=-1 -kerning first=1263 second=8211 amount=-2 -kerning first=161 second=119 amount=-4 -kerning first=37 second=1195 amount=-1 -kerning first=40 second=371 amount=-1 -kerning first=179 second=1026 amount=-5 -kerning first=183 second=286 amount=-2 -kerning first=1047 second=84 amount=-1 -kerning first=206 second=218 amount=-2 -kerning first=323 second=346 amount=-1 -kerning first=8365 second=1035 amount=-5 -kerning first=8370 second=291 amount=-1 -kerning first=86 second=230 amount=-3 -kerning first=103 second=947 amount=-4 -kerning first=1184 second=8249 amount=-3 -kerning first=1206 second=85 amount=-1 -kerning first=249 second=287 amount=-1 -kerning first=41 second=1069 amount=-1 -kerning first=47 second=81 amount=-1 -kerning first=1048 second=259 amount=-1 -kerning first=299 second=361 amount=-1 -kerning first=8260 second=8216 amount=-3 -kerning first=302 second=121 amount=-1 -kerning first=207 second=373 amount=-4 -kerning first=327 second=288 amount=-2 -kerning first=84 second=1263 amount=-2 -kerning first=1113 second=1095 amount=-1 -kerning first=1117 second=336 amount=-2 -kerning first=944 second=350 amount=-1 -kerning first=253 second=232 amount=-1 -kerning first=376 second=122 amount=-2 -kerning first=967 second=966 amount=-1 -kerning first=166 second=244 amount=-1 -kerning first=276 second=374 amount=-5 -kerning first=306 second=71 amount=-2 -kerning first=1085 second=351 amount=-1 -kerning first=208 second=1071 amount=-1 -kerning first=1094 second=111 amount=-1 -kerning first=214 second=83 amount=-1 -kerning first=903 second=1177 amount=-1 -kerning first=906 second=363 amount=-1 -kerning first=91 second=333 amount=-1 -kerning first=354 second=375 amount=-2 -kerning first=114 second=257 amount=-1 -kerning first=1223 second=210 amount=-2 -kerning first=371 second=8211 amount=-2 -kerning first=374 second=1051 amount=-5 -kerning first=1063 second=364 amount=-2 -kerning first=189 second=1090 amount=-3 -kerning first=192 second=334 amount=-2 -kerning first=72 second=346 amount=-1 -kerning first=1087 second=1035 amount=-5 -kerning first=1095 second=291 amount=-1 -kerning first=904 second=8212 amount=-2 -kerning first=92 second=964 amount=-3 -kerning first=95 second=273 amount=-1 -kerning first=361 second=85 amount=-2 -kerning first=1224 second=365 amount=-1 -kerning first=258 second=335 amount=-1 -kerning first=168 second=1108 amount=-1 -kerning first=289 second=34 amount=-3 -kerning first=8226 second=212 amount=-2 -kerning first=53 second=361 amount=-1 -kerning first=56 second=121 amount=-1 -kerning first=193 second=965 amount=-1 -kerning first=199 second=46 amount=-1 -kerning first=73 second=1028 amount=-2 -kerning first=76 second=288 amount=-1 -kerning first=923 second=248 amount=-1 -kerning first=239 second=350 amount=-1 -kerning first=362 second=260 amount=-2 -kerning first=1220 second=8217 amount=-3 -kerning first=1037 second=87 amount=-5 -kerning first=176 second=289 amount=-1 -kerning first=8224 second=1185 amount=-3 -kerning first=8230 second=367 amount=-1 -kerning first=60 second=71 amount=-2 -kerning first=1071 second=249 amount=-1 -kerning first=200 second=221 amount=-5 -kerning first=318 second=111 amount=-1 -kerning first=80 second=233 amount=-1 -kerning first=100 second=375 amount=-1 -kerning first=1177 second=1078 amount=-1 -kerning first=960 second=338 amount=-2 -kerning first=117 second=8211 amount=-2 -kerning first=963 second=100 amount=-1 -kerning first=1298 second=941 amount=-1 -kerning first=41 second=84 amount=-5 -kerning first=180 second=234 amount=-1 -kerning first=291 second=364 amount=-2 -kerning first=8225 second=8220 amount=-3 -kerning first=61 second=246 amount=-1 -kerning first=201 second=376 amount=-5 -kerning first=316 second=1035 amount=-5 -kerning first=321 second=291 amount=-1 -kerning first=1101 second=1098 amount=-1 -kerning first=936 second=353 amount=-1 -kerning first=247 second=235 amount=-1 -kerning first=367 second=365 amount=-1 -kerning first=42 second=259 amount=-1 -kerning first=1046 second=212 amount=-3 -kerning first=289 second=8216 amount=-3 -kerning first=1074 second=1118 amount=-1 -kerning first=208 second=86 amount=-2 -kerning first=900 second=366 amount=-2 -kerning first=365 second=8217 amount=-3 -kerning first=968 second=225 amount=-1 -kerning first=1041 second=1185 amount=-3 -kerning first=186 second=337 amount=-1 -kerning first=189 second=99 amount=-1 -kerning first=298 second=940 amount=-1 -kerning first=301 second=249 amount=-1 -kerning first=69 second=111 amount=-1 -kerning first=206 second=953 amount=-1 -kerning first=209 second=261 amount=-1 -kerning first=8370 second=1101 amount=-1 -kerning first=1119 second=226 amount=-1 -kerning first=347 second=1078 amount=-1 -kerning first=1206 second=368 amount=-1 -kerning first=252 second=338 amount=-2 -kerning first=255 second=100 amount=-1 -kerning first=375 second=250 amount=-1 -kerning first=372 second=941 amount=-3 -kerning first=165 second=352 amount=-1 -kerning first=278 second=262 amount=-2 -kerning first=47 second=364 amount=-2 -kerning first=1044 second=8220 amount=-2 -kerning first=190 second=277 amount=-1 -kerning first=305 second=199 amount=-2 -kerning first=70 second=291 amount=-1 -kerning first=67 second=1035 amount=-1 -kerning first=327 second=1098 amount=-3 -kerning first=8378 second=973 amount=-1 -kerning first=910 second=251 amount=-2 -kerning first=236 second=113 amount=-1 -kerning first=356 second=263 amount=-3 -kerning first=113 second=365 amount=-1 -kerning first=1202 second=8221 amount=-2 -kerning first=282 second=212 amount=-2 -kerning first=194 second=224 amount=-1 -kerning first=303 second=1118 amount=-1 -kerning first=306 second=354 amount=-5 -kerning first=211 second=1184 amount=-2 -kerning first=214 second=366 amount=-2 -kerning first=955 second=103 amount=-1 -kerning first=111 second=8217 amount=-1 -kerning first=260 second=225 amount=-1 -kerning first=35 second=87 amount=-5 -kerning first=280 second=1185 amount=-3 -kerning first=55 second=249 amount=-1 -kerning first=52 second=940 amount=-1 -kerning first=1095 second=1101 amount=-1 -kerning first=212 second=8218 amount=-1 -kerning first=920 second=356 amount=-2 -kerning first=928 second=116 amount=-1 -kerning first=1178 second=268 amount=-1 -kerning first=361 second=368 amount=-2 -kerning first=956 second=281 amount=-1 -kerning first=121 second=250 amount=-1 -kerning first=118 second=941 amount=-1 -kerning first=36 second=262 amount=-2 -kerning first=175 second=1241 amount=-1 -kerning first=178 second=187 amount=-1 -kerning first=281 second=8220 amount=-1 -kerning first=59 second=199 amount=-2 -kerning first=1074 second=117 amount=-1 -kerning first=196 second=1079 amount=-1 -kerning first=202 second=89 amount=-5 -kerning first=1099 second=973 amount=-1 -kerning first=99 second=955 amount=-1 -kerning first=102 second=263 amount=-1 -kerning first=1186 second=216 amount=-1 -kerning first=962 second=228 amount=-1 -kerning first=270 second=90 amount=-1 -kerning first=40 second=212 amount=-2 -kerning first=1037 second=370 amount=-2 -kerning first=60 second=354 amount=-5 -kerning first=57 second=1118 amount=-1 -kerning first=203 second=266 amount=-2 -kerning first=206 second=39 amount=-3 -kerning first=901 second=79 amount=-2 -kerning first=80 second=970 amount=-1 -kerning first=934 second=920 amount=-2 -kerning first=1184 second=1195 amount=-2 -kerning first=249 second=103 amount=-1 -kerning first=369 second=253 amount=-1 -kerning first=960 second=1257 amount=-1 -kerning first=126 second=355 amount=-1 -kerning first=162 second=115 amount=-1 -kerning first=271 second=267 amount=-1 -kerning first=41 second=367 amount=-1 -kerning first=38 second=1185 amount=-3 -kerning first=61 second=1038 amount=-2 -kerning first=1080 second=242 amount=-1 -kerning first=207 second=214 amount=-2 -kerning first=321 second=1101 amount=-1 -kerning first=8372 second=287 amount=-1 +kerning first=87 second=103 amount=-2 +kerning first=87 second=109 amount=-2 +kerning first=87 second=111 amount=-3 +kerning first=87 second=112 amount=-2 +kerning first=87 second=113 amount=-3 +kerning first=87 second=115 amount=-2 +kerning first=87 second=117 amount=-2 +kerning first=87 second=118 amount=-1 +kerning first=87 second=119 amount=-1 +kerning first=87 second=120 amount=-1 +kerning first=87 second=121 amount=-1 +kerning first=87 second=122 amount=-1 +kerning first=87 second=171 amount=-2 +kerning first=87 second=173 amount=-2 +kerning first=87 second=187 amount=-2 +kerning first=87 second=193 amount=-5 +kerning first=87 second=194 amount=-5 +kerning first=87 second=196 amount=-5 +kerning first=87 second=197 amount=-5 +kerning first=87 second=198 amount=-5 +kerning first=87 second=199 amount=-2 +kerning first=87 second=210 amount=-2 +kerning first=87 second=211 amount=-2 +kerning first=87 second=212 amount=-2 +kerning first=87 second=213 amount=-2 +kerning first=87 second=214 amount=-2 +kerning first=87 second=216 amount=-2 +kerning first=87 second=224 amount=-2 +kerning first=87 second=225 amount=-2 kerning first=87 second=226 amount=-2 -kerning first=1194 second=1069 amount=1 -kerning first=247 second=972 amount=-1 -kerning first=250 second=281 amount=-1 -kerning first=188 second=227 amount=-1 -kerning first=303 second=117 amount=-1 -kerning first=300 second=357 amount=-1 -kerning first=325 second=973 amount=-1 -kerning first=1118 second=332 amount=-2 -kerning first=354 second=216 amount=-1 -kerning first=105 second=8221 amount=-3 -kerning first=108 second=1066 amount=-5 -kerning first=254 second=228 amount=-1 -kerning first=968 second=962 amount=-1 -kerning first=167 second=240 amount=-1 -kerning first=274 second=1194 amount=-2 -kerning first=8211 second=1071 amount=-1 -kerning first=49 second=252 amount=-1 -kerning first=186 second=1256 amount=-2 -kerning first=215 second=79 amount=-2 -kerning first=912 second=119 amount=-4 -kerning first=89 second=1081 amount=-3 -kerning first=1119 second=963 amount=-1 -kerning first=1170 second=271 amount=-1 -kerning first=946 second=1026 amount=-5 -kerning first=950 second=286 amount=-2 -kerning first=252 second=1257 amount=-1 -kerning first=1026 second=218 amount=-2 -kerning first=1064 second=360 amount=-2 -kerning first=310 second=242 amount=-2 -kerning first=70 second=1101 amount=-1 -kerning first=1096 second=287 amount=-1 -kerning first=96 second=268 amount=-2 -kerning first=1176 second=219 amount=-2 -kerning first=954 second=231 amount=-2 -kerning first=1263 second=121 amount=-1 -kerning first=382 second=243 amount=-1 -kerning first=1027 second=373 amount=-4 -kerning first=54 second=357 amount=-1 -kerning first=57 second=117 amount=-1 -kerning first=197 second=269 amount=-1 -kerning first=74 second=973 amount=-1 -kerning first=338 second=332 amount=-2 -kerning first=926 second=244 amount=-1 -kerning first=100 second=216 amount=-2 -kerning first=123 second=118 amount=-4 -kerning first=260 second=962 amount=-1 -kerning first=35 second=370 amount=-2 -kerning first=177 second=283 amount=-1 -kerning first=8225 second=1177 amount=-1 -kerning first=8240 second=363 amount=-1 -kerning first=61 second=67 amount=-2 -kerning first=1073 second=245 amount=-1 -kerning first=201 second=217 amount=-2 -kerning first=8363 second=290 amount=-2 -kerning first=224 second=119 amount=-1 -kerning first=345 second=44 amount=-3 -kerning first=936 second=194 amount=-3 -kerning first=1194 second=84 amount=-1 -kerning first=956 second=1090 amount=-3 -kerning first=182 second=230 amount=-1 -kerning first=294 second=360 amount=-2 -kerning first=8226 second=8212 amount=-2 -kerning first=62 second=242 amount=-1 -kerning first=202 second=372 amount=-5 -kerning first=322 second=287 amount=-1 -kerning first=8369 second=235 amount=-1 -kerning first=1107 second=335 amount=-1 -kerning first=931 second=1108 amount=-1 -kerning first=108 second=81 amount=-2 -kerning first=371 second=121 amount=-1 -kerning first=962 second=965 amount=-1 -kerning first=161 second=243 amount=-1 -kerning first=8211 second=86 amount=-3 -kerning first=179 second=1263 amount=-1 -kerning first=1075 second=1113 amount=-3 -kerning first=901 second=362 amount=-2 -kerning first=86 second=332 amount=-2 -kerning first=1116 second=275 amount=-2 -kerning first=375 second=71 amount=-2 -kerning first=268 second=8230 amount=-1 -kerning first=278 second=83 amount=-1 -kerning first=1048 second=363 amount=-1 -kerning first=302 second=245 amount=-1 -kerning first=1084 second=290 amount=-2 -kerning first=207 second=949 amount=-1 -kerning first=8378 second=338 amount=-2 +kerning first=87 second=227 amount=-2 +kerning first=87 second=228 amount=-2 +kerning first=87 second=229 amount=-2 +kerning first=87 second=230 amount=-2 +kerning first=87 second=231 amount=-3 +kerning first=87 second=232 amount=-3 +kerning first=87 second=233 amount=-3 +kerning first=87 second=234 amount=-3 +kerning first=87 second=235 amount=-3 +kerning first=87 second=240 amount=-3 +kerning first=87 second=241 amount=-2 +kerning first=87 second=242 amount=-3 +kerning first=87 second=243 amount=-3 +kerning first=87 second=244 amount=-3 +kerning first=87 second=245 amount=-3 +kerning first=87 second=246 amount=-3 +kerning first=87 second=248 amount=-3 +kerning first=87 second=249 amount=-2 +kerning first=87 second=250 amount=-2 +kerning first=87 second=251 amount=-2 +kerning first=87 second=252 amount=-2 +kerning first=87 second=253 amount=-1 +kerning first=87 second=256 amount=-5 +kerning first=87 second=257 amount=-2 +kerning first=87 second=258 amount=-5 +kerning first=87 second=259 amount=-2 +kerning first=87 second=260 amount=-5 +kerning first=87 second=261 amount=-2 +kerning first=87 second=262 amount=-2 +kerning first=87 second=263 amount=-3 +kerning first=87 second=266 amount=-2 +kerning first=87 second=267 amount=-3 +kerning first=87 second=268 amount=-2 +kerning first=87 second=269 amount=-3 +kerning first=87 second=271 amount=-3 +kerning first=87 second=273 amount=-3 +kerning first=87 second=275 amount=-3 +kerning first=87 second=277 amount=-3 +kerning first=87 second=279 amount=-3 +kerning first=87 second=281 amount=-3 +kerning first=87 second=283 amount=-3 +kerning first=87 second=286 amount=-2 +kerning first=87 second=287 amount=-2 +kerning first=87 second=288 amount=-2 +kerning first=87 second=289 amount=-2 +kerning first=87 second=290 amount=-2 +kerning first=87 second=291 amount=-2 +kerning first=87 second=324 amount=-2 +kerning first=87 second=326 amount=-2 +kerning first=87 second=328 amount=-2 +kerning first=87 second=331 amount=-2 +kerning first=87 second=332 amount=-2 +kerning first=87 second=333 amount=-3 +kerning first=87 second=334 amount=-2 +kerning first=87 second=335 amount=-3 +kerning first=87 second=336 amount=-2 +kerning first=87 second=337 amount=-3 +kerning first=87 second=338 amount=-2 +kerning first=87 second=339 amount=-3 +kerning first=87 second=341 amount=-2 +kerning first=87 second=343 amount=-2 +kerning first=87 second=345 amount=-2 +kerning first=87 second=346 amount=-1 +kerning first=87 second=347 amount=-2 +kerning first=87 second=350 amount=-1 +kerning first=87 second=351 amount=-2 +kerning first=87 second=352 amount=-1 +kerning first=87 second=353 amount=-2 +kerning first=87 second=361 amount=-2 +kerning first=87 second=363 amount=-2 +kerning first=87 second=365 amount=-2 +kerning first=87 second=367 amount=-2 +kerning first=87 second=369 amount=-2 +kerning first=87 second=371 amount=-2 +kerning first=87 second=373 amount=-1 +kerning first=87 second=375 amount=-1 +kerning first=87 second=378 amount=-1 +kerning first=87 second=380 amount=-1 +kerning first=87 second=382 amount=-1 +kerning first=87 second=913 amount=-5 +kerning first=87 second=916 amount=-5 +kerning first=87 second=920 amount=-2 +kerning first=87 second=923 amount=-5 +kerning first=87 second=927 amount=-2 +kerning first=87 second=940 amount=-3 +kerning first=87 second=941 amount=-3 +kerning first=87 second=942 amount=-2 +kerning first=87 second=945 amount=-3 +kerning first=87 second=947 amount=-1 +kerning first=87 second=949 amount=-3 +kerning first=87 second=951 amount=-2 +kerning first=87 second=954 amount=-2 +kerning first=87 second=957 amount=-1 +kerning first=87 second=959 amount=-3 +kerning first=87 second=962 amount=-3 kerning first=87 second=963 amount=-3 -kerning first=90 second=271 amount=-1 -kerning first=948 second=234 amount=-1 -kerning first=253 second=334 amount=-2 -kerning first=250 second=1090 amount=-3 -kerning first=376 second=246 amount=-4 -kerning first=166 second=346 amount=-1 -kerning first=45 second=1174 amount=-3 -kerning first=48 second=360 amount=-2 -kerning first=1049 second=1059 amount=-2 -kerning first=1046 second=8212 amount=-3 -kerning first=191 second=273 amount=-1 -kerning first=194 second=45 amount=-2 -kerning first=188 second=964 amount=-3 -kerning first=1094 second=235 amount=-1 -kerning first=94 second=219 amount=-2 -kerning first=357 second=259 amount=-1 -kerning first=354 second=951 amount=-2 -kerning first=111 second=1175 amount=-2 -kerning first=117 second=121 amount=-1 -kerning first=254 second=965 amount=-1 -kerning first=968 second=8250 amount=-1 -kerning first=1028 second=86 amount=-1 -kerning first=167 second=1028 amount=-2 -kerning first=170 second=288 amount=-2 -kerning first=195 second=220 amount=-2 -kerning first=75 second=232 amount=-2 -kerning first=215 second=362 amount=-2 -kerning first=339 second=47 amount=-1 -kerning first=920 second=197 amount=-2 -kerning first=95 second=374 amount=-5 -kerning first=238 second=289 amount=-1 -kerning first=950 second=1096 amount=-2 -kerning first=956 second=99 amount=-1 -kerning first=121 second=71 amount=-2 -kerning first=1224 second=940 amount=-1 -kerning first=36 second=83 amount=-1 -kerning first=1026 second=953 amount=-1 -kerning first=175 second=233 amount=-1 -kerning first=56 second=245 amount=-1 -kerning first=1070 second=198 amount=-2 -kerning first=196 second=375 amount=-1 -kerning first=314 second=290 amount=-2 -kerning first=1099 second=338 amount=-2 -kerning first=216 second=1051 amount=-1 -kerning first=923 second=352 amount=-1 -kerning first=958 second=277 amount=-1 -kerning first=122 second=246 amount=-1 -kerning first=262 second=376 amount=-2 -kerning first=1037 second=211 amount=-2 -kerning first=282 second=8212 amount=-2 -kerning first=287 second=1059 amount=-2 -kerning first=1071 second=353 amount=-1 -kerning first=194 second=8249 amount=-3 -kerning first=1075 second=113 amount=-1 -kerning first=203 second=85 amount=-2 -kerning first=318 second=235 amount=-1 -kerning first=80 second=335 amount=-1 -kerning first=103 second=259 amount=-1 -kerning first=963 second=224 amount=-1 -kerning first=1298 second=1118 amount=-1 -kerning first=260 second=8250 amount=-1 -kerning first=1035 second=1184 amount=-5 -kerning first=180 second=336 amount=-2 -kerning first=296 second=248 amount=-1 -kerning first=61 second=350 amount=-1 -kerning first=8372 second=103 amount=-1 -kerning first=87 second=47 amount=-3 -kerning first=84 second=275 amount=-3 -kerning first=350 second=87 amount=-2 -kerning first=247 second=337 amount=-1 -kerning first=250 second=99 amount=-1 -kerning first=367 second=940 amount=-1 -kerning first=163 second=111 amount=-1 -kerning first=160 second=351 amount=-1 -kerning first=273 second=261 amount=-1 -kerning first=42 second=363 amount=-1 -kerning first=65 second=290 amount=-2 -kerning first=325 second=338 amount=-2 -kerning first=8369 second=972 amount=-1 -kerning first=903 second=250 amount=-1 -kerning first=900 second=941 amount=-1 -kerning first=942 second=1241 amount=-1 -kerning first=108 second=364 amount=-2 -kerning first=1186 second=8220 amount=-2 -kerning first=251 second=277 amount=-1 -kerning first=374 second=199 amount=-3 -kerning first=965 second=1079 amount=-1 -kerning first=971 second=89 amount=-5 -kerning first=161 second=1035 amount=-5 -kerning first=164 second=291 amount=-1 -kerning first=40 second=8212 amount=-2 -kerning first=43 second=1059 amount=-2 -kerning first=1051 second=251 amount=-1 -kerning first=301 second=353 amount=-1 -kerning first=304 second=113 amount=-1 -kerning first=69 second=235 amount=-1 -kerning first=209 second=365 amount=-1 -kerning first=1219 second=252 amount=-1 -kerning first=255 second=224 amount=-1 -kerning first=375 second=354 amount=-5 -kerning first=372 second=1118 amount=-1 -kerning first=1026 second=39 amount=-3 -kerning first=278 second=366 amount=-2 -kerning first=8222 second=79 amount=-1 -kerning first=50 second=248 amount=-1 -kerning first=193 second=171 amount=-3 -kerning first=310 second=63 amount=-2 -kerning first=1096 second=103 amount=-1 -kerning first=207 second=8217 amount=-3 -kerning first=8378 second=1257 amount=-1 -kerning first=915 second=115 amount=-1 -kerning first=96 second=87 amount=-5 -kerning first=1171 second=267 amount=-1 -kerning first=356 second=367 amount=-2 -kerning first=113 second=940 amount=-1 -kerning first=1027 second=214 amount=-2 -kerning first=8220 second=945 amount=-1 -kerning first=1065 second=356 amount=-2 -kerning first=74 second=338 amount=-2 -kerning first=77 second=100 amount=-1 -kerning first=214 second=941 amount=-1 -kerning first=1094 second=972 amount=-1 -kerning first=1097 second=281 amount=-1 -kerning first=335 second=380 amount=-1 -kerning first=237 second=1241 amount=-1 -kerning first=240 second=187 amount=-1 -kerning first=955 second=227 amount=-1 -kerning first=1298 second=117 amount=-1 -kerning first=35 second=211 amount=-2 -kerning first=170 second=1098 amount=-3 -kerning first=174 second=339 amount=-1 -kerning first=177 second=101 amount=-1 -kerning first=55 second=353 amount=-1 -kerning first=58 second=113 amount=-1 -kerning first=198 second=263 amount=-1 -kerning first=8363 second=106 amount=1 -kerning first=928 second=240 amount=-1 -kerning first=920 second=916 amount=-2 -kerning first=1178 second=370 amount=-1 -kerning first=244 second=102 amount=-1 -kerning first=361 second=943 amount=-1 -kerning first=121 second=354 amount=-5 -kerning first=1262 second=1044 amount=-1 -kerning first=269 second=39 amount=-1 -kerning first=36 second=366 amount=-2 -kerning first=1039 second=79 amount=-2 -kerning first=175 second=970 amount=-1 -kerning first=178 second=279 amount=-1 -kerning first=202 second=213 amount=-2 -kerning first=8361 second=1026 amount=-5 -kerning first=8364 second=286 amount=-2 -kerning first=322 second=103 amount=-1 -kerning first=1099 second=1257 amount=-1 -kerning first=343 second=267 amount=-1 -kerning first=34 second=8218 amount=-1 -kerning first=1037 second=945 amount=-1 -kerning first=183 second=226 amount=-1 -kerning first=298 second=116 amount=-1 -kerning first=203 second=368 amount=-2 -kerning first=318 second=972 amount=-1 -kerning first=323 second=281 amount=-1 -kerning first=8370 second=231 amount=-1 -kerning first=100 second=8220 amount=-3 -kerning first=249 second=227 amount=-1 -kerning first=369 second=357 amount=-1 -kerning first=372 second=117 amount=-2 -kerning first=271 second=369 amount=-1 -kerning first=44 second=251 amount=-1 -kerning first=201 second=8221 amount=-3 -kerning first=204 second=1066 amount=-5 -kerning first=1084 second=106 amount=1 -kerning first=327 second=228 amount=-1 -kerning first=905 second=118 amount=-4 -kerning first=84 second=1080 amount=-2 -kerning first=90 second=90 amount=1 -kerning first=944 second=283 amount=-1 -kerning first=247 second=1256 amount=-2 -kerning first=370 second=1044 amount=-1 -kerning first=376 second=67 amount=-3 -kerning first=8216 second=257 amount=-1 -kerning first=1049 second=359 amount=-1 -kerning first=1062 second=119 amount=-2 -kerning first=300 second=920 amount=-2 -kerning first=1081 second=1026 amount=-5 -kerning first=1085 second=286 amount=-2 -kerning first=325 second=1257 amount=-1 -kerning first=91 second=267 amount=-1 -kerning first=1210 second=360 amount=-2 -kerning first=374 second=923 amount=-5 -kerning first=968 second=947 amount=-4 -kerning first=971 second=372 amount=-5 -kerning first=164 second=1101 amount=-1 -kerning first=377 second=242 amount=-1 -kerning first=49 second=356 amount=-5 -kerning first=52 second=116 amount=-1 -kerning first=192 second=268 amount=-2 -kerning first=69 second=972 amount=-1 -kerning first=72 second=281 amount=-1 -kerning first=1095 second=231 amount=-1 -kerning first=912 second=243 amount=-1 -kerning first=1170 second=373 amount=-4 -kerning first=946 second=1263 amount=-1 -kerning first=258 second=269 amount=-1 -kerning first=168 second=973 amount=-1 -kerning first=8218 second=1176 amount=-1 -kerning first=8222 second=362 amount=-1 -kerning first=1067 second=244 amount=-1 -kerning first=196 second=216 amount=-2 -kerning first=314 second=106 amount=1 -kerning first=93 second=1194 amount=-2 -kerning first=96 second=370 amount=-2 -kerning first=239 second=283 amount=-1 -kerning first=954 second=333 amount=-2 -kerning first=1263 second=245 amount=-1 -kerning first=37 second=79 amount=-2 -kerning first=1027 second=949 amount=-1 -kerning first=176 second=229 amount=-1 -kerning first=287 second=359 amount=-1 -kerning first=54 second=920 amount=-2 -kerning first=194 second=1195 amount=-1 -kerning first=197 second=371 amount=-1 -kerning first=315 second=286 amount=-1 -kerning first=74 second=1257 amount=-1 -kerning first=1097 second=1090 amount=-2 -kerning first=926 second=346 amount=-1 -kerning first=363 second=360 amount=-2 -kerning first=955 second=964 amount=-3 -kerning first=963 second=45 amount=-2 -kerning first=123 second=242 amount=-1 -kerning first=960 second=273 amount=-1 -kerning first=260 second=947 amount=-4 -kerning first=35 second=945 amount=-1 -kerning first=177 second=1240 amount=-2 -kerning first=174 second=1262 amount=-2 -kerning first=1073 second=347 amount=-1 -kerning first=198 second=1069 amount=-1 -kerning first=204 second=81 amount=-2 -kerning first=321 second=231 amount=-1 -kerning first=928 second=1028 amount=-2 -kerning first=936 second=288 amount=-2 -kerning first=964 second=220 amount=-2 -kerning first=1039 second=362 amount=-2 -kerning first=1036 second=1176 amount=-2 -kerning first=182 second=332 amount=-2 -kerning first=297 second=244 amount=-1 -kerning first=65 second=106 amount=1 -kerning first=1078 second=289 amount=-1 -kerning first=8369 second=337 amount=-1 -kerning first=903 second=71 amount=-2 -kerning first=942 second=233 amount=-1 -kerning first=371 second=245 amount=-1 -kerning first=965 second=375 amount=-1 -kerning first=274 second=257 amount=-1 -kerning first=43 second=359 amount=-1 -kerning first=1037 second=8211 amount=-2 -kerning first=46 second=119 amount=-2 -kerning first=183 second=963 amount=-1 -kerning first=186 second=271 amount=-1 -kerning first=63 second=1026 amount=-5 -kerning first=1083 second=234 amount=-1 -kerning first=323 second=1090 amount=-3 -kerning first=8370 second=968 amount=-1 -kerning first=904 second=246 amount=-1 -kerning first=8377 second=277 amount=-1 -kerning first=352 second=258 amount=-1 -kerning first=112 second=120 amount=-2 -kerning first=252 second=273 amount=-1 -kerning first=255 second=45 amount=-2 -kerning first=249 second=964 amount=-3 -kerning first=963 second=8249 amount=-3 -kerning first=165 second=287 amount=-1 -kerning first=190 second=219 amount=-2 -kerning first=299 second=1108 amount=-1 -kerning first=302 second=347 amount=-1 -kerning first=70 second=231 amount=-1 -kerning first=327 second=965 amount=-1 -kerning first=334 second=46 amount=-1 -kerning first=910 second=196 amount=-5 -kerning first=948 second=336 amount=-2 -kerning first=1220 second=248 amount=-1 -kerning first=256 second=220 amount=-2 -kerning first=376 second=350 amount=-1 -kerning first=169 second=232 amount=-1 -kerning first=276 second=1176 amount=-1 -kerning first=51 second=244 amount=-1 -kerning first=191 second=374 amount=-5 -kerning first=306 second=289 amount=-1 -kerning first=68 second=1298 amount=-1 -kerning first=1094 second=337 amount=-1 -kerning first=1097 second=99 amount=-1 -kerning first=916 second=111 amount=-1 -kerning first=237 second=233 amount=-1 -kerning first=354 second=1177 amount=-2 -kerning first=357 second=363 amount=-1 -kerning first=117 second=245 amount=-1 -kerning first=8225 second=250 amount=-1 -kerning first=8221 second=941 amount=-1 -kerning first=55 second=194 amount=-5 -kerning first=198 second=84 amount=-5 -kerning first=72 second=1090 amount=-3 -kerning first=75 second=334 amount=-3 -kerning first=1095 second=968 amount=-1 -kerning first=313 second=234 amount=-1 -kerning first=336 second=376 amount=-3 -kerning first=912 second=1035 amount=-5 -kerning first=1178 second=211 amount=-1 -kerning first=358 second=1059 amount=-2 -kerning first=1299 second=113 amount=-1 -kerning first=255 second=8249 amount=-3 -kerning first=175 second=335 amount=-1 -kerning first=178 second=97 amount=-1 -kerning first=53 second=1108 amount=-1 -kerning first=56 second=347 amount=-1 -kerning first=202 second=34 amount=-3 -kerning first=76 second=965 amount=-1 -kerning first=222 second=196 amount=-2 -kerning first=1176 second=1184 amount=-5 -kerning first=365 second=248 amount=-1 -kerning first=962 second=171 amount=-3 -kerning first=37 second=362 amount=-2 -kerning first=1034 second=1063 amount=-1 -kerning first=1027 second=8217 amount=-3 -kerning first=176 second=966 amount=-1 -kerning first=179 second=275 amount=-1 -kerning first=60 second=289 amount=-1 -kerning first=318 second=337 amount=-1 -kerning first=323 second=99 amount=-1 -kerning first=83 second=221 amount=-2 -kerning first=223 second=351 amount=-1 -kerning first=100 second=1177 amount=-1 -kerning first=103 second=363 amount=-1 -kerning first=243 second=967 amount=-2 -kerning first=126 second=290 amount=-2 -kerning first=271 second=210 amount=-2 -kerning first=35 second=8211 amount=-2 -kerning first=296 second=352 amount=-1 -kerning first=64 second=234 amount=-1 -kerning first=1080 second=187 amount=-1 -kerning first=204 second=364 amount=-2 -kerning first=1076 second=1241 amount=-1 -kerning first=321 second=968 amount=-1 -kerning first=8372 second=227 amount=-1 -kerning first=902 second=199 amount=-2 -kerning first=1117 second=89 amount=-5 -kerning first=936 second=1098 amount=-3 -kerning first=944 second=101 amount=-1 -kerning first=373 second=113 amount=-1 -kerning first=967 second=263 amount=-1 -kerning first=163 second=235 amount=-1 -kerning first=273 second=365 amount=-1 -kerning first=202 second=8216 amount=-3 -kerning first=8369 second=1256 amount=-2 -kerning first=900 second=1118 amount=-1 -kerning first=903 second=354 amount=-5 -kerning first=1118 second=266 amount=-2 -kerning first=346 second=1184 amount=-1 -kerning first=942 second=970 amount=-1 -kerning first=254 second=171 amount=-3 -kerning first=971 second=213 amount=-2 -kerning first=1063 second=115 amount=-1 -kerning first=1051 second=355 amount=-1 -kerning first=192 second=87 amount=-5 -kerning first=69 second=337 amount=-1 -kerning first=72 second=99 amount=-1 -kerning first=209 second=940 amount=-1 -kerning first=904 second=1038 amount=-2 +kerning first=87 second=965 amount=-2 +kerning first=87 second=966 amount=-3 +kerning first=87 second=968 amount=-2 +kerning first=87 second=972 amount=-3 +kerning first=87 second=973 amount=-2 +kerning first=87 second=1028 amount=-2 +kerning first=87 second=1029 amount=-1 +kerning first=87 second=1032 amount=-3 +kerning first=87 second=1040 amount=-5 +kerning first=87 second=1054 amount=-2 +kerning first=87 second=1057 amount=-2 +kerning first=87 second=1072 amount=-2 +kerning first=87 second=1074 amount=-2 +kerning first=87 second=1075 amount=-2 +kerning first=87 second=1077 amount=-3 +kerning first=87 second=1078 amount=-1 +kerning first=87 second=1080 amount=-2 +kerning first=87 second=1081 amount=-2 +kerning first=87 second=1082 amount=-2 +kerning first=87 second=1084 amount=-2 +kerning first=87 second=1085 amount=-2 +kerning first=87 second=1086 amount=-3 +kerning first=87 second=1087 amount=-2 +kerning first=87 second=1088 amount=-2 +kerning first=87 second=1089 amount=-3 +kerning first=87 second=1091 amount=-1 +kerning first=87 second=1092 amount=-3 +kerning first=87 second=1093 amount=-1 +kerning first=87 second=1094 amount=-2 +kerning first=87 second=1096 amount=-2 +kerning first=87 second=1097 amount=-2 +kerning first=87 second=1099 amount=-2 +kerning first=87 second=1100 amount=-2 +kerning first=87 second=1102 amount=-2 +kerning first=87 second=1104 amount=-3 +kerning first=87 second=1105 amount=-3 +kerning first=87 second=1107 amount=-2 +kerning first=87 second=1108 amount=-3 +kerning first=87 second=1109 amount=-2 +kerning first=87 second=1114 amount=-2 +kerning first=87 second=1116 amount=-2 +kerning first=87 second=1117 amount=-2 +kerning first=87 second=1118 amount=-1 +kerning first=87 second=1119 amount=-2 +kerning first=87 second=1169 amount=-2 +kerning first=87 second=1175 amount=-1 +kerning first=87 second=1179 amount=-2 +kerning first=87 second=1187 amount=-2 +kerning first=87 second=1194 amount=-2 +kerning first=87 second=1195 amount=-3 +kerning first=87 second=1199 amount=-1 +kerning first=87 second=1203 amount=-1 +kerning first=87 second=1220 amount=-2 +kerning first=87 second=1224 amount=-2 +kerning first=87 second=1240 amount=-2 +kerning first=87 second=1241 amount=-3 +kerning first=87 second=1256 amount=-2 +kerning first=87 second=1257 amount=-3 +kerning first=87 second=1263 amount=-1 +kerning first=87 second=8211 amount=-2 +kerning first=87 second=8212 amount=-2 +kerning first=87 second=8218 amount=-3 +kerning first=87 second=8222 amount=-3 +kerning first=87 second=8230 amount=-3 +kerning first=87 second=8249 amount=-2 +kerning first=87 second=8250 amount=-2 +kerning first=88 second=38 amount=-2 +kerning first=88 second=45 amount=-3 +kerning first=88 second=63 amount=-2 +kerning first=88 second=67 amount=-3 +kerning first=88 second=71 amount=-3 +kerning first=88 second=74 amount=-1 +kerning first=88 second=79 amount=-3 +kerning first=88 second=81 amount=-3 +kerning first=88 second=83 amount=-1 +kerning first=88 second=97 amount=-1 +kerning first=88 second=99 amount=-2 +kerning first=88 second=100 amount=-2 +kerning first=88 second=101 amount=-2 +kerning first=88 second=111 amount=-2 +kerning first=88 second=113 amount=-2 +kerning first=88 second=115 amount=-1 +kerning first=88 second=116 amount=-1 +kerning first=88 second=117 amount=-1 +kerning first=88 second=118 amount=-3 +kerning first=88 second=119 amount=-3 +kerning first=88 second=121 amount=-1 +kerning first=88 second=171 amount=-3 +kerning first=88 second=173 amount=-3 +kerning first=88 second=187 amount=-1 +kerning first=88 second=199 amount=-3 +kerning first=88 second=210 amount=-3 +kerning first=88 second=211 amount=-3 +kerning first=88 second=212 amount=-3 +kerning first=88 second=213 amount=-3 +kerning first=88 second=214 amount=-3 +kerning first=88 second=216 amount=-3 +kerning first=88 second=224 amount=-1 +kerning first=88 second=225 amount=-1 +kerning first=88 second=226 amount=-1 +kerning first=88 second=227 amount=-1 +kerning first=88 second=228 amount=-1 +kerning first=88 second=229 amount=-1 +kerning first=88 second=230 amount=-1 +kerning first=88 second=231 amount=-2 +kerning first=88 second=232 amount=-2 +kerning first=88 second=233 amount=-2 +kerning first=88 second=234 amount=-2 +kerning first=88 second=235 amount=-2 +kerning first=88 second=240 amount=-2 +kerning first=88 second=242 amount=-2 +kerning first=88 second=243 amount=-2 +kerning first=88 second=244 amount=-2 +kerning first=88 second=245 amount=-2 +kerning first=88 second=246 amount=-2 +kerning first=88 second=248 amount=-2 +kerning first=88 second=249 amount=-1 +kerning first=88 second=250 amount=-1 +kerning first=88 second=251 amount=-1 +kerning first=88 second=252 amount=-1 +kerning first=88 second=253 amount=-1 +kerning first=88 second=257 amount=-1 +kerning first=88 second=259 amount=-1 +kerning first=88 second=261 amount=-1 +kerning first=88 second=262 amount=-3 +kerning first=88 second=263 amount=-2 +kerning first=88 second=266 amount=-3 +kerning first=88 second=267 amount=-2 +kerning first=88 second=268 amount=-3 +kerning first=88 second=269 amount=-2 +kerning first=88 second=271 amount=-2 +kerning first=88 second=273 amount=-2 +kerning first=88 second=275 amount=-2 +kerning first=88 second=277 amount=-2 +kerning first=88 second=279 amount=-2 +kerning first=88 second=281 amount=-2 +kerning first=88 second=283 amount=-2 +kerning first=88 second=286 amount=-3 +kerning first=88 second=288 amount=-3 +kerning first=88 second=290 amount=-3 +kerning first=88 second=332 amount=-3 +kerning first=88 second=333 amount=-2 +kerning first=88 second=334 amount=-3 +kerning first=88 second=335 amount=-2 +kerning first=88 second=336 amount=-3 +kerning first=88 second=337 amount=-2 +kerning first=88 second=338 amount=-3 +kerning first=88 second=339 amount=-2 +kerning first=88 second=346 amount=-1 +kerning first=88 second=347 amount=-1 +kerning first=88 second=350 amount=-1 +kerning first=88 second=351 amount=-1 +kerning first=88 second=352 amount=-1 +kerning first=88 second=353 amount=-1 +kerning first=88 second=355 amount=-1 +kerning first=88 second=357 amount=-1 +kerning first=88 second=359 amount=-1 +kerning first=88 second=361 amount=-1 +kerning first=88 second=363 amount=-1 +kerning first=88 second=365 amount=-1 +kerning first=88 second=367 amount=-1 +kerning first=88 second=369 amount=-1 +kerning first=88 second=371 amount=-1 +kerning first=88 second=373 amount=-3 +kerning first=88 second=375 amount=-1 +kerning first=88 second=920 amount=-3 +kerning first=88 second=927 amount=-3 +kerning first=88 second=934 amount=-5 +kerning first=88 second=940 amount=-2 +kerning first=88 second=941 amount=-2 +kerning first=88 second=943 amount=-1 +kerning first=88 second=945 amount=-2 +kerning first=88 second=947 amount=-3 +kerning first=88 second=949 amount=-2 +kerning first=88 second=950 amount=-2 +kerning first=88 second=952 amount=-2 +kerning first=88 second=953 amount=-1 +kerning first=88 second=957 amount=-3 +kerning first=88 second=959 amount=-2 +kerning first=88 second=962 amount=-2 +kerning first=88 second=963 amount=-2 +kerning first=88 second=964 amount=-3 +kerning first=88 second=965 amount=-1 +kerning first=88 second=966 amount=-2 +kerning first=88 second=967 amount=-2 +kerning first=88 second=968 amount=-1 +kerning first=88 second=969 amount=-2 +kerning first=88 second=970 amount=-1 +kerning first=88 second=972 amount=-2 +kerning first=88 second=973 amount=-1 +kerning first=88 second=974 amount=-2 +kerning first=88 second=1028 amount=-3 +kerning first=88 second=1029 amount=-1 +kerning first=88 second=1032 amount=-1 +kerning first=88 second=1047 amount=-2 +kerning first=88 second=1054 amount=-3 +kerning first=88 second=1057 amount=-3 +kerning first=88 second=1060 amount=-5 +kerning first=88 second=1063 amount=-1 +kerning first=88 second=1069 amount=-2 +kerning first=88 second=1072 amount=-1 +kerning first=88 second=1077 amount=-2 +kerning first=88 second=1079 amount=-2 +kerning first=88 second=1086 amount=-2 +kerning first=88 second=1089 amount=-2 +kerning first=88 second=1090 amount=-3 +kerning first=88 second=1091 amount=-1 +kerning first=88 second=1092 amount=-2 +kerning first=88 second=1098 amount=-3 +kerning first=88 second=1101 amount=-2 +kerning first=88 second=1104 amount=-2 +kerning first=88 second=1105 amount=-2 +kerning first=88 second=1108 amount=-2 +kerning first=88 second=1109 amount=-1 +kerning first=88 second=1118 amount=-1 +kerning first=88 second=1176 amount=-2 +kerning first=88 second=1177 amount=-2 +kerning first=88 second=1185 amount=-3 +kerning first=88 second=1194 amount=-3 +kerning first=88 second=1195 amount=-2 +kerning first=88 second=1199 amount=-3 +kerning first=88 second=1240 amount=-3 +kerning first=88 second=1241 amount=-2 +kerning first=88 second=1256 amount=-3 +kerning first=88 second=1257 amount=-2 +kerning first=88 second=1263 amount=-1 +kerning first=88 second=8211 amount=-3 +kerning first=88 second=8212 amount=-3 +kerning first=88 second=8249 amount=-3 +kerning first=88 second=8250 amount=-1 +kerning first=89 second=38 amount=-2 +kerning first=89 second=44 amount=-4 +kerning first=89 second=45 amount=-4 +kerning first=89 second=46 amount=-4 +kerning first=89 second=47 amount=-4 +kerning first=89 second=110 amount=-3 +kerning first=89 second=63 amount=-1 +kerning first=89 second=65 amount=-5 +kerning first=89 second=67 amount=-3 +kerning first=89 second=114 amount=-3 +kerning first=89 second=71 amount=-3 +kerning first=89 second=74 amount=-6 +kerning first=89 second=79 amount=-3 +kerning first=89 second=81 amount=-3 +kerning first=89 second=83 amount=-1 +kerning first=89 second=97 amount=-4 +kerning first=89 second=99 amount=-4 +kerning first=89 second=100 amount=-4 +kerning first=89 second=101 amount=-4 +kerning first=89 second=103 amount=-4 +kerning first=89 second=109 amount=-3 +kerning first=89 second=111 amount=-4 +kerning first=89 second=112 amount=-3 +kerning first=89 second=113 amount=-4 +kerning first=89 second=115 amount=-3 +kerning first=89 second=117 amount=-2 +kerning first=89 second=118 amount=-2 +kerning first=89 second=119 amount=-2 +kerning first=89 second=120 amount=-2 +kerning first=89 second=121 amount=-2 +kerning first=89 second=122 amount=-2 +kerning first=89 second=171 amount=-3 +kerning first=89 second=173 amount=-4 +kerning first=89 second=187 amount=-2 +kerning first=89 second=193 amount=-5 +kerning first=89 second=194 amount=-5 +kerning first=89 second=196 amount=-5 +kerning first=89 second=197 amount=-5 +kerning first=89 second=198 amount=-5 +kerning first=89 second=199 amount=-3 +kerning first=89 second=210 amount=-3 +kerning first=89 second=211 amount=-3 +kerning first=89 second=212 amount=-3 +kerning first=89 second=213 amount=-3 +kerning first=89 second=214 amount=-3 +kerning first=89 second=216 amount=-3 +kerning first=89 second=224 amount=-4 +kerning first=89 second=225 amount=-4 +kerning first=89 second=226 amount=-4 +kerning first=89 second=227 amount=-4 +kerning first=89 second=228 amount=-4 +kerning first=89 second=229 amount=-4 +kerning first=89 second=230 amount=-4 +kerning first=89 second=231 amount=-4 +kerning first=89 second=232 amount=-4 +kerning first=89 second=233 amount=-4 +kerning first=89 second=234 amount=-4 +kerning first=89 second=235 amount=-4 +kerning first=89 second=240 amount=-4 +kerning first=89 second=241 amount=-3 +kerning first=89 second=242 amount=-4 +kerning first=89 second=243 amount=-4 +kerning first=89 second=244 amount=-4 +kerning first=89 second=245 amount=-4 +kerning first=89 second=246 amount=-4 +kerning first=89 second=248 amount=-4 +kerning first=89 second=249 amount=-2 +kerning first=89 second=250 amount=-2 +kerning first=89 second=251 amount=-2 +kerning first=89 second=252 amount=-2 +kerning first=89 second=253 amount=-2 +kerning first=89 second=256 amount=-5 +kerning first=89 second=257 amount=-4 +kerning first=89 second=258 amount=-5 +kerning first=89 second=259 amount=-4 +kerning first=89 second=260 amount=-5 +kerning first=89 second=261 amount=-4 +kerning first=89 second=262 amount=-3 +kerning first=89 second=263 amount=-4 +kerning first=89 second=266 amount=-3 +kerning first=89 second=267 amount=-4 +kerning first=89 second=268 amount=-3 +kerning first=89 second=269 amount=-4 +kerning first=89 second=271 amount=-4 +kerning first=89 second=273 amount=-4 +kerning first=89 second=275 amount=-4 +kerning first=89 second=277 amount=-4 +kerning first=89 second=279 amount=-4 +kerning first=89 second=281 amount=-4 +kerning first=89 second=283 amount=-4 +kerning first=89 second=286 amount=-3 +kerning first=89 second=287 amount=-4 +kerning first=89 second=288 amount=-3 +kerning first=89 second=289 amount=-4 +kerning first=89 second=290 amount=-3 +kerning first=89 second=291 amount=-4 +kerning first=89 second=324 amount=-3 +kerning first=89 second=326 amount=-3 +kerning first=89 second=328 amount=-3 +kerning first=89 second=331 amount=-3 +kerning first=89 second=332 amount=-3 +kerning first=89 second=333 amount=-4 +kerning first=89 second=334 amount=-3 +kerning first=89 second=335 amount=-4 +kerning first=89 second=336 amount=-3 +kerning first=89 second=337 amount=-4 +kerning first=89 second=338 amount=-3 +kerning first=89 second=339 amount=-4 +kerning first=89 second=341 amount=-3 +kerning first=89 second=343 amount=-3 +kerning first=89 second=345 amount=-3 +kerning first=89 second=346 amount=-1 +kerning first=89 second=347 amount=-3 +kerning first=89 second=350 amount=-1 +kerning first=89 second=351 amount=-3 +kerning first=89 second=352 amount=-1 +kerning first=89 second=353 amount=-3 +kerning first=89 second=361 amount=-2 +kerning first=89 second=363 amount=-2 +kerning first=89 second=365 amount=-2 +kerning first=89 second=367 amount=-2 +kerning first=89 second=369 amount=-2 +kerning first=89 second=371 amount=-2 +kerning first=89 second=373 amount=-2 +kerning first=89 second=375 amount=-2 +kerning first=89 second=378 amount=-2 +kerning first=89 second=380 amount=-2 +kerning first=89 second=382 amount=-2 +kerning first=89 second=913 amount=-5 +kerning first=89 second=916 amount=-5 +kerning first=89 second=920 amount=-3 +kerning first=89 second=923 amount=-5 +kerning first=89 second=927 amount=-3 +kerning first=89 second=937 amount=-2 +kerning first=89 second=940 amount=-4 +kerning first=89 second=941 amount=-4 +kerning first=89 second=942 amount=-3 +kerning first=89 second=943 amount=-2 +kerning first=89 second=945 amount=-4 +kerning first=89 second=947 amount=-2 +kerning first=89 second=949 amount=-4 +kerning first=89 second=950 amount=-2 +kerning first=89 second=951 amount=-3 +kerning first=89 second=952 amount=-2 kerning first=89 second=953 amount=-2 -kerning first=92 second=261 amount=-1 -kerning first=1170 second=214 amount=-2 -kerning first=950 second=226 amount=-1 -kerning first=1219 second=356 amount=-5 -kerning first=1224 second=116 amount=-1 -kerning first=168 second=338 amount=-2 -kerning first=278 second=941 amount=-1 -kerning first=47 second=1116 amount=-1 -kerning first=50 second=352 amount=-1 -kerning first=193 second=262 amount=-2 -kerning first=305 second=1241 amount=-1 -kerning first=310 second=187 amount=-2 -kerning first=70 second=968 amount=-1 -kerning first=73 second=277 amount=-1 -kerning first=1096 second=227 amount=-1 -kerning first=96 second=211 amount=-2 -kerning first=1171 second=369 amount=-1 -kerning first=233 second=1098 amount=-1 -kerning first=236 second=339 amount=-1 -kerning first=239 second=101 amount=-1 -kerning first=356 second=942 amount=-2 -kerning first=113 second=1117 amount=2 -kerning first=119 second=113 amount=-1 -kerning first=973 second=1066 amount=-5 -kerning first=8230 second=118 amount=-2 -kerning first=197 second=212 amount=-2 -kerning first=77 second=224 amount=-1 -kerning first=214 second=1118 amount=-1 -kerning first=338 second=266 amount=-2 -kerning first=94 second=1184 amount=-5 -kerning first=1169 second=8222 amount=-3 -kerning first=1184 second=79 amount=-3 -kerning first=237 second=970 amount=-1 -kerning first=240 second=279 amount=-1 -kerning first=1035 second=253 amount=-1 -kerning first=177 second=225 amount=-1 -kerning first=291 second=115 amount=-1 -kerning first=195 second=1185 amount=-3 -kerning first=198 second=367 amount=-1 -kerning first=8363 second=230 amount=-1 -kerning first=1178 second=945 amount=-1 -kerning first=367 second=116 amount=-1 -kerning first=36 second=941 amount=-1 -kerning first=59 second=1241 amount=-1 -kerning first=62 second=187 amount=-1 -kerning first=196 second=8220 amount=-3 -kerning first=322 second=227 amount=-1 -kerning first=8361 second=1263 amount=-1 -kerning first=900 second=117 amount=-1 -kerning first=1107 second=269 amount=-1 -kerning first=931 second=973 amount=-1 -kerning first=105 second=251 amount=-1 -kerning first=965 second=216 amount=-2 -kerning first=298 second=240 amount=-1 -kerning first=203 second=943 amount=-1 -kerning first=206 second=252 amount=-1 -kerning first=318 second=1256 amount=-2 -kerning first=8370 second=333 amount=-1 -kerning first=904 second=67 amount=-2 -kerning first=86 second=266 amount=-2 -kerning first=341 second=8222 amount=-3 -kerning first=1206 second=119 amount=-2 -kerning first=369 second=920 amount=-2 -kerning first=372 second=241 amount=-2 -kerning first=963 second=1195 amount=-1 -kerning first=165 second=103 amount=-1 -kerning first=44 second=355 amount=-1 -kerning first=47 second=115 amount=-2 -kerning first=1084 second=230 amount=-1 -kerning first=8378 second=273 amount=-1 -kerning first=905 second=242 amount=-1 -kerning first=8372 second=964 amount=-3 -kerning first=1117 second=372 amount=-5 -kerning first=90 second=214 amount=-1 -kerning first=944 second=1240 amount=-2 -kerning first=113 second=116 amount=-1 -kerning first=253 second=268 amount=-2 -kerning first=967 second=1069 amount=-1 -kerning first=973 second=81 amount=-2 -kerning first=163 second=972 amount=-1 -kerning first=166 second=281 amount=-1 -kerning first=1062 second=243 amount=-1 -kerning first=1081 second=1263 amount=-1 -kerning first=214 second=117 amount=-1 -kerning first=91 second=369 amount=-1 -kerning first=1223 second=244 amount=-1 -kerning first=170 second=228 amount=-1 -kerning first=283 second=118 amount=-1 -kerning first=8225 second=71 amount=-2 -kerning first=52 second=240 amount=-1 -kerning first=1066 second=193 amount=-1 -kerning first=189 second=1194 amount=-2 -kerning first=192 second=370 amount=-2 -kerning first=69 second=1256 amount=-2 -kerning first=1095 second=333 amount=-1 -kerning first=212 second=1044 amount=-1 +kerning first=89 second=954 amount=-3 +kerning first=89 second=955 amount=-2 +kerning first=89 second=957 amount=-2 +kerning first=89 second=959 amount=-4 +kerning first=89 second=961 amount=-5 +kerning first=89 second=962 amount=-4 +kerning first=89 second=963 amount=-4 +kerning first=89 second=964 amount=-2 +kerning first=89 second=965 amount=-2 +kerning first=89 second=966 amount=-4 +kerning first=89 second=967 amount=-2 +kerning first=89 second=968 amount=-2 +kerning first=89 second=969 amount=-4 +kerning first=89 second=970 amount=-2 +kerning first=89 second=972 amount=-4 +kerning first=89 second=973 amount=-2 +kerning first=89 second=974 amount=-4 +kerning first=89 second=1028 amount=-3 +kerning first=89 second=1029 amount=-1 +kerning first=89 second=1032 amount=-6 +kerning first=89 second=1033 amount=-5 +kerning first=89 second=1040 amount=-5 +kerning first=89 second=1044 amount=-5 +kerning first=89 second=1051 amount=-5 +kerning first=89 second=1054 amount=-3 +kerning first=89 second=1057 amount=-3 +kerning first=89 second=1069 amount=-2 +kerning first=89 second=1071 amount=-2 +kerning first=89 second=1072 amount=-4 +kerning first=89 second=1074 amount=-3 +kerning first=89 second=1075 amount=-3 +kerning first=89 second=1077 amount=-4 +kerning first=89 second=1078 amount=-2 +kerning first=89 second=1079 amount=-4 +kerning first=89 second=1080 amount=-3 +kerning first=89 second=1081 amount=-3 +kerning first=89 second=1082 amount=-3 +kerning first=89 second=1084 amount=-3 +kerning first=89 second=1085 amount=-3 +kerning first=89 second=1086 amount=-4 +kerning first=89 second=1087 amount=-3 +kerning first=89 second=1088 amount=-3 +kerning first=89 second=1089 amount=-4 +kerning first=89 second=1090 amount=-2 +kerning first=89 second=1091 amount=-2 +kerning first=89 second=1092 amount=-4 +kerning first=89 second=1093 amount=-2 +kerning first=89 second=1094 amount=-3 +kerning first=89 second=1096 amount=-3 +kerning first=89 second=1097 amount=-3 +kerning first=89 second=1098 amount=-2 +kerning first=89 second=1099 amount=-3 +kerning first=89 second=1100 amount=-3 +kerning first=89 second=1101 amount=-4 +kerning first=89 second=1102 amount=-3 +kerning first=89 second=1104 amount=-4 +kerning first=89 second=1105 amount=-4 +kerning first=89 second=1107 amount=-3 +kerning first=89 second=1108 amount=-4 +kerning first=89 second=1109 amount=-3 +kerning first=89 second=1114 amount=-3 +kerning first=89 second=1116 amount=-3 +kerning first=89 second=1117 amount=-3 +kerning first=89 second=1118 amount=-2 +kerning first=89 second=1119 amount=-3 +kerning first=89 second=1169 amount=-3 +kerning first=89 second=1175 amount=-2 +kerning first=89 second=1176 amount=-2 +kerning first=89 second=1177 amount=-4 +kerning first=89 second=1179 amount=-3 +kerning first=89 second=1185 amount=-2 +kerning first=89 second=1187 amount=-3 +kerning first=89 second=1194 amount=-3 +kerning first=89 second=1195 amount=-4 +kerning first=89 second=1199 amount=-2 +kerning first=89 second=1203 amount=-2 +kerning first=89 second=1220 amount=-3 +kerning first=89 second=1224 amount=-3 +kerning first=89 second=1240 amount=-3 +kerning first=89 second=1241 amount=-4 +kerning first=89 second=1256 amount=-3 +kerning first=89 second=1257 amount=-4 +kerning first=89 second=1263 amount=-2 +kerning first=89 second=1298 amount=-5 +kerning first=89 second=8211 amount=-4 +kerning first=89 second=8212 amount=-4 +kerning first=89 second=8218 amount=-4 kerning first=89 second=8222 amount=-4 -kerning first=1170 second=949 amount=-1 -kerning first=238 second=229 amount=-1 -kerning first=358 second=359 amount=-1 -kerning first=361 second=119 amount=-4 -kerning first=950 second=963 amount=-1 -kerning first=255 second=1195 amount=-1 -kerning first=258 second=371 amount=-1 -kerning first=1262 second=194 amount=-2 -kerning first=381 second=286 amount=-1 -kerning first=168 second=1257 amount=-1 -kerning first=8226 second=246 amount=-1 -kerning first=1067 second=346 amount=-1 -kerning first=314 second=230 amount=-1 -kerning first=1099 second=273 amount=-1 -kerning first=1096 second=964 amount=-3 -kerning first=216 second=923 amount=-2 -kerning first=923 second=287 amount=-1 -kerning first=96 second=945 amount=-1 -kerning first=236 second=1262 amount=-2 -kerning first=239 second=1240 amount=-2 -kerning first=958 second=219 amount=-2 -kerning first=1263 second=347 amount=-1 -kerning first=1037 second=121 amount=-1 -kerning first=8250 second=196 amount=-3 -kerning first=1071 second=288 amount=-2 -kerning first=80 second=269 amount=-1 -kerning first=1103 second=220 amount=-2 -kerning first=934 second=232 amount=-1 -kerning first=960 second=374 amount=-5 -kerning first=126 second=106 amount=1 -kerning first=268 second=256 amount=-1 -kerning first=41 second=118 amount=-4 -kerning first=177 second=962 amount=-1 -kerning first=1044 second=71 amount=-1 -kerning first=8260 second=351 amount=-1 -kerning first=61 second=283 amount=-1 -kerning first=1076 second=233 amount=-1 -kerning first=321 second=333 amount=-1 -kerning first=345 second=257 amount=-1 -kerning first=1178 second=8211 amount=-2 -kerning first=247 second=271 amount=-1 -kerning first=370 second=194 amount=-2 -kerning first=967 second=84 amount=-5 -kerning first=124 second=1026 amount=-5 -kerning first=160 second=286 amount=-2 -kerning first=1046 second=246 amount=-2 -kerning first=185 second=218 amount=-2 -kerning first=297 second=346 amount=-1 -kerning first=65 second=230 amount=-1 -kerning first=205 second=360 amount=-2 -kerning first=322 second=964 amount=-3 -kerning first=325 second=273 amount=-1 -kerning first=1118 second=85 amount=-2 -kerning first=942 second=335 amount=-1 -kerning first=251 second=219 amount=-2 -kerning first=371 second=347 amount=-1 -kerning first=374 second=109 amount=-3 -kerning first=968 second=259 amount=-1 -kerning first=971 second=34 amount=-3 -kerning first=164 second=231 amount=-1 -kerning first=274 second=361 amount=-1 -kerning first=8217 second=74 amount=-4 -kerning first=186 second=373 amount=-4 -kerning first=298 second=1028 amount=-2 -kerning first=301 second=288 amount=-2 -kerning first=63 second=1263 amount=-1 -kerning first=1083 second=336 amount=-2 -kerning first=330 second=220 amount=-2 -kerning first=904 second=350 amount=-1 -kerning first=946 second=275 amount=-1 -kerning first=252 second=374 amount=-5 -kerning first=375 second=289 amount=-1 -kerning first=8218 second=249 amount=-1 -kerning first=1064 second=111 amount=-1 -kerning first=187 second=1071 amount=-1 -kerning first=193 second=83 amount=-1 -kerning first=305 second=233 amount=-1 -kerning first=70 second=333 amount=-1 -kerning first=910 second=290 amount=-3 -kerning first=93 second=257 amount=-1 +kerning first=89 second=8230 amount=-4 +kerning first=89 second=8249 amount=-3 +kerning first=89 second=8250 amount=-2 +kerning first=90 second=45 amount=-3 +kerning first=90 second=67 amount=-1 +kerning first=90 second=71 amount=-1 +kerning first=90 second=79 amount=-1 +kerning first=90 second=81 amount=-1 +kerning first=90 second=90 amount=1 +kerning first=90 second=99 amount=-1 +kerning first=90 second=100 amount=-1 +kerning first=90 second=101 amount=-1 +kerning first=90 second=111 amount=-1 +kerning first=90 second=113 amount=-1 +kerning first=90 second=173 amount=-3 +kerning first=90 second=199 amount=-1 +kerning first=90 second=210 amount=-1 +kerning first=90 second=211 amount=-1 +kerning first=90 second=212 amount=-1 +kerning first=90 second=213 amount=-1 +kerning first=90 second=214 amount=-1 +kerning first=90 second=216 amount=-1 +kerning first=90 second=231 amount=-1 +kerning first=90 second=232 amount=-1 +kerning first=90 second=233 amount=-1 +kerning first=90 second=234 amount=-1 +kerning first=90 second=235 amount=-1 +kerning first=90 second=240 amount=-1 +kerning first=90 second=242 amount=-1 +kerning first=90 second=243 amount=-1 +kerning first=90 second=244 amount=-1 +kerning first=90 second=245 amount=-1 +kerning first=90 second=246 amount=-1 +kerning first=90 second=248 amount=-1 +kerning first=90 second=262 amount=-1 +kerning first=90 second=263 amount=-1 +kerning first=90 second=266 amount=-1 +kerning first=90 second=267 amount=-1 +kerning first=90 second=268 amount=-1 +kerning first=90 second=269 amount=-1 +kerning first=90 second=271 amount=-1 +kerning first=90 second=273 amount=-1 +kerning first=90 second=275 amount=-1 +kerning first=90 second=277 amount=-1 +kerning first=90 second=279 amount=-1 +kerning first=90 second=281 amount=-1 +kerning first=90 second=283 amount=-1 +kerning first=90 second=286 amount=-1 +kerning first=90 second=288 amount=-1 +kerning first=90 second=290 amount=-1 +kerning first=90 second=332 amount=-1 +kerning first=90 second=333 amount=-1 +kerning first=90 second=334 amount=-1 +kerning first=90 second=335 amount=-1 +kerning first=90 second=336 amount=-1 +kerning first=90 second=337 amount=-1 +kerning first=90 second=338 amount=-1 +kerning first=90 second=339 amount=-1 +kerning first=90 second=377 amount=1 +kerning first=90 second=379 amount=1 +kerning first=90 second=381 amount=1 +kerning first=90 second=918 amount=1 +kerning first=90 second=920 amount=-1 +kerning first=90 second=927 amount=-1 +kerning first=90 second=940 amount=-1 +kerning first=90 second=941 amount=-1 +kerning first=90 second=945 amount=-1 kerning first=90 second=949 amount=-1 -kerning first=1171 second=210 amount=-2 -kerning first=230 second=1299 amount=-1 -kerning first=1220 second=352 amount=-1 -kerning first=379 second=234 amount=-1 -kerning first=973 second=364 amount=-2 -kerning first=169 second=334 amount=-2 -kerning first=282 second=246 amount=-1 -kerning first=166 second=1090 amount=-3 -kerning first=8224 second=199 amount=-2 -kerning first=51 second=346 amount=-1 -kerning first=1062 second=1035 amount=-2 -kerning first=74 second=273 amount=-1 -kerning first=77 second=45 amount=-2 -kerning first=338 second=85 amount=-2 -kerning first=916 second=235 amount=-1 -kerning first=237 second=335 amount=-1 -kerning first=240 second=97 amount=-1 -kerning first=117 second=347 amount=-1 -kerning first=114 second=1108 amount=-1 -kerning first=260 second=259 amount=-1 -kerning first=263 second=34 amount=-1 -kerning first=971 second=8216 amount=-3 -kerning first=35 second=121 amount=-1 -kerning first=170 second=965 amount=-1 -kerning first=8225 second=354 amount=-5 -kerning first=52 second=1028 amount=-2 -kerning first=55 second=288 amount=-2 -kerning first=78 second=220 amount=-2 -kerning first=313 second=336 amount=-1 -kerning first=221 second=110 amount=-3 -kerning first=95 second=1176 amount=-1 -kerning first=1170 second=8217 amount=-3 +kerning first=90 second=959 amount=-1 +kerning first=90 second=962 amount=-1 +kerning first=90 second=963 amount=-1 +kerning first=90 second=966 amount=-1 +kerning first=90 second=972 amount=-1 +kerning first=90 second=1028 amount=-1 +kerning first=90 second=1054 amount=-1 +kerning first=90 second=1057 amount=-1 +kerning first=90 second=1077 amount=-1 +kerning first=90 second=1086 amount=-1 +kerning first=90 second=1089 amount=-1 +kerning first=90 second=1092 amount=-1 +kerning first=90 second=1104 amount=-1 +kerning first=90 second=1105 amount=-1 +kerning first=90 second=1108 amount=-1 +kerning first=90 second=1194 amount=-1 +kerning first=90 second=1195 amount=-1 +kerning first=90 second=1240 amount=-1 +kerning first=90 second=1241 amount=-1 +kerning first=90 second=1256 amount=-1 +kerning first=90 second=1257 amount=-1 +kerning first=90 second=8211 amount=-3 +kerning first=90 second=8212 amount=-3 +kerning first=91 second=106 amount=7 +kerning first=91 second=1112 amount=7 +kerning first=97 second=34 amount=-1 +kerning first=97 second=39 amount=-1 +kerning first=97 second=63 amount=-2 +kerning first=97 second=102 amount=-1 +kerning first=97 second=106 amount=1 +kerning first=97 second=118 amount=-1 +kerning first=97 second=119 amount=-1 +kerning first=97 second=373 amount=-1 +kerning first=97 second=947 amount=-1 +kerning first=97 second=957 amount=-1 +kerning first=97 second=964 amount=-1 +kerning first=97 second=1090 amount=-1 +kerning first=97 second=1098 amount=-1 +kerning first=97 second=1112 amount=1 +kerning first=97 second=1185 amount=-1 +kerning first=97 second=1199 amount=-1 +kerning first=97 second=8216 amount=-1 +kerning first=97 second=8217 amount=-1 +kerning first=97 second=8220 amount=-1 +kerning first=97 second=8221 amount=-1 +kerning first=98 second=34 amount=-1 +kerning first=98 second=39 amount=-1 +kerning first=98 second=44 amount=-1 +kerning first=98 second=46 amount=-1 +kerning first=98 second=47 amount=-1 +kerning first=98 second=63 amount=-2 +kerning first=98 second=102 amount=-1 +kerning first=98 second=118 amount=-1 +kerning first=98 second=119 amount=-1 +kerning first=98 second=120 amount=-2 +kerning first=98 second=122 amount=-1 +kerning first=98 second=373 amount=-1 +kerning first=98 second=378 amount=-1 +kerning first=98 second=380 amount=-1 +kerning first=98 second=382 amount=-1 +kerning first=98 second=947 amount=-1 +kerning first=98 second=955 amount=-1 +kerning first=98 second=957 amount=-1 +kerning first=98 second=964 amount=-1 +kerning first=98 second=967 amount=-2 +kerning first=98 second=1076 amount=-1 +kerning first=98 second=1078 amount=-2 +kerning first=98 second=1083 amount=-1 +kerning first=98 second=1090 amount=-1 +kerning first=98 second=1093 amount=-2 +kerning first=98 second=1098 amount=-1 +kerning first=98 second=1113 amount=-1 +kerning first=98 second=1175 amount=-2 +kerning first=98 second=1185 amount=-1 +kerning first=98 second=1199 amount=-1 +kerning first=98 second=1203 amount=-2 +kerning first=98 second=1299 amount=-1 +kerning first=98 second=8216 amount=-1 +kerning first=98 second=8217 amount=-1 +kerning first=98 second=8218 amount=-1 +kerning first=98 second=8220 amount=-1 +kerning first=98 second=8221 amount=-1 +kerning first=98 second=8222 amount=-1 +kerning first=98 second=8230 amount=-1 +kerning first=99 second=34 amount=-1 +kerning first=99 second=39 amount=-1 +kerning first=99 second=63 amount=-1 +kerning first=99 second=118 amount=-1 +kerning first=99 second=119 amount=-1 +kerning first=99 second=120 amount=-1 +kerning first=99 second=373 amount=-1 +kerning first=99 second=947 amount=-1 +kerning first=99 second=955 amount=-1 +kerning first=99 second=957 amount=-1 +kerning first=99 second=1078 amount=-1 +kerning first=99 second=1093 amount=-1 +kerning first=99 second=1175 amount=-1 +kerning first=99 second=1199 amount=-1 +kerning first=99 second=1203 amount=-1 +kerning first=99 second=8216 amount=-1 +kerning first=99 second=8217 amount=-1 +kerning first=99 second=8220 amount=-1 +kerning first=99 second=8221 amount=-1 +kerning first=101 second=34 amount=-1 +kerning first=101 second=39 amount=-1 +kerning first=101 second=44 amount=-1 +kerning first=101 second=46 amount=-1 +kerning first=101 second=47 amount=-1 +kerning first=101 second=63 amount=-2 +kerning first=101 second=102 amount=-1 +kerning first=101 second=118 amount=-1 +kerning first=101 second=119 amount=-1 +kerning first=101 second=120 amount=-2 kerning first=101 second=122 amount=-1 -kerning first=238 second=966 amount=-1 -kerning first=244 second=47 amount=-1 -kerning first=364 second=197 amount=-2 -kerning first=121 second=289 amount=-1 -kerning first=1036 second=249 amount=-1 -kerning first=178 second=221 amount=-5 -kerning first=294 second=111 amount=-1 -kerning first=8226 second=1038 amount=-2 -kerning first=289 second=351 amount=-1 -kerning first=59 second=233 amount=-1 -kerning first=196 second=1177 amount=-1 -kerning first=8364 second=226 amount=-1 -kerning first=931 second=338 amount=-2 -kerning first=96 second=8211 amount=-2 -kerning first=1179 second=941 amount=-1 -kerning first=365 second=352 amount=-1 -kerning first=962 second=262 amount=-2 -kerning first=125 second=234 amount=-1 -kerning first=40 second=246 amount=-1 -kerning first=1041 second=199 amount=-2 -kerning first=179 second=376 amount=-5 -kerning first=290 second=1035 amount=-1 -kerning first=1071 second=1098 amount=-3 -kerning first=1075 second=339 amount=-1 -kerning first=197 second=8212 amount=-2 -kerning first=200 second=1059 amount=-2 -kerning first=901 second=113 amount=-1 -kerning first=86 second=85 amount=-2 -kerning first=77 second=8249 amount=-3 -kerning first=263 second=8216 amount=-1 -kerning first=1044 second=354 amount=-2 -kerning first=177 second=8250 amount=-1 -kerning first=187 second=86 amount=-2 -kerning first=64 second=336 amount=-2 -kerning first=1080 second=279 amount=-1 -kerning first=207 second=248 amount=-1 -kerning first=327 second=171 amount=-3 -kerning first=87 second=260 amount=-5 -kerning first=1117 second=213 amount=-2 -kerning first=944 second=225 amount=-1 -kerning first=253 second=87 amount=-5 -kerning first=964 second=1185 amount=-3 -kerning first=967 second=367 amount=-1 -kerning first=163 second=337 amount=-1 -kerning first=166 second=99 amount=-1 -kerning first=276 second=249 amount=-1 -kerning first=273 second=940 amount=-1 -kerning first=48 second=111 amount=-1 -kerning first=188 second=261 amount=-1 -kerning first=185 second=953 amount=-1 -kerning first=1085 second=226 amount=-1 -kerning first=211 second=198 amount=-2 -kerning first=332 second=88 amount=-3 -kerning first=91 second=210 amount=-2 -kerning first=1118 second=368 amount=-2 -kerning first=354 second=250 amount=-2 -kerning first=254 second=262 amount=-2 -kerning first=374 second=1241 amount=-4 -kerning first=965 second=8220 amount=-3 -kerning first=164 second=968 amount=-1 -kerning first=167 second=277 amount=-1 -kerning first=280 second=199 amount=-2 -kerning first=49 second=291 amount=-1 -kerning first=46 second=1035 amount=-5 -kerning first=192 second=211 amount=-2 -kerning first=304 second=339 amount=-1 -kerning first=301 second=1098 amount=-3 -kerning first=215 second=113 amount=-1 -kerning first=89 second=1179 amount=-3 -kerning first=92 second=365 amount=-1 -kerning first=1119 second=1066 amount=-5 -kerning first=1224 second=240 amount=-1 -kerning first=258 second=212 amount=-2 -kerning first=1026 second=252 amount=-1 -kerning first=278 second=1118 amount=-1 -kerning first=8226 second=67 amount=-2 -kerning first=190 second=1184 amount=-5 -kerning first=193 second=366 amount=-2 -kerning first=305 second=970 amount=-1 -kerning first=310 second=279 amount=-2 -kerning first=76 second=171 amount=-3 -kerning first=910 second=1100 amount=-3 -kerning first=923 second=103 amount=-1 -kerning first=1176 second=253 amount=-1 -kerning first=239 second=225 amount=-1 -kerning first=356 second=1119 amount=-2 -kerning first=954 second=267 amount=-2 -kerning first=256 second=1185 amount=-3 -kerning first=282 second=1038 amount=-2 -kerning first=80 second=88 amount=-2 -kerning first=338 second=368 amount=-2 -kerning first=916 second=972 amount=-1 -kerning first=926 second=281 amount=-1 -kerning first=100 second=250 amount=-1 -kerning first=366 second=65 amount=-2 -kerning first=120 second=1241 amount=-2 -kerning first=123 second=187 amount=-1 -kerning first=257 second=8220 amount=-1 -kerning first=38 second=199 amount=-2 -kerning first=1035 second=357 amount=-1 -kerning first=174 second=1079 amount=-1 -kerning first=180 second=89 amount=-5 -kerning first=55 second=1098 amount=-3 -kerning first=58 second=339 amount=-1 -kerning first=61 second=101 amount=-1 -kerning first=201 second=251 amount=-1 -kerning first=8363 second=332 amount=-2 -kerning first=936 second=228 amount=-1 -kerning first=367 second=240 amount=-1 -kerning first=364 second=916 amount=-2 -kerning first=956 second=1194 amount=-2 -kerning first=36 second=1118 amount=-1 -kerning first=1046 second=67 amount=-3 -kerning first=182 second=266 amount=-2 -kerning first=185 second=39 amount=-3 -kerning first=62 second=279 amount=-1 -kerning first=59 second=970 amount=-1 -kerning first=1078 second=229 amount=-1 -kerning first=8364 second=963 amount=-1 -kerning first=8369 second=271 amount=-1 -kerning first=931 second=1257 amount=-1 -kerning first=108 second=115 amount=-1 -kerning first=105 second=355 amount=-1 -kerning first=8211 second=120 amount=-2 -kerning first=40 second=1038 amount=-2 -kerning first=186 second=214 amount=-2 -kerning first=206 second=356 amount=-5 -kerning first=209 second=116 amount=-1 -kerning first=8377 second=219 amount=-2 -kerning first=86 second=368 amount=-2 -kerning first=1119 second=81 amount=-2 -kerning first=1206 second=243 amount=-1 -kerning first=372 second=343 amount=-2 -kerning first=165 second=227 amount=-1 -kerning first=278 second=117 amount=-1 -kerning first=299 second=973 amount=-1 -kerning first=67 second=381 amount=-1 -kerning first=1084 second=332 amount=-2 -kerning first=8378 second=374 amount=-5 -kerning first=356 second=118 amount=-2 -kerning first=944 second=962 amount=-1 -kerning first=113 second=240 amount=-1 -kerning first=250 second=1194 amount=-2 -kerning first=253 second=370 amount=-2 -kerning first=376 second=283 amount=-4 -kerning first=373 second=974 amount=-1 -kerning first=163 second=1256 amount=-2 -kerning first=282 second=67 amount=-2 -kerning first=8220 second=245 amount=-1 -kerning first=194 second=79 amount=-2 -kerning first=306 second=229 amount=-1 -kerning first=1085 second=963 amount=-1 -kerning first=1094 second=271 amount=-1 -kerning first=906 second=1026 amount=-5 -kerning first=94 second=253 amount=-1 -kerning first=952 second=218 amount=-2 -kerning first=1223 second=346 amount=-1 -kerning first=49 second=1101 amount=-1 -kerning first=192 second=945 amount=-1 -kerning first=304 second=1262 amount=-2 -kerning first=75 second=268 amount=-3 -kerning first=361 second=243 amount=-1 -kerning first=953 second=373 amount=-2 -kerning first=1224 second=1028 amount=-2 -kerning first=36 second=117 amount=-1 -kerning first=175 second=269 amount=-1 -kerning first=8226 second=350 amount=-1 -kerning first=53 second=973 amount=-1 -kerning first=314 second=332 amount=-2 -kerning first=8361 second=275 amount=-1 -kerning first=1099 second=374 amount=-5 -kerning first=915 second=1298 amount=-5 -kerning first=239 second=962 amount=-1 -kerning first=1186 second=71 amount=-1 -kerning first=962 second=83 amount=-1 -kerning first=119 second=974 amount=-1 -kerning first=122 second=283 amount=-1 -kerning first=34 second=1044 amount=-3 -kerning first=40 second=67 amount=-2 -kerning first=1037 second=245 amount=-1 -kerning first=179 second=217 amount=-2 -kerning first=60 second=229 amount=-1 -kerning first=203 second=119 amount=-4 -kerning first=200 second=359 amount=-1 -kerning first=315 second=963 amount=-1 -kerning first=318 second=271 amount=-1 -kerning first=80 second=371 amount=-1 -kerning first=77 second=1195 amount=-1 -kerning first=223 second=286 amount=-2 -kerning first=934 second=334 amount=-2 -kerning first=926 second=1090 amount=-3 -kerning first=1187 second=246 amount=-1 -kerning first=126 second=230 amount=-1 -kerning first=38 second=923 amount=-1 -kerning first=41 second=242 amount=-1 -kerning first=177 second=947 amount=-4 -kerning first=180 second=372 amount=-5 -kerning first=296 second=287 amount=-1 -kerning first=61 second=1240 amount=-2 -kerning first=58 second=1262 amount=-2 -kerning first=1076 second=335 amount=-1 -kerning first=1080 second=97 amount=-1 -kerning first=87 second=81 amount=-2 -kerning first=1117 second=34 amount=-3 -kerning first=936 second=965 amount=-1 +kerning first=101 second=373 amount=-1 +kerning first=101 second=378 amount=-1 +kerning first=101 second=380 amount=-1 +kerning first=101 second=382 amount=-1 +kerning first=101 second=947 amount=-1 +kerning first=101 second=955 amount=-1 +kerning first=101 second=957 amount=-1 +kerning first=101 second=964 amount=-1 +kerning first=101 second=967 amount=-2 +kerning first=101 second=1076 amount=-1 +kerning first=101 second=1078 amount=-2 +kerning first=101 second=1083 amount=-1 +kerning first=101 second=1090 amount=-1 +kerning first=101 second=1093 amount=-2 +kerning first=101 second=1098 amount=-1 +kerning first=101 second=1113 amount=-1 +kerning first=101 second=1175 amount=-2 +kerning first=101 second=1185 amount=-1 +kerning first=101 second=1199 amount=-1 +kerning first=101 second=1203 amount=-2 +kerning first=101 second=1299 amount=-1 +kerning first=101 second=8216 amount=-1 +kerning first=101 second=8217 amount=-1 +kerning first=101 second=8218 amount=-1 +kerning first=101 second=8220 amount=-1 +kerning first=101 second=8221 amount=-1 +kerning first=101 second=8222 amount=-1 +kerning first=101 second=8230 amount=-1 +kerning first=102 second=44 amount=-2 +kerning first=102 second=45 amount=-2 +kerning first=102 second=46 amount=-2 +kerning first=102 second=97 amount=-1 +kerning first=102 second=99 amount=-1 +kerning first=102 second=100 amount=-1 +kerning first=102 second=101 amount=-1 +kerning first=102 second=103 amount=-1 +kerning first=102 second=111 amount=-1 +kerning first=102 second=113 amount=-1 +kerning first=102 second=115 amount=-1 +kerning first=102 second=173 amount=-2 +kerning first=102 second=224 amount=-1 +kerning first=102 second=225 amount=-1 +kerning first=102 second=226 amount=-1 +kerning first=102 second=227 amount=-1 +kerning first=102 second=228 amount=-1 +kerning first=102 second=229 amount=-1 +kerning first=102 second=230 amount=-1 +kerning first=102 second=231 amount=-1 +kerning first=102 second=232 amount=-1 +kerning first=102 second=233 amount=-1 +kerning first=102 second=234 amount=-1 +kerning first=102 second=235 amount=-1 +kerning first=102 second=240 amount=-1 +kerning first=102 second=242 amount=-1 +kerning first=102 second=243 amount=-1 +kerning first=102 second=244 amount=-1 +kerning first=102 second=245 amount=-1 +kerning first=102 second=246 amount=-1 +kerning first=102 second=248 amount=-1 +kerning first=102 second=257 amount=-1 +kerning first=102 second=259 amount=-1 +kerning first=102 second=261 amount=-1 +kerning first=102 second=263 amount=-1 +kerning first=102 second=267 amount=-1 +kerning first=102 second=269 amount=-1 +kerning first=102 second=271 amount=-1 +kerning first=102 second=273 amount=-1 +kerning first=102 second=275 amount=-1 +kerning first=102 second=277 amount=-1 +kerning first=102 second=279 amount=-1 +kerning first=102 second=281 amount=-1 +kerning first=102 second=283 amount=-1 +kerning first=102 second=287 amount=-1 +kerning first=102 second=289 amount=-1 +kerning first=102 second=291 amount=-1 +kerning first=102 second=333 amount=-1 +kerning first=102 second=335 amount=-1 +kerning first=102 second=337 amount=-1 +kerning first=102 second=339 amount=-1 +kerning first=102 second=347 amount=-1 +kerning first=102 second=351 amount=-1 +kerning first=102 second=353 amount=-1 +kerning first=102 second=940 amount=-1 +kerning first=102 second=941 amount=-1 +kerning first=102 second=945 amount=-1 +kerning first=102 second=949 amount=-1 +kerning first=102 second=959 amount=-1 +kerning first=102 second=962 amount=-1 +kerning first=102 second=963 amount=-1 +kerning first=102 second=966 amount=-1 +kerning first=102 second=972 amount=-1 +kerning first=102 second=1072 amount=-1 +kerning first=102 second=1077 amount=-1 +kerning first=102 second=1086 amount=-1 +kerning first=102 second=1089 amount=-1 +kerning first=102 second=1092 amount=-1 +kerning first=102 second=1104 amount=-1 +kerning first=102 second=1105 amount=-1 +kerning first=102 second=1108 amount=-1 +kerning first=102 second=1109 amount=-1 +kerning first=102 second=1195 amount=-1 +kerning first=102 second=1241 amount=-1 +kerning first=102 second=1257 amount=-1 +kerning first=102 second=8211 amount=-2 +kerning first=102 second=8212 amount=-2 +kerning first=102 second=8218 amount=-2 +kerning first=102 second=8222 amount=-2 +kerning first=102 second=8230 amount=-2 +kerning first=103 second=63 amount=-1 +kerning first=103 second=106 amount=7 +kerning first=103 second=1112 amount=7 +kerning first=104 second=34 amount=-1 +kerning first=104 second=39 amount=-1 +kerning first=104 second=63 amount=-2 +kerning first=104 second=102 amount=-1 +kerning first=104 second=106 amount=1 +kerning first=104 second=118 amount=-1 +kerning first=104 second=119 amount=-1 +kerning first=104 second=373 amount=-1 +kerning first=104 second=947 amount=-1 +kerning first=104 second=957 amount=-1 +kerning first=104 second=964 amount=-1 +kerning first=104 second=1090 amount=-1 +kerning first=104 second=1098 amount=-1 +kerning first=104 second=1112 amount=1 +kerning first=104 second=1185 amount=-1 +kerning first=104 second=1199 amount=-1 +kerning first=104 second=8216 amount=-1 +kerning first=104 second=8217 amount=-1 +kerning first=104 second=8220 amount=-1 +kerning first=104 second=8221 amount=-1 +kerning first=106 second=106 amount=7 +kerning first=106 second=1112 amount=7 +kerning first=107 second=45 amount=-3 +kerning first=107 second=97 amount=-1 +kerning first=107 second=99 amount=-2 +kerning first=107 second=100 amount=-2 +kerning first=107 second=101 amount=-2 +kerning first=107 second=103 amount=-2 +kerning first=107 second=106 amount=1 +kerning first=107 second=111 amount=-2 +kerning first=107 second=113 amount=-2 +kerning first=107 second=115 amount=-1 +kerning first=107 second=173 amount=-3 +kerning first=107 second=224 amount=-1 +kerning first=107 second=225 amount=-1 +kerning first=107 second=226 amount=-1 +kerning first=107 second=227 amount=-1 +kerning first=107 second=228 amount=-1 +kerning first=107 second=229 amount=-1 +kerning first=107 second=230 amount=-1 +kerning first=107 second=231 amount=-2 +kerning first=107 second=232 amount=-2 +kerning first=107 second=233 amount=-2 +kerning first=107 second=234 amount=-2 +kerning first=107 second=235 amount=-2 +kerning first=107 second=240 amount=-2 +kerning first=107 second=242 amount=-2 kerning first=107 second=243 amount=-2 -kerning first=247 second=373 amount=-4 -kerning first=367 second=1028 amount=-2 -kerning first=124 second=1263 amount=-1 -kerning first=1046 second=350 amount=-1 -kerning first=300 second=232 amount=-1 -kerning first=65 second=332 amount=-2 -kerning first=1081 second=275 amount=-1 -kerning first=1078 second=966 amount=-2 -kerning first=325 second=374 amount=-5 -kerning first=903 second=289 amount=-1 -kerning first=354 second=71 amount=-1 -kerning first=1210 second=111 amount=-1 -kerning first=245 second=8230 amount=-1 -kerning first=254 second=83 amount=-1 -kerning first=374 second=233 amount=-4 -kerning first=968 second=363 amount=-1 -kerning first=965 second=1177 amount=-1 -kerning first=164 second=333 amount=-1 -kerning first=8217 second=198 amount=-3 -kerning first=1051 second=290 amount=-2 -kerning first=186 second=949 amount=-1 -kerning first=189 second=257 amount=-1 -kerning first=69 second=271 amount=-1 -kerning first=212 second=194 amount=-2 -kerning first=1119 second=364 amount=-2 -kerning first=229 second=1090 amount=-1 -kerning first=946 second=376 amount=-5 -kerning first=1219 second=291 amount=-1 -kerning first=1206 second=1035 amount=-2 -kerning first=168 second=273 amount=-1 -kerning first=165 second=964 amount=-3 -kerning first=50 second=287 amount=-1 -kerning first=1064 second=235 amount=-1 -kerning first=305 second=335 amount=-1 -kerning first=310 second=97 amount=-1 -kerning first=73 second=219 amount=-2 -kerning first=337 second=34 amount=-1 -kerning first=93 second=361 amount=-1 -kerning first=1117 second=8216 amount=-3 -kerning first=96 second=121 amount=-1 -kerning first=944 second=8250 amount=-1 -kerning first=113 second=1028 amount=-2 -kerning first=379 second=336 amount=-1 -kerning first=1027 second=248 amount=-1 -kerning first=172 second=220 amount=-2 -kerning first=279 second=1113 amount=-1 -kerning first=282 second=350 amount=-1 -kerning first=54 second=232 amount=-1 -kerning first=194 second=362 amount=-2 -kerning first=191 second=1176 amount=-1 -kerning first=306 second=966 amount=-1 -kerning first=311 second=275 amount=-2 -kerning first=74 second=374 amount=-5 -kerning first=916 second=337 amount=-1 -kerning first=926 second=99 amount=-1 -kerning first=100 second=71 amount=-2 -kerning first=1174 second=940 amount=-1 -kerning first=240 second=221 amount=-5 -kerning first=363 second=111 amount=-1 -kerning first=952 second=953 amount=-1 -kerning first=955 second=261 amount=-1 -kerning first=120 second=233 amount=-2 -kerning first=260 second=363 amount=-1 -kerning first=35 second=245 amount=-1 -kerning first=174 second=375 amount=-1 -kerning first=192 second=8211 amount=-2 -kerning first=1073 second=100 amount=-1 -kerning first=81 second=84 amount=-2 -kerning first=221 second=234 amount=-4 -kerning first=928 second=277 amount=-1 -kerning first=361 second=1035 amount=-5 -kerning first=1299 second=339 amount=-1 -kerning first=258 second=8212 amount=-2 -kerning first=1039 second=113 amount=-1 -kerning first=182 second=85 amount=-2 -kerning first=294 second=235 amount=-1 -kerning first=59 second=335 amount=-1 -kerning first=62 second=97 amount=-1 -kerning first=337 second=8216 amount=-1 -kerning first=1186 second=354 amount=-2 -kerning first=239 second=8250 amount=-1 -kerning first=958 second=1184 amount=-5 -kerning first=962 second=366 amount=-2 -kerning first=125 second=336 amount=-2 -kerning first=40 second=350 amount=-1 -kerning first=60 second=966 amount=-1 -kerning first=63 second=275 amount=-1 -kerning first=8370 second=267 amount=-1 -kerning first=1103 second=1185 amount=-3 -kerning first=249 second=261 amount=-1 -kerning first=44 second=290 amount=-1 -kerning first=299 second=338 amount=-2 -kerning first=302 second=100 amount=-1 -kerning first=207 second=352 amount=-1 -kerning first=327 second=262 amount=-2 -kerning first=902 second=1241 amount=-1 -kerning first=905 second=187 amount=-1 -kerning first=1106 second=8220 amount=-1 -kerning first=948 second=89 amount=-5 -kerning first=253 second=211 amount=-2 -kerning first=376 second=101 amount=-4 -kerning first=373 second=339 amount=-1 -kerning first=276 second=353 amount=-1 -kerning first=48 second=235 amount=-1 -kerning first=188 second=365 amount=-1 -kerning first=68 second=377 amount=-1 -kerning first=1118 second=943 amount=-1 -kerning first=952 second=39 amount=-3 -kerning first=251 second=1184 amount=-5 -kerning first=254 second=366 amount=-2 -kerning first=374 second=970 amount=-2 -kerning first=377 second=279 amount=-1 -kerning first=170 second=171 amount=-3 -kerning first=283 second=63 amount=-2 -kerning first=186 second=8217 amount=-3 -kerning first=1095 second=267 amount=-1 -kerning first=330 second=1185 amount=-3 -kerning first=92 second=940 amount=-1 -kerning first=95 second=249 amount=-1 -kerning first=1219 second=1101 amount=-1 -kerning first=1026 second=356 amount=-5 -kerning first=53 second=338 amount=-2 -kerning first=56 second=100 amount=-1 -kerning first=1064 second=972 amount=-1 -kerning first=196 second=250 amount=-1 -kerning first=193 second=941 amount=-1 -kerning first=1067 second=281 amount=-1 -kerning first=76 second=262 amount=-1 -kerning first=331 second=8220 amount=-1 -kerning first=923 second=227 amount=-1 -kerning first=1176 second=357 amount=-1 -kerning first=236 second=1079 amount=-1 -kerning first=119 second=339 amount=-1 -kerning first=122 second=101 amount=-1 -kerning first=37 second=113 amount=-1 -kerning first=34 second=353 amount=-1 -kerning first=176 second=263 amount=-1 -kerning first=8250 second=106 amount=1 -kerning first=1071 second=228 amount=-1 -kerning first=80 second=212 amount=-2 -kerning first=338 second=943 amount=-1 -kerning first=916 second=1256 amount=-2 -kerning first=100 second=354 amount=-5 -kerning first=246 second=39 amount=-1 -kerning first=963 second=79 amount=-2 -kerning first=123 second=279 amount=-1 -kerning first=1035 second=920 amount=-2 -kerning first=180 second=213 amount=-2 -kerning first=8240 second=1026 amount=-5 -kerning first=8260 second=286 amount=-2 -kerning first=296 second=103 amount=-1 -kerning first=61 second=225 amount=-1 -kerning first=201 second=355 amount=-1 -kerning first=204 second=115 amount=-1 -kerning first=321 second=267 amount=-1 -kerning first=8366 second=218 amount=-2 -kerning first=78 second=1185 amount=-3 -kerning first=247 second=214 amount=-2 -kerning first=160 second=226 amount=-1 -kerning first=1299 second=1262 amount=-2 -kerning first=273 second=116 amount=-1 -kerning first=182 second=368 amount=-2 -kerning first=294 second=972 amount=-1 -kerning first=297 second=281 amount=-1 -kerning first=208 second=65 amount=-2 -kerning first=8369 second=373 amount=-4 -kerning first=942 second=269 amount=-1 -kerning first=1051 second=106 amount=1 -kerning first=183 second=1066 amount=-5 -kerning first=179 second=8221 amount=-3 -kerning first=301 second=228 amount=-1 -kerning first=209 second=240 amount=-1 -kerning first=323 second=1194 amount=-2 -kerning first=904 second=283 amount=-1 -kerning first=86 second=943 amount=-1 -kerning first=89 second=252 amount=-2 -kerning first=946 second=217 amount=-2 -kerning first=246 second=8222 amount=-1 -kerning first=255 second=79 amount=-2 -kerning first=375 second=229 amount=-1 -kerning first=972 second=119 amount=-1 -kerning first=47 second=341 amount=-1 -kerning first=1048 second=1026 amount=-5 -kerning first=50 second=103 amount=-1 -kerning first=190 second=253 amount=-1 -kerning first=299 second=1257 amount=-1 -kerning first=70 second=267 amount=-1 -kerning first=910 second=230 amount=-4 -kerning first=1168 second=360 amount=-2 -kerning first=230 second=1083 amount=-1 -kerning first=356 second=242 amount=-3 -kerning first=944 second=947 amount=-4 -kerning first=948 second=372 amount=-5 -kerning first=1220 second=287 amount=-1 -kerning first=253 second=945 amount=-1 -kerning first=376 second=1240 amount=-3 -kerning first=169 second=268 amount=-2 -kerning first=8216 second=1108 amount=-1 -kerning first=8220 second=347 amount=-1 -kerning first=48 second=972 amount=-1 -kerning first=51 second=281 amount=-1 -kerning first=1065 second=231 amount=-1 -kerning first=906 second=1263 amount=-1 -kerning first=94 second=357 amount=-1 -kerning first=237 second=269 amount=-1 -kerning first=174 second=216 amount=-2 -kerning first=288 second=106 amount=2 -kerning first=8225 second=289 amount=-1 -kerning first=8221 second=1033 amount=-3 -kerning first=55 second=228 amount=-1 -kerning first=198 second=118 amount=-4 -kerning first=72 second=1194 amount=-2 -kerning first=1178 second=245 amount=-1 -kerning first=956 second=257 amount=-1 -kerning first=121 second=229 amount=-1 -kerning first=381 second=963 amount=-1 -kerning first=175 second=371 amount=-1 -kerning first=286 second=1026 amount=-1 -kerning first=289 second=286 amount=-2 -kerning first=53 second=1257 amount=-1 -kerning first=1067 second=1090 amount=-3 -kerning first=317 second=218 amount=-2 -kerning first=8361 second=376 amount=-5 -kerning first=931 second=273 amount=-1 -kerning first=923 second=964 amount=-3 -kerning first=102 second=242 amount=-1 -kerning first=239 second=947 amount=-4 -kerning first=365 second=287 amount=-1 -kerning first=1037 second=347 amount=-1 -kerning first=176 second=1069 amount=-1 -kerning first=183 second=81 amount=-2 -kerning first=1071 second=965 amount=-1 -kerning first=203 second=243 amount=-1 -kerning first=318 second=373 amount=-4 -kerning first=369 second=232 amount=-1 -kerning first=963 second=362 amount=-2 -kerning first=960 second=1176 amount=-1 -kerning first=966 second=122 amount=-1 -kerning first=126 second=332 amount=-2 -kerning first=271 second=244 amount=-1 -kerning first=1038 second=1033 amount=-1 -kerning first=44 second=106 amount=2 -kerning first=61 second=962 amount=-1 -kerning first=1080 second=221 amount=-5 -kerning first=327 second=83 amount=-1 -kerning first=8372 second=261 amount=-1 -kerning first=902 second=233 amount=-1 -kerning first=8366 second=953 amount=-1 -kerning first=1202 second=290 amount=-1 -kerning first=247 second=949 amount=-1 -kerning first=250 second=257 amount=-1 -kerning first=160 second=963 amount=-1 -kerning first=163 second=271 amount=-1 -kerning first=42 second=1026 amount=-5 -kerning first=1049 second=234 amount=-1 -kerning first=297 second=1090 amount=-3 -kerning first=300 second=334 amount=-2 -kerning first=1081 second=376 amount=-5 -kerning first=228 second=964 amount=-1 -kerning first=1210 second=235 amount=-1 -kerning first=374 second=335 amount=-4 -kerning first=167 second=219 amount=-2 -kerning first=274 second=1108 amount=-1 -kerning first=49 second=231 amount=-1 -kerning first=189 second=361 amount=-1 -kerning first=192 second=121 amount=-1 -kerning first=301 second=965 amount=-1 -kerning first=69 second=373 amount=-4 -kerning first=66 second=1202 amount=-2 -kerning first=209 second=1028 amount=-2 -kerning first=8377 second=1184 amount=-5 -kerning first=1170 second=248 amount=-1 -kerning first=252 second=1176 amount=-1 -kerning first=255 second=362 amount=-2 -kerning first=375 second=966 amount=-1 -kerning first=378 second=275 amount=-1 -kerning first=168 second=374 amount=-5 -kerning first=47 second=1298 amount=-4 -kerning first=1064 second=337 amount=-1 -kerning first=1067 second=99 amount=-1 -kerning first=196 second=71 amount=-2 -kerning first=67 second=8230 amount=-1 -kerning first=1096 second=261 amount=-1 -kerning first=910 second=967 amount=-2 -kerning first=96 second=245 amount=-1 -kerning first=236 second=375 amount=-1 -kerning first=253 second=8211 amount=-2 -kerning first=1263 second=100 amount=-1 -kerning first=34 second=194 amount=-3 -kerning first=1027 second=352 amount=-1 -kerning first=176 second=84 amount=-5 -kerning first=287 second=234 amount=-1 -kerning first=8224 second=1241 amount=-1 -kerning first=54 second=334 amount=-2 -kerning first=51 second=1090 amount=-3 -kerning first=197 second=246 amount=-1 -kerning first=1184 second=113 amount=-2 -kerning first=363 second=235 amount=-1 -kerning first=955 second=365 amount=-1 -kerning first=120 second=335 amount=-2 -kerning first=123 second=97 amount=-1 -kerning first=260 second=936 amount=-3 -kerning first=35 second=347 amount=-1 -kerning first=177 second=259 amount=-1 -kerning first=180 second=34 amount=-3 -kerning first=55 second=965 amount=-1 -kerning first=1073 second=224 amount=-1 -kerning first=8363 second=266 amount=-2 -kerning first=8366 second=39 amount=-3 -kerning first=221 second=336 amount=-3 -kerning first=936 second=171 amount=-3 -kerning first=98 second=1113 amount=-1 -kerning first=121 second=966 amount=-1 -kerning first=124 second=275 amount=-1 -kerning first=39 second=289 amount=-1 -kerning first=294 second=337 amount=-1 -kerning first=297 second=99 amount=-1 -kerning first=62 second=221 amount=-5 -kerning first=202 second=351 amount=-1 -kerning first=205 second=111 amount=-1 -kerning first=317 second=953 amount=-1 -kerning first=322 second=261 amount=-1 -kerning first=8369 second=214 amount=-2 -kerning first=222 second=967 amount=-1 -kerning first=346 second=198 amount=-1 -kerning first=105 second=290 amount=-2 -kerning first=371 second=100 amount=-1 -kerning first=965 second=250 amount=-1 -kerning first=962 second=941 amount=-1 -kerning first=8211 second=65 amount=-2 -kerning first=43 second=234 amount=-1 -kerning first=1041 second=1241 amount=-1 -kerning first=183 second=364 amount=-2 -kerning first=298 second=277 amount=-1 -kerning first=63 second=376 amount=-5 -kerning first=203 second=1035 amount=-5 -kerning first=206 second=291 amount=-1 -kerning first=1083 second=89 amount=-5 -kerning first=8370 second=369 amount=-1 -kerning first=901 second=339 amount=-1 -kerning first=80 second=8212 amount=-2 -kerning first=904 second=101 amount=-1 -kerning first=249 second=365 amount=-1 -kerning first=180 second=8216 amount=-3 -kerning first=302 second=224 amount=-1 -kerning first=61 second=8250 amount=-1 -kerning first=1084 second=266 amount=-2 -kerning first=327 second=366 amount=-2 -kerning first=905 second=279 amount=-1 -kerning first=902 second=970 amount=-1 -kerning first=90 second=248 amount=-1 -kerning first=230 second=378 amount=-1 -kerning first=948 second=213 amount=-2 -kerning first=247 second=8217 amount=-3 -kerning first=1220 second=103 amount=-1 -kerning first=376 second=225 amount=-4 -kerning first=973 second=115 amount=-1 -kerning first=169 second=87 amount=-5 -kerning first=48 second=337 amount=-1 -kerning first=51 second=99 amount=-1 -kerning first=188 second=940 amount=-1 -kerning first=191 second=249 amount=-1 -kerning first=231 second=1078 amount=-1 -kerning first=117 second=100 amount=-1 -kerning first=1210 second=972 amount=-1 -kerning first=254 second=941 amount=-1 -kerning first=1223 second=281 amount=-1 -kerning first=170 second=262 amount=-2 -kerning first=1028 second=65 amount=-1 -kerning first=280 second=1241 amount=-1 -kerning first=49 second=968 amount=-1 -kerning first=52 second=277 amount=-1 -kerning first=195 second=199 amount=-2 -kerning first=304 second=1079 amount=-1 -kerning first=313 second=89 amount=-6 -kerning first=75 second=211 amount=-3 -kerning first=1095 second=369 amount=-1 -kerning first=215 second=339 amount=-1 -kerning first=95 second=353 amount=-1 -kerning first=235 second=955 amount=-1 -kerning first=238 second=263 amount=-1 -kerning first=950 second=1066 amount=-5 -kerning first=946 second=8221 amount=-3 -kerning first=1240 second=90 amount=-1 -kerning first=175 second=212 amount=-2 -kerning first=8226 second=283 amount=-1 -kerning first=56 second=224 amount=-1 -kerning first=1064 second=1256 amount=-2 -kerning first=196 second=354 amount=-5 -kerning first=193 second=1118 amount=-1 -kerning first=314 second=266 amount=-2 -kerning first=317 second=39 amount=-3 -kerning first=8361 second=217 amount=-2 -kerning first=73 second=1184 amount=-5 -kerning first=76 second=366 amount=-1 -kerning first=1090 second=8222 amount=-3 -kerning first=1176 second=920 amount=-2 -kerning first=365 second=103 amount=-1 -kerning first=958 second=253 amount=-1 -kerning first=176 second=367 amount=-1 -kerning first=172 second=1185 amount=-3 -kerning first=197 second=1038 amount=-2 -kerning first=318 second=214 amount=-2 -kerning first=74 second=8218 amount=-1 -kerning first=223 second=226 amount=-1 -kerning first=934 second=268 amount=-2 -kerning first=363 second=972 amount=-1 -kerning first=38 second=1241 amount=-1 -kerning first=41 second=187 amount=-1 -kerning first=174 second=8220 amount=-3 -kerning first=296 second=227 amount=-1 -kerning first=8240 second=1263 amount=-1 -kerning first=64 second=89 amount=-5 -kerning first=58 second=1079 amount=-1 -kerning first=1076 second=269 amount=-1 -kerning first=321 second=369 amount=-1 -kerning first=84 second=251 amount=-2 -kerning first=221 second=1224 amount=-3 -kerning first=241 second=8221 amount=-1 -kerning first=1202 second=106 amount=7 -kerning first=967 second=118 amount=-4 -kerning first=273 second=240 amount=-1 -kerning first=45 second=102 amount=-2 -kerning first=1046 second=283 amount=-2 -kerning first=182 second=943 amount=-1 -kerning first=185 second=252 amount=-1 -kerning first=294 second=1256 amount=-2 -kerning first=65 second=266 amount=-2 -kerning first=1081 second=217 amount=-2 -kerning first=8369 second=949 amount=-1 -kerning first=903 second=229 amount=-1 -kerning first=1118 second=119 amount=-4 -kerning first=942 second=371 amount=-1 -kerning first=251 second=253 amount=-1 -kerning first=164 second=267 amount=-1 -kerning first=8211 second=346 amount=-1 -kerning first=1051 second=230 amount=-1 -kerning first=69 second=214 amount=-2 -kerning first=1083 second=372 amount=-5 -kerning first=206 second=1101 amount=-1 -kerning first=901 second=1262 amount=-2 -kerning first=904 second=1240 amount=-2 -kerning first=92 second=116 amount=-1 -kerning first=950 second=81 amount=-2 -kerning first=1219 second=231 amount=-1 -kerning first=372 second=1084 amount=-2 -kerning first=8218 second=288 amount=-1 -kerning first=50 second=227 amount=-1 -kerning first=1048 second=1263 amount=-1 -kerning first=190 second=357 amount=-1 -kerning first=193 second=117 amount=-1 -kerning first=305 second=269 amount=-1 -kerning first=70 second=369 amount=-1 -kerning first=8378 second=1176 amount=-1 -kerning first=910 second=332 amount=-3 -kerning first=1171 second=244 amount=-1 -kerning first=236 second=216 amount=-2 -kerning first=259 second=118 amount=-1 -kerning first=376 second=962 amount=-4 -kerning first=166 second=1194 amount=-2 -kerning first=169 second=370 amount=-2 -kerning first=282 second=283 amount=-1 -kerning first=8224 second=233 amount=-1 -kerning first=48 second=1256 amount=-2 -kerning first=1065 second=333 amount=-1 -kerning first=197 second=67 amount=-2 -kerning first=68 second=8222 amount=-1 -kerning first=77 second=79 amount=-2 -kerning first=1094 second=949 amount=-1 -kerning first=338 second=119 amount=-4 -kerning first=916 second=271 amount=-1 -kerning first=94 second=920 amount=-2 -kerning first=237 second=371 amount=-1 -kerning first=357 second=1026 amount=-5 -kerning first=114 second=1257 amount=-1 -kerning first=1223 second=1090 amount=-3 -kerning first=1066 second=964 amount=-2 -kerning first=1073 second=45 amount=-2 -kerning first=198 second=242 amount=-1 -kerning first=313 second=372 amount=-4 -kerning first=8363 second=85 amount=-2 -kerning first=75 second=945 amount=-2 -kerning first=215 second=1262 amount=-2 -kerning first=928 second=219 amount=-2 -kerning first=1175 second=1108 amount=-1 -kerning first=238 second=1069 amount=-1 -kerning first=956 second=361 amount=-1 -kerning first=1036 second=288 amount=-3 -kerning first=59 second=269 amount=-1 -kerning first=1074 second=220 amount=-2 -kerning first=1099 second=1176 amount=-1 -kerning first=343 second=244 amount=-1 -kerning first=931 second=374 amount=-5 -kerning first=105 second=106 amount=1 -kerning first=362 second=1298 amount=-1 -kerning first=965 second=71 amount=-2 -kerning first=122 second=962 amount=-1 -kerning first=270 second=193 amount=-2 -kerning first=40 second=283 amount=-1 -kerning first=1041 second=233 amount=-1 -kerning first=63 second=217 amount=-2 -kerning first=318 second=949 amount=-1 -kerning first=323 second=257 amount=-1 -kerning first=8370 second=210 amount=-2 -kerning first=86 second=119 amount=-1 -kerning first=223 second=963 amount=-1 -kerning first=103 second=1026 amount=-5 -kerning first=947 second=234 amount=-1 -kerning first=369 second=334 amount=-2 -kerning first=162 second=218 amount=-2 -kerning first=271 second=346 amount=-1 -kerning first=184 second=360 amount=-2 -kerning first=187 second=120 amount=-2 -kerning first=302 second=45 amount=-2 -kerning first=299 second=273 amount=-1 -kerning first=296 second=964 amount=-3 -kerning first=61 second=947 amount=-4 -kerning first=64 second=372 amount=-5 -kerning first=1073 second=8249 amount=-3 -kerning first=1084 second=85 amount=-2 -kerning first=207 second=287 amount=-1 -kerning first=8372 second=365 amount=-1 -kerning first=902 second=335 amount=-1 -kerning first=905 second=97 amount=-1 -kerning first=345 second=1108 amount=-1 -kerning first=944 second=259 amount=-1 -kerning first=948 second=34 amount=-3 -kerning first=250 second=361 amount=-1 -kerning first=253 second=121 amount=-1 -kerning first=376 second=46 amount=-4 -kerning first=163 second=373 amount=-4 -kerning first=273 second=1028 amount=-2 -kerning first=276 second=288 amount=-2 -kerning first=42 second=1263 amount=-1 -kerning first=1049 second=336 amount=-2 -kerning first=303 second=220 amount=-2 -kerning first=325 second=1176 amount=-1 -kerning first=8369 second=8217 amount=-3 -kerning first=903 second=966 amount=-1 -kerning first=906 second=275 amount=-1 -kerning first=91 second=244 amount=-1 -kerning first=354 second=289 amount=-2 -kerning first=1210 second=337 amount=-1 -kerning first=1223 second=99 amount=-1 -kerning first=971 second=351 amount=-1 -kerning first=170 second=83 amount=-1 -kerning first=280 second=233 amount=-1 -kerning first=49 second=333 amount=-1 -kerning first=192 second=245 amount=-1 -kerning first=304 second=375 amount=-1 -kerning first=69 second=949 amount=-1 -kerning first=72 second=257 amount=-1 -kerning first=1095 second=210 amount=-2 -kerning first=1170 second=352 amount=-1 -kerning first=238 second=84 amount=-5 -kerning first=358 second=234 amount=-1 -kerning first=950 second=364 amount=-2 -kerning first=112 second=1090 amount=-1 -kerning first=1219 second=968 amount=-1 -kerning first=1224 second=277 amount=-1 -kerning first=258 second=246 amount=-1 -kerning first=1026 second=291 amount=-1 -kerning first=171 second=258 amount=-1 -kerning first=8218 second=1098 amount=-3 -kerning first=8226 second=101 amount=-1 -kerning first=53 second=273 amount=-1 -kerning first=56 second=45 amount=-2 -kerning first=50 second=964 amount=-3 -kerning first=302 second=8249 amount=-3 -kerning first=314 second=85 amount=-2 -kerning first=1096 second=365 amount=-1 -kerning first=93 second=1108 amount=-1 -kerning first=96 second=347 amount=-1 -kerning first=239 second=259 amount=-1 -kerning first=242 second=34 amount=-1 -kerning first=948 second=8216 amount=-3 -kerning first=1263 second=224 amount=-1 -kerning first=262 second=196 amount=-1 -kerning first=376 second=8250 amount=-2 -kerning first=287 second=336 amount=-2 -kerning first=8224 second=970 amount=-1 -kerning first=57 second=220 amount=-2 -kerning first=1071 second=171 amount=-3 -kerning first=197 second=350 amount=-1 -kerning first=77 second=362 amount=-2 -kerning first=74 second=1176 amount=-1 -kerning first=100 second=289 amount=-1 -kerning first=934 second=87 amount=-5 -kerning first=363 second=337 amount=-1 -kerning first=955 second=940 amount=-1 -kerning first=960 second=249 amount=-1 -kerning first=123 second=221 amount=-5 -kerning first=38 second=233 amount=-1 -kerning first=177 second=363 amount=-1 -kerning first=174 second=1177 amount=-1 -kerning first=8260 second=226 amount=-1 -kerning first=58 second=375 amount=-1 -kerning first=201 second=290 amount=-2 -kerning first=321 second=210 amount=-2 -kerning first=8363 second=368 amount=-2 -kerning first=75 second=8211 amount=-4 -kerning first=936 second=262 amount=-2 -kerning first=1185 second=1241 amount=-2 -kerning first=367 second=277 amount=-1 -kerning first=964 second=199 amount=-2 -kerning first=124 second=376 amount=-5 -kerning first=1299 second=1079 amount=-1 -kerning first=266 second=1035 amount=-1 -kerning first=1039 second=339 amount=-1 -kerning first=175 second=8212 amount=-2 -kerning first=178 second=1059 amount=-2 -kerning first=1036 second=1098 amount=-4 -kerning first=1046 second=101 amount=-2 -kerning first=56 second=8249 amount=-3 -kerning first=65 second=85 amount=-2 -kerning first=1078 second=263 amount=-2 -kerning first=205 second=235 amount=-1 -kerning first=322 second=365 amount=-1 -kerning first=8364 second=1066 amount=-5 -kerning first=8361 second=8221 amount=-3 -kerning first=942 second=212 amount=-2 -kerning first=242 second=8216 amount=-1 -kerning first=371 second=224 amount=-1 -kerning first=965 second=354 amount=-5 -kerning first=962 second=1118 amount=-1 -kerning first=43 second=336 amount=-2 -kerning first=1041 second=970 amount=-1 -kerning first=186 second=248 amount=-1 -kerning first=301 second=171 amount=-3 -kerning first=66 second=260 amount=-1 -kerning first=1083 second=213 amount=-2 -kerning first=318 second=8217 amount=-3 -kerning first=8377 second=253 amount=-1 -kerning first=904 second=225 amount=-1 -kerning first=89 second=197 amount=-5 -kerning first=1119 second=115 amount=-1 -kerning first=940 second=1185 amount=-2 -kerning first=252 second=249 amount=-1 -kerning first=249 second=940 amount=-1 -kerning first=165 second=261 amount=-1 -kerning first=162 second=953 amount=-1 -kerning first=70 second=210 amount=-1 -kerning first=1084 second=368 amount=-2 -kerning first=327 second=941 amount=-1 -kerning first=87 second=1116 amount=-2 -kerning first=356 second=187 amount=-1 -kerning first=941 second=8220 amount=-1 -kerning first=113 second=277 amount=-1 -kerning first=1220 second=227 amount=-1 -kerning first=256 second=199 amount=-2 -kerning first=376 second=326 amount=-3 -kerning first=169 second=211 amount=-2 -kerning first=276 second=1098 amount=-3 -kerning first=282 second=101 amount=-1 -kerning first=191 second=353 amount=-1 -kerning first=194 second=113 amount=-1 -kerning first=306 second=263 amount=-1 -kerning first=1081 second=8221 amount=-3 -kerning first=1085 second=1066 amount=-5 -kerning first=1174 second=240 amount=-1 -kerning first=237 second=212 amount=-2 -kerning first=354 second=1099 amount=-2 -kerning first=952 second=252 amount=-1 -kerning first=117 second=224 amount=-1 -kerning first=1210 second=1256 amount=-2 -kerning first=254 second=1118 amount=-1 -kerning first=167 second=1184 amount=-5 -kerning first=170 second=366 amount=-2 -kerning first=280 second=970 amount=-1 -kerning first=8225 second=229 amount=-1 -kerning first=55 second=171 amount=-2 -kerning first=313 second=213 amount=-1 -kerning first=69 second=8217 amount=-3 -kerning first=238 second=367 amount=-1 -kerning first=235 second=1185 amount=-1 -kerning first=258 second=1038 amount=-2 -kerning first=1026 second=1101 amount=-1 -kerning first=289 second=226 amount=-1 -kerning first=8222 second=1262 amount=-1 -kerning first=8226 second=1240 amount=-2 -kerning first=314 second=368 amount=-2 -kerning first=8364 second=81 amount=-2 -kerning first=76 second=941 amount=-1 -kerning first=236 second=8220 amount=-3 -kerning first=365 second=227 amount=-1 -kerning first=958 second=357 amount=-1 -kerning first=962 second=117 amount=-1 -kerning first=125 second=89 amount=-5 -kerning first=37 second=339 amount=-1 -kerning first=40 second=101 amount=-1 -kerning first=179 second=251 amount=-1 -kerning first=60 second=263 amount=-1 -kerning first=315 second=1066 amount=-6 -kerning first=1108 second=118 amount=-1 -kerning first=926 second=1194 amount=-2 -kerning first=934 second=370 amount=-2 -kerning first=1187 second=283 amount=-1 -kerning first=363 second=1256 amount=-2 -kerning first=126 second=266 amount=-2 -kerning first=162 second=39 amount=-3 -kerning first=38 second=970 amount=-1 -kerning first=44 second=51 amount=-1 -kerning first=41 second=279 amount=-1 -kerning first=8260 second=963 amount=-1 -kerning first=64 second=213 amount=-2 -kerning first=1073 second=1195 amount=-1 -kerning first=207 second=103 amount=-1 -kerning first=87 second=115 amount=-2 -kerning first=967 second=242 amount=-1 -kerning first=163 second=214 amount=-2 -kerning first=1039 second=1262 amount=-2 -kerning first=1046 second=1240 amount=-3 -kerning first=185 second=356 amount=-5 -kerning first=188 second=116 amount=-1 -kerning first=300 second=268 amount=-2 -kerning first=65 second=368 amount=-2 -kerning first=1085 second=81 amount=-2 -kerning first=205 second=972 amount=-1 -kerning first=1118 second=243 amount=-1 -kerning first=251 second=357 amount=-1 -kerning first=254 second=117 amount=-1 -kerning first=374 second=269 amount=-4 -kerning first=164 second=369 amount=-1 -kerning first=274 second=973 amount=-1 -kerning first=8217 second=232 amount=-1 -kerning first=1051 second=332 amount=-2 -kerning first=304 second=216 amount=-2 -kerning first=63 second=8221 amount=-3 -kerning first=66 second=1066 amount=-1 -kerning first=333 second=118 amount=-1 -kerning first=904 second=962 amount=-1 -kerning first=92 second=240 amount=-1 -kerning first=89 second=916 amount=-5 +kerning first=107 second=244 amount=-2 +kerning first=107 second=245 amount=-2 +kerning first=107 second=246 amount=-2 +kerning first=107 second=248 amount=-2 +kerning first=107 second=257 amount=-1 +kerning first=107 second=259 amount=-1 +kerning first=107 second=261 amount=-1 +kerning first=107 second=263 amount=-2 +kerning first=107 second=267 amount=-2 +kerning first=107 second=269 amount=-2 +kerning first=107 second=271 amount=-2 +kerning first=107 second=273 amount=-2 +kerning first=107 second=275 amount=-2 +kerning first=107 second=277 amount=-2 +kerning first=107 second=279 amount=-2 +kerning first=107 second=281 amount=-2 +kerning first=107 second=283 amount=-2 +kerning first=107 second=287 amount=-2 +kerning first=107 second=289 amount=-2 +kerning first=107 second=291 amount=-2 +kerning first=107 second=333 amount=-2 +kerning first=107 second=335 amount=-2 +kerning first=107 second=337 amount=-2 +kerning first=107 second=339 amount=-2 +kerning first=107 second=347 amount=-1 +kerning first=107 second=351 amount=-1 +kerning first=107 second=353 amount=-1 +kerning first=107 second=940 amount=-2 +kerning first=107 second=941 amount=-2 +kerning first=107 second=945 amount=-2 +kerning first=107 second=949 amount=-2 +kerning first=107 second=959 amount=-2 +kerning first=107 second=962 amount=-2 +kerning first=107 second=963 amount=-2 +kerning first=107 second=966 amount=-2 +kerning first=107 second=972 amount=-2 +kerning first=107 second=1072 amount=-1 +kerning first=107 second=1077 amount=-2 +kerning first=107 second=1086 amount=-2 +kerning first=107 second=1089 amount=-2 +kerning first=107 second=1092 amount=-2 +kerning first=107 second=1104 amount=-2 +kerning first=107 second=1105 amount=-2 +kerning first=107 second=1108 amount=-2 +kerning first=107 second=1109 amount=-1 +kerning first=107 second=1112 amount=1 +kerning first=107 second=1195 amount=-2 +kerning first=107 second=1241 amount=-2 +kerning first=107 second=1257 amount=-2 +kerning first=107 second=8211 amount=-3 +kerning first=107 second=8212 amount=-3 +kerning first=108 second=106 amount=2 +kerning first=108 second=1112 amount=2 +kerning first=109 second=34 amount=-1 +kerning first=109 second=39 amount=-1 +kerning first=109 second=63 amount=-2 +kerning first=109 second=102 amount=-1 +kerning first=109 second=106 amount=1 +kerning first=109 second=118 amount=-1 +kerning first=109 second=119 amount=-1 +kerning first=109 second=373 amount=-1 +kerning first=109 second=947 amount=-1 +kerning first=109 second=957 amount=-1 +kerning first=109 second=964 amount=-1 +kerning first=109 second=1090 amount=-1 +kerning first=109 second=1098 amount=-1 +kerning first=109 second=1112 amount=1 +kerning first=109 second=1185 amount=-1 +kerning first=109 second=1199 amount=-1 +kerning first=109 second=8216 amount=-1 +kerning first=109 second=8217 amount=-1 +kerning first=109 second=8220 amount=-1 +kerning first=109 second=8221 amount=-1 +kerning first=111 second=34 amount=-1 +kerning first=111 second=39 amount=-1 +kerning first=111 second=44 amount=-1 +kerning first=111 second=46 amount=-1 +kerning first=111 second=47 amount=-1 +kerning first=111 second=63 amount=-2 +kerning first=111 second=102 amount=-1 +kerning first=111 second=118 amount=-1 +kerning first=111 second=119 amount=-1 +kerning first=111 second=120 amount=-2 +kerning first=111 second=122 amount=-1 +kerning first=111 second=373 amount=-1 +kerning first=111 second=378 amount=-1 +kerning first=111 second=380 amount=-1 +kerning first=111 second=382 amount=-1 +kerning first=111 second=947 amount=-1 +kerning first=111 second=955 amount=-1 +kerning first=111 second=957 amount=-1 +kerning first=111 second=964 amount=-1 +kerning first=111 second=967 amount=-2 +kerning first=111 second=1076 amount=-1 +kerning first=111 second=1078 amount=-2 +kerning first=111 second=1083 amount=-1 +kerning first=111 second=1090 amount=-1 +kerning first=111 second=1093 amount=-2 +kerning first=111 second=1098 amount=-1 +kerning first=111 second=1113 amount=-1 +kerning first=111 second=1175 amount=-2 +kerning first=111 second=1185 amount=-1 +kerning first=111 second=1199 amount=-1 +kerning first=111 second=1203 amount=-2 +kerning first=111 second=1299 amount=-1 +kerning first=111 second=8216 amount=-1 +kerning first=111 second=8217 amount=-1 +kerning first=111 second=8218 amount=-1 +kerning first=111 second=8220 amount=-1 +kerning first=111 second=8221 amount=-1 +kerning first=111 second=8222 amount=-1 +kerning first=111 second=8230 amount=-1 +kerning first=112 second=34 amount=-1 +kerning first=112 second=39 amount=-1 +kerning first=112 second=44 amount=-1 +kerning first=112 second=46 amount=-1 +kerning first=112 second=47 amount=-1 +kerning first=112 second=63 amount=-2 +kerning first=112 second=102 amount=-1 +kerning first=112 second=118 amount=-1 +kerning first=112 second=119 amount=-1 +kerning first=112 second=120 amount=-2 +kerning first=112 second=122 amount=-1 +kerning first=112 second=373 amount=-1 +kerning first=112 second=378 amount=-1 +kerning first=112 second=380 amount=-1 kerning first=112 second=382 amount=-1 -kerning first=1219 second=333 amount=-1 -kerning first=258 second=67 amount=-2 -kerning first=47 second=1081 amount=-1 -kerning first=1064 second=271 amount=-1 -kerning first=190 second=920 amount=-2 -kerning first=305 second=371 amount=-1 -kerning first=302 second=1195 amount=-1 -kerning first=73 second=253 amount=-1 -kerning first=915 second=218 amount=-2 -kerning first=1171 second=346 amount=-1 -kerning first=951 second=360 amount=-2 -kerning first=1220 second=964 amount=-3 -kerning first=1263 second=45 amount=-2 -kerning first=376 second=947 amount=-2 -kerning first=1027 second=287 amount=-1 -kerning first=169 second=945 amount=-1 -kerning first=282 second=1240 amount=-2 -kerning first=8224 second=335 amount=-1 -kerning first=54 second=268 amount=-2 -kerning first=306 second=1069 amount=-1 -kerning first=315 second=81 amount=-1 -kerning first=338 second=243 amount=-1 -kerning first=916 second=373 amount=-4 -kerning first=1174 second=1028 amount=-1 -kerning first=357 second=1263 amount=-1 +kerning first=112 second=947 amount=-1 +kerning first=112 second=955 amount=-1 +kerning first=112 second=957 amount=-1 +kerning first=112 second=964 amount=-1 +kerning first=112 second=967 amount=-2 +kerning first=112 second=1076 amount=-1 +kerning first=112 second=1078 amount=-2 +kerning first=112 second=1083 amount=-1 +kerning first=112 second=1090 amount=-1 +kerning first=112 second=1093 amount=-2 +kerning first=112 second=1098 amount=-1 +kerning first=112 second=1113 amount=-1 +kerning first=112 second=1175 amount=-2 +kerning first=112 second=1185 amount=-1 +kerning first=112 second=1199 amount=-1 +kerning first=112 second=1203 amount=-2 +kerning first=112 second=1299 amount=-1 +kerning first=112 second=8216 amount=-1 +kerning first=112 second=8217 amount=-1 +kerning first=112 second=8218 amount=-1 +kerning first=112 second=8220 amount=-1 +kerning first=112 second=8221 amount=-1 +kerning first=112 second=8222 amount=-1 +kerning first=112 second=8230 amount=-1 +kerning first=113 second=44 amount=2 +kerning first=113 second=46 amount=2 +kerning first=113 second=110 amount=2 +kerning first=113 second=114 amount=2 +kerning first=113 second=102 amount=1 +kerning first=113 second=103 amount=3 +kerning first=113 second=106 amount=11 +kerning first=113 second=108 amount=2 +kerning first=113 second=109 amount=2 +kerning first=113 second=112 amount=2 +kerning first=113 second=121 amount=2 +kerning first=113 second=241 amount=2 +kerning first=113 second=253 amount=2 +kerning first=113 second=287 amount=3 +kerning first=113 second=289 amount=3 +kerning first=113 second=291 amount=3 +kerning first=113 second=324 amount=2 +kerning first=113 second=326 amount=2 +kerning first=113 second=328 amount=2 +kerning first=113 second=331 amount=2 +kerning first=113 second=341 amount=2 +kerning first=113 second=343 amount=2 +kerning first=113 second=345 amount=2 +kerning first=113 second=375 amount=2 +kerning first=113 second=942 amount=2 +kerning first=113 second=951 amount=2 +kerning first=113 second=954 amount=2 +kerning first=113 second=1074 amount=2 +kerning first=113 second=1075 amount=2 +kerning first=113 second=1080 amount=2 +kerning first=113 second=1081 amount=2 +kerning first=113 second=1082 amount=2 +kerning first=113 second=1084 amount=2 +kerning first=113 second=1085 amount=2 +kerning first=113 second=1087 amount=2 +kerning first=113 second=1088 amount=2 +kerning first=113 second=1091 amount=2 +kerning first=113 second=1094 amount=2 +kerning first=113 second=1096 amount=2 +kerning first=113 second=1097 amount=2 +kerning first=113 second=1099 amount=2 +kerning first=113 second=1100 amount=2 +kerning first=113 second=1102 amount=2 +kerning first=113 second=1107 amount=2 +kerning first=113 second=1112 amount=11 +kerning first=113 second=1114 amount=2 +kerning first=113 second=1116 amount=2 +kerning first=113 second=1117 amount=2 +kerning first=113 second=1118 amount=2 +kerning first=113 second=1119 amount=2 +kerning first=113 second=1169 amount=2 +kerning first=113 second=1179 amount=2 +kerning first=113 second=1187 amount=2 +kerning first=113 second=1220 amount=2 +kerning first=113 second=1224 amount=2 +kerning first=113 second=1263 amount=2 +kerning first=113 second=8218 amount=2 +kerning first=113 second=8222 amount=2 +kerning first=113 second=8230 amount=2 +kerning first=115 second=34 amount=-1 +kerning first=115 second=39 amount=-1 +kerning first=115 second=63 amount=-2 +kerning first=115 second=102 amount=-1 +kerning first=115 second=118 amount=-1 +kerning first=115 second=119 amount=-1 +kerning first=115 second=120 amount=-1 +kerning first=115 second=373 amount=-1 +kerning first=115 second=947 amount=-1 +kerning first=115 second=957 amount=-1 +kerning first=115 second=1078 amount=-1 +kerning first=115 second=1093 amount=-1 +kerning first=115 second=1175 amount=-1 +kerning first=115 second=1199 amount=-1 +kerning first=115 second=1203 amount=-1 +kerning first=115 second=8216 amount=-1 +kerning first=115 second=8217 amount=-1 +kerning first=115 second=8220 amount=-1 +kerning first=115 second=8221 amount=-1 +kerning first=116 second=44 amount=-1 +kerning first=116 second=46 amount=-1 +kerning first=116 second=47 amount=-1 +kerning first=116 second=955 amount=-1 +kerning first=116 second=8218 amount=-1 +kerning first=116 second=8222 amount=-1 +kerning first=116 second=8230 amount=-1 +kerning first=118 second=44 amount=-2 +kerning first=118 second=45 amount=-1 +kerning first=118 second=46 amount=-2 +kerning first=118 second=47 amount=-3 +kerning first=118 second=97 amount=-1 +kerning first=118 second=99 amount=-1 +kerning first=118 second=100 amount=-1 +kerning first=118 second=101 amount=-1 +kerning first=118 second=103 amount=-1 +kerning first=118 second=111 amount=-1 +kerning first=118 second=113 amount=-1 +kerning first=118 second=115 amount=-1 +kerning first=118 second=171 amount=-1 +kerning first=118 second=173 amount=-1 +kerning first=118 second=224 amount=-1 +kerning first=118 second=225 amount=-1 +kerning first=118 second=226 amount=-1 +kerning first=118 second=227 amount=-1 +kerning first=118 second=228 amount=-1 +kerning first=118 second=229 amount=-1 +kerning first=118 second=230 amount=-1 +kerning first=118 second=231 amount=-1 +kerning first=118 second=232 amount=-1 +kerning first=118 second=233 amount=-1 +kerning first=118 second=234 amount=-1 +kerning first=118 second=235 amount=-1 +kerning first=118 second=240 amount=-1 +kerning first=118 second=242 amount=-1 +kerning first=118 second=243 amount=-1 +kerning first=118 second=244 amount=-1 +kerning first=118 second=245 amount=-1 +kerning first=118 second=246 amount=-1 +kerning first=118 second=248 amount=-1 +kerning first=118 second=257 amount=-1 +kerning first=118 second=259 amount=-1 +kerning first=118 second=261 amount=-1 +kerning first=118 second=263 amount=-1 +kerning first=118 second=267 amount=-1 +kerning first=118 second=269 amount=-1 +kerning first=118 second=271 amount=-1 +kerning first=118 second=273 amount=-1 +kerning first=118 second=275 amount=-1 +kerning first=118 second=277 amount=-1 +kerning first=118 second=279 amount=-1 +kerning first=118 second=281 amount=-1 +kerning first=118 second=283 amount=-1 +kerning first=118 second=287 amount=-1 +kerning first=118 second=289 amount=-1 +kerning first=118 second=291 amount=-1 +kerning first=118 second=333 amount=-1 +kerning first=118 second=335 amount=-1 +kerning first=118 second=337 amount=-1 +kerning first=118 second=339 amount=-1 +kerning first=118 second=347 amount=-1 +kerning first=118 second=351 amount=-1 +kerning first=118 second=353 amount=-1 +kerning first=118 second=940 amount=-1 +kerning first=118 second=941 amount=-1 +kerning first=118 second=945 amount=-1 +kerning first=118 second=949 amount=-1 +kerning first=118 second=950 amount=-2 +kerning first=118 second=955 amount=-4 +kerning first=118 second=959 amount=-1 +kerning first=118 second=961 amount=-2 +kerning first=118 second=962 amount=-1 +kerning first=118 second=963 amount=-1 +kerning first=118 second=966 amount=-1 +kerning first=118 second=969 amount=-1 +kerning first=118 second=972 amount=-1 +kerning first=118 second=974 amount=-1 +kerning first=118 second=1072 amount=-1 +kerning first=118 second=1077 amount=-1 +kerning first=118 second=1086 amount=-1 +kerning first=118 second=1089 amount=-1 +kerning first=118 second=1092 amount=-1 +kerning first=118 second=1104 amount=-1 +kerning first=118 second=1105 amount=-1 +kerning first=118 second=1108 amount=-1 +kerning first=118 second=1109 amount=-1 +kerning first=118 second=1195 amount=-1 +kerning first=118 second=1241 amount=-1 +kerning first=118 second=1257 amount=-1 +kerning first=118 second=8211 amount=-1 +kerning first=118 second=8212 amount=-1 +kerning first=118 second=8218 amount=-2 +kerning first=118 second=8222 amount=-2 +kerning first=118 second=8230 amount=-2 +kerning first=118 second=8249 amount=-1 +kerning first=119 second=44 amount=-2 +kerning first=119 second=45 amount=-1 +kerning first=119 second=46 amount=-2 +kerning first=119 second=47 amount=-3 +kerning first=119 second=97 amount=-1 +kerning first=119 second=99 amount=-1 +kerning first=119 second=100 amount=-1 +kerning first=119 second=101 amount=-1 +kerning first=119 second=103 amount=-1 +kerning first=119 second=111 amount=-1 +kerning first=119 second=113 amount=-1 +kerning first=119 second=115 amount=-1 +kerning first=119 second=171 amount=-1 +kerning first=119 second=173 amount=-1 +kerning first=119 second=224 amount=-1 +kerning first=119 second=225 amount=-1 +kerning first=119 second=226 amount=-1 +kerning first=119 second=227 amount=-1 +kerning first=119 second=228 amount=-1 +kerning first=119 second=229 amount=-1 +kerning first=119 second=230 amount=-1 +kerning first=119 second=231 amount=-1 +kerning first=119 second=232 amount=-1 +kerning first=119 second=233 amount=-1 +kerning first=119 second=234 amount=-1 +kerning first=119 second=235 amount=-1 +kerning first=119 second=240 amount=-1 +kerning first=119 second=242 amount=-1 +kerning first=119 second=243 amount=-1 +kerning first=119 second=244 amount=-1 +kerning first=119 second=245 amount=-1 +kerning first=119 second=246 amount=-1 +kerning first=119 second=248 amount=-1 +kerning first=119 second=257 amount=-1 +kerning first=119 second=259 amount=-1 +kerning first=119 second=261 amount=-1 +kerning first=119 second=263 amount=-1 +kerning first=119 second=267 amount=-1 +kerning first=119 second=269 amount=-1 +kerning first=119 second=271 amount=-1 +kerning first=119 second=273 amount=-1 +kerning first=119 second=275 amount=-1 +kerning first=119 second=277 amount=-1 +kerning first=119 second=279 amount=-1 +kerning first=119 second=281 amount=-1 +kerning first=119 second=283 amount=-1 +kerning first=119 second=287 amount=-1 +kerning first=119 second=289 amount=-1 +kerning first=119 second=291 amount=-1 +kerning first=119 second=333 amount=-1 +kerning first=119 second=335 amount=-1 +kerning first=119 second=337 amount=-1 +kerning first=119 second=339 amount=-1 +kerning first=119 second=347 amount=-1 +kerning first=119 second=351 amount=-1 +kerning first=119 second=353 amount=-1 +kerning first=119 second=940 amount=-1 +kerning first=119 second=941 amount=-1 +kerning first=119 second=945 amount=-1 +kerning first=119 second=949 amount=-1 +kerning first=119 second=950 amount=-2 +kerning first=119 second=955 amount=-4 +kerning first=119 second=959 amount=-1 +kerning first=119 second=961 amount=-2 +kerning first=119 second=962 amount=-1 +kerning first=119 second=963 amount=-1 +kerning first=119 second=966 amount=-1 +kerning first=119 second=969 amount=-1 +kerning first=119 second=972 amount=-1 +kerning first=119 second=974 amount=-1 +kerning first=119 second=1072 amount=-1 +kerning first=119 second=1077 amount=-1 +kerning first=119 second=1086 amount=-1 +kerning first=119 second=1089 amount=-1 +kerning first=119 second=1092 amount=-1 +kerning first=119 second=1104 amount=-1 +kerning first=119 second=1105 amount=-1 +kerning first=119 second=1108 amount=-1 +kerning first=119 second=1109 amount=-1 +kerning first=119 second=1195 amount=-1 +kerning first=119 second=1241 amount=-1 +kerning first=119 second=1257 amount=-1 +kerning first=119 second=8211 amount=-1 +kerning first=119 second=8212 amount=-1 +kerning first=119 second=8218 amount=-2 +kerning first=119 second=8222 amount=-2 +kerning first=119 second=8230 amount=-2 +kerning first=119 second=8249 amount=-1 +kerning first=120 second=45 amount=-3 +kerning first=120 second=97 amount=-1 +kerning first=120 second=99 amount=-2 +kerning first=120 second=100 amount=-2 +kerning first=120 second=101 amount=-2 +kerning first=120 second=103 amount=-1 +kerning first=120 second=111 amount=-2 +kerning first=120 second=113 amount=-2 +kerning first=120 second=115 amount=-1 +kerning first=120 second=171 amount=-2 +kerning first=120 second=173 amount=-3 +kerning first=120 second=187 amount=-1 +kerning first=120 second=224 amount=-1 +kerning first=120 second=225 amount=-1 +kerning first=120 second=226 amount=-1 +kerning first=120 second=227 amount=-1 +kerning first=120 second=228 amount=-1 +kerning first=120 second=229 amount=-1 +kerning first=120 second=230 amount=-1 +kerning first=120 second=231 amount=-2 +kerning first=120 second=232 amount=-2 +kerning first=120 second=233 amount=-2 +kerning first=120 second=234 amount=-2 +kerning first=120 second=235 amount=-2 +kerning first=120 second=240 amount=-2 +kerning first=120 second=242 amount=-2 +kerning first=120 second=243 amount=-2 +kerning first=120 second=244 amount=-2 +kerning first=120 second=245 amount=-2 +kerning first=120 second=246 amount=-2 +kerning first=120 second=248 amount=-2 +kerning first=120 second=257 amount=-1 +kerning first=120 second=259 amount=-1 +kerning first=120 second=261 amount=-1 +kerning first=120 second=263 amount=-2 +kerning first=120 second=267 amount=-2 kerning first=120 second=269 amount=-2 -kerning first=1298 second=220 amount=-2 -kerning first=1035 second=232 amount=-1 -kerning first=8225 second=966 amount=-1 -kerning first=8240 second=275 amount=-1 -kerning first=58 second=216 amount=-2 -kerning first=1069 second=374 amount=-3 -kerning first=201 second=106 amount=1 -kerning first=920 second=1071 amount=-1 -kerning first=936 second=83 amount=-1 -kerning first=1185 second=233 amount=-2 -kerning first=124 second=217 amount=-2 -kerning first=1299 second=375 amount=-1 -kerning first=39 second=229 amount=-1 -kerning first=182 second=119 amount=-4 -kerning first=178 second=359 amount=-1 -kerning first=289 second=963 amount=-1 -kerning first=294 second=271 amount=-1 -kerning first=56 second=1195 amount=-1 -kerning first=59 second=371 amount=-1 -kerning first=202 second=286 amount=-2 -kerning first=199 second=1026 amount=-1 -kerning first=8364 second=364 amount=-2 -kerning first=79 second=1046 amount=-3 -kerning first=1107 second=246 amount=-1 -kerning first=105 second=230 amount=-1 -kerning first=248 second=120 amount=-2 -kerning first=365 second=964 amount=-3 -kerning first=371 second=45 amount=-2 -kerning first=125 second=372 amount=-5 -kerning first=1263 second=8249 amount=-3 -kerning first=37 second=1262 amount=-2 -kerning first=40 second=1240 amount=-2 -kerning first=1041 second=335 amount=-1 -kerning first=298 second=219 amount=-2 -kerning first=60 second=1069 amount=-1 -kerning first=1083 second=34 amount=-3 -kerning first=206 second=231 amount=-1 -kerning first=323 second=361 amount=-1 -kerning first=86 second=243 amount=-3 -kerning first=226 second=373 amount=-1 -kerning first=103 second=1263 amount=-1 -kerning first=1187 second=1095 amount=-2 -kerning first=44 second=332 amount=-1 -kerning first=1044 second=966 amount=-1 -kerning first=1048 second=275 amount=-1 -kerning first=299 second=374 amount=-5 -kerning first=67 second=256 amount=-1 -kerning first=8378 second=249 amount=-1 -kerning first=8372 second=940 amount=-1 -kerning first=905 second=221 amount=-5 -kerning first=1168 second=111 amount=-1 -kerning first=1117 second=351 amount=-1 -kerning first=944 second=363 amount=-1 -kerning first=253 second=245 amount=-1 -kerning first=163 second=949 amount=-1 -kerning first=166 second=257 amount=-1 -kerning first=8220 second=100 amount=-1 -kerning first=48 second=271 amount=-1 -kerning first=51 second=44 amount=-1 -kerning first=306 second=84 amount=-5 -kerning first=1085 second=364 amount=-2 -kerning first=906 second=376 amount=-5 -kerning first=91 second=346 amount=-1 -kerning first=1118 second=1035 amount=-5 -kerning first=942 second=8212 amount=-2 -kerning first=117 second=45 amount=-2 -kerning first=111 second=964 amount=-1 -kerning first=114 second=273 amount=-1 -kerning first=371 second=8249 amount=-3 -kerning first=374 second=1074 amount=-3 -kerning first=280 second=335 amount=-1 -kerning first=52 second=219 amount=-2 -kerning first=189 second=1108 amount=-1 -kerning first=192 second=347 amount=-1 -kerning first=313 second=34 amount=-3 -kerning first=72 second=361 amount=-1 -kerning first=1083 second=8216 amount=-3 -kerning first=75 second=121 amount=-2 -kerning first=218 second=46 amount=-1 -kerning first=336 second=196 amount=-2 -kerning first=904 second=8250 amount=-1 -kerning first=920 second=86 amount=-2 -kerning first=92 second=1028 amount=-2 -kerning first=95 second=288 amount=-2 -kerning first=358 second=336 amount=-2 -kerning first=258 second=350 amount=-1 -kerning first=168 second=1176 amount=-1 -kerning first=8226 second=225 amount=-1 -kerning first=53 second=374 amount=-5 -kerning first=1070 second=87 amount=-2 -kerning first=196 second=289 amount=-1 -kerning first=1099 second=249 amount=-1 -kerning first=1096 second=940 amount=-1 -kerning first=923 second=261 amount=-1 -kerning first=915 second=953 amount=-1 -kerning first=236 second=1177 amount=-1 -kerning first=239 second=363 amount=-1 -kerning first=169 second=8211 amount=-2 -kerning first=1037 second=100 amount=-1 -kerning first=60 second=84 amount=-5 -kerning first=1071 second=262 amount=-2 -kerning first=200 second=234 amount=-1 -kerning first=315 second=364 amount=-1 -kerning first=80 second=246 amount=-1 -kerning first=1103 second=199 amount=-2 -kerning first=338 second=1035 amount=-5 -kerning first=341 second=291 amount=-1 -kerning first=934 second=211 amount=-2 -kerning first=1177 second=1098 amount=-1 -kerning first=237 second=8212 amount=-2 -kerning first=240 second=1059 amount=-2 -kerning first=1184 second=339 amount=-2 -kerning first=1187 second=101 amount=-1 -kerning first=960 second=353 amount=-1 -kerning first=963 second=113 amount=-1 -kerning first=117 second=8249 amount=-3 -kerning first=126 second=85 amount=-2 -kerning first=38 second=335 amount=-1 -kerning first=41 second=97 amount=-1 -kerning first=61 second=259 amount=-1 -kerning first=64 second=34 amount=-3 -kerning first=313 second=8216 amount=-3 -kerning first=8363 second=943 amount=-1 -kerning first=8366 second=252 amount=-1 -kerning first=84 second=196 amount=-6 -kerning first=221 second=1075 amount=-3 -kerning first=928 second=1184 amount=-5 -kerning first=936 second=366 amount=-2 -kerning first=247 second=248 amount=-1 -kerning first=45 second=47 amount=-1 -kerning first=42 second=275 amount=-1 -kerning first=1046 second=225 amount=-1 -kerning first=39 second=966 amount=-1 -kerning first=300 second=87 amount=-5 -kerning first=1074 second=1185 amount=-3 -kerning first=205 second=337 amount=-1 -kerning first=322 second=940 amount=-1 -kerning first=325 second=249 amount=-1 -kerning first=88 second=111 amount=-2 -kerning first=164 second=210 amount=-2 -kerning first=274 second=338 amount=-2 -kerning first=186 second=352 amount=-1 -kerning first=301 second=262 amount=-2 -kerning first=206 second=968 amount=-1 -kerning first=209 second=277 amount=-1 -kerning first=330 second=199 amount=-2 -kerning first=8377 second=357 amount=-1 -kerning first=901 second=1079 amount=-1 -kerning first=908 second=89 amount=-3 -kerning first=86 second=1035 amount=-5 -kerning first=89 second=291 amount=-4 -kerning first=946 second=251 amount=-1 -kerning first=255 second=113 amount=-1 -kerning first=252 second=353 amount=-1 -kerning first=375 second=263 amount=-1 -kerning first=165 second=365 amount=-1 -kerning first=305 second=212 amount=-2 -kerning first=64 second=8216 amount=-3 -kerning first=1084 second=943 amount=-1 -kerning first=327 second=1118 amount=-1 -kerning first=915 second=39 amount=-3 -kerning first=910 second=266 amount=-3 -kerning first=356 second=279 amount=-3 -kerning first=259 second=63 amount=-2 -kerning first=379 second=213 amount=-1 -kerning first=163 second=8217 amount=-3 -kerning first=1027 second=103 amount=-1 -kerning first=282 second=225 amount=-1 -kerning first=8216 second=1257 amount=-1 -kerning first=54 second=87 amount=-5 -kerning first=1065 second=267 amount=-1 -kerning first=303 second=1185 amount=-3 -kerning first=306 second=367 amount=-1 -kerning first=74 second=249 amount=-1 -kerning first=916 second=214 amount=-2 -kerning first=952 second=356 amount=-5 -kerning first=955 second=116 amount=-1 -kerning first=35 second=100 amount=-1 -kerning first=174 second=250 amount=-1 -kerning first=170 second=941 amount=-1 -kerning first=283 second=380 amount=-1 -kerning first=55 second=262 amount=-2 -kerning first=195 second=1241 amount=-1 -kerning first=198 second=187 amount=-1 -kerning first=304 second=8220 amount=-3 -kerning first=78 second=199 amount=-2 -kerning first=215 second=1079 amount=-1 -kerning first=95 second=1098 amount=-3 -kerning first=118 second=955 amount=-4 -kerning first=121 second=263 amount=-1 -kerning first=1299 second=216 amount=-2 -kerning first=1036 second=228 amount=-1 -kerning first=8226 second=962 amount=-1 -kerning first=59 second=212 amount=-2 -kerning first=1067 second=1194 amount=-2 -kerning first=317 second=252 amount=-1 -kerning first=314 second=943 amount=-1 -kerning first=76 second=1118 amount=-1 -kerning first=79 second=354 amount=-2 -kerning first=225 second=39 amount=-1 -kerning first=102 second=279 amount=-1 -kerning first=958 second=920 amount=-2 -kerning first=125 second=213 amount=-2 -kerning first=1263 second=1195 amount=-1 -kerning first=40 second=225 amount=-1 -kerning first=179 second=355 amount=-1 -kerning first=183 second=115 amount=-1 -kerning first=57 second=1185 amount=-3 -kerning first=60 second=367 amount=-1 -kerning first=8365 second=360 amount=-2 -kerning first=80 second=1038 amount=-2 -kerning first=934 second=945 amount=-1 -kerning first=249 second=116 amount=-1 -kerning first=369 second=268 amount=-2 -kerning first=126 second=368 amount=-2 -kerning first=271 second=281 amount=-1 -kerning first=187 second=65 amount=-3 -kerning first=58 second=8220 amount=-3 -kerning first=207 second=227 amount=-1 -kerning first=327 second=117 amount=-1 -kerning first=902 second=269 amount=-1 -kerning first=1202 second=332 amount=-1 -kerning first=160 second=1066 amount=-5 -kerning first=124 second=8221 amount=-3 -kerning first=276 second=228 amount=-1 -kerning first=1046 second=962 amount=-2 -kerning first=188 second=240 amount=-1 -kerning first=297 second=1194 amount=-2 -kerning first=300 second=370 amount=-2 -kerning first=65 second=943 amount=-1 -kerning first=205 second=1256 amount=-2 -kerning first=906 second=217 amount=-2 -kerning first=354 second=229 amount=-2 -kerning first=949 second=119 amount=-1 -kerning first=1210 second=271 amount=-1 -kerning first=1203 second=963 amount=-1 -kerning first=251 second=920 amount=-2 -kerning first=371 second=1195 amount=-1 -kerning first=374 second=371 amount=-2 -kerning first=968 second=1026 amount=-5 -kerning first=971 second=286 amount=-2 -kerning first=167 second=253 amount=-1 -kerning first=274 second=1257 amount=-1 -kerning first=49 second=267 amount=-1 -kerning first=1063 second=218 amount=-2 -kerning first=1087 second=360 amount=-2 -kerning first=904 second=947 amount=-4 -kerning first=908 second=372 amount=-2 -kerning first=89 second=1101 amount=-4 -kerning first=1170 second=287 amount=-1 -kerning first=1224 second=219 amount=-2 -kerning first=375 second=1069 amount=-1 -kerning first=381 second=81 amount=-1 -kerning first=1026 second=231 amount=-1 -kerning first=8218 second=965 amount=-1 -kerning first=1064 second=373 amount=-4 -kerning first=70 second=1169 amount=-1 -kerning first=73 second=357 amount=-1 -kerning first=76 second=117 amount=-1 -kerning first=93 second=973 amount=-1 -kerning first=1176 second=232 amount=-1 -kerning first=356 second=1085 amount=-2 -kerning first=954 second=244 amount=-2 -kerning first=1256 second=374 amount=-3 -kerning first=262 second=106 amount=1 -kerning first=34 second=228 amount=-1 -kerning first=176 second=118 amount=-4 -kerning first=282 second=962 amount=-1 -kerning first=8230 second=221 amount=-4 -kerning first=51 second=1194 amount=-2 -kerning first=54 second=370 amount=-2 -kerning first=1071 second=83 amount=-1 -kerning first=197 second=283 amount=-1 -kerning first=80 second=67 amount=-2 -kerning first=916 second=949 amount=-1 -kerning first=926 second=257 amount=-1 -kerning first=100 second=229 amount=-1 -kerning first=240 second=359 amount=-1 -kerning first=243 second=119 amount=-1 -kerning first=363 second=271 amount=-1 -kerning first=366 second=44 amount=-1 -kerning first=117 second=1195 amount=-1 -kerning first=260 second=1026 amount=-5 -kerning first=1035 second=334 amount=-2 -kerning first=291 second=218 amount=-2 -kerning first=8240 second=376 amount=-5 -kerning first=201 second=230 amount=-1 -kerning first=316 second=360 amount=-2 -kerning first=1185 second=335 amount=-2 -kerning first=367 second=219 amount=-2 -kerning first=956 second=1108 amount=-1 -kerning first=121 second=1069 amount=-1 -kerning first=160 second=81 amount=-2 -kerning first=1036 second=965 amount=-1 -kerning first=182 second=243 amount=-1 -kerning first=294 second=373 amount=-4 -kerning first=8226 second=8250 amount=-1 -kerning first=8369 second=248 amount=-1 -kerning first=900 second=220 amount=-2 -kerning first=1102 second=1113 amount=-1 -kerning first=931 second=1176 amount=-1 -kerning first=105 second=332 amount=-2 -kerning first=1186 second=966 amount=-1 -kerning first=965 second=289 amount=-1 -kerning first=40 second=962 amount=-1 -kerning first=1047 second=221 amount=-2 -kerning first=301 second=83 amount=-1 -kerning first=206 second=333 amount=-1 -kerning first=901 second=375 amount=-1 -kerning first=86 second=345 amount=-2 -kerning first=934 second=8211 amount=-2 -kerning first=112 second=44 amount=-1 -kerning first=375 second=84 amount=-5 -kerning first=271 second=1090 amount=-3 -kerning first=8218 second=49 amount=-4 -kerning first=47 second=218 amount=-2 -kerning first=1048 second=376 amount=-5 +kerning first=120 second=271 amount=-2 +kerning first=120 second=273 amount=-2 +kerning first=120 second=275 amount=-2 +kerning first=120 second=277 amount=-2 +kerning first=120 second=279 amount=-2 +kerning first=120 second=281 amount=-2 +kerning first=120 second=283 amount=-2 +kerning first=120 second=287 amount=-1 +kerning first=120 second=289 amount=-1 +kerning first=120 second=291 amount=-1 +kerning first=120 second=333 amount=-2 +kerning first=120 second=335 amount=-2 +kerning first=120 second=337 amount=-2 +kerning first=120 second=339 amount=-2 +kerning first=120 second=347 amount=-1 +kerning first=120 second=351 amount=-1 +kerning first=120 second=353 amount=-1 +kerning first=120 second=940 amount=-2 +kerning first=120 second=941 amount=-2 +kerning first=120 second=945 amount=-2 +kerning first=120 second=949 amount=-2 +kerning first=120 second=959 amount=-2 +kerning first=120 second=962 amount=-2 +kerning first=120 second=963 amount=-2 +kerning first=120 second=966 amount=-2 +kerning first=120 second=969 amount=-1 +kerning first=120 second=972 amount=-2 +kerning first=120 second=974 amount=-1 +kerning first=120 second=1072 amount=-1 +kerning first=120 second=1073 amount=-1 +kerning first=120 second=1077 amount=-2 +kerning first=120 second=1086 amount=-2 +kerning first=120 second=1089 amount=-2 +kerning first=120 second=1092 amount=-2 +kerning first=120 second=1095 amount=-1 +kerning first=120 second=1104 amount=-2 +kerning first=120 second=1105 amount=-2 +kerning first=120 second=1108 amount=-2 +kerning first=120 second=1109 amount=-1 +kerning first=120 second=1195 amount=-2 +kerning first=120 second=1241 amount=-2 +kerning first=120 second=1257 amount=-2 +kerning first=120 second=8211 amount=-3 +kerning first=120 second=8212 amount=-3 +kerning first=120 second=8249 amount=-2 +kerning first=120 second=8250 amount=-1 +kerning first=121 second=106 amount=7 +kerning first=121 second=1112 amount=7 +kerning first=122 second=99 amount=-1 +kerning first=122 second=100 amount=-1 +kerning first=122 second=101 amount=-1 +kerning first=122 second=111 amount=-1 +kerning first=122 second=113 amount=-1 +kerning first=122 second=231 amount=-1 +kerning first=122 second=232 amount=-1 +kerning first=122 second=233 amount=-1 +kerning first=122 second=234 amount=-1 +kerning first=122 second=235 amount=-1 +kerning first=122 second=240 amount=-1 +kerning first=122 second=242 amount=-1 +kerning first=122 second=243 amount=-1 +kerning first=122 second=244 amount=-1 +kerning first=122 second=245 amount=-1 +kerning first=122 second=246 amount=-1 +kerning first=122 second=248 amount=-1 +kerning first=122 second=263 amount=-1 +kerning first=122 second=267 amount=-1 +kerning first=122 second=269 amount=-1 +kerning first=122 second=271 amount=-1 +kerning first=122 second=273 amount=-1 +kerning first=122 second=275 amount=-1 +kerning first=122 second=277 amount=-1 +kerning first=122 second=279 amount=-1 +kerning first=122 second=281 amount=-1 +kerning first=122 second=283 amount=-1 +kerning first=122 second=333 amount=-1 +kerning first=122 second=335 amount=-1 +kerning first=122 second=337 amount=-1 +kerning first=122 second=339 amount=-1 +kerning first=122 second=940 amount=-1 +kerning first=122 second=941 amount=-1 +kerning first=122 second=945 amount=-1 +kerning first=122 second=949 amount=-1 +kerning first=122 second=959 amount=-1 +kerning first=122 second=962 amount=-1 +kerning first=122 second=963 amount=-1 +kerning first=122 second=966 amount=-1 +kerning first=122 second=972 amount=-1 +kerning first=122 second=1077 amount=-1 +kerning first=122 second=1086 amount=-1 +kerning first=122 second=1089 amount=-1 +kerning first=122 second=1092 amount=-1 +kerning first=122 second=1104 amount=-1 +kerning first=122 second=1105 amount=-1 +kerning first=122 second=1108 amount=-1 +kerning first=122 second=1195 amount=-1 +kerning first=122 second=1241 amount=-1 +kerning first=122 second=1257 amount=-1 +kerning first=123 second=106 amount=7 +kerning first=123 second=1112 amount=7 +kerning first=171 second=65 amount=-1 +kerning first=171 second=84 amount=-1 +kerning first=171 second=88 amount=-1 +kerning first=171 second=89 amount=-2 +kerning first=171 second=120 amount=-1 +kerning first=171 second=193 amount=-1 +kerning first=171 second=194 amount=-1 +kerning first=171 second=196 amount=-1 +kerning first=171 second=197 amount=-1 +kerning first=171 second=198 amount=-1 +kerning first=171 second=221 amount=-2 +kerning first=171 second=256 amount=-1 +kerning first=171 second=258 amount=-1 +kerning first=171 second=260 amount=-1 +kerning first=171 second=354 amount=-1 +kerning first=171 second=356 amount=-1 +kerning first=171 second=374 amount=-2 +kerning first=171 second=376 amount=-2 +kerning first=171 second=913 amount=-1 +kerning first=171 second=916 amount=-1 +kerning first=171 second=923 amount=-1 +kerning first=171 second=932 amount=-1 +kerning first=171 second=933 amount=-2 +kerning first=171 second=935 amount=-1 +kerning first=171 second=939 amount=-2 +kerning first=171 second=1026 amount=-1 +kerning first=171 second=1033 amount=-1 +kerning first=171 second=1035 amount=-1 +kerning first=171 second=1040 amount=-1 +kerning first=171 second=1044 amount=-1 +kerning first=171 second=1046 amount=-1 +kerning first=171 second=1051 amount=-1 +kerning first=171 second=1058 amount=-1 +kerning first=171 second=1061 amount=-1 +kerning first=171 second=1066 amount=-1 +kerning first=171 second=1078 amount=-1 +kerning first=171 second=1093 amount=-1 +kerning first=171 second=1174 amount=-1 +kerning first=171 second=1175 amount=-1 +kerning first=171 second=1184 amount=-1 +kerning first=171 second=1198 amount=-2 +kerning first=171 second=1202 amount=-1 +kerning first=171 second=1203 amount=-1 +kerning first=171 second=1298 amount=-1 +kerning first=173 second=44 amount=-1 +kerning first=173 second=46 amount=-1 +kerning first=173 second=47 amount=-1 +kerning first=173 second=49 amount=-3 +kerning first=173 second=50 amount=-2 +kerning first=173 second=51 amount=-2 +kerning first=173 second=55 amount=-3 +kerning first=173 second=65 amount=-2 +kerning first=173 second=83 amount=-1 +kerning first=173 second=84 amount=-4 +kerning first=173 second=86 amount=-3 +kerning first=173 second=87 amount=-2 +kerning first=173 second=88 amount=-3 +kerning first=173 second=89 amount=-4 +kerning first=173 second=90 amount=-2 +kerning first=173 second=102 amount=-2 +kerning first=173 second=118 amount=-1 +kerning first=173 second=119 amount=-1 +kerning first=173 second=120 amount=-2 +kerning first=173 second=122 amount=-2 +kerning first=173 second=193 amount=-2 +kerning first=173 second=194 amount=-2 +kerning first=173 second=196 amount=-2 +kerning first=173 second=197 amount=-2 +kerning first=173 second=198 amount=-2 +kerning first=173 second=221 amount=-4 +kerning first=173 second=256 amount=-2 +kerning first=173 second=258 amount=-2 +kerning first=173 second=260 amount=-2 +kerning first=173 second=346 amount=-1 +kerning first=173 second=350 amount=-1 +kerning first=173 second=352 amount=-1 +kerning first=173 second=354 amount=-4 +kerning first=173 second=356 amount=-4 +kerning first=173 second=372 amount=-2 +kerning first=173 second=373 amount=-1 +kerning first=173 second=374 amount=-4 +kerning first=173 second=376 amount=-4 +kerning first=173 second=377 amount=-2 +kerning first=173 second=378 amount=-2 +kerning first=173 second=379 amount=-2 +kerning first=173 second=380 amount=-2 +kerning first=173 second=381 amount=-2 +kerning first=173 second=382 amount=-2 +kerning first=173 second=913 amount=-2 +kerning first=173 second=916 amount=-2 +kerning first=173 second=918 amount=-2 +kerning first=173 second=923 amount=-2 +kerning first=173 second=932 amount=-4 +kerning first=173 second=933 amount=-4 +kerning first=173 second=935 amount=-3 +kerning first=173 second=939 amount=-4 +kerning first=173 second=947 amount=-1 +kerning first=173 second=957 amount=-1 +kerning first=173 second=1026 amount=-4 +kerning first=173 second=1029 amount=-1 +kerning first=173 second=1033 amount=-4 +kerning first=173 second=1035 amount=-4 +kerning first=173 second=1040 amount=-2 +kerning first=173 second=1044 amount=-4 +kerning first=173 second=1046 amount=-3 +kerning first=173 second=1051 amount=-4 +kerning first=173 second=1058 amount=-4 +kerning first=173 second=1061 amount=-3 +kerning first=173 second=1066 amount=-4 +kerning first=173 second=1069 amount=-1 +kerning first=173 second=1071 amount=-1 +kerning first=173 second=1078 amount=-2 +kerning first=173 second=1093 amount=-2 +kerning first=173 second=1174 amount=-3 +kerning first=173 second=1175 amount=-2 +kerning first=173 second=1176 amount=-1 +kerning first=173 second=1184 amount=-4 +kerning first=173 second=1198 amount=-4 +kerning first=173 second=1199 amount=-1 +kerning first=173 second=1202 amount=-3 +kerning first=173 second=1203 amount=-2 +kerning first=173 second=1298 amount=-4 +kerning first=173 second=8218 amount=-1 +kerning first=173 second=8222 amount=-1 +kerning first=173 second=8230 amount=-1 +kerning first=187 second=65 amount=-3 +kerning first=187 second=83 amount=-1 +kerning first=187 second=84 amount=-3 +kerning first=187 second=86 amount=-2 +kerning first=187 second=87 amount=-3 +kerning first=187 second=88 amount=-3 +kerning first=187 second=89 amount=-3 +kerning first=187 second=106 amount=1 +kerning first=187 second=120 amount=-2 +kerning first=187 second=122 amount=-1 +kerning first=187 second=193 amount=-3 +kerning first=187 second=194 amount=-3 +kerning first=187 second=196 amount=-3 +kerning first=187 second=197 amount=-3 +kerning first=187 second=198 amount=-3 +kerning first=187 second=221 amount=-3 +kerning first=187 second=256 amount=-3 +kerning first=187 second=258 amount=-3 +kerning first=187 second=260 amount=-3 kerning first=187 second=346 amount=-1 -kerning first=1080 second=1059 amount=-2 -kerning first=207 second=964 amount=-3 -kerning first=8378 second=353 amount=-1 -kerning first=1168 second=235 amount=-1 -kerning first=356 second=97 amount=-2 -kerning first=113 second=219 amount=-2 -kerning first=250 second=1108 amount=-1 -kerning first=253 second=347 amount=-1 -kerning first=376 second=259 amount=-4 -kerning first=166 second=361 amount=-1 -kerning first=169 second=121 amount=-1 -kerning first=276 second=965 amount=-1 -kerning first=8220 second=224 amount=-1 -kerning first=45 second=1202 amount=-3 -kerning first=48 second=373 amount=-4 -kerning first=1046 second=8250 amount=-1 -kerning first=188 second=1028 amount=-2 -kerning first=191 second=288 amount=-2 -kerning first=1094 second=248 amount=-1 -kerning first=214 second=220 amount=-2 -kerning first=94 second=232 amount=-1 -kerning first=357 second=275 amount=-1 -kerning first=354 second=966 amount=-3 -kerning first=111 second=1203 amount=-2 -kerning first=174 second=71 amount=-2 -kerning first=55 second=83 amount=-1 -kerning first=1063 second=953 amount=-1 -kerning first=195 second=233 amount=-1 -kerning first=304 second=1177 amount=-1 -kerning first=75 second=245 amount=-2 -kerning first=215 second=375 amount=-1 -kerning first=1178 second=100 amount=-1 -kerning first=950 second=1116 amount=-2 -kerning first=121 second=84 amount=-5 -kerning first=1026 second=968 amount=-1 -kerning first=175 second=246 amount=-1 -kerning first=286 second=376 amount=-2 -kerning first=8249 second=89 amount=-2 -kerning first=305 second=8212 amount=-2 -kerning first=8361 second=251 amount=-1 -kerning first=1099 second=353 amount=-1 -kerning first=923 second=365 amount=-1 -kerning first=102 second=97 amount=-1 -kerning first=125 second=34 amount=-3 -kerning first=1037 second=224 amount=-1 -kerning first=282 second=8250 amount=-1 -kerning first=1068 second=1184 amount=-5 -kerning first=1071 second=366 amount=-2 -kerning first=200 second=336 amount=-2 -kerning first=318 second=248 amount=-1 -kerning first=80 second=350 amount=-1 -kerning first=1108 second=63 amount=-1 -kerning first=916 second=8217 amount=-3 -kerning first=100 second=966 amount=-1 -kerning first=103 second=275 amount=-1 -kerning first=369 second=87 amount=-5 -kerning first=1298 second=1185 amount=-3 -kerning first=271 second=99 amount=-1 -kerning first=41 second=221 amount=-5 -kerning first=184 second=111 amount=-1 -kerning first=180 second=351 amount=-1 -kerning first=291 second=953 amount=-1 -kerning first=296 second=261 amount=-1 -kerning first=61 second=363 amount=-1 -kerning first=58 second=1177 amount=-1 -kerning first=1069 second=8218 amount=-1 -kerning first=8366 second=356 amount=-5 -kerning first=8372 second=116 amount=-1 -kerning first=84 second=290 amount=-1 -kerning first=936 second=941 amount=-1 -kerning first=247 second=352 amount=-1 -kerning first=964 second=1241 amount=-1 -kerning first=967 second=187 amount=-1 -kerning first=160 second=364 amount=-2 -kerning first=1299 second=8220 amount=-3 -kerning first=273 second=277 amount=-1 -kerning first=42 second=376 amount=-5 -kerning first=1039 second=1079 amount=-1 -kerning first=182 second=1035 amount=-5 -kerning first=185 second=291 amount=-1 -kerning first=1049 second=89 amount=-5 -kerning first=300 second=211 amount=-2 -kerning first=59 second=8212 amount=-2 -kerning first=62 second=1059 amount=-2 -kerning first=1081 second=251 amount=-1 -kerning first=325 second=353 amount=-1 -kerning first=903 second=263 amount=-1 -kerning first=88 second=235 amount=-2 -kerning first=374 second=212 amount=-3 -kerning first=125 second=8216 amount=-3 -kerning first=8211 second=382 amount=-2 -kerning first=40 second=8250 amount=-1 -kerning first=1051 second=266 amount=-2 -kerning first=1063 second=39 amount=-3 -kerning first=298 second=1184 amount=-5 -kerning first=301 second=366 amount=-2 -kerning first=69 second=248 amount=-1 -kerning first=333 second=63 amount=-2 -kerning first=8377 second=920 amount=-2 -kerning first=1170 second=103 amount=-1 -kerning first=226 second=8217 amount=-1 -kerning first=946 second=355 amount=-1 -kerning first=950 second=115 amount=-1 -kerning first=1219 second=267 amount=-1 -kerning first=375 second=367 amount=-1 -kerning first=168 second=249 amount=-1 -kerning first=165 second=940 amount=-1 -kerning first=47 second=953 amount=-1 -kerning first=50 second=261 amount=-1 -kerning first=1064 second=214 amount=-2 -kerning first=1096 second=116 amount=-1 -kerning first=216 second=88 amount=-3 -kerning first=93 second=338 amount=-2 -kerning first=96 second=100 amount=-1 -kerning first=1168 second=972 amount=-1 -kerning first=236 second=250 amount=-1 -kerning first=1171 second=281 amount=-1 -kerning first=356 second=380 amount=-1 -kerning first=113 second=954 amount=2 -kerning first=256 second=1241 amount=-1 -kerning first=1027 second=227 amount=-1 -kerning first=172 second=199 amount=-2 -kerning first=287 second=89 amount=-5 -kerning first=8224 second=269 amount=-1 -kerning first=54 second=211 amount=-2 +kerning first=187 second=350 amount=-1 +kerning first=187 second=352 amount=-1 +kerning first=187 second=354 amount=-3 +kerning first=187 second=356 amount=-3 +kerning first=187 second=372 amount=-3 +kerning first=187 second=374 amount=-3 +kerning first=187 second=376 amount=-3 +kerning first=187 second=378 amount=-1 +kerning first=187 second=380 amount=-1 +kerning first=187 second=382 amount=-1 +kerning first=187 second=913 amount=-3 +kerning first=187 second=916 amount=-3 +kerning first=187 second=923 amount=-3 +kerning first=187 second=932 amount=-3 +kerning first=187 second=933 amount=-3 +kerning first=187 second=935 amount=-3 +kerning first=187 second=939 amount=-3 +kerning first=187 second=1026 amount=-3 +kerning first=187 second=1029 amount=-1 +kerning first=187 second=1033 amount=-2 +kerning first=187 second=1035 amount=-3 +kerning first=187 second=1040 amount=-3 +kerning first=187 second=1044 amount=-2 +kerning first=187 second=1046 amount=-3 +kerning first=187 second=1051 amount=-2 +kerning first=187 second=1058 amount=-3 +kerning first=187 second=1061 amount=-3 +kerning first=187 second=1066 amount=-3 +kerning first=187 second=1071 amount=-1 +kerning first=187 second=1078 amount=-2 +kerning first=187 second=1093 amount=-2 +kerning first=187 second=1112 amount=1 +kerning first=187 second=1174 amount=-3 +kerning first=187 second=1175 amount=-2 +kerning first=187 second=1184 amount=-3 +kerning first=187 second=1198 amount=-3 +kerning first=187 second=1202 amount=-3 +kerning first=187 second=1203 amount=-2 +kerning first=187 second=1298 amount=-2 +kerning first=193 second=34 amount=-3 +kerning first=193 second=38 amount=-1 +kerning first=193 second=39 amount=-3 +kerning first=193 second=45 amount=-2 +kerning first=193 second=63 amount=-5 +kerning first=193 second=67 amount=-2 +kerning first=193 second=71 amount=-2 +kerning first=193 second=74 amount=-1 +kerning first=193 second=79 amount=-2 +kerning first=193 second=81 amount=-2 +kerning first=193 second=83 amount=-1 +kerning first=193 second=84 amount=-5 +kerning first=193 second=85 amount=-2 +kerning first=193 second=86 amount=-6 +kerning first=193 second=87 amount=-5 +kerning first=193 second=89 amount=-5 +kerning first=193 second=97 amount=-1 +kerning first=193 second=99 amount=-1 +kerning first=193 second=100 amount=-1 +kerning first=193 second=101 amount=-1 +kerning first=193 second=102 amount=-2 +kerning first=193 second=103 amount=-1 +kerning first=193 second=106 amount=1 +kerning first=193 second=111 amount=-1 +kerning first=193 second=113 amount=-1 +kerning first=193 second=115 amount=-1 +kerning first=193 second=116 amount=-1 +kerning first=193 second=117 amount=-1 +kerning first=193 second=118 amount=-4 +kerning first=193 second=119 amount=-4 +kerning first=193 second=121 amount=-1 +kerning first=193 second=171 amount=-3 +kerning first=193 second=173 amount=-2 +kerning first=193 second=187 amount=-1 +kerning first=193 second=199 amount=-2 +kerning first=193 second=210 amount=-2 +kerning first=193 second=211 amount=-2 +kerning first=193 second=212 amount=-2 +kerning first=193 second=213 amount=-2 +kerning first=193 second=214 amount=-2 +kerning first=193 second=216 amount=-2 +kerning first=193 second=217 amount=-2 +kerning first=193 second=218 amount=-2 +kerning first=193 second=219 amount=-2 +kerning first=193 second=220 amount=-2 +kerning first=193 second=221 amount=-5 +kerning first=193 second=224 amount=-1 +kerning first=193 second=225 amount=-1 +kerning first=193 second=226 amount=-1 +kerning first=193 second=227 amount=-1 +kerning first=193 second=228 amount=-1 +kerning first=193 second=229 amount=-1 +kerning first=193 second=230 amount=-1 +kerning first=193 second=231 amount=-1 +kerning first=193 second=232 amount=-1 +kerning first=193 second=233 amount=-1 +kerning first=193 second=234 amount=-1 +kerning first=193 second=235 amount=-1 +kerning first=193 second=240 amount=-1 +kerning first=193 second=242 amount=-1 +kerning first=193 second=243 amount=-1 +kerning first=193 second=244 amount=-1 +kerning first=193 second=245 amount=-1 +kerning first=193 second=246 amount=-1 +kerning first=193 second=248 amount=-1 +kerning first=193 second=249 amount=-1 +kerning first=193 second=250 amount=-1 +kerning first=193 second=251 amount=-1 +kerning first=193 second=252 amount=-1 +kerning first=193 second=253 amount=-1 +kerning first=193 second=257 amount=-1 +kerning first=193 second=259 amount=-1 +kerning first=193 second=261 amount=-1 +kerning first=193 second=262 amount=-2 +kerning first=193 second=263 amount=-1 +kerning first=193 second=266 amount=-2 +kerning first=193 second=267 amount=-1 +kerning first=193 second=268 amount=-2 +kerning first=193 second=269 amount=-1 +kerning first=193 second=271 amount=-1 +kerning first=193 second=273 amount=-1 +kerning first=193 second=275 amount=-1 +kerning first=193 second=277 amount=-1 +kerning first=193 second=279 amount=-1 +kerning first=193 second=281 amount=-1 +kerning first=193 second=283 amount=-1 +kerning first=193 second=286 amount=-2 +kerning first=193 second=287 amount=-1 +kerning first=193 second=288 amount=-2 +kerning first=193 second=289 amount=-1 +kerning first=193 second=290 amount=-2 +kerning first=193 second=291 amount=-1 +kerning first=193 second=332 amount=-2 +kerning first=193 second=333 amount=-1 +kerning first=193 second=334 amount=-2 +kerning first=193 second=335 amount=-1 +kerning first=193 second=336 amount=-2 +kerning first=193 second=337 amount=-1 +kerning first=193 second=338 amount=-2 +kerning first=193 second=339 amount=-1 +kerning first=193 second=346 amount=-1 +kerning first=193 second=347 amount=-1 +kerning first=193 second=350 amount=-1 +kerning first=193 second=351 amount=-1 +kerning first=193 second=352 amount=-1 +kerning first=193 second=353 amount=-1 +kerning first=193 second=354 amount=-5 +kerning first=193 second=355 amount=-1 +kerning first=193 second=356 amount=-5 +kerning first=193 second=357 amount=-1 +kerning first=193 second=359 amount=-1 +kerning first=193 second=360 amount=-2 +kerning first=193 second=361 amount=-1 +kerning first=193 second=362 amount=-2 +kerning first=193 second=363 amount=-1 +kerning first=193 second=364 amount=-2 +kerning first=193 second=365 amount=-1 +kerning first=193 second=366 amount=-2 +kerning first=193 second=367 amount=-1 +kerning first=193 second=368 amount=-2 +kerning first=193 second=369 amount=-1 +kerning first=193 second=370 amount=-2 +kerning first=193 second=371 amount=-1 +kerning first=193 second=372 amount=-5 +kerning first=193 second=373 amount=-4 +kerning first=193 second=374 amount=-5 +kerning first=193 second=375 amount=-1 +kerning first=193 second=376 amount=-5 +kerning first=193 second=920 amount=-2 +kerning first=193 second=927 amount=-2 +kerning first=193 second=932 amount=-5 +kerning first=193 second=933 amount=-5 +kerning first=193 second=936 amount=-3 +kerning first=193 second=939 amount=-5 +kerning first=193 second=940 amount=-1 +kerning first=193 second=941 amount=-1 +kerning first=193 second=943 amount=-1 +kerning first=193 second=945 amount=-1 +kerning first=193 second=947 amount=-4 +kerning first=193 second=949 amount=-1 +kerning first=193 second=950 amount=-1 +kerning first=193 second=953 amount=-1 +kerning first=193 second=957 amount=-4 +kerning first=193 second=959 amount=-1 +kerning first=193 second=962 amount=-1 +kerning first=193 second=963 amount=-1 +kerning first=193 second=964 amount=-3 +kerning first=193 second=965 amount=-1 +kerning first=193 second=966 amount=-1 +kerning first=193 second=968 amount=-1 +kerning first=193 second=970 amount=-1 +kerning first=193 second=972 amount=-1 +kerning first=193 second=973 amount=-1 +kerning first=193 second=1026 amount=-5 +kerning first=193 second=1028 amount=-2 +kerning first=193 second=1029 amount=-1 +kerning first=193 second=1032 amount=-1 +kerning first=193 second=1035 amount=-5 +kerning first=193 second=1038 amount=-2 +kerning first=193 second=1054 amount=-2 +kerning first=193 second=1057 amount=-2 +kerning first=193 second=1058 amount=-5 +kerning first=193 second=1059 amount=-2 +kerning first=193 second=1063 amount=-3 +kerning first=193 second=1066 amount=-5 +kerning first=193 second=1069 amount=-1 +kerning first=193 second=1072 amount=-1 +kerning first=193 second=1077 amount=-1 +kerning first=193 second=1079 amount=-1 +kerning first=193 second=1086 amount=-1 +kerning first=193 second=1089 amount=-1 +kerning first=193 second=1090 amount=-3 +kerning first=193 second=1091 amount=-1 +kerning first=193 second=1092 amount=-1 +kerning first=193 second=1098 amount=-3 +kerning first=193 second=1101 amount=-1 +kerning first=193 second=1104 amount=-1 +kerning first=193 second=1105 amount=-1 +kerning first=193 second=1108 amount=-1 +kerning first=193 second=1109 amount=-1 +kerning first=193 second=1112 amount=1 +kerning first=193 second=1118 amount=-1 +kerning first=193 second=1176 amount=-1 +kerning first=193 second=1177 amount=-1 +kerning first=193 second=1184 amount=-5 +kerning first=193 second=1185 amount=-3 +kerning first=193 second=1194 amount=-2 +kerning first=193 second=1195 amount=-1 +kerning first=193 second=1198 amount=-5 +kerning first=193 second=1199 amount=-4 +kerning first=193 second=1240 amount=-2 +kerning first=193 second=1241 amount=-1 +kerning first=193 second=1256 amount=-2 +kerning first=193 second=1257 amount=-1 +kerning first=193 second=1262 amount=-2 +kerning first=193 second=1263 amount=-1 +kerning first=193 second=8211 amount=-2 +kerning first=193 second=8212 amount=-2 +kerning first=193 second=8216 amount=-3 +kerning first=193 second=8217 amount=-3 +kerning first=193 second=8220 amount=-3 +kerning first=193 second=8221 amount=-3 +kerning first=193 second=8249 amount=-3 +kerning first=193 second=8250 amount=-1 +kerning first=194 second=34 amount=-3 +kerning first=194 second=38 amount=-1 +kerning first=194 second=39 amount=-3 +kerning first=194 second=45 amount=-2 +kerning first=194 second=63 amount=-5 +kerning first=194 second=67 amount=-2 +kerning first=194 second=71 amount=-2 +kerning first=194 second=74 amount=-1 +kerning first=194 second=79 amount=-2 +kerning first=194 second=81 amount=-2 +kerning first=194 second=83 amount=-1 +kerning first=194 second=84 amount=-5 +kerning first=194 second=85 amount=-2 +kerning first=194 second=86 amount=-6 +kerning first=194 second=87 amount=-5 +kerning first=194 second=89 amount=-5 +kerning first=194 second=97 amount=-1 +kerning first=194 second=99 amount=-1 +kerning first=194 second=100 amount=-1 +kerning first=194 second=101 amount=-1 +kerning first=194 second=102 amount=-2 +kerning first=194 second=103 amount=-1 +kerning first=194 second=106 amount=1 +kerning first=194 second=111 amount=-1 +kerning first=194 second=113 amount=-1 +kerning first=194 second=115 amount=-1 +kerning first=194 second=116 amount=-1 +kerning first=194 second=117 amount=-1 +kerning first=194 second=118 amount=-4 +kerning first=194 second=119 amount=-4 +kerning first=194 second=121 amount=-1 +kerning first=194 second=171 amount=-3 +kerning first=194 second=173 amount=-2 +kerning first=194 second=187 amount=-1 +kerning first=194 second=199 amount=-2 +kerning first=194 second=210 amount=-2 +kerning first=194 second=211 amount=-2 +kerning first=194 second=212 amount=-2 +kerning first=194 second=213 amount=-2 +kerning first=194 second=214 amount=-2 +kerning first=194 second=216 amount=-2 +kerning first=194 second=217 amount=-2 +kerning first=194 second=218 amount=-2 +kerning first=194 second=219 amount=-2 +kerning first=194 second=220 amount=-2 +kerning first=194 second=221 amount=-5 +kerning first=194 second=224 amount=-1 +kerning first=194 second=225 amount=-1 +kerning first=194 second=226 amount=-1 +kerning first=194 second=227 amount=-1 +kerning first=194 second=228 amount=-1 +kerning first=194 second=229 amount=-1 +kerning first=194 second=230 amount=-1 +kerning first=194 second=231 amount=-1 +kerning first=194 second=232 amount=-1 +kerning first=194 second=233 amount=-1 +kerning first=194 second=234 amount=-1 +kerning first=194 second=235 amount=-1 +kerning first=194 second=240 amount=-1 +kerning first=194 second=242 amount=-1 +kerning first=194 second=243 amount=-1 +kerning first=194 second=244 amount=-1 +kerning first=194 second=245 amount=-1 +kerning first=194 second=246 amount=-1 +kerning first=194 second=248 amount=-1 +kerning first=194 second=249 amount=-1 +kerning first=194 second=250 amount=-1 +kerning first=194 second=251 amount=-1 +kerning first=194 second=252 amount=-1 +kerning first=194 second=253 amount=-1 +kerning first=194 second=257 amount=-1 +kerning first=194 second=259 amount=-1 +kerning first=194 second=261 amount=-1 +kerning first=194 second=262 amount=-2 +kerning first=194 second=263 amount=-1 +kerning first=194 second=266 amount=-2 +kerning first=194 second=267 amount=-1 +kerning first=194 second=268 amount=-2 +kerning first=194 second=269 amount=-1 +kerning first=194 second=271 amount=-1 +kerning first=194 second=273 amount=-1 +kerning first=194 second=275 amount=-1 +kerning first=194 second=277 amount=-1 +kerning first=194 second=279 amount=-1 +kerning first=194 second=281 amount=-1 +kerning first=194 second=283 amount=-1 +kerning first=194 second=286 amount=-2 +kerning first=194 second=287 amount=-1 +kerning first=194 second=288 amount=-2 +kerning first=194 second=289 amount=-1 +kerning first=194 second=290 amount=-2 +kerning first=194 second=291 amount=-1 +kerning first=194 second=332 amount=-2 +kerning first=194 second=333 amount=-1 +kerning first=194 second=334 amount=-2 +kerning first=194 second=335 amount=-1 +kerning first=194 second=336 amount=-2 +kerning first=194 second=337 amount=-1 +kerning first=194 second=338 amount=-2 kerning first=194 second=339 amount=-1 -kerning first=197 second=101 amount=-1 -kerning first=191 second=1098 amount=-3 -kerning first=74 second=353 amount=-1 -kerning first=77 second=113 amount=-1 -kerning first=906 second=8221 amount=-3 -kerning first=955 second=240 amount=-1 -kerning first=1223 second=1194 amount=-2 -kerning first=35 second=224 amount=-1 -kerning first=174 second=354 amount=-5 -kerning first=170 second=1118 amount=-1 -kerning first=291 second=39 amount=-3 -kerning first=8240 second=217 amount=-2 -kerning first=52 second=1184 amount=-5 -kerning first=55 second=366 amount=-2 -kerning first=1073 second=79 amount=-2 -kerning first=198 second=279 amount=-1 -kerning first=195 second=970 amount=-1 -kerning first=8363 second=119 amount=-4 -kerning first=221 second=213 amount=-3 -kerning first=928 second=253 amount=-1 -kerning first=1175 second=1257 amount=-1 -kerning first=121 second=367 amount=-1 -kerning first=175 second=1038 amount=-2 -kerning first=294 second=214 amount=-2 -kerning first=8226 second=947 amount=-4 -kerning first=53 second=8218 amount=-1 -kerning first=202 second=226 amount=-1 -kerning first=317 second=356 amount=-5 -kerning first=322 second=116 amount=-1 -kerning first=343 second=281 amount=-1 -kerning first=37 second=1079 amount=-1 -kerning first=43 second=89 amount=-5 -kerning first=1041 second=269 amount=-1 -kerning first=63 second=251 amount=-1 -kerning first=8370 second=244 amount=-1 -kerning first=901 second=216 amount=-2 -kerning first=1116 second=106 amount=1 -kerning first=223 second=1066 amount=-5 -kerning first=943 second=118 amount=-2 -kerning first=1187 second=962 amount=-1 -kerning first=249 second=240 amount=-1 -kerning first=369 second=370 amount=-2 -kerning first=126 second=943 amount=-1 -kerning first=162 second=252 amount=-1 -kerning first=47 second=39 amount=-3 -kerning first=1048 second=217 amount=-2 -kerning first=44 second=266 amount=-1 -kerning first=302 second=79 amount=-2 -kerning first=1080 second=359 amount=-1 -kerning first=1084 second=119 amount=-4 -kerning first=902 second=371 amount=-1 -kerning first=84 second=1100 amount=-2 -kerning first=87 second=341 amount=-2 -kerning first=1117 second=286 amount=-2 -kerning first=345 second=1257 amount=-1 -kerning first=8216 second=273 amount=-1 -kerning first=48 second=214 amount=-2 -kerning first=1049 second=372 amount=-5 -kerning first=1046 second=947 amount=-3 -kerning first=185 second=1101 amount=-1 -kerning first=300 second=945 amount=-1 -kerning first=68 second=356 amount=-2 -kerning first=903 second=1069 amount=-1 -kerning first=88 second=972 amount=-2 -kerning first=91 second=281 amount=-1 -kerning first=1169 second=231 amount=-1 -kerning first=354 second=331 amount=-2 -kerning first=1210 second=373 amount=-4 -kerning first=968 second=1263 amount=-1 -kerning first=167 second=357 amount=-1 -kerning first=170 second=117 amount=-1 -kerning first=280 second=269 amount=-1 -kerning first=49 second=369 amount=-1 -kerning first=189 second=973 amount=-1 -kerning first=1095 second=244 amount=-1 -kerning first=215 second=216 amount=-2 -kerning first=95 second=228 amount=-1 -kerning first=238 second=118 amount=-4 -kerning first=258 second=283 amount=-1 -kerning first=1026 second=333 amount=-1 -kerning first=175 second=67 amount=-2 -kerning first=8222 second=375 amount=-1 -kerning first=47 second=8222 amount=-4 -kerning first=56 second=79 amount=-2 -kerning first=1064 second=949 amount=-1 -kerning first=1067 second=257 amount=-1 +kerning first=194 second=346 amount=-1 +kerning first=194 second=347 amount=-1 +kerning first=194 second=350 amount=-1 +kerning first=194 second=351 amount=-1 +kerning first=194 second=352 amount=-1 +kerning first=194 second=353 amount=-1 +kerning first=194 second=354 amount=-5 +kerning first=194 second=355 amount=-1 +kerning first=194 second=356 amount=-5 +kerning first=194 second=357 amount=-1 +kerning first=194 second=359 amount=-1 +kerning first=194 second=360 amount=-2 +kerning first=194 second=361 amount=-1 +kerning first=194 second=362 amount=-2 +kerning first=194 second=363 amount=-1 +kerning first=194 second=364 amount=-2 +kerning first=194 second=365 amount=-1 +kerning first=194 second=366 amount=-2 +kerning first=194 second=367 amount=-1 +kerning first=194 second=368 amount=-2 +kerning first=194 second=369 amount=-1 +kerning first=194 second=370 amount=-2 +kerning first=194 second=371 amount=-1 +kerning first=194 second=372 amount=-5 +kerning first=194 second=373 amount=-4 +kerning first=194 second=374 amount=-5 +kerning first=194 second=375 amount=-1 +kerning first=194 second=376 amount=-5 +kerning first=194 second=920 amount=-2 +kerning first=194 second=927 amount=-2 +kerning first=194 second=932 amount=-5 +kerning first=194 second=933 amount=-5 +kerning first=194 second=936 amount=-3 +kerning first=194 second=939 amount=-5 +kerning first=194 second=940 amount=-1 +kerning first=194 second=941 amount=-1 +kerning first=194 second=943 amount=-1 +kerning first=194 second=945 amount=-1 +kerning first=194 second=947 amount=-4 +kerning first=194 second=949 amount=-1 +kerning first=194 second=950 amount=-1 +kerning first=194 second=953 amount=-1 +kerning first=194 second=957 amount=-4 +kerning first=194 second=959 amount=-1 +kerning first=194 second=962 amount=-1 +kerning first=194 second=963 amount=-1 +kerning first=194 second=964 amount=-3 +kerning first=194 second=965 amount=-1 +kerning first=194 second=966 amount=-1 +kerning first=194 second=968 amount=-1 +kerning first=194 second=970 amount=-1 +kerning first=194 second=972 amount=-1 +kerning first=194 second=973 amount=-1 +kerning first=194 second=1026 amount=-5 +kerning first=194 second=1028 amount=-2 +kerning first=194 second=1029 amount=-1 +kerning first=194 second=1032 amount=-1 +kerning first=194 second=1035 amount=-5 +kerning first=194 second=1038 amount=-2 +kerning first=194 second=1054 amount=-2 +kerning first=194 second=1057 amount=-2 +kerning first=194 second=1058 amount=-5 +kerning first=194 second=1059 amount=-2 +kerning first=194 second=1063 amount=-3 +kerning first=194 second=1066 amount=-5 +kerning first=194 second=1069 amount=-1 +kerning first=194 second=1072 amount=-1 +kerning first=194 second=1077 amount=-1 +kerning first=194 second=1079 amount=-1 +kerning first=194 second=1086 amount=-1 +kerning first=194 second=1089 amount=-1 +kerning first=194 second=1090 amount=-3 +kerning first=194 second=1091 amount=-1 +kerning first=194 second=1092 amount=-1 +kerning first=194 second=1098 amount=-3 +kerning first=194 second=1101 amount=-1 +kerning first=194 second=1104 amount=-1 +kerning first=194 second=1105 amount=-1 +kerning first=194 second=1108 amount=-1 +kerning first=194 second=1109 amount=-1 +kerning first=194 second=1112 amount=1 +kerning first=194 second=1118 amount=-1 +kerning first=194 second=1176 amount=-1 +kerning first=194 second=1177 amount=-1 +kerning first=194 second=1184 amount=-5 +kerning first=194 second=1185 amount=-3 +kerning first=194 second=1194 amount=-2 +kerning first=194 second=1195 amount=-1 +kerning first=194 second=1198 amount=-5 +kerning first=194 second=1199 amount=-4 +kerning first=194 second=1240 amount=-2 +kerning first=194 second=1241 amount=-1 +kerning first=194 second=1256 amount=-2 +kerning first=194 second=1257 amount=-1 +kerning first=194 second=1262 amount=-2 +kerning first=194 second=1263 amount=-1 +kerning first=194 second=8211 amount=-2 +kerning first=194 second=8212 amount=-2 +kerning first=194 second=8216 amount=-3 +kerning first=194 second=8217 amount=-3 +kerning first=194 second=8220 amount=-3 +kerning first=194 second=8221 amount=-3 +kerning first=194 second=8249 amount=-3 +kerning first=194 second=8250 amount=-1 +kerning first=196 second=34 amount=-3 +kerning first=196 second=38 amount=-1 +kerning first=196 second=39 amount=-3 +kerning first=196 second=45 amount=-2 +kerning first=196 second=63 amount=-5 +kerning first=196 second=67 amount=-2 +kerning first=196 second=71 amount=-2 +kerning first=196 second=74 amount=-1 +kerning first=196 second=79 amount=-2 +kerning first=196 second=81 amount=-2 +kerning first=196 second=83 amount=-1 +kerning first=196 second=84 amount=-5 +kerning first=196 second=85 amount=-2 +kerning first=196 second=86 amount=-6 +kerning first=196 second=87 amount=-5 +kerning first=196 second=89 amount=-5 +kerning first=196 second=97 amount=-1 +kerning first=196 second=99 amount=-1 +kerning first=196 second=100 amount=-1 +kerning first=196 second=101 amount=-1 +kerning first=196 second=102 amount=-2 +kerning first=196 second=103 amount=-1 +kerning first=196 second=106 amount=1 +kerning first=196 second=111 amount=-1 +kerning first=196 second=113 amount=-1 +kerning first=196 second=115 amount=-1 +kerning first=196 second=116 amount=-1 +kerning first=196 second=117 amount=-1 +kerning first=196 second=118 amount=-4 +kerning first=196 second=119 amount=-4 +kerning first=196 second=121 amount=-1 +kerning first=196 second=171 amount=-3 +kerning first=196 second=173 amount=-2 +kerning first=196 second=187 amount=-1 +kerning first=196 second=199 amount=-2 +kerning first=196 second=210 amount=-2 +kerning first=196 second=211 amount=-2 +kerning first=196 second=212 amount=-2 +kerning first=196 second=213 amount=-2 +kerning first=196 second=214 amount=-2 +kerning first=196 second=216 amount=-2 +kerning first=196 second=217 amount=-2 +kerning first=196 second=218 amount=-2 +kerning first=196 second=219 amount=-2 +kerning first=196 second=220 amount=-2 +kerning first=196 second=221 amount=-5 +kerning first=196 second=224 amount=-1 +kerning first=196 second=225 amount=-1 +kerning first=196 second=226 amount=-1 +kerning first=196 second=227 amount=-1 +kerning first=196 second=228 amount=-1 kerning first=196 second=229 amount=-1 -kerning first=314 second=119 amount=-4 -kerning first=73 second=920 amount=-2 -kerning first=310 second=359 amount=-1 -kerning first=334 second=1026 amount=-2 -kerning first=93 second=1257 amount=-1 -kerning first=1176 second=334 amount=-2 -kerning first=1171 second=1090 amount=-3 -kerning first=1037 second=45 amount=-2 -kerning first=176 second=242 amount=-1 -kerning first=1027 second=964 amount=-3 -kerning first=282 second=947 amount=-4 -kerning first=287 second=372 amount=-5 -kerning first=54 second=945 amount=-1 -kerning first=197 second=1240 amount=-2 -kerning first=194 second=1262 amount=-2 -kerning first=1097 second=1108 amount=-1 -kerning first=223 second=81 amount=-2 -kerning first=341 second=231 amount=-1 -kerning first=926 second=361 amount=-1 -kerning first=934 second=121 amount=-1 -kerning first=363 second=373 amount=-4 -kerning first=955 second=1028 amount=-2 -kerning first=960 second=288 amount=-2 -kerning first=260 second=1263 amount=-1 -kerning first=38 second=269 amount=-1 -kerning first=1073 second=362 amount=-2 -kerning first=201 second=332 amount=-2 -kerning first=321 second=244 amount=-1 -kerning first=1194 second=221 amount=-2 -kerning first=964 second=233 amount=-1 -kerning first=1299 second=1177 amount=-1 -kerning first=42 second=217 amount=-2 -kerning first=1039 second=375 amount=-1 -kerning first=294 second=949 amount=-1 -kerning first=297 second=257 amount=-1 -kerning first=65 second=119 amount=-4 -kerning first=62 second=359 amount=-1 -kerning first=202 second=963 amount=-1 -kerning first=205 second=271 amount=-1 -kerning first=208 second=44 amount=-1 -kerning first=8369 second=352 amount=-1 -kerning first=903 second=84 amount=-5 -kerning first=942 second=246 amount=-1 -kerning first=108 second=218 amount=-2 -kerning first=161 second=360 amount=-2 -kerning first=274 second=273 amount=-1 -kerning first=40 second=947 amount=-4 -kerning first=43 second=372 amount=-5 -kerning first=1037 second=8249 amount=-3 -kerning first=1051 second=85 amount=-2 -kerning first=186 second=287 amount=-1 -kerning first=209 second=219 amount=-2 -kerning first=323 second=1108 amount=-1 -kerning first=904 second=259 amount=-1 -kerning first=89 second=231 amount=-4 -kerning first=355 second=46 amount=-1 -kerning first=109 second=373 amount=-1 -kerning first=249 second=1028 amount=-2 -kerning first=252 second=288 amount=-2 -kerning first=278 second=220 amount=-2 -kerning first=8212 second=378 amount=-2 -kerning first=1241 second=1113 amount=-1 -kerning first=1059 second=260 amount=-2 -kerning first=190 second=232 amount=-1 -kerning first=302 second=362 amount=-2 -kerning first=299 second=1176 amount=-1 -kerning first=70 second=244 amount=-1 -kerning first=210 second=374 amount=-3 -kerning first=1168 second=337 amount=-1 -kerning first=1171 second=99 amount=-1 -kerning first=236 second=71 amount=-2 -kerning first=951 second=111 amount=-1 -kerning first=948 second=351 amount=-1 -kerning first=1220 second=261 amount=-1 -kerning first=256 second=233 amount=-1 -kerning first=376 second=363 amount=-2 -kerning first=970 second=967 amount=-2 -kerning first=169 second=245 amount=-1 -kerning first=48 second=949 amount=-1 -kerning first=51 second=257 amount=-1 -kerning first=1065 second=210 amount=-1 -kerning first=300 second=8211 amount=-2 -kerning first=74 second=194 amount=-1 -kerning first=91 second=1090 amount=-3 -kerning first=94 second=334 amount=-2 -kerning first=1174 second=277 amount=-1 -kerning first=237 second=246 amount=-1 -kerning first=357 second=376 amount=-5 -kerning first=952 second=291 amount=-1 -kerning first=374 second=8212 amount=-4 -kerning first=35 second=45 amount=-2 -kerning first=8225 second=263 amount=-1 -kerning first=195 second=335 amount=-1 -kerning first=198 second=97 amount=-1 -kerning first=72 second=1108 amount=-1 -kerning first=95 second=965 amount=-1 -kerning first=101 second=46 amount=-1 -kerning first=1224 second=1184 amount=-5 -kerning first=36 second=220 amount=-2 -kerning first=1036 second=171 amount=-3 -kerning first=175 second=350 amount=-1 -kerning first=53 second=1176 amount=-1 -kerning first=56 second=362 amount=-2 -kerning first=1064 second=8217 amount=-3 +kerning first=196 second=230 amount=-1 +kerning first=196 second=231 amount=-1 +kerning first=196 second=232 amount=-1 +kerning first=196 second=233 amount=-1 +kerning first=196 second=234 amount=-1 +kerning first=196 second=235 amount=-1 +kerning first=196 second=240 amount=-1 +kerning first=196 second=242 amount=-1 +kerning first=196 second=243 amount=-1 +kerning first=196 second=244 amount=-1 +kerning first=196 second=245 amount=-1 +kerning first=196 second=246 amount=-1 +kerning first=196 second=248 amount=-1 +kerning first=196 second=249 amount=-1 +kerning first=196 second=250 amount=-1 +kerning first=196 second=251 amount=-1 +kerning first=196 second=252 amount=-1 +kerning first=196 second=253 amount=-1 +kerning first=196 second=257 amount=-1 +kerning first=196 second=259 amount=-1 +kerning first=196 second=261 amount=-1 +kerning first=196 second=262 amount=-2 +kerning first=196 second=263 amount=-1 +kerning first=196 second=266 amount=-2 +kerning first=196 second=267 amount=-1 +kerning first=196 second=268 amount=-2 +kerning first=196 second=269 amount=-1 +kerning first=196 second=271 amount=-1 +kerning first=196 second=273 amount=-1 +kerning first=196 second=275 amount=-1 +kerning first=196 second=277 amount=-1 +kerning first=196 second=279 amount=-1 +kerning first=196 second=281 amount=-1 +kerning first=196 second=283 amount=-1 +kerning first=196 second=286 amount=-2 +kerning first=196 second=287 amount=-1 +kerning first=196 second=288 amount=-2 +kerning first=196 second=289 amount=-1 +kerning first=196 second=290 amount=-2 +kerning first=196 second=291 amount=-1 +kerning first=196 second=332 amount=-2 +kerning first=196 second=333 amount=-1 +kerning first=196 second=334 amount=-2 +kerning first=196 second=335 amount=-1 +kerning first=196 second=336 amount=-2 +kerning first=196 second=337 amount=-1 +kerning first=196 second=338 amount=-2 +kerning first=196 second=339 amount=-1 +kerning first=196 second=346 amount=-1 +kerning first=196 second=347 amount=-1 +kerning first=196 second=350 amount=-1 +kerning first=196 second=351 amount=-1 +kerning first=196 second=352 amount=-1 +kerning first=196 second=353 amount=-1 +kerning first=196 second=354 amount=-5 +kerning first=196 second=355 amount=-1 +kerning first=196 second=356 amount=-5 +kerning first=196 second=357 amount=-1 +kerning first=196 second=359 amount=-1 +kerning first=196 second=360 amount=-2 +kerning first=196 second=361 amount=-1 +kerning first=196 second=362 amount=-2 +kerning first=196 second=363 amount=-1 +kerning first=196 second=364 amount=-2 +kerning first=196 second=365 amount=-1 +kerning first=196 second=366 amount=-2 +kerning first=196 second=367 amount=-1 +kerning first=196 second=368 amount=-2 +kerning first=196 second=369 amount=-1 +kerning first=196 second=370 amount=-2 +kerning first=196 second=371 amount=-1 +kerning first=196 second=372 amount=-5 +kerning first=196 second=373 amount=-4 +kerning first=196 second=374 amount=-5 +kerning first=196 second=375 amount=-1 +kerning first=196 second=376 amount=-5 +kerning first=196 second=920 amount=-2 +kerning first=196 second=927 amount=-2 +kerning first=196 second=932 amount=-5 +kerning first=196 second=933 amount=-5 +kerning first=196 second=936 amount=-3 +kerning first=196 second=939 amount=-5 +kerning first=196 second=940 amount=-1 +kerning first=196 second=941 amount=-1 +kerning first=196 second=943 amount=-1 +kerning first=196 second=945 amount=-1 +kerning first=196 second=947 amount=-4 +kerning first=196 second=949 amount=-1 +kerning first=196 second=950 amount=-1 +kerning first=196 second=953 amount=-1 +kerning first=196 second=957 amount=-4 +kerning first=196 second=959 amount=-1 +kerning first=196 second=962 amount=-1 +kerning first=196 second=963 amount=-1 +kerning first=196 second=964 amount=-3 +kerning first=196 second=965 amount=-1 kerning first=196 second=966 amount=-1 -kerning first=8361 second=355 amount=-1 -kerning first=8364 second=115 amount=-1 -kerning first=343 second=99 amount=-1 -kerning first=931 second=249 amount=-1 -kerning first=923 second=940 amount=-1 -kerning first=365 second=261 amount=-1 -kerning first=1256 second=8218 amount=-1 -kerning first=37 second=375 amount=-1 -kerning first=1041 second=88 amount=-2 -kerning first=179 second=290 amount=-2 -kerning first=54 second=8211 amount=-2 -kerning first=1071 second=941 amount=-1 -kerning first=318 second=352 amount=-1 -kerning first=1103 second=1241 amount=-1 -kerning first=223 second=364 amount=-2 -kerning first=103 second=376 amount=-5 -kerning first=1184 second=1079 amount=-1 -kerning first=369 second=211 amount=-2 -kerning first=960 second=1098 amount=-3 -kerning first=963 second=339 amount=-1 -kerning first=123 second=1059 amount=-2 -kerning first=120 second=8212 amount=-3 -kerning first=35 second=8249 amount=-3 -kerning first=1044 second=263 amount=-1 -kerning first=44 second=85 amount=-1 -kerning first=184 second=235 amount=-1 -kerning first=296 second=365 amount=-1 -kerning first=8240 second=8221 amount=-3 -kerning first=8260 second=1066 amount=-5 -kerning first=8372 second=240 amount=-1 -kerning first=902 second=212 amount=-2 -kerning first=936 second=1118 amount=-1 -kerning first=1202 second=266 amount=-1 -kerning first=367 second=1184 amount=-5 -kerning first=967 second=279 amount=-1 -kerning first=163 second=248 amount=-1 -kerning first=964 second=970 amount=-1 -kerning first=276 second=171 amount=-3 -kerning first=45 second=260 amount=-2 -kerning first=1049 second=213 amount=-2 -kerning first=294 second=8217 amount=-3 -kerning first=68 second=197 amount=-2 -kerning first=1085 second=115 amount=-1 -kerning first=1081 second=355 amount=-1 -kerning first=211 second=87 amount=-2 -kerning first=903 second=367 amount=-1 -kerning first=900 second=1185 amount=-3 -kerning first=88 second=337 amount=-2 -kerning first=91 second=99 amount=-1 -kerning first=942 second=1038 amount=-2 -kerning first=108 second=953 amount=-1 -kerning first=1210 second=214 amount=-2 -kerning first=368 second=8218 amount=-1 -kerning first=971 second=226 amount=-1 -kerning first=49 second=210 amount=-2 -kerning first=1051 second=368 amount=-2 -kerning first=189 second=338 amount=-2 -kerning first=192 second=100 amount=-1 -kerning first=304 second=250 amount=-1 -kerning first=301 second=941 amount=-1 -kerning first=69 second=352 amount=-1 -kerning first=330 second=1241 amount=-1 -kerning first=901 second=8220 amount=-3 -kerning first=92 second=277 amount=-1 -kerning first=89 second=968 amount=-2 -kerning first=1170 second=227 amount=-1 -kerning first=358 second=89 amount=-5 -kerning first=1219 second=369 amount=-1 -kerning first=252 second=1098 amount=-3 -kerning first=255 second=339 amount=-1 -kerning first=258 second=101 amount=-1 -kerning first=168 second=353 amount=-1 -kerning first=8222 second=216 amount=-1 -kerning first=47 second=1179 amount=-1 -kerning first=1048 second=8221 amount=-3 -kerning first=50 second=365 amount=-1 -kerning first=1096 second=240 amount=-1 -kerning first=337 second=102 amount=-1 -kerning first=915 second=252 amount=-1 -kerning first=910 second=943 amount=-2 -kerning first=96 second=224 amount=-1 -kerning first=1168 second=1256 amount=-2 -kerning first=236 second=354 amount=-5 -kerning first=113 second=1184 amount=-5 -kerning first=1263 second=79 amount=-2 -kerning first=256 second=970 amount=-1 -kerning first=287 second=213 amount=-2 -kerning first=8224 second=371 amount=-1 -kerning first=8220 second=1195 amount=-1 -kerning first=48 second=8217 amount=-3 -kerning first=197 second=225 amount=-1 -kerning first=214 second=1185 amount=-3 -kerning first=237 second=1038 amount=-2 -kerning first=363 second=214 amount=-2 -kerning first=952 second=1101 amount=-1 -kerning first=114 second=8218 amount=-3 -kerning first=38 second=88 amount=-2 -kerning first=1035 second=268 amount=-2 -kerning first=8225 second=1069 amount=-1 -kerning first=8260 second=81 amount=-2 -kerning first=58 second=250 amount=-1 -kerning first=55 second=941 amount=-1 -kerning first=8363 second=243 amount=-1 -kerning first=78 second=1241 amount=-1 -kerning first=215 second=8220 amount=-3 -kerning first=928 second=357 amount=-1 -kerning first=936 second=117 amount=-1 -kerning first=1185 second=269 amount=-2 -kerning first=956 second=973 amount=-1 -kerning first=124 second=251 amount=-1 -kerning first=266 second=381 amount=-1 -kerning first=39 second=263 amount=-1 -kerning first=1039 second=216 amount=-2 -kerning first=289 second=1066 amount=-5 -kerning first=322 second=240 amount=-1 -kerning first=1107 second=283 amount=-1 -kerning first=942 second=67 amount=-2 -kerning first=105 second=266 amount=-2 -kerning first=108 second=39 amount=-3 -kerning first=362 second=8222 amount=-1 -kerning first=371 second=79 amount=-2 -kerning first=965 second=229 amount=-1 -kerning first=8211 second=44 amount=-1 -kerning first=43 second=213 amount=-2 -kerning first=1041 second=371 amount=-1 -kerning first=1037 second=1195 amount=-1 -kerning first=186 second=103 amount=-1 -kerning first=298 second=253 amount=-1 -kerning first=63 second=355 amount=-1 -kerning first=206 second=267 amount=-1 -kerning first=8370 second=346 amount=-1 -kerning first=1116 second=230 amount=-1 -kerning first=369 second=945 amount=-1 -kerning first=963 second=1262 amount=-2 -kerning first=162 second=356 amount=-5 -kerning first=165 second=116 amount=-1 -kerning first=44 second=368 amount=-1 -kerning first=184 second=972 amount=-1 -kerning first=70 second=65 amount=-4 -kerning first=1084 second=243 amount=-1 -kerning first=8372 second=1028 amount=-2 -kerning first=8378 second=288 amount=-2 -kerning first=250 second=973 amount=-1 -kerning first=42 second=8221 amount=-3 -kerning first=45 second=1066 amount=-4 -kerning first=191 second=228 amount=-1 -kerning first=306 second=118 amount=-4 -kerning first=68 second=916 amount=-2 -kerning first=88 second=1256 amount=-3 -kerning first=1169 second=333 amount=-1 -kerning first=237 second=67 amount=-2 -kerning first=357 second=217 amount=-2 -kerning first=117 second=79 amount=-2 -kerning first=1210 second=949 amount=-1 -kerning first=1223 second=257 amount=-1 -kerning first=971 second=963 amount=-1 -kerning first=167 second=920 amount=-2 -kerning first=1028 second=44 amount=-1 -kerning first=280 second=371 amount=-1 -kerning first=8225 second=84 amount=-5 -kerning first=52 second=253 amount=-1 -kerning first=189 second=1257 amount=-1 -kerning first=1095 second=346 amount=-1 -kerning first=908 second=1174 amount=-3 -kerning first=912 second=360 amount=-2 -kerning first=1170 second=964 amount=-3 -kerning first=1178 second=45 amount=-2 -kerning first=238 second=242 amount=-1 -kerning first=1175 second=273 amount=-1 -kerning first=358 second=372 amount=-5 -kerning first=255 second=1262 amount=-2 -kerning first=258 second=1240 amount=-2 -kerning first=289 second=81 amount=-2 -kerning first=8226 second=259 amount=-1 -kerning first=1067 second=361 amount=-1 -kerning first=314 second=243 amount=-1 -kerning first=1096 second=1028 amount=-2 -kerning first=1099 second=288 amount=-2 -kerning first=958 second=232 amount=-1 -kerning first=1263 second=362 amount=-2 -kerning first=37 second=216 amount=-2 -kerning first=1034 second=374 amount=-5 -kerning first=179 second=106 amount=1 -kerning first=60 second=118 amount=-4 +kerning first=196 second=968 amount=-1 +kerning first=196 second=970 amount=-1 +kerning first=196 second=972 amount=-1 +kerning first=196 second=973 amount=-1 +kerning first=196 second=1026 amount=-5 +kerning first=196 second=1028 amount=-2 +kerning first=196 second=1029 amount=-1 +kerning first=196 second=1032 amount=-1 +kerning first=196 second=1035 amount=-5 +kerning first=196 second=1038 amount=-2 +kerning first=196 second=1054 amount=-2 +kerning first=196 second=1057 amount=-2 +kerning first=196 second=1058 amount=-5 +kerning first=196 second=1059 amount=-2 +kerning first=196 second=1063 amount=-3 +kerning first=196 second=1066 amount=-5 +kerning first=196 second=1069 amount=-1 +kerning first=196 second=1072 amount=-1 +kerning first=196 second=1077 amount=-1 +kerning first=196 second=1079 amount=-1 +kerning first=196 second=1086 amount=-1 +kerning first=196 second=1089 amount=-1 +kerning first=196 second=1090 amount=-3 +kerning first=196 second=1091 amount=-1 +kerning first=196 second=1092 amount=-1 +kerning first=196 second=1098 amount=-3 +kerning first=196 second=1101 amount=-1 +kerning first=196 second=1104 amount=-1 +kerning first=196 second=1105 amount=-1 +kerning first=196 second=1108 amount=-1 +kerning first=196 second=1109 amount=-1 +kerning first=196 second=1112 amount=1 +kerning first=196 second=1118 amount=-1 +kerning first=196 second=1176 amount=-1 +kerning first=196 second=1177 amount=-1 +kerning first=196 second=1184 amount=-5 +kerning first=196 second=1185 amount=-3 +kerning first=196 second=1194 amount=-2 +kerning first=196 second=1195 amount=-1 +kerning first=196 second=1198 amount=-5 +kerning first=196 second=1199 amount=-4 +kerning first=196 second=1240 amount=-2 +kerning first=196 second=1241 amount=-1 +kerning first=196 second=1256 amount=-2 +kerning first=196 second=1257 amount=-1 +kerning first=196 second=1262 amount=-2 +kerning first=196 second=1263 amount=-1 +kerning first=196 second=8211 amount=-2 +kerning first=196 second=8212 amount=-2 +kerning first=196 second=8216 amount=-3 +kerning first=196 second=8217 amount=-3 +kerning first=196 second=8220 amount=-3 +kerning first=196 second=8221 amount=-3 +kerning first=196 second=8249 amount=-3 +kerning first=196 second=8250 amount=-1 +kerning first=197 second=34 amount=-3 +kerning first=197 second=38 amount=-1 +kerning first=197 second=39 amount=-3 +kerning first=197 second=45 amount=-2 +kerning first=197 second=63 amount=-5 +kerning first=197 second=67 amount=-2 +kerning first=197 second=71 amount=-2 +kerning first=197 second=74 amount=-1 +kerning first=197 second=79 amount=-2 +kerning first=197 second=81 amount=-2 +kerning first=197 second=83 amount=-1 +kerning first=197 second=84 amount=-5 +kerning first=197 second=85 amount=-2 +kerning first=197 second=86 amount=-6 +kerning first=197 second=87 amount=-5 +kerning first=197 second=89 amount=-5 +kerning first=197 second=97 amount=-1 +kerning first=197 second=99 amount=-1 +kerning first=197 second=100 amount=-1 +kerning first=197 second=101 amount=-1 +kerning first=197 second=102 amount=-2 +kerning first=197 second=103 amount=-1 +kerning first=197 second=106 amount=1 +kerning first=197 second=111 amount=-1 +kerning first=197 second=113 amount=-1 +kerning first=197 second=115 amount=-1 +kerning first=197 second=116 amount=-1 +kerning first=197 second=117 amount=-1 +kerning first=197 second=118 amount=-4 +kerning first=197 second=119 amount=-4 +kerning first=197 second=121 amount=-1 +kerning first=197 second=171 amount=-3 +kerning first=197 second=173 amount=-2 +kerning first=197 second=187 amount=-1 +kerning first=197 second=199 amount=-2 +kerning first=197 second=210 amount=-2 +kerning first=197 second=211 amount=-2 +kerning first=197 second=212 amount=-2 +kerning first=197 second=213 amount=-2 +kerning first=197 second=214 amount=-2 +kerning first=197 second=216 amount=-2 +kerning first=197 second=217 amount=-2 +kerning first=197 second=218 amount=-2 +kerning first=197 second=219 amount=-2 +kerning first=197 second=220 amount=-2 +kerning first=197 second=221 amount=-5 +kerning first=197 second=224 amount=-1 +kerning first=197 second=225 amount=-1 +kerning first=197 second=226 amount=-1 +kerning first=197 second=227 amount=-1 +kerning first=197 second=228 amount=-1 +kerning first=197 second=229 amount=-1 +kerning first=197 second=230 amount=-1 +kerning first=197 second=231 amount=-1 +kerning first=197 second=232 amount=-1 +kerning first=197 second=233 amount=-1 +kerning first=197 second=234 amount=-1 +kerning first=197 second=235 amount=-1 +kerning first=197 second=240 amount=-1 +kerning first=197 second=242 amount=-1 +kerning first=197 second=243 amount=-1 +kerning first=197 second=244 amount=-1 +kerning first=197 second=245 amount=-1 +kerning first=197 second=246 amount=-1 +kerning first=197 second=248 amount=-1 +kerning first=197 second=249 amount=-1 +kerning first=197 second=250 amount=-1 +kerning first=197 second=251 amount=-1 +kerning first=197 second=252 amount=-1 +kerning first=197 second=253 amount=-1 +kerning first=197 second=257 amount=-1 +kerning first=197 second=259 amount=-1 +kerning first=197 second=261 amount=-1 +kerning first=197 second=262 amount=-2 +kerning first=197 second=263 amount=-1 +kerning first=197 second=266 amount=-2 +kerning first=197 second=267 amount=-1 +kerning first=197 second=268 amount=-2 +kerning first=197 second=269 amount=-1 +kerning first=197 second=271 amount=-1 +kerning first=197 second=273 amount=-1 +kerning first=197 second=275 amount=-1 +kerning first=197 second=277 amount=-1 +kerning first=197 second=279 amount=-1 +kerning first=197 second=281 amount=-1 +kerning first=197 second=283 amount=-1 +kerning first=197 second=286 amount=-2 +kerning first=197 second=287 amount=-1 +kerning first=197 second=288 amount=-2 +kerning first=197 second=289 amount=-1 +kerning first=197 second=290 amount=-2 +kerning first=197 second=291 amount=-1 +kerning first=197 second=332 amount=-2 +kerning first=197 second=333 amount=-1 +kerning first=197 second=334 amount=-2 +kerning first=197 second=335 amount=-1 +kerning first=197 second=336 amount=-2 +kerning first=197 second=337 amount=-1 +kerning first=197 second=338 amount=-2 +kerning first=197 second=339 amount=-1 +kerning first=197 second=346 amount=-1 +kerning first=197 second=347 amount=-1 +kerning first=197 second=350 amount=-1 +kerning first=197 second=351 amount=-1 +kerning first=197 second=352 amount=-1 +kerning first=197 second=353 amount=-1 +kerning first=197 second=354 amount=-5 +kerning first=197 second=355 amount=-1 +kerning first=197 second=356 amount=-5 +kerning first=197 second=357 amount=-1 +kerning first=197 second=359 amount=-1 +kerning first=197 second=360 amount=-2 +kerning first=197 second=361 amount=-1 +kerning first=197 second=362 amount=-2 +kerning first=197 second=363 amount=-1 +kerning first=197 second=364 amount=-2 +kerning first=197 second=365 amount=-1 +kerning first=197 second=366 amount=-2 +kerning first=197 second=367 amount=-1 +kerning first=197 second=368 amount=-2 +kerning first=197 second=369 amount=-1 +kerning first=197 second=370 amount=-2 +kerning first=197 second=371 amount=-1 +kerning first=197 second=372 amount=-5 +kerning first=197 second=373 amount=-4 +kerning first=197 second=374 amount=-5 +kerning first=197 second=375 amount=-1 +kerning first=197 second=376 amount=-5 +kerning first=197 second=920 amount=-2 +kerning first=197 second=927 amount=-2 +kerning first=197 second=932 amount=-5 +kerning first=197 second=933 amount=-5 +kerning first=197 second=936 amount=-3 +kerning first=197 second=939 amount=-5 +kerning first=197 second=940 amount=-1 +kerning first=197 second=941 amount=-1 +kerning first=197 second=943 amount=-1 +kerning first=197 second=945 amount=-1 +kerning first=197 second=947 amount=-4 +kerning first=197 second=949 amount=-1 +kerning first=197 second=950 amount=-1 +kerning first=197 second=953 amount=-1 +kerning first=197 second=957 amount=-4 +kerning first=197 second=959 amount=-1 kerning first=197 second=962 amount=-1 -kerning first=8365 second=111 amount=-1 -kerning first=80 second=283 amount=-1 -kerning first=1103 second=233 amount=-1 -kerning first=341 second=333 amount=-1 -kerning first=934 second=245 amount=-1 -kerning first=103 second=217 amount=-2 -kerning first=1184 second=375 amount=-2 -kerning first=363 second=949 amount=-1 -kerning first=123 second=359 amount=-1 -kerning first=126 second=119 amount=-4 -kerning first=35 second=1195 amount=-1 -kerning first=38 second=371 amount=-1 -kerning first=177 second=1026 amount=-5 -kerning first=180 second=286 amount=-2 -kerning first=1044 second=84 amount=-2 -kerning first=8260 second=364 amount=-2 -kerning first=1076 second=246 amount=-1 -kerning first=204 second=218 amount=-2 -kerning first=321 second=346 amount=-1 -kerning first=8363 second=1035 amount=-5 -kerning first=8366 second=291 amount=-1 -kerning first=84 second=230 amount=-2 -kerning first=345 second=273 amount=-1 -kerning first=101 second=947 amount=-1 -kerning first=1178 second=8249 amount=-1 -kerning first=1202 second=85 amount=-1 -kerning first=247 second=287 amount=-1 -kerning first=964 second=335 amount=-1 -kerning first=967 second=97 amount=-1 -kerning first=273 second=219 amount=-2 -kerning first=1049 second=34 amount=-3 -kerning first=1046 second=259 amount=-1 -kerning first=185 second=231 amount=-1 -kerning first=297 second=361 amount=-1 -kerning first=300 second=121 amount=-1 -kerning first=65 second=243 amount=-1 -kerning first=205 second=373 amount=-4 -kerning first=322 second=1028 amount=-2 -kerning first=325 second=288 amount=-2 -kerning first=942 second=350 amount=-1 -kerning first=251 second=232 amount=-1 -kerning first=371 second=362 amount=-2 -kerning first=374 second=122 amount=-2 -kerning first=965 second=966 amount=-1 -kerning first=164 second=244 amount=-1 -kerning first=968 second=275 amount=-1 -kerning first=274 second=374 amount=-5 -kerning first=304 second=71 amount=-2 -kerning first=1083 second=351 amount=-1 -kerning first=1087 second=111 amount=-1 -kerning first=330 second=233 amount=-1 -kerning first=901 second=1177 amount=-1 -kerning first=904 second=363 amount=-1 -kerning first=86 second=1087 amount=-2 -kerning first=89 second=333 amount=-4 -kerning first=946 second=290 amount=-2 -kerning first=1219 second=210 amount=-2 -kerning first=369 second=8211 amount=-2 -kerning first=8218 second=262 amount=-1 -kerning first=190 second=334 amount=-2 -kerning first=305 second=246 amount=-1 -kerning first=70 second=346 amount=-1 -kerning first=1084 second=1035 amount=-5 -kerning first=213 second=258 amount=-2 -kerning first=8378 second=1098 amount=-3 -kerning first=902 second=8212 amount=-2 -kerning first=905 second=1059 amount=-2 -kerning first=96 second=45 amount=-2 -kerning first=93 second=273 amount=-1 -kerning first=951 second=235 amount=-1 -kerning first=1220 second=365 amount=-1 -kerning first=256 second=335 amount=-1 -kerning first=166 second=1108 amount=-1 -kerning first=169 second=347 amount=-1 -kerning first=282 second=259 amount=-1 -kerning first=287 second=34 amount=-3 -kerning first=8224 second=212 amount=-2 -kerning first=51 second=361 amount=-1 -kerning first=1049 second=8216 amount=-3 -kerning first=54 second=121 amount=-1 -kerning first=191 second=965 amount=-1 -kerning first=74 second=288 amount=-2 -kerning first=916 second=248 amount=-1 -kerning first=237 second=350 amount=-1 -kerning first=234 second=1113 amount=-1 -kerning first=360 second=260 amount=-2 -kerning first=117 second=362 amount=-2 -kerning first=1210 second=8217 amount=-3 -kerning first=260 second=275 amount=-1 -kerning first=1035 second=87 amount=-5 -kerning first=174 second=289 amount=-1 -kerning first=8225 second=367 amount=-1 -kerning first=58 second=71 amount=-2 -kerning first=198 second=221 amount=-5 -kerning first=316 second=111 amount=-1 -kerning first=78 second=233 amount=-1 -kerning first=215 second=1177 amount=-1 -kerning first=336 second=967 amount=-1 -kerning first=956 second=338 amount=-2 -kerning first=1299 second=250 amount=-1 -kerning first=1036 second=262 amount=-3 -kerning first=178 second=234 amount=-1 -kerning first=289 second=364 amount=-2 -kerning first=8222 second=8220 amount=-1 -kerning first=59 second=246 amount=-1 -kerning first=1074 second=199 amount=-2 -kerning first=199 second=376 amount=-2 -kerning first=314 second=1035 amount=-5 -kerning first=317 second=291 amount=-1 -kerning first=1099 second=1098 amount=-3 -kerning first=1107 second=101 amount=-1 -kerning first=931 second=353 amount=-1 -kerning first=96 second=8249 amount=-3 -kerning first=105 second=85 amount=-2 -kerning first=1186 second=263 amount=-1 -kerning first=365 second=365 amount=-1 -kerning first=40 second=259 amount=-1 -kerning first=43 second=34 amount=-3 -kerning first=1041 second=212 amount=-2 -kerning first=287 second=8216 amount=-3 -kerning first=1071 second=1118 amount=-1 +kerning first=197 second=963 amount=-1 +kerning first=197 second=964 amount=-3 +kerning first=197 second=965 amount=-1 +kerning first=197 second=966 amount=-1 +kerning first=197 second=968 amount=-1 +kerning first=197 second=970 amount=-1 +kerning first=197 second=972 amount=-1 +kerning first=197 second=973 amount=-1 +kerning first=197 second=1026 amount=-5 +kerning first=197 second=1028 amount=-2 +kerning first=197 second=1029 amount=-1 +kerning first=197 second=1032 amount=-1 +kerning first=197 second=1035 amount=-5 +kerning first=197 second=1038 amount=-2 +kerning first=197 second=1054 amount=-2 +kerning first=197 second=1057 amount=-2 +kerning first=197 second=1058 amount=-5 +kerning first=197 second=1059 amount=-2 +kerning first=197 second=1063 amount=-3 +kerning first=197 second=1066 amount=-5 +kerning first=197 second=1069 amount=-1 +kerning first=197 second=1072 amount=-1 +kerning first=197 second=1077 amount=-1 +kerning first=197 second=1079 amount=-1 +kerning first=197 second=1086 amount=-1 +kerning first=197 second=1089 amount=-1 +kerning first=197 second=1090 amount=-3 +kerning first=197 second=1091 amount=-1 +kerning first=197 second=1092 amount=-1 +kerning first=197 second=1098 amount=-3 +kerning first=197 second=1101 amount=-1 +kerning first=197 second=1104 amount=-1 +kerning first=197 second=1105 amount=-1 +kerning first=197 second=1108 amount=-1 +kerning first=197 second=1109 amount=-1 +kerning first=197 second=1112 amount=1 +kerning first=197 second=1118 amount=-1 +kerning first=197 second=1176 amount=-1 +kerning first=197 second=1177 amount=-1 +kerning first=197 second=1184 amount=-5 +kerning first=197 second=1185 amount=-3 +kerning first=197 second=1194 amount=-2 +kerning first=197 second=1195 amount=-1 +kerning first=197 second=1198 amount=-5 +kerning first=197 second=1199 amount=-4 +kerning first=197 second=1240 amount=-2 +kerning first=197 second=1241 amount=-1 +kerning first=197 second=1256 amount=-2 +kerning first=197 second=1257 amount=-1 +kerning first=197 second=1262 amount=-2 +kerning first=197 second=1263 amount=-1 +kerning first=197 second=8211 amount=-2 +kerning first=197 second=8212 amount=-2 +kerning first=197 second=8216 amount=-3 +kerning first=197 second=8217 amount=-3 +kerning first=197 second=8220 amount=-3 +kerning first=197 second=8221 amount=-3 +kerning first=197 second=8249 amount=-3 kerning first=197 second=8250 amount=-1 -kerning first=1103 second=970 amount=-1 -kerning first=363 second=8217 amount=-3 -kerning first=184 second=337 amount=-1 -kerning first=296 second=940 amount=-1 -kerning first=299 second=249 amount=-1 -kerning first=64 second=351 amount=-1 -kerning first=207 second=261 amount=-1 -kerning first=204 second=953 amount=-1 -kerning first=8366 second=1101 amount=-1 -kerning first=1117 second=226 amount=-1 -kerning first=1202 second=368 amount=-1 -kerning first=250 second=338 amount=-2 -kerning first=253 second=100 amount=-1 -kerning first=163 second=352 amount=-1 -kerning first=276 second=262 amount=-2 -kerning first=1039 second=8220 amount=-3 -kerning first=185 second=968 amount=-1 -kerning first=188 second=277 amount=-1 -kerning first=303 second=199 amount=-2 -kerning first=65 second=1035 amount=-5 -kerning first=325 second=1098 amount=-3 -kerning first=906 second=251 amount=-1 -kerning first=354 second=263 amount=-3 -kerning first=1195 second=8221 amount=-1 -kerning first=280 second=212 amount=-2 -kerning first=43 second=8216 amount=-3 -kerning first=1063 second=252 amount=-1 -kerning first=1051 second=943 amount=-1 -kerning first=192 second=224 amount=-1 -kerning first=301 second=1118 amount=-1 -kerning first=304 second=354 amount=-5 -kerning first=209 second=1184 amount=-5 -kerning first=330 second=970 amount=-1 -kerning first=95 second=171 amount=-3 -kerning first=358 second=213 amount=-2 -kerning first=950 second=341 amount=-2 -kerning first=109 second=8217 amount=-1 -kerning first=1224 second=253 amount=-1 -kerning first=258 second=225 amount=-1 -kerning first=1026 second=267 amount=-1 -kerning first=278 second=1185 amount=-3 -kerning first=53 second=249 amount=-1 -kerning first=50 second=940 amount=-1 -kerning first=305 second=1038 amount=-2 +kerning first=199 second=44 amount=-1 +kerning first=199 second=45 amount=-1 +kerning first=199 second=46 amount=-1 +kerning first=199 second=47 amount=-1 +kerning first=199 second=65 amount=-1 +kerning first=199 second=84 amount=-1 +kerning first=199 second=86 amount=-1 +kerning first=199 second=87 amount=-1 +kerning first=199 second=88 amount=-2 +kerning first=199 second=89 amount=-2 +kerning first=199 second=90 amount=-1 +kerning first=199 second=106 amount=1 +kerning first=199 second=171 amount=-1 +kerning first=199 second=173 amount=-1 +kerning first=199 second=193 amount=-1 +kerning first=199 second=194 amount=-1 +kerning first=199 second=196 amount=-1 +kerning first=199 second=197 amount=-1 +kerning first=199 second=198 amount=-1 +kerning first=199 second=221 amount=-2 +kerning first=199 second=256 amount=-1 +kerning first=199 second=258 amount=-1 +kerning first=199 second=260 amount=-1 +kerning first=199 second=354 amount=-1 +kerning first=199 second=356 amount=-1 +kerning first=199 second=372 amount=-1 +kerning first=199 second=374 amount=-2 +kerning first=199 second=376 amount=-2 +kerning first=199 second=377 amount=-1 +kerning first=199 second=379 amount=-1 +kerning first=199 second=381 amount=-1 +kerning first=199 second=913 amount=-1 +kerning first=199 second=916 amount=-1 +kerning first=199 second=918 amount=-1 +kerning first=199 second=923 amount=-1 +kerning first=199 second=932 amount=-1 +kerning first=199 second=933 amount=-2 +kerning first=199 second=935 amount=-2 +kerning first=199 second=939 amount=-2 +kerning first=199 second=1026 amount=-1 +kerning first=199 second=1033 amount=-1 +kerning first=199 second=1035 amount=-1 +kerning first=199 second=1040 amount=-1 +kerning first=199 second=1044 amount=-1 +kerning first=199 second=1046 amount=-2 +kerning first=199 second=1051 amount=-1 +kerning first=199 second=1058 amount=-1 +kerning first=199 second=1061 amount=-2 +kerning first=199 second=1066 amount=-1 +kerning first=199 second=1069 amount=1 +kerning first=199 second=1112 amount=1 +kerning first=199 second=1174 amount=-2 +kerning first=199 second=1176 amount=1 +kerning first=199 second=1184 amount=-1 +kerning first=199 second=1198 amount=-2 +kerning first=199 second=1202 amount=-2 +kerning first=199 second=1298 amount=-1 +kerning first=199 second=8211 amount=-1 +kerning first=199 second=8212 amount=-1 +kerning first=199 second=8218 amount=-1 +kerning first=199 second=8222 amount=-1 +kerning first=199 second=8230 amount=-1 +kerning first=199 second=8249 amount=-1 +kerning first=208 second=44 amount=-1 +kerning first=208 second=46 amount=-1 +kerning first=208 second=47 amount=-1 +kerning first=208 second=65 amount=-2 +kerning first=208 second=84 amount=-2 +kerning first=208 second=86 amount=-2 +kerning first=208 second=87 amount=-2 +kerning first=208 second=88 amount=-3 +kerning first=208 second=89 amount=-3 +kerning first=208 second=90 amount=-1 +kerning first=208 second=193 amount=-2 +kerning first=208 second=194 amount=-2 +kerning first=208 second=196 amount=-2 +kerning first=208 second=197 amount=-2 +kerning first=208 second=198 amount=-2 +kerning first=208 second=221 amount=-3 +kerning first=208 second=256 amount=-2 +kerning first=208 second=258 amount=-2 +kerning first=208 second=260 amount=-2 +kerning first=208 second=354 amount=-2 +kerning first=208 second=356 amount=-2 +kerning first=208 second=372 amount=-2 +kerning first=208 second=374 amount=-3 +kerning first=208 second=376 amount=-3 +kerning first=208 second=377 amount=-1 +kerning first=208 second=379 amount=-1 +kerning first=208 second=381 amount=-1 +kerning first=208 second=913 amount=-2 +kerning first=208 second=916 amount=-2 +kerning first=208 second=918 amount=-1 +kerning first=208 second=923 amount=-2 +kerning first=208 second=932 amount=-2 +kerning first=208 second=933 amount=-3 +kerning first=208 second=935 amount=-3 +kerning first=208 second=939 amount=-3 +kerning first=208 second=955 amount=-2 +kerning first=208 second=967 amount=-1 +kerning first=208 second=1026 amount=-2 +kerning first=208 second=1033 amount=-1 +kerning first=208 second=1035 amount=-2 +kerning first=208 second=1040 amount=-2 +kerning first=208 second=1044 amount=-1 +kerning first=208 second=1046 amount=-3 +kerning first=208 second=1051 amount=-1 +kerning first=208 second=1058 amount=-2 +kerning first=208 second=1061 amount=-3 +kerning first=208 second=1066 amount=-2 +kerning first=208 second=1071 amount=-1 +kerning first=208 second=1174 amount=-3 +kerning first=208 second=1184 amount=-2 +kerning first=208 second=1198 amount=-3 +kerning first=208 second=1202 amount=-3 +kerning first=208 second=1298 amount=-1 +kerning first=208 second=8218 amount=-1 +kerning first=208 second=8222 amount=-1 +kerning first=208 second=8230 amount=-1 +kerning first=210 second=44 amount=-1 +kerning first=210 second=46 amount=-1 +kerning first=210 second=47 amount=-1 +kerning first=210 second=65 amount=-2 +kerning first=210 second=84 amount=-2 +kerning first=210 second=86 amount=-2 +kerning first=210 second=87 amount=-2 +kerning first=210 second=88 amount=-3 +kerning first=210 second=89 amount=-3 +kerning first=210 second=90 amount=-1 +kerning first=210 second=193 amount=-2 +kerning first=210 second=194 amount=-2 +kerning first=210 second=196 amount=-2 +kerning first=210 second=197 amount=-2 +kerning first=210 second=198 amount=-2 +kerning first=210 second=221 amount=-3 +kerning first=210 second=256 amount=-2 +kerning first=210 second=258 amount=-2 +kerning first=210 second=260 amount=-2 +kerning first=210 second=354 amount=-2 +kerning first=210 second=356 amount=-2 +kerning first=210 second=372 amount=-2 +kerning first=210 second=374 amount=-3 +kerning first=210 second=376 amount=-3 +kerning first=210 second=377 amount=-1 +kerning first=210 second=379 amount=-1 +kerning first=210 second=381 amount=-1 +kerning first=210 second=913 amount=-2 +kerning first=210 second=916 amount=-2 +kerning first=210 second=918 amount=-1 +kerning first=210 second=923 amount=-2 +kerning first=210 second=932 amount=-2 +kerning first=210 second=933 amount=-3 +kerning first=210 second=935 amount=-3 +kerning first=210 second=939 amount=-3 +kerning first=210 second=955 amount=-2 +kerning first=210 second=967 amount=-1 +kerning first=210 second=1026 amount=-2 +kerning first=210 second=1033 amount=-1 +kerning first=210 second=1035 amount=-2 +kerning first=210 second=1040 amount=-2 +kerning first=210 second=1044 amount=-1 +kerning first=210 second=1046 amount=-3 +kerning first=210 second=1051 amount=-1 +kerning first=210 second=1058 amount=-2 +kerning first=210 second=1061 amount=-3 +kerning first=210 second=1066 amount=-2 +kerning first=210 second=1071 amount=-1 +kerning first=210 second=1174 amount=-3 +kerning first=210 second=1184 amount=-2 +kerning first=210 second=1198 amount=-3 +kerning first=210 second=1202 amount=-3 +kerning first=210 second=1298 amount=-1 kerning first=210 second=8218 amount=-1 -kerning first=915 second=356 amount=-5 -kerning first=923 second=116 amount=-1 -kerning first=1176 second=268 amount=-2 -kerning first=951 second=972 amount=-1 -kerning first=954 second=281 amount=-2 -kerning first=172 second=1241 amount=-1 -kerning first=176 second=187 amount=-1 -kerning first=279 second=8220 amount=-1 -kerning first=57 second=199 amount=-2 -kerning first=1071 second=117 amount=-1 -kerning first=194 second=1079 amount=-1 -kerning first=200 second=89 amount=-5 -kerning first=77 second=339 amount=-1 -kerning first=80 second=101 amount=-1 -kerning first=74 second=1098 amount=-3 -kerning first=100 second=263 amount=-1 -kerning first=1184 second=216 amount=-3 -kerning first=357 second=8221 amount=-3 -kerning first=960 second=228 amount=-1 -kerning first=268 second=90 amount=-1 -kerning first=38 second=212 amount=-2 -kerning first=1035 second=370 amount=-2 -kerning first=291 second=252 amount=-1 -kerning first=58 second=354 amount=-5 -kerning first=55 second=1118 amount=-1 -kerning first=1069 second=1044 amount=-1 -kerning first=201 second=266 amount=-2 -kerning first=204 second=39 amount=-3 -kerning first=78 second=970 amount=-1 -kerning first=928 second=920 amount=-2 -kerning first=1178 second=1195 amount=-1 -kerning first=247 second=103 amount=-1 -kerning first=367 second=253 amount=-1 -kerning first=956 second=1257 amount=-1 -kerning first=124 second=355 amount=-1 -kerning first=160 second=115 amount=-1 -kerning first=36 second=1185 amount=-3 -kerning first=8249 second=1174 amount=-1 -kerning first=59 second=1038 amount=-2 -kerning first=1078 second=242 amount=-2 -kerning first=205 second=214 amount=-2 -kerning first=317 second=1101 amount=-1 -kerning first=8369 second=287 amount=-1 -kerning first=105 second=368 amount=-2 -kerning first=37 second=8220 amount=-3 -kerning first=186 second=227 amount=-1 -kerning first=301 second=117 amount=-1 -kerning first=298 second=357 amount=-1 -kerning first=206 second=369 amount=-1 -kerning first=323 second=973 amount=-1 -kerning first=8377 second=232 amount=-1 -kerning first=103 second=8221 amount=-3 -kerning first=946 second=106 amount=1 -kerning first=252 second=228 amount=-1 -kerning first=375 second=118 amount=-4 -kerning first=165 second=240 amount=-1 -kerning first=271 second=1194 amount=-2 -kerning first=47 second=252 amount=-1 -kerning first=184 second=1256 amount=-2 -kerning first=187 second=382 amount=-1 -kerning first=305 second=67 amount=-2 -kerning first=905 second=359 amount=-1 -kerning first=910 second=119 amount=-2 -kerning first=87 second=1081 amount=-2 -kerning first=1117 second=963 amount=-1 -kerning first=1168 second=271 amount=-1 -kerning first=944 second=1026 amount=-5 -kerning first=948 second=286 amount=-2 -kerning first=113 second=253 amount=-1 -kerning first=250 second=1257 amount=-1 -kerning first=973 second=218 amount=-2 -kerning first=8220 second=258 amount=-3 -kerning first=1062 second=360 amount=-1 -kerning first=306 second=242 amount=-1 -kerning first=94 second=268 amount=-2 -kerning first=1174 second=219 amount=-1 -kerning first=952 second=231 amount=-1 -kerning first=1223 second=361 amount=-1 -kerning first=380 second=243 amount=-1 -kerning first=52 second=357 amount=-1 -kerning first=55 second=117 amount=-1 -kerning first=195 second=269 amount=-1 -kerning first=72 second=973 amount=-1 -kerning first=241 second=106 amount=1 -kerning first=121 second=118 amount=-4 -kerning first=1299 second=71 amount=-2 -kerning first=258 second=962 amount=-1 -kerning first=1240 second=193 amount=-2 -kerning first=972 second=8230 amount=-1 -kerning first=175 second=283 amount=-1 -kerning first=1036 second=83 amount=-1 -kerning first=8226 second=363 amount=-1 -kerning first=59 second=67 amount=-2 -kerning first=8361 second=290 amount=-2 -kerning first=343 second=44 amount=-3 -kerning first=96 second=1195 amount=-1 -kerning first=239 second=1026 amount=-5 -kerning first=1186 second=84 amount=-2 -kerning first=958 second=334 amount=-2 -kerning first=179 second=230 amount=-1 -kerning first=8224 second=8212 amount=-2 -kerning first=8230 second=1059 amount=-1 -kerning first=60 second=242 amount=-1 -kerning first=197 second=947 amount=-4 -kerning first=200 second=372 amount=-5 -kerning first=318 second=287 amount=-1 -kerning first=8365 second=235 amount=-1 -kerning first=80 second=1240 amount=-2 -kerning first=77 second=1262 amount=-2 -kerning first=1103 second=335 amount=-1 -kerning first=926 second=1108 amount=-1 -kerning first=934 second=347 amount=-1 -kerning first=100 second=1069 amount=-1 -kerning first=369 second=121 amount=-1 -kerning first=960 second=965 amount=-1 -kerning first=966 second=46 amount=-1 -kerning first=126 second=243 amount=-1 -kerning first=177 second=1263 amount=-1 -kerning first=1073 second=1113 amount=-1 -kerning first=84 second=332 amount=-1 -kerning first=967 second=221 amount=-5 -kerning first=266 second=8230 amount=-1 -kerning first=276 second=83 amount=-1 -kerning first=1039 second=1177 amount=-1 -kerning first=1046 second=363 amount=-1 -kerning first=185 second=333 amount=-1 -kerning first=300 second=245 amount=-1 -kerning first=1081 second=290 amount=-2 -kerning first=205 second=949 amount=-1 -kerning first=88 second=271 amount=-2 -kerning first=251 second=334 amount=-2 -kerning first=374 second=246 amount=-4 -kerning first=248 second=1090 amount=-1 -kerning first=968 second=376 amount=-5 -kerning first=164 second=346 amount=-1 -kerning first=46 second=360 amount=-1 -kerning first=1041 second=8212 amount=-2 -kerning first=189 second=273 amount=-1 -kerning first=192 second=45 amount=-2 -kerning first=186 second=964 amount=-3 -kerning first=69 second=287 amount=-1 -kerning first=1087 second=235 amount=-1 -kerning first=330 second=335 amount=-1 -kerning first=92 second=219 amount=-2 -kerning first=358 second=34 amount=-3 -kerning first=252 second=965 amount=-1 -kerning first=165 second=1028 amount=-2 -kerning first=168 second=288 amount=-2 -kerning first=8212 second=1184 amount=-4 -kerning first=8218 second=366 amount=-1 -kerning first=1064 second=248 amount=-1 -kerning first=193 second=220 amount=-2 -kerning first=305 second=350 amount=-1 -kerning first=73 second=232 amount=-1 -kerning first=337 second=47 amount=-1 -kerning first=93 second=374 amount=-5 -kerning first=1176 second=87 amount=-5 -kerning first=236 second=289 amount=-1 -kerning first=951 second=337 amount=-1 -kerning first=954 second=99 amount=-2 -kerning first=1220 second=940 amount=-1 -kerning first=376 second=1114 amount=-3 -kerning first=382 second=111 amount=-1 -kerning first=973 second=953 amount=-1 -kerning first=1027 second=261 amount=-1 -kerning first=172 second=233 amount=-1 -kerning first=282 second=363 amount=-1 -kerning first=8216 second=8218 amount=-1 -kerning first=54 second=245 amount=-1 -kerning first=1068 second=198 amount=-1 -kerning first=194 second=375 amount=-1 -kerning first=916 second=352 amount=-1 -kerning first=100 second=84 amount=-5 -kerning first=240 second=234 amount=-1 -kerning first=952 second=968 amount=-1 -kerning first=955 second=277 amount=-1 -kerning first=120 second=246 amount=-2 -kerning first=1298 second=199 amount=-2 -kerning first=260 second=376 amount=-5 -kerning first=1035 second=211 amount=-2 -kerning first=280 second=8212 amount=-2 -kerning first=8240 second=251 amount=-1 -kerning first=1073 second=113 amount=-1 -kerning first=192 second=8249 amount=-3 -kerning first=201 second=85 amount=-2 -kerning first=316 second=235 amount=-1 -kerning first=78 second=335 amount=-1 -kerning first=104 second=34 amount=-1 -kerning first=358 second=8216 amount=-3 -kerning first=1299 second=354 amount=-5 -kerning first=258 second=8250 amount=-1 -kerning first=1033 second=1184 amount=-5 -kerning first=178 second=336 amount=-2 -kerning first=294 second=248 amount=-1 -kerning first=59 second=350 amount=-1 -kerning first=8369 second=103 amount=-1 -kerning first=346 second=87 amount=-2 -kerning first=1179 second=1185 amount=-2 -kerning first=365 second=940 amount=-1 -kerning first=161 second=111 amount=-1 -kerning first=125 second=351 amount=-1 -kerning first=37 second=1177 amount=-1 -kerning first=40 second=363 amount=-1 -kerning first=63 second=290 amount=-2 -kerning first=206 second=210 amount=-2 -kerning first=323 second=338 amount=-2 -kerning first=8365 second=972 amount=-1 -kerning first=901 second=250 amount=-1 -kerning first=8370 second=281 amount=-1 -kerning first=249 second=277 amount=-1 -kerning first=372 second=199 amount=-2 -kerning first=963 second=1079 amount=-1 -kerning first=126 second=1035 amount=-5 -kerning first=162 second=291 amount=-1 -kerning first=38 second=8212 amount=-2 -kerning first=41 second=1059 amount=-2 -kerning first=1048 second=251 amount=-1 -kerning first=299 second=353 amount=-1 -kerning first=302 second=113 amount=-1 -kerning first=207 second=365 amount=-1 -kerning first=8378 second=228 amount=-1 -kerning first=104 second=8216 amount=-1 -kerning first=253 second=224 amount=-1 -kerning first=376 second=114 amount=-3 -kerning first=973 second=39 amount=-3 -kerning first=273 second=1184 amount=-5 -kerning first=276 second=366 amount=-2 -kerning first=48 second=248 amount=-1 -kerning first=191 second=171 amount=-3 -kerning first=205 second=8217 amount=-3 -kerning first=906 second=355 amount=-1 -kerning first=94 second=87 amount=-5 -kerning first=1169 second=267 amount=-1 -kerning first=354 second=367 amount=-2 -kerning first=8217 second=945 amount=-1 -kerning first=1063 second=356 amount=-5 -kerning first=72 second=338 amount=-2 -kerning first=1087 second=972 amount=-1 -kerning first=215 second=250 amount=-1 -kerning first=1095 second=281 amount=-1 -kerning first=75 second=100 amount=-2 -kerning first=333 second=380 amount=-1 -kerning first=920 second=65 amount=-2 -kerning first=95 second=262 amount=-2 -kerning first=238 second=187 amount=-1 -kerning first=1224 second=357 amount=-1 -kerning first=255 second=1079 amount=-1 -kerning first=1026 second=369 amount=-1 -kerning first=168 second=1098 amount=-3 -kerning first=175 second=101 amount=-1 -kerning first=53 second=353 amount=-1 -kerning first=56 second=113 amount=-1 -kerning first=196 second=263 amount=-1 -kerning first=8361 second=106 amount=1 -kerning first=1099 second=228 amount=-1 -kerning first=923 second=240 amount=-1 -kerning first=1171 second=1194 amount=-2 -kerning first=1176 second=370 amount=-2 -kerning first=242 second=102 amount=-1 -kerning first=951 second=1256 amount=-2 -kerning first=1256 second=1044 amount=-1 -kerning first=267 second=39 amount=-1 -kerning first=1037 second=79 amount=-2 -kerning first=176 second=279 amount=-1 -kerning first=172 second=970 amount=-1 -kerning first=8230 second=359 amount=-1 -kerning first=200 second=213 amount=-2 -kerning first=318 second=103 amount=-1 -kerning first=80 second=225 amount=-1 -kerning first=1097 second=1257 amount=-1 -kerning first=223 second=115 amount=-1 -kerning first=341 second=267 amount=-1 -kerning first=97 second=1185 amount=-1 -kerning first=100 second=367 amount=-1 -kerning first=1035 second=945 amount=-1 -kerning first=180 second=226 amount=-1 -kerning first=291 second=356 amount=-5 -kerning first=296 second=116 amount=-1 -kerning first=201 second=368 amount=-2 -kerning first=316 second=972 amount=-1 -kerning first=321 second=281 amount=-1 -kerning first=8366 second=231 amount=-1 -kerning first=98 second=8220 amount=-1 -kerning first=247 second=227 amount=-1 -kerning first=367 second=357 amount=-1 -kerning first=964 second=269 amount=-1 -kerning first=42 second=251 amount=-1 -kerning first=1081 second=106 amount=1 -kerning first=202 second=1066 amount=-5 -kerning first=325 second=228 amount=-1 -kerning first=903 second=118 amount=-4 -kerning first=1107 second=962 amount=-1 -kerning first=942 second=283 amount=-1 -kerning first=108 second=252 amount=-1 -kerning first=105 second=943 amount=-1 -kerning first=248 second=382 amount=-1 -kerning first=368 second=1044 amount=-1 -kerning first=374 second=67 amount=-3 -kerning first=968 second=217 amount=-2 -kerning first=1051 second=119 amount=-4 -kerning first=298 second=920 amount=-2 -kerning first=69 second=103 amount=-1 -kerning first=1083 second=286 amount=-2 -kerning first=209 second=253 amount=-1 -kerning first=323 second=1257 amount=-1 -kerning first=8377 second=334 amount=-2 -kerning first=8370 second=1090 amount=-3 -kerning first=89 second=267 amount=-4 -kerning first=1119 second=218 amount=-2 -kerning first=946 second=230 amount=-1 -kerning first=1206 second=360 amount=-1 -kerning first=375 second=242 amount=-1 -kerning first=372 second=923 amount=-5 -kerning first=966 second=947 amount=-1 -kerning first=162 second=1101 amount=-1 -kerning first=47 second=356 amount=-5 -kerning first=50 second=116 amount=-1 -kerning first=190 second=268 amount=-2 -kerning first=70 second=281 amount=-1 -kerning first=1090 second=231 amount=-1 -kerning first=8378 second=965 amount=-1 -kerning first=910 second=243 amount=-4 -kerning first=1168 second=373 amount=-4 -kerning first=944 second=1263 amount=-1 -kerning first=113 second=357 amount=-1 -kerning first=256 second=269 amount=-1 -kerning first=166 second=973 amount=-1 -kerning first=1065 second=244 amount=-1 -kerning first=194 second=216 amount=-2 -kerning first=311 second=106 amount=1 -kerning first=74 second=228 amount=-1 -kerning first=91 second=1194 amount=-2 -kerning first=94 second=370 amount=-2 -kerning first=237 second=283 amount=-1 -kerning first=952 second=333 amount=-1 -kerning first=260 second=217 amount=-2 -kerning first=35 second=79 amount=-2 -kerning first=174 second=229 amount=-1 -kerning first=8221 second=1051 amount=-3 -kerning first=52 second=920 amount=-2 -kerning first=1069 second=194 amount=-2 -kerning first=192 second=1195 amount=-1 -kerning first=195 second=371 amount=-1 -kerning first=313 second=286 amount=-1 -kerning first=72 second=1257 amount=-1 -kerning first=1095 second=1090 amount=-3 -kerning first=361 second=360 amount=-2 -kerning first=956 second=273 amount=-1 -kerning first=953 second=964 amount=-2 -kerning first=121 second=242 amount=-1 -kerning first=258 second=947 amount=-4 -kerning first=175 second=1240 amount=-2 -kerning first=1067 second=1108 amount=-1 -kerning first=196 second=1069 amount=-1 -kerning first=202 second=81 amount=-2 -kerning first=317 second=231 amount=-1 -kerning first=1099 second=965 amount=-1 -kerning first=1107 second=46 amount=-3 -kerning first=923 second=1028 amount=-2 -kerning first=931 second=288 amount=-2 -kerning first=239 second=1263 amount=-1 -kerning first=962 second=220 amount=-2 -kerning first=1037 second=362 amount=-2 -kerning first=179 second=332 amount=-2 -kerning first=63 second=106 amount=1 -kerning first=8365 second=337 amount=-1 -kerning first=8370 second=99 amount=-1 -kerning first=901 second=71 amount=-2 -kerning first=80 second=962 amount=-1 -kerning first=1184 second=1177 amount=-1 -kerning first=369 second=245 amount=-1 -kerning first=963 second=375 amount=-1 -kerning first=271 second=257 amount=-1 -kerning first=41 second=359 amount=-1 -kerning first=1035 second=8211 amount=-2 -kerning first=1038 second=1051 amount=-1 -kerning first=180 second=963 amount=-1 -kerning first=184 second=271 amount=-1 -kerning first=44 second=119 amount=-2 -kerning first=61 second=1026 amount=-5 -kerning first=64 second=286 amount=-2 -kerning first=1080 second=234 amount=-1 -kerning first=321 second=1090 amount=-3 -kerning first=8366 second=968 amount=-1 -kerning first=902 second=246 amount=-1 -kerning first=8372 second=277 amount=-1 -kerning first=350 second=258 amount=-1 -kerning first=1185 second=8212 amount=-3 -kerning first=250 second=273 amount=-1 -kerning first=253 second=45 amount=-2 -kerning first=247 second=964 amount=-3 -kerning first=163 second=287 amount=-1 -kerning first=188 second=219 amount=-2 -kerning first=297 second=1108 amount=-1 -kerning first=300 second=347 amount=-1 -kerning first=325 second=965 amount=-1 -kerning first=332 second=46 amount=-1 -kerning first=88 second=373 amount=-3 -kerning first=1210 second=248 amount=-1 -kerning first=254 second=220 amount=-2 -kerning first=374 second=350 amount=-1 -kerning first=167 second=232 amount=-1 -kerning first=274 second=1176 amount=-1 -kerning first=49 second=244 amount=-1 -kerning first=189 second=374 amount=-5 -kerning first=304 second=289 amount=-1 -kerning first=1087 second=337 amount=-1 -kerning first=1095 second=99 amount=-1 -kerning first=215 second=71 amount=-2 -kerning first=89 second=1071 amount=-2 -kerning first=86 second=8230 amount=-4 -kerning first=95 second=83 amount=-1 -kerning first=912 second=111 amount=-1 -kerning first=1170 second=261 amount=-1 -kerning first=1119 second=953 amount=-1 -kerning first=255 second=375 amount=-1 -kerning first=1026 second=210 amount=-2 -kerning first=8222 second=250 amount=-1 -kerning first=1064 second=352 amount=-1 -kerning first=196 second=84 amount=-5 -kerning first=70 second=1090 amount=-3 -kerning first=73 second=334 amount=-2 -kerning first=1096 second=277 amount=-1 -kerning first=310 second=234 amount=-2 -kerning first=334 second=376 amount=-3 -kerning first=915 second=291 amount=-1 -kerning first=1176 second=211 amount=-2 -kerning first=1263 second=113 amount=-1 -kerning first=253 second=8249 amount=-3 -kerning first=382 second=235 amount=-1 -kerning first=1027 second=365 amount=-1 -kerning first=172 second=335 amount=-1 -kerning first=176 second=97 amount=-1 -kerning first=51 second=1108 amount=-1 -kerning first=54 second=347 amount=-1 -kerning first=197 second=259 amount=-1 -kerning first=200 second=34 amount=-3 -kerning first=74 second=965 amount=-1 -kerning first=80 second=46 amount=-4 +kerning first=210 second=8222 amount=-1 +kerning first=210 second=8230 amount=-1 +kerning first=211 second=44 amount=-1 +kerning first=211 second=46 amount=-1 +kerning first=211 second=47 amount=-1 +kerning first=211 second=65 amount=-2 +kerning first=211 second=84 amount=-2 +kerning first=211 second=86 amount=-2 +kerning first=211 second=87 amount=-2 +kerning first=211 second=88 amount=-3 +kerning first=211 second=89 amount=-3 +kerning first=211 second=90 amount=-1 +kerning first=211 second=193 amount=-2 +kerning first=211 second=194 amount=-2 +kerning first=211 second=196 amount=-2 +kerning first=211 second=197 amount=-2 +kerning first=211 second=198 amount=-2 +kerning first=211 second=221 amount=-3 +kerning first=211 second=256 amount=-2 +kerning first=211 second=258 amount=-2 +kerning first=211 second=260 amount=-2 +kerning first=211 second=354 amount=-2 +kerning first=211 second=356 amount=-2 +kerning first=211 second=372 amount=-2 +kerning first=211 second=374 amount=-3 +kerning first=211 second=376 amount=-3 +kerning first=211 second=377 amount=-1 +kerning first=211 second=379 amount=-1 +kerning first=211 second=381 amount=-1 +kerning first=211 second=913 amount=-2 +kerning first=211 second=916 amount=-2 +kerning first=211 second=918 amount=-1 +kerning first=211 second=923 amount=-2 +kerning first=211 second=932 amount=-2 +kerning first=211 second=933 amount=-3 +kerning first=211 second=935 amount=-3 +kerning first=211 second=939 amount=-3 +kerning first=211 second=955 amount=-2 +kerning first=211 second=967 amount=-1 +kerning first=211 second=1026 amount=-2 +kerning first=211 second=1033 amount=-1 +kerning first=211 second=1035 amount=-2 +kerning first=211 second=1040 amount=-2 +kerning first=211 second=1044 amount=-1 +kerning first=211 second=1046 amount=-3 +kerning first=211 second=1051 amount=-1 +kerning first=211 second=1058 amount=-2 +kerning first=211 second=1061 amount=-3 +kerning first=211 second=1066 amount=-2 +kerning first=211 second=1071 amount=-1 +kerning first=211 second=1174 amount=-3 +kerning first=211 second=1184 amount=-2 +kerning first=211 second=1198 amount=-3 +kerning first=211 second=1202 amount=-3 +kerning first=211 second=1298 amount=-1 +kerning first=211 second=8218 amount=-1 +kerning first=211 second=8222 amount=-1 +kerning first=211 second=8230 amount=-1 +kerning first=212 second=44 amount=-1 +kerning first=212 second=46 amount=-1 +kerning first=212 second=47 amount=-1 +kerning first=212 second=65 amount=-2 +kerning first=212 second=84 amount=-2 +kerning first=212 second=86 amount=-2 +kerning first=212 second=87 amount=-2 +kerning first=212 second=88 amount=-3 +kerning first=212 second=89 amount=-3 +kerning first=212 second=90 amount=-1 +kerning first=212 second=193 amount=-2 +kerning first=212 second=194 amount=-2 +kerning first=212 second=196 amount=-2 +kerning first=212 second=197 amount=-2 +kerning first=212 second=198 amount=-2 +kerning first=212 second=221 amount=-3 +kerning first=212 second=256 amount=-2 +kerning first=212 second=258 amount=-2 +kerning first=212 second=260 amount=-2 +kerning first=212 second=354 amount=-2 +kerning first=212 second=356 amount=-2 +kerning first=212 second=372 amount=-2 +kerning first=212 second=374 amount=-3 +kerning first=212 second=376 amount=-3 +kerning first=212 second=377 amount=-1 +kerning first=212 second=379 amount=-1 +kerning first=212 second=381 amount=-1 +kerning first=212 second=913 amount=-2 +kerning first=212 second=916 amount=-2 +kerning first=212 second=918 amount=-1 +kerning first=212 second=923 amount=-2 +kerning first=212 second=932 amount=-2 +kerning first=212 second=933 amount=-3 +kerning first=212 second=935 amount=-3 +kerning first=212 second=939 amount=-3 +kerning first=212 second=955 amount=-2 +kerning first=212 second=967 amount=-1 +kerning first=212 second=1026 amount=-2 +kerning first=212 second=1033 amount=-1 +kerning first=212 second=1035 amount=-2 +kerning first=212 second=1040 amount=-2 +kerning first=212 second=1044 amount=-1 +kerning first=212 second=1046 amount=-3 +kerning first=212 second=1051 amount=-1 +kerning first=212 second=1058 amount=-2 +kerning first=212 second=1061 amount=-3 +kerning first=212 second=1066 amount=-2 +kerning first=212 second=1071 amount=-1 +kerning first=212 second=1174 amount=-3 +kerning first=212 second=1184 amount=-2 +kerning first=212 second=1198 amount=-3 +kerning first=212 second=1202 amount=-3 +kerning first=212 second=1298 amount=-1 +kerning first=212 second=8218 amount=-1 +kerning first=212 second=8222 amount=-1 +kerning first=212 second=8230 amount=-1 +kerning first=213 second=44 amount=-1 +kerning first=213 second=46 amount=-1 +kerning first=213 second=47 amount=-1 +kerning first=213 second=65 amount=-2 +kerning first=213 second=84 amount=-2 +kerning first=213 second=86 amount=-2 +kerning first=213 second=87 amount=-2 +kerning first=213 second=88 amount=-3 +kerning first=213 second=89 amount=-3 +kerning first=213 second=90 amount=-1 +kerning first=213 second=193 amount=-2 +kerning first=213 second=194 amount=-2 +kerning first=213 second=196 amount=-2 +kerning first=213 second=197 amount=-2 +kerning first=213 second=198 amount=-2 +kerning first=213 second=221 amount=-3 +kerning first=213 second=256 amount=-2 +kerning first=213 second=258 amount=-2 +kerning first=213 second=260 amount=-2 +kerning first=213 second=354 amount=-2 +kerning first=213 second=356 amount=-2 +kerning first=213 second=372 amount=-2 +kerning first=213 second=374 amount=-3 +kerning first=213 second=376 amount=-3 +kerning first=213 second=377 amount=-1 +kerning first=213 second=379 amount=-1 +kerning first=213 second=381 amount=-1 +kerning first=213 second=913 amount=-2 +kerning first=213 second=916 amount=-2 +kerning first=213 second=918 amount=-1 +kerning first=213 second=923 amount=-2 +kerning first=213 second=932 amount=-2 +kerning first=213 second=933 amount=-3 +kerning first=213 second=935 amount=-3 +kerning first=213 second=939 amount=-3 +kerning first=213 second=955 amount=-2 +kerning first=213 second=967 amount=-1 +kerning first=213 second=1026 amount=-2 +kerning first=213 second=1033 amount=-1 +kerning first=213 second=1035 amount=-2 +kerning first=213 second=1040 amount=-2 +kerning first=213 second=1044 amount=-1 +kerning first=213 second=1046 amount=-3 +kerning first=213 second=1051 amount=-1 +kerning first=213 second=1058 amount=-2 +kerning first=213 second=1061 amount=-3 +kerning first=213 second=1066 amount=-2 +kerning first=213 second=1071 amount=-1 +kerning first=213 second=1174 amount=-3 +kerning first=213 second=1184 amount=-2 +kerning first=213 second=1198 amount=-3 +kerning first=213 second=1202 amount=-3 +kerning first=213 second=1298 amount=-1 +kerning first=213 second=8218 amount=-1 +kerning first=213 second=8222 amount=-1 +kerning first=213 second=8230 amount=-1 +kerning first=216 second=44 amount=-1 +kerning first=216 second=46 amount=-1 +kerning first=216 second=47 amount=-1 +kerning first=216 second=65 amount=-2 +kerning first=216 second=84 amount=-2 +kerning first=216 second=86 amount=-2 +kerning first=216 second=87 amount=-2 +kerning first=216 second=88 amount=-3 +kerning first=216 second=89 amount=-3 +kerning first=216 second=90 amount=-1 +kerning first=216 second=193 amount=-2 +kerning first=216 second=194 amount=-2 +kerning first=216 second=196 amount=-2 +kerning first=216 second=197 amount=-2 +kerning first=216 second=198 amount=-2 +kerning first=216 second=221 amount=-3 +kerning first=216 second=256 amount=-2 +kerning first=216 second=258 amount=-2 +kerning first=216 second=260 amount=-2 +kerning first=216 second=354 amount=-2 +kerning first=216 second=356 amount=-2 +kerning first=216 second=372 amount=-2 +kerning first=216 second=374 amount=-3 +kerning first=216 second=376 amount=-3 +kerning first=216 second=377 amount=-1 +kerning first=216 second=379 amount=-1 +kerning first=216 second=381 amount=-1 +kerning first=216 second=913 amount=-2 +kerning first=216 second=916 amount=-2 +kerning first=216 second=918 amount=-1 +kerning first=216 second=923 amount=-2 +kerning first=216 second=932 amount=-2 +kerning first=216 second=933 amount=-3 +kerning first=216 second=935 amount=-3 +kerning first=216 second=939 amount=-3 +kerning first=216 second=955 amount=-2 +kerning first=216 second=967 amount=-1 +kerning first=216 second=1026 amount=-2 +kerning first=216 second=1033 amount=-1 +kerning first=216 second=1035 amount=-2 +kerning first=216 second=1040 amount=-2 +kerning first=216 second=1044 amount=-1 +kerning first=216 second=1046 amount=-3 +kerning first=216 second=1051 amount=-1 +kerning first=216 second=1058 amount=-2 +kerning first=216 second=1061 amount=-3 +kerning first=216 second=1066 amount=-2 +kerning first=216 second=1071 amount=-1 +kerning first=216 second=1174 amount=-3 +kerning first=216 second=1184 amount=-2 +kerning first=216 second=1198 amount=-3 +kerning first=216 second=1202 amount=-3 +kerning first=216 second=1298 amount=-1 +kerning first=216 second=8218 amount=-1 +kerning first=216 second=8222 amount=-1 +kerning first=216 second=8230 amount=-1 +kerning first=217 second=44 amount=-1 +kerning first=217 second=46 amount=-1 +kerning first=217 second=65 amount=-2 +kerning first=217 second=193 amount=-2 +kerning first=217 second=194 amount=-2 +kerning first=217 second=196 amount=-2 +kerning first=217 second=197 amount=-2 +kerning first=217 second=198 amount=-2 +kerning first=217 second=256 amount=-2 +kerning first=217 second=258 amount=-2 +kerning first=217 second=260 amount=-2 +kerning first=217 second=913 amount=-2 +kerning first=217 second=916 amount=-2 +kerning first=217 second=923 amount=-2 +kerning first=217 second=1033 amount=-1 +kerning first=217 second=1040 amount=-2 +kerning first=217 second=1044 amount=-1 +kerning first=217 second=1051 amount=-1 +kerning first=217 second=1298 amount=-1 +kerning first=217 second=8218 amount=-1 +kerning first=217 second=8222 amount=-1 +kerning first=217 second=8230 amount=-1 +kerning first=218 second=44 amount=-1 +kerning first=218 second=46 amount=-1 +kerning first=218 second=65 amount=-2 +kerning first=218 second=193 amount=-2 +kerning first=218 second=194 amount=-2 +kerning first=218 second=196 amount=-2 +kerning first=218 second=197 amount=-2 +kerning first=218 second=198 amount=-2 +kerning first=218 second=256 amount=-2 +kerning first=218 second=258 amount=-2 +kerning first=218 second=260 amount=-2 +kerning first=218 second=913 amount=-2 +kerning first=218 second=916 amount=-2 +kerning first=218 second=923 amount=-2 +kerning first=218 second=1033 amount=-1 +kerning first=218 second=1040 amount=-2 +kerning first=218 second=1044 amount=-1 +kerning first=218 second=1051 amount=-1 +kerning first=218 second=1298 amount=-1 +kerning first=218 second=8218 amount=-1 +kerning first=218 second=8222 amount=-1 +kerning first=218 second=8230 amount=-1 +kerning first=219 second=44 amount=-1 +kerning first=219 second=46 amount=-1 +kerning first=219 second=65 amount=-2 +kerning first=219 second=193 amount=-2 +kerning first=219 second=194 amount=-2 +kerning first=219 second=196 amount=-2 +kerning first=219 second=197 amount=-2 +kerning first=219 second=198 amount=-2 +kerning first=219 second=256 amount=-2 +kerning first=219 second=258 amount=-2 +kerning first=219 second=260 amount=-2 +kerning first=219 second=913 amount=-2 +kerning first=219 second=916 amount=-2 +kerning first=219 second=923 amount=-2 +kerning first=219 second=1033 amount=-1 +kerning first=219 second=1040 amount=-2 +kerning first=219 second=1044 amount=-1 +kerning first=219 second=1051 amount=-1 +kerning first=219 second=1298 amount=-1 +kerning first=219 second=8218 amount=-1 +kerning first=219 second=8222 amount=-1 +kerning first=219 second=8230 amount=-1 +kerning first=220 second=44 amount=-1 +kerning first=220 second=46 amount=-1 +kerning first=220 second=65 amount=-2 +kerning first=220 second=193 amount=-2 +kerning first=220 second=194 amount=-2 kerning first=220 second=196 amount=-2 -kerning first=1174 second=1184 amount=-2 -kerning first=240 second=336 amount=-2 -kerning first=363 second=248 amount=-1 -kerning first=960 second=171 amount=-3 -kerning first=35 second=362 amount=-2 -kerning first=174 second=966 amount=-1 -kerning first=177 second=275 amount=-1 -kerning first=8260 second=115 amount=-1 -kerning first=8240 second=355 amount=-1 -kerning first=58 second=289 amount=-1 -kerning first=316 second=337 amount=-1 -kerning first=321 second=99 amount=-1 -kerning first=81 second=221 amount=-3 +kerning first=220 second=197 amount=-2 +kerning first=220 second=198 amount=-2 +kerning first=220 second=256 amount=-2 +kerning first=220 second=258 amount=-2 +kerning first=220 second=260 amount=-2 +kerning first=220 second=913 amount=-2 +kerning first=220 second=916 amount=-2 +kerning first=220 second=923 amount=-2 +kerning first=220 second=1033 amount=-1 +kerning first=220 second=1040 amount=-2 +kerning first=220 second=1044 amount=-1 +kerning first=220 second=1051 amount=-1 +kerning first=220 second=1298 amount=-1 +kerning first=220 second=8218 amount=-1 +kerning first=220 second=8222 amount=-1 +kerning first=220 second=8230 amount=-1 +kerning first=221 second=38 amount=-2 +kerning first=221 second=44 amount=-4 +kerning first=221 second=45 amount=-4 +kerning first=221 second=46 amount=-4 +kerning first=221 second=47 amount=-4 +kerning first=221 second=110 amount=-3 +kerning first=221 second=63 amount=-1 +kerning first=221 second=65 amount=-5 +kerning first=221 second=67 amount=-3 +kerning first=221 second=114 amount=-3 +kerning first=221 second=71 amount=-3 +kerning first=221 second=74 amount=-6 +kerning first=221 second=79 amount=-3 +kerning first=221 second=81 amount=-3 +kerning first=221 second=83 amount=-1 +kerning first=221 second=97 amount=-4 +kerning first=221 second=99 amount=-4 +kerning first=221 second=100 amount=-4 +kerning first=221 second=101 amount=-4 +kerning first=221 second=103 amount=-4 +kerning first=221 second=109 amount=-3 +kerning first=221 second=111 amount=-4 +kerning first=221 second=112 amount=-3 +kerning first=221 second=113 amount=-4 +kerning first=221 second=115 amount=-3 +kerning first=221 second=117 amount=-2 +kerning first=221 second=118 amount=-2 +kerning first=221 second=119 amount=-2 +kerning first=221 second=120 amount=-2 +kerning first=221 second=121 amount=-2 +kerning first=221 second=122 amount=-2 +kerning first=221 second=171 amount=-3 +kerning first=221 second=173 amount=-4 +kerning first=221 second=187 amount=-2 +kerning first=221 second=193 amount=-5 +kerning first=221 second=194 amount=-5 +kerning first=221 second=196 amount=-5 +kerning first=221 second=197 amount=-5 +kerning first=221 second=198 amount=-5 +kerning first=221 second=199 amount=-3 +kerning first=221 second=210 amount=-3 +kerning first=221 second=211 amount=-3 +kerning first=221 second=212 amount=-3 +kerning first=221 second=213 amount=-3 +kerning first=221 second=214 amount=-3 +kerning first=221 second=216 amount=-3 +kerning first=221 second=224 amount=-4 +kerning first=221 second=225 amount=-4 +kerning first=221 second=226 amount=-4 +kerning first=221 second=227 amount=-4 +kerning first=221 second=228 amount=-4 +kerning first=221 second=229 amount=-4 +kerning first=221 second=230 amount=-4 +kerning first=221 second=231 amount=-4 +kerning first=221 second=232 amount=-4 +kerning first=221 second=233 amount=-4 +kerning first=221 second=234 amount=-4 +kerning first=221 second=235 amount=-4 +kerning first=221 second=240 amount=-4 +kerning first=221 second=241 amount=-3 +kerning first=221 second=242 amount=-4 +kerning first=221 second=243 amount=-4 +kerning first=221 second=244 amount=-4 +kerning first=221 second=245 amount=-4 +kerning first=221 second=246 amount=-4 +kerning first=221 second=248 amount=-4 +kerning first=221 second=249 amount=-2 +kerning first=221 second=250 amount=-2 +kerning first=221 second=251 amount=-2 +kerning first=221 second=252 amount=-2 +kerning first=221 second=253 amount=-2 +kerning first=221 second=256 amount=-5 +kerning first=221 second=257 amount=-4 +kerning first=221 second=258 amount=-5 +kerning first=221 second=259 amount=-4 +kerning first=221 second=260 amount=-5 +kerning first=221 second=261 amount=-4 +kerning first=221 second=262 amount=-3 +kerning first=221 second=263 amount=-4 +kerning first=221 second=266 amount=-3 +kerning first=221 second=267 amount=-4 +kerning first=221 second=268 amount=-3 +kerning first=221 second=269 amount=-4 +kerning first=221 second=271 amount=-4 +kerning first=221 second=273 amount=-4 +kerning first=221 second=275 amount=-4 +kerning first=221 second=277 amount=-4 +kerning first=221 second=279 amount=-4 +kerning first=221 second=281 amount=-4 +kerning first=221 second=283 amount=-4 +kerning first=221 second=286 amount=-3 +kerning first=221 second=287 amount=-4 +kerning first=221 second=288 amount=-3 +kerning first=221 second=289 amount=-4 +kerning first=221 second=290 amount=-3 +kerning first=221 second=291 amount=-4 +kerning first=221 second=324 amount=-3 +kerning first=221 second=326 amount=-3 +kerning first=221 second=328 amount=-3 +kerning first=221 second=331 amount=-3 +kerning first=221 second=332 amount=-3 +kerning first=221 second=333 amount=-4 +kerning first=221 second=334 amount=-3 +kerning first=221 second=335 amount=-4 +kerning first=221 second=336 amount=-3 +kerning first=221 second=337 amount=-4 +kerning first=221 second=338 amount=-3 +kerning first=221 second=339 amount=-4 +kerning first=221 second=341 amount=-3 +kerning first=221 second=343 amount=-3 +kerning first=221 second=345 amount=-3 +kerning first=221 second=346 amount=-1 +kerning first=221 second=347 amount=-3 +kerning first=221 second=350 amount=-1 kerning first=221 second=351 amount=-3 -kerning first=124 second=290 amount=-2 -kerning first=1036 second=941 amount=-2 -kerning first=1039 second=250 amount=-1 -kerning first=294 second=352 amount=-1 -kerning first=62 second=234 amount=-1 -kerning first=1074 second=1241 amount=-1 -kerning first=1078 second=187 amount=-1 -kerning first=202 second=364 amount=-2 -kerning first=317 second=968 amount=-1 -kerning first=322 second=277 amount=-1 -kerning first=8369 second=227 amount=-1 -kerning first=900 second=199 amount=-2 -kerning first=82 second=376 amount=-2 +kerning first=221 second=352 amount=-1 +kerning first=221 second=353 amount=-3 +kerning first=221 second=361 amount=-2 +kerning first=221 second=363 amount=-2 +kerning first=221 second=365 amount=-2 +kerning first=221 second=367 amount=-2 +kerning first=221 second=369 amount=-2 +kerning first=221 second=371 amount=-2 +kerning first=221 second=373 amount=-2 +kerning first=221 second=375 amount=-2 +kerning first=221 second=378 amount=-2 +kerning first=221 second=380 amount=-2 +kerning first=221 second=382 amount=-2 +kerning first=221 second=913 amount=-5 +kerning first=221 second=916 amount=-5 +kerning first=221 second=920 amount=-3 +kerning first=221 second=923 amount=-5 +kerning first=221 second=927 amount=-3 +kerning first=221 second=937 amount=-2 +kerning first=221 second=940 amount=-4 +kerning first=221 second=941 amount=-4 +kerning first=221 second=942 amount=-3 +kerning first=221 second=943 amount=-2 +kerning first=221 second=945 amount=-4 +kerning first=221 second=947 amount=-2 +kerning first=221 second=949 amount=-4 +kerning first=221 second=950 amount=-2 +kerning first=221 second=951 amount=-3 +kerning first=221 second=952 amount=-2 +kerning first=221 second=953 amount=-2 +kerning first=221 second=954 amount=-3 +kerning first=221 second=955 amount=-2 +kerning first=221 second=957 amount=-2 +kerning first=221 second=959 amount=-4 +kerning first=221 second=961 amount=-5 +kerning first=221 second=962 amount=-4 +kerning first=221 second=963 amount=-4 +kerning first=221 second=964 amount=-2 +kerning first=221 second=965 amount=-2 +kerning first=221 second=966 amount=-4 +kerning first=221 second=967 amount=-2 +kerning first=221 second=968 amount=-2 +kerning first=221 second=969 amount=-4 +kerning first=221 second=970 amount=-2 +kerning first=221 second=972 amount=-4 +kerning first=221 second=973 amount=-2 +kerning first=221 second=974 amount=-4 +kerning first=221 second=1028 amount=-3 +kerning first=221 second=1029 amount=-1 +kerning first=221 second=1032 amount=-6 +kerning first=221 second=1033 amount=-5 +kerning first=221 second=1040 amount=-5 +kerning first=221 second=1044 amount=-5 +kerning first=221 second=1051 amount=-5 +kerning first=221 second=1054 amount=-3 +kerning first=221 second=1057 amount=-3 +kerning first=221 second=1069 amount=-2 +kerning first=221 second=1071 amount=-2 +kerning first=221 second=1072 amount=-4 +kerning first=221 second=1074 amount=-3 +kerning first=221 second=1075 amount=-3 +kerning first=221 second=1077 amount=-4 +kerning first=221 second=1078 amount=-2 +kerning first=221 second=1079 amount=-4 +kerning first=221 second=1080 amount=-3 +kerning first=221 second=1081 amount=-3 +kerning first=221 second=1082 amount=-3 +kerning first=221 second=1084 amount=-3 +kerning first=221 second=1085 amount=-3 +kerning first=221 second=1086 amount=-4 +kerning first=221 second=1087 amount=-3 +kerning first=221 second=1088 amount=-3 +kerning first=221 second=1089 amount=-4 +kerning first=221 second=1090 amount=-2 +kerning first=221 second=1091 amount=-2 +kerning first=221 second=1092 amount=-4 +kerning first=221 second=1093 amount=-2 +kerning first=221 second=1094 amount=-3 +kerning first=221 second=1096 amount=-3 +kerning first=221 second=1097 amount=-3 +kerning first=221 second=1098 amount=-2 +kerning first=221 second=1099 amount=-3 +kerning first=221 second=1100 amount=-3 +kerning first=221 second=1101 amount=-4 +kerning first=221 second=1102 amount=-3 +kerning first=221 second=1104 amount=-4 +kerning first=221 second=1105 amount=-4 +kerning first=221 second=1107 amount=-3 +kerning first=221 second=1108 amount=-4 +kerning first=221 second=1109 amount=-3 +kerning first=221 second=1114 amount=-3 +kerning first=221 second=1116 amount=-3 +kerning first=221 second=1117 amount=-3 +kerning first=221 second=1118 amount=-2 +kerning first=221 second=1119 amount=-3 +kerning first=221 second=1169 amount=-3 +kerning first=221 second=1175 amount=-2 +kerning first=221 second=1176 amount=-2 +kerning first=221 second=1177 amount=-4 +kerning first=221 second=1179 amount=-3 +kerning first=221 second=1185 amount=-2 +kerning first=221 second=1187 amount=-3 +kerning first=221 second=1194 amount=-3 +kerning first=221 second=1195 amount=-4 +kerning first=221 second=1199 amount=-2 +kerning first=221 second=1203 amount=-2 +kerning first=221 second=1220 amount=-3 +kerning first=221 second=1224 amount=-3 +kerning first=221 second=1240 amount=-3 +kerning first=221 second=1241 amount=-4 +kerning first=221 second=1256 amount=-3 +kerning first=221 second=1257 amount=-4 +kerning first=221 second=1263 amount=-2 +kerning first=221 second=1298 amount=-5 +kerning first=221 second=8211 amount=-4 +kerning first=221 second=8212 amount=-4 +kerning first=221 second=8218 amount=-4 +kerning first=221 second=8222 amount=-4 +kerning first=221 second=8230 amount=-4 +kerning first=221 second=8249 amount=-3 +kerning first=221 second=8250 amount=-2 +kerning first=222 second=44 amount=-1 +kerning first=222 second=46 amount=-1 +kerning first=222 second=47 amount=-1 +kerning first=222 second=65 amount=-2 +kerning first=222 second=84 amount=-2 +kerning first=222 second=86 amount=-2 +kerning first=222 second=87 amount=-2 +kerning first=222 second=88 amount=-3 +kerning first=222 second=89 amount=-3 +kerning first=222 second=90 amount=-1 +kerning first=222 second=193 amount=-2 +kerning first=222 second=194 amount=-2 +kerning first=222 second=196 amount=-2 +kerning first=222 second=197 amount=-2 +kerning first=222 second=198 amount=-2 +kerning first=222 second=221 amount=-3 +kerning first=222 second=256 amount=-2 +kerning first=222 second=258 amount=-2 +kerning first=222 second=260 amount=-2 +kerning first=222 second=354 amount=-2 +kerning first=222 second=356 amount=-2 +kerning first=222 second=372 amount=-2 +kerning first=222 second=374 amount=-3 +kerning first=222 second=376 amount=-3 +kerning first=222 second=377 amount=-1 +kerning first=222 second=379 amount=-1 +kerning first=222 second=381 amount=-1 +kerning first=222 second=913 amount=-2 +kerning first=222 second=916 amount=-2 +kerning first=222 second=918 amount=-1 +kerning first=222 second=923 amount=-2 +kerning first=222 second=932 amount=-2 +kerning first=222 second=933 amount=-3 +kerning first=222 second=935 amount=-3 +kerning first=222 second=939 amount=-3 +kerning first=222 second=955 amount=-2 +kerning first=222 second=967 amount=-1 +kerning first=222 second=1026 amount=-2 +kerning first=222 second=1033 amount=-1 kerning first=222 second=1035 amount=-2 -kerning first=931 second=1098 amount=-3 -kerning first=942 second=101 amount=-1 -kerning first=371 second=113 amount=-1 -kerning first=962 second=955 amount=-1 -kerning first=965 second=263 amount=-1 -kerning first=161 second=235 amount=-1 -kerning first=200 second=8216 amount=-3 -kerning first=8365 second=1256 amount=-2 -kerning first=901 second=354 amount=-5 -kerning first=80 second=8250 amount=-1 -kerning first=1119 second=39 amount=-3 -kerning first=252 second=171 amount=-3 -kerning first=47 second=197 amount=-5 -kerning first=1048 second=355 amount=-1 -kerning first=190 second=87 amount=-5 -kerning first=70 second=99 amount=-1 -kerning first=207 second=940 amount=-1 -kerning first=902 second=1038 amount=-2 -kerning first=1168 second=214 amount=-2 -kerning first=345 second=8218 amount=-3 -kerning first=948 second=226 amount=-1 -kerning first=1220 second=116 amount=-1 -kerning first=166 second=338 amount=-2 -kerning first=169 second=100 amount=-1 -kerning first=276 second=941 amount=-1 -kerning first=48 second=352 amount=-1 -kerning first=191 second=262 amount=-2 -kerning first=303 second=1241 amount=-1 -kerning first=306 second=187 amount=-1 -kerning first=214 second=199 amount=-2 -kerning first=94 second=211 amount=-2 -kerning first=237 second=101 amount=-1 -kerning first=357 second=251 amount=-1 -kerning first=354 second=942 amount=-2 -kerning first=117 second=113 amount=-1 -kerning first=114 second=353 amount=-1 -kerning first=260 second=38 amount=-1 -kerning first=968 second=8221 amount=-3 -kerning first=971 second=1066 amount=-5 -kerning first=8225 second=118 amount=-4 -kerning first=195 second=212 amount=-2 -kerning first=1087 second=1256 amount=-2 -kerning first=75 second=224 amount=-1 -kerning first=215 second=354 amount=-5 -kerning first=339 second=39 amount=-1 -kerning first=92 second=1184 amount=-5 -kerning first=95 second=366 amount=-2 -kerning first=1178 second=79 amount=-1 -kerning first=238 second=279 amount=-1 -kerning first=950 second=1081 amount=-2 -kerning first=1224 second=920 amount=-2 -kerning first=175 second=225 amount=-1 -kerning first=289 second=115 amount=-1 -kerning first=193 second=1185 amount=-3 -kerning first=196 second=367 amount=-1 -kerning first=8361 second=230 amount=-1 -kerning first=915 second=1101 amount=-1 -kerning first=1176 second=945 amount=-1 -kerning first=365 second=116 amount=-1 -kerning first=958 second=268 amount=-2 -kerning first=37 second=250 amount=-1 -kerning first=382 second=972 amount=-1 -kerning first=34 second=941 amount=-1 -kerning first=57 second=1241 amount=-1 -kerning first=60 second=187 amount=-1 -kerning first=194 second=8220 amount=-3 -kerning first=318 second=227 amount=-1 -kerning first=77 second=1079 amount=-1 -kerning first=83 second=89 amount=-2 -kerning first=1103 second=269 amount=-1 -kerning first=926 second=973 amount=-1 -kerning first=103 second=251 amount=-1 -kerning first=963 second=216 amount=-2 -kerning first=260 second=8221 amount=-3 -kerning first=1044 second=118 amount=-2 -kerning first=296 second=240 amount=-1 -kerning first=1076 second=283 amount=-1 -kerning first=201 second=943 amount=-1 -kerning first=204 second=252 amount=-1 -kerning first=316 second=1256 amount=-2 -kerning first=8366 second=333 amount=-1 -kerning first=902 second=67 amount=-2 -kerning first=84 second=266 amount=-1 -kerning first=339 second=8222 amount=-1 -kerning first=1202 second=119 amount=-2 -kerning first=367 second=920 amount=-2 -kerning first=964 second=371 amount=-1 -kerning first=163 second=103 amount=-1 -kerning first=273 second=253 amount=-1 -kerning first=42 second=355 amount=-1 -kerning first=185 second=267 amount=-1 -kerning first=1081 second=230 amount=-1 -kerning first=903 second=242 amount=-1 -kerning first=8369 second=964 amount=-3 -kerning first=88 second=214 amount=-3 -kerning first=942 second=1240 amount=-2 -kerning first=108 second=356 amount=-5 -kerning first=251 second=268 amount=-2 -kerning first=965 second=1069 amount=-1 -kerning first=971 second=81 amount=-2 -kerning first=161 second=972 amount=-1 -kerning first=164 second=281 amount=-1 -kerning first=1051 second=243 amount=-1 -kerning first=69 second=227 amount=-1 -kerning first=209 second=357 amount=-1 -kerning first=330 second=269 amount=-1 -kerning first=86 second=1187 amount=-2 -kerning first=89 second=369 amount=-2 -kerning first=946 second=332 amount=-2 -kerning first=1219 second=244 amount=-1 -kerning first=255 second=216 amount=-2 -kerning first=168 second=228 amount=-1 -kerning first=281 second=118 amount=-1 -kerning first=8222 second=71 amount=-1 -kerning first=47 second=916 amount=-5 -kerning first=50 second=240 amount=-1 -kerning first=190 second=370 amount=-2 -kerning first=305 second=283 amount=-1 -kerning first=70 second=382 amount=-1 -kerning first=210 second=1044 amount=-1 -kerning first=1090 second=333 amount=-1 -kerning first=910 second=345 amount=-3 -kerning first=87 second=8222 amount=-3 -kerning first=96 second=79 amount=-2 -kerning first=1168 second=949 amount=-1 -kerning first=1171 second=257 amount=-1 -kerning first=236 second=229 amount=-1 -kerning first=948 second=963 amount=-1 -kerning first=951 second=271 amount=-1 -kerning first=113 second=920 amount=-2 -kerning first=253 second=1195 amount=-1 -kerning first=256 second=371 amount=-1 -kerning first=1256 second=194 amount=-2 -kerning first=379 second=286 amount=-1 -kerning first=166 second=1257 amount=-1 -kerning first=8224 second=246 amount=-1 -kerning first=311 second=230 amount=-1 -kerning first=1097 second=273 amount=-1 -kerning first=1094 second=964 amount=-2 -kerning first=916 second=287 amount=-1 -kerning first=94 second=945 amount=-1 -kerning first=237 second=1240 amount=-2 -kerning first=955 second=219 amount=-2 -kerning first=1223 second=1108 amount=-1 -kerning first=974 second=1175 amount=-1 -kerning first=1035 second=121 amount=-1 -kerning first=78 second=269 amount=-1 -kerning first=928 second=232 amount=-1 -kerning first=1178 second=362 amount=-1 -kerning first=956 second=374 amount=-5 -kerning first=124 second=106 amount=1 -kerning first=1299 second=289 amount=-1 -kerning first=266 second=256 amount=-1 -kerning first=1262 second=1033 amount=-1 -kerning first=1039 second=71 amount=-2 -kerning first=175 second=962 amount=-1 -kerning first=59 second=283 amount=-1 -kerning first=1074 second=233 amount=-1 -kerning first=317 second=333 amount=-1 -kerning first=343 second=257 amount=-1 -kerning first=1176 second=8211 amount=-2 -kerning first=105 second=119 amount=-4 -kerning first=248 second=44 amount=-1 -kerning first=368 second=194 amount=-2 -kerning first=965 second=84 amount=-5 -kerning first=125 second=286 amount=-2 -kerning first=1041 second=246 amount=-1 -kerning first=183 second=218 amount=-2 -kerning first=8250 second=1035 amount=-3 -kerning first=63 second=230 amount=-1 -kerning first=203 second=360 amount=-2 -kerning first=318 second=964 amount=-3 -kerning first=323 second=273 amount=-1 -kerning first=80 second=947 amount=-4 -kerning first=83 second=372 amount=-2 -kerning first=249 second=219 amount=-2 -kerning first=369 second=347 amount=-1 -kerning first=372 second=109 amount=-2 -kerning first=162 second=231 amount=-1 -kerning first=271 second=361 amount=-1 -kerning first=184 second=373 amount=-4 -kerning first=296 second=1028 amount=-2 -kerning first=299 second=288 amount=-2 -kerning first=61 second=1263 amount=-1 -kerning first=1076 second=1095 amount=-2 -kerning first=1080 second=336 amount=-2 -kerning first=327 second=220 amount=-2 -kerning first=8378 second=171 amount=-3 -kerning first=902 second=350 amount=-1 -kerning first=944 second=275 amount=-1 -kerning first=250 second=374 amount=-5 -kerning first=370 second=1033 amount=-1 -kerning first=373 second=289 amount=-1 -kerning first=1049 second=351 amount=-1 -kerning first=1062 second=111 amount=-1 -kerning first=191 second=83 amount=-1 -kerning first=303 second=233 amount=-1 -kerning first=906 second=290 amount=-2 -kerning first=88 second=949 amount=-2 -kerning first=91 second=257 amount=-1 -kerning first=1210 second=352 amount=-1 -kerning first=377 second=234 amount=-1 -kerning first=971 second=364 amount=-2 -kerning first=167 second=334 amount=-2 -kerning first=164 second=1090 amount=-3 -kerning first=280 second=246 amount=-1 -kerning first=49 second=346 amount=-1 -kerning first=1051 second=1035 amount=-5 -kerning first=1063 second=291 amount=-1 -kerning first=72 second=273 amount=-1 -kerning first=69 second=964 amount=-3 -kerning first=75 second=45 amount=-4 -kerning first=912 second=235 amount=-1 -kerning first=1170 second=365 amount=-1 -kerning first=238 second=97 amount=-1 -kerning first=258 second=259 amount=-1 -kerning first=261 second=34 amount=-1 -kerning first=168 second=965 amount=-1 -kerning first=8218 second=1118 amount=-1 -kerning first=8222 second=354 amount=-5 -kerning first=50 second=1028 amount=-2 -kerning first=53 second=288 amount=-2 -kerning first=310 second=336 amount=-3 -kerning first=76 second=220 amount=-1 -kerning first=1099 second=171 amount=-3 -kerning first=96 second=362 amount=-2 -kerning first=1168 second=8217 amount=-3 -kerning first=93 second=1176 amount=-1 -kerning first=236 second=966 amount=-1 +kerning first=222 second=1040 amount=-2 +kerning first=222 second=1044 amount=-1 +kerning first=222 second=1046 amount=-3 +kerning first=222 second=1051 amount=-1 +kerning first=222 second=1058 amount=-2 +kerning first=222 second=1061 amount=-3 +kerning first=222 second=1066 amount=-2 +kerning first=222 second=1071 amount=-1 +kerning first=222 second=1174 amount=-3 +kerning first=222 second=1184 amount=-2 +kerning first=222 second=1198 amount=-3 +kerning first=222 second=1202 amount=-3 +kerning first=222 second=1298 amount=-1 +kerning first=222 second=8218 amount=-1 +kerning first=222 second=8222 amount=-1 +kerning first=222 second=8230 amount=-1 +kerning first=224 second=34 amount=-1 +kerning first=224 second=39 amount=-1 +kerning first=224 second=63 amount=-2 +kerning first=224 second=102 amount=-1 +kerning first=224 second=106 amount=1 +kerning first=224 second=118 amount=-1 +kerning first=224 second=119 amount=-1 +kerning first=224 second=373 amount=-1 +kerning first=224 second=947 amount=-1 +kerning first=224 second=957 amount=-1 +kerning first=224 second=964 amount=-1 +kerning first=224 second=1090 amount=-1 +kerning first=224 second=1098 amount=-1 +kerning first=224 second=1112 amount=1 +kerning first=224 second=1185 amount=-1 +kerning first=224 second=1199 amount=-1 +kerning first=224 second=8216 amount=-1 +kerning first=224 second=8217 amount=-1 +kerning first=224 second=8220 amount=-1 +kerning first=224 second=8221 amount=-1 +kerning first=225 second=34 amount=-1 +kerning first=225 second=39 amount=-1 +kerning first=225 second=63 amount=-2 +kerning first=225 second=102 amount=-1 +kerning first=225 second=106 amount=1 +kerning first=225 second=118 amount=-1 +kerning first=225 second=119 amount=-1 +kerning first=225 second=373 amount=-1 +kerning first=225 second=947 amount=-1 +kerning first=225 second=957 amount=-1 +kerning first=225 second=964 amount=-1 +kerning first=225 second=1090 amount=-1 +kerning first=225 second=1098 amount=-1 +kerning first=225 second=1112 amount=1 +kerning first=225 second=1185 amount=-1 +kerning first=225 second=1199 amount=-1 +kerning first=225 second=8216 amount=-1 +kerning first=225 second=8217 amount=-1 +kerning first=225 second=8220 amount=-1 +kerning first=225 second=8221 amount=-1 +kerning first=226 second=34 amount=-1 +kerning first=226 second=39 amount=-1 +kerning first=226 second=63 amount=-2 +kerning first=226 second=102 amount=-1 +kerning first=226 second=106 amount=1 +kerning first=226 second=118 amount=-1 +kerning first=226 second=119 amount=-1 +kerning first=226 second=373 amount=-1 +kerning first=226 second=947 amount=-1 +kerning first=226 second=957 amount=-1 +kerning first=226 second=964 amount=-1 +kerning first=226 second=1090 amount=-1 +kerning first=226 second=1098 amount=-1 +kerning first=226 second=1112 amount=1 +kerning first=226 second=1185 amount=-1 +kerning first=226 second=1199 amount=-1 +kerning first=226 second=8216 amount=-1 +kerning first=226 second=8217 amount=-1 +kerning first=226 second=8220 amount=-1 +kerning first=226 second=8221 amount=-1 +kerning first=227 second=34 amount=-1 +kerning first=227 second=39 amount=-1 +kerning first=227 second=63 amount=-2 +kerning first=227 second=102 amount=-1 +kerning first=227 second=106 amount=1 +kerning first=227 second=118 amount=-1 +kerning first=227 second=119 amount=-1 +kerning first=227 second=373 amount=-1 +kerning first=227 second=947 amount=-1 +kerning first=227 second=957 amount=-1 +kerning first=227 second=964 amount=-1 +kerning first=227 second=1090 amount=-1 +kerning first=227 second=1098 amount=-1 +kerning first=227 second=1112 amount=1 +kerning first=227 second=1185 amount=-1 +kerning first=227 second=1199 amount=-1 +kerning first=227 second=8216 amount=-1 +kerning first=227 second=8217 amount=-1 +kerning first=227 second=8220 amount=-1 +kerning first=227 second=8221 amount=-1 +kerning first=228 second=34 amount=-1 +kerning first=228 second=39 amount=-1 +kerning first=228 second=63 amount=-2 +kerning first=228 second=102 amount=-1 +kerning first=228 second=106 amount=1 +kerning first=228 second=118 amount=-1 +kerning first=228 second=119 amount=-1 +kerning first=228 second=373 amount=-1 +kerning first=228 second=947 amount=-1 +kerning first=228 second=957 amount=-1 +kerning first=228 second=964 amount=-1 +kerning first=228 second=1090 amount=-1 +kerning first=228 second=1098 amount=-1 +kerning first=228 second=1112 amount=1 +kerning first=228 second=1185 amount=-1 +kerning first=228 second=1199 amount=-1 +kerning first=228 second=8216 amount=-1 +kerning first=228 second=8217 amount=-1 +kerning first=228 second=8220 amount=-1 +kerning first=228 second=8221 amount=-1 +kerning first=229 second=34 amount=-1 +kerning first=229 second=39 amount=-1 +kerning first=229 second=63 amount=-2 +kerning first=229 second=102 amount=-1 +kerning first=229 second=106 amount=1 +kerning first=229 second=118 amount=-1 +kerning first=229 second=119 amount=-1 +kerning first=229 second=373 amount=-1 +kerning first=229 second=947 amount=-1 +kerning first=229 second=957 amount=-1 +kerning first=229 second=964 amount=-1 +kerning first=229 second=1090 amount=-1 +kerning first=229 second=1098 amount=-1 +kerning first=229 second=1112 amount=1 +kerning first=229 second=1185 amount=-1 +kerning first=229 second=1199 amount=-1 +kerning first=229 second=8216 amount=-1 +kerning first=229 second=8217 amount=-1 +kerning first=229 second=8220 amount=-1 +kerning first=229 second=8221 amount=-1 +kerning first=230 second=34 amount=-1 +kerning first=230 second=39 amount=-1 +kerning first=230 second=44 amount=-1 +kerning first=230 second=46 amount=-1 +kerning first=230 second=47 amount=-1 +kerning first=230 second=63 amount=-2 +kerning first=230 second=102 amount=-1 +kerning first=230 second=118 amount=-1 +kerning first=230 second=119 amount=-1 +kerning first=230 second=120 amount=-2 +kerning first=230 second=122 amount=-1 +kerning first=230 second=373 amount=-1 +kerning first=230 second=378 amount=-1 +kerning first=230 second=380 amount=-1 +kerning first=230 second=382 amount=-1 +kerning first=230 second=947 amount=-1 +kerning first=230 second=955 amount=-1 +kerning first=230 second=957 amount=-1 +kerning first=230 second=964 amount=-1 +kerning first=230 second=967 amount=-2 +kerning first=230 second=1076 amount=-1 +kerning first=230 second=1078 amount=-2 +kerning first=230 second=1083 amount=-1 +kerning first=230 second=1090 amount=-1 +kerning first=230 second=1093 amount=-2 +kerning first=230 second=1098 amount=-1 +kerning first=230 second=1113 amount=-1 +kerning first=230 second=1175 amount=-2 +kerning first=230 second=1185 amount=-1 +kerning first=230 second=1199 amount=-1 +kerning first=230 second=1203 amount=-2 +kerning first=230 second=1299 amount=-1 +kerning first=230 second=8216 amount=-1 +kerning first=230 second=8217 amount=-1 +kerning first=230 second=8218 amount=-1 +kerning first=230 second=8220 amount=-1 +kerning first=230 second=8221 amount=-1 +kerning first=230 second=8222 amount=-1 +kerning first=230 second=8230 amount=-1 +kerning first=231 second=34 amount=-1 +kerning first=231 second=39 amount=-1 +kerning first=231 second=63 amount=-1 +kerning first=231 second=118 amount=-1 +kerning first=231 second=119 amount=-1 +kerning first=231 second=120 amount=-1 +kerning first=231 second=373 amount=-1 +kerning first=231 second=947 amount=-1 +kerning first=231 second=955 amount=-1 +kerning first=231 second=957 amount=-1 +kerning first=231 second=1078 amount=-1 +kerning first=231 second=1093 amount=-1 +kerning first=231 second=1175 amount=-1 +kerning first=231 second=1199 amount=-1 +kerning first=231 second=1203 amount=-1 +kerning first=231 second=8216 amount=-1 +kerning first=231 second=8217 amount=-1 +kerning first=231 second=8220 amount=-1 +kerning first=231 second=8221 amount=-1 +kerning first=232 second=34 amount=-1 +kerning first=232 second=39 amount=-1 +kerning first=232 second=44 amount=-1 +kerning first=232 second=46 amount=-1 +kerning first=232 second=47 amount=-1 +kerning first=232 second=63 amount=-2 +kerning first=232 second=102 amount=-1 +kerning first=232 second=118 amount=-1 +kerning first=232 second=119 amount=-1 +kerning first=232 second=120 amount=-2 +kerning first=232 second=122 amount=-1 +kerning first=232 second=373 amount=-1 +kerning first=232 second=378 amount=-1 +kerning first=232 second=380 amount=-1 +kerning first=232 second=382 amount=-1 +kerning first=232 second=947 amount=-1 +kerning first=232 second=955 amount=-1 +kerning first=232 second=957 amount=-1 +kerning first=232 second=964 amount=-1 +kerning first=232 second=967 amount=-2 +kerning first=232 second=1076 amount=-1 +kerning first=232 second=1078 amount=-2 +kerning first=232 second=1083 amount=-1 +kerning first=232 second=1090 amount=-1 +kerning first=232 second=1093 amount=-2 +kerning first=232 second=1098 amount=-1 +kerning first=232 second=1113 amount=-1 +kerning first=232 second=1175 amount=-2 +kerning first=232 second=1185 amount=-1 +kerning first=232 second=1199 amount=-1 +kerning first=232 second=1203 amount=-2 +kerning first=232 second=1299 amount=-1 +kerning first=232 second=8216 amount=-1 +kerning first=232 second=8217 amount=-1 +kerning first=232 second=8218 amount=-1 +kerning first=232 second=8220 amount=-1 +kerning first=232 second=8221 amount=-1 +kerning first=232 second=8222 amount=-1 +kerning first=232 second=8230 amount=-1 +kerning first=233 second=34 amount=-1 +kerning first=233 second=39 amount=-1 +kerning first=233 second=44 amount=-1 +kerning first=233 second=46 amount=-1 +kerning first=233 second=47 amount=-1 +kerning first=233 second=63 amount=-2 +kerning first=233 second=102 amount=-1 +kerning first=233 second=118 amount=-1 +kerning first=233 second=119 amount=-1 +kerning first=233 second=120 amount=-2 +kerning first=233 second=122 amount=-1 +kerning first=233 second=373 amount=-1 +kerning first=233 second=378 amount=-1 +kerning first=233 second=380 amount=-1 +kerning first=233 second=382 amount=-1 +kerning first=233 second=947 amount=-1 +kerning first=233 second=955 amount=-1 +kerning first=233 second=957 amount=-1 +kerning first=233 second=964 amount=-1 +kerning first=233 second=967 amount=-2 +kerning first=233 second=1076 amount=-1 +kerning first=233 second=1078 amount=-2 +kerning first=233 second=1083 amount=-1 +kerning first=233 second=1090 amount=-1 +kerning first=233 second=1093 amount=-2 +kerning first=233 second=1098 amount=-1 +kerning first=233 second=1113 amount=-1 +kerning first=233 second=1175 amount=-2 +kerning first=233 second=1185 amount=-1 +kerning first=233 second=1199 amount=-1 +kerning first=233 second=1203 amount=-2 +kerning first=233 second=1299 amount=-1 +kerning first=233 second=8216 amount=-1 +kerning first=233 second=8217 amount=-1 +kerning first=233 second=8218 amount=-1 +kerning first=233 second=8220 amount=-1 +kerning first=233 second=8221 amount=-1 +kerning first=233 second=8222 amount=-1 +kerning first=233 second=8230 amount=-1 +kerning first=234 second=34 amount=-1 +kerning first=234 second=39 amount=-1 +kerning first=234 second=44 amount=-1 +kerning first=234 second=46 amount=-1 +kerning first=234 second=47 amount=-1 +kerning first=234 second=63 amount=-2 +kerning first=234 second=102 amount=-1 +kerning first=234 second=118 amount=-1 +kerning first=234 second=119 amount=-1 +kerning first=234 second=120 amount=-2 +kerning first=234 second=122 amount=-1 +kerning first=234 second=373 amount=-1 +kerning first=234 second=378 amount=-1 +kerning first=234 second=380 amount=-1 +kerning first=234 second=382 amount=-1 +kerning first=234 second=947 amount=-1 +kerning first=234 second=955 amount=-1 +kerning first=234 second=957 amount=-1 +kerning first=234 second=964 amount=-1 +kerning first=234 second=967 amount=-2 +kerning first=234 second=1076 amount=-1 +kerning first=234 second=1078 amount=-2 +kerning first=234 second=1083 amount=-1 +kerning first=234 second=1090 amount=-1 +kerning first=234 second=1093 amount=-2 +kerning first=234 second=1098 amount=-1 +kerning first=234 second=1113 amount=-1 +kerning first=234 second=1175 amount=-2 +kerning first=234 second=1185 amount=-1 +kerning first=234 second=1199 amount=-1 +kerning first=234 second=1203 amount=-2 +kerning first=234 second=1299 amount=-1 +kerning first=234 second=8216 amount=-1 +kerning first=234 second=8217 amount=-1 +kerning first=234 second=8218 amount=-1 +kerning first=234 second=8220 amount=-1 +kerning first=234 second=8221 amount=-1 +kerning first=234 second=8222 amount=-1 +kerning first=234 second=8230 amount=-1 +kerning first=235 second=34 amount=-1 +kerning first=235 second=39 amount=-1 +kerning first=235 second=44 amount=-1 +kerning first=235 second=46 amount=-1 +kerning first=235 second=47 amount=-1 +kerning first=235 second=63 amount=-2 +kerning first=235 second=102 amount=-1 +kerning first=235 second=118 amount=-1 +kerning first=235 second=119 amount=-1 +kerning first=235 second=120 amount=-2 +kerning first=235 second=122 amount=-1 +kerning first=235 second=373 amount=-1 +kerning first=235 second=378 amount=-1 +kerning first=235 second=380 amount=-1 +kerning first=235 second=382 amount=-1 +kerning first=235 second=947 amount=-1 +kerning first=235 second=955 amount=-1 +kerning first=235 second=957 amount=-1 +kerning first=235 second=964 amount=-1 +kerning first=235 second=967 amount=-2 +kerning first=235 second=1076 amount=-1 +kerning first=235 second=1078 amount=-2 +kerning first=235 second=1083 amount=-1 +kerning first=235 second=1090 amount=-1 +kerning first=235 second=1093 amount=-2 +kerning first=235 second=1098 amount=-1 +kerning first=235 second=1113 amount=-1 +kerning first=235 second=1175 amount=-2 +kerning first=235 second=1185 amount=-1 +kerning first=235 second=1199 amount=-1 +kerning first=235 second=1203 amount=-2 +kerning first=235 second=1299 amount=-1 +kerning first=235 second=8216 amount=-1 +kerning first=235 second=8217 amount=-1 +kerning first=235 second=8218 amount=-1 +kerning first=235 second=8220 amount=-1 +kerning first=235 second=8221 amount=-1 +kerning first=235 second=8222 amount=-1 +kerning first=235 second=8230 amount=-1 +kerning first=241 second=34 amount=-1 +kerning first=241 second=39 amount=-1 +kerning first=241 second=63 amount=-2 +kerning first=241 second=102 amount=-1 +kerning first=241 second=106 amount=1 +kerning first=241 second=118 amount=-1 +kerning first=241 second=119 amount=-1 +kerning first=241 second=373 amount=-1 +kerning first=241 second=947 amount=-1 +kerning first=241 second=957 amount=-1 +kerning first=241 second=964 amount=-1 +kerning first=241 second=1090 amount=-1 +kerning first=241 second=1098 amount=-1 +kerning first=241 second=1112 amount=1 +kerning first=241 second=1185 amount=-1 +kerning first=241 second=1199 amount=-1 +kerning first=241 second=8216 amount=-1 +kerning first=241 second=8217 amount=-1 +kerning first=241 second=8220 amount=-1 +kerning first=241 second=8221 amount=-1 +kerning first=242 second=34 amount=-1 +kerning first=242 second=39 amount=-1 +kerning first=242 second=44 amount=-1 +kerning first=242 second=46 amount=-1 kerning first=242 second=47 amount=-1 -kerning first=239 second=275 amount=-1 -kerning first=362 second=197 amount=-2 -kerning first=958 second=87 amount=-5 -kerning first=119 second=289 amount=-1 -kerning first=382 second=337 amount=-1 -kerning first=37 second=71 amount=-2 -kerning first=1027 second=940 amount=-1 -kerning first=176 second=221 amount=-5 -kerning first=287 second=351 amount=-1 -kerning first=8224 second=1038 amount=-2 -kerning first=57 second=233 amount=-1 -kerning first=197 second=363 amount=-1 -kerning first=194 second=1177 amount=-1 -kerning first=77 second=375 amount=-1 -kerning first=926 second=338 amount=-2 -kerning first=94 second=8211 amount=-2 -kerning first=934 second=100 amount=-1 -kerning first=1184 second=250 amount=-1 -kerning first=363 second=352 amount=-1 -kerning first=960 second=262 amount=-2 -kerning first=123 second=234 amount=-1 -kerning first=1298 second=1241 amount=-1 -kerning first=38 second=246 amount=-1 -kerning first=177 second=376 amount=-5 -kerning first=291 second=291 amount=-1 -kerning first=288 second=1035 amount=-1 -kerning first=1073 second=339 amount=-1 -kerning first=195 second=8212 amount=-2 -kerning first=198 second=1059 amount=-2 -kerning first=1076 second=101 amount=-1 -kerning first=75 second=8249 amount=-3 -kerning first=1101 second=955 amount=-1 -kerning first=964 second=212 amount=-2 -kerning first=261 second=8216 amount=-1 -kerning first=1036 second=1118 amount=-2 -kerning first=1039 second=354 amount=-5 -kerning first=175 second=8250 amount=-1 -kerning first=62 second=336 amount=-2 -kerning first=1074 second=970 amount=-1 -kerning first=1078 second=279 amount=-2 -kerning first=205 second=248 amount=-1 -kerning first=325 second=171 amount=-3 -kerning first=85 second=260 amount=-2 -kerning first=942 second=225 amount=-1 -kerning first=245 second=1076 amount=-1 -kerning first=251 second=87 amount=-5 -kerning first=962 second=1185 amount=-3 -kerning first=965 second=367 amount=-1 -kerning first=161 second=337 amount=-1 -kerning first=164 second=99 amount=-1 -kerning first=274 second=249 amount=-1 -kerning first=43 second=351 amount=-1 -kerning first=1041 second=1038 amount=-2 -kerning first=186 second=261 amount=-1 -kerning first=183 second=953 amount=-1 -kerning first=1083 second=226 amount=-1 -kerning first=8377 second=268 amount=-2 -kerning first=89 second=210 amount=-3 -kerning first=252 second=262 amount=-2 -kerning first=375 second=187 amount=-1 -kerning first=372 second=1241 amount=-3 -kerning first=963 second=8220 amount=-3 -kerning first=162 second=968 amount=-1 -kerning first=165 second=277 amount=-1 -kerning first=278 second=199 amount=-2 -kerning first=8218 second=117 amount=-1 -kerning first=44 second=1035 amount=-5 -kerning first=47 second=291 amount=-1 -kerning first=190 second=211 amount=-2 -kerning first=302 second=339 amount=-1 -kerning first=305 second=101 amount=-1 -kerning first=299 second=1098 amount=-3 -kerning first=87 second=1179 amount=-2 -kerning first=1117 second=1066 amount=-5 -kerning first=1220 second=240 amount=-1 -kerning first=256 second=212 amount=-2 -kerning first=973 second=252 amount=-1 -kerning first=169 second=224 amount=-1 -kerning first=276 second=1118 amount=-1 -kerning first=8216 second=1044 amount=-3 -kerning first=8224 second=67 amount=-2 -kerning first=188 second=1184 amount=-5 -kerning first=191 second=366 amount=-2 -kerning first=306 second=279 amount=-1 -kerning first=303 second=970 amount=-1 -kerning first=74 second=171 amount=-3 -kerning first=916 second=103 amount=-1 -kerning first=237 second=225 amount=-1 -kerning first=357 second=355 amount=-1 -kerning first=354 second=1119 amount=-2 -kerning first=952 second=267 amount=-1 -kerning first=254 second=1185 amount=-3 -kerning first=280 second=1038 amount=-2 -kerning first=8225 second=242 amount=-1 -kerning first=8221 second=923 amount=-3 -kerning first=1063 second=1101 amount=-1 -kerning first=912 second=972 amount=-1 -kerning first=95 second=941 amount=-1 -kerning first=364 second=65 amount=-2 -kerning first=118 second=1241 amount=-1 -kerning first=121 second=187 amount=-1 -kerning first=255 second=8220 amount=-3 -kerning first=36 second=199 amount=-2 -kerning first=1036 second=117 amount=-1 -kerning first=178 second=89 amount=-5 -kerning first=53 second=1098 amount=-3 -kerning first=56 second=339 amount=-1 -kerning first=1067 second=973 amount=-1 -kerning first=59 second=101 amount=-1 -kerning first=8361 second=332 amount=-2 -kerning first=931 second=228 amount=-1 -kerning first=1186 second=118 amount=-2 -kerning first=365 second=240 amount=-1 -kerning first=362 second=916 amount=-2 -kerning first=958 second=370 amount=-2 -kerning first=37 second=354 amount=-5 -kerning first=1041 second=67 amount=-2 -kerning first=179 second=266 amount=-2 -kerning first=183 second=39 amount=-3 -kerning first=60 second=279 amount=-1 -kerning first=57 second=970 amount=-1 -kerning first=8365 second=271 amount=-1 -kerning first=1103 second=371 amount=-1 -kerning first=926 second=1257 amount=-1 -kerning first=103 second=355 amount=-1 -kerning first=38 second=1038 amount=-2 -kerning first=1038 second=923 amount=-2 -kerning first=1044 second=242 amount=-1 -kerning first=184 second=214 amount=-2 -kerning first=291 second=1101 amount=-1 -kerning first=64 second=226 amount=-1 -kerning first=1073 second=1262 amount=-2 -kerning first=204 second=356 amount=-5 -kerning first=207 second=116 amount=-1 -kerning first=8372 second=219 amount=-2 -kerning first=1117 second=81 amount=-2 -kerning first=1202 second=243 amount=-1 -kerning first=163 second=227 amount=-1 -kerning first=273 second=357 amount=-1 -kerning first=276 second=117 amount=-1 -kerning first=185 second=369 amount=-1 -kerning first=297 second=973 amount=-1 -kerning first=1081 second=332 amount=-2 -kerning first=906 second=106 amount=1 -kerning first=354 second=118 amount=-2 -kerning first=942 second=962 amount=-1 -kerning first=251 second=370 amount=-2 -kerning first=374 second=283 amount=-4 -kerning first=161 second=1256 amount=-2 -kerning first=280 second=67 amount=-2 -kerning first=8217 second=245 amount=-1 -kerning first=192 second=79 amount=-2 -kerning first=304 second=229 amount=-1 -kerning first=1083 second=963 amount=-1 -kerning first=1087 second=271 amount=-1 -kerning first=209 second=920 amount=-2 -kerning first=330 second=371 amount=-1 -kerning first=904 second=1026 amount=-5 -kerning first=92 second=253 amount=-1 -kerning first=352 second=1046 amount=-1 -kerning first=950 second=218 amount=-2 -kerning first=1219 second=346 amount=-1 -kerning first=47 second=1101 amount=-1 -kerning first=1064 second=287 amount=-1 -kerning first=190 second=945 amount=-1 -kerning first=305 second=1240 amount=-2 -kerning first=302 second=1262 amount=-2 -kerning first=73 second=268 amount=-2 -kerning first=1096 second=219 amount=-2 -kerning first=915 second=231 amount=-1 -kerning first=1171 second=361 amount=-1 -kerning first=1176 second=121 amount=-1 -kerning first=951 second=373 amount=-4 -kerning first=113 second=1102 amount=2 -kerning first=1220 second=1028 amount=-2 -kerning first=376 second=1263 amount=-2 -kerning first=172 second=269 amount=-1 -kerning first=8224 second=350 amount=-1 -kerning first=51 second=973 amount=-1 -kerning first=77 second=216 amount=-2 -kerning first=100 second=118 amount=-4 -kerning first=1184 second=71 amount=-3 -kerning first=237 second=962 amount=-1 -kerning first=960 second=83 amount=-1 -kerning first=120 second=283 amount=-2 -kerning first=1298 second=233 amount=-1 -kerning first=38 second=67 amount=-2 -kerning first=1035 second=245 amount=-1 -kerning first=177 second=217 amount=-2 -kerning first=8240 second=290 amount=-2 -kerning first=58 second=229 amount=-1 -kerning first=201 second=119 amount=-4 -kerning first=198 second=359 amount=-1 -kerning first=313 second=963 amount=-1 -kerning first=316 second=271 amount=-1 -kerning first=78 second=371 amount=-1 -kerning first=75 second=1195 amount=-2 -kerning first=221 second=286 amount=-3 -kerning first=928 second=334 amount=-2 -kerning first=1178 second=934 amount=-2 -kerning first=1185 second=246 amount=-2 -kerning first=124 second=230 amount=-1 -kerning first=269 second=120 amount=-1 -kerning first=39 second=242 amount=-1 -kerning first=175 second=947 amount=-4 -kerning first=178 second=372 amount=-5 -kerning first=294 second=287 amount=-1 -kerning first=59 second=1240 amount=-2 -kerning first=56 second=1262 amount=-2 -kerning first=1074 second=335 amount=-1 -kerning first=1078 second=97 amount=-1 -kerning first=322 second=219 amount=-2 -kerning first=931 second=965 amount=-1 -kerning first=105 second=243 amount=-1 -kerning first=245 second=373 amount=-1 -kerning first=365 second=1028 amount=-2 -kerning first=1041 second=350 amount=-1 -kerning first=298 second=232 amount=-1 -kerning first=63 second=332 amount=-2 -kerning first=1075 second=966 amount=-1 -kerning first=206 second=244 amount=-1 -kerning first=323 second=374 amount=-5 -kerning first=901 second=289 amount=-1 -kerning first=86 second=256 amount=-6 -kerning first=8377 second=87 amount=-5 +kerning first=242 second=63 amount=-2 +kerning first=242 second=102 amount=-1 +kerning first=242 second=118 amount=-1 +kerning first=242 second=119 amount=-1 +kerning first=242 second=120 amount=-2 +kerning first=242 second=122 amount=-1 +kerning first=242 second=373 amount=-1 +kerning first=242 second=378 amount=-1 +kerning first=242 second=380 amount=-1 +kerning first=242 second=382 amount=-1 +kerning first=242 second=947 amount=-1 +kerning first=242 second=955 amount=-1 +kerning first=242 second=957 amount=-1 +kerning first=242 second=964 amount=-1 +kerning first=242 second=967 amount=-2 +kerning first=242 second=1076 amount=-1 +kerning first=242 second=1078 amount=-2 +kerning first=242 second=1083 amount=-1 +kerning first=242 second=1090 amount=-1 +kerning first=242 second=1093 amount=-2 +kerning first=242 second=1098 amount=-1 +kerning first=242 second=1113 amount=-1 +kerning first=242 second=1175 amount=-2 +kerning first=242 second=1185 amount=-1 +kerning first=242 second=1199 amount=-1 +kerning first=242 second=1203 amount=-2 +kerning first=242 second=1299 amount=-1 +kerning first=242 second=8216 amount=-1 +kerning first=242 second=8217 amount=-1 +kerning first=242 second=8218 amount=-1 +kerning first=242 second=8220 amount=-1 +kerning first=242 second=8221 amount=-1 +kerning first=242 second=8222 amount=-1 +kerning first=242 second=8230 amount=-1 +kerning first=243 second=34 amount=-1 +kerning first=243 second=39 amount=-1 +kerning first=243 second=44 amount=-1 +kerning first=243 second=46 amount=-1 +kerning first=243 second=47 amount=-1 +kerning first=243 second=63 amount=-2 +kerning first=243 second=102 amount=-1 +kerning first=243 second=118 amount=-1 +kerning first=243 second=119 amount=-1 +kerning first=243 second=120 amount=-2 +kerning first=243 second=122 amount=-1 +kerning first=243 second=373 amount=-1 +kerning first=243 second=378 amount=-1 +kerning first=243 second=380 amount=-1 +kerning first=243 second=382 amount=-1 +kerning first=243 second=947 amount=-1 +kerning first=243 second=955 amount=-1 +kerning first=243 second=957 amount=-1 +kerning first=243 second=964 amount=-1 +kerning first=243 second=967 amount=-2 +kerning first=243 second=1076 amount=-1 +kerning first=243 second=1078 amount=-2 +kerning first=243 second=1083 amount=-1 +kerning first=243 second=1090 amount=-1 +kerning first=243 second=1093 amount=-2 +kerning first=243 second=1098 amount=-1 +kerning first=243 second=1113 amount=-1 +kerning first=243 second=1175 amount=-2 +kerning first=243 second=1185 amount=-1 +kerning first=243 second=1199 amount=-1 +kerning first=243 second=1203 amount=-2 +kerning first=243 second=1299 amount=-1 +kerning first=243 second=8216 amount=-1 +kerning first=243 second=8217 amount=-1 +kerning first=243 second=8218 amount=-1 +kerning first=243 second=8220 amount=-1 +kerning first=243 second=8221 amount=-1 +kerning first=243 second=8222 amount=-1 kerning first=243 second=8230 amount=-1 -kerning first=947 second=351 amount=-1 -kerning first=252 second=83 amount=-1 -kerning first=372 second=233 amount=-3 -kerning first=1206 second=111 amount=-1 -kerning first=963 second=1177 amount=-1 -kerning first=162 second=333 amount=-1 -kerning first=8212 second=198 amount=-2 -kerning first=1048 second=290 amount=-2 -kerning first=184 second=949 amount=-1 -kerning first=64 second=963 amount=-1 -kerning first=70 second=44 amount=-4 -kerning first=210 second=194 amount=-2 -kerning first=8378 second=262 amount=-2 -kerning first=905 second=234 amount=-1 -kerning first=1117 second=364 amount=-2 -kerning first=227 second=1090 amount=-1 -kerning first=944 second=376 amount=-5 -kerning first=113 second=108 amount=2 -kerning first=1202 second=1035 amount=-2 -kerning first=964 second=8212 amount=-2 -kerning first=967 second=1059 amount=-2 -kerning first=166 second=273 amount=-1 -kerning first=169 second=45 amount=-2 -kerning first=163 second=964 amount=-3 -kerning first=8216 second=353 amount=-1 -kerning first=8220 second=113 amount=-1 -kerning first=48 second=287 amount=-1 -kerning first=1062 second=235 amount=-1 -kerning first=303 second=335 amount=-1 -kerning first=306 second=97 amount=-1 -kerning first=335 second=34 amount=-1 -kerning first=91 second=361 amount=-1 -kerning first=94 second=121 amount=-1 -kerning first=942 second=8250 amount=-1 -kerning first=377 second=336 amount=-1 -kerning first=170 second=220 amount=-2 -kerning first=277 second=1113 amount=-1 -kerning first=280 second=350 amount=-1 -kerning first=52 second=232 amount=-1 -kerning first=192 second=362 amount=-2 -kerning first=189 second=1176 amount=-1 -kerning first=304 second=966 amount=-1 -kerning first=72 second=374 amount=-5 -kerning first=215 second=289 amount=-1 -kerning first=212 second=1033 amount=-1 -kerning first=912 second=337 amount=-1 -kerning first=1170 second=940 amount=-1 -kerning first=238 second=221 amount=-5 -kerning first=361 second=111 amount=-1 -kerning first=950 second=953 amount=-1 -kerning first=358 second=351 amount=-1 -kerning first=118 second=233 amount=-1 -kerning first=255 second=1177 amount=-1 -kerning first=258 second=363 amount=-1 -kerning first=1033 second=198 amount=-1 -kerning first=1067 second=338 amount=-2 -kerning first=190 second=8211 amount=-2 -kerning first=79 second=84 amount=-2 -kerning first=1099 second=262 amount=-2 -kerning first=915 second=968 amount=-1 -kerning first=923 second=277 amount=-1 -kerning first=239 second=376 amount=-5 -kerning first=958 second=211 amount=-2 -kerning first=1263 second=339 amount=-1 -kerning first=256 second=8212 amount=-2 -kerning first=1037 second=113 amount=-1 -kerning first=169 second=8249 amount=-3 -kerning first=179 second=85 amount=-2 -kerning first=57 second=335 amount=-1 -kerning first=60 second=97 amount=-1 -kerning first=197 second=936 amount=-3 -kerning first=80 second=259 amount=-1 -kerning first=1103 second=212 amount=-2 -kerning first=335 second=8216 amount=-1 -kerning first=934 second=224 amount=-1 -kerning first=237 second=8250 amount=-1 -kerning first=955 second=1184 amount=-5 -kerning first=960 second=366 amount=-2 -kerning first=120 second=1095 amount=-1 -kerning first=123 second=336 amount=-2 -kerning first=1298 second=970 amount=-1 -kerning first=38 second=350 amount=-1 -kerning first=1044 second=63 amount=-2 -kerning first=58 second=966 amount=-1 -kerning first=61 second=275 amount=-1 -kerning first=8366 second=267 amount=-1 -kerning first=1101 second=1185 amount=-1 -kerning first=221 second=1096 amount=-3 -kerning first=107 second=111 amount=-2 -kerning first=247 second=261 amount=-1 -kerning first=42 second=290 amount=-2 -kerning first=185 second=210 amount=-2 -kerning first=297 second=338 amount=-2 -kerning first=300 second=100 amount=-1 -kerning first=205 second=352 amount=-1 -kerning first=325 second=262 amount=-2 -kerning first=900 second=1241 amount=-1 -kerning first=903 second=187 amount=-1 -kerning first=1102 second=8220 amount=-1 -kerning first=105 second=1035 amount=-5 -kerning first=108 second=291 amount=-1 -kerning first=251 second=211 amount=-2 -kerning first=371 second=339 amount=-1 -kerning first=374 second=101 amount=-4 -kerning first=968 second=251 amount=-1 -kerning first=274 second=353 amount=-1 -kerning first=186 second=365 amount=-1 -kerning first=330 second=212 amount=-2 -kerning first=8370 second=1194 amount=-2 -kerning first=8377 second=370 amount=-2 -kerning first=1119 second=252 amount=-1 -kerning first=352 second=354 amount=-1 -kerning first=946 second=266 amount=-2 -kerning first=950 second=39 amount=-3 -kerning first=249 second=1184 amount=-5 -kerning first=252 second=366 amount=-2 -kerning first=375 second=279 amount=-1 -kerning first=168 second=171 amount=-3 -kerning first=281 second=63 amount=-2 -kerning first=184 second=8217 amount=-3 -kerning first=1064 second=103 amount=-1 -kerning first=305 second=225 amount=-1 -kerning first=70 second=324 amount=-1 -kerning first=73 second=87 amount=-5 -kerning first=1090 second=267 amount=-1 -kerning first=327 second=1185 amount=-3 -kerning first=90 second=940 amount=-1 -kerning first=93 second=249 amount=-1 -kerning first=951 second=214 amount=-2 -kerning first=973 second=356 amount=-5 -kerning first=1027 second=116 amount=-1 -kerning first=51 second=338 amount=-2 -kerning first=54 second=100 amount=-1 -kerning first=194 second=250 amount=-1 -kerning first=191 second=941 amount=-1 -kerning first=1062 second=972 amount=-1 -kerning first=1065 second=281 amount=-1 -kerning first=74 second=262 amount=-2 -kerning first=214 second=1241 amount=-1 -kerning first=328 second=8220 amount=-1 -kerning first=916 second=227 amount=-1 -kerning first=240 second=89 amount=-5 -kerning first=952 second=369 amount=-1 -kerning first=117 second=339 amount=-1 -kerning first=1223 second=973 amount=-1 -kerning first=120 second=101 amount=-2 -kerning first=260 second=251 amount=-1 -kerning first=35 second=113 amount=-1 -kerning first=174 second=263 amount=-1 -kerning first=8240 second=106 amount=1 -kerning first=78 second=212 amount=-2 -kerning first=1095 second=1194 amount=-2 -kerning first=912 second=1256 amount=-2 -kerning first=95 second=1118 amount=-1 +kerning first=244 second=34 amount=-1 kerning first=244 second=39 amount=-1 -kerning first=121 second=279 amount=-1 -kerning first=1299 second=229 amount=-1 -kerning first=178 second=213 amount=-2 -kerning first=294 second=103 amount=-1 -kerning first=8226 second=1026 amount=-5 -kerning first=59 second=225 amount=-1 -kerning first=1067 second=1257 amount=-1 -kerning first=202 second=115 amount=-1 -kerning first=317 second=267 amount=-1 -kerning first=8364 second=218 amount=-2 -kerning first=1186 second=242 amount=-1 -kerning first=958 second=945 amount=-1 -kerning first=125 second=226 amount=-1 -kerning first=1263 second=1262 amount=-2 -kerning first=179 second=368 amount=-2 -kerning first=8365 second=373 amount=-4 -kerning first=77 second=8220 amount=-3 -kerning first=1048 second=106 amount=1 -kerning first=180 second=1066 amount=-5 -kerning first=177 second=8221 amount=-3 -kerning first=299 second=228 amount=-1 -kerning first=67 second=90 amount=-1 -kerning first=1076 second=962 amount=-1 -kerning first=207 second=240 amount=-1 -kerning first=321 second=1194 amount=-2 -kerning first=8378 second=83 amount=-1 -kerning first=902 second=283 amount=-1 -kerning first=87 second=252 amount=-2 -kerning first=944 second=217 amount=-2 +kerning first=244 second=44 amount=-1 +kerning first=244 second=46 amount=-1 +kerning first=244 second=47 amount=-1 +kerning first=244 second=63 amount=-2 +kerning first=244 second=102 amount=-1 +kerning first=244 second=118 amount=-1 +kerning first=244 second=119 amount=-1 +kerning first=244 second=120 amount=-2 +kerning first=244 second=122 amount=-1 +kerning first=244 second=373 amount=-1 +kerning first=244 second=378 amount=-1 +kerning first=244 second=380 amount=-1 +kerning first=244 second=382 amount=-1 +kerning first=244 second=947 amount=-1 +kerning first=244 second=955 amount=-1 +kerning first=244 second=957 amount=-1 +kerning first=244 second=964 amount=-1 +kerning first=244 second=967 amount=-2 +kerning first=244 second=1076 amount=-1 +kerning first=244 second=1078 amount=-2 +kerning first=244 second=1083 amount=-1 +kerning first=244 second=1090 amount=-1 +kerning first=244 second=1093 amount=-2 +kerning first=244 second=1098 amount=-1 +kerning first=244 second=1113 amount=-1 +kerning first=244 second=1175 amount=-2 +kerning first=244 second=1185 amount=-1 +kerning first=244 second=1199 amount=-1 +kerning first=244 second=1203 amount=-2 +kerning first=244 second=1299 amount=-1 +kerning first=244 second=8216 amount=-1 +kerning first=244 second=8217 amount=-1 +kerning first=244 second=8218 amount=-1 +kerning first=244 second=8220 amount=-1 +kerning first=244 second=8221 amount=-1 kerning first=244 second=8222 amount=-1 -kerning first=253 second=79 amount=-2 -kerning first=373 second=229 amount=-1 -kerning first=967 second=359 amount=-1 -kerning first=970 second=119 amount=-2 -kerning first=273 second=920 amount=-2 -kerning first=8216 second=194 amount=-3 -kerning first=48 second=103 amount=-1 -kerning first=1049 second=286 amount=-2 -kerning first=188 second=253 amount=-1 -kerning first=297 second=1257 amount=-1 -kerning first=1085 second=218 amount=-2 -kerning first=906 second=230 amount=-1 -kerning first=1118 second=360 amount=-2 -kerning first=354 second=242 amount=-3 -kerning first=942 second=947 amount=-4 -kerning first=108 second=1101 amount=-1 -kerning first=1210 second=287 amount=-1 -kerning first=251 second=945 amount=-1 -kerning first=371 second=1262 amount=-2 -kerning first=374 second=1240 amount=-3 -kerning first=167 second=268 amount=-2 -kerning first=8217 second=347 amount=-1 -kerning first=49 second=281 amount=-1 -kerning first=1063 second=231 amount=-1 -kerning first=1087 second=373 amount=-4 -kerning first=904 second=1263 amount=-1 -kerning first=89 second=1169 amount=-3 -kerning first=95 second=117 amount=-1 -kerning first=92 second=357 amount=-1 -kerning first=1224 second=232 amount=-1 -kerning first=1026 second=244 amount=-1 -kerning first=286 second=106 amount=2 -kerning first=8222 second=289 amount=-1 -kerning first=53 second=228 amount=-1 -kerning first=1059 second=1298 amount=-1 -kerning first=196 second=118 amount=-4 -kerning first=305 second=962 amount=-1 -kerning first=70 second=1194 amount=-2 -kerning first=73 second=370 amount=-2 -kerning first=1099 second=83 amount=-1 -kerning first=915 second=333 amount=-1 -kerning first=910 second=1087 amount=-3 -kerning first=1176 second=245 amount=-1 -kerning first=239 second=217 amount=-2 -kerning first=951 second=949 amount=-1 -kerning first=954 second=257 amount=-1 -kerning first=119 second=229 amount=-1 -kerning first=379 second=963 amount=-1 -kerning first=382 second=271 amount=-1 -kerning first=169 second=1195 amount=-1 -kerning first=172 second=371 amount=-1 -kerning first=1034 second=194 amount=-1 -kerning first=282 second=1026 amount=-5 -kerning first=287 second=286 amount=-2 -kerning first=51 second=1257 amount=-1 -kerning first=1065 second=1090 amount=-2 -kerning first=315 second=218 amount=-1 -kerning first=338 second=360 amount=-2 -kerning first=926 second=273 amount=-1 -kerning first=934 second=45 amount=-2 -kerning first=100 second=242 amount=-1 -kerning first=916 second=964 amount=-3 -kerning first=237 second=947 amount=-4 -kerning first=240 second=372 amount=-5 -kerning first=363 second=287 amount=-1 -kerning first=117 second=1262 amount=-2 -kerning first=1298 second=335 amount=-1 -kerning first=1035 second=347 amount=-1 -kerning first=174 second=1069 amount=-1 -kerning first=180 second=81 amount=-2 -kerning first=291 second=231 amount=-1 -kerning first=201 second=243 amount=-1 -kerning first=316 second=373 amount=-4 -kerning first=936 second=220 amount=-2 -kerning first=367 second=232 amount=-1 -kerning first=956 second=1176 amount=-1 -kerning first=124 second=332 amount=-2 -kerning first=1299 second=966 amount=-1 -kerning first=42 second=106 amount=1 -kerning first=1039 second=289 amount=-1 -kerning first=59 second=962 amount=-1 -kerning first=325 second=83 amount=-1 -kerning first=8369 second=261 amount=-1 -kerning first=900 second=233 amount=-1 -kerning first=8364 second=953 amount=-1 -kerning first=958 second=8211 amount=-2 -kerning first=125 second=963 amount=-1 -kerning first=161 second=271 amount=-1 -kerning first=40 second=1026 amount=-5 -kerning first=46 second=56 amount=-1 -kerning first=43 second=286 amount=-2 -kerning first=295 second=1090 amount=-1 -kerning first=298 second=334 amount=-2 -kerning first=206 second=346 amount=-1 -kerning first=8377 second=211 amount=-2 -kerning first=86 second=360 amount=-2 -kerning first=1103 second=8212 amount=-2 -kerning first=83 second=1174 amount=-1 -kerning first=89 second=120 amount=-2 -kerning first=226 second=964 amount=-1 -kerning first=934 second=8249 amount=-3 -kerning first=946 second=85 amount=-2 -kerning first=1206 second=235 amount=-1 -kerning first=372 second=335 amount=-3 -kerning first=375 second=97 amount=-1 -kerning first=165 second=219 amount=-2 -kerning first=271 second=1108 amount=-1 -kerning first=47 second=231 amount=-2 -kerning first=190 second=121 amount=-1 -kerning first=299 second=965 amount=-1 -kerning first=207 second=1028 amount=-2 -kerning first=8372 second=1184 amount=-5 -kerning first=8378 second=366 amount=-2 -kerning first=905 second=336 amount=-2 -kerning first=1168 second=248 amount=-1 -kerning first=356 second=110 amount=-2 -kerning first=113 second=232 amount=-1 -kerning first=250 second=1176 amount=-1 -kerning first=253 second=362 amount=-2 -kerning first=373 second=966 amount=-1 -kerning first=376 second=275 amount=-4 -kerning first=166 second=374 amount=-5 -kerning first=45 second=1298 amount=-4 -kerning first=1062 second=337 amount=-1 -kerning first=1065 second=99 amount=-1 -kerning first=194 second=71 amount=-2 -kerning first=306 second=221 amount=-5 -kerning first=68 second=1071 amount=-1 -kerning first=74 second=83 amount=-1 -kerning first=1085 second=953 amount=-1 -kerning first=214 second=233 amount=-1 -kerning first=94 second=245 amount=-1 -kerning first=357 second=290 amount=-2 -kerning first=952 second=210 amount=-2 -kerning first=111 second=1299 amount=-1 -kerning first=1223 second=338 amount=-2 -kerning first=251 second=8211 amount=-2 -kerning first=174 second=84 amount=-5 -kerning first=8221 second=1241 amount=-1 -kerning first=8225 second=187 amount=-1 -kerning first=52 second=334 amount=-2 -kerning first=1063 second=968 amount=-1 -kerning first=195 second=246 amount=-1 -kerning first=49 second=1090 amount=-3 -kerning first=330 second=8212 amount=-2 -kerning first=1178 second=113 amount=-1 -kerning first=361 second=235 amount=-1 -kerning first=950 second=1179 amount=-2 -kerning first=118 second=335 amount=-1 -kerning first=121 second=97 amount=-1 -kerning first=258 second=936 amount=-3 -kerning first=381 second=377 amount=1 -kerning first=175 second=259 amount=-1 -kerning first=178 second=34 amount=-3 -kerning first=53 second=965 amount=-1 -kerning first=199 second=196 amount=-1 -kerning first=305 second=8250 amount=-1 -kerning first=8361 second=266 amount=-2 -kerning first=8364 second=39 amount=-3 -kerning first=1096 second=1184 amount=-5 -kerning first=1099 second=366 amount=-2 -kerning first=931 second=171 amount=-3 -kerning first=1186 second=63 amount=-2 -kerning first=951 second=8217 amount=-3 -kerning first=119 second=966 amount=-1 -kerning first=122 second=275 amount=-1 -kerning first=34 second=1033 amount=-3 -kerning first=37 second=289 amount=-1 -kerning first=60 second=221 amount=-5 -kerning first=200 second=351 amount=-1 -kerning first=203 second=111 amount=-1 -kerning first=318 second=261 amount=-1 -kerning first=8365 second=214 amount=-2 -kerning first=80 second=363 amount=-1 -kerning first=77 second=1177 amount=-1 -kerning first=103 second=290 amount=-2 -kerning first=369 second=100 amount=-1 -kerning first=963 second=250 amount=-1 -kerning first=960 second=941 amount=-1 -kerning first=41 second=234 amount=-1 -kerning first=180 second=364 amount=-2 -kerning first=291 second=968 amount=-1 -kerning first=296 second=277 amount=-1 -kerning first=61 second=376 amount=-5 -kerning first=1073 second=1079 amount=-1 -kerning first=201 second=1035 amount=-5 -kerning first=204 second=291 amount=-1 -kerning first=1080 second=89 amount=-5 -kerning first=8366 second=369 amount=-1 -kerning first=78 second=8212 amount=-2 -kerning first=902 second=101 amount=-1 -kerning first=345 second=353 amount=-1 -kerning first=936 second=955 amount=-2 -kerning first=107 second=235 amount=-2 -kerning first=247 second=365 amount=-1 -kerning first=178 second=8216 amount=-3 -kerning first=300 second=224 amount=-1 -kerning first=59 second=8250 amount=-1 -kerning first=68 second=86 amount=-2 -kerning first=1081 second=266 amount=-2 -kerning first=1085 second=39 amount=-3 -kerning first=322 second=1184 amount=-5 -kerning first=325 second=366 amount=-2 -kerning first=903 second=279 amount=-1 -kerning first=900 second=970 amount=-1 -kerning first=88 second=248 amount=-2 -kerning first=1210 second=103 amount=-1 -kerning first=245 second=8217 amount=-1 -kerning first=374 second=225 amount=-4 -kerning first=968 second=355 amount=-1 -kerning first=971 second=115 amount=-1 -kerning first=167 second=87 amount=-5 -kerning first=49 second=99 amount=-1 -kerning first=186 second=940 amount=-1 -kerning first=189 second=249 amount=-1 -kerning first=69 second=261 amount=-1 -kerning first=1087 second=214 amount=-2 -kerning first=8377 second=945 amount=-1 -kerning first=1119 second=356 amount=-5 -kerning first=1170 second=116 amount=-1 -kerning first=946 second=368 amount=-2 -kerning first=1219 second=281 amount=-1 -kerning first=255 second=250 amount=-1 -kerning first=252 second=941 amount=-1 -kerning first=1206 second=972 amount=-1 -kerning first=168 second=262 amount=-2 -kerning first=278 second=1241 amount=-1 -kerning first=1241 second=8220 amount=-1 -kerning first=47 second=968 amount=-1 -kerning first=50 second=277 amount=-1 -kerning first=1064 second=227 amount=-1 -kerning first=193 second=199 amount=-2 -kerning first=302 second=1079 amount=-1 -kerning first=73 second=211 amount=-2 -kerning first=93 second=353 amount=-1 -kerning first=96 second=113 amount=-1 -kerning first=233 second=955 amount=-1 -kerning first=236 second=263 amount=-1 -kerning first=948 second=1066 amount=-5 -kerning first=944 second=8221 amount=-3 -kerning first=376 second=1080 amount=-3 -kerning first=1027 second=240 amount=-1 -kerning first=172 second=212 amount=-2 -kerning first=8230 second=55 amount=-1 -kerning first=8224 second=283 amount=-1 -kerning first=54 second=224 amount=-1 -kerning first=1062 second=1256 amount=-1 -kerning first=194 second=354 amount=-5 -kerning first=191 second=1118 amount=-1 -kerning first=315 second=39 amount=-3 -kerning first=71 second=1184 amount=-1 -kerning first=74 second=366 amount=-2 -kerning first=214 second=970 amount=-1 -kerning first=1174 second=920 amount=-1 -kerning first=240 second=213 amount=-2 -kerning first=363 second=103 amount=-1 -kerning first=955 second=253 amount=-1 -kerning first=1223 second=1257 amount=-1 -kerning first=120 second=225 amount=-1 -kerning first=260 second=355 amount=-1 -kerning first=174 second=367 amount=-1 -kerning first=170 second=1185 amount=-3 -kerning first=8240 second=230 amount=-1 -kerning first=195 second=1038 amount=-2 -kerning first=316 second=214 amount=-2 -kerning first=221 second=226 amount=-4 -kerning first=928 second=268 amount=-2 -kerning first=361 second=972 amount=-1 -kerning first=36 second=1241 amount=-1 -kerning first=294 second=227 amount=-1 -kerning first=8226 second=1263 amount=-1 -kerning first=62 second=89 amount=-5 -kerning first=1074 second=269 amount=-1 -kerning first=56 second=1079 amount=-1 -kerning first=317 second=369 amount=-1 -kerning first=222 second=381 amount=-1 -kerning first=239 second=8221 amount=-3 -kerning first=965 second=118 amount=-4 -kerning first=1041 second=283 amount=-1 -kerning first=179 second=943 amount=-1 -kerning first=183 second=252 amount=-1 -kerning first=63 second=266 amount=-2 -kerning first=8365 second=949 amount=-1 -kerning first=8370 second=257 amount=-1 -kerning first=901 second=229 amount=-1 -kerning first=934 second=1195 amount=-1 -kerning first=249 second=253 amount=-1 -kerning first=162 second=267 amount=-1 -kerning first=1048 second=230 amount=-1 -kerning first=1080 second=372 amount=-5 -kerning first=204 second=1101 amount=-1 -kerning first=902 second=1240 amount=-2 -kerning first=948 second=81 amount=-2 -kerning first=107 second=972 amount=-2 -kerning first=1207 second=231 amount=-1 -kerning first=48 second=227 amount=-1 -kerning first=1046 second=1263 amount=-1 -kerning first=188 second=357 amount=-1 -kerning first=191 second=117 amount=-1 -kerning first=303 second=269 amount=-1 -kerning first=906 second=332 amount=-2 -kerning first=1169 second=244 amount=-1 -kerning first=357 second=106 amount=1 -kerning first=114 second=228 amount=-1 -kerning first=257 second=118 amount=-1 -kerning first=374 second=962 amount=-4 -kerning first=164 second=1194 amount=-2 -kerning first=167 second=370 amount=-2 -kerning first=280 second=283 amount=-1 -kerning first=8221 second=233 amount=-1 -kerning first=46 second=1256 amount=-1 -kerning first=1063 second=333 amount=-1 -kerning first=195 second=67 amount=-2 -kerning first=75 second=79 amount=-3 -kerning first=1087 second=949 amount=-1 -kerning first=1095 second=257 amount=-1 -kerning first=215 second=229 amount=-1 -kerning first=8377 second=8211 amount=-2 -kerning first=912 second=271 amount=-1 -kerning first=920 second=44 amount=-1 -kerning first=92 second=920 amount=-2 -kerning first=358 second=286 amount=-2 -kerning first=1219 second=1090 amount=-3 -kerning first=1224 second=334 amount=-2 -kerning first=1026 second=346 amount=-1 -kerning first=1064 second=964 amount=-3 -kerning first=1067 second=273 amount=-1 -kerning first=196 second=242 amount=-1 -kerning first=305 second=947 amount=-4 -kerning first=8361 second=85 amount=-2 -kerning first=73 second=945 amount=-1 -kerning first=923 second=219 amount=-2 -kerning first=1171 second=1108 amount=-1 -kerning first=1176 second=347 amount=-1 -kerning first=236 second=1069 amount=-1 -kerning first=958 second=121 amount=-1 -kerning first=1027 second=1028 amount=-2 -kerning first=282 second=1263 amount=-1 -kerning first=8230 second=336 amount=-1 -kerning first=57 second=269 amount=-1 -kerning first=1071 second=220 amount=-2 -kerning first=341 second=244 amount=-1 -kerning first=926 second=374 amount=-5 -kerning first=103 second=106 amount=7 -kerning first=1184 second=289 amount=-1 -kerning first=360 second=1298 amount=-1 -kerning first=963 second=71 amount=-2 -kerning first=120 second=962 amount=-2 -kerning first=268 second=193 amount=-1 -kerning first=38 second=283 amount=-1 -kerning first=291 second=333 amount=-1 -kerning first=61 second=217 amount=-2 -kerning first=1073 second=375 amount=-1 -kerning first=316 second=949 amount=-1 -kerning first=321 second=257 amount=-1 -kerning first=8366 second=210 amount=-2 -kerning first=84 second=119 amount=-2 -kerning first=221 second=963 amount=-4 -kerning first=367 second=334 amount=-2 -kerning first=964 second=246 amount=-1 -kerning first=160 second=218 amount=-2 -kerning first=42 second=230 amount=-1 -kerning first=182 second=360 amount=-2 -kerning first=297 second=273 amount=-1 -kerning first=300 second=45 amount=-2 -kerning first=294 second=964 amount=-3 -kerning first=59 second=947 amount=-4 -kerning first=62 second=372 amount=-5 -kerning first=1081 second=85 amount=-2 -kerning first=205 second=287 amount=-1 -kerning first=8369 second=365 amount=-1 -kerning first=900 second=335 amount=-1 -kerning first=903 second=97 amount=-1 -kerning first=343 second=1108 amount=-1 -kerning first=942 second=259 amount=-1 -kerning first=108 second=231 amount=-1 +kerning first=244 second=8230 amount=-1 +kerning first=245 second=34 amount=-1 +kerning first=245 second=39 amount=-1 +kerning first=245 second=44 amount=-1 +kerning first=245 second=46 amount=-1 +kerning first=245 second=47 amount=-1 +kerning first=245 second=63 amount=-2 +kerning first=245 second=102 amount=-1 +kerning first=245 second=118 amount=-1 +kerning first=245 second=119 amount=-1 +kerning first=245 second=120 amount=-2 +kerning first=245 second=122 amount=-1 +kerning first=245 second=373 amount=-1 +kerning first=245 second=378 amount=-1 +kerning first=245 second=380 amount=-1 +kerning first=245 second=382 amount=-1 +kerning first=245 second=947 amount=-1 +kerning first=245 second=955 amount=-1 +kerning first=245 second=957 amount=-1 +kerning first=245 second=964 amount=-1 +kerning first=245 second=967 amount=-2 +kerning first=245 second=1076 amount=-1 +kerning first=245 second=1078 amount=-2 +kerning first=245 second=1083 amount=-1 +kerning first=245 second=1090 amount=-1 +kerning first=245 second=1093 amount=-2 +kerning first=245 second=1098 amount=-1 +kerning first=245 second=1113 amount=-1 kerning first=245 second=1175 amount=-2 -kerning first=251 second=121 amount=-1 -kerning first=374 second=46 amount=-4 -kerning first=161 second=373 amount=-4 -kerning first=274 second=288 amount=-2 -kerning first=40 second=1263 amount=-1 -kerning first=301 second=220 amount=-2 -kerning first=209 second=232 amount=-1 -kerning first=323 second=1176 amount=-1 -kerning first=8365 second=8217 amount=-3 -kerning first=901 second=966 amount=-1 -kerning first=908 second=47 amount=-1 -kerning first=904 second=275 amount=-1 -kerning first=89 second=244 amount=-4 -kerning first=1219 second=99 amount=-1 -kerning first=1206 second=337 amount=-1 -kerning first=255 second=71 amount=-2 -kerning first=375 second=221 amount=-5 -kerning first=168 second=83 amount=-1 -kerning first=278 second=233 amount=-1 -kerning first=47 second=333 amount=-1 -kerning first=190 second=245 amount=-1 -kerning first=302 second=375 amount=-1 -kerning first=70 second=257 amount=-1 -kerning first=8378 second=941 amount=-1 -kerning first=1168 second=352 amount=-1 -kerning first=236 second=84 amount=-5 -kerning first=356 second=234 amount=-3 -kerning first=948 second=364 amount=-2 -kerning first=113 second=334 amount=-2 -kerning first=110 second=1090 amount=-1 -kerning first=1220 second=277 amount=-1 -kerning first=256 second=246 amount=-1 -kerning first=973 second=291 amount=-1 -kerning first=8220 second=339 amount=-1 -kerning first=8224 second=101 amount=-1 -kerning first=51 second=273 amount=-1 -kerning first=54 second=45 amount=-2 -kerning first=48 second=964 amount=-3 -kerning first=300 second=8249 amount=-3 -kerning first=214 second=335 amount=-1 -kerning first=91 second=1108 amount=-1 -kerning first=94 second=347 amount=-1 -kerning first=240 second=34 amount=-3 -kerning first=237 second=259 amount=-1 -kerning first=374 second=8250 amount=-2 -kerning first=8225 second=279 amount=-1 -kerning first=55 second=220 amount=-2 -kerning first=195 second=350 amount=-1 -kerning first=72 second=1176 amount=-1 -kerning first=1087 second=8217 amount=-3 -kerning first=215 second=966 amount=-1 -kerning first=221 second=47 amount=-4 -kerning first=928 second=87 amount=-5 -kerning first=361 second=337 amount=-1 -kerning first=956 second=249 amount=-1 -kerning first=121 second=221 amount=-5 -kerning first=36 second=233 amount=-1 -kerning first=175 second=363 amount=-1 -kerning first=56 second=375 amount=-1 -kerning first=317 second=210 amount=-2 -kerning first=8361 second=368 amount=-2 -kerning first=73 second=8211 amount=-2 -kerning first=1099 second=941 amount=-1 -kerning first=931 second=262 amount=-2 -kerning first=102 second=234 amount=-1 -kerning first=1179 second=1241 amount=-1 -kerning first=365 second=277 amount=-1 -kerning first=962 second=199 amount=-2 -kerning first=1263 second=1079 amount=-1 -kerning first=262 second=1035 amount=-1 -kerning first=1037 second=339 amount=-1 -kerning first=172 second=8212 amount=-2 -kerning first=176 second=1059 amount=-2 -kerning first=1041 second=101 amount=-1 -kerning first=1034 second=1098 amount=-2 -kerning first=54 second=8249 amount=-3 -kerning first=63 second=85 amount=-2 -kerning first=1075 second=263 amount=-1 -kerning first=203 second=235 amount=-1 -kerning first=318 second=365 amount=-1 -kerning first=240 second=8216 amount=-3 -kerning first=369 second=224 amount=-1 -kerning first=963 second=354 amount=-5 -kerning first=960 second=1118 amount=-1 -kerning first=120 second=8250 amount=-1 -kerning first=41 second=336 amount=-2 -kerning first=1044 second=279 amount=-1 -kerning first=184 second=248 amount=-1 -kerning first=299 second=171 amount=-3 -kerning first=1080 second=213 amount=-2 -kerning first=316 second=8217 amount=-3 -kerning first=8372 second=253 amount=-1 -kerning first=902 second=225 amount=-1 -kerning first=87 second=197 amount=-5 -kerning first=1117 second=115 amount=-1 -kerning first=936 second=1185 amount=-3 -kerning first=107 second=337 amount=-2 -kerning first=250 second=249 amount=-1 -kerning first=247 second=940 amount=-1 -kerning first=964 second=1038 amount=-2 -kerning first=163 second=261 amount=-1 -kerning first=160 second=953 amount=-1 -kerning first=1049 second=226 amount=-1 -kerning first=1081 second=368 amount=-2 -kerning first=325 second=941 amount=-1 -kerning first=88 second=352 amount=-1 -kerning first=354 second=187 amount=-1 -kerning first=108 second=968 amount=-1 -kerning first=1210 second=227 amount=-1 -kerning first=254 second=199 amount=-2 -kerning first=371 second=1079 amount=-1 -kerning first=374 second=326 amount=-3 -kerning first=167 second=211 amount=-2 -kerning first=274 second=1098 amount=-3 -kerning first=280 second=101 amount=-1 -kerning first=189 second=353 amount=-1 -kerning first=192 second=113 amount=-1 -kerning first=304 second=263 amount=-1 -kerning first=69 second=365 amount=-1 -kerning first=1083 second=1066 amount=-5 -kerning first=1170 second=240 amount=-1 -kerning first=946 second=943 amount=-1 -kerning first=950 second=252 amount=-1 -kerning first=1206 second=1256 amount=-1 -kerning first=252 second=1118 amount=-1 -kerning first=255 second=354 amount=-5 -kerning first=165 second=1184 amount=-5 -kerning first=168 second=366 amount=-2 -kerning first=278 second=970 amount=-1 -kerning first=53 second=171 amount=-3 -kerning first=196 second=63 amount=-5 -kerning first=310 second=213 amount=-3 -kerning first=1096 second=253 amount=-1 -kerning first=915 second=267 amount=-1 -kerning first=236 second=367 amount=-1 -kerning first=233 second=1185 amount=-1 -kerning first=113 second=1220 amount=2 -kerning first=256 second=1038 amount=-2 -kerning first=973 second=1101 amount=-1 -kerning first=287 second=226 amount=-1 -kerning first=8224 second=1240 amount=-2 -kerning first=74 second=941 amount=-1 -kerning first=77 second=250 amount=-1 -kerning first=100 second=187 amount=-1 -kerning first=234 second=8220 amount=-1 -kerning first=363 second=227 amount=-1 -kerning first=955 second=357 amount=-1 -kerning first=960 second=117 amount=-1 -kerning first=117 second=1079 amount=-1 -kerning first=1298 second=269 amount=-1 -kerning first=123 second=89 amount=-5 -kerning first=35 second=339 amount=-1 -kerning first=38 second=101 amount=-1 -kerning first=177 second=251 amount=-1 -kerning first=8240 second=332 amount=-2 -kerning first=58 second=263 amount=-1 -kerning first=1073 second=216 amount=-2 -kerning first=313 second=1066 amount=-6 -kerning first=1106 second=118 amount=-1 -kerning first=928 second=370 amount=-2 -kerning first=104 second=102 amount=-1 -kerning first=1185 second=283 amount=-2 -kerning first=361 second=1256 amount=-2 -kerning first=964 second=67 amount=-2 -kerning first=124 second=266 amount=-2 -kerning first=160 second=39 amount=-3 -kerning first=36 second=970 amount=-1 -kerning first=39 second=279 amount=-1 -kerning first=1039 second=229 amount=-1 -kerning first=62 second=213 amount=-2 -kerning first=1074 second=371 amount=-1 -kerning first=205 second=103 amount=-1 -kerning first=322 second=253 amount=-1 -kerning first=965 second=242 amount=-1 -kerning first=161 second=214 amount=-2 -kerning first=1037 second=1262 amount=-2 -kerning first=1041 second=1240 amount=-2 -kerning first=43 second=226 amount=-1 -kerning first=183 second=356 amount=-5 -kerning first=186 second=116 amount=-1 -kerning first=298 second=268 amount=-2 -kerning first=63 second=368 amount=-2 -kerning first=1083 second=81 amount=-2 -kerning first=203 second=972 amount=-1 -kerning first=206 second=281 amount=-1 -kerning first=8370 second=361 amount=-1 -kerning first=8377 second=121 amount=-1 -kerning first=89 second=65 amount=-5 -kerning first=1116 second=243 amount=-2 -kerning first=249 second=357 amount=-1 -kerning first=252 second=117 amount=-1 -kerning first=372 second=269 amount=-3 -kerning first=162 second=369 amount=-1 -kerning first=271 second=973 amount=-1 -kerning first=1048 second=332 amount=-2 -kerning first=302 second=216 amount=-2 -kerning first=64 second=1066 amount=-5 -kerning first=61 second=8221 amount=-3 -kerning first=331 second=118 amount=-1 -kerning first=902 second=962 amount=-1 -kerning first=87 second=916 amount=-5 -kerning first=90 second=240 amount=-1 -kerning first=1207 second=333 amount=-1 +kerning first=245 second=1185 amount=-1 +kerning first=245 second=1199 amount=-1 +kerning first=245 second=1203 amount=-2 +kerning first=245 second=1299 amount=-1 +kerning first=245 second=8216 amount=-1 +kerning first=245 second=8217 amount=-1 +kerning first=245 second=8218 amount=-1 +kerning first=245 second=8220 amount=-1 +kerning first=245 second=8221 amount=-1 +kerning first=245 second=8222 amount=-1 +kerning first=245 second=8230 amount=-1 +kerning first=246 second=34 amount=-1 +kerning first=246 second=39 amount=-1 +kerning first=246 second=44 amount=-1 +kerning first=246 second=46 amount=-1 +kerning first=246 second=47 amount=-1 +kerning first=246 second=63 amount=-2 +kerning first=246 second=102 amount=-1 +kerning first=246 second=118 amount=-1 +kerning first=246 second=119 amount=-1 +kerning first=246 second=120 amount=-2 +kerning first=246 second=122 amount=-1 +kerning first=246 second=373 amount=-1 +kerning first=246 second=378 amount=-1 +kerning first=246 second=380 amount=-1 +kerning first=246 second=382 amount=-1 +kerning first=246 second=947 amount=-1 +kerning first=246 second=955 amount=-1 +kerning first=246 second=957 amount=-1 +kerning first=246 second=964 amount=-1 +kerning first=246 second=967 amount=-2 +kerning first=246 second=1076 amount=-1 +kerning first=246 second=1078 amount=-2 +kerning first=246 second=1083 amount=-1 +kerning first=246 second=1090 amount=-1 +kerning first=246 second=1093 amount=-2 +kerning first=246 second=1098 amount=-1 +kerning first=246 second=1113 amount=-1 +kerning first=246 second=1175 amount=-2 +kerning first=246 second=1185 amount=-1 +kerning first=246 second=1199 amount=-1 +kerning first=246 second=1203 amount=-2 +kerning first=246 second=1299 amount=-1 +kerning first=246 second=8216 amount=-1 +kerning first=246 second=8217 amount=-1 +kerning first=246 second=8218 amount=-1 +kerning first=246 second=8220 amount=-1 +kerning first=246 second=8221 amount=-1 +kerning first=246 second=8222 amount=-1 +kerning first=246 second=8230 amount=-1 +kerning first=248 second=34 amount=-1 +kerning first=248 second=39 amount=-1 +kerning first=248 second=44 amount=-1 +kerning first=248 second=46 amount=-1 +kerning first=248 second=47 amount=-1 +kerning first=248 second=63 amount=-2 +kerning first=248 second=102 amount=-1 +kerning first=248 second=118 amount=-1 +kerning first=248 second=119 amount=-1 +kerning first=248 second=120 amount=-2 +kerning first=248 second=122 amount=-1 +kerning first=248 second=373 amount=-1 +kerning first=248 second=378 amount=-1 +kerning first=248 second=380 amount=-1 +kerning first=248 second=382 amount=-1 +kerning first=248 second=947 amount=-1 +kerning first=248 second=955 amount=-1 +kerning first=248 second=957 amount=-1 +kerning first=248 second=964 amount=-1 +kerning first=248 second=967 amount=-2 +kerning first=248 second=1076 amount=-1 +kerning first=248 second=1078 amount=-2 +kerning first=248 second=1083 amount=-1 +kerning first=248 second=1090 amount=-1 +kerning first=248 second=1093 amount=-2 +kerning first=248 second=1098 amount=-1 +kerning first=248 second=1113 amount=-1 +kerning first=248 second=1175 amount=-2 +kerning first=248 second=1185 amount=-1 +kerning first=248 second=1199 amount=-1 +kerning first=248 second=1203 amount=-2 +kerning first=248 second=1299 amount=-1 +kerning first=248 second=8216 amount=-1 +kerning first=248 second=8217 amount=-1 +kerning first=248 second=8218 amount=-1 +kerning first=248 second=8220 amount=-1 +kerning first=248 second=8221 amount=-1 +kerning first=248 second=8222 amount=-1 +kerning first=248 second=8230 amount=-1 +kerning first=256 second=34 amount=-3 +kerning first=256 second=38 amount=-1 +kerning first=256 second=39 amount=-3 +kerning first=256 second=45 amount=-2 +kerning first=256 second=63 amount=-5 kerning first=256 second=67 amount=-2 -kerning first=169 second=79 amount=-2 -kerning first=1049 second=963 amount=-1 -kerning first=188 second=920 amount=-2 -kerning first=1062 second=271 amount=-1 -kerning first=303 second=371 amount=-1 -kerning first=300 second=1195 amount=-1 -kerning first=357 second=230 amount=-1 -kerning first=111 second=1083 amount=-1 -kerning first=1210 second=964 amount=-3 -kerning first=1223 second=273 amount=-1 -kerning first=374 second=947 amount=-2 -kerning first=167 second=945 amount=-1 -kerning first=280 second=1240 amount=-2 -kerning first=8221 second=335 amount=-1 -kerning first=8225 second=97 amount=-1 -kerning first=52 second=268 amount=-2 -kerning first=304 second=1069 amount=-1 -kerning first=313 second=81 amount=-1 -kerning first=1095 second=361 amount=-1 -kerning first=908 second=1202 amount=-3 -kerning first=912 second=373 amount=-4 -kerning first=1170 second=1028 amount=-2 -kerning first=118 second=269 amount=-1 -kerning first=8226 second=275 amount=-1 -kerning first=56 second=216 amount=-2 -kerning first=1067 second=374 amount=-5 -kerning first=199 second=106 amount=1 -kerning first=931 second=83 amount=-1 -kerning first=910 second=8230 amount=-4 -kerning first=1179 second=233 amount=-1 -kerning first=958 second=245 amount=-1 -kerning first=1263 second=375 amount=-1 -kerning first=382 second=949 amount=-1 -kerning first=37 second=229 amount=-1 -kerning first=179 second=119 amount=-4 -kerning first=176 second=359 amount=-1 -kerning first=287 second=963 amount=-1 -kerning first=54 second=1195 amount=-1 -kerning first=57 second=371 amount=-1 -kerning first=197 second=1026 amount=-5 -kerning first=200 second=286 amount=-2 -kerning first=1103 second=246 amount=-1 -kerning first=223 second=218 amount=-2 -kerning first=103 second=230 amount=-1 -kerning first=246 second=120 amount=-2 -kerning first=363 second=964 amount=-3 -kerning first=369 second=45 amount=-2 -kerning first=123 second=372 amount=-5 -kerning first=35 second=1262 amount=-2 -kerning first=38 second=1240 amount=-2 -kerning first=296 second=219 amount=-2 -kerning first=58 second=1069 amount=-1 -kerning first=64 second=81 amount=-2 -kerning first=1080 second=34 amount=-3 -kerning first=204 second=231 amount=-1 -kerning first=321 second=361 amount=-1 -kerning first=84 second=243 amount=-3 -kerning first=224 second=373 amount=-1 -kerning first=961 second=1113 amount=-1 -kerning first=964 second=350 amount=-1 -kerning first=273 second=232 amount=-1 -kerning first=42 second=332 amount=-2 -kerning first=1039 second=966 amount=-1 -kerning first=1046 second=275 amount=-2 -kerning first=185 second=244 amount=-1 -kerning first=297 second=374 amount=-5 -kerning first=8369 second=940 amount=-1 -kerning first=903 second=221 amount=-5 -kerning first=1118 second=111 amount=-1 -kerning first=222 second=8230 amount=-1 -kerning first=942 second=363 amount=-1 -kerning first=108 second=333 amount=-1 -kerning first=251 second=245 amount=-1 -kerning first=371 second=375 amount=-1 -kerning first=968 second=290 amount=-2 -kerning first=161 second=949 amount=-1 -kerning first=164 second=257 amount=-1 -kerning first=8217 second=100 amount=-1 -kerning first=43 second=963 amount=-1 -kerning first=304 second=84 amount=-5 -kerning first=1083 second=364 amount=-2 -kerning first=206 second=1090 amount=-3 -kerning first=209 second=334 amount=-2 -kerning first=330 second=246 amount=-1 -kerning first=904 second=376 amount=-5 -kerning first=86 second=1107 amount=-2 -kerning first=89 second=346 amount=-1 -kerning first=1119 second=291 amount=-1 -kerning first=109 second=964 amount=-1 -kerning first=369 second=8249 amount=-3 -kerning first=372 second=1074 amount=-2 -kerning first=278 second=335 amount=-1 -kerning first=50 second=219 amount=-2 -kerning first=190 second=347 amount=-1 -kerning first=305 second=259 amount=-1 -kerning first=70 second=361 amount=-1 -kerning first=1080 second=8216 amount=-3 -kerning first=73 second=121 amount=-1 -kerning first=216 second=46 amount=-1 -kerning first=334 second=196 amount=-2 -kerning first=8378 second=1118 amount=-1 -kerning first=902 second=8250 amount=-1 -kerning first=93 second=288 amount=-2 -kerning first=90 second=1028 amount=-1 -kerning first=356 second=336 amount=-1 -kerning first=951 second=248 amount=-1 -kerning first=256 second=350 amount=-1 -kerning first=376 second=952 amount=-2 -kerning first=166 second=1176 amount=-1 -kerning first=169 second=362 amount=-2 -kerning first=282 second=275 amount=-1 -kerning first=8224 second=225 amount=-1 -kerning first=51 second=374 amount=-5 -kerning first=194 second=289 amount=-1 -kerning first=77 second=71 amount=-2 -kerning first=1094 second=940 amount=-1 -kerning first=338 second=111 amount=-1 -kerning first=916 second=261 amount=-1 -kerning first=237 second=363 amount=-1 -kerning first=117 second=375 amount=-1 -kerning first=260 second=290 amount=-2 -kerning first=167 second=8211 amount=-2 -kerning first=1035 second=100 amount=-1 -kerning first=58 second=84 amount=-5 -kerning first=198 second=234 amount=-1 -kerning first=313 second=364 amount=-1 -kerning first=78 second=246 amount=-1 -kerning first=336 second=1035 amount=-2 -kerning first=928 second=211 amount=-2 -kerning first=1175 second=1098 amount=-2 -kerning first=1185 second=101 amount=-2 -kerning first=238 second=1059 amount=-2 -kerning first=1178 second=339 amount=-1 -kerning first=956 second=353 amount=-1 -kerning first=124 second=85 amount=-2 -kerning first=1299 second=263 amount=-1 -kerning first=36 second=335 amount=-1 -kerning first=39 second=97 amount=-1 -kerning first=59 second=259 amount=-1 -kerning first=62 second=34 amount=-3 -kerning first=1074 second=212 amount=-2 -kerning first=8361 second=943 amount=-1 -kerning first=8364 second=252 amount=-1 -kerning first=1099 second=1118 amount=-1 -kerning first=923 second=1184 amount=-5 -kerning first=931 second=366 amount=-2 -kerning first=1186 second=279 amount=-1 -kerning first=37 second=966 amount=-1 -kerning first=40 second=275 amount=-1 -kerning first=1041 second=225 amount=-1 -kerning first=298 second=87 amount=-5 -kerning first=1071 second=1185 amount=-3 -kerning first=203 second=337 amount=-1 -kerning first=206 second=99 amount=-1 -kerning first=318 second=940 amount=-1 -kerning first=323 second=249 amount=-1 -kerning first=86 second=111 amount=-3 -kerning first=1103 second=1038 amount=-2 -kerning first=223 second=953 amount=-1 -kerning first=947 second=226 amount=-1 -kerning first=162 second=210 amount=-2 -kerning first=271 second=338 amount=-2 -kerning first=184 second=352 amount=-1 -kerning first=299 second=262 amount=-2 -kerning first=64 second=364 amount=-2 -kerning first=1073 second=8220 amount=-3 -kerning first=204 second=968 amount=-1 -kerning first=207 second=277 amount=-1 -kerning first=327 second=199 amount=-2 -kerning first=8372 second=357 amount=-1 -kerning first=8378 second=117 amount=-1 -kerning first=905 second=89 amount=-5 -kerning first=87 second=291 amount=-2 -kerning first=944 second=251 amount=-1 -kerning first=253 second=113 amount=-1 -kerning first=250 second=353 amount=-1 -kerning first=376 second=38 amount=-2 -kerning first=373 second=263 amount=-1 -kerning first=163 second=365 amount=-1 -kerning first=8216 second=228 amount=-1 -kerning first=45 second=377 amount=-2 -kerning first=303 second=212 amount=-2 -kerning first=62 second=8216 amount=-3 -kerning first=1085 second=252 amount=-1 -kerning first=1081 second=943 amount=-1 -kerning first=325 second=1118 amount=-1 -kerning first=906 second=266 amount=-2 -kerning first=354 second=279 amount=-3 -kerning first=111 second=378 amount=-1 -kerning first=257 second=63 amount=-2 -kerning first=377 second=213 amount=-1 -kerning first=161 second=8217 amount=-3 -kerning first=280 second=225 amount=-1 -kerning first=52 second=87 amount=-5 -kerning first=1063 second=267 amount=-1 -kerning first=301 second=1185 amount=-3 -kerning first=304 second=367 amount=-1 -kerning first=69 second=940 amount=-1 -kerning first=72 second=249 amount=-1 -kerning first=212 second=379 amount=-1 -kerning first=330 second=1038 amount=-2 -kerning first=912 second=214 amount=-2 -kerning first=1119 second=1101 amount=-1 -kerning first=950 second=356 amount=-5 -kerning first=358 second=226 amount=-1 -kerning first=112 second=1078 amount=-2 -kerning first=1224 second=268 amount=-2 -kerning first=1026 second=281 amount=-1 -kerning first=168 second=941 amount=-1 -kerning first=281 second=380 amount=-1 -kerning first=53 second=262 amount=-2 -kerning first=193 second=1241 amount=-1 -kerning first=196 second=187 amount=-1 -kerning first=302 second=8220 amount=-3 -kerning first=76 second=199 amount=-1 -kerning first=1096 second=357 amount=-1 -kerning first=1099 second=117 amount=-1 -kerning first=915 second=369 amount=-1 -kerning first=910 second=1187 amount=-3 -kerning first=96 second=339 amount=-1 -kerning first=1171 second=973 amount=-1 -kerning first=93 second=1098 amount=-3 -kerning first=239 second=251 amount=-1 -kerning first=356 second=1224 amount=-2 -kerning first=116 second=955 amount=-1 -kerning first=1263 second=216 amount=-2 -kerning first=119 second=263 amount=-1 -kerning first=8224 second=962 amount=-1 -kerning first=57 second=212 amount=-2 -kerning first=1065 second=1194 amount=-1 -kerning first=315 second=252 amount=-1 -kerning first=77 second=354 amount=-5 -kerning first=74 second=1118 amount=-1 -kerning first=1103 second=67 amount=-2 -kerning first=223 second=39 amount=-3 -kerning first=934 second=79 amount=-2 -kerning first=100 second=279 amount=-1 -kerning first=1184 second=229 amount=-1 -kerning first=955 second=920 amount=-2 -kerning first=123 second=213 amount=-2 -kerning first=1298 second=371 amount=-1 -kerning first=38 second=225 amount=-1 -kerning first=177 second=355 amount=-1 -kerning first=180 second=115 amount=-1 -kerning first=291 second=267 amount=-1 -kerning first=8260 second=218 amount=-2 -kerning first=55 second=1185 amount=-3 -kerning first=58 second=367 amount=-1 -kerning first=8363 second=360 amount=-2 -kerning first=78 second=1038 amount=-2 -kerning first=928 second=945 amount=-1 -kerning first=1178 second=1262 amount=-1 -kerning first=247 second=116 amount=-1 -kerning first=367 second=268 amount=-2 -kerning first=124 second=368 amount=-2 -kerning first=1299 second=1069 amount=-1 -kerning first=8249 second=1202 amount=-1 -kerning first=56 second=8220 amount=-3 -kerning first=205 second=227 amount=-1 -kerning first=325 second=117 amount=-1 -kerning first=322 second=357 amount=-1 -kerning first=900 second=269 amount=-1 -kerning first=371 second=216 amount=-2 -kerning first=125 second=1066 amount=-5 -kerning first=968 second=106 amount=1 -kerning first=274 second=228 amount=-1 -kerning first=1041 second=962 amount=-1 -kerning first=186 second=240 amount=-1 -kerning first=298 second=370 amount=-2 -kerning first=63 second=943 amount=-1 -kerning first=203 second=1256 amount=-2 -kerning first=330 second=67 amount=-2 -kerning first=8377 second=245 amount=-1 -kerning first=904 second=217 amount=-2 -kerning first=946 second=119 amount=-4 -kerning first=947 second=963 amount=-1 -kerning first=1206 second=271 amount=-1 -kerning first=249 second=920 amount=-2 -kerning first=369 second=1195 amount=-1 -kerning first=372 second=371 amount=-2 -kerning first=165 second=253 amount=-1 -kerning first=271 second=1257 amount=-1 -kerning first=47 second=267 amount=-1 -kerning first=1084 second=360 amount=-2 -kerning first=902 second=947 amount=-4 -kerning first=905 second=372 amount=-5 -kerning first=1168 second=287 amount=-1 -kerning first=113 second=268 amount=-2 -kerning first=1220 second=219 amount=-2 -kerning first=379 second=81 amount=-1 -kerning first=973 second=231 amount=-1 -kerning first=1062 second=373 amount=-2 -kerning first=74 second=117 amount=-1 -kerning first=214 second=269 amount=-1 -kerning first=91 second=973 amount=-1 -kerning first=1174 second=232 amount=-1 -kerning first=354 second=1085 amount=-2 -kerning first=357 second=332 amount=-2 -kerning first=952 second=244 amount=-1 -kerning first=117 second=216 amount=-2 -kerning first=1223 second=374 amount=-5 -kerning first=260 second=106 amount=1 -kerning first=174 second=118 amount=-4 -kerning first=280 second=962 amount=-1 -kerning first=8225 second=221 amount=-5 -kerning first=49 second=1194 amount=-2 -kerning first=52 second=370 amount=-2 -kerning first=195 second=283 amount=-1 -kerning first=78 second=67 amount=-2 -kerning first=912 second=949 amount=-1 -kerning first=238 second=359 amount=-1 -kerning first=241 second=119 amount=-1 -kerning first=358 second=963 amount=-1 -kerning first=361 second=271 amount=-1 -kerning first=364 second=44 amount=-1 -kerning first=1299 second=84 amount=-5 -kerning first=258 second=1026 amount=-5 -kerning first=1026 second=1090 amount=-3 -kerning first=171 second=1046 amount=-1 -kerning first=289 second=218 amount=-2 -kerning first=8226 second=376 amount=-5 -kerning first=1070 second=258 amount=-2 -kerning first=314 second=360 amount=-2 -kerning first=96 second=1262 amount=-2 -kerning first=1179 second=335 amount=-1 -kerning first=365 second=219 amount=-2 -kerning first=954 second=1108 amount=-2 -kerning first=958 second=347 amount=-1 -kerning first=125 second=81 amount=-2 -kerning first=179 second=243 amount=-1 -kerning first=8224 second=8250 amount=-1 -kerning first=197 second=1263 amount=-1 -kerning first=8365 second=248 amount=-1 -kerning first=1103 second=350 amount=-1 -kerning first=926 second=1176 amount=-1 -kerning first=934 second=362 amount=-2 -kerning first=103 second=332 amount=-2 -kerning first=1184 second=966 amount=-2 -kerning first=947 second=47 amount=-3 -kerning first=1187 second=275 amount=-1 -kerning first=963 second=289 amount=-1 -kerning first=38 second=962 amount=-1 -kerning first=1044 second=221 amount=-2 -kerning first=299 second=83 amount=-1 -kerning first=8260 second=953 amount=-1 -kerning first=1073 second=1177 amount=-1 -kerning first=204 second=333 amount=-1 -kerning first=84 second=345 amount=-2 -kerning first=928 second=8211 amount=-2 -kerning first=107 second=271 amount=-2 -kerning first=967 second=234 amount=-1 -kerning first=273 second=334 amount=-2 -kerning first=185 second=346 amount=-1 -kerning first=65 second=360 amount=-2 -kerning first=1074 second=8212 amount=-2 -kerning first=205 second=964 amount=-3 -kerning first=906 second=85 amount=-2 -kerning first=1118 second=235 amount=-1 -kerning first=354 second=97 amount=-2 -kerning first=251 second=347 amount=-1 -kerning first=374 second=259 amount=-4 -kerning first=164 second=361 amount=-1 -kerning first=167 second=121 amount=-1 -kerning first=274 second=965 amount=-1 -kerning first=8217 second=224 amount=-1 -kerning first=46 second=373 amount=-2 -kerning first=1041 second=8250 amount=-1 -kerning first=186 second=1028 amount=-2 -kerning first=189 second=288 amount=-2 -kerning first=1087 second=248 amount=-1 -kerning first=330 second=350 amount=-1 -kerning first=908 second=260 amount=-2 -kerning first=92 second=232 amount=-1 -kerning first=235 second=122 amount=-1 -kerning first=1224 second=87 amount=-5 -kerning first=255 second=289 amount=-1 -kerning first=1026 second=99 amount=-1 -kerning first=47 second=1071 amount=-1 -kerning first=53 second=83 amount=-1 -kerning first=1064 second=261 amount=-1 -kerning first=193 second=233 amount=-1 -kerning first=305 second=363 amount=-1 -kerning first=302 second=1177 amount=-1 -kerning first=73 second=245 amount=-1 -kerning first=915 second=210 amount=-2 -kerning first=1171 second=338 amount=-2 -kerning first=1176 second=100 amount=-1 -kerning first=951 second=352 amount=-1 -kerning first=973 second=968 amount=-1 -kerning first=1027 second=277 amount=-1 -kerning first=172 second=246 amount=-1 -kerning first=282 second=376 amount=-5 -kerning first=8230 second=89 amount=-4 -kerning first=306 second=1059 amount=-2 -kerning first=303 second=8212 amount=-2 -kerning first=338 second=235 amount=-1 -kerning first=916 second=365 amount=-1 -kerning first=100 second=97 amount=-1 -kerning first=120 second=259 amount=-1 -kerning first=123 second=34 amount=-3 -kerning first=1298 second=212 amount=-2 -kerning first=1035 second=224 amount=-1 -kerning first=280 second=8250 amount=-1 -kerning first=8240 second=266 amount=-2 -kerning first=8260 second=39 amount=-3 -kerning first=1066 second=1184 amount=-5 -kerning first=198 second=336 amount=-2 -kerning first=316 second=248 amount=-1 -kerning first=78 second=350 amount=-1 -kerning first=1106 second=63 amount=-2 -kerning first=221 second=260 amount=-5 -kerning first=912 second=8217 amount=-3 -kerning first=1185 second=225 amount=-1 -kerning first=367 second=87 amount=-5 -kerning first=1299 second=367 amount=-1 -kerning first=182 second=111 amount=-1 -kerning first=178 second=351 amount=-1 -kerning first=289 second=953 amount=-1 -kerning first=294 second=261 amount=-1 -kerning first=59 second=363 amount=-1 -kerning first=56 second=1177 amount=-1 -kerning first=8364 second=356 amount=-5 -kerning first=8369 second=116 amount=-1 -kerning first=931 second=941 amount=-1 -kerning first=962 second=1241 amount=-1 -kerning first=965 second=187 amount=-1 -kerning first=125 second=364 amount=-2 -kerning first=1263 second=8220 amount=-3 -kerning first=40 second=376 amount=-5 -kerning first=1037 second=1079 amount=-1 -kerning first=179 second=1035 amount=-5 -kerning first=183 second=291 amount=-1 -kerning first=1047 second=89 amount=-2 -kerning first=298 second=211 amount=-2 -kerning first=57 second=8212 amount=-2 -kerning first=60 second=1059 amount=-2 -kerning first=323 second=353 amount=-1 -kerning first=901 second=263 amount=-1 -kerning first=86 second=235 amount=-3 -kerning first=372 second=212 amount=-2 -kerning first=123 second=8216 amount=-3 -kerning first=38 second=8250 amount=-1 -kerning first=1048 second=266 amount=-2 -kerning first=296 second=1184 amount=-5 -kerning first=299 second=366 amount=-2 -kerning first=331 second=63 amount=-2 -kerning first=8372 second=920 amount=-2 -kerning first=905 second=213 amount=-2 -kerning first=1168 second=103 amount=-1 -kerning first=224 second=8217 amount=-1 -kerning first=944 second=355 amount=-1 -kerning first=948 second=115 amount=-1 -kerning first=113 second=87 amount=-5 -kerning first=1207 second=267 amount=-1 -kerning first=166 second=249 amount=-1 -kerning first=163 second=940 amount=-1 -kerning first=48 second=261 amount=-1 -kerning first=1062 second=214 amount=-1 -kerning first=1085 second=356 amount=-5 -kerning first=906 second=368 amount=-2 -kerning first=91 second=338 amount=-2 -kerning first=94 second=100 amount=-1 -kerning first=1118 second=972 amount=-1 -kerning first=1169 second=281 amount=-1 -kerning first=354 second=380 amount=-1 -kerning first=254 second=1241 amount=-1 -kerning first=371 second=8220 amount=-3 -kerning first=170 second=199 amount=-2 -kerning first=8221 second=269 amount=-1 -kerning first=52 second=211 amount=-2 -kerning first=1063 second=369 amount=-1 -kerning first=189 second=1098 amount=-3 -kerning first=192 second=339 amount=-1 -kerning first=195 second=101 amount=-1 -kerning first=72 second=353 amount=-1 -kerning first=75 second=113 amount=-2 -kerning first=212 second=955 amount=-2 -kerning first=215 second=263 amount=-1 -kerning first=904 second=8221 amount=-3 -kerning first=908 second=1066 amount=-2 -kerning first=1219 second=1194 amount=-2 -kerning first=1224 second=370 amount=-2 -kerning first=261 second=102 amount=-1 -kerning first=168 second=1118 amount=-1 -kerning first=171 second=354 amount=-1 -kerning first=289 second=39 amount=-3 -kerning first=8226 second=217 amount=-2 -kerning first=50 second=1184 amount=-5 -kerning first=53 second=366 amount=-2 -kerning first=1059 second=8222 amount=-1 -kerning first=196 second=279 amount=-1 -kerning first=193 second=970 amount=-1 -kerning first=8361 second=119 amount=-4 -kerning first=1096 second=920 amount=-2 -kerning first=923 second=253 amount=-1 -kerning first=1171 second=1257 amount=-1 -kerning first=239 second=355 amount=-1 -kerning first=172 second=1038 amount=-2 -kerning first=8224 second=947 amount=-4 -kerning first=8230 second=372 amount=-3 -kerning first=51 second=8218 amount=-1 -kerning first=200 second=226 amount=-1 -kerning first=318 second=116 amount=-1 -kerning first=315 second=356 amount=-6 -kerning first=338 second=972 amount=-1 -kerning first=341 second=281 amount=-1 -kerning first=117 second=8220 amount=-3 -kerning first=35 second=1079 amount=-1 -kerning first=41 second=89 amount=-5 -kerning first=291 second=369 amount=-1 -kerning first=61 second=251 amount=-1 -kerning first=8366 second=244 amount=-1 -kerning first=345 second=228 amount=-1 -kerning first=941 second=118 amount=-1 -kerning first=1185 second=962 amount=-2 -kerning first=247 second=240 amount=-1 -kerning first=367 second=370 amount=-2 -kerning first=964 second=283 amount=-1 -kerning first=124 second=943 amount=-1 -kerning first=160 second=252 amount=-1 -kerning first=42 second=266 amount=-2 -kerning first=300 second=79 amount=-2 -kerning first=1081 second=119 amount=-4 -kerning first=322 second=920 amount=-2 -kerning first=900 second=371 amount=-1 -kerning first=343 second=1257 amount=-1 -kerning first=108 second=267 amount=-1 -kerning first=968 second=230 amount=-1 -kerning first=46 second=214 amount=-1 -kerning first=1041 second=947 amount=-4 -kerning first=1047 second=372 amount=-1 -kerning first=183 second=1101 amount=-1 -kerning first=298 second=945 amount=-1 -kerning first=66 second=356 amount=-1 -kerning first=69 second=116 amount=-1 -kerning first=209 second=268 amount=-2 -kerning first=8370 second=1108 amount=-1 -kerning first=8377 second=347 amount=-1 -kerning first=901 second=1069 amount=-1 -kerning first=86 second=972 amount=-1 -kerning first=89 second=281 amount=-4 -kerning first=1119 second=231 amount=-1 -kerning first=946 second=243 amount=-1 -kerning first=1206 second=373 amount=-2 -kerning first=165 second=357 amount=-1 -kerning first=168 second=117 amount=-1 -kerning first=278 second=269 amount=-1 -kerning first=8218 second=220 amount=-1 -kerning first=47 second=369 amount=-1 -kerning first=1090 second=244 amount=-1 -kerning first=910 second=256 amount=-5 -kerning first=93 second=228 amount=-1 -kerning first=236 second=118 amount=-4 -kerning first=113 second=370 amount=-2 -kerning first=256 second=283 amount=-1 -kerning first=973 second=333 amount=-1 -kerning first=172 second=67 amount=-2 -kerning first=282 second=217 amount=-2 -kerning first=45 second=8222 amount=-1 -kerning first=54 second=79 amount=-2 -kerning first=1062 second=949 amount=-1 -kerning first=194 second=229 amount=-1 -kerning first=306 second=359 amount=-1 -kerning first=214 second=371 amount=-1 -kerning first=332 second=1026 amount=-2 -kerning first=91 second=1257 amount=-1 -kerning first=1174 second=334 amount=-1 -kerning first=952 second=346 amount=-1 -kerning first=260 second=230 amount=-1 -kerning first=1035 second=45 amount=-2 -kerning first=174 second=242 amount=-1 -kerning first=280 second=947 amount=-4 -kerning first=8240 second=85 amount=-2 -kerning first=52 second=945 amount=-1 -kerning first=195 second=1240 amount=-2 -kerning first=192 second=1262 amount=-2 -kerning first=1095 second=1108 amount=-1 -kerning first=215 second=1069 amount=-1 -kerning first=221 second=81 amount=-3 -kerning first=928 second=121 amount=-1 -kerning first=361 second=373 amount=-4 -kerning first=956 second=288 amount=-2 -kerning first=258 second=1263 amount=-1 -kerning first=36 second=269 amount=-1 -kerning first=8249 second=260 amount=-1 -kerning first=1067 second=1176 amount=-1 -kerning first=317 second=244 amount=-1 -kerning first=82 second=106 amount=2 -kerning first=222 second=256 amount=-2 -kerning first=1186 second=221 amount=-2 -kerning first=359 second=8230 amount=-1 -kerning first=962 second=233 amount=-1 -kerning first=1263 second=1177 amount=-1 -kerning first=40 second=217 amount=-2 -kerning first=1037 second=375 amount=-1 -kerning first=63 second=119 amount=-4 -kerning first=60 second=359 amount=-1 -kerning first=200 second=963 amount=-1 -kerning first=203 second=271 amount=-1 -kerning first=8365 second=352 amount=-1 -kerning first=901 second=84 amount=-5 -kerning first=80 second=1026 amount=-5 -kerning first=126 second=360 amount=-2 -kerning first=1298 second=8212 amount=-2 -kerning first=271 second=273 amount=-1 -kerning first=38 second=947 amount=-4 -kerning first=41 second=372 amount=-5 -kerning first=1035 second=8249 amount=-3 -kerning first=1048 second=85 amount=-2 -kerning first=184 second=287 amount=-1 -kerning first=207 second=219 amount=-2 -kerning first=321 second=1108 amount=-1 -kerning first=905 second=34 amount=-3 -kerning first=902 second=259 amount=-1 -kerning first=87 second=231 amount=-3 -kerning first=247 second=1028 amount=-2 -kerning first=250 second=288 amount=-2 -kerning first=967 second=336 amount=-2 -kerning first=276 second=220 amount=-2 -kerning first=1046 second=952 amount=-2 -kerning first=188 second=232 amount=-1 -kerning first=300 second=362 amount=-2 -kerning first=297 second=1176 amount=-1 -kerning first=208 second=374 amount=-3 -kerning first=85 second=1298 amount=-1 -kerning first=1118 second=337 amount=-1 -kerning first=1169 second=99 amount=-1 -kerning first=1210 second=261 amount=-1 -kerning first=254 second=233 amount=-1 -kerning first=371 second=1177 amount=-1 -kerning first=374 second=363 amount=-2 -kerning first=167 second=245 amount=-1 -kerning first=8211 second=1078 amount=-2 -kerning first=49 second=257 amount=-1 -kerning first=1063 second=210 amount=-2 -kerning first=298 second=8211 amount=-2 -kerning first=1087 second=352 amount=-1 -kerning first=215 second=84 amount=-5 -kerning first=89 second=1090 amount=-2 -kerning first=92 second=334 amount=-2 -kerning first=1119 second=968 amount=-1 -kerning first=1170 second=277 amount=-1 -kerning first=946 second=1035 amount=-5 -kerning first=950 second=291 amount=-1 -kerning first=1224 second=211 amount=-2 -kerning first=375 second=1059 amount=-2 -kerning first=372 second=8212 amount=-2 -kerning first=1064 second=365 amount=-1 -kerning first=193 second=335 amount=-1 -kerning first=196 second=97 amount=-1 -kerning first=70 second=1108 amount=-1 -kerning first=73 second=347 amount=-1 -kerning first=905 second=8216 amount=-3 -kerning first=923 second=74 amount=-1 -kerning first=93 second=965 amount=-1 -kerning first=1176 second=224 amount=-1 -kerning first=356 second=1075 amount=-2 -kerning first=1220 second=1184 amount=-5 -kerning first=382 second=248 amount=-1 -kerning first=172 second=350 amount=-1 -kerning first=8230 second=213 amount=-1 -kerning first=51 second=1176 amount=-1 -kerning first=54 second=362 amount=-2 -kerning first=1065 second=1063 amount=-2 -kerning first=1062 second=8217 amount=-2 -kerning first=194 second=966 amount=-1 -kerning first=197 second=275 amount=-1 -kerning first=77 second=289 amount=-1 -kerning first=338 second=337 amount=-1 -kerning first=341 second=99 amount=-1 -kerning first=926 second=249 amount=-1 -kerning first=916 second=940 amount=-1 -kerning first=100 second=221 amount=-5 -kerning first=240 second=351 amount=-1 -kerning first=363 second=261 amount=-1 -kerning first=117 second=1177 amount=-1 -kerning first=35 second=375 amount=-1 -kerning first=177 second=290 amount=-2 -kerning first=291 second=210 amount=-2 -kerning first=8240 second=368 amount=-2 -kerning first=52 second=8211 amount=-2 -kerning first=1073 second=250 amount=-1 -kerning first=316 second=352 amount=-1 -kerning first=936 second=199 amount=-2 -kerning first=1194 second=89 amount=-2 -kerning first=367 second=211 amount=-2 -kerning first=956 second=1098 amount=-3 -kerning first=964 second=101 amount=-1 -kerning first=121 second=1059 amount=-2 -kerning first=118 second=8212 amount=-1 -kerning first=42 second=85 amount=-2 -kerning first=1039 second=263 amount=-1 -kerning first=1046 second=38 amount=-2 -kerning first=182 second=235 amount=-1 -kerning first=294 second=365 amount=-1 -kerning first=8226 second=8221 amount=-3 -kerning first=8249 second=1066 amount=-1 -kerning first=8369 second=240 amount=-1 -kerning first=900 second=212 amount=-2 -kerning first=931 second=1118 amount=-1 -kerning first=365 second=1184 amount=-5 -kerning first=965 second=279 amount=-1 -kerning first=962 second=970 amount=-1 -kerning first=161 second=248 amount=-1 -kerning first=274 second=171 amount=-3 -kerning first=66 second=197 amount=-1 -kerning first=1083 second=115 amount=-1 -kerning first=209 second=87 amount=-5 -kerning first=901 second=367 amount=-1 -kerning first=86 second=337 amount=-1 -kerning first=89 second=99 amount=-4 -kerning first=1206 second=214 amount=-1 -kerning first=366 second=8218 amount=-1 -kerning first=47 second=210 amount=-1 -kerning first=1048 second=368 amount=-2 -kerning first=190 second=100 amount=-1 -kerning first=302 second=250 amount=-1 -kerning first=299 second=941 amount=-1 -kerning first=70 second=112 amount=-1 -kerning first=327 second=1241 amount=-1 -kerning first=87 second=968 amount=-2 -kerning first=90 second=277 amount=-1 -kerning first=1168 second=227 amount=-1 -kerning first=113 second=211 amount=-2 -kerning first=250 second=1098 amount=-3 -kerning first=253 second=339 amount=-1 +kerning first=256 second=71 amount=-2 +kerning first=256 second=74 amount=-1 +kerning first=256 second=79 amount=-2 +kerning first=256 second=81 amount=-2 +kerning first=256 second=83 amount=-1 +kerning first=256 second=84 amount=-5 +kerning first=256 second=85 amount=-2 +kerning first=256 second=86 amount=-6 +kerning first=256 second=87 amount=-5 +kerning first=256 second=89 amount=-5 +kerning first=256 second=97 amount=-1 +kerning first=256 second=99 amount=-1 +kerning first=256 second=100 amount=-1 kerning first=256 second=101 amount=-1 -kerning first=376 second=251 amount=-2 -kerning first=169 second=113 amount=-1 -kerning first=166 second=353 amount=-1 -kerning first=48 second=365 amount=-1 -kerning first=1049 second=1066 amount=-5 -kerning first=1094 second=240 amount=-1 -kerning first=214 second=212 amount=-2 -kerning first=335 second=102 amount=-1 -kerning first=906 second=943 amount=-1 -kerning first=94 second=224 amount=-1 -kerning first=1118 second=1256 amount=-2 -kerning first=357 second=266 amount=-2 -kerning first=254 second=970 amount=-1 -kerning first=8217 second=1195 amount=-1 -kerning first=46 second=8217 amount=-1 -kerning first=195 second=225 amount=-1 -kerning first=215 second=367 amount=-1 -kerning first=361 second=214 amount=-2 -kerning first=950 second=1101 amount=-1 -kerning first=112 second=8218 amount=-1 -kerning first=1224 second=945 amount=-1 -kerning first=8222 second=1069 amount=-1 -kerning first=56 second=250 amount=-1 -kerning first=53 second=941 amount=-1 -kerning first=8361 second=243 amount=-1 -kerning first=76 second=1241 amount=-1 -kerning first=923 second=357 amount=-1 -kerning first=931 second=117 amount=-1 -kerning first=96 second=1079 amount=-1 -kerning first=1179 second=269 amount=-1 -kerning first=262 second=381 amount=-1 -kerning first=37 second=263 amount=-1 -kerning first=1037 second=216 amount=-2 -kerning first=287 second=1066 amount=-5 -kerning first=282 second=8221 amount=-3 -kerning first=8250 second=256 amount=-3 -kerning first=318 second=240 amount=-1 -kerning first=1103 second=283 amount=-1 -kerning first=223 second=252 amount=-1 -kerning first=338 second=1256 amount=-2 -kerning first=103 second=266 amount=-2 -kerning first=360 second=8222 amount=-1 -kerning first=369 second=79 amount=-2 -kerning first=963 second=229 amount=-1 -kerning first=41 second=213 amount=-2 -kerning first=1035 second=1195 amount=-1 -kerning first=184 second=103 amount=-1 -kerning first=296 second=253 amount=-1 -kerning first=61 second=355 amount=-1 -kerning first=64 second=115 amount=-1 -kerning first=204 second=267 amount=-1 -kerning first=8366 second=346 amount=-1 -kerning first=936 second=923 amount=-3 -kerning first=1194 second=372 amount=-1 -kerning first=367 second=945 amount=-1 -kerning first=964 second=1240 amount=-2 -kerning first=160 second=356 amount=-5 -kerning first=163 second=116 amount=-1 -kerning first=273 second=268 amount=-2 -kerning first=42 second=368 amount=-2 -kerning first=1039 second=1069 amount=-1 -kerning first=1049 second=81 amount=-2 -kerning first=182 second=972 amount=-1 -kerning first=185 second=281 amount=-1 -kerning first=68 second=65 amount=-2 -kerning first=1081 second=243 amount=-1 -kerning first=8369 second=1028 amount=-2 -kerning first=88 second=227 amount=-1 -kerning first=108 second=369 amount=-1 -kerning first=968 second=332 amount=-2 -kerning first=8211 second=374 amount=-4 -kerning first=43 second=1066 amount=-5 -kerning first=40 second=8221 amount=-3 -kerning first=189 second=228 amount=-1 -kerning first=304 second=118 amount=-4 -kerning first=69 second=240 amount=-1 -kerning first=66 second=916 amount=-1 -kerning first=206 second=1194 amount=-2 -kerning first=209 second=370 amount=-2 -kerning first=330 second=283 amount=-1 -kerning first=86 second=1256 amount=-2 -kerning first=89 second=382 amount=-2 -kerning first=1119 second=333 amount=-1 -kerning first=1219 second=257 amount=-1 -kerning first=1206 second=949 amount=-1 -kerning first=255 second=229 amount=-1 -kerning first=375 second=359 amount=-1 -kerning first=165 second=920 amount=-2 -kerning first=278 second=371 amount=-1 -kerning first=8222 second=84 amount=-5 -kerning first=50 second=253 amount=-1 -kerning first=1171 second=273 amount=-1 -kerning first=1176 second=45 amount=-2 -kerning first=236 second=242 amount=-1 -kerning first=1168 second=964 amount=-3 -kerning first=353 second=947 amount=-1 -kerning first=951 second=287 amount=-1 -kerning first=113 second=945 amount=-1 -kerning first=253 second=1262 amount=-2 +kerning first=256 second=102 amount=-2 +kerning first=256 second=103 amount=-1 +kerning first=256 second=106 amount=1 +kerning first=256 second=111 amount=-1 +kerning first=256 second=113 amount=-1 +kerning first=256 second=115 amount=-1 +kerning first=256 second=116 amount=-1 +kerning first=256 second=117 amount=-1 +kerning first=256 second=118 amount=-4 +kerning first=256 second=119 amount=-4 +kerning first=256 second=121 amount=-1 +kerning first=256 second=171 amount=-3 +kerning first=256 second=173 amount=-2 +kerning first=256 second=187 amount=-1 +kerning first=256 second=199 amount=-2 +kerning first=256 second=210 amount=-2 +kerning first=256 second=211 amount=-2 +kerning first=256 second=212 amount=-2 +kerning first=256 second=213 amount=-2 +kerning first=256 second=214 amount=-2 +kerning first=256 second=216 amount=-2 +kerning first=256 second=217 amount=-2 +kerning first=256 second=218 amount=-2 +kerning first=256 second=219 amount=-2 +kerning first=256 second=220 amount=-2 +kerning first=256 second=221 amount=-5 +kerning first=256 second=224 amount=-1 +kerning first=256 second=225 amount=-1 +kerning first=256 second=226 amount=-1 +kerning first=256 second=227 amount=-1 +kerning first=256 second=228 amount=-1 +kerning first=256 second=229 amount=-1 +kerning first=256 second=230 amount=-1 +kerning first=256 second=231 amount=-1 +kerning first=256 second=232 amount=-1 +kerning first=256 second=233 amount=-1 +kerning first=256 second=234 amount=-1 +kerning first=256 second=235 amount=-1 +kerning first=256 second=240 amount=-1 +kerning first=256 second=242 amount=-1 +kerning first=256 second=243 amount=-1 +kerning first=256 second=244 amount=-1 +kerning first=256 second=245 amount=-1 +kerning first=256 second=246 amount=-1 +kerning first=256 second=248 amount=-1 +kerning first=256 second=249 amount=-1 +kerning first=256 second=250 amount=-1 +kerning first=256 second=251 amount=-1 +kerning first=256 second=252 amount=-1 +kerning first=256 second=253 amount=-1 +kerning first=256 second=257 amount=-1 +kerning first=256 second=259 amount=-1 +kerning first=256 second=261 amount=-1 +kerning first=256 second=262 amount=-2 +kerning first=256 second=263 amount=-1 +kerning first=256 second=266 amount=-2 +kerning first=256 second=267 amount=-1 +kerning first=256 second=268 amount=-2 +kerning first=256 second=269 amount=-1 +kerning first=256 second=271 amount=-1 +kerning first=256 second=273 amount=-1 +kerning first=256 second=275 amount=-1 +kerning first=256 second=277 amount=-1 +kerning first=256 second=279 amount=-1 +kerning first=256 second=281 amount=-1 +kerning first=256 second=283 amount=-1 +kerning first=256 second=286 amount=-2 +kerning first=256 second=287 amount=-1 +kerning first=256 second=288 amount=-2 +kerning first=256 second=289 amount=-1 +kerning first=256 second=290 amount=-2 +kerning first=256 second=291 amount=-1 +kerning first=256 second=332 amount=-2 +kerning first=256 second=333 amount=-1 +kerning first=256 second=334 amount=-2 +kerning first=256 second=335 amount=-1 +kerning first=256 second=336 amount=-2 +kerning first=256 second=337 amount=-1 +kerning first=256 second=338 amount=-2 +kerning first=256 second=339 amount=-1 +kerning first=256 second=346 amount=-1 +kerning first=256 second=347 amount=-1 +kerning first=256 second=350 amount=-1 +kerning first=256 second=351 amount=-1 +kerning first=256 second=352 amount=-1 +kerning first=256 second=353 amount=-1 +kerning first=256 second=354 amount=-5 +kerning first=256 second=355 amount=-1 +kerning first=256 second=356 amount=-5 +kerning first=256 second=357 amount=-1 +kerning first=256 second=359 amount=-1 +kerning first=256 second=360 amount=-2 +kerning first=256 second=361 amount=-1 +kerning first=256 second=362 amount=-2 +kerning first=256 second=363 amount=-1 +kerning first=256 second=364 amount=-2 +kerning first=256 second=365 amount=-1 +kerning first=256 second=366 amount=-2 +kerning first=256 second=367 amount=-1 +kerning first=256 second=368 amount=-2 +kerning first=256 second=369 amount=-1 +kerning first=256 second=370 amount=-2 +kerning first=256 second=371 amount=-1 +kerning first=256 second=372 amount=-5 +kerning first=256 second=373 amount=-4 +kerning first=256 second=374 amount=-5 +kerning first=256 second=375 amount=-1 +kerning first=256 second=376 amount=-5 +kerning first=256 second=920 amount=-2 +kerning first=256 second=927 amount=-2 +kerning first=256 second=932 amount=-5 +kerning first=256 second=933 amount=-5 +kerning first=256 second=936 amount=-3 +kerning first=256 second=939 amount=-5 +kerning first=256 second=940 amount=-1 +kerning first=256 second=941 amount=-1 +kerning first=256 second=943 amount=-1 +kerning first=256 second=945 amount=-1 +kerning first=256 second=947 amount=-4 +kerning first=256 second=949 amount=-1 +kerning first=256 second=950 amount=-1 +kerning first=256 second=953 amount=-1 +kerning first=256 second=957 amount=-4 +kerning first=256 second=959 amount=-1 +kerning first=256 second=962 amount=-1 +kerning first=256 second=963 amount=-1 +kerning first=256 second=964 amount=-3 +kerning first=256 second=965 amount=-1 +kerning first=256 second=966 amount=-1 +kerning first=256 second=968 amount=-1 +kerning first=256 second=970 amount=-1 +kerning first=256 second=972 amount=-1 +kerning first=256 second=973 amount=-1 +kerning first=256 second=1026 amount=-5 +kerning first=256 second=1028 amount=-2 +kerning first=256 second=1029 amount=-1 +kerning first=256 second=1032 amount=-1 +kerning first=256 second=1035 amount=-5 +kerning first=256 second=1038 amount=-2 +kerning first=256 second=1054 amount=-2 +kerning first=256 second=1057 amount=-2 +kerning first=256 second=1058 amount=-5 +kerning first=256 second=1059 amount=-2 +kerning first=256 second=1063 amount=-3 +kerning first=256 second=1066 amount=-5 +kerning first=256 second=1069 amount=-1 +kerning first=256 second=1072 amount=-1 +kerning first=256 second=1077 amount=-1 +kerning first=256 second=1079 amount=-1 +kerning first=256 second=1086 amount=-1 +kerning first=256 second=1089 amount=-1 +kerning first=256 second=1090 amount=-3 +kerning first=256 second=1091 amount=-1 +kerning first=256 second=1092 amount=-1 +kerning first=256 second=1098 amount=-3 +kerning first=256 second=1101 amount=-1 +kerning first=256 second=1104 amount=-1 +kerning first=256 second=1105 amount=-1 +kerning first=256 second=1108 amount=-1 +kerning first=256 second=1109 amount=-1 +kerning first=256 second=1112 amount=1 +kerning first=256 second=1118 amount=-1 +kerning first=256 second=1176 amount=-1 +kerning first=256 second=1177 amount=-1 +kerning first=256 second=1184 amount=-5 +kerning first=256 second=1185 amount=-3 +kerning first=256 second=1194 amount=-2 +kerning first=256 second=1195 amount=-1 +kerning first=256 second=1198 amount=-5 +kerning first=256 second=1199 amount=-4 kerning first=256 second=1240 amount=-2 -kerning first=1027 second=219 amount=-2 -kerning first=287 second=81 amount=-2 -kerning first=8224 second=259 amount=-1 -kerning first=8230 second=34 amount=-1 -kerning first=311 second=243 amount=-2 -kerning first=955 second=232 amount=-1 -kerning first=1223 second=1176 amount=-1 -kerning first=260 second=332 amount=-2 -kerning first=35 second=216 amount=-2 -kerning first=1028 second=374 amount=-2 -kerning first=974 second=1203 amount=-1 -kerning first=177 second=106 amount=1 -kerning first=58 second=118 amount=-4 -kerning first=1073 second=71 amount=-2 -kerning first=195 second=962 amount=-1 -kerning first=8363 second=111 amount=-1 -kerning first=78 second=283 amount=-1 -kerning first=928 second=245 amount=-1 -kerning first=361 second=949 amount=-1 -kerning first=121 second=359 amount=-1 -kerning first=1224 second=8211 amount=-2 -kerning first=124 second=119 amount=-4 -kerning first=1262 second=1051 amount=-1 -kerning first=36 second=371 amount=-1 -kerning first=175 second=1026 amount=-5 -kerning first=1039 second=84 amount=-5 -kerning first=178 second=286 amount=-2 -kerning first=1074 second=246 amount=-1 -kerning first=202 second=218 amount=-2 -kerning first=317 second=346 amount=-1 -kerning first=8361 second=1035 amount=-5 -kerning first=8364 second=291 amount=-1 -kerning first=343 second=273 amount=-1 -kerning first=99 second=947 amount=-1 -kerning first=1176 second=8249 amount=-3 -kerning first=962 second=335 amount=-1 -kerning first=965 second=97 amount=-1 -kerning first=37 second=1069 amount=-1 -kerning first=43 second=81 amount=-2 -kerning first=1041 second=259 amount=-1 -kerning first=183 second=231 amount=-1 -kerning first=298 second=121 amount=-1 -kerning first=8230 second=8216 amount=-1 -kerning first=63 second=243 amount=-1 -kerning first=203 second=373 amount=-4 -kerning first=318 second=1028 amount=-2 -kerning first=323 second=288 amount=-2 -kerning first=80 second=1263 amount=-1 -kerning first=249 second=232 amount=-1 -kerning first=369 second=362 amount=-2 -kerning first=372 second=122 amount=-1 -kerning first=963 second=966 amount=-1 -kerning first=162 second=244 amount=-1 -kerning first=271 second=374 amount=-5 -kerning first=8212 second=87 amount=-2 -kerning first=302 second=71 amount=-2 -kerning first=67 second=193 amount=-1 -kerning first=1080 second=351 amount=-1 -kerning first=1084 second=111 amount=-1 -kerning first=327 second=233 amount=-1 -kerning first=902 second=363 amount=-1 -kerning first=84 second=1087 amount=-2 -kerning first=87 second=333 amount=-3 -kerning first=944 second=290 amount=-2 -kerning first=107 second=949 amount=-2 -kerning first=367 second=8211 amount=-2 -kerning first=370 second=1051 amount=-1 -kerning first=1049 second=364 amount=-2 -kerning first=185 second=1090 amount=-3 -kerning first=188 second=334 amount=-2 -kerning first=303 second=246 amount=-1 -kerning first=1081 second=1035 amount=-5 -kerning first=1085 second=291 amount=-1 -kerning first=211 second=258 amount=-2 -kerning first=900 second=8212 amount=-2 -kerning first=903 second=1059 amount=-2 -kerning first=94 second=45 amount=-2 -kerning first=91 second=273 amount=-1 -kerning first=88 second=964 amount=-3 -kerning first=357 second=85 amount=-2 -kerning first=1210 second=365 amount=-1 -kerning first=254 second=335 amount=-1 -kerning first=164 second=1108 amount=-1 -kerning first=167 second=347 amount=-1 -kerning first=280 second=259 amount=-1 -kerning first=283 second=34 amount=-1 -kerning first=49 second=361 amount=-1 -kerning first=52 second=121 amount=-1 -kerning first=189 second=965 amount=-1 -kerning first=69 second=1028 amount=-2 -kerning first=72 second=288 amount=-2 -kerning first=912 second=248 amount=-1 -kerning first=95 second=220 amount=-2 -kerning first=232 second=1113 amount=-1 -kerning first=1206 second=8217 amount=-2 -kerning first=255 second=966 amount=-1 +kerning first=256 second=1241 amount=-1 +kerning first=256 second=1256 amount=-2 +kerning first=256 second=1257 amount=-1 +kerning first=256 second=1262 amount=-2 +kerning first=256 second=1263 amount=-1 +kerning first=256 second=8211 amount=-2 +kerning first=256 second=8212 amount=-2 +kerning first=256 second=8216 amount=-3 +kerning first=256 second=8217 amount=-3 +kerning first=256 second=8220 amount=-3 +kerning first=256 second=8221 amount=-3 +kerning first=256 second=8249 amount=-3 +kerning first=256 second=8250 amount=-1 +kerning first=257 second=34 amount=-1 +kerning first=257 second=39 amount=-1 +kerning first=257 second=63 amount=-2 +kerning first=257 second=102 amount=-1 +kerning first=257 second=106 amount=1 +kerning first=257 second=118 amount=-1 +kerning first=257 second=119 amount=-1 +kerning first=257 second=373 amount=-1 +kerning first=257 second=947 amount=-1 +kerning first=257 second=957 amount=-1 +kerning first=257 second=964 amount=-1 +kerning first=257 second=1090 amount=-1 +kerning first=257 second=1098 amount=-1 +kerning first=257 second=1112 amount=1 +kerning first=257 second=1185 amount=-1 +kerning first=257 second=1199 amount=-1 +kerning first=257 second=8216 amount=-1 +kerning first=257 second=8217 amount=-1 +kerning first=257 second=8220 amount=-1 +kerning first=257 second=8221 amount=-1 +kerning first=258 second=34 amount=-3 +kerning first=258 second=38 amount=-1 +kerning first=258 second=39 amount=-3 +kerning first=258 second=45 amount=-2 +kerning first=258 second=63 amount=-5 +kerning first=258 second=67 amount=-2 +kerning first=258 second=71 amount=-2 +kerning first=258 second=74 amount=-1 +kerning first=258 second=79 amount=-2 +kerning first=258 second=81 amount=-2 +kerning first=258 second=83 amount=-1 +kerning first=258 second=84 amount=-5 +kerning first=258 second=85 amount=-2 +kerning first=258 second=86 amount=-6 +kerning first=258 second=87 amount=-5 +kerning first=258 second=89 amount=-5 +kerning first=258 second=97 amount=-1 +kerning first=258 second=99 amount=-1 +kerning first=258 second=100 amount=-1 +kerning first=258 second=101 amount=-1 +kerning first=258 second=102 amount=-2 +kerning first=258 second=103 amount=-1 +kerning first=258 second=106 amount=1 +kerning first=258 second=111 amount=-1 +kerning first=258 second=113 amount=-1 +kerning first=258 second=115 amount=-1 +kerning first=258 second=116 amount=-1 +kerning first=258 second=117 amount=-1 +kerning first=258 second=118 amount=-4 +kerning first=258 second=119 amount=-4 +kerning first=258 second=121 amount=-1 +kerning first=258 second=171 amount=-3 +kerning first=258 second=173 amount=-2 +kerning first=258 second=187 amount=-1 +kerning first=258 second=199 amount=-2 +kerning first=258 second=210 amount=-2 +kerning first=258 second=211 amount=-2 +kerning first=258 second=212 amount=-2 +kerning first=258 second=213 amount=-2 +kerning first=258 second=214 amount=-2 +kerning first=258 second=216 amount=-2 +kerning first=258 second=217 amount=-2 +kerning first=258 second=218 amount=-2 +kerning first=258 second=219 amount=-2 +kerning first=258 second=220 amount=-2 +kerning first=258 second=221 amount=-5 +kerning first=258 second=224 amount=-1 +kerning first=258 second=225 amount=-1 +kerning first=258 second=226 amount=-1 +kerning first=258 second=227 amount=-1 +kerning first=258 second=228 amount=-1 +kerning first=258 second=229 amount=-1 +kerning first=258 second=230 amount=-1 +kerning first=258 second=231 amount=-1 +kerning first=258 second=232 amount=-1 +kerning first=258 second=233 amount=-1 +kerning first=258 second=234 amount=-1 +kerning first=258 second=235 amount=-1 +kerning first=258 second=240 amount=-1 +kerning first=258 second=242 amount=-1 +kerning first=258 second=243 amount=-1 +kerning first=258 second=244 amount=-1 +kerning first=258 second=245 amount=-1 +kerning first=258 second=246 amount=-1 +kerning first=258 second=248 amount=-1 +kerning first=258 second=249 amount=-1 +kerning first=258 second=250 amount=-1 +kerning first=258 second=251 amount=-1 +kerning first=258 second=252 amount=-1 +kerning first=258 second=253 amount=-1 +kerning first=258 second=257 amount=-1 +kerning first=258 second=259 amount=-1 +kerning first=258 second=261 amount=-1 +kerning first=258 second=262 amount=-2 +kerning first=258 second=263 amount=-1 +kerning first=258 second=266 amount=-2 +kerning first=258 second=267 amount=-1 +kerning first=258 second=268 amount=-2 +kerning first=258 second=269 amount=-1 +kerning first=258 second=271 amount=-1 +kerning first=258 second=273 amount=-1 kerning first=258 second=275 amount=-1 -kerning first=972 second=1076 amount=-1 -kerning first=8218 second=1185 amount=-3 -kerning first=8222 second=367 amount=-1 -kerning first=56 second=71 amount=-2 -kerning first=1067 second=249 amount=-1 -kerning first=1064 second=940 amount=-1 -kerning first=196 second=221 amount=-5 -kerning first=314 second=111 amount=-1 -kerning first=76 second=233 amount=-1 -kerning first=334 second=967 amount=-1 -kerning first=96 second=375 amount=-1 -kerning first=239 second=290 amount=-2 -kerning first=958 second=100 amount=-1 -kerning first=113 second=8211 amount=-2 -kerning first=1263 second=250 amount=-1 -kerning first=37 second=84 amount=-5 -kerning first=176 second=234 amount=-1 -kerning first=287 second=364 amount=-2 -kerning first=57 second=246 amount=-1 -kerning first=1071 second=199 amount=-2 -kerning first=197 second=376 amount=-5 -kerning first=315 second=291 amount=-1 -kerning first=1097 second=1098 amount=-2 -kerning first=1103 second=101 amount=-1 -kerning first=214 second=8212 amount=-2 -kerning first=934 second=113 amount=-1 -kerning first=926 second=353 amount=-1 -kerning first=103 second=85 amount=-2 -kerning first=94 second=8249 amount=-3 -kerning first=1184 second=263 amount=-2 -kerning first=363 second=365 amount=-1 -kerning first=38 second=259 amount=-1 -kerning first=41 second=34 amount=-3 -kerning first=283 second=8216 amount=-1 -kerning first=8260 second=252 amount=-1 -kerning first=8240 second=943 amount=-1 -kerning first=1073 second=354 amount=-5 -kerning first=195 second=8250 amount=-1 -kerning first=221 second=937 amount=-2 -kerning first=941 second=63 amount=-1 -kerning first=361 second=8217 amount=-3 -kerning first=964 second=225 amount=-1 -kerning first=273 second=87 amount=-5 -kerning first=1036 second=1185 amount=-4 -kerning first=1039 second=367 amount=-1 -kerning first=182 second=337 amount=-1 -kerning first=185 second=99 amount=-1 -kerning first=294 second=940 amount=-1 -kerning first=297 second=249 amount=-1 -kerning first=65 second=111 amount=-1 -kerning first=1074 second=1038 amount=-2 -kerning first=62 second=351 amount=-1 -kerning first=202 second=953 amount=-1 -kerning first=205 second=261 amount=-1 -kerning first=8364 second=1101 amount=-1 -kerning first=108 second=210 amount=-2 -kerning first=251 second=100 amount=-1 -kerning first=371 second=250 amount=-1 -kerning first=161 second=352 amount=-1 -kerning first=274 second=262 amount=-2 -kerning first=43 second=364 amount=-2 -kerning first=1037 second=8220 amount=-3 -kerning first=183 second=968 amount=-1 -kerning first=186 second=277 amount=-1 -kerning first=301 second=199 amount=-2 -kerning first=63 second=1035 amount=-5 -kerning first=209 second=211 amount=-2 -kerning first=323 second=1098 amount=-3 -kerning first=8370 second=973 amount=-1 -kerning first=330 second=101 amount=-1 -kerning first=904 second=251 amount=-1 -kerning first=278 second=212 amount=-2 -kerning first=41 second=8216 amount=-3 -kerning first=1048 second=943 amount=-1 -kerning first=190 second=224 amount=-1 -kerning first=299 second=1118 amount=-1 -kerning first=302 second=354 amount=-5 -kerning first=207 second=1184 amount=-5 -kerning first=327 second=970 amount=-1 -kerning first=93 second=171 amount=-3 -kerning first=356 second=213 amount=-1 -kerning first=951 second=103 amount=-1 -kerning first=1220 second=253 amount=-1 -kerning first=256 second=225 amount=-1 -kerning first=973 second=267 amount=-1 -kerning first=276 second=1185 amount=-3 -kerning first=51 second=249 amount=-1 -kerning first=48 second=940 amount=-1 -kerning first=303 second=1038 amount=-2 -kerning first=1085 second=1101 amount=-1 -kerning first=208 second=8218 amount=-1 -kerning first=916 second=116 amount=-1 -kerning first=1174 second=268 amount=-1 -kerning first=357 second=368 amount=-2 -kerning first=952 second=281 amount=-1 -kerning first=117 second=250 amount=-1 -kerning first=114 second=941 amount=-1 -kerning first=170 second=1241 amount=-1 -kerning first=174 second=187 amount=-1 -kerning first=277 second=8220 amount=-1 -kerning first=55 second=199 amount=-2 -kerning first=192 second=1079 amount=-1 -kerning first=198 second=89 amount=-5 -kerning first=72 second=1098 amount=-3 -kerning first=1095 second=973 amount=-1 -kerning first=78 second=101 amount=-1 -kerning first=75 second=339 amount=-2 -kerning first=336 second=381 amount=-1 -kerning first=1178 second=216 amount=-1 -kerning first=358 second=1066 amount=-5 -kerning first=956 second=228 amount=-1 -kerning first=1299 second=118 amount=-4 -kerning first=266 second=90 amount=-1 -kerning first=36 second=212 amount=-2 -kerning first=1026 second=1194 amount=-2 -kerning first=289 second=252 amount=-1 -kerning first=56 second=354 amount=-5 -kerning first=53 second=1118 amount=-1 -kerning first=1074 second=67 amount=-2 -kerning first=202 second=39 amount=-3 -kerning first=923 second=920 amount=-2 -kerning first=1176 second=1195 amount=-1 -kerning first=365 second=253 amount=-1 -kerning first=954 second=1257 amount=-2 -kerning first=125 second=115 amount=-1 -kerning first=37 second=367 amount=-1 -kerning first=57 second=1038 amount=-2 -kerning first=1075 second=242 amount=-1 -kerning first=203 second=214 amount=-2 -kerning first=8365 second=287 amount=-1 -kerning first=1103 second=1240 amount=-2 -kerning first=223 second=356 amount=-5 -kerning first=103 second=368 amount=-2 -kerning first=1184 second=1069 amount=-2 -kerning first=35 second=8220 amount=-3 -kerning first=184 second=227 amount=-1 -kerning first=299 second=117 amount=-1 -kerning first=296 second=357 amount=-1 -kerning first=204 second=369 amount=-1 -kerning first=321 second=973 amount=-1 -kerning first=8372 second=232 amount=-1 -kerning first=944 second=106 amount=1 -kerning first=101 second=8221 amount=-1 -kerning first=250 second=228 amount=-1 -kerning first=964 second=962 amount=-1 -kerning first=163 second=240 amount=-1 -kerning first=273 second=370 amount=-2 -kerning first=42 second=943 amount=-1 -kerning first=182 second=1256 amount=-2 -kerning first=303 second=67 amount=-2 -kerning first=903 second=359 amount=-1 -kerning first=906 second=119 amount=-4 -kerning first=1118 second=271 amount=-1 -kerning first=1169 second=44 amount=-3 -kerning first=942 second=1026 amount=-5 -kerning first=971 second=218 amount=-2 -kerning first=8217 second=258 amount=-3 -kerning first=1051 second=360 amount=-2 -kerning first=1047 second=1174 amount=-2 -kerning first=304 second=242 amount=-1 -kerning first=1087 second=287 amount=-1 -kerning first=209 second=945 amount=-1 -kerning first=330 second=1240 amount=-2 -kerning first=92 second=268 amount=-2 -kerning first=1170 second=219 amount=-2 -kerning first=358 second=81 amount=-2 -kerning first=950 second=231 amount=-1 -kerning first=1219 second=361 amount=-1 -kerning first=1224 second=121 amount=-1 -kerning first=378 second=243 amount=-1 -kerning first=972 second=373 amount=-1 -kerning first=47 second=1169 amount=-1 -kerning first=53 second=117 amount=-1 -kerning first=50 second=357 amount=-1 -kerning first=193 second=269 amount=-1 -kerning first=70 second=973 amount=-1 -kerning first=1096 second=232 amount=-1 -kerning first=915 second=244 amount=-1 -kerning first=96 second=216 amount=-2 -kerning first=1171 second=374 amount=-5 -kerning first=239 second=106 amount=1 -kerning first=1263 second=71 amount=-2 -kerning first=256 second=962 amount=-1 -kerning first=172 second=283 amount=-1 -kerning first=8224 second=363 amount=-1 -kerning first=57 second=67 amount=-2 -kerning first=197 second=217 amount=-2 -kerning first=77 second=229 amount=-1 -kerning first=338 second=271 amount=-1 -kerning first=341 second=44 amount=-3 -kerning first=94 second=1195 amount=-1 -kerning first=237 second=1026 amount=-5 -kerning first=240 second=286 amount=-2 -kerning first=955 second=334 amount=-2 -kerning first=952 second=1090 amount=-3 -kerning first=1298 second=246 amount=-1 -kerning first=177 second=230 amount=-1 -kerning first=8225 second=1059 amount=-2 -kerning first=55 second=923 amount=-5 -kerning first=58 second=242 amount=-1 -kerning first=195 second=947 amount=-4 -kerning first=198 second=372 amount=-5 -kerning first=316 second=287 amount=-1 -kerning first=8363 second=235 amount=-1 -kerning first=78 second=1240 amount=-2 -kerning first=928 second=347 amount=-1 -kerning first=1185 second=259 amount=-1 -kerning first=367 second=121 amount=-1 -kerning first=956 second=965 amount=-1 -kerning first=124 second=243 amount=-1 -kerning first=175 second=1263 amount=-1 -kerning first=1074 second=350 amount=-1 -kerning first=322 second=232 amount=-1 -kerning first=1107 second=275 amount=-1 -kerning first=371 second=71 amount=-2 -kerning first=965 second=221 amount=-5 -kerning first=262 second=8230 amount=-1 -kerning first=274 second=83 amount=-1 -kerning first=1041 second=363 amount=-1 -kerning first=1037 second=1177 amount=-1 -kerning first=183 second=333 amount=-1 -kerning first=298 second=245 amount=-1 -kerning first=203 second=949 amount=-1 -kerning first=206 second=257 amount=-1 -kerning first=8370 second=338 amount=-2 -kerning first=8377 second=100 amount=-1 -kerning first=86 second=271 amount=-1 -kerning first=89 second=44 amount=-4 -kerning first=352 second=84 amount=-1 -kerning first=249 second=334 amount=-2 -kerning first=246 second=1090 amount=-1 -kerning first=372 second=246 amount=-3 -kerning first=162 second=346 amount=-1 -kerning first=47 second=120 amount=-1 -kerning first=1044 second=1059 amount=-1 -kerning first=44 second=360 amount=-1 -kerning first=184 second=964 amount=-3 -kerning first=190 second=45 amount=-2 -kerning first=1084 second=235 amount=-1 -kerning first=327 second=335 amount=-1 -kerning first=902 second=936 amount=-3 -kerning first=113 second=121 amount=2 -kerning first=250 second=965 amount=-1 -kerning first=376 second=196 amount=-5 -kerning first=964 second=8250 amount=-1 -kerning first=163 second=1028 amount=-2 -kerning first=166 second=288 amount=-2 -kerning first=1062 second=248 amount=-1 -kerning first=191 second=220 amount=-2 -kerning first=303 second=350 amount=-1 -kerning first=335 second=47 amount=-1 -kerning first=91 second=374 amount=-5 -kerning first=952 second=99 amount=-1 -kerning first=117 second=71 amount=-2 -kerning first=1223 second=249 amount=-1 -kerning first=1210 second=940 amount=-1 -kerning first=374 second=1114 amount=-3 -kerning first=380 second=111 amount=-1 -kerning first=971 second=953 amount=-1 -kerning first=170 second=233 amount=-1 -kerning first=280 second=363 amount=-1 -kerning first=8211 second=8218 amount=-1 -kerning first=52 second=245 amount=-1 -kerning first=1066 second=198 amount=-1 -kerning first=192 second=375 amount=-1 -kerning first=1095 second=338 amount=-2 -kerning first=209 second=8211 amount=-2 -kerning first=212 second=1051 amount=-1 -kerning first=912 second=352 amount=-1 -kerning first=238 second=234 amount=-1 -kerning first=358 second=364 amount=-2 -kerning first=950 second=968 amount=-1 -kerning first=118 second=246 amount=-1 +kerning first=258 second=277 amount=-1 +kerning first=258 second=279 amount=-1 +kerning first=258 second=281 amount=-1 +kerning first=258 second=283 amount=-1 +kerning first=258 second=286 amount=-2 +kerning first=258 second=287 amount=-1 +kerning first=258 second=288 amount=-2 +kerning first=258 second=289 amount=-1 +kerning first=258 second=290 amount=-2 +kerning first=258 second=291 amount=-1 +kerning first=258 second=332 amount=-2 +kerning first=258 second=333 amount=-1 +kerning first=258 second=334 amount=-2 +kerning first=258 second=335 amount=-1 +kerning first=258 second=336 amount=-2 +kerning first=258 second=337 amount=-1 +kerning first=258 second=338 amount=-2 +kerning first=258 second=339 amount=-1 +kerning first=258 second=346 amount=-1 +kerning first=258 second=347 amount=-1 +kerning first=258 second=350 amount=-1 +kerning first=258 second=351 amount=-1 +kerning first=258 second=352 amount=-1 +kerning first=258 second=353 amount=-1 +kerning first=258 second=354 amount=-5 +kerning first=258 second=355 amount=-1 +kerning first=258 second=356 amount=-5 +kerning first=258 second=357 amount=-1 +kerning first=258 second=359 amount=-1 +kerning first=258 second=360 amount=-2 +kerning first=258 second=361 amount=-1 +kerning first=258 second=362 amount=-2 +kerning first=258 second=363 amount=-1 +kerning first=258 second=364 amount=-2 +kerning first=258 second=365 amount=-1 +kerning first=258 second=366 amount=-2 +kerning first=258 second=367 amount=-1 +kerning first=258 second=368 amount=-2 +kerning first=258 second=369 amount=-1 +kerning first=258 second=370 amount=-2 +kerning first=258 second=371 amount=-1 +kerning first=258 second=372 amount=-5 +kerning first=258 second=373 amount=-4 +kerning first=258 second=374 amount=-5 +kerning first=258 second=375 amount=-1 kerning first=258 second=376 amount=-5 -kerning first=278 second=8212 amount=-2 -kerning first=8226 second=251 amount=-1 -kerning first=1067 second=353 amount=-1 -kerning first=190 second=8249 amount=-3 -kerning first=314 second=235 amount=-1 -kerning first=76 second=335 amount=-1 -kerning first=958 second=224 amount=-1 -kerning first=1263 second=354 amount=-5 -kerning first=256 second=8250 amount=-1 -kerning first=1027 second=1184 amount=-5 -kerning first=176 second=336 amount=-2 -kerning first=57 second=350 amount=-1 -kerning first=8365 second=103 amount=-1 -kerning first=77 second=966 amount=-1 -kerning first=80 second=275 amount=-1 -kerning first=1103 second=225 amount=-1 -kerning first=344 second=87 amount=-1 -kerning first=1177 second=1185 amount=-1 -kerning first=1184 second=367 amount=-1 -kerning first=363 second=940 amount=-1 -kerning first=126 second=111 amount=-1 -kerning first=1298 second=1038 amount=-2 -kerning first=123 second=351 amount=-1 -kerning first=35 second=1177 amount=-1 -kerning first=38 second=363 amount=-1 -kerning first=1028 second=8218 amount=-1 -kerning first=8260 second=356 amount=-5 -kerning first=61 second=290 amount=-2 -kerning first=204 second=210 amount=-2 -kerning first=321 second=338 amount=-2 -kerning first=8363 second=972 amount=-1 -kerning first=8366 second=281 amount=-1 -kerning first=221 second=1116 amount=-3 -kerning first=936 second=1241 amount=-1 -kerning first=1178 second=8220 amount=-2 -kerning first=247 second=277 amount=-1 -kerning first=967 second=89 amount=-5 -kerning first=124 second=1035 amount=-5 -kerning first=160 second=291 amount=-1 -kerning first=273 second=211 amount=-2 -kerning first=36 second=8212 amount=-2 -kerning first=1046 second=251 amount=-1 -kerning first=297 second=353 amount=-1 -kerning first=300 second=113 amount=-1 -kerning first=65 second=235 amount=-1 -kerning first=205 second=365 amount=-1 -kerning first=251 second=224 amount=-1 -kerning first=371 second=354 amount=-5 -kerning first=374 second=114 amount=-3 -kerning first=968 second=266 amount=-2 -kerning first=971 second=39 amount=-3 -kerning first=274 second=366 amount=-2 -kerning first=270 second=1184 amount=-2 -kerning first=189 second=171 amount=-3 -kerning first=1087 second=103 amount=-1 -kerning first=203 second=8217 amount=-3 -kerning first=8370 second=1257 amount=-1 -kerning first=330 second=225 amount=-1 -kerning first=904 second=355 amount=-1 -kerning first=92 second=87 amount=-5 -kerning first=89 second=324 amount=-3 -kerning first=1119 second=267 amount=-1 -kerning first=1064 second=116 amount=-1 -kerning first=187 second=1078 amount=-2 -kerning first=70 second=338 amount=-1 -kerning first=73 second=100 amount=-1 -kerning first=1084 second=972 amount=-1 -kerning first=1090 second=281 amount=-1 -kerning first=93 second=262 amount=-2 -kerning first=236 second=187 amount=-1 -kerning first=951 second=227 amount=-1 -kerning first=1220 second=357 amount=-1 -kerning first=253 second=1079 amount=-1 -kerning first=973 second=369 amount=-1 -kerning first=166 second=1098 amount=-3 -kerning first=169 second=339 amount=-1 -kerning first=172 second=101 amount=-1 -kerning first=282 second=251 amount=-1 -kerning first=51 second=353 amount=-1 -kerning first=54 second=113 amount=-1 -kerning first=197 second=38 amount=-1 -kerning first=194 second=263 amount=-1 -kerning first=916 second=240 amount=-1 -kerning first=1174 second=370 amount=-1 -kerning first=357 second=943 amount=-1 -kerning first=117 second=354 amount=-5 -kerning first=1298 second=67 amount=-2 -kerning first=260 second=266 amount=-2 -kerning first=263 second=39 amount=-1 -kerning first=1035 second=79 amount=-2 -kerning first=174 second=279 amount=-1 -kerning first=170 second=970 amount=-1 -kerning first=8225 second=359 amount=-1 -kerning first=8240 second=119 amount=-4 -kerning first=198 second=213 amount=-2 -kerning first=316 second=103 amount=-1 -kerning first=78 second=225 amount=-1 -kerning first=1095 second=1257 amount=-1 -kerning first=221 second=115 amount=-3 -kerning first=95 second=1185 amount=-3 -kerning first=1262 second=923 amount=-2 -kerning first=1299 second=242 amount=-1 -kerning first=178 second=226 amount=-1 -kerning first=289 second=356 amount=-5 -kerning first=294 second=116 amount=-1 -kerning first=314 second=972 amount=-1 -kerning first=317 second=281 amount=-1 -kerning first=8364 second=231 amount=-1 -kerning first=96 second=8220 amount=-3 -kerning first=365 second=357 amount=-1 -kerning first=962 second=269 amount=-1 -kerning first=40 second=251 amount=-1 -kerning first=197 second=8221 amount=-3 -kerning first=200 second=1066 amount=-5 -kerning first=323 second=228 amount=-1 -kerning first=901 second=118 amount=-4 -kerning first=1103 second=962 amount=-1 -kerning first=103 second=943 amount=-1 -kerning first=246 second=382 amount=-1 -kerning first=366 second=1044 amount=-1 -kerning first=372 second=67 amount=-2 -kerning first=1048 second=119 amount=-4 -kerning first=296 second=920 amount=-2 -kerning first=1080 second=286 amount=-2 -kerning first=207 second=253 amount=-1 -kerning first=321 second=1257 amount=-1 -kerning first=8372 second=334 amount=-2 -kerning first=8366 second=1090 amount=-3 -kerning first=87 second=267 amount=-3 -kerning first=1117 second=218 amount=-2 -kerning first=944 second=230 amount=-1 -kerning first=1194 second=1174 amount=-2 -kerning first=1202 second=360 amount=-1 -kerning first=370 second=923 amount=-2 -kerning first=373 second=242 amount=-1 -kerning first=964 second=947 amount=-4 -kerning first=967 second=372 amount=-5 -kerning first=160 second=1101 amount=-1 -kerning first=273 second=945 amount=-1 -kerning first=45 second=356 amount=-4 -kerning first=1046 second=1047 amount=-2 -kerning first=188 second=268 amount=-2 -kerning first=48 second=116 amount=-1 -kerning first=65 second=972 amount=-1 -kerning first=1085 second=231 amount=-1 -kerning first=906 second=243 amount=-1 -kerning first=1118 second=373 amount=-4 -kerning first=942 second=1263 amount=-1 -kerning first=254 second=269 amount=-1 -kerning first=164 second=973 amount=-1 -kerning first=8211 second=1176 amount=-1 -kerning first=1063 second=244 amount=-1 -kerning first=192 second=216 amount=-2 -kerning first=307 second=106 amount=7 -kerning first=72 second=228 amount=-1 -kerning first=215 second=118 amount=-4 -kerning first=330 second=962 amount=-1 -kerning first=92 second=370 amount=-2 -kerning first=89 second=1194 amount=-3 -kerning first=950 second=333 amount=-1 -kerning first=1224 second=245 amount=-1 -kerning first=258 second=217 amount=-2 -kerning first=1026 second=257 amount=-1 -kerning first=50 second=920 amount=-2 -kerning first=190 second=1195 amount=-1 -kerning first=193 second=371 amount=-1 -kerning first=305 second=1026 amount=-5 -kerning first=310 second=286 amount=-3 -kerning first=70 second=1257 amount=-1 -kerning first=1096 second=334 amount=-2 -kerning first=213 second=1046 amount=-3 -kerning first=915 second=346 amount=-1 -kerning first=910 second=1107 amount=-3 -kerning first=239 second=230 amount=-1 -kerning first=951 second=964 amount=-3 -kerning first=958 second=45 amount=-2 -kerning first=954 second=273 amount=-2 -kerning first=119 second=242 amount=-1 -kerning first=256 second=947 amount=-4 -kerning first=172 second=1240 amount=-2 -kerning first=169 second=1262 amount=-2 -kerning first=1065 second=1108 amount=-1 -kerning first=194 second=1069 amount=-1 -kerning first=200 second=81 amount=-2 -kerning first=315 second=231 amount=-1 -kerning first=338 second=373 amount=-4 -kerning first=916 second=1028 amount=-2 -kerning first=926 second=288 amount=-2 -kerning first=237 second=1263 amount=-1 -kerning first=960 second=220 amount=-2 -kerning first=1257 second=1113 amount=-1 -kerning first=1298 second=350 amount=-1 -kerning first=1035 second=362 amount=-2 -kerning first=1028 second=1176 amount=1 -kerning first=177 second=332 amount=-2 -kerning first=291 second=244 amount=-1 -kerning first=61 second=106 amount=1 -kerning first=1073 second=289 amount=-1 -kerning first=1069 second=1033 amount=-1 -kerning first=8363 second=337 amount=-1 -kerning first=8366 second=99 amount=-1 -kerning first=78 second=962 amount=-1 -kerning first=336 second=8230 amount=-1 -kerning first=936 second=233 amount=-1 -kerning first=367 second=245 amount=-1 -kerning first=42 second=119 amount=-4 -kerning first=178 second=963 amount=-1 -kerning first=182 second=271 amount=-1 -kerning first=59 second=1026 amount=-5 -kerning first=62 second=286 amount=-2 -kerning first=1078 second=234 amount=-2 -kerning first=317 second=1090 amount=-3 -kerning first=322 second=334 amount=-2 -kerning first=8364 second=968 amount=-1 -kerning first=900 second=246 amount=-1 -kerning first=8369 second=277 amount=-1 -kerning first=346 second=258 amount=-1 -kerning first=105 second=360 amount=-2 -kerning first=1186 second=1059 amount=-1 -kerning first=245 second=964 amount=-1 -kerning first=251 second=45 amount=-2 -kerning first=958 second=8249 amount=-3 -kerning first=968 second=85 amount=-2 -kerning first=161 second=287 amount=-1 -kerning first=186 second=219 amount=-2 -kerning first=298 second=347 amount=-1 -kerning first=206 second=361 amount=-1 -kerning first=209 second=121 amount=-1 -kerning first=323 second=965 amount=-1 -kerning first=8377 second=224 amount=-1 -kerning first=86 second=373 amount=-4 -kerning first=1103 second=8250 amount=-1 -kerning first=83 second=1202 amount=-1 -kerning first=1206 second=248 amount=-1 -kerning first=252 second=220 amount=-2 -kerning first=372 second=350 amount=-1 -kerning first=165 second=232 amount=-1 -kerning first=271 second=1176 amount=-1 -kerning first=47 second=244 amount=-2 -kerning first=1059 second=197 amount=-2 -kerning first=187 second=374 amount=-3 -kerning first=302 second=289 amount=-1 -kerning first=1084 second=337 amount=-1 -kerning first=1090 second=99 amount=-1 -kerning first=905 second=351 amount=-1 -kerning first=84 second=8230 amount=-3 -kerning first=910 second=111 amount=-4 -kerning first=93 second=83 amount=-1 -kerning first=1168 second=261 amount=-1 -kerning first=1117 second=953 amount=-1 -kerning first=113 second=245 amount=-1 -kerning first=253 second=375 amount=-1 -kerning first=376 second=290 amount=-3 -kerning first=973 second=210 amount=-2 -kerning first=273 second=8211 amount=-2 -kerning first=8216 second=941 amount=-1 -kerning first=194 second=84 amount=-5 -kerning first=306 second=234 amount=-1 -kerning first=1085 second=968 amount=-1 -kerning first=1094 second=277 amount=-1 -kerning first=214 second=246 amount=-1 -kerning first=332 second=376 amount=-3 -kerning first=906 second=1035 amount=-5 -kerning first=1174 second=211 amount=-1 -kerning first=1223 second=353 amount=-1 -kerning first=251 second=8249 amount=-3 +kerning first=258 second=920 amount=-2 +kerning first=258 second=927 amount=-2 +kerning first=258 second=932 amount=-5 +kerning first=258 second=933 amount=-5 +kerning first=258 second=936 amount=-3 +kerning first=258 second=939 amount=-5 +kerning first=258 second=940 amount=-1 +kerning first=258 second=941 amount=-1 +kerning first=258 second=943 amount=-1 +kerning first=258 second=945 amount=-1 +kerning first=258 second=947 amount=-4 +kerning first=258 second=949 amount=-1 +kerning first=258 second=950 amount=-1 +kerning first=258 second=953 amount=-1 +kerning first=258 second=957 amount=-4 +kerning first=258 second=959 amount=-1 +kerning first=258 second=962 amount=-1 +kerning first=258 second=963 amount=-1 +kerning first=258 second=964 amount=-3 +kerning first=258 second=965 amount=-1 +kerning first=258 second=966 amount=-1 +kerning first=258 second=968 amount=-1 +kerning first=258 second=970 amount=-1 +kerning first=258 second=972 amount=-1 +kerning first=258 second=973 amount=-1 +kerning first=258 second=1026 amount=-5 +kerning first=258 second=1028 amount=-2 +kerning first=258 second=1029 amount=-1 +kerning first=258 second=1032 amount=-1 +kerning first=258 second=1035 amount=-5 +kerning first=258 second=1038 amount=-2 +kerning first=258 second=1054 amount=-2 +kerning first=258 second=1057 amount=-2 +kerning first=258 second=1058 amount=-5 +kerning first=258 second=1059 amount=-2 +kerning first=258 second=1063 amount=-3 +kerning first=258 second=1066 amount=-5 +kerning first=258 second=1069 amount=-1 +kerning first=258 second=1072 amount=-1 +kerning first=258 second=1077 amount=-1 +kerning first=258 second=1079 amount=-1 +kerning first=258 second=1086 amount=-1 +kerning first=258 second=1089 amount=-1 +kerning first=258 second=1090 amount=-3 +kerning first=258 second=1091 amount=-1 +kerning first=258 second=1092 amount=-1 +kerning first=258 second=1098 amount=-3 +kerning first=258 second=1101 amount=-1 +kerning first=258 second=1104 amount=-1 +kerning first=258 second=1105 amount=-1 +kerning first=258 second=1108 amount=-1 +kerning first=258 second=1109 amount=-1 +kerning first=258 second=1112 amount=1 +kerning first=258 second=1118 amount=-1 +kerning first=258 second=1176 amount=-1 +kerning first=258 second=1177 amount=-1 +kerning first=258 second=1184 amount=-5 +kerning first=258 second=1185 amount=-3 +kerning first=258 second=1194 amount=-2 +kerning first=258 second=1195 amount=-1 +kerning first=258 second=1198 amount=-5 +kerning first=258 second=1199 amount=-4 +kerning first=258 second=1240 amount=-2 +kerning first=258 second=1241 amount=-1 +kerning first=258 second=1256 amount=-2 +kerning first=258 second=1257 amount=-1 +kerning first=258 second=1262 amount=-2 +kerning first=258 second=1263 amount=-1 +kerning first=258 second=8211 amount=-2 +kerning first=258 second=8212 amount=-2 +kerning first=258 second=8216 amount=-3 +kerning first=258 second=8217 amount=-3 +kerning first=258 second=8220 amount=-3 +kerning first=258 second=8221 amount=-3 +kerning first=258 second=8249 amount=-3 +kerning first=258 second=8250 amount=-1 +kerning first=259 second=34 amount=-1 +kerning first=259 second=39 amount=-1 +kerning first=259 second=63 amount=-2 +kerning first=259 second=102 amount=-1 +kerning first=259 second=106 amount=1 +kerning first=259 second=118 amount=-1 +kerning first=259 second=119 amount=-1 +kerning first=259 second=373 amount=-1 +kerning first=259 second=947 amount=-1 +kerning first=259 second=957 amount=-1 +kerning first=259 second=964 amount=-1 +kerning first=259 second=1090 amount=-1 +kerning first=259 second=1098 amount=-1 +kerning first=259 second=1112 amount=1 +kerning first=259 second=1185 amount=-1 +kerning first=259 second=1199 amount=-1 +kerning first=259 second=8216 amount=-1 +kerning first=259 second=8217 amount=-1 +kerning first=259 second=8220 amount=-1 +kerning first=259 second=8221 amount=-1 +kerning first=260 second=34 amount=-3 +kerning first=260 second=38 amount=-1 +kerning first=260 second=39 amount=-3 +kerning first=260 second=45 amount=-2 +kerning first=260 second=63 amount=-5 +kerning first=260 second=67 amount=-2 +kerning first=260 second=71 amount=-2 +kerning first=260 second=74 amount=-1 +kerning first=260 second=79 amount=-2 +kerning first=260 second=81 amount=-2 +kerning first=260 second=83 amount=-1 +kerning first=260 second=84 amount=-5 kerning first=260 second=85 amount=-2 -kerning first=380 second=235 amount=-1 -kerning first=170 second=335 amount=-1 -kerning first=174 second=97 amount=-1 -kerning first=49 second=1108 amount=-1 -kerning first=52 second=347 amount=-1 -kerning first=195 second=259 amount=-1 -kerning first=198 second=34 amount=-3 -kerning first=72 second=965 amount=-1 -kerning first=218 second=196 amount=-2 -kerning first=330 second=8250 amount=-1 -kerning first=1170 second=1184 amount=-5 -kerning first=238 second=336 amount=-2 -kerning first=361 second=248 amount=-1 -kerning first=956 second=171 amount=-3 -kerning first=972 second=8217 amount=-1 -kerning first=175 second=275 amount=-1 -kerning first=8226 second=355 amount=-1 -kerning first=56 second=289 amount=-1 -kerning first=314 second=337 amount=-1 -kerning first=317 second=99 amount=-1 -kerning first=79 second=221 amount=-3 -kerning first=96 second=1177 amount=-1 -kerning first=34 second=1051 amount=-3 -kerning first=1037 second=250 amount=-1 -kerning first=60 second=234 amount=-1 -kerning first=1071 second=1241 amount=-1 -kerning first=200 second=364 amount=-2 -kerning first=318 second=277 amount=-1 -kerning first=315 second=968 amount=-1 -kerning first=8365 second=227 amount=-1 -kerning first=80 second=376 amount=-2 -kerning first=223 second=291 amount=-1 -kerning first=926 second=1098 amount=-3 -kerning first=934 second=339 amount=-1 -kerning first=100 second=1059 amount=-2 -kerning first=369 second=113 amount=-1 -kerning first=963 second=263 amount=-1 -kerning first=126 second=235 amount=-1 -kerning first=198 second=8216 amount=-3 -kerning first=8363 second=1256 amount=-2 -kerning first=78 second=8250 amount=-1 -kerning first=1117 second=39 amount=-3 -kerning first=936 second=970 amount=-1 -kerning first=107 second=248 amount=-2 -kerning first=250 second=171 amount=-3 -kerning first=967 second=213 amount=-2 -kerning first=45 second=197 amount=-2 -kerning first=1046 second=355 amount=-1 -kerning first=1049 second=115 amount=-1 -kerning first=188 second=87 amount=-5 -kerning first=65 second=337 amount=-1 -kerning first=205 second=940 amount=-1 -kerning first=900 second=1038 amount=-2 -kerning first=88 second=261 amount=-1 -kerning first=1118 second=214 amount=-2 -kerning first=343 second=8218 amount=-3 -kerning first=1210 second=116 amount=-1 -kerning first=248 second=1078 amount=-2 -kerning first=968 second=368 amount=-2 -kerning first=164 second=338 amount=-2 -kerning first=167 second=100 amount=-1 -kerning first=274 second=941 amount=-1 -kerning first=189 second=262 amount=-2 -kerning first=301 second=1241 amount=-1 -kerning first=304 second=187 amount=-1 -kerning first=69 second=277 amount=-1 -kerning first=1087 second=227 amount=-1 -kerning first=92 second=211 amount=-2 -kerning first=1119 second=369 amount=-1 -kerning first=229 second=1098 amount=-1 -kerning first=255 second=263 amount=-1 -kerning first=258 second=38 amount=-1 -kerning first=966 second=8221 amount=-1 -kerning first=8222 second=118 amount=-2 -kerning first=1059 second=916 amount=-2 -kerning first=1064 second=240 amount=-1 -kerning first=193 second=212 amount=-2 -kerning first=310 second=102 amount=-2 -kerning first=73 second=224 amount=-1 -kerning first=1084 second=1256 amount=-2 -kerning first=213 second=354 amount=-2 -kerning first=337 second=39 amount=-1 -kerning first=93 second=366 amount=-2 -kerning first=1176 second=79 amount=-2 -kerning first=236 second=279 amount=-1 -kerning first=1220 second=920 amount=-2 -kerning first=376 second=1100 amount=-3 -kerning first=1027 second=253 amount=-1 -kerning first=172 second=225 amount=-1 -kerning first=282 second=355 amount=-1 -kerning first=287 second=115 amount=-1 -kerning first=191 second=1185 amount=-3 -kerning first=194 second=367 amount=-1 -kerning first=214 second=1038 amount=-2 -kerning first=338 second=214 amount=-2 -kerning first=1174 second=945 amount=-1 -kerning first=240 second=226 amount=-1 -kerning first=363 second=116 amount=-1 -kerning first=955 second=268 amount=-2 +kerning first=260 second=86 amount=-6 +kerning first=260 second=87 amount=-5 +kerning first=260 second=89 amount=-5 +kerning first=260 second=97 amount=-1 +kerning first=260 second=99 amount=-1 +kerning first=260 second=100 amount=-1 +kerning first=260 second=101 amount=-1 +kerning first=260 second=102 amount=-2 +kerning first=260 second=103 amount=-1 +kerning first=260 second=106 amount=1 +kerning first=260 second=111 amount=-1 +kerning first=260 second=113 amount=-1 +kerning first=260 second=115 amount=-1 +kerning first=260 second=116 amount=-1 +kerning first=260 second=117 amount=-1 +kerning first=260 second=118 amount=-4 +kerning first=260 second=119 amount=-4 +kerning first=260 second=121 amount=-1 +kerning first=260 second=171 amount=-3 +kerning first=260 second=173 amount=-2 +kerning first=260 second=187 amount=-1 +kerning first=260 second=199 amount=-2 +kerning first=260 second=210 amount=-2 +kerning first=260 second=211 amount=-2 +kerning first=260 second=212 amount=-2 +kerning first=260 second=213 amount=-2 +kerning first=260 second=214 amount=-2 +kerning first=260 second=216 amount=-2 +kerning first=260 second=217 amount=-2 +kerning first=260 second=218 amount=-2 +kerning first=260 second=219 amount=-2 +kerning first=260 second=220 amount=-2 +kerning first=260 second=221 amount=-5 +kerning first=260 second=224 amount=-1 +kerning first=260 second=225 amount=-1 +kerning first=260 second=226 amount=-1 +kerning first=260 second=227 amount=-1 +kerning first=260 second=228 amount=-1 +kerning first=260 second=229 amount=-1 +kerning first=260 second=230 amount=-1 +kerning first=260 second=231 amount=-1 +kerning first=260 second=232 amount=-1 +kerning first=260 second=233 amount=-1 +kerning first=260 second=234 amount=-1 +kerning first=260 second=235 amount=-1 +kerning first=260 second=240 amount=-1 +kerning first=260 second=242 amount=-1 +kerning first=260 second=243 amount=-1 +kerning first=260 second=244 amount=-1 +kerning first=260 second=245 amount=-1 +kerning first=260 second=246 amount=-1 +kerning first=260 second=248 amount=-1 +kerning first=260 second=249 amount=-1 +kerning first=260 second=250 amount=-1 +kerning first=260 second=251 amount=-1 +kerning first=260 second=252 amount=-1 +kerning first=260 second=253 amount=-1 +kerning first=260 second=257 amount=-1 +kerning first=260 second=259 amount=-1 +kerning first=260 second=261 amount=-1 +kerning first=260 second=262 amount=-2 +kerning first=260 second=263 amount=-1 +kerning first=260 second=266 amount=-2 +kerning first=260 second=267 amount=-1 +kerning first=260 second=268 amount=-2 +kerning first=260 second=269 amount=-1 +kerning first=260 second=271 amount=-1 +kerning first=260 second=273 amount=-1 +kerning first=260 second=275 amount=-1 +kerning first=260 second=277 amount=-1 +kerning first=260 second=279 amount=-1 +kerning first=260 second=281 amount=-1 +kerning first=260 second=283 amount=-1 +kerning first=260 second=286 amount=-2 +kerning first=260 second=287 amount=-1 +kerning first=260 second=288 amount=-2 +kerning first=260 second=289 amount=-1 +kerning first=260 second=290 amount=-2 +kerning first=260 second=291 amount=-1 +kerning first=260 second=332 amount=-2 +kerning first=260 second=333 amount=-1 +kerning first=260 second=334 amount=-2 +kerning first=260 second=335 amount=-1 +kerning first=260 second=336 amount=-2 +kerning first=260 second=337 amount=-1 +kerning first=260 second=338 amount=-2 +kerning first=260 second=339 amount=-1 +kerning first=260 second=346 amount=-1 +kerning first=260 second=347 amount=-1 +kerning first=260 second=350 amount=-1 +kerning first=260 second=351 amount=-1 +kerning first=260 second=352 amount=-1 +kerning first=260 second=353 amount=-1 +kerning first=260 second=354 amount=-5 +kerning first=260 second=355 amount=-1 +kerning first=260 second=356 amount=-5 +kerning first=260 second=357 amount=-1 +kerning first=260 second=359 amount=-1 +kerning first=260 second=360 amount=-2 +kerning first=260 second=361 amount=-1 +kerning first=260 second=362 amount=-2 +kerning first=260 second=363 amount=-1 +kerning first=260 second=364 amount=-2 +kerning first=260 second=365 amount=-1 +kerning first=260 second=366 amount=-2 +kerning first=260 second=367 amount=-1 kerning first=260 second=368 amount=-2 -kerning first=35 second=250 amount=-1 -kerning first=380 second=972 amount=-1 -kerning first=8240 second=243 amount=-1 -kerning first=55 second=1241 amount=-1 -kerning first=58 second=187 amount=-1 -kerning first=192 second=8220 amount=-3 -kerning first=316 second=227 amount=-1 -kerning first=75 second=1079 amount=-1 -kerning first=81 second=89 amount=-3 -kerning first=258 second=8221 amount=-3 -kerning first=1039 second=118 amount=-4 -kerning first=294 second=240 amount=-1 -kerning first=1074 second=283 amount=-1 -kerning first=202 second=252 amount=-1 -kerning first=314 second=1256 amount=-2 -kerning first=8364 second=333 amount=-1 -kerning first=900 second=67 amount=-2 -kerning first=337 second=8222 amount=-1 -kerning first=1195 second=119 amount=-1 -kerning first=365 second=920 amount=-2 -kerning first=958 second=1195 amount=-1 -kerning first=962 second=371 amount=-1 -kerning first=161 second=103 amount=-1 -kerning first=40 second=355 amount=-1 -kerning first=43 second=115 amount=-1 -kerning first=183 second=267 amount=-1 -kerning first=8370 second=273 amount=-1 -kerning first=8377 second=45 amount=-2 -kerning first=86 second=214 amount=-2 -kerning first=1103 second=947 amount=-4 -kerning first=901 second=242 amount=-1 -kerning first=8365 second=964 amount=-3 -kerning first=223 second=1101 amount=-1 -kerning first=934 second=1262 amount=-2 -kerning first=249 second=268 amount=-2 -kerning first=963 second=1069 amount=-1 -kerning first=126 second=972 amount=-1 -kerning first=162 second=281 amount=-1 -kerning first=47 second=65 amount=-5 -kerning first=1048 second=243 amount=-1 -kerning first=207 second=357 amount=-1 -kerning first=327 second=269 amount=-1 -kerning first=8378 second=220 amount=-2 -kerning first=84 second=1187 amount=-2 -kerning first=87 second=369 amount=-2 -kerning first=944 second=332 amount=-2 -kerning first=1207 second=244 amount=-1 -kerning first=253 second=216 amount=-2 -kerning first=166 second=228 amount=-1 -kerning first=279 second=118 amount=-1 -kerning first=48 second=240 amount=-1 -kerning first=45 second=916 amount=-2 -kerning first=185 second=1194 amount=-2 -kerning first=188 second=370 amount=-2 -kerning first=303 second=283 amount=-1 -kerning first=65 second=1256 amount=-2 -kerning first=1085 second=333 amount=-1 -kerning first=214 second=67 amount=-2 -kerning first=208 second=1044 amount=-1 -kerning first=85 second=8222 amount=-1 -kerning first=94 second=79 amount=-2 -kerning first=1118 second=949 amount=-1 -kerning first=357 second=119 amount=-4 -kerning first=251 second=1195 amount=-1 -kerning first=254 second=371 amount=-1 -kerning first=377 second=286 amount=-1 -kerning first=164 second=1257 amount=-1 -kerning first=8221 second=246 amount=-1 -kerning first=1063 second=346 amount=-1 -kerning first=1095 second=273 amount=-1 -kerning first=215 second=242 amount=-1 -kerning first=1087 second=964 amount=-3 -kerning first=212 second=923 amount=-2 -kerning first=330 second=947 amount=-4 -kerning first=8377 second=8249 amount=-3 -kerning first=912 second=287 amount=-1 -kerning first=92 second=945 amount=-1 -kerning first=1219 second=1108 amount=-1 -kerning first=1224 second=347 amount=-1 -kerning first=255 second=1069 amount=-1 -kerning first=381 second=231 amount=-1 -kerning first=1026 second=361 amount=-1 -kerning first=972 second=1175 amount=-2 -kerning first=1064 second=1028 amount=-2 -kerning first=1067 second=288 amount=-2 -kerning first=305 second=1263 amount=-1 -kerning first=76 second=269 amount=-1 -kerning first=1099 second=220 amount=-2 -kerning first=923 second=232 amount=-1 -kerning first=1171 second=1176 amount=-1 -kerning first=1176 second=362 amount=-2 -kerning first=239 second=332 amount=-2 -kerning first=1256 second=1033 amount=-1 -kerning first=1263 second=289 amount=-1 +kerning first=260 second=369 amount=-1 +kerning first=260 second=370 amount=-2 +kerning first=260 second=371 amount=-1 +kerning first=260 second=372 amount=-5 +kerning first=260 second=373 amount=-4 +kerning first=260 second=374 amount=-5 +kerning first=260 second=375 amount=-1 +kerning first=260 second=376 amount=-5 +kerning first=260 second=920 amount=-2 +kerning first=260 second=927 amount=-2 +kerning first=260 second=932 amount=-5 +kerning first=260 second=933 amount=-5 +kerning first=260 second=936 amount=-3 +kerning first=260 second=939 amount=-5 +kerning first=260 second=940 amount=-1 +kerning first=260 second=941 amount=-1 +kerning first=260 second=943 amount=-1 +kerning first=260 second=945 amount=-1 +kerning first=260 second=947 amount=-4 +kerning first=260 second=949 amount=-1 +kerning first=260 second=950 amount=-1 +kerning first=260 second=953 amount=-1 +kerning first=260 second=957 amount=-4 +kerning first=260 second=959 amount=-1 +kerning first=260 second=962 amount=-1 +kerning first=260 second=963 amount=-1 +kerning first=260 second=964 amount=-3 +kerning first=260 second=965 amount=-1 +kerning first=260 second=966 amount=-1 +kerning first=260 second=968 amount=-1 +kerning first=260 second=970 amount=-1 +kerning first=260 second=972 amount=-1 +kerning first=260 second=973 amount=-1 +kerning first=260 second=1026 amount=-5 +kerning first=260 second=1028 amount=-2 +kerning first=260 second=1029 amount=-1 +kerning first=260 second=1032 amount=-1 +kerning first=260 second=1035 amount=-5 +kerning first=260 second=1038 amount=-2 +kerning first=260 second=1054 amount=-2 +kerning first=260 second=1057 amount=-2 +kerning first=260 second=1058 amount=-5 +kerning first=260 second=1059 amount=-2 +kerning first=260 second=1063 amount=-3 +kerning first=260 second=1066 amount=-5 +kerning first=260 second=1069 amount=-1 +kerning first=260 second=1072 amount=-1 +kerning first=260 second=1077 amount=-1 +kerning first=260 second=1079 amount=-1 +kerning first=260 second=1086 amount=-1 +kerning first=260 second=1089 amount=-1 +kerning first=260 second=1090 amount=-3 +kerning first=260 second=1091 amount=-1 +kerning first=260 second=1092 amount=-1 +kerning first=260 second=1098 amount=-3 +kerning first=260 second=1101 amount=-1 +kerning first=260 second=1104 amount=-1 +kerning first=260 second=1105 amount=-1 +kerning first=260 second=1108 amount=-1 +kerning first=260 second=1109 amount=-1 +kerning first=260 second=1112 amount=1 +kerning first=260 second=1118 amount=-1 +kerning first=260 second=1176 amount=-1 +kerning first=260 second=1177 amount=-1 +kerning first=260 second=1184 amount=-5 +kerning first=260 second=1185 amount=-3 +kerning first=260 second=1194 amount=-2 +kerning first=260 second=1195 amount=-1 +kerning first=260 second=1198 amount=-5 +kerning first=260 second=1199 amount=-4 +kerning first=260 second=1240 amount=-2 +kerning first=260 second=1241 amount=-1 +kerning first=260 second=1256 amount=-2 +kerning first=260 second=1257 amount=-1 +kerning first=260 second=1262 amount=-2 +kerning first=260 second=1263 amount=-1 +kerning first=260 second=8211 amount=-2 +kerning first=260 second=8212 amount=-2 +kerning first=260 second=8216 amount=-3 +kerning first=260 second=8217 amount=-3 +kerning first=260 second=8220 amount=-3 +kerning first=260 second=8221 amount=-3 +kerning first=260 second=8249 amount=-3 +kerning first=260 second=8250 amount=-1 +kerning first=261 second=34 amount=-1 +kerning first=261 second=39 amount=-1 +kerning first=261 second=63 amount=-2 +kerning first=261 second=102 amount=-1 +kerning first=261 second=106 amount=1 +kerning first=261 second=118 amount=-1 +kerning first=261 second=119 amount=-1 +kerning first=261 second=373 amount=-1 +kerning first=261 second=947 amount=-1 +kerning first=261 second=957 amount=-1 +kerning first=261 second=964 amount=-1 +kerning first=261 second=1090 amount=-1 +kerning first=261 second=1098 amount=-1 +kerning first=261 second=1112 amount=1 +kerning first=261 second=1185 amount=-1 +kerning first=261 second=1199 amount=-1 +kerning first=261 second=8216 amount=-1 +kerning first=261 second=8217 amount=-1 +kerning first=261 second=8220 amount=-1 +kerning first=261 second=8221 amount=-1 +kerning first=262 second=44 amount=-1 +kerning first=262 second=45 amount=-1 +kerning first=262 second=46 amount=-1 +kerning first=262 second=47 amount=-1 +kerning first=262 second=65 amount=-1 +kerning first=262 second=84 amount=-1 +kerning first=262 second=86 amount=-1 +kerning first=262 second=87 amount=-1 +kerning first=262 second=88 amount=-2 +kerning first=262 second=89 amount=-2 +kerning first=262 second=90 amount=-1 +kerning first=262 second=106 amount=1 +kerning first=262 second=171 amount=-1 +kerning first=262 second=173 amount=-1 +kerning first=262 second=193 amount=-1 +kerning first=262 second=194 amount=-1 +kerning first=262 second=196 amount=-1 +kerning first=262 second=197 amount=-1 +kerning first=262 second=198 amount=-1 +kerning first=262 second=221 amount=-2 kerning first=262 second=256 amount=-1 -kerning first=37 second=118 amount=-4 -kerning first=1037 second=71 amount=-2 -kerning first=172 second=962 amount=-1 -kerning first=57 second=283 amount=-1 -kerning first=1071 second=233 amount=-1 -kerning first=315 second=333 amount=-1 -kerning first=80 second=217 amount=-2 -kerning first=338 second=949 amount=-1 -kerning first=341 second=257 amount=-1 -kerning first=100 second=359 amount=-1 -kerning first=103 second=119 amount=-4 -kerning first=1174 second=8211 amount=-2 -kerning first=240 second=963 amount=-1 -kerning first=246 second=44 amount=-1 -kerning first=366 second=194 amount=-2 -kerning first=963 second=84 amount=-5 -kerning first=123 second=286 amount=-2 -kerning first=180 second=218 amount=-2 -kerning first=291 second=346 amount=-1 -kerning first=8240 second=1035 amount=-5 -kerning first=8260 second=291 amount=-1 -kerning first=61 second=230 amount=-1 -kerning first=201 second=360 amount=-2 -kerning first=316 second=964 amount=-3 -kerning first=321 second=273 amount=-1 -kerning first=78 second=947 amount=-4 -kerning first=81 second=372 amount=-2 -kerning first=936 second=335 amount=-1 -kerning first=247 second=219 amount=-2 -kerning first=367 second=347 amount=-1 -kerning first=964 second=259 amount=-1 -kerning first=967 second=34 amount=-3 -kerning first=160 second=231 amount=-1 -kerning first=273 second=121 amount=-1 -kerning first=42 second=243 amount=-1 -kerning first=182 second=373 amount=-4 -kerning first=294 second=1028 amount=-2 -kerning first=297 second=288 amount=-2 -kerning first=59 second=1263 amount=-1 -kerning first=325 second=220 amount=-2 -kerning first=900 second=350 amount=-1 -kerning first=942 second=275 amount=-1 -kerning first=108 second=244 amount=-1 -kerning first=245 second=1203 amount=-2 -kerning first=371 second=289 amount=-1 -kerning first=368 second=1033 amount=-1 -kerning first=1051 second=111 amount=-1 -kerning first=189 second=83 amount=-1 -kerning first=301 second=233 amount=-1 -kerning first=209 second=245 amount=-1 -kerning first=904 second=290 amount=-2 -kerning first=86 second=949 amount=-1 -kerning first=89 second=257 amount=-4 -kerning first=1119 second=210 amount=-2 -kerning first=344 second=8211 amount=-1 -kerning first=255 second=84 amount=-5 -kerning first=375 second=234 amount=-1 -kerning first=165 second=334 amount=-2 -kerning first=162 second=1090 amount=-3 -kerning first=278 second=246 amount=-1 -kerning first=8218 second=199 amount=-1 -kerning first=47 second=346 amount=-1 -kerning first=1048 second=1035 amount=-5 -kerning first=70 second=273 amount=-1 -kerning first=73 second=45 amount=-2 -kerning first=910 second=235 amount=-4 -kerning first=1168 second=365 amount=-1 -kerning first=236 second=97 amount=-1 -kerning first=113 second=347 amount=-1 -kerning first=256 second=259 amount=-1 -kerning first=259 second=34 amount=-1 -kerning first=967 second=8216 amount=-3 -kerning first=166 second=965 amount=-1 -kerning first=48 second=1028 amount=-2 -kerning first=51 second=288 amount=-2 -kerning first=306 second=336 amount=-2 -kerning first=74 second=220 amount=-2 -kerning first=214 second=350 amount=-1 -kerning first=94 second=362 amount=-2 -kerning first=1118 second=8217 amount=-3 -kerning first=91 second=1176 amount=-1 -kerning first=237 second=275 amount=-1 -kerning first=360 second=197 amount=-2 -kerning first=955 second=87 amount=-5 -kerning first=117 second=289 amount=-1 -kerning first=380 second=337 amount=-1 -kerning first=35 second=71 amount=-2 -kerning first=174 second=221 amount=-5 -kerning first=55 second=233 amount=-1 -kerning first=195 second=363 amount=-1 -kerning first=192 second=1177 amount=-1 -kerning first=75 second=375 amount=-2 -kerning first=92 second=8211 amount=-2 -kerning first=928 second=100 amount=-1 -kerning first=1175 second=941 amount=-1 -kerning first=361 second=352 amount=-1 -kerning first=956 second=262 amount=-2 -kerning first=121 second=234 amount=-1 -kerning first=1299 second=187 amount=-1 -kerning first=36 second=246 amount=-1 -kerning first=1036 second=199 amount=-3 -kerning first=175 second=376 amount=-5 -kerning first=289 second=291 amount=-1 -kerning first=286 second=1035 amount=-1 -kerning first=1067 second=1098 amount=-3 -kerning first=193 second=8212 amount=-2 -kerning first=196 second=1059 amount=-2 -kerning first=1074 second=101 amount=-1 -kerning first=73 second=8249 amount=-3 -kerning first=962 second=212 amount=-2 -kerning first=259 second=8216 amount=-1 -kerning first=1037 second=354 amount=-5 -kerning first=172 second=8250 amount=-1 -kerning first=60 second=336 amount=-2 -kerning first=1071 second=970 amount=-1 -kerning first=1075 second=279 amount=-1 -kerning first=203 second=248 amount=-1 -kerning first=323 second=171 amount=-3 -kerning first=83 second=260 amount=-1 -kerning first=338 second=8217 amount=-3 -kerning first=947 second=115 amount=-1 -kerning first=243 second=1076 amount=-1 -kerning first=249 second=87 amount=-5 -kerning first=960 second=1185 amount=-3 -kerning first=963 second=367 amount=-1 -kerning first=126 second=337 amount=-1 -kerning first=162 second=99 amount=-1 -kerning first=271 second=249 amount=-1 -kerning first=41 second=351 amount=-1 -kerning first=184 second=261 amount=-1 -kerning first=180 second=953 amount=-1 -kerning first=8260 second=1101 amount=-1 -kerning first=1080 second=226 amount=-1 -kerning first=8372 second=268 amount=-2 -kerning first=87 second=210 amount=-2 -kerning first=345 second=941 amount=-1 -kerning first=250 second=262 amount=-2 -kerning first=961 second=8220 amount=-1 -kerning first=160 second=968 amount=-1 -kerning first=163 second=277 amount=-1 -kerning first=276 second=199 amount=-2 -kerning first=42 second=1035 amount=-5 -kerning first=188 second=211 amount=-2 -kerning first=300 second=339 amount=-1 -kerning first=303 second=101 amount=-1 -kerning first=297 second=1098 amount=-3 -kerning first=88 second=365 amount=-1 -kerning first=1210 second=240 amount=-1 -kerning first=254 second=212 amount=-2 -kerning first=968 second=943 amount=-1 -kerning first=971 second=252 amount=-1 -kerning first=167 second=224 amount=-1 -kerning first=274 second=1118 amount=-1 -kerning first=8211 second=1044 amount=-4 -kerning first=186 second=1184 amount=-5 -kerning first=189 second=366 amount=-2 -kerning first=304 second=279 amount=-1 -kerning first=301 second=970 amount=-1 -kerning first=72 second=171 amount=-3 -kerning first=8377 second=1195 amount=-1 -kerning first=912 second=103 amount=-1 -kerning first=86 second=8217 amount=-3 -kerning first=1170 second=253 amount=-1 -kerning first=358 second=115 amount=-1 -kerning first=950 second=267 amount=-1 -kerning first=255 second=367 amount=-1 -kerning first=252 second=1185 amount=-3 -kerning first=278 second=1038 amount=-2 -kerning first=310 second=226 amount=-1 -kerning first=1096 second=268 amount=-2 -kerning first=915 second=281 amount=-1 -kerning first=93 second=941 amount=-1 -kerning first=96 second=250 amount=-1 -kerning first=910 second=972 amount=-4 -kerning first=362 second=65 amount=-2 -kerning first=253 second=8220 amount=-3 -kerning first=1027 second=357 amount=-1 -kerning first=169 second=1079 amount=-1 -kerning first=176 second=89 amount=-5 -kerning first=51 second=1098 amount=-3 -kerning first=54 second=339 amount=-1 -kerning first=57 second=101 amount=-1 -kerning first=197 second=251 amount=-1 -kerning first=77 second=263 amount=-1 -kerning first=926 second=228 amount=-1 -kerning first=1184 second=118 amount=-3 -kerning first=363 second=240 amount=-1 -kerning first=360 second=916 amount=-2 -kerning first=952 second=1194 amount=-2 -kerning first=955 second=370 amount=-2 -kerning first=1298 second=283 amount=-1 -kerning first=260 second=943 amount=-1 -kerning first=35 second=354 amount=-5 -kerning first=1028 second=1044 amount=-1 -kerning first=177 second=266 amount=-2 -kerning first=180 second=39 amount=-3 -kerning first=58 second=279 amount=-1 -kerning first=55 second=970 amount=-1 -kerning first=1073 second=229 amount=-1 -kerning first=8363 second=271 amount=-1 -kerning first=221 second=341 amount=-3 -kerning first=36 second=1038 amount=-2 -kerning first=1039 second=242 amount=-1 -kerning first=182 second=214 amount=-2 -kerning first=289 second=1101 amount=-1 -kerning first=62 second=226 amount=-1 -kerning first=1074 second=1240 amount=-2 -kerning first=202 second=356 amount=-5 -kerning first=205 second=116 amount=-1 -kerning first=322 second=268 amount=-2 -kerning first=8369 second=219 amount=-2 -kerning first=161 second=227 amount=-1 -kerning first=274 second=117 amount=-1 -kerning first=183 second=369 amount=-1 -kerning first=8370 second=374 amount=-5 -kerning first=80 second=8221 amount=-3 -kerning first=904 second=106 amount=1 -kerning first=83 second=1066 amount=-1 -kerning first=352 second=118 amount=-1 -kerning first=249 second=370 amount=-2 -kerning first=372 second=283 amount=-3 -kerning first=126 second=1256 amount=-2 -kerning first=278 second=67 amount=-2 -kerning first=190 second=79 amount=-2 -kerning first=302 second=229 amount=-1 -kerning first=1080 second=963 amount=-1 -kerning first=1084 second=271 amount=-1 -kerning first=207 second=920 amount=-2 -kerning first=1090 second=44 amount=-3 -kerning first=327 second=371 amount=-1 -kerning first=902 second=1026 amount=-5 -kerning first=905 second=286 amount=-2 -kerning first=350 second=1046 amount=-1 -kerning first=948 second=218 amount=-2 -kerning first=376 second=230 amount=-4 -kerning first=188 second=945 amount=-1 -kerning first=303 second=1240 amount=-2 -kerning first=300 second=1262 amount=-2 -kerning first=357 second=243 amount=-1 -kerning first=949 second=373 amount=-1 -kerning first=1210 second=1028 amount=-2 -kerning first=1223 second=288 amount=-2 -kerning first=374 second=1263 amount=-2 -kerning first=170 second=269 amount=-1 -kerning first=49 second=973 amount=-1 -kerning first=55 second=54 amount=-1 -kerning first=75 second=216 amount=-3 -kerning first=1095 second=374 amount=-5 -kerning first=336 second=256 amount=-2 -kerning first=908 second=1298 amount=-1 -kerning first=98 second=118 amount=-1 -kerning first=1178 second=71 amount=-1 -kerning first=956 second=83 amount=-1 -kerning first=118 second=283 amount=-1 -kerning first=381 second=333 amount=-1 -kerning first=36 second=67 amount=-2 -kerning first=175 second=217 amount=-2 -kerning first=8226 second=290 amount=-2 -kerning first=56 second=229 amount=-1 -kerning first=196 second=359 amount=-1 -kerning first=314 second=271 amount=-1 -kerning first=310 second=963 amount=-2 -kerning first=73 second=1195 amount=-1 -kerning first=76 second=371 amount=-1 -kerning first=216 second=1026 amount=-2 -kerning first=923 second=334 amount=-2 -kerning first=915 second=1090 amount=-3 -kerning first=1179 second=246 amount=-1 +kerning first=262 second=258 amount=-1 +kerning first=262 second=260 amount=-1 +kerning first=262 second=354 amount=-1 +kerning first=262 second=356 amount=-1 +kerning first=262 second=372 amount=-1 +kerning first=262 second=374 amount=-2 +kerning first=262 second=376 amount=-2 +kerning first=262 second=377 amount=-1 +kerning first=262 second=379 amount=-1 +kerning first=262 second=381 amount=-1 +kerning first=262 second=913 amount=-1 +kerning first=262 second=916 amount=-1 +kerning first=262 second=918 amount=-1 +kerning first=262 second=923 amount=-1 +kerning first=262 second=932 amount=-1 +kerning first=262 second=933 amount=-2 +kerning first=262 second=935 amount=-2 +kerning first=262 second=939 amount=-2 +kerning first=262 second=1026 amount=-1 +kerning first=262 second=1033 amount=-1 +kerning first=262 second=1035 amount=-1 +kerning first=262 second=1040 amount=-1 +kerning first=262 second=1044 amount=-1 +kerning first=262 second=1046 amount=-2 +kerning first=262 second=1051 amount=-1 +kerning first=262 second=1058 amount=-1 +kerning first=262 second=1061 amount=-2 +kerning first=262 second=1066 amount=-1 +kerning first=262 second=1069 amount=1 +kerning first=262 second=1112 amount=1 +kerning first=262 second=1174 amount=-2 +kerning first=262 second=1176 amount=1 +kerning first=262 second=1184 amount=-1 +kerning first=262 second=1198 amount=-2 +kerning first=262 second=1202 amount=-2 +kerning first=262 second=1298 amount=-1 +kerning first=262 second=8211 amount=-1 +kerning first=262 second=8212 amount=-1 +kerning first=262 second=8218 amount=-1 +kerning first=262 second=8222 amount=-1 +kerning first=262 second=8230 amount=-1 +kerning first=262 second=8249 amount=-1 +kerning first=263 second=34 amount=-1 +kerning first=263 second=39 amount=-1 +kerning first=263 second=63 amount=-1 +kerning first=263 second=118 amount=-1 +kerning first=263 second=119 amount=-1 +kerning first=263 second=120 amount=-1 +kerning first=263 second=373 amount=-1 +kerning first=263 second=947 amount=-1 +kerning first=263 second=955 amount=-1 +kerning first=263 second=957 amount=-1 +kerning first=263 second=1078 amount=-1 +kerning first=263 second=1093 amount=-1 +kerning first=263 second=1175 amount=-1 +kerning first=263 second=1199 amount=-1 +kerning first=263 second=1203 amount=-1 +kerning first=263 second=8216 amount=-1 +kerning first=263 second=8217 amount=-1 +kerning first=263 second=8220 amount=-1 +kerning first=263 second=8221 amount=-1 +kerning first=266 second=44 amount=-1 +kerning first=266 second=45 amount=-1 +kerning first=266 second=46 amount=-1 +kerning first=266 second=47 amount=-1 +kerning first=266 second=65 amount=-1 +kerning first=266 second=84 amount=-1 +kerning first=266 second=86 amount=-1 +kerning first=266 second=87 amount=-1 +kerning first=266 second=88 amount=-2 +kerning first=266 second=89 amount=-2 +kerning first=266 second=90 amount=-1 +kerning first=266 second=106 amount=1 +kerning first=266 second=171 amount=-1 +kerning first=266 second=173 amount=-1 +kerning first=266 second=193 amount=-1 +kerning first=266 second=194 amount=-1 +kerning first=266 second=196 amount=-1 +kerning first=266 second=197 amount=-1 +kerning first=266 second=198 amount=-1 +kerning first=266 second=221 amount=-2 +kerning first=266 second=256 amount=-1 +kerning first=266 second=258 amount=-1 +kerning first=266 second=260 amount=-1 +kerning first=266 second=354 amount=-1 +kerning first=266 second=356 amount=-1 +kerning first=266 second=372 amount=-1 +kerning first=266 second=374 amount=-2 +kerning first=266 second=376 amount=-2 +kerning first=266 second=377 amount=-1 +kerning first=266 second=379 amount=-1 +kerning first=266 second=381 amount=-1 +kerning first=266 second=913 amount=-1 +kerning first=266 second=916 amount=-1 +kerning first=266 second=918 amount=-1 +kerning first=266 second=923 amount=-1 +kerning first=266 second=932 amount=-1 +kerning first=266 second=933 amount=-2 +kerning first=266 second=935 amount=-2 +kerning first=266 second=939 amount=-2 +kerning first=266 second=1026 amount=-1 +kerning first=266 second=1033 amount=-1 +kerning first=266 second=1035 amount=-1 +kerning first=266 second=1040 amount=-1 +kerning first=266 second=1044 amount=-1 +kerning first=266 second=1046 amount=-2 +kerning first=266 second=1051 amount=-1 +kerning first=266 second=1058 amount=-1 +kerning first=266 second=1061 amount=-2 +kerning first=266 second=1066 amount=-1 +kerning first=266 second=1069 amount=1 +kerning first=266 second=1112 amount=1 +kerning first=266 second=1174 amount=-2 +kerning first=266 second=1176 amount=1 +kerning first=266 second=1184 amount=-1 +kerning first=266 second=1198 amount=-2 +kerning first=266 second=1202 amount=-2 +kerning first=266 second=1298 amount=-1 +kerning first=266 second=8211 amount=-1 +kerning first=266 second=8212 amount=-1 +kerning first=266 second=8218 amount=-1 +kerning first=266 second=8222 amount=-1 +kerning first=266 second=8230 amount=-1 +kerning first=266 second=8249 amount=-1 +kerning first=267 second=34 amount=-1 +kerning first=267 second=39 amount=-1 +kerning first=267 second=63 amount=-1 +kerning first=267 second=118 amount=-1 +kerning first=267 second=119 amount=-1 kerning first=267 second=120 amount=-1 -kerning first=37 second=242 amount=-1 -kerning first=34 second=923 amount=-3 -kerning first=172 second=947 amount=-4 -kerning first=176 second=372 amount=-5 -kerning first=57 second=1240 amount=-2 -kerning first=54 second=1262 amount=-2 -kerning first=1071 second=335 amount=-1 -kerning first=318 second=219 amount=-2 -kerning first=77 second=1069 amount=-1 -kerning first=1103 second=259 amount=-1 -kerning first=223 second=231 amount=-1 -kerning first=1108 second=34 amount=-1 -kerning first=926 second=965 amount=-1 -kerning first=103 second=243 amount=-1 -kerning first=243 second=373 amount=-1 -kerning first=363 second=1028 amount=-2 -kerning first=296 second=232 amount=-1 -kerning first=61 second=332 amount=-2 -kerning first=1073 second=966 amount=-1 -kerning first=204 second=244 amount=-1 -kerning first=1076 second=275 amount=-1 -kerning first=321 second=374 amount=-5 -kerning first=8372 second=87 amount=-5 -kerning first=84 second=256 amount=-6 -kerning first=221 second=1298 amount=-5 -kerning first=1202 second=111 amount=-1 -kerning first=250 second=83 amount=-1 -kerning first=964 second=363 amount=-1 -kerning first=160 second=333 amount=-1 -kerning first=273 second=245 amount=-1 -kerning first=1046 second=290 amount=-3 -kerning first=182 second=949 amount=-1 -kerning first=185 second=257 amount=-1 -kerning first=62 second=963 amount=-1 -kerning first=65 second=271 amount=-1 -kerning first=68 second=44 amount=-1 -kerning first=208 second=194 amount=-2 -kerning first=903 second=234 amount=-1 -kerning first=225 second=1090 amount=-1 -kerning first=942 second=376 amount=-5 -kerning first=108 second=346 amount=-1 -kerning first=962 second=8212 amount=-2 -kerning first=965 second=1059 amount=-2 -kerning first=164 second=273 amount=-1 -kerning first=167 second=45 amount=-2 -kerning first=161 second=964 amount=-3 -kerning first=8217 second=113 amount=-1 -kerning first=46 second=287 amount=-1 -kerning first=1051 second=235 amount=-1 -kerning first=301 second=335 amount=-1 -kerning first=304 second=97 amount=-1 -kerning first=69 second=219 amount=-2 -kerning first=206 second=1108 amount=-1 -kerning first=209 second=347 amount=-1 -kerning first=330 second=259 amount=-1 -kerning first=333 second=34 amount=-1 -kerning first=86 second=1175 amount=-2 -kerning first=92 second=121 amount=-1 -kerning first=89 second=361 amount=-2 -kerning first=1108 second=8216 amount=-1 -kerning first=235 second=46 amount=-1 -kerning first=375 second=336 amount=-2 -kerning first=168 second=220 amount=-2 -kerning first=275 second=1113 amount=-1 -kerning first=278 second=350 amount=-1 -kerning first=50 second=232 amount=-1 -kerning first=190 second=362 amount=-2 -kerning first=302 second=966 amount=-1 -kerning first=305 second=275 amount=-1 -kerning first=70 second=374 amount=-5 -kerning first=1096 second=87 amount=-5 -kerning first=210 second=1033 amount=-1 -kerning first=8378 second=1185 amount=-3 -kerning first=910 second=337 amount=-4 -kerning first=915 second=99 amount=-1 -kerning first=96 second=71 amount=-2 -kerning first=1171 second=249 amount=-1 -kerning first=1168 second=940 amount=-1 -kerning first=236 second=221 amount=-5 -kerning first=356 second=351 amount=-3 -kerning first=951 second=261 amount=-1 -kerning first=948 second=953 amount=-1 -kerning first=253 second=1177 amount=-1 -kerning first=256 second=363 amount=-1 -kerning first=376 second=967 amount=-2 -kerning first=169 second=375 amount=-1 -kerning first=282 second=290 amount=-2 -kerning first=1065 second=338 amount=-1 -kerning first=188 second=8211 amount=-2 -kerning first=77 second=84 amount=-5 -kerning first=916 second=277 amount=-1 -kerning first=237 second=376 amount=-5 -kerning first=357 second=1035 amount=-5 -kerning first=955 second=211 amount=-2 -kerning first=1223 second=1098 amount=-3 -kerning first=254 second=8212 amount=-2 -kerning first=1298 second=101 amount=-1 -kerning first=1035 second=113 amount=-1 -kerning first=167 second=8249 amount=-3 -kerning first=177 second=85 amount=-2 -kerning first=55 second=335 amount=-1 -kerning first=58 second=97 amount=-1 -kerning first=78 second=259 amount=-1 -kerning first=333 second=8216 amount=-1 -kerning first=928 second=224 amount=-1 -kerning first=1178 second=354 amount=-2 -kerning first=956 second=366 amount=-2 -kerning first=121 second=336 amount=-2 -kerning first=1299 second=279 amount=-1 -kerning first=36 second=350 amount=-1 -kerning first=56 second=966 amount=-1 -kerning first=59 second=275 amount=-1 -kerning first=1074 second=225 amount=-1 -kerning first=322 second=87 amount=-5 -kerning first=8364 second=267 amount=-1 -kerning first=1099 second=1185 amount=-3 -kerning first=102 second=351 amount=-1 -kerning first=105 second=111 amount=-1 +kerning first=267 second=373 amount=-1 +kerning first=267 second=947 amount=-1 +kerning first=267 second=955 amount=-1 +kerning first=267 second=957 amount=-1 +kerning first=267 second=1078 amount=-1 +kerning first=267 second=1093 amount=-1 +kerning first=267 second=1175 amount=-1 +kerning first=267 second=1199 amount=-1 +kerning first=267 second=1203 amount=-1 +kerning first=267 second=8216 amount=-1 +kerning first=267 second=8217 amount=-1 +kerning first=267 second=8220 amount=-1 +kerning first=267 second=8221 amount=-1 +kerning first=268 second=44 amount=-1 +kerning first=268 second=45 amount=-1 +kerning first=268 second=46 amount=-1 +kerning first=268 second=47 amount=-1 +kerning first=268 second=65 amount=-1 +kerning first=268 second=84 amount=-1 +kerning first=268 second=86 amount=-1 +kerning first=268 second=87 amount=-1 +kerning first=268 second=88 amount=-2 +kerning first=268 second=89 amount=-2 +kerning first=268 second=90 amount=-1 +kerning first=268 second=106 amount=1 +kerning first=268 second=171 amount=-1 +kerning first=268 second=173 amount=-1 +kerning first=268 second=193 amount=-1 +kerning first=268 second=194 amount=-1 +kerning first=268 second=196 amount=-1 +kerning first=268 second=197 amount=-1 +kerning first=268 second=198 amount=-1 +kerning first=268 second=221 amount=-2 +kerning first=268 second=256 amount=-1 +kerning first=268 second=258 amount=-1 +kerning first=268 second=260 amount=-1 +kerning first=268 second=354 amount=-1 +kerning first=268 second=356 amount=-1 +kerning first=268 second=372 amount=-1 +kerning first=268 second=374 amount=-2 +kerning first=268 second=376 amount=-2 +kerning first=268 second=377 amount=-1 +kerning first=268 second=379 amount=-1 +kerning first=268 second=381 amount=-1 +kerning first=268 second=913 amount=-1 +kerning first=268 second=916 amount=-1 +kerning first=268 second=918 amount=-1 +kerning first=268 second=923 amount=-1 +kerning first=268 second=932 amount=-1 +kerning first=268 second=933 amount=-2 +kerning first=268 second=935 amount=-2 +kerning first=268 second=939 amount=-2 +kerning first=268 second=1026 amount=-1 +kerning first=268 second=1033 amount=-1 +kerning first=268 second=1035 amount=-1 +kerning first=268 second=1040 amount=-1 +kerning first=268 second=1044 amount=-1 +kerning first=268 second=1046 amount=-2 +kerning first=268 second=1051 amount=-1 +kerning first=268 second=1058 amount=-1 +kerning first=268 second=1061 amount=-2 +kerning first=268 second=1066 amount=-1 +kerning first=268 second=1069 amount=1 +kerning first=268 second=1112 amount=1 +kerning first=268 second=1174 amount=-2 +kerning first=268 second=1176 amount=1 +kerning first=268 second=1184 amount=-1 +kerning first=268 second=1198 amount=-2 +kerning first=268 second=1202 amount=-2 +kerning first=268 second=1298 amount=-1 +kerning first=268 second=8211 amount=-1 +kerning first=268 second=8212 amount=-1 +kerning first=268 second=8218 amount=-1 +kerning first=268 second=8222 amount=-1 +kerning first=268 second=8230 amount=-1 +kerning first=268 second=8249 amount=-1 +kerning first=269 second=34 amount=-1 +kerning first=269 second=39 amount=-1 +kerning first=269 second=63 amount=-1 +kerning first=269 second=118 amount=-1 +kerning first=269 second=119 amount=-1 +kerning first=269 second=120 amount=-1 +kerning first=269 second=373 amount=-1 +kerning first=269 second=947 amount=-1 +kerning first=269 second=955 amount=-1 +kerning first=269 second=957 amount=-1 +kerning first=269 second=1078 amount=-1 +kerning first=269 second=1093 amount=-1 +kerning first=269 second=1175 amount=-1 +kerning first=269 second=1199 amount=-1 +kerning first=269 second=1203 amount=-1 +kerning first=269 second=8216 amount=-1 +kerning first=269 second=8217 amount=-1 +kerning first=269 second=8220 amount=-1 +kerning first=269 second=8221 amount=-1 +kerning first=270 second=44 amount=-1 +kerning first=270 second=46 amount=-1 +kerning first=270 second=47 amount=-1 +kerning first=270 second=65 amount=-2 +kerning first=270 second=84 amount=-2 +kerning first=270 second=86 amount=-2 +kerning first=270 second=87 amount=-2 +kerning first=270 second=88 amount=-3 +kerning first=270 second=89 amount=-3 +kerning first=270 second=90 amount=-1 +kerning first=270 second=193 amount=-2 +kerning first=270 second=194 amount=-2 +kerning first=270 second=196 amount=-2 +kerning first=270 second=197 amount=-2 kerning first=270 second=198 amount=-2 -kerning first=40 second=290 amount=-2 -kerning first=183 second=210 amount=-2 -kerning first=298 second=100 amount=-1 -kerning first=203 second=352 amount=-1 -kerning first=323 second=262 amount=-2 -kerning first=901 second=187 amount=-1 -kerning first=223 second=968 amount=-1 -kerning first=934 second=1079 amount=-1 -kerning first=103 second=1035 amount=-5 -kerning first=249 second=211 amount=-2 -kerning first=369 second=339 amount=-1 -kerning first=372 second=101 amount=-3 -kerning first=271 second=353 amount=-1 -kerning first=184 second=365 amount=-1 -kerning first=327 second=212 amount=-2 -kerning first=8366 second=1194 amount=-2 -kerning first=8372 second=370 amount=-2 -kerning first=1117 second=252 amount=-1 -kerning first=350 second=354 amount=-1 -kerning first=944 second=266 amount=-2 -kerning first=948 second=39 amount=-3 -kerning first=247 second=1184 amount=-5 -kerning first=250 second=366 amount=-2 -kerning first=373 second=279 amount=-1 -kerning first=166 second=171 amount=-3 +kerning first=270 second=221 amount=-3 +kerning first=270 second=256 amount=-2 +kerning first=270 second=258 amount=-2 +kerning first=270 second=260 amount=-2 +kerning first=270 second=354 amount=-2 +kerning first=270 second=356 amount=-2 +kerning first=270 second=372 amount=-2 +kerning first=270 second=374 amount=-3 +kerning first=270 second=376 amount=-3 +kerning first=270 second=377 amount=-1 +kerning first=270 second=379 amount=-1 +kerning first=270 second=381 amount=-1 +kerning first=270 second=913 amount=-2 +kerning first=270 second=916 amount=-2 +kerning first=270 second=918 amount=-1 +kerning first=270 second=923 amount=-2 +kerning first=270 second=932 amount=-2 +kerning first=270 second=933 amount=-3 +kerning first=270 second=935 amount=-3 +kerning first=270 second=939 amount=-3 +kerning first=270 second=955 amount=-2 +kerning first=270 second=967 amount=-1 +kerning first=270 second=1026 amount=-2 +kerning first=270 second=1033 amount=-1 +kerning first=270 second=1035 amount=-2 +kerning first=270 second=1040 amount=-2 +kerning first=270 second=1044 amount=-1 +kerning first=270 second=1046 amount=-3 +kerning first=270 second=1051 amount=-1 +kerning first=270 second=1058 amount=-2 +kerning first=270 second=1061 amount=-3 +kerning first=270 second=1066 amount=-2 +kerning first=270 second=1071 amount=-1 +kerning first=270 second=1174 amount=-3 +kerning first=270 second=1184 amount=-2 +kerning first=270 second=1198 amount=-3 +kerning first=270 second=1202 amount=-3 +kerning first=270 second=1298 amount=-1 +kerning first=270 second=8218 amount=-1 +kerning first=270 second=8222 amount=-1 +kerning first=270 second=8230 amount=-1 +kerning first=272 second=44 amount=-1 +kerning first=272 second=46 amount=-1 +kerning first=272 second=47 amount=-1 +kerning first=272 second=65 amount=-2 +kerning first=272 second=84 amount=-2 +kerning first=272 second=86 amount=-2 +kerning first=272 second=87 amount=-2 +kerning first=272 second=88 amount=-3 +kerning first=272 second=89 amount=-3 +kerning first=272 second=90 amount=-1 +kerning first=272 second=193 amount=-2 +kerning first=272 second=194 amount=-2 +kerning first=272 second=196 amount=-2 +kerning first=272 second=197 amount=-2 +kerning first=272 second=198 amount=-2 +kerning first=272 second=221 amount=-3 +kerning first=272 second=256 amount=-2 +kerning first=272 second=258 amount=-2 +kerning first=272 second=260 amount=-2 +kerning first=272 second=354 amount=-2 +kerning first=272 second=356 amount=-2 +kerning first=272 second=372 amount=-2 +kerning first=272 second=374 amount=-3 +kerning first=272 second=376 amount=-3 +kerning first=272 second=377 amount=-1 +kerning first=272 second=379 amount=-1 +kerning first=272 second=381 amount=-1 +kerning first=272 second=913 amount=-2 +kerning first=272 second=916 amount=-2 +kerning first=272 second=918 amount=-1 +kerning first=272 second=923 amount=-2 +kerning first=272 second=932 amount=-2 +kerning first=272 second=933 amount=-3 +kerning first=272 second=935 amount=-3 +kerning first=272 second=939 amount=-3 +kerning first=272 second=955 amount=-2 +kerning first=272 second=967 amount=-1 +kerning first=272 second=1026 amount=-2 +kerning first=272 second=1033 amount=-1 +kerning first=272 second=1035 amount=-2 +kerning first=272 second=1040 amount=-2 +kerning first=272 second=1044 amount=-1 +kerning first=272 second=1046 amount=-3 +kerning first=272 second=1051 amount=-1 +kerning first=272 second=1058 amount=-2 +kerning first=272 second=1061 amount=-3 +kerning first=272 second=1066 amount=-2 +kerning first=272 second=1071 amount=-1 +kerning first=272 second=1174 amount=-3 +kerning first=272 second=1184 amount=-2 +kerning first=272 second=1198 amount=-3 +kerning first=272 second=1202 amount=-3 +kerning first=272 second=1298 amount=-1 +kerning first=272 second=8218 amount=-1 +kerning first=272 second=8222 amount=-1 +kerning first=272 second=8230 amount=-1 +kerning first=275 second=34 amount=-1 +kerning first=275 second=39 amount=-1 +kerning first=275 second=44 amount=-1 +kerning first=275 second=46 amount=-1 +kerning first=275 second=47 amount=-1 +kerning first=275 second=63 amount=-2 +kerning first=275 second=102 amount=-1 +kerning first=275 second=118 amount=-1 +kerning first=275 second=119 amount=-1 +kerning first=275 second=120 amount=-2 +kerning first=275 second=122 amount=-1 +kerning first=275 second=373 amount=-1 +kerning first=275 second=378 amount=-1 +kerning first=275 second=380 amount=-1 +kerning first=275 second=382 amount=-1 +kerning first=275 second=947 amount=-1 +kerning first=275 second=955 amount=-1 +kerning first=275 second=957 amount=-1 +kerning first=275 second=964 amount=-1 +kerning first=275 second=967 amount=-2 +kerning first=275 second=1076 amount=-1 +kerning first=275 second=1078 amount=-2 +kerning first=275 second=1083 amount=-1 +kerning first=275 second=1090 amount=-1 +kerning first=275 second=1093 amount=-2 +kerning first=275 second=1098 amount=-1 +kerning first=275 second=1113 amount=-1 +kerning first=275 second=1175 amount=-2 +kerning first=275 second=1185 amount=-1 +kerning first=275 second=1199 amount=-1 +kerning first=275 second=1203 amount=-2 +kerning first=275 second=1299 amount=-1 +kerning first=275 second=8216 amount=-1 +kerning first=275 second=8217 amount=-1 +kerning first=275 second=8218 amount=-1 +kerning first=275 second=8220 amount=-1 +kerning first=275 second=8221 amount=-1 +kerning first=275 second=8222 amount=-1 +kerning first=275 second=8230 amount=-1 +kerning first=277 second=34 amount=-1 +kerning first=277 second=39 amount=-1 +kerning first=277 second=44 amount=-1 +kerning first=277 second=46 amount=-1 +kerning first=277 second=47 amount=-1 +kerning first=277 second=63 amount=-2 +kerning first=277 second=102 amount=-1 +kerning first=277 second=118 amount=-1 +kerning first=277 second=119 amount=-1 +kerning first=277 second=120 amount=-2 +kerning first=277 second=122 amount=-1 +kerning first=277 second=373 amount=-1 +kerning first=277 second=378 amount=-1 +kerning first=277 second=380 amount=-1 +kerning first=277 second=382 amount=-1 +kerning first=277 second=947 amount=-1 +kerning first=277 second=955 amount=-1 +kerning first=277 second=957 amount=-1 +kerning first=277 second=964 amount=-1 +kerning first=277 second=967 amount=-2 +kerning first=277 second=1076 amount=-1 +kerning first=277 second=1078 amount=-2 +kerning first=277 second=1083 amount=-1 +kerning first=277 second=1090 amount=-1 +kerning first=277 second=1093 amount=-2 +kerning first=277 second=1098 amount=-1 +kerning first=277 second=1113 amount=-1 +kerning first=277 second=1175 amount=-2 +kerning first=277 second=1185 amount=-1 +kerning first=277 second=1199 amount=-1 +kerning first=277 second=1203 amount=-2 +kerning first=277 second=1299 amount=-1 +kerning first=277 second=8216 amount=-1 +kerning first=277 second=8217 amount=-1 +kerning first=277 second=8218 amount=-1 +kerning first=277 second=8220 amount=-1 +kerning first=277 second=8221 amount=-1 +kerning first=277 second=8222 amount=-1 +kerning first=277 second=8230 amount=-1 +kerning first=279 second=34 amount=-1 +kerning first=279 second=39 amount=-1 +kerning first=279 second=44 amount=-1 +kerning first=279 second=46 amount=-1 +kerning first=279 second=47 amount=-1 kerning first=279 second=63 amount=-2 -kerning first=182 second=8217 amount=-3 -kerning first=303 second=225 amount=-1 -kerning first=71 second=87 amount=-1 -kerning first=1085 second=267 amount=-1 -kerning first=325 second=1185 amount=-3 -kerning first=88 second=940 amount=-2 -kerning first=91 second=249 amount=-1 -kerning first=248 second=8218 amount=-1 -kerning first=971 second=356 amount=-5 -kerning first=49 second=338 amount=-2 -kerning first=52 second=100 amount=-1 -kerning first=1051 second=972 amount=-1 -kerning first=192 second=250 amount=-1 -kerning first=189 second=941 amount=-1 -kerning first=1063 second=281 amount=-1 -kerning first=72 second=262 amount=-2 -kerning first=215 second=187 amount=-1 -kerning first=326 second=8220 amount=-1 -kerning first=912 second=227 amount=-1 -kerning first=95 second=199 amount=-2 -kerning first=1170 second=357 amount=-1 -kerning first=238 second=89 amount=-5 -kerning first=950 second=369 amount=-1 -kerning first=112 second=1098 amount=-1 -kerning first=1219 second=973 amount=-1 -kerning first=118 second=101 amount=-1 -kerning first=258 second=251 amount=-1 -kerning first=8226 second=106 amount=1 -kerning first=1067 second=228 amount=-1 -kerning first=76 second=212 amount=-1 -kerning first=1096 second=370 amount=-2 -kerning first=910 second=1256 amount=-3 -kerning first=93 second=1118 amount=-1 -kerning first=96 second=354 amount=-5 -kerning first=239 second=266 amount=-2 -kerning first=242 second=39 amount=-1 -kerning first=958 second=79 amount=-2 -kerning first=119 second=279 amount=-1 -kerning first=1263 second=229 amount=-1 -kerning first=1027 second=920 amount=-2 -kerning first=176 second=213 amount=-2 -kerning first=8224 second=1026 amount=-5 -kerning first=8230 second=286 amount=-1 -kerning first=57 second=225 amount=-1 -kerning first=1065 second=1257 amount=-1 -kerning first=197 second=355 amount=-1 -kerning first=200 second=115 amount=-1 -kerning first=315 second=267 amount=-1 -kerning first=74 second=1185 amount=-3 -kerning first=77 second=367 amount=-1 -kerning first=1184 second=242 amount=-2 -kerning first=955 second=945 amount=-1 -kerning first=1298 second=1240 amount=-2 -kerning first=123 second=226 amount=-1 -kerning first=177 second=368 amount=-2 -kerning first=291 second=281 amount=-1 -kerning first=8260 second=231 amount=-1 -kerning first=8363 second=373 amount=-4 -kerning first=936 second=269 amount=-1 -kerning first=178 second=1066 amount=-5 -kerning first=175 second=8221 amount=-3 -kerning first=297 second=228 amount=-1 -kerning first=8249 second=1298 amount=-1 -kerning first=1074 second=962 amount=-1 -kerning first=205 second=240 amount=-1 -kerning first=317 second=1194 amount=-2 -kerning first=322 second=370 amount=-2 -kerning first=900 second=283 amount=-1 -kerning first=942 second=217 amount=-2 -kerning first=242 second=8222 amount=-1 -kerning first=251 second=79 amount=-2 -kerning first=371 second=229 amount=-1 -kerning first=968 second=119 amount=-4 -kerning first=965 second=359 amount=-1 -kerning first=8211 second=194 amount=-2 -kerning first=1041 second=1026 amount=-5 -kerning first=46 second=103 amount=-1 -kerning first=186 second=253 amount=-1 -kerning first=1083 second=218 amount=-2 -kerning first=904 second=230 amount=-1 -kerning first=940 second=947 amount=-2 -kerning first=249 second=945 amount=-1 -kerning first=369 second=1262 amount=-2 -kerning first=372 second=1240 amount=-2 -kerning first=165 second=268 amount=-2 -kerning first=47 second=281 amount=-1 -kerning first=1084 second=373 amount=-4 -kerning first=902 second=1263 amount=-1 -kerning first=87 second=1169 amount=-2 -kerning first=93 second=117 amount=-1 -kerning first=1220 second=232 amount=-1 -kerning first=376 second=332 amount=-3 -kerning first=973 second=244 amount=-1 -kerning first=169 second=216 amount=-2 -kerning first=282 second=106 amount=1 -kerning first=8220 second=289 amount=-1 -kerning first=8216 second=1033 amount=-3 -kerning first=51 second=228 amount=-1 -kerning first=194 second=118 amount=-4 -kerning first=303 second=962 amount=-1 -kerning first=214 second=283 amount=-1 -kerning first=1174 second=245 amount=-1 -kerning first=237 second=217 amount=-2 -kerning first=952 second=257 amount=-1 -kerning first=117 second=229 amount=-1 -kerning first=260 second=119 amount=-4 -kerning first=377 second=963 amount=-1 -kerning first=380 second=271 amount=-1 -kerning first=1028 second=194 amount=-1 -kerning first=167 second=1195 amount=-1 -kerning first=170 second=371 amount=-1 -kerning first=280 second=1026 amount=-5 -kerning first=8225 second=234 amount=-1 -kerning first=49 second=1257 amount=-1 -kerning first=1063 second=1090 amount=-3 -kerning first=313 second=218 amount=-1 -kerning first=339 second=120 amount=-2 -kerning first=912 second=964 amount=-3 -kerning first=928 second=45 amount=-2 -kerning first=235 second=947 amount=-1 -kerning first=238 second=372 amount=-5 -kerning first=361 second=287 amount=-1 -kerning first=1299 second=97 amount=-1 -kerning first=1026 second=1108 amount=-1 -kerning first=178 second=81 amount=-2 -kerning first=289 second=231 amount=-1 -kerning first=1067 second=965 amount=-1 -kerning first=314 second=373 amount=-4 -kerning first=931 second=220 amount=-2 -kerning first=365 second=232 amount=-1 -kerning first=958 second=362 amount=-2 -kerning first=1263 second=966 amount=-1 -kerning first=40 second=106 amount=7 -kerning first=1037 second=289 amount=-1 -kerning first=57 second=962 amount=-1 -kerning first=323 second=83 amount=-1 -kerning first=8365 second=261 amount=-1 -kerning first=1103 second=363 amount=-1 -kerning first=223 second=333 amount=-1 -kerning first=934 second=375 amount=-1 -kerning first=955 second=8211 amount=-2 -kerning first=123 second=963 amount=-1 -kerning first=126 second=271 amount=-1 -kerning first=38 second=1026 amount=-5 -kerning first=44 second=56 amount=-1 -kerning first=41 second=286 amount=-2 -kerning first=1044 second=234 amount=-1 -kerning first=291 second=1090 amount=-3 -kerning first=296 second=334 amount=-2 -kerning first=8260 second=968 amount=-1 -kerning first=64 second=218 amount=-2 -kerning first=204 second=346 amount=-1 -kerning first=8372 second=211 amount=-2 -kerning first=81 second=1174 amount=-3 -kerning first=87 second=120 amount=-1 -kerning first=224 second=964 amount=-1 -kerning first=928 second=8249 amount=-3 -kerning first=944 second=85 amount=-2 -kerning first=107 second=287 amount=-2 -kerning first=1202 second=235 amount=-1 -kerning first=373 second=97 amount=-1 -kerning first=163 second=219 amount=-2 -kerning first=273 second=347 amount=-1 -kerning first=185 second=361 amount=-1 -kerning first=188 second=121 amount=-1 -kerning first=297 second=965 amount=-1 -kerning first=65 second=373 amount=-4 -kerning first=1074 second=8250 amount=-1 -kerning first=205 second=1028 amount=-2 -kerning first=8369 second=1184 amount=-5 -kerning first=903 second=336 amount=-2 -kerning first=1118 second=248 amount=-1 -kerning first=354 second=110 amount=-2 -kerning first=251 second=362 amount=-2 -kerning first=371 second=966 amount=-1 -kerning first=374 second=275 amount=-4 -kerning first=164 second=374 amount=-5 -kerning first=1051 second=337 amount=-1 -kerning first=1063 second=99 amount=-1 -kerning first=192 second=71 amount=-2 -kerning first=304 second=221 amount=-5 -kerning first=72 second=83 amount=-1 -kerning first=1087 second=261 amount=-1 -kerning first=1083 second=953 amount=-1 -kerning first=330 second=363 amount=-1 -kerning first=92 second=245 amount=-1 -kerning first=950 second=210 amount=-2 -kerning first=1219 second=338 amount=-2 -kerning first=249 second=8211 amount=-2 -kerning first=1224 second=100 amount=-1 -kerning first=171 second=84 amount=-1 -kerning first=47 second=1090 amount=-3 -kerning first=50 second=334 amount=-2 -kerning first=1064 second=277 amount=-1 -kerning first=193 second=246 amount=-1 -kerning first=305 second=376 amount=-5 -kerning first=1096 second=211 amount=-2 -kerning first=327 second=8212 amount=-2 -kerning first=1176 second=113 amount=-1 -kerning first=1171 second=353 amount=-1 -kerning first=239 second=85 amount=-2 -kerning first=951 second=365 amount=-1 -kerning first=113 second=1094 amount=2 -kerning first=119 second=97 amount=-1 -kerning first=256 second=936 amount=-3 -kerning first=379 second=377 amount=1 -kerning first=172 second=259 amount=-1 -kerning first=176 second=34 amount=-3 -kerning first=8230 second=102 amount=-2 -kerning first=51 second=965 amount=-1 -kerning first=57 second=46 amount=-1 -kerning first=303 second=8250 amount=-1 -kerning first=315 second=86 amount=-5 -kerning first=338 second=248 amount=-1 -kerning first=926 second=171 amount=-3 -kerning first=1184 second=63 amount=-2 -kerning first=949 second=8217 amount=-1 -kerning first=117 second=966 amount=-1 -kerning first=120 second=275 amount=-2 -kerning first=1298 second=225 amount=-1 -kerning first=35 second=289 amount=-1 -kerning first=291 second=99 amount=-1 -kerning first=58 second=221 amount=-5 -kerning first=1069 second=379 amount=-1 -kerning first=198 second=351 amount=-1 -kerning first=201 second=111 amount=-1 -kerning first=316 second=261 amount=-1 -kerning first=8363 second=214 amount=-2 -kerning first=78 second=363 amount=-1 -kerning first=75 second=1177 amount=-1 -kerning first=367 second=100 amount=-1 -kerning first=956 second=941 amount=-1 -kerning first=39 second=234 amount=-1 -kerning first=1036 second=1241 amount=-2 -kerning first=1039 second=187 amount=-1 -kerning first=178 second=364 amount=-2 -kerning first=289 second=968 amount=-1 -kerning first=294 second=277 amount=-1 -kerning first=59 second=376 amount=-5 -kerning first=202 second=291 amount=-1 -kerning first=199 second=1035 amount=-1 -kerning first=322 second=211 amount=-2 -kerning first=8364 second=369 amount=-1 -kerning first=900 second=101 amount=-1 -kerning first=76 second=8212 amount=-3 -kerning first=343 second=353 amount=-1 -kerning first=105 second=235 amount=-1 -kerning first=176 second=8216 amount=-3 -kerning first=298 second=224 amount=-1 -kerning first=57 second=8250 amount=-1 -kerning first=66 second=86 amount=-1 -kerning first=1083 second=39 amount=-3 -kerning first=318 second=1184 amount=-5 -kerning first=323 second=366 amount=-2 -kerning first=8377 second=79 amount=-2 -kerning first=901 second=279 amount=-1 -kerning first=86 second=248 amount=-3 -kerning first=243 second=8217 amount=-1 -kerning first=372 second=225 amount=-2 -kerning first=165 second=87 amount=-5 -kerning first=47 second=99 amount=-2 -kerning first=184 second=940 amount=-1 -kerning first=64 second=953 amount=-1 -kerning first=1084 second=214 amount=-2 -kerning first=8372 second=945 amount=-1 -kerning first=905 second=226 amount=-1 -kerning first=1117 second=356 amount=-5 -kerning first=1168 second=116 amount=-1 -kerning first=944 second=368 amount=-2 -kerning first=113 second=100 amount=-1 -kerning first=1202 second=972 amount=-1 -kerning first=253 second=250 amount=-1 -kerning first=250 second=941 amount=-1 -kerning first=1207 second=281 amount=-1 -kerning first=166 second=262 amount=-2 -kerning first=276 second=1241 amount=-1 -kerning first=48 second=277 amount=-1 -kerning first=191 second=199 amount=-2 -kerning first=300 second=1079 amount=-1 -kerning first=306 second=89 amount=-5 -kerning first=1085 second=369 amount=-1 -kerning first=214 second=101 amount=-1 -kerning first=91 second=353 amount=-1 -kerning first=94 second=113 amount=-1 -kerning first=231 second=955 amount=-1 -kerning first=942 second=8221 amount=-3 -kerning first=1223 second=228 amount=-1 -kerning first=374 second=1080 amount=-3 -kerning first=170 second=212 amount=-2 +kerning first=279 second=102 amount=-1 +kerning first=279 second=118 amount=-1 +kerning first=279 second=119 amount=-1 +kerning first=279 second=120 amount=-2 +kerning first=279 second=122 amount=-1 +kerning first=279 second=373 amount=-1 +kerning first=279 second=378 amount=-1 +kerning first=279 second=380 amount=-1 +kerning first=279 second=382 amount=-1 +kerning first=279 second=947 amount=-1 +kerning first=279 second=955 amount=-1 +kerning first=279 second=957 amount=-1 +kerning first=279 second=964 amount=-1 +kerning first=279 second=967 amount=-2 +kerning first=279 second=1076 amount=-1 +kerning first=279 second=1078 amount=-2 +kerning first=279 second=1083 amount=-1 +kerning first=279 second=1090 amount=-1 +kerning first=279 second=1093 amount=-2 +kerning first=279 second=1098 amount=-1 +kerning first=279 second=1113 amount=-1 +kerning first=279 second=1175 amount=-2 +kerning first=279 second=1185 amount=-1 +kerning first=279 second=1199 amount=-1 +kerning first=279 second=1203 amount=-2 +kerning first=279 second=1299 amount=-1 +kerning first=279 second=8216 amount=-1 +kerning first=279 second=8217 amount=-1 +kerning first=279 second=8218 amount=-1 +kerning first=279 second=8220 amount=-1 +kerning first=279 second=8221 amount=-1 +kerning first=279 second=8222 amount=-1 +kerning first=279 second=8230 amount=-1 +kerning first=281 second=34 amount=-1 +kerning first=281 second=39 amount=-1 +kerning first=281 second=44 amount=-1 +kerning first=281 second=46 amount=-1 +kerning first=281 second=47 amount=-1 +kerning first=281 second=63 amount=-2 +kerning first=281 second=102 amount=-1 +kerning first=281 second=118 amount=-1 +kerning first=281 second=119 amount=-1 +kerning first=281 second=120 amount=-2 +kerning first=281 second=122 amount=-1 +kerning first=281 second=373 amount=-1 +kerning first=281 second=378 amount=-1 +kerning first=281 second=380 amount=-1 +kerning first=281 second=382 amount=-1 +kerning first=281 second=947 amount=-1 +kerning first=281 second=955 amount=-1 +kerning first=281 second=957 amount=-1 +kerning first=281 second=964 amount=-1 +kerning first=281 second=967 amount=-2 +kerning first=281 second=1076 amount=-1 +kerning first=281 second=1078 amount=-2 +kerning first=281 second=1083 amount=-1 +kerning first=281 second=1090 amount=-1 +kerning first=281 second=1093 amount=-2 +kerning first=281 second=1098 amount=-1 +kerning first=281 second=1113 amount=-1 +kerning first=281 second=1175 amount=-2 +kerning first=281 second=1185 amount=-1 +kerning first=281 second=1199 amount=-1 +kerning first=281 second=1203 amount=-2 +kerning first=281 second=1299 amount=-1 +kerning first=281 second=8216 amount=-1 +kerning first=281 second=8217 amount=-1 +kerning first=281 second=8218 amount=-1 +kerning first=281 second=8220 amount=-1 +kerning first=281 second=8221 amount=-1 +kerning first=281 second=8222 amount=-1 +kerning first=281 second=8230 amount=-1 +kerning first=283 second=34 amount=-1 +kerning first=283 second=39 amount=-1 +kerning first=283 second=44 amount=-1 +kerning first=283 second=46 amount=-1 +kerning first=283 second=47 amount=-1 +kerning first=283 second=63 amount=-2 kerning first=283 second=102 amount=-1 -kerning first=8221 second=283 amount=-1 -kerning first=52 second=224 amount=-1 -kerning first=1051 second=1256 amount=-2 -kerning first=192 second=354 amount=-5 -kerning first=189 second=1118 amount=-1 -kerning first=313 second=39 amount=-3 -kerning first=69 second=1184 amount=-5 -kerning first=72 second=366 amount=-2 -kerning first=215 second=279 amount=-1 -kerning first=98 second=63 amount=-2 -kerning first=1170 second=920 amount=-2 -kerning first=238 second=213 amount=-2 -kerning first=361 second=103 amount=-1 -kerning first=118 second=225 amount=-1 -kerning first=1219 second=1257 amount=-1 -kerning first=258 second=355 amount=-1 -kerning first=381 second=267 amount=-1 -kerning first=168 second=1185 amount=-3 -kerning first=8226 second=230 amount=-1 -kerning first=193 second=1038 amount=-2 -kerning first=314 second=214 amount=-2 -kerning first=70 second=8218 amount=-4 -kerning first=1096 second=945 amount=-1 -kerning first=923 second=268 amount=-2 -kerning first=239 second=368 amount=-2 -kerning first=37 second=187 amount=-1 -kerning first=34 second=1241 amount=-1 -kerning first=169 second=8220 amount=-3 -kerning first=8224 second=1263 amount=-1 -kerning first=54 second=1079 amount=-1 -kerning first=60 second=89 amount=-5 -kerning first=1071 second=269 amount=-1 -kerning first=315 second=369 amount=-1 -kerning first=80 second=251 amount=-1 -kerning first=934 second=216 amount=-2 -kerning first=237 second=8221 amount=-3 -kerning first=240 second=1066 amount=-5 -kerning first=963 second=118 amount=-4 -kerning first=1298 second=962 amount=-1 -kerning first=177 second=943 amount=-1 -kerning first=180 second=252 amount=-1 -kerning first=8260 second=333 amount=-1 -kerning first=61 second=266 amount=-2 -kerning first=64 second=39 amount=-3 -kerning first=8363 second=949 amount=-1 -kerning first=8366 second=257 amount=-1 -kerning first=221 second=1081 amount=-3 -kerning first=928 second=1195 amount=-1 -kerning first=936 second=371 amount=-1 -kerning first=107 second=103 amount=-2 -kerning first=247 second=253 amount=-1 -kerning first=160 second=267 amount=-1 -kerning first=1046 second=230 amount=-1 -kerning first=65 second=214 amount=-2 -kerning first=1074 second=947 amount=-4 -kerning first=202 second=1101 amount=-1 -kerning first=322 second=945 amount=-1 -kerning first=900 second=1240 amount=-2 -kerning first=88 second=116 amount=-1 -kerning first=105 second=972 amount=-1 -kerning first=108 second=281 amount=-1 -kerning first=1203 second=231 amount=-1 -kerning first=968 second=243 amount=-1 -kerning first=1041 second=1263 amount=-1 -kerning first=186 second=357 amount=-1 -kerning first=189 second=117 amount=-1 -kerning first=301 second=269 amount=-1 -kerning first=206 second=973 amount=-1 -kerning first=8370 second=1176 amount=-1 -kerning first=8377 second=362 amount=-2 -kerning first=904 second=332 amount=-2 -kerning first=1119 second=244 amount=-1 -kerning first=255 second=118 amount=-4 -kerning first=372 second=962 amount=-3 -kerning first=162 second=1194 amount=-2 -kerning first=165 second=370 amount=-2 -kerning first=278 second=283 amount=-1 -kerning first=44 second=1256 amount=-1 -kerning first=47 second=382 amount=-2 -kerning first=193 second=67 amount=-2 -kerning first=187 second=1044 amount=-2 -kerning first=305 second=217 amount=-2 -kerning first=73 second=79 amount=-2 -kerning first=1084 second=949 amount=-1 -kerning first=8372 second=8211 amount=-2 -kerning first=905 second=963 amount=-1 -kerning first=910 second=271 amount=-4 -kerning first=90 second=920 amount=-1 -kerning first=356 second=286 amount=-1 -kerning first=1207 second=1090 amount=-2 -kerning first=1220 second=334 amount=-2 -kerning first=973 second=346 amount=-1 -kerning first=282 second=230 amount=-1 -kerning first=1062 second=964 amount=-2 -kerning first=1065 second=273 amount=-1 -kerning first=194 second=242 amount=-1 -kerning first=303 second=947 amount=-4 -kerning first=306 second=372 amount=-5 -kerning first=214 second=1240 amount=-2 -kerning first=916 second=219 amount=-2 -kerning first=1169 second=1108 amount=-1 -kerning first=240 second=81 amount=-2 -kerning first=949 second=1175 amount=-1 -kerning first=952 second=361 amount=-1 -kerning first=955 second=121 amount=-1 -kerning first=1223 second=965 amount=-1 -kerning first=260 second=243 amount=-1 -kerning first=280 second=1263 amount=-1 -kerning first=8225 second=336 amount=-2 -kerning first=55 second=269 amount=-1 -kerning first=1095 second=1176 amount=-1 -kerning first=1101 second=122 amount=-1 -kerning first=920 second=374 amount=-3 -kerning first=118 second=962 amount=-1 -kerning first=1299 second=221 amount=-5 -kerning first=266 second=193 amount=-1 -kerning first=36 second=283 amount=-1 -kerning first=1036 second=233 amount=-2 -kerning first=289 second=333 amount=-1 -kerning first=59 second=217 amount=-2 -kerning first=314 second=949 amount=-1 -kerning first=317 second=257 amount=-1 -kerning first=8364 second=210 amount=-2 -kerning first=1096 second=8211 amount=-2 -kerning first=1186 second=234 amount=-1 -kerning first=365 second=334 amount=-2 -kerning first=962 second=246 amount=-1 -kerning first=125 second=218 amount=-2 -kerning first=40 second=230 amount=-1 -kerning first=179 second=360 amount=-2 -kerning first=298 second=45 amount=-2 -kerning first=57 second=947 amount=-4 -kerning first=60 second=372 amount=-5 -kerning first=203 second=287 amount=-1 -kerning first=8365 second=365 amount=-1 -kerning first=901 second=97 amount=-1 -kerning first=341 second=1108 amount=-1 -kerning first=243 second=1175 amount=-2 -kerning first=249 second=121 amount=-1 -kerning first=372 second=46 amount=-3 -kerning first=126 second=373 amount=-4 -kerning first=1298 second=8250 amount=-1 -kerning first=271 second=288 amount=-2 -kerning first=38 second=1263 amount=-1 -kerning first=1044 second=336 amount=-1 -kerning first=299 second=220 amount=-2 -kerning first=207 second=232 amount=-1 -kerning first=321 second=1176 amount=-1 -kerning first=8363 second=8217 amount=-3 -kerning first=902 second=275 amount=-1 -kerning first=87 second=244 amount=-3 -kerning first=1202 second=337 amount=-1 -kerning first=1207 second=99 amount=-1 -kerning first=253 second=71 amount=-2 -kerning first=967 second=351 amount=-1 -kerning first=166 second=83 amount=-1 -kerning first=276 second=233 amount=-1 -kerning first=1046 second=967 amount=-2 -kerning first=188 second=245 amount=-1 -kerning first=300 second=375 amount=-1 -kerning first=65 second=949 amount=-1 -kerning first=1085 second=210 amount=-2 -kerning first=322 second=8211 amount=-2 -kerning first=1118 second=352 amount=-1 -kerning first=354 second=234 amount=-3 -kerning first=108 second=1090 amount=-3 -kerning first=1210 second=277 amount=-1 -kerning first=254 second=246 amount=-1 -kerning first=968 second=1035 amount=-5 -kerning first=971 second=291 amount=-1 -kerning first=8217 second=339 amount=-1 -kerning first=49 second=273 amount=-1 -kerning first=52 second=45 amount=-2 -kerning first=8221 second=101 amount=-1 -kerning first=46 second=964 amount=-3 -kerning first=298 second=8249 amount=-3 -kerning first=1087 second=365 amount=-1 -kerning first=215 second=97 amount=-1 -kerning first=908 second=377 amount=-1 -kerning first=92 second=347 amount=-1 -kerning first=89 second=1108 amount=-4 -kerning first=238 second=34 amount=-3 -kerning first=118 second=46 amount=-2 -kerning first=1224 second=224 amount=-1 -kerning first=372 second=8250 amount=-2 -kerning first=53 second=220 amount=-2 -kerning first=1067 second=171 amount=-3 -kerning first=193 second=350 amount=-1 -kerning first=73 second=362 amount=-2 -kerning first=1084 second=8217 amount=-3 -kerning first=70 second=1176 amount=-1 -kerning first=923 second=87 amount=-5 -kerning first=96 second=289 amount=-1 -kerning first=356 second=1096 amount=-2 -kerning first=951 second=940 amount=-1 -kerning first=1256 second=379 amount=-1 -kerning first=34 second=233 amount=-1 -kerning first=169 second=1177 amount=-1 -kerning first=172 second=363 amount=-1 -kerning first=54 second=375 amount=-1 -kerning first=197 second=290 amount=-2 -kerning first=315 second=210 amount=-1 -kerning first=1097 second=941 amount=-1 -kerning first=338 second=352 amount=-1 -kerning first=926 second=262 amount=-2 -kerning first=100 second=234 amount=-1 -kerning first=1184 second=187 amount=-2 -kerning first=240 second=364 amount=-2 -kerning first=363 second=277 amount=-1 -kerning first=960 second=199 amount=-2 -kerning first=260 second=1035 amount=-5 -kerning first=1035 second=339 amount=-1 -kerning first=170 second=8212 amount=-2 -kerning first=174 second=1059 amount=-2 -kerning first=52 second=8249 amount=-3 -kerning first=61 second=85 amount=-2 -kerning first=1069 second=955 amount=-2 -kerning first=1073 second=263 amount=-1 -kerning first=201 second=235 amount=-1 -kerning first=316 second=365 amount=-1 -kerning first=936 second=212 amount=-2 -kerning first=238 second=8216 amount=-3 -kerning first=367 second=224 amount=-1 -kerning first=956 second=1118 amount=-1 -kerning first=1240 second=1184 amount=-2 -kerning first=1039 second=279 amount=-1 -kerning first=182 second=248 amount=-1 -kerning first=297 second=171 amount=-3 -kerning first=314 second=8217 amount=-3 -kerning first=8369 second=253 amount=-1 -kerning first=900 second=225 amount=-1 -kerning first=85 second=197 amount=-2 -kerning first=931 second=1185 amount=-3 -kerning first=105 second=337 amount=-1 -kerning first=108 second=99 amount=-1 -kerning first=962 second=1038 amount=-2 -kerning first=161 second=261 amount=-1 -kerning first=125 second=953 amount=-1 -kerning first=46 second=48 amount=-1 -kerning first=206 second=338 amount=-2 -kerning first=209 second=100 amount=-1 -kerning first=323 second=941 amount=-1 -kerning first=86 second=352 amount=-1 -kerning first=89 second=112 amount=-3 -kerning first=934 second=8220 amount=-3 -kerning first=252 second=199 amount=-2 -kerning first=375 second=89 amount=-5 -kerning first=369 second=1079 amount=-1 -kerning first=372 second=326 amount=-2 -kerning first=165 second=211 amount=-2 -kerning first=271 second=1098 amount=-3 -kerning first=278 second=101 amount=-1 -kerning first=8218 second=54 amount=-1 -kerning first=190 second=113 amount=-1 -kerning first=302 second=263 amount=-1 -kerning first=1080 second=1066 amount=-5 -kerning first=1168 second=240 amount=-1 -kerning first=944 second=943 amount=-1 -kerning first=948 second=252 amount=-1 -kerning first=113 second=224 amount=-1 -kerning first=1202 second=1256 amount=-1 -kerning first=250 second=1118 amount=-1 -kerning first=253 second=354 amount=-5 -kerning first=376 second=266 amount=-3 -kerning first=163 second=1184 amount=-5 -kerning first=166 second=366 amount=-2 -kerning first=276 second=970 amount=-1 -kerning first=8220 second=229 amount=-1 -kerning first=51 second=171 amount=-3 -kerning first=194 second=63 amount=-5 -kerning first=306 second=213 amount=-2 -kerning first=65 second=8217 amount=-3 -kerning first=214 second=225 amount=-1 -kerning first=254 second=1038 amount=-2 -kerning first=971 second=1101 amount=-1 -kerning first=72 second=941 amount=-1 -kerning first=75 second=250 amount=-1 -kerning first=95 second=1241 amount=-1 -kerning first=232 second=8220 amount=-1 -kerning first=361 second=227 amount=-1 -kerning first=950 second=1169 amount=-2 -kerning first=956 second=117 amount=-1 -kerning first=121 second=89 amount=-5 -kerning first=36 second=101 amount=-1 -kerning first=1026 second=973 amount=-1 -kerning first=175 second=251 amount=-1 -kerning first=8226 second=332 amount=-2 -kerning first=56 second=263 amount=-1 -kerning first=305 second=8221 amount=-3 -kerning first=1102 second=118 amount=-1 -kerning first=222 second=90 amount=-1 -kerning first=915 second=1194 amount=-2 -kerning first=923 second=370 amount=-2 -kerning first=1179 second=283 amount=-1 -kerning first=239 second=943 amount=-1 -kerning first=962 second=67 amount=-2 -kerning first=125 second=39 amount=-3 -kerning first=37 second=279 amount=-1 -kerning first=1037 second=229 amount=-1 -kerning first=60 second=213 amount=-2 -kerning first=1071 second=371 amount=-1 -kerning first=203 second=103 amount=-1 -kerning first=318 second=253 amount=-1 -kerning first=80 second=355 amount=-1 -kerning first=223 second=267 amount=-1 -kerning first=963 second=242 amount=-1 -kerning first=126 second=214 amount=-2 -kerning first=1298 second=947 amount=-4 -kerning first=41 second=226 amount=-1 -kerning first=1035 second=1262 amount=-2 -kerning first=180 second=356 amount=-5 -kerning first=184 second=116 amount=-1 -kerning first=296 second=268 amount=-2 -kerning first=61 second=368 amount=-2 -kerning first=1073 second=1069 amount=-1 -kerning first=1080 second=81 amount=-2 -kerning first=201 second=972 amount=-1 -kerning first=204 second=281 amount=-1 -kerning first=8366 second=361 amount=-1 -kerning first=8372 second=121 amount=-1 -kerning first=87 second=65 amount=-5 -kerning first=107 second=227 amount=-1 -kerning first=247 second=357 amount=-1 -kerning first=250 second=117 amount=-1 -kerning first=160 second=369 amount=-1 -kerning first=1046 second=332 amount=-3 -kerning first=300 second=216 amount=-2 -kerning first=62 second=1066 amount=-5 -kerning first=59 second=8221 amount=-3 -kerning first=328 second=118 amount=-1 -kerning first=900 second=962 amount=-1 -kerning first=85 second=916 amount=-2 -kerning first=88 second=240 amount=-2 -kerning first=105 second=1256 amount=-2 -kerning first=1203 second=333 amount=-1 -kerning first=254 second=67 amount=-2 -kerning first=167 second=79 amount=-2 -kerning first=1051 second=271 amount=-1 -kerning first=186 second=920 amount=-2 -kerning first=301 second=371 amount=-1 -kerning first=298 second=1195 amount=-1 -kerning first=69 second=253 amount=-1 -kerning first=206 second=1257 amount=-1 -kerning first=1119 second=346 amount=-1 -kerning first=946 second=360 amount=-2 -kerning first=1219 second=273 amount=-1 -kerning first=1224 second=45 amount=-2 -kerning first=255 second=242 amount=-1 -kerning first=1206 second=964 amount=-2 -kerning first=372 second=947 amount=-1 -kerning first=375 second=372 amount=-5 -kerning first=165 second=945 amount=-1 -kerning first=278 second=1240 amount=-2 -kerning first=50 second=268 amount=-2 -kerning first=1064 second=219 amount=-2 -kerning first=302 second=1069 amount=-1 +kerning first=283 second=118 amount=-1 +kerning first=283 second=119 amount=-1 +kerning first=283 second=120 amount=-2 +kerning first=283 second=122 amount=-1 +kerning first=283 second=373 amount=-1 +kerning first=283 second=378 amount=-1 +kerning first=283 second=380 amount=-1 +kerning first=283 second=382 amount=-1 +kerning first=283 second=947 amount=-1 +kerning first=283 second=955 amount=-1 +kerning first=283 second=957 amount=-1 +kerning first=283 second=964 amount=-1 +kerning first=283 second=967 amount=-2 +kerning first=283 second=1076 amount=-1 +kerning first=283 second=1078 amount=-2 +kerning first=283 second=1083 amount=-1 +kerning first=283 second=1090 amount=-1 +kerning first=283 second=1093 amount=-2 +kerning first=283 second=1098 amount=-1 +kerning first=283 second=1113 amount=-1 +kerning first=283 second=1175 amount=-2 +kerning first=283 second=1185 amount=-1 +kerning first=283 second=1199 amount=-1 +kerning first=283 second=1203 amount=-2 +kerning first=283 second=1299 amount=-1 +kerning first=283 second=8216 amount=-1 +kerning first=283 second=8217 amount=-1 +kerning first=283 second=8218 amount=-1 +kerning first=283 second=8220 amount=-1 +kerning first=283 second=8221 amount=-1 +kerning first=283 second=8222 amount=-1 +kerning first=283 second=8230 amount=-1 +kerning first=286 second=75 amount=2 +kerning first=286 second=84 amount=-1 +kerning first=286 second=86 amount=-2 +kerning first=286 second=87 amount=-1 +kerning first=286 second=89 amount=-2 +kerning first=286 second=106 amount=2 +kerning first=286 second=221 amount=-2 +kerning first=286 second=354 amount=-1 +kerning first=286 second=356 amount=-1 +kerning first=286 second=372 amount=-1 +kerning first=286 second=374 amount=-2 +kerning first=286 second=376 amount=-2 +kerning first=286 second=922 amount=2 +kerning first=286 second=932 amount=-1 +kerning first=286 second=933 amount=-2 +kerning first=286 second=939 amount=-2 +kerning first=286 second=1026 amount=-1 +kerning first=286 second=1035 amount=-1 +kerning first=286 second=1050 amount=2 +kerning first=286 second=1058 amount=-1 +kerning first=286 second=1066 amount=-1 +kerning first=286 second=1112 amount=2 +kerning first=286 second=1184 amount=-1 +kerning first=286 second=1198 amount=-2 +kerning first=288 second=75 amount=2 +kerning first=288 second=84 amount=-1 +kerning first=288 second=86 amount=-2 +kerning first=288 second=87 amount=-1 +kerning first=288 second=89 amount=-2 +kerning first=288 second=106 amount=2 +kerning first=288 second=221 amount=-2 +kerning first=288 second=354 amount=-1 +kerning first=288 second=356 amount=-1 +kerning first=288 second=372 amount=-1 +kerning first=288 second=374 amount=-2 +kerning first=288 second=376 amount=-2 +kerning first=288 second=922 amount=2 +kerning first=288 second=932 amount=-1 +kerning first=288 second=933 amount=-2 +kerning first=288 second=939 amount=-2 +kerning first=288 second=1026 amount=-1 +kerning first=288 second=1035 amount=-1 +kerning first=288 second=1050 amount=2 +kerning first=288 second=1058 amount=-1 +kerning first=288 second=1066 amount=-1 +kerning first=288 second=1112 amount=2 +kerning first=288 second=1184 amount=-1 +kerning first=288 second=1198 amount=-2 +kerning first=290 second=75 amount=2 +kerning first=290 second=84 amount=-1 +kerning first=290 second=86 amount=-2 +kerning first=290 second=87 amount=-1 +kerning first=290 second=89 amount=-2 +kerning first=290 second=106 amount=2 +kerning first=290 second=221 amount=-2 +kerning first=290 second=354 amount=-1 +kerning first=290 second=356 amount=-1 +kerning first=290 second=372 amount=-1 +kerning first=290 second=374 amount=-2 +kerning first=290 second=376 amount=-2 +kerning first=290 second=922 amount=2 +kerning first=290 second=932 amount=-1 +kerning first=290 second=933 amount=-2 +kerning first=290 second=939 amount=-2 +kerning first=290 second=1026 amount=-1 +kerning first=290 second=1035 amount=-1 +kerning first=290 second=1050 amount=2 +kerning first=290 second=1058 amount=-1 +kerning first=290 second=1066 amount=-1 +kerning first=290 second=1112 amount=2 +kerning first=290 second=1184 amount=-1 +kerning first=290 second=1198 amount=-2 +kerning first=295 second=34 amount=-1 +kerning first=295 second=39 amount=-1 +kerning first=295 second=63 amount=-2 +kerning first=295 second=102 amount=-1 +kerning first=295 second=106 amount=1 +kerning first=295 second=118 amount=-1 +kerning first=295 second=119 amount=-1 +kerning first=295 second=373 amount=-1 +kerning first=295 second=947 amount=-1 +kerning first=295 second=957 amount=-1 +kerning first=295 second=964 amount=-1 +kerning first=295 second=1090 amount=-1 +kerning first=295 second=1098 amount=-1 +kerning first=295 second=1112 amount=1 +kerning first=295 second=1185 amount=-1 +kerning first=295 second=1199 amount=-1 +kerning first=295 second=8216 amount=-1 +kerning first=295 second=8217 amount=-1 +kerning first=295 second=8220 amount=-1 +kerning first=295 second=8221 amount=-1 +kerning first=307 second=106 amount=7 +kerning first=307 second=1112 amount=7 +kerning first=310 second=38 amount=-2 +kerning first=310 second=45 amount=-4 +kerning first=310 second=63 amount=-2 +kerning first=310 second=67 amount=-3 +kerning first=310 second=71 amount=-3 +kerning first=310 second=74 amount=-1 +kerning first=310 second=79 amount=-3 kerning first=310 second=81 amount=-3 -kerning first=1096 second=121 amount=-1 -kerning first=910 second=373 amount=-2 -kerning first=1168 second=1028 amount=-2 -kerning first=1171 second=288 amount=-2 -kerning first=1027 second=232 amount=-1 -kerning first=282 second=332 amount=-2 -kerning first=8224 second=275 amount=-1 -kerning first=8220 second=966 amount=-1 -kerning first=54 second=216 amount=-2 -kerning first=1065 second=374 amount=-2 -kerning first=197 second=106 amount=1 -kerning first=77 second=118 amount=-4 -kerning first=214 second=962 amount=-1 -kerning first=926 second=83 amount=-1 -kerning first=955 second=245 amount=-1 -kerning first=380 second=949 amount=-1 -kerning first=35 second=229 amount=-1 -kerning first=174 second=359 amount=-1 -kerning first=177 second=119 amount=-4 -kerning first=52 second=1195 amount=-1 -kerning first=55 second=371 amount=-1 -kerning first=1073 second=84 amount=-5 -kerning first=195 second=1026 amount=-5 -kerning first=198 second=286 amount=-2 -kerning first=244 second=120 amount=-2 -kerning first=361 second=964 amount=-3 -kerning first=367 second=45 amount=-2 -kerning first=121 second=372 amount=-5 -kerning first=1224 second=8249 amount=-3 -kerning first=36 second=1240 amount=-2 -kerning first=1039 second=97 amount=-1 -kerning first=1036 second=335 amount=-2 -kerning first=294 second=219 amount=-2 -kerning first=56 second=1069 amount=-1 -kerning first=62 second=81 amount=-2 -kerning first=1074 second=259 amount=-1 -kerning first=202 second=231 amount=-1 -kerning first=317 second=361 amount=-1 -kerning first=322 second=121 amount=-1 -kerning first=1179 second=1095 amount=-2 -kerning first=1186 second=336 amount=-1 -kerning first=962 second=350 amount=-1 -kerning first=40 second=332 amount=-2 -kerning first=1037 second=966 amount=-1 -kerning first=1041 second=275 amount=-1 -kerning first=183 second=244 amount=-1 -kerning first=8370 second=249 amount=-1 -kerning first=8365 second=940 amount=-1 -kerning first=901 second=221 amount=-5 -kerning first=86 second=193 amount=-6 -kerning first=1116 second=111 amount=-2 -kerning first=220 second=8230 amount=-1 -kerning first=934 second=1177 amount=-1 -kerning first=249 second=245 amount=-1 -kerning first=369 second=375 amount=-1 -kerning first=126 second=949 amount=-1 -kerning first=162 second=257 amount=-1 -kerning first=41 second=963 amount=-1 -kerning first=47 second=44 amount=-4 -kerning first=187 second=194 amount=-3 -kerning first=302 second=84 amount=-5 -kerning first=1080 second=364 amount=-2 -kerning first=204 second=1090 amount=-3 -kerning first=207 second=334 amount=-2 -kerning first=327 second=246 amount=-1 -kerning first=8378 second=199 amount=-2 -kerning first=902 second=376 amount=-5 -kerning first=84 second=1107 amount=-2 -kerning first=87 second=346 amount=-1 -kerning first=1117 second=291 amount=-1 -kerning first=936 second=8212 amount=-2 -kerning first=113 second=45 amount=-2 -kerning first=367 second=8249 amount=-3 -kerning first=276 second=335 amount=-1 -kerning first=48 second=219 amount=-2 -kerning first=185 second=1108 amount=-1 -kerning first=188 second=347 amount=-1 -kerning first=303 second=259 amount=-1 -kerning first=306 second=34 amount=-3 -kerning first=332 second=196 amount=-2 -kerning first=900 second=8250 amount=-1 -kerning first=91 second=288 amount=-2 -kerning first=88 second=1028 amount=-3 -kerning first=354 second=336 amount=-1 -kerning first=1223 second=171 amount=-3 -kerning first=254 second=350 amount=-1 -kerning first=374 second=952 amount=-2 -kerning first=164 second=1176 amount=-1 -kerning first=167 second=362 amount=-2 -kerning first=283 second=47 amount=-1 -kerning first=280 second=275 amount=-1 -kerning first=8221 second=225 amount=-1 -kerning first=49 second=374 amount=-5 -kerning first=192 second=289 amount=-1 -kerning first=75 second=71 amount=-3 -kerning first=1095 second=249 amount=-1 -kerning first=1087 second=940 amount=-1 -kerning first=215 second=221 amount=-5 -kerning first=912 second=261 amount=-1 -kerning first=95 second=233 amount=-1 -kerning first=258 second=290 amount=-2 -kerning first=381 second=210 amount=-1 -kerning first=1026 second=338 amount=-2 -kerning first=165 second=8211 amount=-2 -kerning first=56 second=84 amount=-5 -kerning first=1067 second=262 amount=-2 -kerning first=196 second=234 amount=-1 -kerning first=76 second=246 amount=-1 -kerning first=1099 second=199 amount=-2 -kerning first=216 second=376 amount=-3 -kerning first=334 second=1035 amount=-2 -kerning first=923 second=211 amount=-2 -kerning first=1171 second=1098 amount=-3 -kerning first=1176 second=339 amount=-1 -kerning first=236 second=1059 amount=-2 -kerning first=1179 second=101 amount=-1 -kerning first=954 second=353 amount=-1 -kerning first=958 second=113 amount=-1 -kerning first=113 second=8249 amount=-3 -kerning first=1256 second=955 amount=-2 -kerning first=1263 second=263 amount=-1 -kerning first=34 second=335 amount=-1 -kerning first=37 second=97 amount=-1 -kerning first=57 second=259 amount=-1 -kerning first=60 second=34 amount=-3 -kerning first=1071 second=212 amount=-2 -kerning first=306 second=8216 amount=-3 -kerning first=80 second=196 amount=-4 -kerning first=214 second=8250 amount=-1 -kerning first=916 second=1184 amount=-5 -kerning first=926 second=366 amount=-2 -kerning first=100 second=336 amount=-2 -kerning first=1184 second=279 amount=-2 -kerning first=35 second=966 amount=-1 -kerning first=38 second=275 amount=-1 -kerning first=296 second=87 amount=-5 -kerning first=8260 second=267 amount=-1 -kerning first=1073 second=367 amount=-1 -kerning first=201 second=337 amount=-1 -kerning first=204 second=99 amount=-1 -kerning first=316 second=940 amount=-1 -kerning first=321 second=249 amount=-1 -kerning first=84 second=111 amount=-3 -kerning first=221 second=953 amount=-2 -kerning first=920 second=8218 amount=-1 -kerning first=101 second=967 amount=-2 -kerning first=160 second=210 amount=-2 -kerning first=273 second=100 amount=-1 -kerning first=182 second=352 amount=-1 -kerning first=297 second=262 amount=-2 -kerning first=62 second=364 amount=-2 -kerning first=202 second=968 amount=-1 -kerning first=205 second=277 amount=-1 -kerning first=325 second=199 amount=-2 -kerning first=8369 second=357 amount=-1 -kerning first=903 second=89 amount=-5 -kerning first=942 second=251 amount=-1 -kerning first=251 second=113 amount=-1 -kerning first=374 second=38 amount=-2 -kerning first=371 second=263 amount=-1 -kerning first=161 second=365 amount=-1 -kerning first=301 second=212 amount=-2 -kerning first=60 second=8216 amount=-3 -kerning first=1083 second=252 amount=-1 -kerning first=209 second=224 amount=-1 -kerning first=323 second=1118 amount=-1 -kerning first=904 second=266 amount=-2 -kerning first=375 second=213 amount=-2 -kerning first=126 second=8217 amount=-3 -kerning first=278 second=225 amount=-1 -kerning first=47 second=324 amount=-1 -kerning first=50 second=87 amount=-5 -kerning first=299 second=1185 amount=-3 -kerning first=302 second=367 amount=-1 -kerning first=70 second=249 amount=-1 -kerning first=210 second=379 amount=-1 -kerning first=327 second=1038 amount=-2 -kerning first=910 second=214 amount=-3 -kerning first=1117 second=1101 amount=-1 -kerning first=948 second=356 amount=-5 -kerning first=951 second=116 amount=-1 -kerning first=356 second=226 amount=-2 -kerning first=1220 second=268 amount=-2 -kerning first=973 second=281 amount=-1 -kerning first=169 second=250 amount=-1 -kerning first=166 second=941 amount=-1 -kerning first=279 second=380 amount=-1 -kerning first=51 second=262 amount=-2 -kerning first=191 second=1241 amount=-1 -kerning first=194 second=187 amount=-1 -kerning first=300 second=8220 amount=-3 -kerning first=74 second=199 amount=-2 -kerning first=94 second=339 amount=-1 -kerning first=91 second=1098 amount=-3 -kerning first=237 second=251 amount=-1 -kerning first=354 second=1224 amount=-2 -kerning first=114 second=955 amount=-3 -kerning first=117 second=263 amount=-1 -kerning first=8221 second=962 amount=-1 -kerning first=55 second=212 amount=-2 -kerning first=1063 second=1194 amount=-2 +kerning first=310 second=83 amount=-1 +kerning first=310 second=97 amount=-1 +kerning first=310 second=99 amount=-2 +kerning first=310 second=100 amount=-2 +kerning first=310 second=101 amount=-2 +kerning first=310 second=102 amount=-2 +kerning first=310 second=103 amount=-1 +kerning first=310 second=111 amount=-2 +kerning first=310 second=113 amount=-2 +kerning first=310 second=116 amount=-1 +kerning first=310 second=117 amount=-1 +kerning first=310 second=118 amount=-3 +kerning first=310 second=119 amount=-3 +kerning first=310 second=121 amount=-2 +kerning first=310 second=171 amount=-3 +kerning first=310 second=173 amount=-4 +kerning first=310 second=187 amount=-2 +kerning first=310 second=199 amount=-3 +kerning first=310 second=210 amount=-3 +kerning first=310 second=211 amount=-3 +kerning first=310 second=212 amount=-3 +kerning first=310 second=213 amount=-3 +kerning first=310 second=214 amount=-3 +kerning first=310 second=216 amount=-3 +kerning first=310 second=224 amount=-1 +kerning first=310 second=225 amount=-1 +kerning first=310 second=226 amount=-1 +kerning first=310 second=227 amount=-1 +kerning first=310 second=228 amount=-1 +kerning first=310 second=229 amount=-1 +kerning first=310 second=230 amount=-1 +kerning first=310 second=231 amount=-2 +kerning first=310 second=232 amount=-2 +kerning first=310 second=233 amount=-2 +kerning first=310 second=234 amount=-2 +kerning first=310 second=235 amount=-2 +kerning first=310 second=240 amount=-2 +kerning first=310 second=242 amount=-2 +kerning first=310 second=243 amount=-2 +kerning first=310 second=244 amount=-2 +kerning first=310 second=245 amount=-2 +kerning first=310 second=246 amount=-2 +kerning first=310 second=248 amount=-2 +kerning first=310 second=249 amount=-1 +kerning first=310 second=250 amount=-1 +kerning first=310 second=251 amount=-1 +kerning first=310 second=252 amount=-1 +kerning first=310 second=253 amount=-2 +kerning first=310 second=257 amount=-1 +kerning first=310 second=259 amount=-1 +kerning first=310 second=261 amount=-1 +kerning first=310 second=262 amount=-3 +kerning first=310 second=263 amount=-2 +kerning first=310 second=266 amount=-3 +kerning first=310 second=267 amount=-2 +kerning first=310 second=268 amount=-3 +kerning first=310 second=269 amount=-2 +kerning first=310 second=271 amount=-2 +kerning first=310 second=273 amount=-2 +kerning first=310 second=275 amount=-2 +kerning first=310 second=277 amount=-2 +kerning first=310 second=279 amount=-2 +kerning first=310 second=281 amount=-2 +kerning first=310 second=283 amount=-2 +kerning first=310 second=286 amount=-3 +kerning first=310 second=287 amount=-1 +kerning first=310 second=288 amount=-3 +kerning first=310 second=289 amount=-1 +kerning first=310 second=290 amount=-3 +kerning first=310 second=291 amount=-1 +kerning first=310 second=332 amount=-3 +kerning first=310 second=333 amount=-2 +kerning first=310 second=334 amount=-3 +kerning first=310 second=335 amount=-2 +kerning first=310 second=336 amount=-3 +kerning first=310 second=337 amount=-2 +kerning first=310 second=338 amount=-3 +kerning first=310 second=339 amount=-2 +kerning first=310 second=346 amount=-1 +kerning first=310 second=350 amount=-1 +kerning first=310 second=352 amount=-1 +kerning first=310 second=355 amount=-1 +kerning first=310 second=357 amount=-1 +kerning first=310 second=359 amount=-1 +kerning first=310 second=361 amount=-1 +kerning first=310 second=363 amount=-1 +kerning first=310 second=365 amount=-1 +kerning first=310 second=367 amount=-1 +kerning first=310 second=369 amount=-1 +kerning first=310 second=371 amount=-1 +kerning first=310 second=373 amount=-3 +kerning first=310 second=375 amount=-2 +kerning first=310 second=920 amount=-3 +kerning first=310 second=927 amount=-3 +kerning first=310 second=940 amount=-2 +kerning first=310 second=941 amount=-2 +kerning first=310 second=945 amount=-2 +kerning first=310 second=947 amount=-3 +kerning first=310 second=949 amount=-2 +kerning first=310 second=957 amount=-3 +kerning first=310 second=959 amount=-2 +kerning first=310 second=962 amount=-2 +kerning first=310 second=963 amount=-2 +kerning first=310 second=964 amount=-4 +kerning first=310 second=965 amount=-1 +kerning first=310 second=966 amount=-2 +kerning first=310 second=968 amount=-1 +kerning first=310 second=972 amount=-2 +kerning first=310 second=973 amount=-1 +kerning first=310 second=1028 amount=-3 +kerning first=310 second=1029 amount=-1 +kerning first=310 second=1032 amount=-1 +kerning first=310 second=1054 amount=-3 +kerning first=310 second=1057 amount=-3 +kerning first=310 second=1069 amount=-2 +kerning first=310 second=1072 amount=-1 +kerning first=310 second=1077 amount=-2 +kerning first=310 second=1079 amount=-1 +kerning first=310 second=1086 amount=-2 +kerning first=310 second=1089 amount=-2 +kerning first=310 second=1090 amount=-4 +kerning first=310 second=1091 amount=-2 +kerning first=310 second=1092 amount=-2 +kerning first=310 second=1098 amount=-4 +kerning first=310 second=1101 amount=-1 +kerning first=310 second=1104 amount=-2 +kerning first=310 second=1105 amount=-2 +kerning first=310 second=1108 amount=-2 +kerning first=310 second=1118 amount=-2 +kerning first=310 second=1176 amount=-2 +kerning first=310 second=1177 amount=-1 +kerning first=310 second=1185 amount=-4 +kerning first=310 second=1194 amount=-3 +kerning first=310 second=1195 amount=-2 +kerning first=310 second=1199 amount=-3 +kerning first=310 second=1240 amount=-3 +kerning first=310 second=1241 amount=-2 +kerning first=310 second=1256 amount=-3 +kerning first=310 second=1257 amount=-2 +kerning first=310 second=1263 amount=-2 +kerning first=310 second=8211 amount=-4 +kerning first=310 second=8212 amount=-4 +kerning first=310 second=8249 amount=-3 +kerning first=310 second=8250 amount=-2 +kerning first=311 second=45 amount=-3 +kerning first=311 second=97 amount=-1 +kerning first=311 second=99 amount=-2 +kerning first=311 second=100 amount=-2 +kerning first=311 second=101 amount=-2 +kerning first=311 second=103 amount=-2 +kerning first=311 second=106 amount=1 +kerning first=311 second=111 amount=-2 +kerning first=311 second=113 amount=-2 +kerning first=311 second=115 amount=-1 +kerning first=311 second=173 amount=-3 +kerning first=311 second=224 amount=-1 +kerning first=311 second=225 amount=-1 +kerning first=311 second=226 amount=-1 +kerning first=311 second=227 amount=-1 +kerning first=311 second=228 amount=-1 +kerning first=311 second=229 amount=-1 +kerning first=311 second=230 amount=-1 +kerning first=311 second=231 amount=-2 +kerning first=311 second=232 amount=-2 +kerning first=311 second=233 amount=-2 +kerning first=311 second=234 amount=-2 +kerning first=311 second=235 amount=-2 +kerning first=311 second=240 amount=-2 +kerning first=311 second=242 amount=-2 +kerning first=311 second=243 amount=-2 +kerning first=311 second=244 amount=-2 +kerning first=311 second=245 amount=-2 +kerning first=311 second=246 amount=-2 +kerning first=311 second=248 amount=-2 +kerning first=311 second=257 amount=-1 +kerning first=311 second=259 amount=-1 +kerning first=311 second=261 amount=-1 +kerning first=311 second=263 amount=-2 +kerning first=311 second=267 amount=-2 +kerning first=311 second=269 amount=-2 +kerning first=311 second=271 amount=-2 +kerning first=311 second=273 amount=-2 +kerning first=311 second=275 amount=-2 +kerning first=311 second=277 amount=-2 +kerning first=311 second=279 amount=-2 +kerning first=311 second=281 amount=-2 +kerning first=311 second=283 amount=-2 +kerning first=311 second=287 amount=-2 +kerning first=311 second=289 amount=-2 +kerning first=311 second=291 amount=-2 +kerning first=311 second=333 amount=-2 +kerning first=311 second=335 amount=-2 +kerning first=311 second=337 amount=-2 +kerning first=311 second=339 amount=-2 +kerning first=311 second=347 amount=-1 +kerning first=311 second=351 amount=-1 +kerning first=311 second=353 amount=-1 +kerning first=311 second=940 amount=-2 +kerning first=311 second=941 amount=-2 +kerning first=311 second=945 amount=-2 +kerning first=311 second=949 amount=-2 +kerning first=311 second=959 amount=-2 +kerning first=311 second=962 amount=-2 +kerning first=311 second=963 amount=-2 +kerning first=311 second=966 amount=-2 +kerning first=311 second=972 amount=-2 +kerning first=311 second=1072 amount=-1 +kerning first=311 second=1077 amount=-2 +kerning first=311 second=1086 amount=-2 +kerning first=311 second=1089 amount=-2 +kerning first=311 second=1092 amount=-2 +kerning first=311 second=1104 amount=-2 +kerning first=311 second=1105 amount=-2 +kerning first=311 second=1108 amount=-2 +kerning first=311 second=1109 amount=-1 +kerning first=311 second=1112 amount=1 +kerning first=311 second=1195 amount=-2 +kerning first=311 second=1241 amount=-2 +kerning first=311 second=1257 amount=-2 +kerning first=311 second=8211 amount=-3 +kerning first=311 second=8212 amount=-3 +kerning first=313 second=34 amount=-3 +kerning first=313 second=39 amount=-3 +kerning first=313 second=45 amount=-3 +kerning first=313 second=63 amount=-4 +kerning first=313 second=67 amount=-1 +kerning first=313 second=71 amount=-1 +kerning first=313 second=79 amount=-1 +kerning first=313 second=81 amount=-1 +kerning first=313 second=84 amount=-6 +kerning first=313 second=85 amount=-1 +kerning first=313 second=86 amount=-5 +kerning first=313 second=87 amount=-4 +kerning first=313 second=89 amount=-6 +kerning first=313 second=99 amount=-1 +kerning first=313 second=100 amount=-1 +kerning first=313 second=101 amount=-1 +kerning first=313 second=103 amount=-1 +kerning first=313 second=111 amount=-1 +kerning first=313 second=113 amount=-1 +kerning first=313 second=116 amount=-1 +kerning first=313 second=117 amount=-1 +kerning first=313 second=118 amount=-3 +kerning first=313 second=119 amount=-3 +kerning first=313 second=121 amount=-1 +kerning first=313 second=171 amount=-3 +kerning first=313 second=173 amount=-3 +kerning first=313 second=199 amount=-1 +kerning first=313 second=210 amount=-1 +kerning first=313 second=211 amount=-1 +kerning first=313 second=212 amount=-1 +kerning first=313 second=213 amount=-1 +kerning first=313 second=214 amount=-1 +kerning first=313 second=216 amount=-1 +kerning first=313 second=217 amount=-1 +kerning first=313 second=218 amount=-1 +kerning first=313 second=219 amount=-1 +kerning first=313 second=220 amount=-1 +kerning first=313 second=221 amount=-6 +kerning first=313 second=231 amount=-1 +kerning first=313 second=232 amount=-1 +kerning first=313 second=233 amount=-1 +kerning first=313 second=234 amount=-1 +kerning first=313 second=235 amount=-1 +kerning first=313 second=240 amount=-1 +kerning first=313 second=242 amount=-1 +kerning first=313 second=243 amount=-1 +kerning first=313 second=244 amount=-1 +kerning first=313 second=245 amount=-1 +kerning first=313 second=246 amount=-1 +kerning first=313 second=248 amount=-1 +kerning first=313 second=249 amount=-1 +kerning first=313 second=250 amount=-1 +kerning first=313 second=251 amount=-1 kerning first=313 second=252 amount=-1 -kerning first=72 second=1118 amount=-1 -kerning first=908 second=8222 amount=-1 -kerning first=928 second=79 amount=-2 -kerning first=95 second=970 amount=-1 -kerning first=121 second=213 amount=-2 -kerning first=1224 second=1195 amount=-1 -kerning first=36 second=225 amount=-1 -kerning first=1026 second=1257 amount=-1 -kerning first=175 second=355 amount=-1 -kerning first=178 second=115 amount=-1 -kerning first=289 second=267 amount=-1 -kerning first=53 second=1185 amount=-3 -kerning first=56 second=367 amount=-1 -kerning first=8361 second=360 amount=-2 -kerning first=76 second=1038 amount=-1 -kerning first=923 second=945 amount=-1 -kerning first=1176 second=1262 amount=-2 -kerning first=102 second=226 amount=-1 -kerning first=365 second=268 amount=-2 -kerning first=1263 second=1069 amount=-1 -kerning first=54 second=8220 amount=-3 -kerning first=203 second=227 amount=-1 -kerning first=323 second=117 amount=-1 -kerning first=318 second=357 amount=-1 -kerning first=223 second=369 amount=-1 -kerning first=369 second=216 amount=-2 -kerning first=123 second=1066 amount=-5 -kerning first=271 second=228 amount=-1 -kerning first=1241 second=118 amount=-1 -kerning first=184 second=240 amount=-1 -kerning first=291 second=1194 amount=-2 -kerning first=296 second=370 amount=-2 -kerning first=61 second=943 amount=-1 -kerning first=64 second=252 amount=-1 -kerning first=201 second=1256 amount=-2 -kerning first=327 second=67 amount=-2 -kerning first=8372 second=245 amount=-1 -kerning first=902 second=217 amount=-2 -kerning first=221 second=8222 amount=-4 -kerning first=944 second=119 amount=-4 -kerning first=1202 second=271 amount=-1 -kerning first=247 second=920 amount=-2 -kerning first=367 second=1195 amount=-1 -kerning first=964 second=1026 amount=-5 -kerning first=967 second=286 amount=-2 -kerning first=163 second=253 amount=-1 -kerning first=1049 second=218 amount=-2 -kerning first=1081 second=360 amount=-2 -kerning first=900 second=947 amount=-4 -kerning first=903 second=372 amount=-5 -kerning first=1118 second=287 amount=-1 -kerning first=1210 second=219 amount=-2 -kerning first=371 second=1069 amount=-1 -kerning first=377 second=81 amount=-1 -kerning first=971 second=231 amount=-1 -kerning first=8221 second=46 amount=-1 -kerning first=1047 second=1202 amount=-2 -kerning first=1051 second=373 amount=-4 -kerning first=69 second=357 amount=-1 -kerning first=72 second=117 amount=-1 -kerning first=89 second=973 amount=-2 -kerning first=1170 second=232 amount=-1 -kerning first=950 second=244 amount=-1 -kerning first=1219 second=374 amount=-5 -kerning first=258 second=106 amount=1 -kerning first=278 second=962 amount=-1 -kerning first=8222 second=221 amount=-4 -kerning first=47 second=1194 amount=-2 -kerning first=50 second=370 amount=-2 -kerning first=1067 second=83 amount=-1 -kerning first=193 second=283 amount=-1 -kerning first=76 second=67 amount=-1 -kerning first=1096 second=245 amount=-1 -kerning first=915 second=257 amount=-1 -kerning first=910 second=949 amount=-4 -kerning first=96 second=229 amount=-1 -kerning first=236 second=359 amount=-1 -kerning first=239 second=119 amount=-4 -kerning first=356 second=963 amount=-3 -kerning first=362 second=44 amount=-1 -kerning first=113 second=1195 amount=-1 -kerning first=1263 second=84 amount=-5 -kerning first=256 second=1026 amount=-5 -kerning first=973 second=1090 amount=-3 -kerning first=1027 second=334 amount=-2 -kerning first=287 second=218 amount=-2 -kerning first=8224 second=376 amount=-5 -kerning first=1068 second=258 amount=-1 -kerning first=197 second=230 amount=-1 -kerning first=74 second=923 amount=-1 -kerning first=77 second=242 amount=-1 -kerning first=214 second=947 amount=-4 -kerning first=338 second=287 amount=-1 -kerning first=94 second=1262 amount=-2 -kerning first=1184 second=97 amount=-1 -kerning first=363 second=219 amount=-2 -kerning first=952 second=1108 amount=-1 -kerning first=955 second=347 amount=-1 -kerning first=117 second=1069 amount=-1 -kerning first=123 second=81 amount=-2 -kerning first=1298 second=259 amount=-1 -kerning first=1038 second=46 amount=-1 -kerning first=177 second=243 amount=-1 -kerning first=195 second=1263 amount=-1 -kerning first=8363 second=248 amount=-1 -kerning first=928 second=362 amount=-2 -kerning first=1178 second=966 amount=-1 -kerning first=1185 second=275 amount=-2 -kerning first=1194 second=47 amount=-1 -kerning first=36 second=962 amount=-1 -kerning first=1039 second=221 amount=-5 -kerning first=297 second=83 amount=-1 -kerning first=1074 second=363 amount=-1 -kerning first=202 second=333 amount=-1 -kerning first=322 second=245 amount=-1 -kerning first=923 second=8211 amount=-2 -kerning first=102 second=963 amount=-1 -kerning first=105 second=271 amount=-1 -kerning first=371 second=84 amount=-5 -kerning first=965 second=234 amount=-1 -kerning first=8211 second=49 amount=-3 -kerning first=43 second=218 amount=-2 -kerning first=1041 second=376 amount=-5 -kerning first=183 second=346 amount=-1 -kerning first=63 second=360 amount=-2 -kerning first=1071 second=8212 amount=-2 -kerning first=209 second=45 amount=-2 -kerning first=206 second=273 amount=-1 -kerning first=203 second=964 amount=-3 -kerning first=8377 second=113 amount=-1 -kerning first=8370 second=353 amount=-1 -kerning first=904 second=85 amount=-2 -kerning first=86 second=287 amount=-1 -kerning first=1116 second=235 amount=-2 -kerning first=249 second=347 amount=-1 -kerning first=372 second=259 amount=-2 -kerning first=375 second=34 amount=-3 -kerning first=162 second=361 amount=-1 -kerning first=165 second=121 amount=-1 -kerning first=271 second=965 amount=-1 -kerning first=44 second=373 amount=-2 -kerning first=184 second=1028 amount=-2 -kerning first=1084 second=248 amount=-1 -kerning first=327 second=350 amount=-1 -kerning first=90 second=232 amount=-1 -kerning first=233 second=122 amount=-1 -kerning first=356 second=47 amount=-4 -kerning first=1220 second=87 amount=-5 -kerning first=253 second=289 amount=-1 -kerning first=973 second=99 amount=-1 -kerning first=169 second=71 amount=-2 -kerning first=45 second=1071 amount=-1 -kerning first=51 second=83 amount=-1 -kerning first=1049 second=953 amount=-1 -kerning first=191 second=233 amount=-1 -kerning first=303 second=363 amount=-1 -kerning first=300 second=1177 amount=-1 -kerning first=1174 second=100 amount=-1 -kerning first=117 second=84 amount=-5 -kerning first=1223 second=262 amount=-2 -kerning first=971 second=968 amount=-1 -kerning first=170 second=246 amount=-1 -kerning first=280 second=376 amount=-5 -kerning first=8225 second=89 amount=-5 -kerning first=304 second=1059 amount=-2 -kerning first=301 second=8212 amount=-2 -kerning first=1095 second=353 amount=-1 -kerning first=209 second=8249 amount=-3 -kerning first=912 second=365 amount=-1 -kerning first=95 second=335 amount=-1 -kerning first=121 second=34 amount=-3 -kerning first=118 second=259 amount=-1 -kerning first=375 second=8216 amount=-3 -kerning first=278 second=8250 amount=-1 -kerning first=8226 second=266 amount=-2 -kerning first=1064 second=1184 amount=-5 -kerning first=1067 second=366 amount=-2 -kerning first=196 second=336 amount=-2 -kerning first=314 second=248 amount=-1 -kerning first=1102 second=63 amount=-2 -kerning first=219 second=260 amount=-2 -kerning first=96 second=966 amount=-1 -kerning first=365 second=87 amount=-5 -kerning first=1263 second=367 amount=-1 -kerning first=382 second=940 amount=-1 -kerning first=37 second=221 amount=-5 -kerning first=179 second=111 amount=-1 -kerning first=176 second=351 amount=-1 -kerning first=287 second=953 amount=-1 -kerning first=57 second=363 amount=-1 -kerning first=54 second=1177 amount=-1 -kerning first=8365 second=116 amount=-1 -kerning first=80 second=290 amount=-2 -kerning first=223 second=210 amount=-2 -kerning first=934 second=250 amount=-1 -kerning first=926 second=941 amount=-1 -kerning first=960 second=1241 amount=-1 -kerning first=963 second=187 amount=-1 -kerning first=123 second=364 amount=-2 -kerning first=1257 second=8220 amount=-1 -kerning first=38 second=376 amount=-4 -kerning first=1035 second=1079 amount=-1 -kerning first=177 second=1035 amount=-5 -kerning first=180 second=291 amount=-1 -kerning first=1044 second=89 amount=-2 -kerning first=296 second=211 amount=-2 -kerning first=8260 second=369 amount=-1 -kerning first=55 second=8212 amount=-4 -kerning first=58 second=1059 amount=-2 -kerning first=321 second=353 amount=-1 -kerning first=902 second=38 amount=-1 -kerning first=84 second=235 amount=-3 -kerning first=221 second=1179 amount=-3 -kerning first=121 second=8216 amount=-3 -kerning first=273 second=224 amount=-1 -kerning first=36 second=8250 amount=-1 -kerning first=45 second=86 amount=-3 -kerning first=1049 second=39 amount=-3 -kerning first=1046 second=266 amount=-3 -kerning first=294 second=1184 amount=-5 -kerning first=297 second=366 amount=-2 -kerning first=65 second=248 amount=-1 -kerning first=328 second=63 amount=-2 -kerning first=8369 second=920 amount=-2 -kerning first=903 second=213 amount=-2 -kerning first=1118 second=103 amount=-1 -kerning first=942 second=355 amount=-1 -kerning first=1203 second=267 amount=-1 -kerning first=371 second=367 amount=-1 -kerning first=164 second=249 amount=-1 -kerning first=161 second=940 amount=-1 -kerning first=43 second=953 amount=-1 -kerning first=1051 second=214 amount=-2 -kerning first=1083 second=356 amount=-5 -kerning first=1087 second=116 amount=-1 -kerning first=212 second=88 amount=-3 -kerning first=904 second=368 amount=-2 -kerning first=86 second=1097 amount=-2 -kerning first=92 second=100 amount=-1 -kerning first=1119 second=281 amount=-1 -kerning first=89 second=338 amount=-3 -kerning first=1116 second=972 amount=-2 -kerning first=252 second=1241 amount=-1 -kerning first=255 second=187 amount=-1 -kerning first=369 second=8220 amount=-3 -kerning first=168 second=199 amount=-2 -kerning first=50 second=211 amount=-2 -kerning first=190 second=339 amount=-1 -kerning first=193 second=101 amount=-1 -kerning first=305 second=251 amount=-1 -kerning first=70 second=353 amount=-1 -kerning first=73 second=113 amount=-1 -kerning first=210 second=955 amount=-2 -kerning first=902 second=8221 amount=-3 -kerning first=905 second=1066 amount=-5 -kerning first=1171 second=228 amount=-1 -kerning first=951 second=240 amount=-1 -kerning first=1220 second=370 amount=-2 -kerning first=259 second=102 amount=-1 -kerning first=376 second=943 amount=-2 -kerning first=169 second=354 amount=-5 -kerning first=166 second=1118 amount=-1 -kerning first=282 second=266 amount=-2 -kerning first=287 second=39 amount=-3 -kerning first=8224 second=217 amount=-2 -kerning first=48 second=1184 amount=-5 -kerning first=51 second=366 amount=-2 -kerning first=194 second=279 amount=-1 -kerning first=191 second=970 amount=-1 -kerning first=338 second=103 amount=-1 -kerning first=916 second=253 amount=-1 -kerning first=1169 second=1257 amount=-1 -kerning first=240 second=115 amount=-1 -kerning first=237 second=355 amount=-1 -kerning first=117 second=367 amount=-1 -kerning first=170 second=1038 amount=-2 -kerning first=8225 second=372 amount=-5 -kerning first=198 second=226 amount=-1 -kerning first=316 second=116 amount=-1 +kerning first=313 second=253 amount=-1 +kerning first=313 second=262 amount=-1 +kerning first=313 second=263 amount=-1 +kerning first=313 second=266 amount=-1 +kerning first=313 second=267 amount=-1 +kerning first=313 second=268 amount=-1 +kerning first=313 second=269 amount=-1 +kerning first=313 second=271 amount=-1 +kerning first=313 second=273 amount=-1 +kerning first=313 second=275 amount=-1 +kerning first=313 second=277 amount=-1 +kerning first=313 second=279 amount=-1 +kerning first=313 second=281 amount=-1 +kerning first=313 second=283 amount=-1 +kerning first=313 second=286 amount=-1 +kerning first=313 second=287 amount=-1 +kerning first=313 second=288 amount=-1 +kerning first=313 second=289 amount=-1 +kerning first=313 second=290 amount=-1 +kerning first=313 second=291 amount=-1 +kerning first=313 second=332 amount=-1 +kerning first=313 second=333 amount=-1 +kerning first=313 second=334 amount=-1 +kerning first=313 second=335 amount=-1 +kerning first=313 second=336 amount=-1 +kerning first=313 second=337 amount=-1 +kerning first=313 second=338 amount=-1 +kerning first=313 second=339 amount=-1 +kerning first=313 second=354 amount=-6 +kerning first=313 second=355 amount=-1 kerning first=313 second=356 amount=-6 -kerning first=98 second=380 amount=-1 -kerning first=115 second=8220 amount=-1 -kerning first=1036 second=269 amount=-2 -kerning first=289 second=369 amount=-1 -kerning first=59 second=251 amount=-1 -kerning first=199 second=381 amount=-1 -kerning first=8364 second=244 amount=-1 -kerning first=343 second=228 amount=-1 -kerning first=1179 second=962 amount=-1 -kerning first=365 second=370 amount=-2 -kerning first=962 second=283 amount=-1 -kerning first=125 second=252 amount=-1 -kerning first=40 second=266 amount=-2 -kerning first=43 second=39 amount=-3 -kerning first=1041 second=217 amount=-2 -kerning first=298 second=79 amount=-2 -kerning first=318 second=920 amount=-2 -kerning first=86 second=103 amount=-3 -kerning first=1103 second=1026 amount=-5 -kerning first=341 second=1257 amount=-1 -kerning first=934 second=1046 amount=-5 -kerning first=44 second=214 amount=-1 -kerning first=180 second=1101 amount=-1 -kerning first=296 second=945 amount=-1 -kerning first=64 second=356 amount=-5 -kerning first=207 second=268 amount=-2 -kerning first=8366 second=1108 amount=-1 -kerning first=8372 second=347 amount=-1 -kerning first=905 second=81 amount=-2 -kerning first=84 second=972 amount=-3 -kerning first=87 second=281 amount=-3 -kerning first=1117 second=231 amount=-1 -kerning first=944 second=243 amount=-1 -kerning first=1194 second=1202 amount=-2 -kerning first=1202 second=373 amount=-2 -kerning first=964 second=1263 amount=-1 -kerning first=163 second=357 amount=-1 -kerning first=166 second=117 amount=-1 -kerning first=276 second=269 amount=-1 -kerning first=185 second=973 amount=-1 -kerning first=1085 second=244 amount=-1 -kerning first=91 second=228 amount=-1 -kerning first=234 second=118 amount=-1 -kerning first=108 second=1194 amount=-2 -kerning first=1223 second=83 amount=-1 -kerning first=254 second=283 amount=-1 -kerning first=971 second=333 amount=-1 -kerning first=170 second=67 amount=-2 -kerning first=280 second=217 amount=-2 -kerning first=52 second=79 amount=-2 -kerning first=1051 second=949 amount=-1 -kerning first=1063 second=257 amount=-1 -kerning first=192 second=229 amount=-1 -kerning first=304 second=359 amount=-1 -kerning first=69 second=920 amount=-2 -kerning first=209 second=1195 amount=-1 -kerning first=330 second=1026 amount=-5 -kerning first=89 second=1257 amount=-4 -kerning first=1170 second=334 amount=-2 -kerning first=1119 second=1090 amount=-3 -kerning first=358 second=218 amount=-2 -kerning first=950 second=346 amount=-1 -kerning first=258 second=230 amount=-1 -kerning first=972 second=964 amount=-1 -kerning first=1026 second=273 amount=-1 -kerning first=278 second=947 amount=-4 -kerning first=8226 second=85 amount=-2 -kerning first=50 second=945 amount=-1 -kerning first=193 second=1240 amount=-2 -kerning first=190 second=1262 amount=-2 -kerning first=1096 second=347 amount=-1 -kerning first=1090 second=1108 amount=-1 -kerning first=910 second=1175 amount=-2 -kerning first=915 second=361 amount=-1 -kerning first=923 second=121 amount=-1 -kerning first=1171 second=965 amount=-1 -kerning first=239 second=243 amount=-1 -kerning first=951 second=1028 amount=-2 -kerning first=256 second=1263 amount=-1 -kerning first=34 second=269 amount=-1 -kerning first=197 second=332 amount=-2 +kerning first=313 second=357 amount=-1 +kerning first=313 second=359 amount=-1 +kerning first=313 second=360 amount=-1 +kerning first=313 second=361 amount=-1 +kerning first=313 second=362 amount=-1 +kerning first=313 second=363 amount=-1 +kerning first=313 second=364 amount=-1 +kerning first=313 second=365 amount=-1 +kerning first=313 second=366 amount=-1 +kerning first=313 second=367 amount=-1 +kerning first=313 second=368 amount=-1 +kerning first=313 second=369 amount=-1 +kerning first=313 second=370 amount=-1 +kerning first=313 second=371 amount=-1 +kerning first=313 second=372 amount=-4 +kerning first=313 second=373 amount=-3 +kerning first=313 second=374 amount=-6 +kerning first=313 second=375 amount=-1 +kerning first=313 second=376 amount=-6 +kerning first=313 second=920 amount=-1 +kerning first=313 second=927 amount=-1 +kerning first=313 second=932 amount=-6 +kerning first=313 second=933 amount=-6 +kerning first=313 second=939 amount=-6 +kerning first=313 second=940 amount=-1 +kerning first=313 second=941 amount=-1 +kerning first=313 second=945 amount=-1 +kerning first=313 second=947 amount=-3 +kerning first=313 second=949 amount=-1 +kerning first=313 second=957 amount=-3 +kerning first=313 second=959 amount=-1 +kerning first=313 second=962 amount=-1 +kerning first=313 second=963 amount=-1 +kerning first=313 second=965 amount=-1 +kerning first=313 second=966 amount=-1 +kerning first=313 second=968 amount=-1 +kerning first=313 second=972 amount=-1 +kerning first=313 second=973 amount=-1 +kerning first=313 second=1026 amount=-6 +kerning first=313 second=1028 amount=-1 +kerning first=313 second=1035 amount=-6 +kerning first=313 second=1038 amount=-1 +kerning first=313 second=1054 amount=-1 +kerning first=313 second=1057 amount=-1 +kerning first=313 second=1058 amount=-6 +kerning first=313 second=1059 amount=-1 +kerning first=313 second=1066 amount=-6 +kerning first=313 second=1077 amount=-1 +kerning first=313 second=1086 amount=-1 +kerning first=313 second=1089 amount=-1 +kerning first=313 second=1091 amount=-1 +kerning first=313 second=1092 amount=-1 +kerning first=313 second=1104 amount=-1 +kerning first=313 second=1105 amount=-1 +kerning first=313 second=1108 amount=-1 +kerning first=313 second=1118 amount=-1 +kerning first=313 second=1184 amount=-6 +kerning first=313 second=1194 amount=-1 +kerning first=313 second=1195 amount=-1 +kerning first=313 second=1198 amount=-6 +kerning first=313 second=1199 amount=-3 +kerning first=313 second=1240 amount=-1 +kerning first=313 second=1241 amount=-1 +kerning first=313 second=1256 amount=-1 +kerning first=313 second=1257 amount=-1 +kerning first=313 second=1262 amount=-1 +kerning first=313 second=1263 amount=-1 +kerning first=313 second=8211 amount=-3 +kerning first=313 second=8212 amount=-3 +kerning first=313 second=8216 amount=-3 +kerning first=313 second=8217 amount=-3 +kerning first=313 second=8220 amount=-3 +kerning first=313 second=8221 amount=-3 +kerning first=313 second=8249 amount=-3 +kerning first=315 second=34 amount=-3 +kerning first=315 second=39 amount=-3 +kerning first=315 second=45 amount=-3 +kerning first=315 second=63 amount=-4 +kerning first=315 second=67 amount=-1 +kerning first=315 second=71 amount=-1 +kerning first=315 second=79 amount=-1 +kerning first=315 second=81 amount=-1 +kerning first=315 second=84 amount=-6 +kerning first=315 second=85 amount=-1 +kerning first=315 second=86 amount=-5 +kerning first=315 second=87 amount=-4 +kerning first=315 second=89 amount=-6 +kerning first=315 second=99 amount=-1 +kerning first=315 second=100 amount=-1 +kerning first=315 second=101 amount=-1 +kerning first=315 second=103 amount=-1 +kerning first=315 second=111 amount=-1 +kerning first=315 second=113 amount=-1 +kerning first=315 second=116 amount=-1 +kerning first=315 second=117 amount=-1 +kerning first=315 second=118 amount=-3 +kerning first=315 second=119 amount=-3 +kerning first=315 second=121 amount=-1 +kerning first=315 second=171 amount=-3 +kerning first=315 second=173 amount=-3 +kerning first=315 second=199 amount=-1 +kerning first=315 second=210 amount=-1 +kerning first=315 second=211 amount=-1 +kerning first=315 second=212 amount=-1 +kerning first=315 second=213 amount=-1 +kerning first=315 second=214 amount=-1 +kerning first=315 second=216 amount=-1 +kerning first=315 second=217 amount=-1 +kerning first=315 second=218 amount=-1 +kerning first=315 second=219 amount=-1 +kerning first=315 second=220 amount=-1 +kerning first=315 second=221 amount=-6 +kerning first=315 second=231 amount=-1 +kerning first=315 second=232 amount=-1 +kerning first=315 second=233 amount=-1 +kerning first=315 second=234 amount=-1 +kerning first=315 second=235 amount=-1 +kerning first=315 second=240 amount=-1 +kerning first=315 second=242 amount=-1 +kerning first=315 second=243 amount=-1 kerning first=315 second=244 amount=-1 -kerning first=80 second=106 amount=1 -kerning first=220 second=256 amount=-2 -kerning first=934 second=71 amount=-2 -kerning first=960 second=233 amount=-1 -kerning first=1298 second=363 amount=-1 -kerning first=38 second=217 amount=-2 -kerning first=1035 second=375 amount=-1 -kerning first=291 second=257 amount=-1 -kerning first=8260 second=210 amount=-2 -kerning first=61 second=119 amount=-4 -kerning first=58 second=359 amount=-1 -kerning first=1069 second=1051 amount=-1 -kerning first=198 second=963 amount=-1 -kerning first=201 second=271 amount=-1 -kerning first=8363 second=352 amount=-1 -kerning first=78 second=1026 amount=-5 -kerning first=339 second=1090 amount=-1 -kerning first=936 second=246 amount=-1 -kerning first=124 second=360 amount=-2 -kerning first=1299 second=1059 amount=-2 -kerning first=273 second=45 amount=-2 -kerning first=36 second=947 amount=-4 -kerning first=182 second=287 amount=-1 -kerning first=205 second=219 amount=-2 -kerning first=317 second=1108 amount=-1 -kerning first=322 second=347 amount=-1 -kerning first=903 second=34 amount=-3 -kerning first=900 second=259 amount=-1 -kerning first=105 second=373 amount=-4 -kerning first=965 second=336 amount=-2 -kerning first=274 second=220 amount=-2 -kerning first=1047 second=260 amount=-1 -kerning first=186 second=232 amount=-1 -kerning first=298 second=362 amount=-2 -kerning first=206 second=374 amount=-5 -kerning first=1116 second=337 amount=-2 -kerning first=1119 second=99 amount=-1 -kerning first=352 second=221 amount=-2 -kerning first=946 second=111 amount=-1 -kerning first=252 second=233 amount=-1 -kerning first=369 second=1177 amount=-1 -kerning first=372 second=363 amount=-2 -kerning first=966 second=967 amount=-2 -kerning first=165 second=245 amount=-1 -kerning first=47 second=257 amount=-1 -kerning first=296 second=8211 amount=-2 -kerning first=70 second=194 amount=-4 -kerning first=1084 second=352 amount=-1 -kerning first=213 second=84 amount=-2 -kerning first=8378 second=1241 amount=-1 -kerning first=905 second=364 amount=-2 -kerning first=90 second=334 amount=-1 -kerning first=1117 second=968 amount=-1 -kerning first=1168 second=277 amount=-1 -kerning first=944 second=1035 amount=-5 -kerning first=948 second=291 amount=-1 -kerning first=1220 second=211 amount=-2 -kerning first=273 second=8249 amount=-3 -kerning first=282 second=85 amount=-2 -kerning first=8220 second=263 amount=-1 -kerning first=191 second=335 amount=-1 -kerning first=194 second=97 amount=-1 -kerning first=214 second=259 amount=-1 -kerning first=903 second=8216 amount=-3 -kerning first=916 second=74 amount=-1 -kerning first=91 second=965 amount=-1 -kerning first=354 second=1075 amount=-2 -kerning first=1210 second=1184 amount=-5 -kerning first=1223 second=366 amount=-2 -kerning first=380 second=248 amount=-1 -kerning first=1028 second=171 amount=-1 -kerning first=170 second=350 amount=-1 -kerning first=8225 second=213 amount=-2 -kerning first=49 second=1176 amount=-1 -kerning first=52 second=362 amount=-2 -kerning first=1051 second=8217 amount=-3 -kerning first=192 second=966 amount=-1 -kerning first=195 second=275 amount=-1 -kerning first=75 second=289 amount=-1 -kerning first=912 second=940 amount=-1 -kerning first=238 second=351 amount=-1 -kerning first=361 second=261 amount=-1 -kerning first=358 second=953 amount=-1 -kerning first=1240 second=198 amount=-2 -kerning first=175 second=290 amount=-2 -kerning first=289 second=210 amount=-2 -kerning first=8226 second=368 amount=-2 -kerning first=50 second=8211 amount=-1 -kerning first=1067 second=941 amount=-1 -kerning first=314 second=352 amount=-1 -kerning first=1099 second=1241 amount=-1 -kerning first=931 second=199 amount=-2 -kerning first=1176 second=1079 amount=-1 -kerning first=1186 second=89 amount=-2 -kerning first=239 second=1035 amount=-5 -kerning first=365 second=211 amount=-2 -kerning first=958 second=339 amount=-1 -kerning first=962 second=101 amount=-1 -kerning first=40 second=85 amount=-2 -kerning first=1037 second=263 amount=-1 -kerning first=179 second=235 amount=-1 -kerning first=8224 second=8221 amount=-3 -kerning first=8230 second=1066 amount=-5 -kerning first=8365 second=240 amount=-1 -kerning first=926 second=1118 amount=-1 -kerning first=934 second=354 amount=-5 -kerning first=363 second=1184 amount=-5 -kerning first=963 second=279 amount=-1 -kerning first=960 second=970 amount=-1 -kerning first=126 second=248 amount=-1 -kerning first=271 second=171 amount=-3 -kerning first=1241 second=63 amount=-2 -kerning first=1044 second=213 amount=-1 -kerning first=1080 second=115 amount=-1 -kerning first=207 second=87 amount=-5 -kerning first=84 second=337 amount=-3 -kerning first=87 second=99 amount=-3 -kerning first=936 second=1038 amount=-2 -kerning first=107 second=261 amount=-1 -kerning first=1202 second=214 amount=-1 -kerning first=364 second=8218 amount=-1 -kerning first=967 second=226 amount=-1 -kerning first=269 second=1078 amount=-1 -kerning first=185 second=338 amount=-2 -kerning first=188 second=100 amount=-1 -kerning first=300 second=250 amount=-1 -kerning first=297 second=941 amount=-1 -kerning first=65 second=352 amount=-1 -kerning first=325 second=1241 amount=-1 -kerning first=88 second=277 amount=-2 -kerning first=1118 second=227 amount=-1 -kerning first=248 second=1098 amount=-1 -kerning first=251 second=339 amount=-1 -kerning first=254 second=101 amount=-1 -kerning first=374 second=251 amount=-2 -kerning first=167 second=113 amount=-1 -kerning first=164 second=353 amount=-1 -kerning first=46 second=365 amount=-1 -kerning first=1041 second=8221 amount=-3 -kerning first=1047 second=1066 amount=-1 -kerning first=1087 second=240 amount=-1 -kerning first=333 second=102 amount=-1 -kerning first=904 second=943 amount=-1 -kerning first=92 second=224 amount=-1 -kerning first=358 second=39 amount=-3 -kerning first=947 second=8222 amount=-2 -kerning first=1224 second=79 amount=-2 -kerning first=255 second=279 amount=-1 -kerning first=252 second=970 amount=-1 -kerning first=8218 second=371 amount=-1 -kerning first=44 second=8217 amount=-1 -kerning first=1064 second=253 amount=-1 -kerning first=193 second=225 amount=-1 -kerning first=305 second=355 amount=-1 -kerning first=948 second=1101 amount=-1 -kerning first=1220 second=945 amount=-1 -kerning first=1027 second=268 amount=-2 -kerning first=282 second=368 amount=-2 -kerning first=8230 second=81 amount=-1 -kerning first=54 second=250 amount=-1 -kerning first=51 second=941 amount=-1 -kerning first=74 second=1241 amount=-1 -kerning first=77 second=187 amount=-1 -kerning first=338 second=227 amount=-1 -kerning first=916 second=357 amount=-1 -kerning first=926 second=117 amount=-1 -kerning first=94 second=1079 amount=-1 -kerning first=100 second=89 amount=-5 -kerning first=952 second=973 amount=-1 -kerning first=35 second=263 amount=-1 -kerning first=1035 second=216 amount=-2 -kerning first=280 second=8221 amount=-3 -kerning first=1073 second=118 amount=-4 -kerning first=316 second=240 amount=-1 -kerning first=221 second=252 amount=-2 -kerning first=339 second=382 amount=-1 -kerning first=920 second=1044 amount=-1 -kerning first=936 second=67 amount=-2 -kerning first=104 second=39 amount=-1 -kerning first=367 second=79 amount=-2 -kerning first=1299 second=359 amount=-1 -kerning first=1036 second=371 amount=-1 -kerning first=182 second=103 amount=-1 -kerning first=294 second=253 amount=-1 -kerning first=59 second=355 amount=-1 -kerning first=62 second=115 amount=-1 -kerning first=202 second=267 amount=-1 -kerning first=1070 second=1046 amount=-3 -kerning first=8364 second=346 amount=-1 -kerning first=105 second=214 amount=-2 -kerning first=365 second=945 amount=-1 -kerning first=962 second=1240 amount=-2 -kerning first=958 second=1262 amount=-2 -kerning first=125 second=356 amount=-5 -kerning first=161 second=116 amount=-1 -kerning first=40 second=368 amount=-2 -kerning first=1037 second=1069 amount=-1 -kerning first=179 second=972 amount=-1 -kerning first=183 second=281 amount=-1 -kerning first=8250 second=1175 amount=-2 -kerning first=66 second=65 amount=-1 -kerning first=8365 second=1028 amount=-2 -kerning first=8370 second=288 amount=-2 -kerning first=86 second=227 amount=-3 -kerning first=1103 second=1263 amount=-1 -kerning first=41 second=1066 amount=-5 -kerning first=38 second=8221 amount=-3 -kerning first=302 second=118 amount=-4 -kerning first=204 second=1194 amount=-2 -kerning first=207 second=370 amount=-2 -kerning first=327 second=283 amount=-1 -kerning first=8378 second=233 amount=-1 -kerning first=84 second=1256 amount=-1 -kerning first=87 second=382 amount=-1 -kerning first=1117 second=333 amount=-1 -kerning first=113 second=79 amount=-2 -kerning first=1202 second=949 amount=-1 -kerning first=253 second=229 amount=-1 -kerning first=376 second=119 amount=-2 -kerning first=967 second=963 amount=-1 -kerning first=163 second=920 amount=-2 -kerning first=273 second=1195 amount=-1 -kerning first=276 second=371 amount=-1 -kerning first=48 second=253 amount=-1 -kerning first=185 second=1257 amount=-1 -kerning first=1085 second=346 amount=-1 -kerning first=906 second=360 amount=-2 -kerning first=1118 second=964 amount=-3 -kerning first=1174 second=45 amount=-2 -kerning first=1169 second=273 amount=-1 -kerning first=351 second=947 amount=-1 -kerning first=251 second=1262 amount=-2 -kerning first=254 second=1240 amount=-2 -kerning first=8225 second=34 amount=-3 -kerning first=8221 second=259 amount=-1 -kerning first=1063 second=361 amount=-1 -kerning first=1087 second=1028 amount=-2 -kerning first=1095 second=288 amount=-2 -kerning first=330 second=1263 amount=-1 -kerning first=95 second=269 amount=-1 -kerning first=1224 second=362 amount=-2 -kerning first=1219 second=1176 amount=-1 -kerning first=258 second=332 amount=-2 -kerning first=381 second=244 amount=-1 -kerning first=1026 second=374 amount=-5 -kerning first=972 second=1203 amount=-2 -kerning first=175 second=106 amount=1 -kerning first=56 second=118 amount=-4 -kerning first=193 second=962 amount=-1 -kerning first=8361 second=111 amount=-1 -kerning first=76 second=283 amount=-1 -kerning first=1099 second=233 amount=-1 -kerning first=923 second=245 amount=-1 -kerning first=1176 second=375 amount=-1 -kerning first=1220 second=8211 amount=-2 -kerning first=1256 second=1051 amount=-1 -kerning first=172 second=1026 amount=-5 -kerning first=1037 second=84 amount=-5 -kerning first=176 second=286 amount=-2 -kerning first=8230 second=364 amount=-1 -kerning first=1071 second=246 amount=-1 -kerning first=200 second=218 amount=-2 -kerning first=80 second=230 amount=-1 -kerning first=338 second=964 amount=-3 -kerning first=344 second=45 amount=-1 -kerning first=341 second=273 amount=-1 -kerning first=97 second=947 amount=-1 -kerning first=100 second=372 amount=-5 -kerning first=1174 second=8249 amount=-1 -kerning first=960 second=335 amount=-1 -kerning first=963 second=97 amount=-1 -kerning first=35 second=1069 amount=-1 -kerning first=41 second=81 amount=-2 -kerning first=1044 second=34 amount=-2 -kerning first=180 second=231 amount=-1 -kerning first=291 second=361 amount=-1 -kerning first=8225 second=8216 amount=-3 -kerning first=296 second=121 amount=-1 -kerning first=61 second=243 amount=-1 -kerning first=201 second=373 amount=-4 -kerning first=316 second=1028 amount=-2 -kerning first=321 second=288 amount=-2 -kerning first=78 second=1263 amount=-1 -kerning first=936 second=350 amount=-1 -kerning first=1194 second=260 amount=-1 -kerning first=247 second=232 amount=-1 -kerning first=367 second=362 amount=-2 -kerning first=964 second=275 amount=-1 -kerning first=160 second=244 amount=-1 -kerning first=300 second=71 amount=-2 -kerning first=1078 second=351 amount=-1 -kerning first=1081 second=111 amount=-1 -kerning first=199 second=8230 amount=-1 -kerning first=325 second=233 amount=-1 -kerning first=900 second=363 amount=-1 -kerning first=942 second=290 amount=-2 -kerning first=105 second=949 amount=-1 -kerning first=108 second=257 amount=-1 -kerning first=245 second=1299 amount=-1 -kerning first=365 second=8211 amount=-2 -kerning first=368 second=1051 amount=-1 -kerning first=183 second=1090 amount=-3 -kerning first=186 second=334 amount=-2 -kerning first=301 second=246 amount=-1 -kerning first=1083 second=291 amount=-1 -kerning first=8370 second=1098 amount=-3 -kerning first=8377 second=339 amount=-1 -kerning first=901 second=1059 amount=-2 -kerning first=92 second=45 amount=-2 -kerning first=86 second=964 amount=-3 -kerning first=89 second=273 amount=-4 -kerning first=344 second=8249 amount=-1 -kerning first=946 second=235 amount=-1 -kerning first=252 second=335 amount=-1 -kerning first=255 second=97 amount=-1 -kerning first=162 second=1108 amount=-1 -kerning first=165 second=347 amount=-1 -kerning first=278 second=259 amount=-1 -kerning first=281 second=34 amount=-1 -kerning first=8218 second=212 amount=-1 -kerning first=47 second=361 amount=-1 -kerning first=50 second=121 amount=-1 -kerning first=1044 second=8216 amount=-2 -kerning first=70 second=288 amount=-2 -kerning first=8378 second=970 amount=-1 -kerning first=910 second=248 amount=-4 -kerning first=93 second=220 amount=-2 -kerning first=1171 second=171 amount=-3 -kerning first=230 second=1113 amount=-1 -kerning first=356 second=260 amount=-6 -kerning first=113 second=362 amount=-2 -kerning first=1202 second=8217 amount=-2 -kerning first=253 second=966 amount=-1 -kerning first=256 second=275 amount=-1 -kerning first=1027 second=87 amount=-5 -kerning first=169 second=289 amount=-1 -kerning first=54 second=71 amount=-2 -kerning first=1062 second=940 amount=-1 -kerning first=194 second=221 amount=-5 -kerning first=306 second=351 amount=-1 -kerning first=74 second=233 amount=-1 -kerning first=311 second=111 amount=-2 -kerning first=214 second=363 amount=-1 +kerning first=315 second=245 amount=-1 +kerning first=315 second=246 amount=-1 +kerning first=315 second=248 amount=-1 +kerning first=315 second=249 amount=-1 +kerning first=315 second=250 amount=-1 +kerning first=315 second=251 amount=-1 +kerning first=315 second=252 amount=-1 +kerning first=315 second=253 amount=-1 +kerning first=315 second=262 amount=-1 +kerning first=315 second=263 amount=-1 +kerning first=315 second=266 amount=-1 +kerning first=315 second=267 amount=-1 +kerning first=315 second=268 amount=-1 +kerning first=315 second=269 amount=-1 +kerning first=315 second=271 amount=-1 +kerning first=315 second=273 amount=-1 +kerning first=315 second=275 amount=-1 +kerning first=315 second=277 amount=-1 +kerning first=315 second=279 amount=-1 +kerning first=315 second=281 amount=-1 +kerning first=315 second=283 amount=-1 +kerning first=315 second=286 amount=-1 +kerning first=315 second=287 amount=-1 +kerning first=315 second=288 amount=-1 +kerning first=315 second=289 amount=-1 +kerning first=315 second=290 amount=-1 +kerning first=315 second=291 amount=-1 +kerning first=315 second=332 amount=-1 +kerning first=315 second=333 amount=-1 +kerning first=315 second=334 amount=-1 +kerning first=315 second=335 amount=-1 +kerning first=315 second=336 amount=-1 +kerning first=315 second=337 amount=-1 +kerning first=315 second=338 amount=-1 +kerning first=315 second=339 amount=-1 +kerning first=315 second=354 amount=-6 +kerning first=315 second=355 amount=-1 +kerning first=315 second=356 amount=-6 +kerning first=315 second=357 amount=-1 +kerning first=315 second=359 amount=-1 +kerning first=315 second=360 amount=-1 +kerning first=315 second=361 amount=-1 +kerning first=315 second=362 amount=-1 +kerning first=315 second=363 amount=-1 +kerning first=315 second=364 amount=-1 +kerning first=315 second=365 amount=-1 +kerning first=315 second=366 amount=-1 +kerning first=315 second=367 amount=-1 +kerning first=315 second=368 amount=-1 +kerning first=315 second=369 amount=-1 +kerning first=315 second=370 amount=-1 +kerning first=315 second=371 amount=-1 +kerning first=315 second=372 amount=-4 +kerning first=315 second=373 amount=-3 +kerning first=315 second=374 amount=-6 +kerning first=315 second=375 amount=-1 +kerning first=315 second=376 amount=-6 +kerning first=315 second=920 amount=-1 +kerning first=315 second=927 amount=-1 +kerning first=315 second=932 amount=-6 +kerning first=315 second=933 amount=-6 +kerning first=315 second=939 amount=-6 +kerning first=315 second=940 amount=-1 +kerning first=315 second=941 amount=-1 +kerning first=315 second=945 amount=-1 +kerning first=315 second=947 amount=-3 +kerning first=315 second=949 amount=-1 +kerning first=315 second=957 amount=-3 +kerning first=315 second=959 amount=-1 +kerning first=315 second=962 amount=-1 +kerning first=315 second=963 amount=-1 +kerning first=315 second=965 amount=-1 +kerning first=315 second=966 amount=-1 +kerning first=315 second=968 amount=-1 +kerning first=315 second=972 amount=-1 +kerning first=315 second=973 amount=-1 +kerning first=315 second=1026 amount=-6 +kerning first=315 second=1028 amount=-1 +kerning first=315 second=1035 amount=-6 +kerning first=315 second=1038 amount=-1 +kerning first=315 second=1054 amount=-1 +kerning first=315 second=1057 amount=-1 +kerning first=315 second=1058 amount=-6 +kerning first=315 second=1059 amount=-1 +kerning first=315 second=1066 amount=-6 +kerning first=315 second=1077 amount=-1 +kerning first=315 second=1086 amount=-1 +kerning first=315 second=1089 amount=-1 +kerning first=315 second=1091 amount=-1 +kerning first=315 second=1092 amount=-1 +kerning first=315 second=1104 amount=-1 +kerning first=315 second=1105 amount=-1 +kerning first=315 second=1108 amount=-1 +kerning first=315 second=1118 amount=-1 +kerning first=315 second=1184 amount=-6 +kerning first=315 second=1194 amount=-1 +kerning first=315 second=1195 amount=-1 +kerning first=315 second=1198 amount=-6 +kerning first=315 second=1199 amount=-3 +kerning first=315 second=1240 amount=-1 +kerning first=315 second=1241 amount=-1 +kerning first=315 second=1256 amount=-1 +kerning first=315 second=1257 amount=-1 +kerning first=315 second=1262 amount=-1 +kerning first=315 second=1263 amount=-1 +kerning first=315 second=8211 amount=-3 +kerning first=315 second=8212 amount=-3 +kerning first=315 second=8216 amount=-3 +kerning first=315 second=8217 amount=-3 +kerning first=315 second=8220 amount=-3 +kerning first=315 second=8221 amount=-3 +kerning first=315 second=8249 amount=-3 +kerning first=324 second=34 amount=-1 +kerning first=324 second=39 amount=-1 +kerning first=324 second=63 amount=-2 +kerning first=324 second=102 amount=-1 +kerning first=324 second=106 amount=1 +kerning first=324 second=118 amount=-1 +kerning first=324 second=119 amount=-1 +kerning first=324 second=373 amount=-1 +kerning first=324 second=947 amount=-1 +kerning first=324 second=957 amount=-1 +kerning first=324 second=964 amount=-1 +kerning first=324 second=1090 amount=-1 +kerning first=324 second=1098 amount=-1 +kerning first=324 second=1112 amount=1 +kerning first=324 second=1185 amount=-1 +kerning first=324 second=1199 amount=-1 +kerning first=324 second=8216 amount=-1 +kerning first=324 second=8217 amount=-1 +kerning first=324 second=8220 amount=-1 +kerning first=324 second=8221 amount=-1 +kerning first=326 second=34 amount=-1 +kerning first=326 second=39 amount=-1 +kerning first=326 second=63 amount=-2 +kerning first=326 second=102 amount=-1 +kerning first=326 second=106 amount=1 +kerning first=326 second=118 amount=-1 +kerning first=326 second=119 amount=-1 +kerning first=326 second=373 amount=-1 +kerning first=326 second=947 amount=-1 +kerning first=326 second=957 amount=-1 +kerning first=326 second=964 amount=-1 +kerning first=326 second=1090 amount=-1 +kerning first=326 second=1098 amount=-1 +kerning first=326 second=1112 amount=1 +kerning first=326 second=1185 amount=-1 +kerning first=326 second=1199 amount=-1 +kerning first=326 second=8216 amount=-1 +kerning first=326 second=8217 amount=-1 +kerning first=326 second=8220 amount=-1 +kerning first=326 second=8221 amount=-1 +kerning first=328 second=34 amount=-1 +kerning first=328 second=39 amount=-1 +kerning first=328 second=63 amount=-2 +kerning first=328 second=102 amount=-1 +kerning first=328 second=106 amount=1 +kerning first=328 second=118 amount=-1 +kerning first=328 second=119 amount=-1 +kerning first=328 second=373 amount=-1 +kerning first=328 second=947 amount=-1 +kerning first=328 second=957 amount=-1 +kerning first=328 second=964 amount=-1 +kerning first=328 second=1090 amount=-1 +kerning first=328 second=1098 amount=-1 +kerning first=328 second=1112 amount=1 +kerning first=328 second=1185 amount=-1 +kerning first=328 second=1199 amount=-1 +kerning first=328 second=8216 amount=-1 +kerning first=328 second=8217 amount=-1 +kerning first=328 second=8220 amount=-1 +kerning first=328 second=8221 amount=-1 +kerning first=331 second=34 amount=-1 +kerning first=331 second=39 amount=-1 +kerning first=331 second=63 amount=-2 +kerning first=331 second=102 amount=-1 +kerning first=331 second=106 amount=1 +kerning first=331 second=118 amount=-1 +kerning first=331 second=119 amount=-1 +kerning first=331 second=373 amount=-1 +kerning first=331 second=947 amount=-1 +kerning first=331 second=957 amount=-1 +kerning first=331 second=964 amount=-1 +kerning first=331 second=1090 amount=-1 +kerning first=331 second=1098 amount=-1 +kerning first=331 second=1112 amount=1 +kerning first=331 second=1185 amount=-1 +kerning first=331 second=1199 amount=-1 +kerning first=331 second=8216 amount=-1 +kerning first=331 second=8217 amount=-1 +kerning first=331 second=8220 amount=-1 +kerning first=331 second=8221 amount=-1 +kerning first=332 second=44 amount=-1 +kerning first=332 second=46 amount=-1 +kerning first=332 second=47 amount=-1 +kerning first=332 second=65 amount=-2 +kerning first=332 second=84 amount=-2 +kerning first=332 second=86 amount=-2 +kerning first=332 second=87 amount=-2 +kerning first=332 second=88 amount=-3 +kerning first=332 second=89 amount=-3 +kerning first=332 second=90 amount=-1 +kerning first=332 second=193 amount=-2 +kerning first=332 second=194 amount=-2 +kerning first=332 second=196 amount=-2 +kerning first=332 second=197 amount=-2 +kerning first=332 second=198 amount=-2 +kerning first=332 second=221 amount=-3 +kerning first=332 second=256 amount=-2 +kerning first=332 second=258 amount=-2 +kerning first=332 second=260 amount=-2 +kerning first=332 second=354 amount=-2 +kerning first=332 second=356 amount=-2 +kerning first=332 second=372 amount=-2 +kerning first=332 second=374 amount=-3 +kerning first=332 second=376 amount=-3 +kerning first=332 second=377 amount=-1 +kerning first=332 second=379 amount=-1 +kerning first=332 second=381 amount=-1 +kerning first=332 second=913 amount=-2 +kerning first=332 second=916 amount=-2 +kerning first=332 second=918 amount=-1 +kerning first=332 second=923 amount=-2 +kerning first=332 second=932 amount=-2 +kerning first=332 second=933 amount=-3 +kerning first=332 second=935 amount=-3 +kerning first=332 second=939 amount=-3 +kerning first=332 second=955 amount=-2 kerning first=332 second=967 amount=-1 -kerning first=94 second=375 amount=-1 -kerning first=237 second=290 amount=-2 -kerning first=955 second=100 amount=-1 -kerning first=952 second=338 amount=-2 -kerning first=1223 second=941 amount=-1 -kerning first=35 second=84 amount=-5 -kerning first=174 second=234 amount=-1 -kerning first=55 second=246 amount=-1 -kerning first=195 second=376 amount=-5 -kerning first=313 second=291 amount=-1 -kerning first=1095 second=1098 amount=-3 -kerning first=215 second=1059 amount=-2 -kerning first=928 second=113 amount=-1 -kerning first=92 second=8249 amount=-3 -kerning first=1178 second=263 amount=-1 -kerning first=361 second=365 amount=-1 -kerning first=36 second=259 amount=-1 -kerning first=1036 second=212 amount=-3 -kerning first=281 second=8216 amount=-1 -kerning first=8226 second=943 amount=-1 -kerning first=1067 second=1118 amount=-1 -kerning first=1070 second=354 amount=-2 -kerning first=193 second=8250 amount=-1 -kerning first=1099 second=970 amount=-1 -kerning first=1186 second=213 amount=-1 -kerning first=962 second=225 amount=-1 -kerning first=270 second=87 amount=-2 -kerning first=1034 second=1185 amount=-2 -kerning first=1037 second=367 amount=-1 -kerning first=179 second=337 amount=-1 -kerning first=183 second=99 amount=-1 -kerning first=63 second=111 amount=-1 -kerning first=1071 second=1038 amount=-2 -kerning first=60 second=351 amount=-1 -kerning first=203 second=261 amount=-1 -kerning first=200 second=953 amount=-1 -kerning first=249 second=100 amount=-1 -kerning first=369 second=250 amount=-1 -kerning first=126 second=352 amount=-1 -kerning first=271 second=262 amount=-2 -kerning first=41 second=364 amount=-2 -kerning first=1035 second=8220 amount=-3 -kerning first=180 second=968 amount=-1 -kerning first=184 second=277 amount=-1 -kerning first=299 second=199 amount=-2 -kerning first=61 second=1035 amount=-5 -kerning first=64 second=291 amount=-1 -kerning first=207 second=211 amount=-2 -kerning first=321 second=1098 amount=-3 -kerning first=8366 second=973 amount=-1 -kerning first=327 second=101 amount=-1 -kerning first=902 second=251 amount=-1 -kerning first=345 second=955 amount=-3 -kerning first=1194 second=1066 amount=-1 -kerning first=276 second=212 amount=-2 -kerning first=1049 second=252 amount=-1 -kerning first=1046 second=943 amount=-1 -kerning first=188 second=224 amount=-1 -kerning first=300 second=354 amount=-5 -kerning first=297 second=1118 amount=-1 -kerning first=205 second=1184 amount=-5 -kerning first=325 second=970 amount=-1 -kerning first=91 second=171 amount=-3 -kerning first=234 second=63 amount=-2 -kerning first=354 second=213 amount=-1 -kerning first=105 second=8217 amount=-3 -kerning first=1210 second=253 amount=-1 -kerning first=254 second=225 amount=-1 -kerning first=971 second=267 amount=-1 -kerning first=274 second=1185 amount=-3 -kerning first=49 second=249 amount=-1 -kerning first=301 second=1038 amount=-2 -kerning first=1083 second=1101 amount=-1 -kerning first=8377 second=1262 amount=-2 -kerning first=908 second=356 amount=-2 -kerning first=912 second=116 amount=-1 -kerning first=89 second=1078 amount=-2 -kerning first=1170 second=268 amount=-2 -kerning first=946 second=972 amount=-1 -kerning first=950 second=281 amount=-1 -kerning first=168 second=1241 amount=-1 -kerning first=275 second=8220 amount=-1 -kerning first=53 second=199 amount=-2 -kerning first=1067 second=117 amount=-1 -kerning first=1064 second=357 amount=-1 -kerning first=196 second=89 amount=-5 -kerning first=190 second=1079 amount=-1 -kerning first=73 second=339 amount=-1 -kerning first=70 second=1098 amount=-3 -kerning first=76 second=101 amount=-1 -kerning first=334 second=381 amount=-1 -kerning first=96 second=263 amount=-1 -kerning first=1176 second=216 amount=-2 -kerning first=353 second=8221 amount=-1 -kerning first=954 second=228 amount=-1 -kerning first=1263 second=118 amount=-4 -kerning first=262 second=90 amount=-1 -kerning first=382 second=240 amount=-1 -kerning first=973 second=1194 amount=-2 -kerning first=1027 second=370 amount=-2 -kerning first=282 second=943 amount=-1 -kerning first=287 second=252 amount=-1 -kerning first=54 second=354 amount=-5 -kerning first=51 second=1118 amount=-1 -kerning first=1071 second=67 amount=-2 -kerning first=197 second=266 amount=-2 -kerning first=200 second=39 amount=-3 -kerning first=77 second=279 amount=-1 -kerning first=74 second=970 amount=-1 -kerning first=916 second=920 amount=-2 -kerning first=100 second=213 amount=-2 -kerning first=1174 second=1195 amount=-1 -kerning first=363 second=253 amount=-1 -kerning first=952 second=1257 amount=-1 -kerning first=123 second=115 amount=-1 -kerning first=35 second=367 amount=-1 -kerning first=8240 second=360 amount=-2 -kerning first=55 second=1038 amount=-2 -kerning first=1073 second=242 amount=-1 -kerning first=201 second=214 amount=-2 -kerning first=1069 second=923 amount=-2 -kerning first=8363 second=287 amount=-1 -kerning first=182 second=227 amount=-1 -kerning first=297 second=117 amount=-1 -kerning first=294 second=357 amount=-1 -kerning first=202 second=369 amount=-1 -kerning first=317 second=973 amount=-1 -kerning first=8369 second=232 amount=-1 -kerning first=942 second=106 amount=1 -kerning first=99 second=8221 amount=-1 -kerning first=371 second=118 amount=-4 -kerning first=962 second=962 amount=-1 -kerning first=161 second=240 amount=-1 -kerning first=40 second=943 amount=-1 -kerning first=43 second=252 amount=-1 -kerning first=8211 second=83 amount=-1 -kerning first=179 second=1256 amount=-2 -kerning first=301 second=67 amount=-2 -kerning first=209 second=79 amount=-2 -kerning first=901 second=359 amount=-1 -kerning first=904 second=119 amount=-4 -kerning first=86 second=328 amount=-2 -kerning first=1116 second=271 amount=-2 -kerning first=8212 second=258 amount=-2 -kerning first=1048 second=360 amount=-2 -kerning first=302 second=242 amount=-1 -kerning first=64 second=1101 amount=-1 -kerning first=1084 second=287 amount=-1 -kerning first=207 second=945 amount=-1 -kerning first=327 second=1240 amount=-2 -kerning first=8378 second=335 amount=-1 -kerning first=90 second=268 amount=-1 -kerning first=1168 second=219 amount=-2 -kerning first=356 second=81 amount=-1 -kerning first=948 second=231 amount=-1 -kerning first=1220 second=121 amount=-1 -kerning first=376 second=243 amount=-4 -kerning first=970 second=373 amount=-2 -kerning first=48 second=357 amount=-1 -kerning first=51 second=117 amount=-1 -kerning first=191 second=269 amount=-1 -kerning first=1094 second=232 amount=-1 -kerning first=94 second=216 amount=-2 -kerning first=237 second=106 amount=1 -kerning first=117 second=118 amount=-4 -kerning first=254 second=962 amount=-1 -kerning first=170 second=283 amount=-1 -kerning first=55 second=67 amount=-2 -kerning first=195 second=217 amount=-2 -kerning first=75 second=229 amount=-1 -kerning first=215 second=359 amount=-1 -kerning first=339 second=44 amount=-1 -kerning first=920 second=194 amount=-2 -kerning first=95 second=371 amount=-1 -kerning first=92 second=1195 amount=-1 -kerning first=1178 second=84 amount=-2 -kerning first=238 second=286 amount=-2 -kerning first=950 second=1090 amount=-3 -kerning first=1033 second=258 amount=-1 -kerning first=175 second=230 amount=-1 -kerning first=8222 second=1059 amount=-1 -kerning first=8218 second=8212 amount=-1 -kerning first=56 second=242 amount=-1 -kerning first=193 second=947 amount=-4 -kerning first=196 second=372 amount=-5 -kerning first=314 second=287 amount=-1 -kerning first=8361 second=235 amount=-1 -kerning first=73 second=1262 amount=-2 -kerning first=76 second=1240 amount=-1 -kerning first=1099 second=335 amount=-1 -kerning first=915 second=1108 amount=-1 -kerning first=923 second=347 amount=-1 -kerning first=96 second=1069 amount=-1 -kerning first=1186 second=34 amount=-2 -kerning first=365 second=121 amount=-1 -kerning first=122 second=243 amount=-1 -kerning first=172 second=1263 amount=-1 -kerning first=1071 second=350 amount=-1 -kerning first=318 second=232 amount=-1 -kerning first=80 second=332 amount=-2 -kerning first=1103 second=275 amount=-1 -kerning first=223 second=244 amount=-1 -kerning first=934 second=289 amount=-1 -kerning first=369 second=71 amount=-2 -kerning first=963 second=221 amount=-5 -kerning first=271 second=83 amount=-1 -kerning first=1035 second=1177 amount=-1 -kerning first=180 second=333 amount=-1 -kerning first=296 second=245 amount=-1 -kerning first=201 second=949 amount=-1 -kerning first=204 second=257 amount=-1 -kerning first=8366 second=338 amount=-2 -kerning first=8372 second=100 amount=-1 -kerning first=84 second=271 amount=-3 -kerning first=87 second=44 amount=-3 -kerning first=350 second=84 amount=-1 -kerning first=247 second=334 amount=-2 -kerning first=244 second=1090 amount=-1 -kerning first=964 second=376 amount=-5 -kerning first=160 second=346 amount=-1 -kerning first=42 second=360 amount=-2 -kerning first=1039 second=1059 amount=-2 -kerning first=1036 second=8212 amount=-4 -kerning first=185 second=273 amount=-1 -kerning first=188 second=45 amount=-2 -kerning first=182 second=964 amount=-3 -kerning first=45 second=120 amount=-2 -kerning first=65 second=287 amount=-1 -kerning first=1081 second=235 amount=-1 -kerning first=325 second=335 amount=-1 -kerning first=108 second=361 amount=-1 -kerning first=1186 second=8216 amount=-2 -kerning first=374 second=196 amount=-5 -kerning first=962 second=8250 amount=-1 -kerning first=161 second=1028 amount=-2 -kerning first=164 second=288 amount=-2 -kerning first=1051 second=248 amount=-1 -kerning first=189 second=220 amount=-2 -kerning first=301 second=350 amount=-1 -kerning first=69 second=232 amount=-1 -kerning first=209 second=362 amount=-2 -kerning first=206 second=1176 amount=-1 -kerning first=330 second=275 amount=-1 +kerning first=332 second=1026 amount=-2 +kerning first=332 second=1033 amount=-1 +kerning first=332 second=1035 amount=-2 +kerning first=332 second=1040 amount=-2 +kerning first=332 second=1044 amount=-1 +kerning first=332 second=1046 amount=-3 +kerning first=332 second=1051 amount=-1 +kerning first=332 second=1058 amount=-2 +kerning first=332 second=1061 amount=-3 +kerning first=332 second=1066 amount=-2 +kerning first=332 second=1071 amount=-1 +kerning first=332 second=1174 amount=-3 +kerning first=332 second=1184 amount=-2 +kerning first=332 second=1198 amount=-3 +kerning first=332 second=1202 amount=-3 +kerning first=332 second=1298 amount=-1 +kerning first=332 second=8218 amount=-1 +kerning first=332 second=8222 amount=-1 +kerning first=332 second=8230 amount=-1 +kerning first=333 second=34 amount=-1 +kerning first=333 second=39 amount=-1 +kerning first=333 second=44 amount=-1 +kerning first=333 second=46 amount=-1 kerning first=333 second=47 amount=-1 -kerning first=86 second=1203 amount=-2 -kerning first=908 second=197 amount=-2 -kerning first=1170 second=87 amount=-5 -kerning first=946 second=337 amount=-1 -kerning first=950 second=99 amount=-1 -kerning first=1206 second=940 amount=-1 -kerning first=1219 second=249 amount=-1 -kerning first=255 second=221 amount=-5 -kerning first=372 second=1114 amount=-2 -kerning first=375 second=351 amount=-1 -kerning first=378 second=111 amount=-1 -kerning first=168 second=233 amount=-1 -kerning first=278 second=363 amount=-1 -kerning first=50 second=245 amount=-1 -kerning first=190 second=375 amount=-1 -kerning first=305 second=290 amount=-2 -kerning first=207 second=8211 amount=-2 -kerning first=1096 second=100 amount=-1 -kerning first=210 second=1051 amount=-1 -kerning first=910 second=352 amount=-1 -kerning first=96 second=84 amount=-5 -kerning first=1171 second=262 amount=-2 -kerning first=236 second=234 amount=-1 -kerning first=948 second=968 amount=-1 -kerning first=951 second=277 amount=-1 -kerning first=256 second=376 amount=-5 -kerning first=1027 second=211 amount=-2 -kerning first=276 second=8212 amount=-2 -kerning first=8224 second=251 amount=-1 -kerning first=188 second=8249 amount=-3 -kerning first=197 second=85 amount=-2 -kerning first=311 second=235 amount=-2 -kerning first=74 second=335 amount=-1 -kerning first=77 second=97 amount=-1 -kerning first=100 second=34 amount=-3 -kerning first=955 second=224 amount=-1 -kerning first=1223 second=1118 amount=-1 -kerning first=254 second=8250 amount=-1 -kerning first=174 second=336 amount=-2 -kerning first=55 second=350 amount=-1 -kerning first=8363 second=103 amount=-1 -kerning first=75 second=966 amount=-2 -kerning first=81 second=47 amount=-1 -kerning first=78 second=275 amount=-1 -kerning first=221 second=197 amount=-5 -kerning first=342 second=87 amount=-1 -kerning first=1175 second=1185 amount=-2 -kerning first=361 second=940 amount=-1 -kerning first=121 second=351 amount=-1 -kerning first=124 second=111 amount=-1 -kerning first=36 second=363 amount=-1 -kerning first=8249 second=356 amount=-1 -kerning first=59 second=290 amount=-2 -kerning first=202 second=210 amount=-2 -kerning first=317 second=338 amount=-2 -kerning first=322 second=100 amount=-1 -kerning first=8361 second=972 amount=-1 -kerning first=8364 second=281 amount=-1 -kerning first=1102 second=380 amount=-1 -kerning first=931 second=1241 amount=-1 -kerning first=1176 second=8220 amount=-3 -kerning first=958 second=1079 amount=-1 -kerning first=965 second=89 amount=-5 -kerning first=125 second=291 amount=-1 -kerning first=37 second=1059 amount=-2 -kerning first=1041 second=251 amount=-1 -kerning first=298 second=113 amount=-1 -kerning first=63 second=235 amount=-1 -kerning first=203 second=365 amount=-1 -kerning first=8370 second=228 amount=-1 -kerning first=100 second=8216 amount=-3 -kerning first=249 second=224 amount=-1 -kerning first=369 second=354 amount=-5 -kerning first=372 second=114 amount=-2 -kerning first=271 second=366 amount=-2 -kerning first=268 second=1184 amount=-1 -kerning first=1084 second=103 amount=-1 -kerning first=201 second=8217 amount=-3 -kerning first=8366 second=1257 amount=-1 -kerning first=327 second=225 amount=-1 -kerning first=905 second=115 amount=-1 -kerning first=902 second=355 amount=-1 -kerning first=87 second=324 amount=-2 -kerning first=1117 second=267 amount=-1 -kerning first=107 second=940 amount=-2 -kerning first=1049 second=356 amount=-5 -kerning first=1081 second=972 amount=-1 -kerning first=1085 second=281 amount=-1 -kerning first=91 second=262 amount=-2 -kerning first=1210 second=357 amount=-1 -kerning first=1223 second=117 amount=-1 -kerning first=251 second=1079 amount=-1 -kerning first=971 second=369 amount=-1 -kerning first=164 second=1098 amount=-3 -kerning first=167 second=339 amount=-1 -kerning first=170 second=101 amount=-1 -kerning first=280 second=251 amount=-1 -kerning first=52 second=113 amount=-1 -kerning first=49 second=353 amount=-1 -kerning first=192 second=263 amount=-1 -kerning first=1095 second=228 amount=-1 -kerning first=912 second=240 amount=-1 -kerning first=908 second=916 amount=-2 -kerning first=95 second=212 amount=-2 -kerning first=1119 second=1194 amount=-2 -kerning first=1170 second=370 amount=-2 +kerning first=333 second=63 amount=-2 +kerning first=333 second=102 amount=-1 +kerning first=333 second=118 amount=-1 +kerning first=333 second=119 amount=-1 +kerning first=333 second=120 amount=-2 +kerning first=333 second=122 amount=-1 +kerning first=333 second=373 amount=-1 +kerning first=333 second=378 amount=-1 +kerning first=333 second=380 amount=-1 +kerning first=333 second=382 amount=-1 +kerning first=333 second=947 amount=-1 +kerning first=333 second=955 amount=-1 +kerning first=333 second=957 amount=-1 +kerning first=333 second=964 amount=-1 +kerning first=333 second=967 amount=-2 +kerning first=333 second=1076 amount=-1 +kerning first=333 second=1078 amount=-2 +kerning first=333 second=1083 amount=-1 +kerning first=333 second=1090 amount=-1 +kerning first=333 second=1093 amount=-2 +kerning first=333 second=1098 amount=-1 +kerning first=333 second=1113 amount=-1 +kerning first=333 second=1175 amount=-2 +kerning first=333 second=1185 amount=-1 +kerning first=333 second=1199 amount=-1 +kerning first=333 second=1203 amount=-2 +kerning first=333 second=1299 amount=-1 +kerning first=333 second=8216 amount=-1 +kerning first=333 second=8217 amount=-1 +kerning first=333 second=8218 amount=-1 +kerning first=333 second=8220 amount=-1 +kerning first=333 second=8221 amount=-1 +kerning first=333 second=8222 amount=-1 +kerning first=333 second=8230 amount=-1 +kerning first=334 second=44 amount=-1 +kerning first=334 second=46 amount=-1 +kerning first=334 second=47 amount=-1 +kerning first=334 second=65 amount=-2 +kerning first=334 second=84 amount=-2 +kerning first=334 second=86 amount=-2 +kerning first=334 second=87 amount=-2 +kerning first=334 second=88 amount=-3 +kerning first=334 second=89 amount=-3 +kerning first=334 second=90 amount=-1 +kerning first=334 second=193 amount=-2 +kerning first=334 second=194 amount=-2 +kerning first=334 second=196 amount=-2 +kerning first=334 second=197 amount=-2 +kerning first=334 second=198 amount=-2 +kerning first=334 second=221 amount=-3 +kerning first=334 second=256 amount=-2 +kerning first=334 second=258 amount=-2 +kerning first=334 second=260 amount=-2 +kerning first=334 second=354 amount=-2 +kerning first=334 second=356 amount=-2 +kerning first=334 second=372 amount=-2 +kerning first=334 second=374 amount=-3 +kerning first=334 second=376 amount=-3 +kerning first=334 second=377 amount=-1 +kerning first=334 second=379 amount=-1 +kerning first=334 second=381 amount=-1 +kerning first=334 second=913 amount=-2 +kerning first=334 second=916 amount=-2 +kerning first=334 second=918 amount=-1 +kerning first=334 second=923 amount=-2 +kerning first=334 second=932 amount=-2 +kerning first=334 second=933 amount=-3 +kerning first=334 second=935 amount=-3 +kerning first=334 second=939 amount=-3 +kerning first=334 second=955 amount=-2 +kerning first=334 second=967 amount=-1 +kerning first=334 second=1026 amount=-2 +kerning first=334 second=1033 amount=-1 +kerning first=334 second=1035 amount=-2 +kerning first=334 second=1040 amount=-2 +kerning first=334 second=1044 amount=-1 +kerning first=334 second=1046 amount=-3 +kerning first=334 second=1051 amount=-1 +kerning first=334 second=1058 amount=-2 +kerning first=334 second=1061 amount=-3 +kerning first=334 second=1066 amount=-2 +kerning first=334 second=1071 amount=-1 +kerning first=334 second=1174 amount=-3 +kerning first=334 second=1184 amount=-2 +kerning first=334 second=1198 amount=-3 +kerning first=334 second=1202 amount=-3 +kerning first=334 second=1298 amount=-1 +kerning first=334 second=8218 amount=-1 +kerning first=334 second=8222 amount=-1 +kerning first=334 second=8230 amount=-1 +kerning first=335 second=34 amount=-1 +kerning first=335 second=39 amount=-1 +kerning first=335 second=44 amount=-1 +kerning first=335 second=46 amount=-1 +kerning first=335 second=47 amount=-1 +kerning first=335 second=63 amount=-2 +kerning first=335 second=102 amount=-1 +kerning first=335 second=118 amount=-1 +kerning first=335 second=119 amount=-1 +kerning first=335 second=120 amount=-2 +kerning first=335 second=122 amount=-1 +kerning first=335 second=373 amount=-1 +kerning first=335 second=378 amount=-1 +kerning first=335 second=380 amount=-1 +kerning first=335 second=382 amount=-1 +kerning first=335 second=947 amount=-1 +kerning first=335 second=955 amount=-1 +kerning first=335 second=957 amount=-1 +kerning first=335 second=964 amount=-1 +kerning first=335 second=967 amount=-2 +kerning first=335 second=1076 amount=-1 +kerning first=335 second=1078 amount=-2 +kerning first=335 second=1083 amount=-1 +kerning first=335 second=1090 amount=-1 +kerning first=335 second=1093 amount=-2 +kerning first=335 second=1098 amount=-1 +kerning first=335 second=1113 amount=-1 +kerning first=335 second=1175 amount=-2 +kerning first=335 second=1185 amount=-1 +kerning first=335 second=1199 amount=-1 +kerning first=335 second=1203 amount=-2 +kerning first=335 second=1299 amount=-1 +kerning first=335 second=8216 amount=-1 +kerning first=335 second=8217 amount=-1 +kerning first=335 second=8218 amount=-1 +kerning first=335 second=8220 amount=-1 +kerning first=335 second=8221 amount=-1 +kerning first=335 second=8222 amount=-1 +kerning first=335 second=8230 amount=-1 +kerning first=336 second=44 amount=-1 +kerning first=336 second=46 amount=-1 +kerning first=336 second=47 amount=-1 +kerning first=336 second=65 amount=-2 +kerning first=336 second=84 amount=-2 +kerning first=336 second=86 amount=-2 +kerning first=336 second=87 amount=-2 +kerning first=336 second=88 amount=-3 +kerning first=336 second=89 amount=-3 kerning first=336 second=90 amount=-1 -kerning first=358 second=252 amount=-1 -kerning first=946 second=1256 amount=-2 -kerning first=258 second=266 amount=-2 -kerning first=261 second=39 amount=-1 -kerning first=168 second=970 amount=-1 -kerning first=8222 second=359 amount=-1 -kerning first=8226 second=119 amount=-4 -kerning first=1064 second=920 amount=-2 -kerning first=196 second=213 amount=-2 -kerning first=314 second=103 amount=-1 -kerning first=1090 second=1257 amount=-1 -kerning first=93 second=1185 amount=-3 -kerning first=96 second=367 amount=-1 -kerning first=1256 second=923 amount=-2 -kerning first=1263 second=242 amount=-1 -kerning first=1027 second=945 amount=-1 -kerning first=176 second=226 amount=-1 -kerning first=287 second=356 amount=-5 -kerning first=197 second=368 amount=-2 -kerning first=315 second=281 amount=-1 -kerning first=311 second=972 amount=-2 -kerning first=94 second=8220 amount=-3 -kerning first=363 second=357 amount=-1 -kerning first=960 second=269 amount=-1 -kerning first=38 second=251 amount=-1 -kerning first=8260 second=244 amount=-1 -kerning first=195 second=8221 amount=-3 -kerning first=198 second=1066 amount=-5 -kerning first=321 second=228 amount=-1 -kerning first=221 second=916 amount=-5 -kerning first=936 second=283 amount=-1 -kerning first=244 second=382 amount=-1 -kerning first=364 second=1044 amount=-1 -kerning first=964 second=217 amount=-2 -kerning first=273 second=79 amount=-2 -kerning first=1039 second=359 amount=-1 -kerning first=1046 second=119 amount=-3 -kerning first=294 second=920 amount=-2 -kerning first=65 second=103 amount=-1 -kerning first=1074 second=1026 amount=-5 -kerning first=205 second=253 amount=-1 -kerning first=317 second=1257 amount=-1 -kerning first=8369 second=334 amount=-2 -kerning first=8364 second=1090 amount=-3 -kerning first=942 second=230 amount=-1 -kerning first=245 second=1083 amount=-1 -kerning first=371 second=242 amount=-1 -kerning first=368 second=923 amount=-2 -kerning first=962 second=947 amount=-4 -kerning first=965 second=372 amount=-5 -kerning first=125 second=1101 amount=-1 -kerning first=43 second=356 amount=-5 -kerning first=46 second=116 amount=-1 -kerning first=186 second=268 amount=-2 -kerning first=63 second=972 amount=-1 -kerning first=1083 second=231 amount=-1 -kerning first=8370 second=965 amount=-1 -kerning first=904 second=243 amount=-1 -kerning first=252 second=269 amount=-1 -kerning first=162 second=973 amount=-1 -kerning first=190 second=216 amount=-2 -kerning first=305 second=106 amount=1 -kerning first=70 second=228 amount=-1 -kerning first=327 second=962 amount=-1 -kerning first=910 second=193 amount=-5 -kerning first=87 second=1194 amount=-2 -kerning first=1171 second=83 amount=-1 -kerning first=948 second=333 amount=-1 -kerning first=1220 second=245 amount=-1 -kerning first=256 second=217 amount=-2 -kerning first=376 second=345 amount=-3 -kerning first=973 second=257 amount=-1 -kerning first=169 second=229 amount=-1 -kerning first=282 second=119 amount=-4 -kerning first=8216 second=1051 amount=-3 -kerning first=48 second=920 amount=-2 -kerning first=188 second=1195 amount=-1 -kerning first=191 second=371 amount=-1 -kerning first=303 second=1026 amount=-5 -kerning first=306 second=286 amount=-2 -kerning first=1085 second=1090 amount=-3 -kerning first=211 second=1046 amount=-3 -kerning first=237 second=230 amount=-1 -kerning first=357 second=360 amount=-2 -kerning first=952 second=273 amount=-1 -kerning first=955 second=45 amount=-2 -kerning first=117 second=242 amount=-1 -kerning first=254 second=947 amount=-4 -kerning first=167 second=1262 amount=-2 -kerning first=170 second=1240 amount=-2 -kerning first=1063 second=1108 amount=-1 -kerning first=192 second=1069 amount=-1 -kerning first=198 second=81 amount=-2 -kerning first=313 second=231 amount=-1 -kerning first=1095 second=965 amount=-1 -kerning first=1101 second=46 amount=-1 -kerning first=912 second=1028 amount=-2 -kerning first=956 second=220 amount=-2 -kerning first=1026 second=1176 amount=-1 -kerning first=175 second=332 amount=-2 -kerning first=289 second=244 amount=-1 -kerning first=8249 second=197 amount=-1 -kerning first=59 second=106 amount=1 -kerning first=199 second=256 amount=-1 -kerning first=8361 second=337 amount=-1 -kerning first=8364 second=99 amount=-1 -kerning first=76 second=962 amount=-1 -kerning first=222 second=193 amount=-2 -kerning first=334 second=8230 amount=-1 -kerning first=931 second=233 amount=-1 -kerning first=1176 second=1177 amount=-1 -kerning first=365 second=245 amount=-1 -kerning first=958 second=375 amount=-1 -kerning first=37 second=359 amount=-1 -kerning first=1027 second=8211 amount=-2 -kerning first=40 second=119 amount=-4 -kerning first=176 second=963 amount=-1 -kerning first=179 second=271 amount=-1 -kerning first=8250 second=352 amount=-1 -kerning first=57 second=1026 amount=-5 -kerning first=60 second=286 amount=-2 -kerning first=1075 second=234 amount=-1 -kerning first=318 second=334 amount=-2 -kerning first=8365 second=277 amount=-1 -kerning first=1103 second=376 amount=-5 -kerning first=223 second=346 amount=-1 -kerning first=103 second=360 amount=-2 -kerning first=243 second=964 amount=-1 -kerning first=249 second=45 amount=-2 -kerning first=955 second=8249 amount=-3 -kerning first=126 second=287 amount=-1 -kerning first=184 second=219 amount=-2 -kerning first=291 second=1108 amount=-1 -kerning first=296 second=347 amount=-1 -kerning first=64 second=231 amount=-1 -kerning first=204 second=361 amount=-1 -kerning first=207 second=121 amount=-1 -kerning first=321 second=965 amount=-1 -kerning first=8372 second=224 amount=-1 -kerning first=81 second=1202 amount=-3 -kerning first=84 second=373 amount=-2 -kerning first=1202 second=248 amount=-1 -kerning first=250 second=220 amount=-2 -kerning first=163 second=232 amount=-1 -kerning first=273 second=362 amount=-2 -kerning first=185 second=374 amount=-5 -kerning first=300 second=289 amount=-1 -kerning first=1081 second=337 amount=-1 -kerning first=1085 second=99 amount=-1 -kerning first=903 second=351 amount=-1 -kerning first=906 second=111 amount=-1 -kerning first=91 second=83 amount=-1 -kerning first=1118 second=261 amount=-1 -kerning first=251 second=375 amount=-1 -kerning first=374 second=290 amount=-3 -kerning first=971 second=210 amount=-2 -kerning first=1051 second=352 amount=-1 -kerning first=192 second=84 amount=-5 -kerning first=304 second=234 amount=-1 -kerning first=69 second=334 amount=-2 -kerning first=1083 second=968 amount=-1 -kerning first=1087 second=277 amount=-1 -kerning first=330 second=376 amount=-5 -kerning first=8377 second=1079 amount=-1 -kerning first=904 second=1035 amount=-5 -kerning first=89 second=950 amount=-2 -kerning first=1170 second=211 amount=-2 -kerning first=1219 second=353 amount=-1 -kerning first=1224 second=113 amount=-1 -kerning first=249 second=8249 amount=-3 -kerning first=258 second=85 amount=-2 -kerning first=378 second=235 amount=-1 -kerning first=168 second=335 amount=-1 -kerning first=47 second=1108 amount=-1 -kerning first=50 second=347 amount=-1 -kerning first=193 second=259 amount=-1 -kerning first=196 second=34 amount=-3 -kerning first=70 second=965 amount=-1 -kerning first=1096 second=224 amount=-1 -kerning first=216 second=196 amount=-2 -kerning first=327 second=8250 amount=-1 -kerning first=1168 second=1184 amount=-5 -kerning first=1171 second=366 amount=-2 -kerning first=236 second=336 amount=-2 -kerning first=169 second=966 amount=-1 -kerning first=172 second=275 amount=-1 -kerning first=8224 second=355 amount=-1 -kerning first=54 second=289 amount=-1 -kerning first=311 second=337 amount=-2 -kerning first=315 second=99 amount=-1 -kerning first=77 second=221 amount=-5 -kerning first=338 second=261 amount=-1 -kerning first=94 second=1177 amount=-1 -kerning first=1169 second=8218 amount=-3 -kerning first=1035 second=250 amount=-1 -kerning first=58 second=234 amount=-1 -kerning first=1073 second=187 amount=-1 -kerning first=198 second=364 amount=-2 -kerning first=316 second=277 amount=-1 -kerning first=313 second=968 amount=-1 -kerning first=8363 second=227 amount=-1 -kerning first=78 second=376 amount=-5 -kerning first=221 second=291 amount=-4 -kerning first=928 second=339 amount=-1 -kerning first=95 second=8212 amount=-2 -kerning first=936 second=101 amount=-1 -kerning first=367 second=113 amount=-1 -kerning first=124 second=235 amount=-1 -kerning first=8249 second=916 amount=-1 -kerning first=196 second=8216 amount=-3 -kerning first=322 second=224 amount=-1 -kerning first=8361 second=1256 amount=-2 -kerning first=931 second=970 amount=-1 -kerning first=105 second=248 amount=-1 -kerning first=245 second=378 amount=-1 -kerning first=965 second=213 amount=-2 -kerning first=1041 second=355 amount=-1 -kerning first=186 second=87 amount=-5 -kerning first=63 second=337 amount=-1 -kerning first=203 second=940 amount=-1 -kerning first=206 second=249 amount=-1 -kerning first=86 second=261 amount=-1 +kerning first=336 second=193 amount=-2 +kerning first=336 second=194 amount=-2 +kerning first=336 second=196 amount=-2 +kerning first=336 second=197 amount=-2 +kerning first=336 second=198 amount=-2 +kerning first=336 second=221 amount=-3 +kerning first=336 second=256 amount=-2 +kerning first=336 second=258 amount=-2 +kerning first=336 second=260 amount=-2 +kerning first=336 second=354 amount=-2 +kerning first=336 second=356 amount=-2 +kerning first=336 second=372 amount=-2 +kerning first=336 second=374 amount=-3 +kerning first=336 second=376 amount=-3 +kerning first=336 second=377 amount=-1 +kerning first=336 second=379 amount=-1 +kerning first=336 second=381 amount=-1 +kerning first=336 second=913 amount=-2 +kerning first=336 second=916 amount=-2 +kerning first=336 second=918 amount=-1 +kerning first=336 second=923 amount=-2 +kerning first=336 second=932 amount=-2 +kerning first=336 second=933 amount=-3 +kerning first=336 second=935 amount=-3 +kerning first=336 second=939 amount=-3 +kerning first=336 second=955 amount=-2 +kerning first=336 second=967 amount=-1 +kerning first=336 second=1026 amount=-2 +kerning first=336 second=1033 amount=-1 +kerning first=336 second=1035 amount=-2 +kerning first=336 second=1040 amount=-2 +kerning first=336 second=1044 amount=-1 +kerning first=336 second=1046 amount=-3 +kerning first=336 second=1051 amount=-1 +kerning first=336 second=1058 amount=-2 +kerning first=336 second=1061 amount=-3 +kerning first=336 second=1066 amount=-2 +kerning first=336 second=1071 amount=-1 +kerning first=336 second=1174 amount=-3 +kerning first=336 second=1184 amount=-2 +kerning first=336 second=1198 amount=-3 +kerning first=336 second=1202 amount=-3 +kerning first=336 second=1298 amount=-1 +kerning first=336 second=8218 amount=-1 +kerning first=336 second=8222 amount=-1 +kerning first=336 second=8230 amount=-1 +kerning first=337 second=34 amount=-1 +kerning first=337 second=39 amount=-1 +kerning first=337 second=44 amount=-1 +kerning first=337 second=46 amount=-1 +kerning first=337 second=47 amount=-1 +kerning first=337 second=63 amount=-2 +kerning first=337 second=102 amount=-1 +kerning first=337 second=118 amount=-1 +kerning first=337 second=119 amount=-1 +kerning first=337 second=120 amount=-2 +kerning first=337 second=122 amount=-1 +kerning first=337 second=373 amount=-1 +kerning first=337 second=378 amount=-1 +kerning first=337 second=380 amount=-1 +kerning first=337 second=382 amount=-1 +kerning first=337 second=947 amount=-1 +kerning first=337 second=955 amount=-1 +kerning first=337 second=957 amount=-1 +kerning first=337 second=964 amount=-1 +kerning first=337 second=967 amount=-2 +kerning first=337 second=1076 amount=-1 +kerning first=337 second=1078 amount=-2 +kerning first=337 second=1083 amount=-1 +kerning first=337 second=1090 amount=-1 +kerning first=337 second=1093 amount=-2 +kerning first=337 second=1098 amount=-1 +kerning first=337 second=1113 amount=-1 +kerning first=337 second=1175 amount=-2 +kerning first=337 second=1185 amount=-1 +kerning first=337 second=1199 amount=-1 +kerning first=337 second=1203 amount=-2 +kerning first=337 second=1299 amount=-1 +kerning first=337 second=8216 amount=-1 +kerning first=337 second=8217 amount=-1 +kerning first=337 second=8218 amount=-1 +kerning first=337 second=8220 amount=-1 +kerning first=337 second=8221 amount=-1 +kerning first=337 second=8222 amount=-1 +kerning first=337 second=8230 amount=-1 +kerning first=339 second=34 amount=-1 +kerning first=339 second=39 amount=-1 +kerning first=339 second=44 amount=-1 +kerning first=339 second=46 amount=-1 +kerning first=339 second=47 amount=-1 +kerning first=339 second=63 amount=-2 +kerning first=339 second=102 amount=-1 +kerning first=339 second=118 amount=-1 +kerning first=339 second=119 amount=-1 +kerning first=339 second=120 amount=-2 +kerning first=339 second=122 amount=-1 +kerning first=339 second=373 amount=-1 +kerning first=339 second=378 amount=-1 +kerning first=339 second=380 amount=-1 +kerning first=339 second=382 amount=-1 +kerning first=339 second=947 amount=-1 +kerning first=339 second=955 amount=-1 +kerning first=339 second=957 amount=-1 +kerning first=339 second=964 amount=-1 +kerning first=339 second=967 amount=-2 +kerning first=339 second=1076 amount=-1 +kerning first=339 second=1078 amount=-2 +kerning first=339 second=1083 amount=-1 +kerning first=339 second=1090 amount=-1 +kerning first=339 second=1093 amount=-2 +kerning first=339 second=1098 amount=-1 +kerning first=339 second=1113 amount=-1 +kerning first=339 second=1175 amount=-2 +kerning first=339 second=1185 amount=-1 +kerning first=339 second=1199 amount=-1 +kerning first=339 second=1203 amount=-2 +kerning first=339 second=1299 amount=-1 +kerning first=339 second=8216 amount=-1 +kerning first=339 second=8217 amount=-1 +kerning first=339 second=8218 amount=-1 +kerning first=339 second=8220 amount=-1 +kerning first=339 second=8221 amount=-1 +kerning first=339 second=8222 amount=-1 +kerning first=339 second=8230 amount=-1 +kerning first=340 second=45 amount=-1 +kerning first=340 second=86 amount=-1 +kerning first=340 second=87 amount=-1 +kerning first=340 second=89 amount=-2 +kerning first=340 second=106 amount=2 +kerning first=340 second=171 amount=-1 +kerning first=340 second=173 amount=-1 +kerning first=340 second=221 amount=-2 +kerning first=340 second=372 amount=-1 +kerning first=340 second=374 amount=-2 +kerning first=340 second=376 amount=-2 +kerning first=340 second=933 amount=-2 +kerning first=340 second=939 amount=-2 +kerning first=340 second=1112 amount=2 +kerning first=340 second=1198 amount=-2 +kerning first=340 second=8211 amount=-1 +kerning first=340 second=8212 amount=-1 +kerning first=340 second=8249 amount=-1 +kerning first=341 second=44 amount=-3 +kerning first=341 second=45 amount=-1 +kerning first=341 second=46 amount=-3 +kerning first=341 second=47 amount=-2 +kerning first=341 second=97 amount=-1 +kerning first=341 second=99 amount=-1 +kerning first=341 second=100 amount=-1 +kerning first=341 second=101 amount=-1 +kerning first=341 second=103 amount=-1 +kerning first=341 second=111 amount=-1 +kerning first=341 second=113 amount=-1 +kerning first=341 second=115 amount=-1 +kerning first=341 second=173 amount=-1 +kerning first=341 second=224 amount=-1 +kerning first=341 second=225 amount=-1 +kerning first=341 second=226 amount=-1 +kerning first=341 second=227 amount=-1 +kerning first=341 second=228 amount=-1 +kerning first=341 second=229 amount=-1 +kerning first=341 second=230 amount=-1 +kerning first=341 second=231 amount=-1 +kerning first=341 second=232 amount=-1 +kerning first=341 second=233 amount=-1 +kerning first=341 second=234 amount=-1 +kerning first=341 second=235 amount=-1 +kerning first=341 second=240 amount=-1 +kerning first=341 second=242 amount=-1 +kerning first=341 second=243 amount=-1 +kerning first=341 second=244 amount=-1 +kerning first=341 second=245 amount=-1 +kerning first=341 second=246 amount=-1 +kerning first=341 second=248 amount=-1 +kerning first=341 second=257 amount=-1 +kerning first=341 second=259 amount=-1 +kerning first=341 second=261 amount=-1 +kerning first=341 second=263 amount=-1 +kerning first=341 second=267 amount=-1 +kerning first=341 second=269 amount=-1 +kerning first=341 second=271 amount=-1 +kerning first=341 second=273 amount=-1 +kerning first=341 second=275 amount=-1 +kerning first=341 second=277 amount=-1 +kerning first=341 second=279 amount=-1 +kerning first=341 second=281 amount=-1 +kerning first=341 second=283 amount=-1 +kerning first=341 second=287 amount=-1 +kerning first=341 second=289 amount=-1 +kerning first=341 second=291 amount=-1 +kerning first=341 second=333 amount=-1 +kerning first=341 second=335 amount=-1 +kerning first=341 second=337 amount=-1 +kerning first=341 second=339 amount=-1 +kerning first=341 second=347 amount=-1 +kerning first=341 second=351 amount=-1 +kerning first=341 second=353 amount=-1 +kerning first=341 second=940 amount=-1 +kerning first=341 second=941 amount=-1 +kerning first=341 second=945 amount=-1 +kerning first=341 second=949 amount=-1 +kerning first=341 second=955 amount=-3 +kerning first=341 second=959 amount=-1 +kerning first=341 second=962 amount=-1 +kerning first=341 second=963 amount=-1 +kerning first=341 second=966 amount=-1 +kerning first=341 second=972 amount=-1 +kerning first=341 second=1072 amount=-1 +kerning first=341 second=1077 amount=-1 +kerning first=341 second=1086 amount=-1 +kerning first=341 second=1089 amount=-1 +kerning first=341 second=1092 amount=-1 +kerning first=341 second=1104 amount=-1 +kerning first=341 second=1105 amount=-1 +kerning first=341 second=1108 amount=-1 +kerning first=341 second=1109 amount=-1 +kerning first=341 second=1195 amount=-1 +kerning first=341 second=1241 amount=-1 +kerning first=341 second=1257 amount=-1 +kerning first=341 second=8211 amount=-1 +kerning first=341 second=8212 amount=-1 kerning first=341 second=8218 amount=-3 -kerning first=246 second=1078 amount=-2 -kerning first=162 second=338 amount=-2 -kerning first=165 second=100 amount=-1 -kerning first=271 second=941 amount=-1 -kerning first=1241 second=380 amount=-1 -kerning first=47 second=112 amount=-1 -kerning first=1059 second=65 amount=-2 -kerning first=299 second=1241 amount=-1 -kerning first=302 second=187 amount=-1 -kerning first=64 second=968 amount=-1 -kerning first=1084 second=227 amount=-1 -kerning first=8378 second=269 amount=-1 -kerning first=90 second=211 amount=-1 -kerning first=1117 second=369 amount=-1 -kerning first=227 second=1098 amount=-1 -kerning first=113 second=113 amount=-1 -kerning first=253 second=263 amount=-1 -kerning first=256 second=38 amount=-1 -kerning first=967 second=1066 amount=-5 -kerning first=964 second=8221 amount=-3 -kerning first=1062 second=240 amount=-1 -kerning first=191 second=212 amount=-2 -kerning first=1081 second=1256 amount=-2 -kerning first=211 second=354 amount=-2 -kerning first=335 second=39 amount=-1 -kerning first=91 second=366 amount=-2 -kerning first=1174 second=79 amount=-1 -kerning first=1210 second=920 amount=-2 -kerning first=374 second=1100 amount=-3 -kerning first=170 second=225 amount=-1 -kerning first=280 second=355 amount=-1 -kerning first=189 second=1185 amount=-3 -kerning first=192 second=367 amount=-1 -kerning first=89 second=8218 amount=-4 -kerning first=1170 second=945 amount=-1 -kerning first=238 second=226 amount=-1 -kerning first=358 second=356 amount=-5 -kerning first=361 second=116 amount=-1 -kerning first=258 second=368 amount=-2 -kerning first=381 second=281 amount=-1 -kerning first=378 second=972 amount=-1 -kerning first=8226 second=243 amount=-1 -kerning first=53 second=1241 amount=-1 -kerning first=56 second=187 amount=-1 -kerning first=190 second=8220 amount=-3 -kerning first=314 second=227 amount=-1 -kerning first=73 second=1079 amount=-1 -kerning first=79 second=89 amount=-3 -kerning first=1099 second=269 amount=-1 -kerning first=915 second=973 amount=-1 -kerning first=958 second=216 amount=-2 -kerning first=256 second=8221 amount=-3 -kerning first=1037 second=118 amount=-4 -kerning first=8250 second=193 amount=-3 -kerning first=1071 second=283 amount=-1 -kerning first=197 second=943 amount=-1 -kerning first=200 second=252 amount=-1 -kerning first=80 second=266 amount=-2 -kerning first=1103 second=217 amount=-2 -kerning first=335 second=8222 amount=-1 -kerning first=934 second=229 amount=-1 -kerning first=1184 second=359 amount=-1 -kerning first=363 second=920 amount=-2 -kerning first=955 second=1195 amount=-1 -kerning first=960 second=371 amount=-1 -kerning first=126 second=103 amount=-1 -kerning first=1298 second=1026 amount=-5 -kerning first=38 second=355 amount=-1 -kerning first=41 second=115 amount=-1 -kerning first=180 second=267 amount=-1 -kerning first=8260 second=346 amount=-1 -kerning first=8366 second=273 amount=-1 -kerning first=8372 second=45 amount=-2 -kerning first=8363 second=964 amount=-3 -kerning first=84 second=214 amount=-1 -kerning first=221 second=1101 amount=-4 -kerning first=1101 second=947 amount=-1 -kerning first=928 second=1262 amount=-2 -kerning first=936 second=1240 amount=-2 -kerning first=247 second=268 amount=-2 -kerning first=967 second=81 amount=-2 -kerning first=124 second=972 amount=-1 -kerning first=160 second=281 amount=-1 -kerning first=45 second=65 amount=-2 -kerning first=1046 second=243 amount=-2 -kerning first=65 second=227 amount=-1 -kerning first=1074 second=1263 amount=-1 -kerning first=205 second=357 amount=-1 -kerning first=325 second=269 amount=-1 -kerning first=942 second=332 amount=-2 -kerning first=1203 second=244 amount=-1 -kerning first=251 second=216 amount=-2 -kerning first=164 second=228 amount=-1 -kerning first=277 second=118 amount=-1 -kerning first=183 second=1194 amount=-2 -kerning first=186 second=370 amount=-2 -kerning first=301 second=283 amount=-1 -kerning first=63 second=1256 amount=-2 -kerning first=1083 second=333 amount=-1 -kerning first=330 second=217 amount=-2 -kerning first=8377 second=375 amount=-1 -kerning first=92 second=79 amount=-2 -kerning first=1116 second=949 amount=-2 -kerning first=1119 second=257 amount=-1 -kerning first=946 second=271 amount=-1 -kerning first=249 second=1195 amount=-1 -kerning first=252 second=371 amount=-1 -kerning first=375 second=286 amount=-2 -kerning first=162 second=1257 amount=-1 -kerning first=305 second=230 amount=-1 -kerning first=1084 second=964 amount=-3 -kerning first=1096 second=45 amount=-2 -kerning first=210 second=923 amount=-2 -kerning first=1090 second=273 amount=-1 -kerning first=327 second=947 amount=-4 -kerning first=8372 second=8249 amount=-3 -kerning first=910 second=287 amount=-4 -kerning first=90 second=945 amount=-1 -kerning first=951 second=219 amount=-2 -kerning first=1207 second=1108 amount=-1 -kerning first=1220 second=347 amount=-1 -kerning first=253 second=1069 amount=-1 -kerning first=379 second=231 amount=-1 -kerning first=973 second=361 amount=-1 -kerning first=1027 second=121 amount=-1 -kerning first=282 second=243 amount=-1 -kerning first=1062 second=1028 amount=-1 -kerning first=1065 second=288 amount=-1 -kerning first=303 second=1263 amount=-1 -kerning first=74 second=269 amount=-1 -kerning first=916 second=232 amount=-1 -kerning first=1174 second=362 amount=-1 -kerning first=237 second=332 amount=-2 -kerning first=952 second=374 amount=-5 -kerning first=949 second=1203 amount=-1 -kerning first=35 second=118 amount=-4 -kerning first=1035 second=71 amount=-2 -kerning first=170 second=962 amount=-1 -kerning first=8225 second=351 amount=-1 -kerning first=8240 second=111 amount=-1 -kerning first=55 second=283 amount=-1 -kerning first=313 second=333 amount=-1 -kerning first=78 second=217 amount=-2 -kerning first=1170 second=8211 amount=-2 -kerning first=101 second=119 amount=-1 -kerning first=238 second=963 amount=-1 -kerning first=244 second=44 amount=-1 -kerning first=364 second=194 amount=-2 -kerning first=121 second=286 amount=-2 -kerning first=1299 second=234 amount=-1 -kerning first=1036 second=246 amount=-2 -kerning first=178 second=218 amount=-2 -kerning first=289 second=346 amount=-1 -kerning first=8226 second=1035 amount=-5 -kerning first=59 second=230 amount=-1 -kerning first=314 second=964 amount=-3 -kerning first=322 second=45 amount=-2 -kerning first=317 second=273 amount=-1 -kerning first=76 second=947 amount=-3 -kerning first=1096 second=8249 amount=-3 -kerning first=79 second=372 amount=-2 -kerning first=931 second=335 amount=-1 -kerning first=365 second=347 amount=-1 -kerning first=962 second=259 amount=-1 -kerning first=965 second=34 amount=-3 -kerning first=125 second=231 amount=-1 -kerning first=40 second=243 amount=-1 -kerning first=179 second=373 amount=-4 -kerning first=57 second=1263 amount=-1 -kerning first=323 second=220 amount=-2 -kerning first=8370 second=171 amount=-3 -kerning first=934 second=966 amount=-1 -kerning first=243 second=1203 amount=-2 -kerning first=369 second=289 amount=-1 -kerning first=366 second=1033 amount=-1 -kerning first=1048 second=111 amount=-1 -kerning first=187 second=83 amount=-1 -kerning first=299 second=233 amount=-1 -kerning first=64 second=333 amount=-1 -kerning first=207 second=245 amount=-1 -kerning first=902 second=290 amount=-2 -kerning first=84 second=949 amount=-3 -kerning first=87 second=257 amount=-2 -kerning first=1117 second=210 amount=-2 +kerning first=341 second=8222 amount=-3 +kerning first=341 second=8230 amount=-3 +kerning first=342 second=45 amount=-1 +kerning first=342 second=86 amount=-1 +kerning first=342 second=87 amount=-1 +kerning first=342 second=89 amount=-2 +kerning first=342 second=106 amount=2 +kerning first=342 second=171 amount=-1 +kerning first=342 second=173 amount=-1 +kerning first=342 second=221 amount=-2 +kerning first=342 second=372 amount=-1 +kerning first=342 second=374 amount=-2 +kerning first=342 second=376 amount=-2 +kerning first=342 second=933 amount=-2 +kerning first=342 second=939 amount=-2 +kerning first=342 second=1112 amount=2 +kerning first=342 second=1198 amount=-2 kerning first=342 second=8211 amount=-1 -kerning first=253 second=84 amount=-5 -kerning first=373 second=234 amount=-1 -kerning first=967 second=364 amount=-2 -kerning first=163 second=334 amount=-2 -kerning first=276 second=246 amount=-1 -kerning first=160 second=1090 amount=-3 -kerning first=45 second=346 amount=-1 -kerning first=1049 second=291 amount=-1 -kerning first=65 second=964 amount=-3 -kerning first=322 second=8249 amount=-3 -kerning first=906 second=235 amount=-1 -kerning first=1118 second=365 amount=-1 -kerning first=108 second=1108 amount=-1 -kerning first=254 second=259 amount=-1 -kerning first=257 second=34 amount=-1 -kerning first=965 second=8216 amount=-3 -kerning first=164 second=965 amount=-1 -kerning first=49 second=288 amount=-2 -kerning first=46 second=1028 amount=-1 -kerning first=304 second=336 amount=-2 -kerning first=72 second=220 amount=-2 -kerning first=1095 second=171 amount=-3 -kerning first=92 second=362 amount=-2 -kerning first=89 second=1176 amount=-2 -kerning first=950 second=324 amount=-2 -kerning first=381 second=99 amount=-1 -kerning first=378 second=337 amount=-1 -kerning first=1026 second=249 amount=-1 -kerning first=171 second=221 amount=-2 -kerning first=8218 second=1038 amount=-1 -kerning first=53 second=233 amount=-1 -kerning first=193 second=363 amount=-1 -kerning first=190 second=1177 amount=-1 -kerning first=73 second=375 amount=-1 -kerning first=910 second=1097 amount=-3 -kerning first=915 second=338 amount=-2 -kerning first=923 second=100 amount=-1 -kerning first=90 second=8211 amount=-3 -kerning first=1176 second=250 amount=-1 -kerning first=1171 second=941 amount=-1 -kerning first=356 second=1116 amount=-2 -kerning first=119 second=234 amount=-1 -kerning first=1263 second=187 amount=-1 -kerning first=382 second=277 amount=-1 -kerning first=34 second=246 amount=-1 -kerning first=172 second=376 amount=-5 -kerning first=282 second=1035 amount=-5 -kerning first=287 second=291 amount=-1 -kerning first=1065 second=1098 amount=-2 -kerning first=191 second=8212 amount=-2 -kerning first=194 second=1059 amount=-2 -kerning first=1071 second=101 amount=-1 -kerning first=80 second=85 amount=-2 -kerning first=338 second=365 amount=-1 -kerning first=960 second=212 amount=-2 -kerning first=257 second=8216 amount=-1 -kerning first=38 second=196 amount=-1 -kerning first=1035 second=354 amount=-5 -kerning first=170 second=8250 amount=-1 -kerning first=58 second=336 amount=-2 -kerning first=1073 second=279 amount=-1 -kerning first=201 second=248 amount=-1 -kerning first=321 second=171 amount=-3 -kerning first=81 second=260 amount=-2 -kerning first=936 second=225 amount=-1 -kerning first=247 second=87 amount=-5 -kerning first=956 second=1185 amount=-3 -kerning first=124 second=337 amount=-1 -kerning first=160 second=99 amount=-1 -kerning first=42 second=111 amount=-1 -kerning first=39 second=351 amount=-1 -kerning first=182 second=261 amount=-1 -kerning first=178 second=953 amount=-1 -kerning first=1078 second=226 amount=-1 -kerning first=8369 second=268 amount=-2 +kerning first=342 second=8212 amount=-1 +kerning first=342 second=8249 amount=-1 +kerning first=343 second=44 amount=-3 +kerning first=343 second=45 amount=-1 +kerning first=343 second=46 amount=-3 +kerning first=343 second=47 amount=-2 +kerning first=343 second=97 amount=-1 +kerning first=343 second=99 amount=-1 +kerning first=343 second=100 amount=-1 +kerning first=343 second=101 amount=-1 +kerning first=343 second=103 amount=-1 +kerning first=343 second=111 amount=-1 +kerning first=343 second=113 amount=-1 +kerning first=343 second=115 amount=-1 +kerning first=343 second=173 amount=-1 +kerning first=343 second=224 amount=-1 +kerning first=343 second=225 amount=-1 +kerning first=343 second=226 amount=-1 +kerning first=343 second=227 amount=-1 +kerning first=343 second=228 amount=-1 +kerning first=343 second=229 amount=-1 +kerning first=343 second=230 amount=-1 +kerning first=343 second=231 amount=-1 +kerning first=343 second=232 amount=-1 +kerning first=343 second=233 amount=-1 +kerning first=343 second=234 amount=-1 +kerning first=343 second=235 amount=-1 +kerning first=343 second=240 amount=-1 +kerning first=343 second=242 amount=-1 +kerning first=343 second=243 amount=-1 +kerning first=343 second=244 amount=-1 +kerning first=343 second=245 amount=-1 +kerning first=343 second=246 amount=-1 +kerning first=343 second=248 amount=-1 +kerning first=343 second=257 amount=-1 +kerning first=343 second=259 amount=-1 +kerning first=343 second=261 amount=-1 +kerning first=343 second=263 amount=-1 +kerning first=343 second=267 amount=-1 +kerning first=343 second=269 amount=-1 +kerning first=343 second=271 amount=-1 +kerning first=343 second=273 amount=-1 +kerning first=343 second=275 amount=-1 +kerning first=343 second=277 amount=-1 +kerning first=343 second=279 amount=-1 +kerning first=343 second=281 amount=-1 +kerning first=343 second=283 amount=-1 +kerning first=343 second=287 amount=-1 +kerning first=343 second=289 amount=-1 +kerning first=343 second=291 amount=-1 +kerning first=343 second=333 amount=-1 +kerning first=343 second=335 amount=-1 +kerning first=343 second=337 amount=-1 +kerning first=343 second=339 amount=-1 +kerning first=343 second=347 amount=-1 +kerning first=343 second=351 amount=-1 +kerning first=343 second=353 amount=-1 +kerning first=343 second=940 amount=-1 kerning first=343 second=941 amount=-1 -kerning first=105 second=352 amount=-1 -kerning first=371 second=187 amount=-1 -kerning first=958 second=8220 amount=-3 -kerning first=125 second=968 amount=-1 -kerning first=161 second=277 amount=-1 -kerning first=274 second=199 amount=-2 -kerning first=40 second=1035 amount=-5 -kerning first=43 second=291 amount=-1 -kerning first=186 second=211 amount=-2 -kerning first=298 second=339 amount=-1 -kerning first=301 second=101 amount=-1 -kerning first=295 second=1098 amount=-1 -kerning first=206 second=353 amount=-1 -kerning first=209 second=113 amount=-1 -kerning first=8377 second=216 amount=-2 -kerning first=86 second=365 amount=-1 -kerning first=1103 second=8221 amount=-3 -kerning first=1206 second=240 amount=-1 -kerning first=252 second=212 amount=-2 -kerning first=165 second=224 amount=-1 -kerning first=271 second=1118 amount=-1 -kerning first=8218 second=67 amount=-1 -kerning first=184 second=1184 amount=-5 -kerning first=302 second=279 amount=-1 -kerning first=299 second=970 amount=-1 -kerning first=70 second=171 amount=-3 -kerning first=8372 second=1195 amount=-1 -kerning first=8378 second=371 amount=-1 -kerning first=910 second=103 amount=-4 -kerning first=1168 second=253 amount=-1 -kerning first=356 second=115 amount=-3 -kerning first=948 second=267 amount=-1 -kerning first=253 second=367 amount=-1 -kerning first=250 second=1185 amount=-3 -kerning first=276 second=1038 amount=-2 -kerning first=8220 second=242 amount=-1 -kerning first=8216 second=923 amount=-3 -kerning first=1049 second=1101 amount=-1 -kerning first=306 second=226 amount=-1 -kerning first=906 second=972 amount=-1 -kerning first=91 second=941 amount=-1 -kerning first=94 second=250 amount=-1 -kerning first=234 second=380 amount=-1 -kerning first=360 second=65 amount=-2 -kerning first=114 second=1241 amount=-1 -kerning first=117 second=187 amount=-1 -kerning first=251 second=8220 amount=-3 -kerning first=167 second=1079 amount=-1 -kerning first=174 second=89 amount=-5 -kerning first=49 second=1098 amount=-3 -kerning first=52 second=339 amount=-1 -kerning first=1063 second=973 amount=-1 -kerning first=55 second=101 amount=-1 -kerning first=195 second=251 amount=-1 -kerning first=75 second=263 amount=-2 -kerning first=330 second=8221 amount=-3 -kerning first=1178 second=118 amount=-2 -kerning first=361 second=240 amount=-1 -kerning first=950 second=1194 amount=-2 -kerning first=258 second=943 amount=-1 -kerning first=1036 second=67 amount=-3 -kerning first=175 second=266 amount=-2 -kerning first=178 second=39 amount=-3 -kerning first=56 second=279 amount=-1 -kerning first=53 second=970 amount=-1 -kerning first=8361 second=271 amount=-1 -kerning first=1096 second=1195 amount=-1 -kerning first=1099 second=371 amount=-1 -kerning first=915 second=1257 amount=-1 -kerning first=102 second=115 amount=-1 -kerning first=1034 second=923 amount=-1 -kerning first=1037 second=242 amount=-1 -kerning first=179 second=214 amount=-2 -kerning first=287 second=1101 amount=-1 -kerning first=60 second=226 amount=-1 -kerning first=1071 second=1240 amount=-2 -kerning first=200 second=356 amount=-5 -kerning first=203 second=116 amount=-1 -kerning first=318 second=268 amount=-2 -kerning first=8365 second=219 amount=-2 -kerning first=80 second=368 amount=-2 -kerning first=223 second=281 amount=-1 -kerning first=1187 second=243 amount=-1 -kerning first=1298 second=1263 amount=-1 -kerning first=126 second=227 amount=-1 -kerning first=271 second=117 amount=-1 -kerning first=180 second=369 amount=-1 -kerning first=291 second=973 amount=-1 -kerning first=8366 second=374 amount=-5 -kerning first=78 second=8221 amount=-3 -kerning first=902 second=106 amount=1 -kerning first=81 second=1066 amount=-2 -kerning first=350 second=118 amount=-1 -kerning first=936 second=962 amount=-1 -kerning first=107 second=240 amount=-2 -kerning first=247 second=370 amount=-2 -kerning first=124 second=1256 amount=-2 -kerning first=276 second=67 amount=-2 -kerning first=188 second=79 amount=-2 -kerning first=300 second=229 amount=-1 -kerning first=1078 second=963 amount=-2 -kerning first=1081 second=271 amount=-1 -kerning first=205 second=920 amount=-2 -kerning first=325 second=371 amount=-1 -kerning first=322 second=1195 amount=-1 -kerning first=900 second=1026 amount=-5 -kerning first=903 second=286 amount=-2 -kerning first=88 second=253 amount=-1 +kerning first=343 second=945 amount=-1 +kerning first=343 second=949 amount=-1 +kerning first=343 second=955 amount=-3 +kerning first=343 second=959 amount=-1 +kerning first=343 second=962 amount=-1 +kerning first=343 second=963 amount=-1 +kerning first=343 second=966 amount=-1 +kerning first=343 second=972 amount=-1 +kerning first=343 second=1072 amount=-1 +kerning first=343 second=1077 amount=-1 +kerning first=343 second=1086 amount=-1 +kerning first=343 second=1089 amount=-1 +kerning first=343 second=1092 amount=-1 +kerning first=343 second=1104 amount=-1 +kerning first=343 second=1105 amount=-1 +kerning first=343 second=1108 amount=-1 +kerning first=343 second=1109 amount=-1 +kerning first=343 second=1195 amount=-1 +kerning first=343 second=1241 amount=-1 +kerning first=343 second=1257 amount=-1 +kerning first=343 second=8211 amount=-1 +kerning first=343 second=8212 amount=-1 +kerning first=343 second=8218 amount=-3 +kerning first=343 second=8222 amount=-3 +kerning first=343 second=8230 amount=-3 +kerning first=344 second=45 amount=-1 +kerning first=344 second=86 amount=-1 +kerning first=344 second=87 amount=-1 +kerning first=344 second=89 amount=-2 +kerning first=344 second=106 amount=2 +kerning first=344 second=171 amount=-1 +kerning first=344 second=173 amount=-1 +kerning first=344 second=221 amount=-2 +kerning first=344 second=372 amount=-1 +kerning first=344 second=374 amount=-2 +kerning first=344 second=376 amount=-2 +kerning first=344 second=933 amount=-2 +kerning first=344 second=939 amount=-2 +kerning first=344 second=1112 amount=2 +kerning first=344 second=1198 amount=-2 +kerning first=344 second=8211 amount=-1 +kerning first=344 second=8212 amount=-1 +kerning first=344 second=8249 amount=-1 +kerning first=345 second=44 amount=-3 +kerning first=345 second=45 amount=-1 +kerning first=345 second=46 amount=-3 +kerning first=345 second=47 amount=-2 +kerning first=345 second=97 amount=-1 +kerning first=345 second=99 amount=-1 +kerning first=345 second=100 amount=-1 +kerning first=345 second=101 amount=-1 +kerning first=345 second=103 amount=-1 +kerning first=345 second=111 amount=-1 +kerning first=345 second=113 amount=-1 +kerning first=345 second=115 amount=-1 +kerning first=345 second=173 amount=-1 +kerning first=345 second=224 amount=-1 +kerning first=345 second=225 amount=-1 +kerning first=345 second=226 amount=-1 +kerning first=345 second=227 amount=-1 +kerning first=345 second=228 amount=-1 +kerning first=345 second=229 amount=-1 +kerning first=345 second=230 amount=-1 +kerning first=345 second=231 amount=-1 +kerning first=345 second=232 amount=-1 +kerning first=345 second=233 amount=-1 +kerning first=345 second=234 amount=-1 +kerning first=345 second=235 amount=-1 +kerning first=345 second=240 amount=-1 +kerning first=345 second=242 amount=-1 +kerning first=345 second=243 amount=-1 +kerning first=345 second=244 amount=-1 +kerning first=345 second=245 amount=-1 +kerning first=345 second=246 amount=-1 +kerning first=345 second=248 amount=-1 +kerning first=345 second=257 amount=-1 +kerning first=345 second=259 amount=-1 +kerning first=345 second=261 amount=-1 +kerning first=345 second=263 amount=-1 +kerning first=345 second=267 amount=-1 +kerning first=345 second=269 amount=-1 +kerning first=345 second=271 amount=-1 +kerning first=345 second=273 amount=-1 +kerning first=345 second=275 amount=-1 +kerning first=345 second=277 amount=-1 +kerning first=345 second=279 amount=-1 +kerning first=345 second=281 amount=-1 +kerning first=345 second=283 amount=-1 +kerning first=345 second=287 amount=-1 +kerning first=345 second=289 amount=-1 +kerning first=345 second=291 amount=-1 +kerning first=345 second=333 amount=-1 +kerning first=345 second=335 amount=-1 +kerning first=345 second=337 amount=-1 +kerning first=345 second=339 amount=-1 +kerning first=345 second=347 amount=-1 +kerning first=345 second=351 amount=-1 +kerning first=345 second=353 amount=-1 +kerning first=345 second=940 amount=-1 +kerning first=345 second=941 amount=-1 +kerning first=345 second=945 amount=-1 +kerning first=345 second=949 amount=-1 +kerning first=345 second=955 amount=-3 +kerning first=345 second=959 amount=-1 +kerning first=345 second=962 amount=-1 +kerning first=345 second=963 amount=-1 +kerning first=345 second=966 amount=-1 +kerning first=345 second=972 amount=-1 +kerning first=345 second=1072 amount=-1 +kerning first=345 second=1077 amount=-1 +kerning first=345 second=1086 amount=-1 +kerning first=345 second=1089 amount=-1 +kerning first=345 second=1092 amount=-1 +kerning first=345 second=1104 amount=-1 +kerning first=345 second=1105 amount=-1 +kerning first=345 second=1108 amount=-1 +kerning first=345 second=1109 amount=-1 +kerning first=345 second=1195 amount=-1 +kerning first=345 second=1241 amount=-1 +kerning first=345 second=1257 amount=-1 +kerning first=345 second=8211 amount=-1 +kerning first=345 second=8212 amount=-1 +kerning first=345 second=8218 amount=-3 +kerning first=345 second=8222 amount=-3 +kerning first=345 second=8230 amount=-3 +kerning first=346 second=65 amount=-1 +kerning first=346 second=84 amount=-1 +kerning first=346 second=86 amount=-2 +kerning first=346 second=87 amount=-2 +kerning first=346 second=88 amount=-1 +kerning first=346 second=89 amount=-2 +kerning first=346 second=106 amount=1 +kerning first=346 second=118 amount=-1 +kerning first=346 second=119 amount=-1 +kerning first=346 second=120 amount=-1 +kerning first=346 second=193 amount=-1 +kerning first=346 second=194 amount=-1 +kerning first=346 second=196 amount=-1 +kerning first=346 second=197 amount=-1 +kerning first=346 second=198 amount=-1 +kerning first=346 second=221 amount=-2 +kerning first=346 second=256 amount=-1 +kerning first=346 second=258 amount=-1 +kerning first=346 second=260 amount=-1 +kerning first=346 second=354 amount=-1 +kerning first=346 second=356 amount=-1 +kerning first=346 second=372 amount=-2 +kerning first=346 second=373 amount=-1 +kerning first=346 second=374 amount=-2 +kerning first=346 second=376 amount=-2 +kerning first=346 second=913 amount=-1 +kerning first=346 second=916 amount=-1 +kerning first=346 second=923 amount=-1 +kerning first=346 second=932 amount=-1 +kerning first=346 second=933 amount=-2 +kerning first=346 second=935 amount=-1 +kerning first=346 second=939 amount=-2 +kerning first=346 second=947 amount=-1 +kerning first=346 second=957 amount=-1 +kerning first=346 second=1026 amount=-1 +kerning first=346 second=1035 amount=-1 +kerning first=346 second=1040 amount=-1 kerning first=346 second=1046 amount=-1 -kerning first=374 second=230 amount=-4 -kerning first=968 second=360 amount=-2 -kerning first=43 second=1101 amount=-1 -kerning first=1051 second=287 amount=-1 -kerning first=186 second=945 amount=-1 -kerning first=301 second=1240 amount=-2 -kerning first=298 second=1262 amount=-2 -kerning first=69 second=268 amount=-2 -kerning first=1087 second=219 amount=-2 -kerning first=1119 second=361 amount=-1 -kerning first=1170 second=121 amount=-1 -kerning first=946 second=373 amount=-4 -kerning first=1206 second=1028 amount=-1 -kerning first=1219 second=288 amount=-2 -kerning first=372 second=1263 amount=-1 -kerning first=168 second=269 amount=-1 -kerning first=47 second=973 amount=-1 -kerning first=1064 second=232 amount=-1 -kerning first=305 second=332 amount=-2 -kerning first=73 second=216 amount=-2 -kerning first=334 second=256 amount=-2 -kerning first=96 second=118 amount=-4 -kerning first=1176 second=71 amount=-2 -kerning first=376 second=1087 amount=-3 -kerning first=379 second=333 amount=-1 -kerning first=1027 second=245 amount=-1 -kerning first=172 second=217 amount=-2 -kerning first=8224 second=290 amount=-2 -kerning first=54 second=229 amount=-1 -kerning first=197 second=119 amount=-4 -kerning first=194 second=359 amount=-1 -kerning first=306 second=963 amount=-1 -kerning first=311 second=271 amount=-2 -kerning first=74 second=371 amount=-1 -kerning first=1094 second=1073 amount=-1 -kerning first=214 second=1026 amount=-5 -kerning first=916 second=334 amount=-2 -kerning first=1174 second=934 amount=-2 -kerning first=240 second=218 amount=-2 -kerning first=120 second=230 amount=-1 -kerning first=260 second=360 amount=-2 -kerning first=35 second=242 amount=-1 -kerning first=263 second=120 amount=-1 -kerning first=170 second=947 amount=-4 -kerning first=174 second=372 amount=-5 -kerning first=8240 second=235 amount=-1 -kerning first=55 second=1240 amount=-2 -kerning first=52 second=1262 amount=-2 -kerning first=1073 second=97 amount=-1 -kerning first=316 second=219 amount=-2 -kerning first=75 second=1069 amount=-2 -kerning first=1106 second=34 amount=-1 -kerning first=221 second=231 amount=-4 -kerning first=241 second=373 amount=-1 -kerning first=361 second=1028 amount=-2 -kerning first=1299 second=336 amount=-2 -kerning first=1036 second=350 amount=-1 -kerning first=294 second=232 amount=-1 -kerning first=59 second=332 amount=-2 -kerning first=1074 second=275 amount=-1 -kerning first=202 second=244 amount=-1 -kerning first=317 second=374 amount=-5 -kerning first=8369 second=87 amount=-5 -kerning first=219 second=1298 amount=-1 -kerning first=937 second=221 amount=-2 -kerning first=962 second=363 amount=-1 -kerning first=958 second=1177 amount=-1 -kerning first=125 second=333 amount=-1 -kerning first=1041 second=290 amount=-2 -kerning first=179 second=949 amount=-1 -kerning first=183 second=257 amount=-1 -kerning first=60 second=963 amount=-1 -kerning first=63 second=271 amount=-1 -kerning first=8370 second=262 amount=-2 -kerning first=901 second=234 amount=-1 -kerning first=223 second=1090 amount=-3 -kerning first=947 second=291 amount=-1 -kerning first=960 second=8212 amount=-2 -kerning first=963 second=1059 amount=-2 -kerning first=162 second=273 amount=-1 -kerning first=165 second=45 amount=-2 -kerning first=126 second=964 amount=-3 -kerning first=44 second=287 amount=-1 -kerning first=1048 second=235 amount=-1 -kerning first=299 second=335 amount=-1 -kerning first=302 second=97 amount=-1 -kerning first=204 second=1108 amount=-1 -kerning first=207 second=347 amount=-1 -kerning first=327 second=259 amount=-1 -kerning first=8378 second=212 amount=-2 -kerning first=331 second=34 amount=-1 -kerning first=84 second=1175 amount=-1 -kerning first=87 second=361 amount=-2 -kerning first=1106 second=8216 amount=-1 -kerning first=233 second=46 amount=-1 -kerning first=936 second=8250 amount=-1 -kerning first=166 second=220 amount=-2 -kerning first=276 second=350 amount=-1 -kerning first=48 second=232 amount=-1 -kerning first=188 second=362 amount=-2 -kerning first=185 second=1176 amount=-1 -kerning first=300 second=966 amount=-1 -kerning first=303 second=275 amount=-1 -kerning first=68 second=374 amount=-3 -kerning first=208 second=1033 amount=-1 -kerning first=906 second=337 amount=-1 -kerning first=94 second=71 amount=-2 -kerning first=1118 second=940 amount=-1 -kerning first=357 second=111 amount=-1 +kerning first=346 second=1058 amount=-1 +kerning first=346 second=1061 amount=-1 +kerning first=346 second=1066 amount=-1 +kerning first=346 second=1078 amount=-1 +kerning first=346 second=1093 amount=-1 +kerning first=346 second=1112 amount=1 +kerning first=346 second=1174 amount=-1 +kerning first=346 second=1175 amount=-1 +kerning first=346 second=1184 amount=-1 +kerning first=346 second=1198 amount=-2 +kerning first=346 second=1199 amount=-1 +kerning first=346 second=1202 amount=-1 +kerning first=346 second=1203 amount=-1 +kerning first=347 second=34 amount=-1 +kerning first=347 second=39 amount=-1 +kerning first=347 second=63 amount=-2 +kerning first=347 second=102 amount=-1 +kerning first=347 second=118 amount=-1 +kerning first=347 second=119 amount=-1 +kerning first=347 second=120 amount=-1 +kerning first=347 second=373 amount=-1 +kerning first=347 second=947 amount=-1 +kerning first=347 second=957 amount=-1 +kerning first=347 second=1078 amount=-1 +kerning first=347 second=1093 amount=-1 +kerning first=347 second=1175 amount=-1 +kerning first=347 second=1199 amount=-1 +kerning first=347 second=1203 amount=-1 +kerning first=347 second=8216 amount=-1 +kerning first=347 second=8217 amount=-1 +kerning first=347 second=8220 amount=-1 +kerning first=347 second=8221 amount=-1 +kerning first=350 second=65 amount=-1 +kerning first=350 second=84 amount=-1 +kerning first=350 second=86 amount=-2 +kerning first=350 second=87 amount=-2 +kerning first=350 second=88 amount=-1 +kerning first=350 second=89 amount=-2 +kerning first=350 second=106 amount=1 +kerning first=350 second=118 amount=-1 +kerning first=350 second=119 amount=-1 +kerning first=350 second=120 amount=-1 +kerning first=350 second=193 amount=-1 +kerning first=350 second=194 amount=-1 +kerning first=350 second=196 amount=-1 +kerning first=350 second=197 amount=-1 +kerning first=350 second=198 amount=-1 +kerning first=350 second=221 amount=-2 +kerning first=350 second=256 amount=-1 +kerning first=350 second=258 amount=-1 +kerning first=350 second=260 amount=-1 +kerning first=350 second=354 amount=-1 +kerning first=350 second=356 amount=-1 +kerning first=350 second=372 amount=-2 +kerning first=350 second=373 amount=-1 +kerning first=350 second=374 amount=-2 +kerning first=350 second=376 amount=-2 +kerning first=350 second=913 amount=-1 +kerning first=350 second=916 amount=-1 +kerning first=350 second=923 amount=-1 +kerning first=350 second=932 amount=-1 +kerning first=350 second=933 amount=-2 +kerning first=350 second=935 amount=-1 +kerning first=350 second=939 amount=-2 +kerning first=350 second=947 amount=-1 +kerning first=350 second=957 amount=-1 +kerning first=350 second=1026 amount=-1 +kerning first=350 second=1035 amount=-1 +kerning first=350 second=1040 amount=-1 +kerning first=350 second=1046 amount=-1 +kerning first=350 second=1058 amount=-1 +kerning first=350 second=1061 amount=-1 +kerning first=350 second=1066 amount=-1 +kerning first=350 second=1078 amount=-1 +kerning first=350 second=1093 amount=-1 +kerning first=350 second=1112 amount=1 +kerning first=350 second=1174 amount=-1 +kerning first=350 second=1175 amount=-1 +kerning first=350 second=1184 amount=-1 +kerning first=350 second=1198 amount=-2 +kerning first=350 second=1199 amount=-1 +kerning first=350 second=1202 amount=-1 +kerning first=350 second=1203 amount=-1 +kerning first=351 second=34 amount=-1 +kerning first=351 second=39 amount=-1 +kerning first=351 second=63 amount=-2 +kerning first=351 second=102 amount=-1 +kerning first=351 second=118 amount=-1 +kerning first=351 second=119 amount=-1 +kerning first=351 second=120 amount=-1 +kerning first=351 second=373 amount=-1 +kerning first=351 second=947 amount=-1 +kerning first=351 second=957 amount=-1 +kerning first=351 second=1078 amount=-1 +kerning first=351 second=1093 amount=-1 +kerning first=351 second=1175 amount=-1 +kerning first=351 second=1199 amount=-1 +kerning first=351 second=1203 amount=-1 +kerning first=351 second=8216 amount=-1 +kerning first=351 second=8217 amount=-1 +kerning first=351 second=8220 amount=-1 +kerning first=351 second=8221 amount=-1 +kerning first=352 second=65 amount=-1 +kerning first=352 second=84 amount=-1 +kerning first=352 second=86 amount=-2 +kerning first=352 second=87 amount=-2 +kerning first=352 second=88 amount=-1 +kerning first=352 second=89 amount=-2 +kerning first=352 second=106 amount=1 +kerning first=352 second=118 amount=-1 +kerning first=352 second=119 amount=-1 +kerning first=352 second=120 amount=-1 +kerning first=352 second=193 amount=-1 +kerning first=352 second=194 amount=-1 +kerning first=352 second=196 amount=-1 +kerning first=352 second=197 amount=-1 +kerning first=352 second=198 amount=-1 +kerning first=352 second=221 amount=-2 +kerning first=352 second=256 amount=-1 +kerning first=352 second=258 amount=-1 +kerning first=352 second=260 amount=-1 +kerning first=352 second=354 amount=-1 +kerning first=352 second=356 amount=-1 +kerning first=352 second=372 amount=-2 +kerning first=352 second=373 amount=-1 +kerning first=352 second=374 amount=-2 +kerning first=352 second=376 amount=-2 +kerning first=352 second=913 amount=-1 +kerning first=352 second=916 amount=-1 +kerning first=352 second=923 amount=-1 +kerning first=352 second=932 amount=-1 +kerning first=352 second=933 amount=-2 +kerning first=352 second=935 amount=-1 +kerning first=352 second=939 amount=-2 +kerning first=352 second=947 amount=-1 +kerning first=352 second=957 amount=-1 +kerning first=352 second=1026 amount=-1 +kerning first=352 second=1035 amount=-1 +kerning first=352 second=1040 amount=-1 +kerning first=352 second=1046 amount=-1 +kerning first=352 second=1058 amount=-1 +kerning first=352 second=1061 amount=-1 +kerning first=352 second=1066 amount=-1 +kerning first=352 second=1078 amount=-1 +kerning first=352 second=1093 amount=-1 +kerning first=352 second=1112 amount=1 +kerning first=352 second=1174 amount=-1 +kerning first=352 second=1175 amount=-1 +kerning first=352 second=1184 amount=-1 +kerning first=352 second=1198 amount=-2 +kerning first=352 second=1199 amount=-1 +kerning first=352 second=1202 amount=-1 +kerning first=352 second=1203 amount=-1 +kerning first=353 second=34 amount=-1 +kerning first=353 second=39 amount=-1 +kerning first=353 second=63 amount=-2 +kerning first=353 second=102 amount=-1 +kerning first=353 second=118 amount=-1 +kerning first=353 second=119 amount=-1 +kerning first=353 second=120 amount=-1 +kerning first=353 second=373 amount=-1 +kerning first=353 second=947 amount=-1 +kerning first=353 second=957 amount=-1 +kerning first=353 second=1078 amount=-1 +kerning first=353 second=1093 amount=-1 +kerning first=353 second=1175 amount=-1 +kerning first=353 second=1199 amount=-1 +kerning first=353 second=1203 amount=-1 +kerning first=353 second=8216 amount=-1 +kerning first=353 second=8217 amount=-1 +kerning first=353 second=8220 amount=-1 +kerning first=353 second=8221 amount=-1 +kerning first=354 second=44 amount=-3 +kerning first=354 second=45 amount=-4 +kerning first=354 second=46 amount=-3 +kerning first=354 second=47 amount=-4 +kerning first=354 second=110 amount=-2 +kerning first=354 second=65 amount=-6 +kerning first=354 second=67 amount=-1 +kerning first=354 second=114 amount=-2 +kerning first=354 second=71 amount=-1 +kerning first=354 second=74 amount=-5 +kerning first=354 second=79 amount=-1 +kerning first=354 second=81 amount=-1 +kerning first=354 second=83 amount=-1 +kerning first=354 second=97 amount=-2 +kerning first=354 second=99 amount=-3 +kerning first=354 second=100 amount=-3 +kerning first=354 second=101 amount=-3 +kerning first=354 second=103 amount=-2 +kerning first=354 second=109 amount=-2 +kerning first=354 second=111 amount=-3 +kerning first=354 second=112 amount=-2 +kerning first=354 second=113 amount=-3 +kerning first=354 second=115 amount=-3 +kerning first=354 second=117 amount=-2 +kerning first=354 second=118 amount=-2 +kerning first=354 second=119 amount=-2 +kerning first=354 second=120 amount=-1 +kerning first=354 second=121 amount=-2 +kerning first=354 second=122 amount=-1 +kerning first=354 second=171 amount=-3 +kerning first=354 second=173 amount=-4 +kerning first=354 second=187 amount=-1 +kerning first=354 second=193 amount=-6 +kerning first=354 second=194 amount=-6 +kerning first=354 second=196 amount=-6 +kerning first=354 second=197 amount=-6 +kerning first=354 second=198 amount=-6 +kerning first=354 second=199 amount=-1 +kerning first=354 second=210 amount=-1 +kerning first=354 second=211 amount=-1 +kerning first=354 second=212 amount=-1 +kerning first=354 second=213 amount=-1 +kerning first=354 second=214 amount=-1 +kerning first=354 second=216 amount=-1 +kerning first=354 second=224 amount=-2 +kerning first=354 second=225 amount=-2 +kerning first=354 second=226 amount=-2 +kerning first=354 second=227 amount=-2 +kerning first=354 second=228 amount=-2 +kerning first=354 second=229 amount=-2 +kerning first=354 second=230 amount=-2 +kerning first=354 second=231 amount=-3 +kerning first=354 second=232 amount=-3 +kerning first=354 second=233 amount=-3 +kerning first=354 second=234 amount=-3 +kerning first=354 second=235 amount=-3 +kerning first=354 second=240 amount=-3 +kerning first=354 second=241 amount=-2 +kerning first=354 second=242 amount=-3 +kerning first=354 second=243 amount=-3 +kerning first=354 second=244 amount=-3 +kerning first=354 second=245 amount=-3 +kerning first=354 second=246 amount=-3 +kerning first=354 second=248 amount=-3 +kerning first=354 second=249 amount=-2 +kerning first=354 second=250 amount=-2 +kerning first=354 second=251 amount=-2 +kerning first=354 second=252 amount=-2 +kerning first=354 second=253 amount=-2 +kerning first=354 second=256 amount=-6 +kerning first=354 second=257 amount=-2 +kerning first=354 second=258 amount=-6 +kerning first=354 second=259 amount=-2 +kerning first=354 second=260 amount=-6 +kerning first=354 second=261 amount=-2 +kerning first=354 second=262 amount=-1 +kerning first=354 second=263 amount=-3 +kerning first=354 second=266 amount=-1 +kerning first=354 second=267 amount=-3 +kerning first=354 second=268 amount=-1 +kerning first=354 second=269 amount=-3 +kerning first=354 second=271 amount=-3 +kerning first=354 second=273 amount=-3 +kerning first=354 second=275 amount=-3 +kerning first=354 second=277 amount=-3 +kerning first=354 second=279 amount=-3 +kerning first=354 second=281 amount=-3 +kerning first=354 second=283 amount=-3 +kerning first=354 second=286 amount=-1 +kerning first=354 second=287 amount=-2 +kerning first=354 second=288 amount=-1 +kerning first=354 second=289 amount=-2 +kerning first=354 second=290 amount=-1 +kerning first=354 second=291 amount=-2 +kerning first=354 second=324 amount=-2 +kerning first=354 second=326 amount=-2 +kerning first=354 second=328 amount=-2 +kerning first=354 second=331 amount=-2 +kerning first=354 second=332 amount=-1 +kerning first=354 second=333 amount=-3 +kerning first=354 second=334 amount=-1 +kerning first=354 second=335 amount=-3 +kerning first=354 second=336 amount=-1 +kerning first=354 second=337 amount=-3 +kerning first=354 second=338 amount=-1 +kerning first=354 second=339 amount=-3 +kerning first=354 second=341 amount=-2 +kerning first=354 second=343 amount=-2 +kerning first=354 second=345 amount=-2 +kerning first=354 second=346 amount=-1 +kerning first=354 second=347 amount=-3 +kerning first=354 second=350 amount=-1 kerning first=354 second=351 amount=-3 -kerning first=114 second=233 amount=-1 -kerning first=251 second=1177 amount=-1 -kerning first=254 second=363 amount=-1 -kerning first=374 second=967 amount=-2 -kerning first=167 second=375 amount=-1 -kerning first=280 second=290 amount=-2 -kerning first=1063 second=338 amount=-2 -kerning first=186 second=8211 amount=-2 -kerning first=1095 second=262 amount=-2 -kerning first=215 second=234 amount=-1 -kerning first=8377 second=8220 amount=-3 -kerning first=912 second=277 amount=-1 -kerning first=95 second=246 amount=-1 -kerning first=358 second=291 amount=-1 -kerning first=1224 second=339 amount=-1 -kerning first=252 second=8212 amount=-2 -kerning first=255 second=1059 amount=-2 -kerning first=1219 second=1098 amount=-3 -kerning first=1026 second=353 amount=-1 -kerning first=165 second=8249 amount=-3 -kerning first=175 second=85 amount=-2 -kerning first=53 second=335 amount=-1 -kerning first=56 second=97 amount=-1 -kerning first=193 second=936 amount=-3 -kerning first=1099 second=212 amount=-2 -kerning first=331 second=8216 amount=-1 -kerning first=923 second=224 amount=-1 -kerning first=1176 second=354 amount=-5 -kerning first=1171 second=1118 amount=-1 -kerning first=951 second=1184 amount=-5 -kerning first=1263 second=279 amount=-1 -kerning first=54 second=966 amount=-1 -kerning first=57 second=275 amount=-1 -kerning first=1071 second=225 amount=-1 -kerning first=318 second=87 amount=-5 -kerning first=1097 second=1185 amount=-2 -kerning first=223 second=99 amount=-1 -kerning first=338 second=940 amount=-1 -kerning first=100 second=351 amount=-1 -kerning first=103 second=111 amount=-1 -kerning first=240 second=953 amount=-1 -kerning first=268 second=198 amount=-1 -kerning first=38 second=290 amount=-2 -kerning first=180 second=210 amount=-2 -kerning first=291 second=338 amount=-2 -kerning first=296 second=100 amount=-1 -kerning first=8240 second=972 amount=-1 -kerning first=8260 second=281 amount=-1 -kerning first=201 second=352 amount=-1 -kerning first=321 second=262 amount=-2 -kerning first=221 second=968 amount=-2 -kerning first=928 second=1079 amount=-1 -kerning first=247 second=211 amount=-2 -kerning first=367 second=339 amount=-1 -kerning first=964 second=251 amount=-1 -kerning first=273 second=113 amount=-1 -kerning first=42 second=235 amount=-1 -kerning first=182 second=365 amount=-1 -kerning first=325 second=212 amount=-2 -kerning first=8364 second=1194 amount=-2 -kerning first=8369 second=370 amount=-2 -kerning first=88 second=74 amount=-1 -kerning first=346 second=354 amount=-1 -kerning first=942 second=266 amount=-2 -kerning first=371 second=279 amount=-1 -kerning first=164 second=171 amount=-3 -kerning first=277 second=63 amount=-2 -kerning first=179 second=8217 amount=-3 -kerning first=1051 second=103 amount=-1 -kerning first=301 second=225 amount=-1 -kerning first=69 second=87 amount=-5 -kerning first=1083 second=267 amount=-1 -kerning first=323 second=1185 amount=-3 -kerning first=86 second=940 amount=-1 -kerning first=89 second=249 amount=-2 -kerning first=946 second=214 amount=-2 -kerning first=246 second=8218 amount=-1 -kerning first=375 second=226 amount=-1 -kerning first=47 second=338 amount=-1 -kerning first=50 second=100 amount=-1 -kerning first=1048 second=972 amount=-1 -kerning first=190 second=250 amount=-1 -kerning first=70 second=262 amount=-2 -kerning first=324 second=8220 amount=-1 -kerning first=910 second=227 amount=-4 -kerning first=93 second=199 amount=-2 -kerning first=1168 second=357 amount=-1 -kerning first=1171 second=117 amount=-1 -kerning first=236 second=89 amount=-5 -kerning first=948 second=369 amount=-1 -kerning first=110 second=1098 amount=-1 -kerning first=113 second=339 amount=-1 -kerning first=256 second=251 amount=-1 -kerning first=169 second=263 amount=-1 -kerning first=8224 second=106 amount=1 -kerning first=74 second=212 amount=-2 -kerning first=1085 second=1194 amount=-2 -kerning first=906 second=1256 amount=-2 -kerning first=91 second=1118 amount=-1 -kerning first=94 second=354 amount=-5 -kerning first=237 second=266 amount=-2 -kerning first=240 second=39 amount=-3 -kerning first=955 second=79 amount=-2 -kerning first=117 second=279 amount=-1 -kerning first=174 second=213 amount=-2 -kerning first=8225 second=286 amount=-2 -kerning first=1063 second=1257 amount=-1 -kerning first=55 second=225 amount=-1 -kerning first=195 second=355 amount=-1 -kerning first=198 second=115 amount=-1 -kerning first=313 second=267 amount=-1 -kerning first=72 second=1185 amount=-3 -kerning first=75 second=367 amount=-1 -kerning first=95 second=1038 amount=-2 -kerning first=1178 second=242 amount=-1 -kerning first=358 second=1101 amount=-1 -kerning first=1224 second=1262 amount=-2 -kerning first=121 second=226 amount=-1 -kerning first=175 second=368 amount=-2 -kerning first=289 second=281 amount=-1 -kerning first=8361 second=373 amount=-4 -kerning first=73 second=8220 amount=-3 -kerning first=931 second=269 amount=-1 -kerning first=1041 second=106 amount=1 -kerning first=176 second=1066 amount=-5 -kerning first=172 second=8221 amount=-3 -kerning first=1071 second=962 amount=-1 -kerning first=203 second=240 amount=-1 -kerning first=318 second=370 amount=-2 -kerning first=315 second=1194 amount=-1 -kerning first=8370 second=83 amount=-1 -kerning first=80 second=943 amount=-1 -kerning first=249 second=79 amount=-2 -kerning first=369 second=229 amount=-1 -kerning first=963 second=359 amount=-1 -kerning first=966 second=119 amount=-1 -kerning first=44 second=103 amount=-1 -kerning first=1044 second=286 amount=-1 -kerning first=184 second=253 amount=-1 -kerning first=291 second=1257 amount=-1 -kerning first=8260 second=1090 amount=-3 -kerning first=64 second=267 amount=-1 -kerning first=1080 second=218 amount=-2 -kerning first=902 second=230 amount=-1 -kerning first=936 second=947 amount=-4 -kerning first=247 second=945 amount=-1 -kerning first=367 second=1262 amount=-2 -kerning first=163 second=268 amount=-2 -kerning first=42 second=972 amount=-1 -kerning first=1049 second=231 amount=-1 -kerning first=1081 second=373 amount=-4 -kerning first=900 second=1263 amount=-1 -kerning first=91 second=117 amount=-1 -kerning first=88 second=357 amount=-1 -kerning first=108 second=973 amount=-1 -kerning first=1210 second=232 amount=-1 -kerning first=374 second=332 amount=-3 -kerning first=971 second=244 amount=-1 -kerning first=167 second=216 amount=-2 -kerning first=280 second=106 amount=1 -kerning first=8217 second=289 amount=-1 -kerning first=49 second=228 amount=-1 -kerning first=8211 second=1033 amount=-4 -kerning first=192 second=118 amount=-4 -kerning first=301 second=962 amount=-1 -kerning first=69 second=370 amount=-2 -kerning first=1095 second=83 amount=-1 -kerning first=8377 second=1177 amount=-1 -kerning first=89 second=1044 amount=-5 -kerning first=95 second=67 amount=-2 -kerning first=1170 second=245 amount=-1 -kerning first=946 second=949 amount=-1 -kerning first=950 second=257 amount=-1 -kerning first=255 second=359 amount=-1 -kerning first=258 second=119 amount=-4 -kerning first=375 second=963 amount=-1 -kerning first=378 second=271 amount=-1 -kerning first=165 second=1195 amount=-1 -kerning first=168 second=371 amount=-1 -kerning first=278 second=1026 amount=-5 -kerning first=47 second=1257 amount=-1 -kerning first=1064 second=334 amount=-2 -kerning first=8378 second=8212 amount=-2 -kerning first=915 second=273 amount=-1 -kerning first=923 second=45 amount=-2 -kerning first=96 second=242 amount=-1 -kerning first=910 second=964 amount=-2 -kerning first=233 second=947 amount=-1 -kerning first=236 second=372 amount=-5 -kerning first=337 second=120 amount=-2 -kerning first=113 second=1262 amount=-2 -kerning first=1263 second=97 amount=-1 -kerning first=973 second=1108 amount=-1 -kerning first=1027 second=347 amount=-1 -kerning first=169 second=1069 amount=-1 -kerning first=176 second=81 amount=-2 -kerning first=287 second=231 amount=-1 -kerning first=197 second=243 amount=-1 -kerning first=214 second=1263 amount=-1 -kerning first=926 second=220 amount=-2 -kerning first=363 second=232 amount=-1 -kerning first=952 second=1176 amount=-1 -kerning first=955 second=362 amount=-2 -kerning first=1298 second=275 amount=-1 -kerning first=38 second=106 amount=1 -kerning first=1035 second=289 amount=-1 -kerning first=1028 second=1033 amount=-1 -kerning first=8240 second=337 amount=-1 -kerning first=8260 second=99 amount=-1 -kerning first=55 second=962 amount=-1 -kerning first=1073 second=221 amount=-5 -kerning first=321 second=83 amount=-1 -kerning first=8363 second=261 amount=-1 -kerning first=221 second=333 amount=-4 -kerning first=928 second=375 amount=-1 -kerning first=121 second=963 amount=-1 -kerning first=124 second=271 amount=-1 -kerning first=36 second=1026 amount=-5 -kerning first=1039 second=234 amount=-1 -kerning first=289 second=1090 amount=-3 -kerning first=294 second=334 amount=-2 -kerning first=62 second=218 amount=-2 -kerning first=1074 second=376 amount=-5 -kerning first=202 second=346 amount=-1 -kerning first=8369 second=211 amount=-2 -kerning first=79 second=1174 amount=-3 -kerning first=1099 second=8212 amount=-2 -kerning first=923 second=8249 amount=-3 -kerning first=942 second=85 amount=-2 -kerning first=105 second=287 amount=-1 -kerning first=371 second=97 amount=-1 -kerning first=161 second=219 amount=-2 -kerning first=43 second=231 amount=-1 -kerning first=183 second=361 amount=-1 -kerning first=186 second=121 amount=-1 -kerning first=63 second=373 amount=-4 -kerning first=1071 second=8250 amount=-1 -kerning first=203 second=1028 amount=-2 -kerning first=206 second=288 amount=-2 -kerning first=8365 second=1184 amount=-5 -kerning first=8370 second=366 amount=-2 -kerning first=901 second=336 amount=-2 -kerning first=1116 second=248 amount=-2 -kerning first=249 second=362 amount=-2 -kerning first=369 second=966 amount=-1 -kerning first=372 second=275 amount=-3 -kerning first=162 second=374 amount=-5 -kerning first=1048 second=337 amount=-1 -kerning first=190 second=71 amount=-2 -kerning first=302 second=221 amount=-5 -kerning first=70 second=83 amount=-1 -kerning first=1084 second=261 amount=-1 -kerning first=1080 second=953 amount=-1 -kerning first=327 second=363 amount=-1 -kerning first=90 second=245 amount=-1 -kerning first=948 second=210 amount=-2 -kerning first=247 second=8211 amount=-2 -kerning first=1220 second=100 amount=-1 -kerning first=169 second=84 amount=-5 -kerning first=8216 second=1241 amount=-1 -kerning first=48 second=334 amount=-2 -kerning first=1049 second=968 amount=-1 -kerning first=191 second=246 amount=-1 -kerning first=1062 second=277 amount=-1 -kerning first=303 second=376 amount=-5 -kerning first=325 second=8212 amount=-2 -kerning first=1174 second=113 amount=-1 -kerning first=237 second=85 amount=-2 -kerning first=357 second=235 amount=-1 -kerning first=114 second=335 amount=-1 -kerning first=117 second=97 amount=-1 -kerning first=377 second=377 amount=1 -kerning first=170 second=259 amount=-1 -kerning first=174 second=34 amount=-3 -kerning first=49 second=965 amount=-1 -kerning first=55 second=46 amount=-4 -kerning first=301 second=8250 amount=-1 -kerning first=313 second=86 amount=-5 -kerning first=1087 second=1184 amount=-5 -kerning first=1095 second=366 amount=-2 -kerning first=215 second=336 amount=-2 -kerning first=95 second=350 amount=-1 -kerning first=1178 second=63 amount=-2 -kerning first=946 second=8217 amount=-3 -kerning first=118 second=275 amount=-1 -kerning first=1240 second=87 amount=-2 -kerning first=289 second=99 amount=-1 -kerning first=56 second=221 amount=-5 -kerning first=196 second=351 amount=-1 -kerning first=314 second=261 amount=-1 -kerning first=8361 second=214 amount=-2 -kerning first=73 second=1177 amount=-1 -kerning first=76 second=363 amount=-1 -kerning first=1090 second=8218 amount=-3 -kerning first=216 second=967 amount=-1 -kerning first=365 second=100 amount=-1 -kerning first=958 second=250 amount=-1 -kerning first=954 second=941 amount=-2 -kerning first=37 second=234 amount=-1 -kerning first=1037 second=187 amount=-1 -kerning first=176 second=364 amount=-2 -kerning first=287 second=968 amount=-1 -kerning first=57 second=376 amount=-5 -kerning first=197 second=1035 amount=-5 -kerning first=200 second=291 amount=-1 -kerning first=318 second=211 amount=-2 -kerning first=74 second=8212 amount=-2 -kerning first=77 second=1059 amount=-2 -kerning first=1103 second=251 amount=-1 -kerning first=341 second=353 amount=-1 -kerning first=934 second=263 amount=-1 -kerning first=103 second=235 amount=-1 -kerning first=174 second=8216 amount=-3 -kerning first=296 second=224 amount=-1 -kerning first=8240 second=1256 amount=-2 -kerning first=55 second=8250 amount=-1 -kerning first=1080 second=39 amount=-3 -kerning first=316 second=1184 amount=-5 -kerning first=321 second=366 amount=-2 -kerning first=8372 second=79 amount=-2 -kerning first=84 second=248 amount=-3 -kerning first=241 second=8217 amount=-1 -kerning first=964 second=355 amount=-1 -kerning first=967 second=115 amount=-1 -kerning first=163 second=87 amount=-5 -kerning first=42 second=337 amount=-1 -kerning first=185 second=249 amount=-1 -kerning first=182 second=940 amount=-1 -kerning first=65 second=261 amount=-1 -kerning first=1081 second=214 amount=-2 -kerning first=62 second=953 amount=-1 -kerning first=8369 second=945 amount=-1 -kerning first=903 second=226 amount=-1 -kerning first=1118 second=116 amount=-1 -kerning first=942 second=368 amount=-2 -kerning first=108 second=338 amount=-2 -kerning first=1203 second=281 amount=-1 -kerning first=251 second=250 amount=-1 -kerning first=164 second=262 amount=-2 -kerning first=274 second=1241 amount=-1 -kerning first=43 second=968 amount=-1 -kerning first=1051 second=227 amount=-1 -kerning first=189 second=199 amount=-2 -kerning first=298 second=1079 amount=-1 -kerning first=304 second=89 amount=-5 -kerning first=69 second=211 amount=-2 -kerning first=1083 second=369 amount=-1 -kerning first=209 second=339 amount=-1 -kerning first=206 second=1098 amount=-3 -kerning first=330 second=251 amount=-1 -kerning first=86 second=1117 amount=-2 -kerning first=89 second=353 amount=-3 -kerning first=92 second=113 amount=-1 -kerning first=1219 second=228 amount=-1 -kerning first=372 second=1080 amount=-2 -kerning first=168 second=212 amount=-2 -kerning first=281 second=102 amount=-1 -kerning first=8222 second=55 amount=-1 -kerning first=50 second=224 amount=-1 -kerning first=1048 second=1256 amount=-2 -kerning first=190 second=354 amount=-5 -kerning first=305 second=266 amount=-2 -kerning first=67 second=1184 amount=-1 -kerning first=70 second=366 amount=-2 -kerning first=1096 second=79 amount=-2 -kerning first=910 second=328 amount=-3 -kerning first=1168 second=920 amount=-2 -kerning first=236 second=213 amount=-2 +kerning first=354 second=352 amount=-1 +kerning first=354 second=353 amount=-3 +kerning first=354 second=361 amount=-2 +kerning first=354 second=363 amount=-2 +kerning first=354 second=365 amount=-2 +kerning first=354 second=367 amount=-2 +kerning first=354 second=369 amount=-2 +kerning first=354 second=371 amount=-2 +kerning first=354 second=373 amount=-2 +kerning first=354 second=375 amount=-2 +kerning first=354 second=378 amount=-1 +kerning first=354 second=380 amount=-1 +kerning first=354 second=382 amount=-1 +kerning first=354 second=913 amount=-6 +kerning first=354 second=916 amount=-6 +kerning first=354 second=920 amount=-1 +kerning first=354 second=923 amount=-6 +kerning first=354 second=927 amount=-1 +kerning first=354 second=940 amount=-3 +kerning first=354 second=941 amount=-3 +kerning first=354 second=942 amount=-2 +kerning first=354 second=945 amount=-3 +kerning first=354 second=947 amount=-2 +kerning first=354 second=949 amount=-3 +kerning first=354 second=951 amount=-2 +kerning first=354 second=954 amount=-2 +kerning first=354 second=957 amount=-2 +kerning first=354 second=959 amount=-3 +kerning first=354 second=962 amount=-3 +kerning first=354 second=963 amount=-3 +kerning first=354 second=965 amount=-2 +kerning first=354 second=966 amount=-3 +kerning first=354 second=968 amount=-2 +kerning first=354 second=972 amount=-3 +kerning first=354 second=973 amount=-2 +kerning first=354 second=1028 amount=-1 +kerning first=354 second=1029 amount=-1 +kerning first=354 second=1032 amount=-5 +kerning first=354 second=1033 amount=-4 +kerning first=354 second=1040 amount=-6 +kerning first=354 second=1044 amount=-4 +kerning first=354 second=1051 amount=-4 +kerning first=354 second=1054 amount=-1 +kerning first=354 second=1057 amount=-1 +kerning first=354 second=1072 amount=-2 +kerning first=354 second=1074 amount=-2 +kerning first=354 second=1075 amount=-2 +kerning first=354 second=1077 amount=-3 +kerning first=354 second=1078 amount=-1 +kerning first=354 second=1079 amount=-2 +kerning first=354 second=1080 amount=-2 +kerning first=354 second=1081 amount=-2 +kerning first=354 second=1082 amount=-2 +kerning first=354 second=1084 amount=-2 +kerning first=354 second=1085 amount=-2 +kerning first=354 second=1086 amount=-3 +kerning first=354 second=1087 amount=-2 +kerning first=354 second=1088 amount=-2 +kerning first=354 second=1089 amount=-3 +kerning first=354 second=1091 amount=-2 +kerning first=354 second=1092 amount=-3 +kerning first=354 second=1093 amount=-1 +kerning first=354 second=1094 amount=-2 +kerning first=354 second=1096 amount=-2 +kerning first=354 second=1097 amount=-2 +kerning first=354 second=1099 amount=-2 +kerning first=354 second=1100 amount=-2 +kerning first=354 second=1101 amount=-2 +kerning first=354 second=1102 amount=-2 +kerning first=354 second=1104 amount=-3 +kerning first=354 second=1105 amount=-3 +kerning first=354 second=1107 amount=-2 +kerning first=354 second=1108 amount=-3 +kerning first=354 second=1109 amount=-3 +kerning first=354 second=1114 amount=-2 +kerning first=354 second=1116 amount=-2 +kerning first=354 second=1117 amount=-2 +kerning first=354 second=1118 amount=-2 +kerning first=354 second=1119 amount=-2 +kerning first=354 second=1169 amount=-2 +kerning first=354 second=1175 amount=-1 +kerning first=354 second=1177 amount=-2 +kerning first=354 second=1179 amount=-2 +kerning first=354 second=1187 amount=-2 +kerning first=354 second=1194 amount=-1 +kerning first=354 second=1195 amount=-3 +kerning first=354 second=1199 amount=-2 +kerning first=354 second=1203 amount=-1 +kerning first=354 second=1220 amount=-2 +kerning first=354 second=1224 amount=-2 +kerning first=354 second=1240 amount=-1 +kerning first=354 second=1241 amount=-3 +kerning first=354 second=1256 amount=-1 +kerning first=354 second=1257 amount=-3 +kerning first=354 second=1263 amount=-2 +kerning first=354 second=1298 amount=-4 +kerning first=354 second=8211 amount=-4 +kerning first=354 second=8212 amount=-4 +kerning first=354 second=8218 amount=-3 +kerning first=354 second=8222 amount=-3 +kerning first=354 second=8230 amount=-3 +kerning first=354 second=8249 amount=-3 +kerning first=354 second=8250 amount=-1 +kerning first=355 second=44 amount=-1 +kerning first=355 second=46 amount=-1 +kerning first=355 second=47 amount=-1 +kerning first=355 second=955 amount=-1 +kerning first=355 second=8218 amount=-1 +kerning first=355 second=8222 amount=-1 +kerning first=355 second=8230 amount=-1 +kerning first=356 second=44 amount=-3 +kerning first=356 second=45 amount=-4 +kerning first=356 second=46 amount=-3 +kerning first=356 second=47 amount=-4 +kerning first=356 second=110 amount=-2 +kerning first=356 second=65 amount=-6 +kerning first=356 second=67 amount=-1 +kerning first=356 second=114 amount=-2 +kerning first=356 second=71 amount=-1 +kerning first=356 second=74 amount=-5 +kerning first=356 second=79 amount=-1 +kerning first=356 second=81 amount=-1 +kerning first=356 second=83 amount=-1 +kerning first=356 second=97 amount=-2 +kerning first=356 second=99 amount=-3 +kerning first=356 second=100 amount=-3 +kerning first=356 second=101 amount=-3 +kerning first=356 second=103 amount=-2 +kerning first=356 second=109 amount=-2 +kerning first=356 second=111 amount=-3 +kerning first=356 second=112 amount=-2 +kerning first=356 second=113 amount=-3 +kerning first=356 second=115 amount=-3 +kerning first=356 second=117 amount=-2 +kerning first=356 second=118 amount=-2 +kerning first=356 second=119 amount=-2 +kerning first=356 second=120 amount=-1 +kerning first=356 second=121 amount=-2 +kerning first=356 second=122 amount=-1 +kerning first=356 second=171 amount=-3 +kerning first=356 second=173 amount=-4 +kerning first=356 second=187 amount=-1 +kerning first=356 second=193 amount=-6 +kerning first=356 second=194 amount=-6 +kerning first=356 second=196 amount=-6 +kerning first=356 second=197 amount=-6 +kerning first=356 second=198 amount=-6 +kerning first=356 second=199 amount=-1 +kerning first=356 second=210 amount=-1 +kerning first=356 second=211 amount=-1 +kerning first=356 second=212 amount=-1 +kerning first=356 second=213 amount=-1 +kerning first=356 second=214 amount=-1 +kerning first=356 second=216 amount=-1 +kerning first=356 second=224 amount=-2 +kerning first=356 second=225 amount=-2 +kerning first=356 second=226 amount=-2 +kerning first=356 second=227 amount=-2 +kerning first=356 second=228 amount=-2 +kerning first=356 second=229 amount=-2 +kerning first=356 second=230 amount=-2 +kerning first=356 second=231 amount=-3 +kerning first=356 second=232 amount=-3 +kerning first=356 second=233 amount=-3 +kerning first=356 second=234 amount=-3 +kerning first=356 second=235 amount=-3 +kerning first=356 second=240 amount=-3 +kerning first=356 second=241 amount=-2 +kerning first=356 second=242 amount=-3 +kerning first=356 second=243 amount=-3 +kerning first=356 second=244 amount=-3 +kerning first=356 second=245 amount=-3 +kerning first=356 second=246 amount=-3 +kerning first=356 second=248 amount=-3 +kerning first=356 second=249 amount=-2 +kerning first=356 second=250 amount=-2 +kerning first=356 second=251 amount=-2 +kerning first=356 second=252 amount=-2 +kerning first=356 second=253 amount=-2 +kerning first=356 second=256 amount=-6 +kerning first=356 second=257 amount=-2 +kerning first=356 second=258 amount=-6 +kerning first=356 second=259 amount=-2 +kerning first=356 second=260 amount=-6 +kerning first=356 second=261 amount=-2 +kerning first=356 second=262 amount=-1 +kerning first=356 second=263 amount=-3 +kerning first=356 second=266 amount=-1 +kerning first=356 second=267 amount=-3 +kerning first=356 second=268 amount=-1 +kerning first=356 second=269 amount=-3 +kerning first=356 second=271 amount=-3 +kerning first=356 second=273 amount=-3 +kerning first=356 second=275 amount=-3 +kerning first=356 second=277 amount=-3 +kerning first=356 second=279 amount=-3 +kerning first=356 second=281 amount=-3 +kerning first=356 second=283 amount=-3 +kerning first=356 second=286 amount=-1 +kerning first=356 second=287 amount=-2 +kerning first=356 second=288 amount=-1 +kerning first=356 second=289 amount=-2 +kerning first=356 second=290 amount=-1 +kerning first=356 second=291 amount=-2 +kerning first=356 second=324 amount=-2 +kerning first=356 second=326 amount=-2 +kerning first=356 second=328 amount=-2 +kerning first=356 second=331 amount=-2 +kerning first=356 second=332 amount=-1 +kerning first=356 second=333 amount=-3 +kerning first=356 second=334 amount=-1 +kerning first=356 second=335 amount=-3 +kerning first=356 second=336 amount=-1 +kerning first=356 second=337 amount=-3 +kerning first=356 second=338 amount=-1 +kerning first=356 second=339 amount=-3 kerning first=356 second=341 amount=-2 -kerning first=951 second=253 amount=-1 -kerning first=1207 second=1257 amount=-1 -kerning first=256 second=355 amount=-1 -kerning first=379 second=267 amount=-1 -kerning first=169 second=367 amount=-1 -kerning first=166 second=1185 amount=-3 -kerning first=8224 second=230 amount=-1 -kerning first=191 second=1038 amount=-2 -kerning first=68 second=8218 amount=-1 -kerning first=1094 second=945 amount=-1 -kerning first=338 second=116 amount=-1 -kerning first=916 second=268 amount=-2 -kerning first=237 second=368 amount=-2 -kerning first=357 second=972 amount=-1 -kerning first=35 second=187 amount=-1 -kerning first=167 second=8220 amount=-3 -kerning first=58 second=89 amount=-5 -kerning first=52 second=1079 amount=-1 -kerning first=313 second=369 amount=-1 -kerning first=78 second=251 amount=-1 -kerning first=928 second=216 amount=-2 -kerning first=1185 second=106 amount=1 -kerning first=238 second=1066 amount=-5 -kerning first=235 second=8221 amount=-1 -kerning first=961 second=118 amount=-1 -kerning first=381 second=1194 amount=-1 -kerning first=1036 second=283 amount=-2 -kerning first=175 second=943 amount=-1 -kerning first=178 second=252 amount=-1 -kerning first=59 second=266 amount=-2 -kerning first=62 second=39 amount=-3 -kerning first=1074 second=217 amount=-2 -kerning first=322 second=79 amount=-2 -kerning first=8361 second=949 amount=-1 -kerning first=8364 second=257 amount=-1 -kerning first=923 second=1195 amount=-1 -kerning first=931 second=371 amount=-1 -kerning first=105 second=103 amount=-1 -kerning first=1186 second=286 amount=-1 -kerning first=125 second=267 amount=-1 -kerning first=1041 second=230 amount=-1 -kerning first=63 second=214 amount=-2 -kerning first=1071 second=947 amount=-4 -kerning first=200 second=1101 amount=-1 -kerning first=318 second=945 amount=-1 -kerning first=86 second=116 amount=-1 -kerning first=83 second=356 amount=-1 -kerning first=934 second=1069 amount=-1 -kerning first=103 second=972 amount=-1 -kerning first=947 second=231 amount=-1 -kerning first=184 second=357 amount=-1 -kerning first=299 second=269 amount=-1 -kerning first=64 second=369 amount=-1 -kerning first=204 second=973 amount=-1 -kerning first=8366 second=1176 amount=-1 -kerning first=8372 second=362 amount=-2 -kerning first=902 second=332 amount=-2 -kerning first=1117 second=244 amount=-1 -kerning first=1194 second=1298 amount=-1 -kerning first=253 second=118 amount=-4 -kerning first=160 second=1194 amount=-2 -kerning first=163 second=370 amount=-2 -kerning first=276 second=283 amount=-1 -kerning first=8216 second=233 amount=-1 -kerning first=42 second=1256 amount=-2 -kerning first=45 second=382 amount=-2 -kerning first=1049 second=333 amount=-1 -kerning first=191 second=67 amount=-2 -kerning first=303 second=217 amount=-2 -kerning first=1081 second=949 amount=-1 -kerning first=1085 second=257 amount=-1 -kerning first=8369 second=8211 amount=-2 -kerning first=903 second=963 amount=-1 -kerning first=906 second=271 amount=-1 -kerning first=88 second=920 amount=-3 -kerning first=354 second=286 amount=-1 -kerning first=108 second=1257 amount=-1 -kerning first=1203 second=1090 amount=-2 -kerning first=1210 second=334 amount=-2 -kerning first=971 second=346 amount=-1 -kerning first=280 second=230 amount=-1 -kerning first=1051 second=964 amount=-3 -kerning first=1063 second=273 amount=-1 -kerning first=192 second=242 amount=-1 -kerning first=301 second=947 amount=-4 -kerning first=304 second=372 amount=-5 -kerning first=69 second=945 amount=-1 -kerning first=209 second=1262 amount=-2 -kerning first=912 second=219 amount=-2 -kerning first=1119 second=1108 amount=-1 -kerning first=1170 second=347 amount=-1 -kerning first=238 second=81 amount=-2 -kerning first=358 second=231 amount=-1 -kerning first=950 second=361 amount=-1 -kerning first=1219 second=965 amount=-1 -kerning first=1262 second=46 amount=-1 -kerning first=258 second=243 amount=-1 -kerning first=1026 second=288 amount=-2 -kerning first=278 second=1263 amount=-1 -kerning first=8222 second=336 amount=-1 -kerning first=53 second=269 amount=-1 -kerning first=1067 second=220 amount=-2 -kerning first=1096 second=362 amount=-2 -kerning first=910 second=1203 amount=-2 -kerning first=915 second=374 amount=-5 -kerning first=1176 second=289 amount=-1 -kerning first=356 second=1298 amount=-4 -kerning first=958 second=71 amount=-2 -kerning first=1263 second=221 amount=-5 -kerning first=262 second=193 amount=-1 -kerning first=376 second=8230 amount=-4 -kerning first=34 second=283 amount=-1 -kerning first=287 second=333 amount=-1 -kerning first=57 second=217 amount=-2 -kerning first=311 second=949 amount=-2 -kerning first=80 second=119 amount=-4 -kerning first=77 second=359 amount=-1 -kerning first=934 second=84 amount=-5 -kerning first=100 second=286 amount=-2 -kerning first=1184 second=234 amount=-2 -kerning first=363 second=334 amount=-2 -kerning first=960 second=246 amount=-1 -kerning first=123 second=218 amount=-2 -kerning first=1298 second=376 amount=-5 -kerning first=38 second=230 amount=-1 -kerning first=177 second=360 amount=-2 -kerning first=291 second=273 amount=-1 -kerning first=296 second=45 amount=-2 -kerning first=55 second=947 amount=-4 -kerning first=58 second=372 amount=-5 -kerning first=201 second=287 amount=-1 -kerning first=8363 second=365 amount=-1 -kerning first=936 second=259 amount=-1 -kerning first=941 second=34 amount=-1 -kerning first=247 second=121 amount=-1 -kerning first=370 second=46 amount=-1 -kerning first=124 second=373 amount=-4 -kerning first=36 second=1263 amount=-1 -kerning first=1039 second=336 amount=-2 -kerning first=297 second=220 amount=-2 -kerning first=205 second=232 amount=-1 -kerning first=322 second=362 amount=-2 -kerning first=8361 second=8217 amount=-3 -kerning first=317 second=1176 amount=-1 -kerning first=900 second=275 amount=-1 -kerning first=1203 second=99 amount=-1 -kerning first=251 second=71 amount=-2 -kerning first=371 second=221 amount=-5 -kerning first=968 second=111 amount=-1 -kerning first=965 second=351 amount=-1 -kerning first=164 second=83 amount=-1 -kerning first=274 second=233 amount=-1 -kerning first=43 second=333 amount=-1 -kerning first=186 second=245 amount=-1 -kerning first=298 second=375 amount=-1 -kerning first=63 second=949 amount=-1 -kerning first=1083 second=210 amount=-2 -kerning first=318 second=8211 amount=-2 -kerning first=8377 second=250 amount=-1 -kerning first=8370 second=941 amount=-1 -kerning first=89 second=194 amount=-5 -kerning first=1206 second=277 amount=-1 -kerning first=252 second=246 amount=-1 -kerning first=47 second=273 amount=-1 -kerning first=50 second=45 amount=-1 -kerning first=44 second=964 amount=-3 -kerning first=296 second=8249 amount=-3 -kerning first=305 second=85 amount=-2 -kerning first=1084 second=365 amount=-1 -kerning first=87 second=1108 amount=-3 -kerning first=236 second=34 amount=-3 -kerning first=941 second=8216 amount=-1 -kerning first=116 second=46 amount=-1 -kerning first=1220 second=224 amount=-1 -kerning first=8220 second=279 amount=-1 -kerning first=51 second=220 amount=-2 -kerning first=1065 second=171 amount=-1 -kerning first=191 second=350 amount=-1 -kerning first=1081 second=8217 amount=-3 -kerning first=214 second=275 amount=-1 -kerning first=916 second=87 amount=-5 -kerning first=94 second=289 amount=-1 -kerning first=354 second=1096 amount=-2 -kerning first=357 second=337 amount=-1 -kerning first=952 second=249 amount=-1 -kerning first=117 second=221 amount=-5 -kerning first=260 second=111 amount=-1 -kerning first=167 second=1177 amount=-1 -kerning first=170 second=363 amount=-1 -kerning first=8225 second=226 amount=-1 -kerning first=52 second=375 amount=-1 -kerning first=195 second=290 amount=-2 -kerning first=1069 second=88 amount=-3 -kerning first=313 second=210 amount=-1 -kerning first=69 second=8211 amount=-2 -kerning first=1095 second=941 amount=-1 -kerning first=1175 second=1241 amount=-1 -kerning first=238 second=364 amount=-2 -kerning first=358 second=968 amount=-1 -kerning first=361 second=277 amount=-1 -kerning first=956 second=199 amount=-2 -kerning first=1224 second=1079 amount=-1 -kerning first=258 second=1035 amount=-5 -kerning first=1299 second=89 amount=-5 -kerning first=1026 second=1098 amount=-3 -kerning first=168 second=8212 amount=-2 -kerning first=1036 second=101 amount=-2 -kerning first=50 second=8249 amount=-3 -kerning first=59 second=85 amount=-2 -kerning first=314 second=365 amount=-1 -kerning first=931 second=212 amount=-2 -kerning first=236 second=8216 amount=-3 -kerning first=365 second=224 amount=-1 -kerning first=958 second=354 amount=-5 -kerning first=37 second=336 amount=-2 -kerning first=1037 second=279 amount=-1 -kerning first=179 second=248 amount=-1 -kerning first=8365 second=253 amount=-1 -kerning first=83 second=197 amount=-1 -kerning first=1103 second=355 amount=-1 -kerning first=934 second=367 amount=-1 -kerning first=926 second=1185 amount=-3 -kerning first=103 second=337 amount=-1 -kerning first=960 second=1038 amount=-2 -kerning first=126 second=261 amount=-1 -kerning first=123 second=953 amount=-1 -kerning first=44 second=48 amount=-1 -kerning first=64 second=210 amount=-2 -kerning first=204 second=338 amount=-2 -kerning first=207 second=100 amount=-1 -kerning first=321 second=941 amount=-1 -kerning first=84 second=352 amount=-1 -kerning first=87 second=112 amount=-2 -kerning first=345 second=1241 amount=-1 -kerning first=928 second=8220 amount=-3 -kerning first=107 second=277 amount=-2 -kerning first=250 second=199 amount=-2 -kerning first=367 second=1079 amount=-1 -kerning first=163 second=211 amount=-2 -kerning first=273 second=339 amount=-1 -kerning first=276 second=101 amount=-1 -kerning first=185 second=353 amount=-1 -kerning first=188 second=113 amount=-1 -kerning first=300 second=263 amount=-1 -kerning first=65 second=365 amount=-1 -kerning first=1074 second=8221 amount=-3 -kerning first=1118 second=240 amount=-1 -kerning first=942 second=943 amount=-1 -kerning first=251 second=354 amount=-5 -kerning first=374 second=266 amount=-3 -kerning first=161 second=1184 amount=-5 -kerning first=164 second=366 amount=-2 -kerning first=274 second=970 amount=-1 -kerning first=8217 second=229 amount=-1 -kerning first=49 second=171 amount=-3 -kerning first=304 second=213 amount=-2 -kerning first=63 second=8217 amount=-3 -kerning first=1087 second=253 amount=-1 -kerning first=330 second=355 amount=-1 -kerning first=229 second=1185 amount=-1 -kerning first=252 second=1038 amount=-2 -kerning first=8218 second=1240 amount=-1 -kerning first=47 second=1078 amount=-1 -kerning first=1064 second=268 amount=-2 -kerning first=305 second=368 amount=-2 -kerning first=70 second=941 amount=-1 -kerning first=73 second=250 amount=-1 -kerning first=93 second=1241 amount=-1 -kerning first=96 second=187 amount=-1 -kerning first=230 second=8220 amount=-1 -kerning first=951 second=357 amount=-1 -kerning first=113 second=1079 amount=-1 -kerning first=376 second=1187 amount=-3 -kerning first=34 second=101 amount=-1 -kerning first=973 second=973 amount=-1 -kerning first=172 second=251 amount=-1 -kerning first=8224 second=332 amount=-2 -kerning first=54 second=263 amount=-1 -kerning first=303 second=8221 amount=-3 -kerning first=306 second=1066 amount=-5 -kerning first=338 second=240 amount=-1 -kerning first=916 second=370 amount=-2 -kerning first=240 second=252 amount=-1 -kerning first=237 second=943 amount=-1 -kerning first=357 second=1256 amount=-2 -kerning first=960 second=67 amount=-2 -kerning first=123 second=39 amount=-3 -kerning first=1298 second=217 amount=-2 -kerning first=35 second=279 amount=-1 -kerning first=1035 second=229 amount=-1 -kerning first=8225 second=963 amount=-1 -kerning first=8240 second=271 amount=-1 -kerning first=58 second=213 amount=-2 -kerning first=201 second=103 amount=-1 -kerning first=316 second=253 amount=-1 -kerning first=78 second=355 amount=-1 -kerning first=221 second=267 amount=-4 -kerning first=1185 second=230 amount=-1 -kerning first=124 second=214 amount=-2 -kerning first=1299 second=372 amount=-5 -kerning first=1036 second=1240 amount=-3 -kerning first=39 second=226 amount=-1 -kerning first=178 second=356 amount=-5 -kerning first=182 second=116 amount=-1 -kerning first=294 second=268 amount=-2 -kerning first=59 second=368 amount=-2 -kerning first=202 second=281 amount=-1 -kerning first=8364 second=361 amount=-1 -kerning first=8369 second=121 amount=-1 -kerning first=85 second=65 amount=-2 -kerning first=1107 second=243 amount=-1 -kerning first=105 second=227 amount=-1 -kerning first=125 second=369 amount=-1 -kerning first=1041 second=332 amount=-2 -kerning first=298 second=216 amount=-2 -kerning first=8250 second=1203 amount=-2 -kerning first=60 second=1066 amount=-5 -kerning first=57 second=8221 amount=-3 -kerning first=206 second=228 amount=-1 -kerning first=326 second=118 amount=-1 -kerning first=8377 second=71 amount=-2 -kerning first=86 second=240 amount=-1 -kerning first=83 second=916 amount=-1 -kerning first=223 second=1194 amount=-2 -kerning first=103 second=1256 amount=-2 -kerning first=947 second=333 amount=-1 -kerning first=252 second=67 amount=-2 -kerning first=165 second=79 amount=-2 -kerning first=1044 second=963 amount=-1 -kerning first=1048 second=271 amount=-1 -kerning first=184 second=920 amount=-2 -kerning first=1059 second=44 amount=-1 -kerning first=299 second=371 amount=-1 -kerning first=296 second=1195 amount=-1 -kerning first=204 second=1257 amount=-1 -kerning first=8378 second=246 amount=-1 -kerning first=905 second=218 amount=-2 -kerning first=1117 second=346 amount=-1 -kerning first=944 second=360 amount=-2 -kerning first=1202 second=964 amount=-2 -kerning first=1207 second=273 amount=-1 -kerning first=1220 second=45 amount=-2 -kerning first=253 second=242 amount=-1 -kerning first=163 second=945 amount=-1 -kerning first=276 second=1240 amount=-2 -kerning first=273 second=1262 amount=-2 -kerning first=8216 second=335 amount=-1 -kerning first=8220 second=97 amount=-1 -kerning first=48 second=268 amount=-2 -kerning first=1062 second=219 amount=-1 -kerning first=300 second=1069 amount=-1 -kerning first=306 second=81 amount=-2 -kerning first=1085 second=361 amount=-1 -kerning first=906 second=373 amount=-4 -kerning first=1118 second=1028 amount=-2 -kerning first=114 second=269 amount=-1 -kerning first=1223 second=220 amount=-2 -kerning first=280 second=332 amount=-2 -kerning first=8217 second=966 amount=-1 -kerning first=8221 second=275 amount=-1 -kerning first=52 second=216 amount=-2 -kerning first=1063 second=374 amount=-5 -kerning first=195 second=106 amount=1 -kerning first=75 second=118 amount=-3 -kerning first=336 second=193 amount=-2 -kerning first=908 second=1071 amount=-1 -kerning first=95 second=283 amount=-1 -kerning first=1175 second=233 amount=-1 -kerning first=358 second=333 amount=-1 -kerning first=1224 second=375 amount=-1 -kerning first=378 second=949 amount=-1 -kerning first=972 second=1299 amount=-1 -kerning first=175 second=119 amount=-4 -kerning first=50 second=1195 amount=-1 -kerning first=53 second=371 amount=-1 -kerning first=1070 second=84 amount=-2 -kerning first=193 second=1026 amount=-5 -kerning first=196 second=286 amount=-2 -kerning first=1099 second=246 amount=-1 -kerning first=239 second=360 amount=-2 -kerning first=242 second=120 amount=-2 -kerning first=365 second=45 amount=-2 -kerning first=1220 second=8249 amount=-3 -kerning first=1037 second=97 amount=-1 -kerning first=54 second=1069 amount=-1 -kerning first=60 second=81 amount=-2 -kerning first=1071 second=259 amount=-1 -kerning first=200 second=231 amount=-1 -kerning first=315 second=361 amount=-1 -kerning first=318 second=121 amount=-1 -kerning first=80 second=243 amount=-1 -kerning first=338 second=1028 amount=-2 -kerning first=1184 second=336 amount=-3 -kerning first=960 second=350 amount=-1 -kerning first=38 second=332 amount=-2 -kerning first=1035 second=966 amount=-1 -kerning first=180 second=244 amount=-1 -kerning first=291 second=374 amount=-5 -kerning first=8366 second=249 amount=-1 -kerning first=8363 second=940 amount=-1 -kerning first=84 second=193 amount=-6 -kerning first=221 second=1071 amount=-2 -kerning first=218 second=8230 amount=-1 -kerning first=345 second=233 amount=-1 -kerning first=928 second=1177 amount=-1 -kerning first=936 second=363 amount=-1 -kerning first=247 second=245 amount=-1 -kerning first=367 second=375 amount=-1 -kerning first=964 second=290 amount=-2 -kerning first=124 second=949 amount=-1 -kerning first=160 second=257 amount=-1 -kerning first=42 second=271 amount=-1 -kerning first=39 second=963 amount=-1 -kerning first=45 second=44 amount=-1 -kerning first=300 second=84 amount=-5 -kerning first=202 second=1090 amount=-3 -kerning first=205 second=334 amount=-2 -kerning first=325 second=246 amount=-1 -kerning first=900 second=376 amount=-5 -kerning first=931 second=8212 amount=-2 -kerning first=105 second=964 amount=-3 -kerning first=108 second=273 amount=-1 -kerning first=365 second=8249 amount=-3 -kerning first=968 second=235 amount=-1 -kerning first=274 second=335 amount=-1 -kerning first=46 second=219 amount=-1 -kerning first=183 second=1108 amount=-1 -kerning first=186 second=347 amount=-1 -kerning first=301 second=259 amount=-1 -kerning first=304 second=34 amount=-3 -kerning first=69 second=121 amount=-1 -kerning first=206 second=965 amount=-1 -kerning first=212 second=46 amount=-1 -kerning first=8377 second=354 amount=-5 -kerning first=8370 second=1118 amount=-1 -kerning first=908 second=86 amount=-2 -kerning first=86 second=1028 amount=-2 -kerning first=89 second=288 amount=-3 -kerning first=946 second=248 amount=-1 -kerning first=1219 second=171 amount=-3 -kerning first=252 second=350 amount=-1 -kerning first=162 second=1176 amount=-1 -kerning first=165 second=362 amount=-2 -kerning first=281 second=47 amount=-1 -kerning first=278 second=275 amount=-1 -kerning first=47 second=374 amount=-5 -kerning first=1064 second=87 amount=-5 -kerning first=190 second=289 amount=-1 -kerning first=187 second=1033 amount=-2 -kerning first=73 second=71 amount=-2 -kerning first=1084 second=940 amount=-1 -kerning first=213 second=221 amount=-3 -kerning first=8378 second=1038 amount=-2 -kerning first=905 second=953 amount=-1 -kerning first=93 second=233 amount=-1 -kerning first=910 second=261 amount=-4 -kerning first=113 second=375 amount=-1 -kerning first=1256 second=88 amount=-3 -kerning first=256 second=290 amount=-2 -kerning first=379 second=210 amount=-1 -kerning first=973 second=338 amount=-2 -kerning first=163 second=8211 amount=-2 -kerning first=1027 second=100 amount=-1 -kerning first=54 second=84 amount=-5 -kerning first=194 second=234 amount=-1 -kerning first=1065 second=262 amount=-1 -kerning first=306 second=364 amount=-2 -kerning first=74 second=246 amount=-1 -kerning first=214 second=376 amount=-5 -kerning first=332 second=1035 amount=-2 -kerning first=916 second=211 amount=-2 -kerning first=1174 second=339 amount=-1 -kerning first=952 second=353 amount=-1 -kerning first=955 second=113 amount=-1 -kerning first=260 second=235 amount=-1 -kerning first=35 second=97 amount=-1 -kerning first=55 second=259 amount=-1 -kerning first=58 second=34 amount=-3 -kerning first=304 second=8216 amount=-3 -kerning first=1095 second=1118 amount=-1 -kerning first=912 second=1184 amount=-5 -kerning first=1178 second=279 amount=-1 -kerning first=961 second=63 amount=-2 -kerning first=1299 second=213 amount=-2 -kerning first=36 second=275 amount=-1 -kerning first=39 second=47 amount=-2 -kerning first=1036 second=225 amount=-1 -kerning first=294 second=87 amount=-5 -kerning first=1067 second=1185 amount=-3 -kerning first=202 second=99 amount=-1 -kerning first=314 second=940 amount=-1 -kerning first=317 second=249 amount=-1 -kerning first=1099 second=1038 amount=-2 -kerning first=125 second=210 amount=-2 -kerning first=179 second=352 amount=-1 -kerning first=60 second=364 amount=-2 -kerning first=1068 second=8220 amount=-2 -kerning first=200 second=968 amount=-1 -kerning first=203 second=277 amount=-1 -kerning first=323 second=199 amount=-2 -kerning first=8365 second=357 amount=-1 -kerning first=8370 second=117 amount=-1 -kerning first=80 second=1035 amount=-5 -kerning first=901 second=89 amount=-5 -kerning first=249 second=113 amount=-1 -kerning first=372 second=38 amount=-1 -kerning first=369 second=263 amount=-1 -kerning first=126 second=365 amount=-1 -kerning first=1298 second=8221 amount=-3 -kerning first=299 second=212 amount=-2 -kerning first=8260 second=1194 amount=-2 -kerning first=58 second=8216 amount=-3 -kerning first=1080 second=252 amount=-1 -kerning first=207 second=224 amount=-1 -kerning first=321 second=1118 amount=-1 -kerning first=8378 second=67 amount=-2 -kerning first=902 second=266 amount=-2 -kerning first=905 second=39 amount=-3 -kerning first=124 second=8217 amount=-3 -kerning first=276 second=225 amount=-1 -kerning first=1049 second=267 amount=-1 -kerning first=48 second=87 amount=-5 -kerning first=297 second=1185 amount=-3 -kerning first=300 second=367 amount=-1 -kerning first=65 second=940 amount=-1 -kerning first=208 second=379 amount=-1 -kerning first=325 second=1038 amount=-2 -kerning first=906 second=214 amount=-2 -kerning first=354 second=226 amount=-2 -kerning first=1210 second=268 amount=-2 -kerning first=968 second=972 amount=-1 -kerning first=167 second=250 amount=-1 -kerning first=164 second=941 amount=-1 -kerning first=971 second=281 amount=-1 -kerning first=277 second=380 amount=-1 -kerning first=49 second=262 amount=-2 -kerning first=189 second=1241 amount=-1 -kerning first=192 second=187 amount=-1 -kerning first=298 second=8220 amount=-3 -kerning first=72 second=199 amount=-2 -kerning first=1087 second=357 amount=-1 -kerning first=1095 second=117 amount=-1 -kerning first=209 second=1079 amount=-1 -kerning first=215 second=89 amount=-5 -kerning first=92 second=339 amount=-1 -kerning first=95 second=101 amount=-1 -kerning first=1119 second=973 amount=-1 -kerning first=89 second=1098 amount=-2 -kerning first=112 second=955 amount=-1 -kerning first=1224 second=216 amount=-2 -kerning first=375 second=1066 amount=-5 -kerning first=1026 second=228 amount=-1 -kerning first=53 second=212 amount=-2 -kerning first=1064 second=370 amount=-2 -kerning first=196 second=102 amount=-2 -kerning first=305 second=943 amount=-1 -kerning first=310 second=252 amount=-1 -kerning first=70 second=1118 amount=-1 -kerning first=73 second=354 amount=-5 -kerning first=1099 second=67 amount=-2 -kerning first=923 second=79 amount=-2 -kerning first=96 second=279 amount=-1 -kerning first=93 second=970 amount=-1 -kerning first=1176 second=229 amount=-1 +kerning first=356 second=343 amount=-2 +kerning first=356 second=345 amount=-2 +kerning first=356 second=346 amount=-1 +kerning first=356 second=347 amount=-3 +kerning first=356 second=350 amount=-1 +kerning first=356 second=351 amount=-3 +kerning first=356 second=352 amount=-1 +kerning first=356 second=353 amount=-3 +kerning first=356 second=361 amount=-2 +kerning first=356 second=363 amount=-2 +kerning first=356 second=365 amount=-2 +kerning first=356 second=367 amount=-2 +kerning first=356 second=369 amount=-2 +kerning first=356 second=371 amount=-2 +kerning first=356 second=373 amount=-2 +kerning first=356 second=375 amount=-2 +kerning first=356 second=378 amount=-1 +kerning first=356 second=380 amount=-1 +kerning first=356 second=382 amount=-1 +kerning first=356 second=913 amount=-6 +kerning first=356 second=916 amount=-6 +kerning first=356 second=920 amount=-1 +kerning first=356 second=923 amount=-6 +kerning first=356 second=927 amount=-1 +kerning first=356 second=940 amount=-3 +kerning first=356 second=941 amount=-3 +kerning first=356 second=942 amount=-2 +kerning first=356 second=945 amount=-3 +kerning first=356 second=947 amount=-2 +kerning first=356 second=949 amount=-3 +kerning first=356 second=951 amount=-2 +kerning first=356 second=954 amount=-2 +kerning first=356 second=957 amount=-2 +kerning first=356 second=959 amount=-3 +kerning first=356 second=962 amount=-3 +kerning first=356 second=963 amount=-3 +kerning first=356 second=965 amount=-2 +kerning first=356 second=966 amount=-3 +kerning first=356 second=968 amount=-2 +kerning first=356 second=972 amount=-3 +kerning first=356 second=973 amount=-2 +kerning first=356 second=1028 amount=-1 +kerning first=356 second=1029 amount=-1 +kerning first=356 second=1032 amount=-5 +kerning first=356 second=1033 amount=-4 +kerning first=356 second=1040 amount=-6 +kerning first=356 second=1044 amount=-4 +kerning first=356 second=1051 amount=-4 +kerning first=356 second=1054 amount=-1 +kerning first=356 second=1057 amount=-1 +kerning first=356 second=1072 amount=-2 +kerning first=356 second=1074 amount=-2 +kerning first=356 second=1075 amount=-2 +kerning first=356 second=1077 amount=-3 +kerning first=356 second=1078 amount=-1 +kerning first=356 second=1079 amount=-2 +kerning first=356 second=1080 amount=-2 kerning first=356 second=1081 amount=-2 -kerning first=951 second=920 amount=-2 -kerning first=1220 second=1195 amount=-1 -kerning first=34 second=225 amount=-1 -kerning first=973 second=1257 amount=-1 -kerning first=172 second=355 amount=-1 -kerning first=176 second=115 amount=-1 -kerning first=287 second=267 amount=-1 -kerning first=8230 second=218 amount=-1 -kerning first=51 second=1185 amount=-3 -kerning first=54 second=367 amount=-1 -kerning first=74 second=1038 amount=-2 -kerning first=916 second=945 amount=-1 -kerning first=100 second=226 amount=-1 -kerning first=1174 second=1262 amount=-1 -kerning first=240 second=356 amount=-5 -kerning first=363 second=268 amount=-2 -kerning first=260 second=972 amount=-1 -kerning first=8240 second=373 amount=-4 -kerning first=52 second=8220 amount=-1 -kerning first=201 second=227 amount=-1 -kerning first=321 second=117 amount=-1 -kerning first=316 second=357 amount=-1 -kerning first=221 second=369 amount=-2 -kerning first=367 second=216 amount=-2 -kerning first=964 second=106 amount=1 -kerning first=121 second=1066 amount=-5 -kerning first=1036 second=962 amount=-2 -kerning first=182 second=240 amount=-1 -kerning first=289 second=1194 amount=-2 -kerning first=294 second=370 amount=-2 -kerning first=59 second=943 amount=-1 -kerning first=62 second=252 amount=-1 -kerning first=325 second=67 amount=-2 -kerning first=8369 second=245 amount=-1 -kerning first=900 second=217 amount=-2 -kerning first=219 second=8222 amount=-1 -kerning first=942 second=119 amount=-4 -kerning first=1186 second=963 amount=-1 -kerning first=365 second=1195 amount=-1 -kerning first=962 second=1026 amount=-5 -kerning first=965 second=286 amount=-2 -kerning first=161 second=253 amount=-1 -kerning first=43 second=267 amount=-1 -kerning first=901 second=372 amount=-5 -kerning first=1116 second=287 amount=-2 -kerning first=1206 second=219 amount=-1 -kerning first=369 second=1069 amount=-1 -kerning first=375 second=81 amount=-2 -kerning first=1048 second=373 amount=-4 -kerning first=70 second=117 amount=-1 -kerning first=8378 second=350 amount=-1 -kerning first=87 second=973 amount=-2 -kerning first=1168 second=232 amount=-1 -kerning first=948 second=244 amount=-1 -kerning first=113 second=216 amount=-2 -kerning first=256 second=106 amount=1 -kerning first=376 second=256 amount=-5 -kerning first=169 second=118 amount=-4 -kerning first=276 second=962 amount=-1 -kerning first=48 second=370 amount=-2 -kerning first=191 second=283 amount=-1 -kerning first=74 second=67 amount=-2 -kerning first=68 second=1044 amount=-1 -kerning first=1094 second=245 amount=-1 -kerning first=214 second=217 amount=-2 -kerning first=906 second=949 amount=-1 -kerning first=94 second=229 amount=-1 -kerning first=237 second=119 amount=-4 -kerning first=357 second=271 amount=-1 -kerning first=354 second=963 amount=-3 +kerning first=356 second=1082 amount=-2 +kerning first=356 second=1084 amount=-2 +kerning first=356 second=1085 amount=-2 +kerning first=356 second=1086 amount=-3 +kerning first=356 second=1087 amount=-2 +kerning first=356 second=1088 amount=-2 +kerning first=356 second=1089 amount=-3 +kerning first=356 second=1091 amount=-2 +kerning first=356 second=1092 amount=-3 +kerning first=356 second=1093 amount=-1 +kerning first=356 second=1094 amount=-2 +kerning first=356 second=1096 amount=-2 +kerning first=356 second=1097 amount=-2 +kerning first=356 second=1099 amount=-2 +kerning first=356 second=1100 amount=-2 +kerning first=356 second=1101 amount=-2 +kerning first=356 second=1102 amount=-2 +kerning first=356 second=1104 amount=-3 +kerning first=356 second=1105 amount=-3 +kerning first=356 second=1107 amount=-2 +kerning first=356 second=1108 amount=-3 +kerning first=356 second=1109 amount=-3 +kerning first=356 second=1114 amount=-2 +kerning first=356 second=1116 amount=-2 +kerning first=356 second=1117 amount=-2 +kerning first=356 second=1118 amount=-2 +kerning first=356 second=1119 amount=-2 +kerning first=356 second=1169 amount=-2 +kerning first=356 second=1175 amount=-1 +kerning first=356 second=1177 amount=-2 +kerning first=356 second=1179 amount=-2 +kerning first=356 second=1187 amount=-2 +kerning first=356 second=1194 amount=-1 +kerning first=356 second=1195 amount=-3 +kerning first=356 second=1199 amount=-2 +kerning first=356 second=1203 amount=-1 +kerning first=356 second=1220 amount=-2 +kerning first=356 second=1224 amount=-2 +kerning first=356 second=1240 amount=-1 +kerning first=356 second=1241 amount=-3 +kerning first=356 second=1256 amount=-1 +kerning first=356 second=1257 amount=-3 +kerning first=356 second=1263 amount=-2 +kerning first=356 second=1298 amount=-4 +kerning first=356 second=8211 amount=-4 +kerning first=356 second=8212 amount=-4 +kerning first=356 second=8218 amount=-3 +kerning first=356 second=8222 amount=-3 +kerning first=356 second=8230 amount=-3 +kerning first=356 second=8249 amount=-3 +kerning first=356 second=8250 amount=-1 +kerning first=359 second=44 amount=-1 +kerning first=359 second=46 amount=-1 +kerning first=359 second=47 amount=-1 +kerning first=359 second=955 amount=-1 +kerning first=359 second=8218 amount=-1 +kerning first=359 second=8222 amount=-1 +kerning first=359 second=8230 amount=-1 kerning first=360 second=44 amount=-1 -kerning first=254 second=1026 amount=-5 -kerning first=971 second=1090 amount=-3 -kerning first=1066 second=258 amount=-1 -kerning first=195 second=230 amount=-1 -kerning first=75 second=242 amount=-2 -kerning first=215 second=372 amount=-5 -kerning first=92 second=1262 amount=-2 -kerning first=95 second=1240 amount=-2 -kerning first=1175 second=335 amount=-1 -kerning first=361 second=219 amount=-2 -kerning first=950 second=1108 amount=-1 -kerning first=121 second=81 amount=-2 -kerning first=1299 second=34 amount=-3 -kerning first=1026 second=965 amount=-1 -kerning first=175 second=243 amount=-1 -kerning first=193 second=1263 amount=-1 -kerning first=8361 second=248 amount=-1 -kerning first=1099 second=350 amount=-1 -kerning first=915 second=1176 amount=-1 -kerning first=923 second=362 amount=-2 -kerning first=1176 second=966 amount=-1 -kerning first=1179 second=275 amount=-1 -kerning first=958 second=289 amount=-1 -kerning first=34 second=962 amount=-1 -kerning first=1037 second=221 amount=-5 -kerning first=1071 second=363 amount=-1 -kerning first=200 second=333 amount=-1 -kerning first=318 second=245 amount=-1 -kerning first=1103 second=290 amount=-2 -kerning first=223 second=257 amount=-1 -kerning first=916 second=8211 amount=-2 -kerning first=100 second=963 amount=-1 -kerning first=103 second=271 amount=-1 -kerning first=369 second=84 amount=-5 -kerning first=963 second=234 amount=-1 -kerning first=41 second=218 amount=-2 -kerning first=180 second=346 amount=-1 -kerning first=61 second=360 amount=-2 -kerning first=1073 second=1059 amount=-2 -kerning first=207 second=45 amount=-2 -kerning first=204 second=273 amount=-1 -kerning first=201 second=964 amount=-3 -kerning first=8372 second=113 amount=-1 -kerning first=8366 second=353 amount=-1 -kerning first=902 second=85 amount=-2 -kerning first=84 second=287 amount=-2 -kerning first=345 second=335 amount=-1 -kerning first=1194 second=377 amount=-1 -kerning first=247 second=347 amount=-1 -kerning first=160 second=361 amount=-1 -kerning first=1299 second=8216 amount=-3 -kerning first=163 second=121 amount=-1 -kerning first=42 second=373 amount=-4 -kerning first=1036 second=8250 amount=-2 -kerning first=182 second=1028 amount=-2 -kerning first=185 second=288 amount=-2 -kerning first=1081 second=248 amount=-1 -kerning first=325 second=350 amount=-1 -kerning first=88 second=232 amount=-2 -kerning first=354 second=47 amount=-4 -kerning first=108 second=374 amount=-5 -kerning first=1210 second=87 amount=-5 -kerning first=251 second=289 amount=-1 -kerning first=968 second=337 amount=-1 -kerning first=971 second=99 amount=-1 -kerning first=167 second=71 amount=-2 -kerning first=8211 second=379 amount=-2 -kerning first=49 second=83 amount=-1 -kerning first=1051 second=261 amount=-1 -kerning first=189 second=233 amount=-1 -kerning first=301 second=363 amount=-1 -kerning first=298 second=1177 amount=-1 -kerning first=69 second=245 amount=-1 -kerning first=209 second=375 amount=-1 -kerning first=330 second=290 amount=-2 -kerning first=1119 second=338 amount=-2 -kerning first=1170 second=100 amount=-1 -kerning first=950 second=112 amount=-2 -kerning first=946 second=352 amount=-1 -kerning first=1219 second=262 amount=-2 -kerning first=255 second=234 amount=-1 -kerning first=375 second=364 amount=-2 -kerning first=168 second=246 amount=-1 -kerning first=278 second=376 amount=-5 -kerning first=8222 second=89 amount=-4 -kerning first=1064 second=211 amount=-2 -kerning first=302 second=1059 amount=-2 -kerning first=299 second=8212 amount=-2 -kerning first=1096 second=113 amount=-1 -kerning first=207 second=8249 amount=-3 -kerning first=910 second=365 amount=-2 -kerning first=93 second=335 amount=-1 -kerning first=96 second=97 amount=-1 -kerning first=113 second=951 amount=2 -kerning first=34 second=46 amount=-1 -kerning first=1027 second=224 amount=-1 -kerning first=276 second=8250 amount=-1 -kerning first=8224 second=266 amount=-2 -kerning first=8230 second=39 amount=-1 -kerning first=1062 second=1184 amount=-2 -kerning first=1065 second=366 amount=-1 -kerning first=194 second=336 amount=-2 -kerning first=311 second=248 amount=-2 -kerning first=74 second=350 amount=-1 -kerning first=217 second=260 amount=-2 -kerning first=906 second=8217 amount=-3 -kerning first=94 second=966 amount=-1 -kerning first=363 second=87 amount=-5 -kerning first=1223 second=1185 amount=-3 -kerning first=260 second=337 amount=-1 -kerning first=380 second=940 amount=-1 -kerning first=35 second=221 amount=-5 -kerning first=1028 second=379 amount=-1 -kerning first=177 second=111 amount=-1 -kerning first=174 second=351 amount=-1 -kerning first=8240 second=214 amount=-2 -kerning first=55 second=363 amount=-1 -kerning first=52 second=1177 amount=-1 -kerning first=8363 second=116 amount=-1 -kerning first=78 second=290 amount=-2 -kerning first=221 second=210 amount=-3 -kerning first=928 second=250 amount=-1 -kerning first=956 second=1241 amount=-1 -kerning first=121 second=364 amount=-2 -kerning first=1224 second=8220 amount=-3 -kerning first=36 second=376 amount=-5 -kerning first=1039 second=89 amount=-5 -kerning first=175 second=1035 amount=-5 -kerning first=178 second=291 amount=-1 -kerning first=294 second=211 amount=-2 -kerning first=53 second=8212 amount=-2 -kerning first=56 second=1059 amount=-2 -kerning first=1074 second=251 amount=-1 -kerning first=317 second=353 amount=-1 -kerning first=322 second=113 amount=-1 -kerning first=1041 second=266 amount=-2 -kerning first=290 second=1184 amount=-1 -kerning first=63 second=248 amount=-1 -kerning first=206 second=171 amount=-3 -kerning first=326 second=63 amount=-2 -kerning first=8365 second=920 amount=-2 -kerning first=901 second=213 amount=-2 -kerning first=1116 second=103 amount=-2 -kerning first=947 second=267 amount=-1 -kerning first=369 second=367 amount=-1 -kerning first=162 second=249 amount=-1 -kerning first=126 second=940 amount=-1 -kerning first=41 second=953 amount=-1 -kerning first=1048 second=214 amount=-2 -kerning first=67 second=198 amount=-1 -kerning first=1080 second=356 amount=-5 -kerning first=1084 second=116 amount=-1 -kerning first=210 second=88 amount=-3 -kerning first=902 second=368 amount=-2 -kerning first=84 second=1097 amount=-2 -kerning first=87 second=338 amount=-2 -kerning first=1117 second=281 amount=-1 -kerning first=90 second=100 amount=-1 -kerning first=250 second=1241 amount=-1 -kerning first=253 second=187 amount=-1 -kerning first=367 second=8220 amount=-3 -kerning first=166 second=199 amount=-2 -kerning first=273 second=1079 amount=-1 -kerning first=8216 second=269 amount=-1 -kerning first=48 second=211 amount=-2 -kerning first=1049 second=369 amount=-1 -kerning first=185 second=1098 amount=-3 -kerning first=188 second=339 amount=-1 -kerning first=191 second=101 amount=-1 -kerning first=303 second=251 amount=-1 -kerning first=208 second=955 amount=-2 -kerning first=900 second=8221 amount=-3 -kerning first=903 second=1066 amount=-5 -kerning first=88 second=969 amount=-2 -kerning first=1210 second=370 amount=-2 -kerning first=257 second=102 amount=-1 -kerning first=374 second=943 amount=-2 -kerning first=968 second=1256 amount=-2 -kerning first=167 second=354 amount=-5 -kerning first=164 second=1118 amount=-1 -kerning first=280 second=266 amount=-2 -kerning first=283 second=39 amount=-1 -kerning first=49 second=366 amount=-2 -kerning first=46 second=1184 amount=-5 -kerning first=192 second=279 amount=-1 -kerning first=189 second=970 amount=-1 -kerning first=75 second=63 amount=-2 -kerning first=1087 second=920 amount=-2 -kerning first=215 second=213 amount=-2 -kerning first=912 second=253 amount=-1 -kerning first=95 second=225 amount=-1 -kerning first=1119 second=1257 amount=-1 -kerning first=238 second=115 amount=-1 -kerning first=358 second=267 amount=-1 -kerning first=112 second=1185 amount=-1 -kerning first=972 second=1083 amount=-1 -kerning first=168 second=1038 amount=-2 -kerning first=8218 second=947 amount=-2 -kerning first=8222 second=372 amount=-3 -kerning first=47 second=8218 amount=-4 -kerning first=1064 second=945 amount=-1 -kerning first=196 second=226 amount=-1 -kerning first=314 second=116 amount=-1 -kerning first=113 second=8220 amount=-3 -kerning first=37 second=89 amount=-5 -kerning first=287 second=369 amount=-1 -kerning first=57 second=251 amount=-1 -kerning first=214 second=8221 amount=-3 -kerning first=1103 second=106 amount=1 -kerning first=341 second=228 amount=-1 -kerning first=934 second=118 amount=-4 -kerning first=363 second=370 amount=-2 -kerning first=960 second=283 amount=-1 -kerning first=123 second=252 amount=-1 -kerning first=260 second=1256 amount=-2 -kerning first=38 second=266 amount=-2 -kerning first=41 second=39 amount=-3 -kerning first=283 second=8222 amount=-1 -kerning first=296 second=79 amount=-2 -kerning first=8240 second=949 amount=-1 -kerning first=8260 second=257 amount=-1 -kerning first=1073 second=359 amount=-1 -kerning first=316 second=920 amount=-2 -kerning first=84 second=103 amount=-2 -kerning first=964 second=230 amount=-1 -kerning first=42 second=214 amount=-2 -kerning first=1039 second=372 amount=-5 -kerning first=1036 second=947 amount=-3 -kerning first=178 second=1101 amount=-1 -kerning first=294 second=945 amount=-1 -kerning first=62 second=356 amount=-5 -kerning first=65 second=116 amount=-1 -kerning first=205 second=268 amount=-2 -kerning first=8364 second=1108 amount=-1 -kerning first=8369 second=347 amount=-1 -kerning first=903 second=81 amount=-2 -kerning first=942 second=243 amount=-1 -kerning first=1195 second=373 amount=-1 -kerning first=962 second=1263 amount=-1 -kerning first=161 second=357 amount=-1 -kerning first=164 second=117 amount=-1 -kerning first=274 second=269 amount=-1 -kerning first=43 second=369 amount=-1 -kerning first=183 second=973 amount=-1 -kerning first=1083 second=244 amount=-1 -kerning first=209 second=216 amount=-2 -kerning first=330 second=106 amount=1 -kerning first=8377 second=289 amount=-1 -kerning first=89 second=228 amount=-4 -kerning first=232 second=118 amount=-1 -kerning first=1219 second=83 amount=-1 -kerning first=252 second=283 amount=-1 -kerning first=168 second=67 amount=-2 -kerning first=278 second=217 amount=-2 -kerning first=50 second=79 amount=-2 -kerning first=1048 second=949 amount=-1 -kerning first=190 second=229 amount=-1 -kerning first=305 second=119 amount=-4 -kerning first=302 second=359 amount=-1 -kerning first=70 second=241 amount=-1 -kerning first=207 second=1195 amount=-1 -kerning first=327 second=1026 amount=-5 -kerning first=87 second=1257 amount=-3 -kerning first=1168 second=334 amount=-2 -kerning first=1117 second=1090 amount=-3 -kerning first=948 second=346 amount=-1 -kerning first=256 second=230 amount=-1 -kerning first=973 second=273 amount=-1 -kerning first=1027 second=45 amount=-2 -kerning first=169 second=242 amount=-1 -kerning first=970 second=964 amount=-2 -kerning first=276 second=947 amount=-4 -kerning first=8224 second=85 amount=-2 -kerning first=48 second=945 amount=-1 -kerning first=191 second=1240 amount=-2 -kerning first=188 second=1262 amount=-2 -kerning first=1085 second=1108 amount=-1 -kerning first=916 second=121 amount=-1 -kerning first=237 second=243 amount=-1 -kerning first=357 second=373 amount=-4 -kerning first=952 second=288 amount=-2 -kerning first=254 second=1263 amount=-1 -kerning first=1063 second=1176 amount=-1 -kerning first=195 second=332 amount=-2 -kerning first=313 second=244 amount=-1 -kerning first=78 second=106 amount=1 -kerning first=218 second=256 amount=-2 -kerning first=928 second=71 amount=-2 -kerning first=95 second=962 amount=-1 -kerning first=1178 second=221 amount=-2 -kerning first=355 second=8230 amount=-1 -kerning first=956 second=233 amount=-1 -kerning first=1224 second=1177 amount=-1 -kerning first=36 second=217 amount=-2 -kerning first=289 second=257 amount=-1 -kerning first=59 second=119 amount=-4 -kerning first=1064 second=8211 amount=-2 -kerning first=56 second=359 amount=-1 -kerning first=196 second=963 amount=-1 -kerning first=8361 second=352 amount=-1 -kerning first=76 second=1026 amount=-6 -kerning first=337 second=1090 amount=-1 -kerning first=931 second=246 amount=-1 -kerning first=1263 second=1059 amount=-2 -kerning first=37 second=372 amount=-5 -kerning first=1027 second=8249 amount=-3 -kerning first=1041 second=85 amount=-2 -kerning first=179 second=287 amount=-1 -kerning first=203 second=219 amount=-2 -kerning first=318 second=347 amount=-1 -kerning first=315 second=1108 amount=-1 -kerning first=901 second=34 amount=-3 -kerning first=223 second=361 amount=-1 -kerning first=103 second=373 amount=-4 -kerning first=963 second=336 amount=-2 -kerning first=271 second=220 amount=-2 -kerning first=184 second=232 amount=-1 -kerning first=296 second=362 amount=-2 -kerning first=8240 second=8217 amount=-3 -kerning first=291 second=1176 amount=-1 -kerning first=64 second=244 amount=-1 -kerning first=204 second=374 amount=-5 -kerning first=81 second=1298 amount=-1 -kerning first=1117 second=99 amount=-1 -kerning first=350 second=221 amount=-2 -kerning first=944 second=111 amount=-1 -kerning first=101 second=8230 amount=-1 -kerning first=250 second=233 amount=-1 -kerning first=367 second=1177 amount=-1 -kerning first=163 second=245 amount=-1 -kerning first=273 second=375 amount=-1 -kerning first=42 second=949 amount=-1 -kerning first=1049 second=210 amount=-2 -kerning first=294 second=8211 amount=-2 -kerning first=68 second=194 amount=-2 -kerning first=1081 second=352 amount=-1 -kerning first=211 second=84 amount=-2 -kerning first=903 second=364 amount=-2 -kerning first=88 second=334 amount=-3 -kerning first=1118 second=277 amount=-1 -kerning first=942 second=1035 amount=-5 -kerning first=1210 second=211 amount=-2 -kerning first=371 second=1059 amount=-2 -kerning first=280 second=85 amount=-2 -kerning first=8217 second=263 amount=-1 -kerning first=1051 second=365 amount=-1 -kerning first=189 second=335 amount=-1 -kerning first=192 second=97 amount=-1 -kerning first=69 second=347 amount=-1 -kerning first=215 second=34 amount=-3 -kerning first=901 second=8216 amount=-3 -kerning first=89 second=965 amount=-2 -kerning first=1170 second=224 amount=-1 -kerning first=1206 second=1184 amount=-2 -kerning first=1219 second=366 amount=-2 -kerning first=255 second=336 amount=-2 -kerning first=378 second=248 amount=-1 -kerning first=1026 second=171 amount=-3 -kerning first=972 second=378 amount=-1 -kerning first=168 second=350 amount=-1 -kerning first=8222 second=213 amount=-1 -kerning first=47 second=1176 amount=-1 -kerning first=50 second=362 amount=-2 -kerning first=1048 second=8217 amount=-3 -kerning first=190 second=966 amount=-1 -kerning first=193 second=275 amount=-1 -kerning first=73 second=289 amount=-1 -kerning first=915 second=249 amount=-1 -kerning first=910 second=940 amount=-4 -kerning first=96 second=221 amount=-5 -kerning first=236 second=351 amount=-1 -kerning first=239 second=111 amount=-1 -kerning first=113 second=1177 amount=-1 -kerning first=1034 second=88 amount=-2 -kerning first=172 second=290 amount=-2 -kerning first=287 second=210 amount=-2 -kerning first=8224 second=368 amount=-2 -kerning first=48 second=8211 amount=-2 -kerning first=1065 second=941 amount=-1 -kerning first=77 second=234 amount=-1 -kerning first=1097 second=1241 amount=-1 -kerning first=338 second=277 amount=-1 -kerning first=926 second=199 amount=-2 -kerning first=237 second=1035 amount=-5 -kerning first=240 second=291 amount=-1 -kerning first=363 second=211 amount=-2 -kerning first=952 second=1098 amount=-3 -kerning first=955 second=339 amount=-1 -kerning first=117 second=1059 amount=-2 -kerning first=960 second=101 amount=-1 -kerning first=114 second=8212 amount=-1 -kerning first=1298 second=251 amount=-1 -kerning first=38 second=85 amount=-2 -kerning first=1035 second=263 amount=-1 -kerning first=177 second=235 amount=-1 -kerning first=8225 second=1066 amount=-5 -kerning first=8363 second=240 amount=-1 -kerning first=1106 second=102 amount=-1 -kerning first=215 second=8216 amount=-3 -kerning first=928 second=354 amount=-5 -kerning first=95 second=8250 amount=-1 -kerning first=361 second=1184 amount=-5 -kerning first=956 second=970 amount=-1 -kerning first=124 second=248 amount=-1 -kerning first=39 second=260 amount=-3 -kerning first=1039 second=213 amount=-2 -kerning first=1074 second=355 amount=-1 -kerning first=1078 second=115 amount=-1 -kerning first=205 second=87 amount=-5 -kerning first=931 second=1038 amount=-2 -kerning first=105 second=261 amount=-1 +kerning first=360 second=46 amount=-1 +kerning first=360 second=65 amount=-2 +kerning first=360 second=193 amount=-2 +kerning first=360 second=194 amount=-2 +kerning first=360 second=196 amount=-2 +kerning first=360 second=197 amount=-2 +kerning first=360 second=198 amount=-2 +kerning first=360 second=256 amount=-2 +kerning first=360 second=258 amount=-2 +kerning first=360 second=260 amount=-2 +kerning first=360 second=913 amount=-2 +kerning first=360 second=916 amount=-2 +kerning first=360 second=923 amount=-2 +kerning first=360 second=1033 amount=-1 +kerning first=360 second=1040 amount=-2 +kerning first=360 second=1044 amount=-1 +kerning first=360 second=1051 amount=-1 +kerning first=360 second=1298 amount=-1 +kerning first=360 second=8218 amount=-1 +kerning first=360 second=8222 amount=-1 +kerning first=360 second=8230 amount=-1 +kerning first=362 second=44 amount=-1 +kerning first=362 second=46 amount=-1 +kerning first=362 second=65 amount=-2 +kerning first=362 second=193 amount=-2 +kerning first=362 second=194 amount=-2 +kerning first=362 second=196 amount=-2 +kerning first=362 second=197 amount=-2 +kerning first=362 second=198 amount=-2 +kerning first=362 second=256 amount=-2 +kerning first=362 second=258 amount=-2 +kerning first=362 second=260 amount=-2 +kerning first=362 second=913 amount=-2 +kerning first=362 second=916 amount=-2 +kerning first=362 second=923 amount=-2 +kerning first=362 second=1033 amount=-1 +kerning first=362 second=1040 amount=-2 +kerning first=362 second=1044 amount=-1 +kerning first=362 second=1051 amount=-1 +kerning first=362 second=1298 amount=-1 kerning first=362 second=8218 amount=-1 -kerning first=965 second=226 amount=-1 -kerning first=267 second=1078 amount=-1 -kerning first=43 second=210 amount=-2 -kerning first=1041 second=368 amount=-2 -kerning first=183 second=338 amount=-2 -kerning first=186 second=100 amount=-1 -kerning first=298 second=250 amount=-1 -kerning first=63 second=352 amount=-1 -kerning first=206 second=262 amount=-2 -kerning first=323 second=1241 amount=-1 -kerning first=86 second=277 amount=-1 -kerning first=1116 second=227 amount=-1 -kerning first=352 second=89 amount=-2 -kerning first=246 second=1098 amount=-1 -kerning first=249 second=339 amount=-1 -kerning first=252 second=101 amount=-1 -kerning first=372 second=251 amount=-2 -kerning first=165 second=113 amount=-1 -kerning first=162 second=353 amount=-1 -kerning first=44 second=365 amount=-1 -kerning first=1044 second=1066 amount=-2 -kerning first=1084 second=240 amount=-1 -kerning first=331 second=102 amount=-1 -kerning first=8378 second=283 amount=-1 -kerning first=905 second=252 amount=-1 -kerning first=902 second=943 amount=-1 -kerning first=1194 second=8222 amount=-1 -kerning first=1220 second=79 amount=-2 -kerning first=253 second=279 amount=-1 -kerning first=250 second=970 amount=-1 -kerning first=42 second=8217 amount=-3 -kerning first=191 second=225 amount=-1 -kerning first=303 second=355 amount=-1 -kerning first=306 second=115 amount=-1 -kerning first=357 second=214 amount=-2 -kerning first=1210 second=945 amount=-1 -kerning first=280 second=368 amount=-2 -kerning first=8225 second=81 amount=-2 -kerning first=52 second=250 amount=-1 -kerning first=49 second=941 amount=-1 -kerning first=72 second=1241 amount=-1 -kerning first=75 second=187 amount=-2 -kerning first=209 second=8220 amount=-3 -kerning first=912 second=357 amount=-1 -kerning first=92 second=1079 amount=-1 -kerning first=1175 second=269 amount=-1 -kerning first=358 second=369 amount=-1 -kerning first=950 second=973 amount=-1 -kerning first=278 second=8221 amount=-3 -kerning first=199 second=90 amount=-1 -kerning first=314 second=240 amount=-1 -kerning first=1099 second=283 amount=-1 -kerning first=337 second=382 amount=-1 -kerning first=915 second=1044 amount=-5 -kerning first=931 second=67 amount=-2 -kerning first=356 second=8222 amount=-3 -kerning first=365 second=79 amount=-2 -kerning first=958 second=229 amount=-1 -kerning first=1263 second=359 amount=-1 -kerning first=37 second=213 amount=-2 -kerning first=1027 second=1195 amount=-1 -kerning first=179 second=103 amount=-1 -kerning first=57 second=355 amount=-1 -kerning first=60 second=115 amount=-1 -kerning first=200 second=267 amount=-1 -kerning first=1068 second=1046 amount=-2 -kerning first=1103 second=230 amount=-1 -kerning first=934 second=242 amount=-1 -kerning first=103 second=214 amount=-2 -kerning first=240 second=1101 amount=-1 -kerning first=363 second=945 amount=-1 -kerning first=960 second=1240 amount=-2 -kerning first=955 second=1262 amount=-2 -kerning first=123 second=356 amount=-5 -kerning first=126 second=116 amount=-1 -kerning first=38 second=368 amount=-2 -kerning first=1035 second=1069 amount=-1 -kerning first=177 second=972 amount=-1 -kerning first=180 second=281 amount=-1 -kerning first=1044 second=81 amount=-1 -kerning first=8260 second=361 amount=-1 -kerning first=1076 second=243 amount=-1 -kerning first=8363 second=1028 amount=-2 -kerning first=8366 second=288 amount=-2 -kerning first=84 second=227 amount=-2 -kerning first=221 second=1169 amount=-3 -kerning first=345 second=269 amount=-1 -kerning first=964 second=332 amount=-2 -kerning first=273 second=216 amount=-2 -kerning first=36 second=8221 amount=-3 -kerning first=185 second=228 amount=-1 -kerning first=300 second=118 amount=-4 -kerning first=65 second=240 amount=-1 -kerning first=202 second=1194 amount=-2 -kerning first=205 second=370 amount=-2 -kerning first=325 second=283 amount=-1 -kerning first=102 second=8222 amount=-2 -kerning first=251 second=229 amount=-1 -kerning first=371 second=359 amount=-1 -kerning first=374 second=119 amount=-2 -kerning first=965 second=963 amount=-1 -kerning first=968 second=271 amount=-1 -kerning first=161 second=920 amount=-2 -kerning first=274 second=371 amount=-1 -kerning first=46 second=253 amount=-1 -kerning first=183 second=1257 amount=-1 -kerning first=1083 second=346 amount=-1 -kerning first=330 second=230 amount=-1 -kerning first=904 second=360 amount=-2 -kerning first=1119 second=273 amount=-1 -kerning first=1170 second=45 amount=-2 -kerning first=347 second=947 amount=-1 -kerning first=352 second=372 amount=-2 -kerning first=946 second=287 amount=-1 -kerning first=249 second=1262 amount=-2 -kerning first=252 second=1240 amount=-2 -kerning first=8222 second=34 amount=-1 -kerning first=1064 second=121 amount=-1 -kerning first=305 second=243 amount=-1 -kerning first=70 second=343 amount=-1 -kerning first=1084 second=1028 amount=-2 -kerning first=327 second=1263 amount=-1 -kerning first=93 second=269 amount=-1 -kerning first=1171 second=220 amount=-2 -kerning first=951 second=232 amount=-1 -kerning first=1220 second=362 amount=-2 -kerning first=256 second=332 amount=-2 -kerning first=379 second=244 amount=-1 -kerning first=973 second=374 amount=-5 -kerning first=172 second=106 amount=1 -kerning first=54 second=118 amount=-4 -kerning first=191 second=962 amount=-1 -kerning first=74 second=283 amount=-1 -kerning first=1097 second=233 amount=-1 -kerning first=916 second=245 amount=-1 -kerning first=357 second=949 amount=-1 -kerning first=117 second=359 amount=-1 -kerning first=1210 second=8211 amount=-2 -kerning first=260 second=271 amount=-1 -kerning first=1035 second=84 amount=-5 -kerning first=170 second=1026 amount=-5 -kerning first=174 second=286 amount=-2 -kerning first=8225 second=364 amount=-2 -kerning first=198 second=218 amount=-2 -kerning first=78 second=230 amount=-1 -kerning first=221 second=120 amount=-2 -kerning first=342 second=45 amount=-1 -kerning first=95 second=947 amount=-4 -kerning first=1170 second=8249 amount=-3 -kerning first=956 second=335 amount=-1 -kerning first=381 second=1108 amount=-1 -kerning first=1036 second=259 amount=-1 -kerning first=1039 second=34 amount=-3 -kerning first=178 second=231 amount=-1 -kerning first=289 second=361 amount=-1 -kerning first=294 second=121 amount=-1 -kerning first=8222 second=8216 amount=-1 -kerning first=59 second=243 amount=-1 -kerning first=314 second=1028 amount=-2 -kerning first=317 second=288 amount=-2 -kerning first=76 second=1263 amount=-1 -kerning first=931 second=350 amount=-1 -kerning first=365 second=362 amount=-2 -kerning first=958 second=966 amount=-1 -kerning first=962 second=275 amount=-1 -kerning first=125 second=244 amount=-1 -kerning first=298 second=71 amount=-2 -kerning first=206 second=83 amount=-1 -kerning first=323 second=233 amount=-1 -kerning first=103 second=949 amount=-1 -kerning first=243 second=1299 amount=-1 -kerning first=363 second=8211 amount=-2 +kerning first=362 second=8222 amount=-1 +kerning first=362 second=8230 amount=-1 +kerning first=364 second=44 amount=-1 +kerning first=364 second=46 amount=-1 +kerning first=364 second=65 amount=-2 +kerning first=364 second=193 amount=-2 +kerning first=364 second=194 amount=-2 +kerning first=364 second=196 amount=-2 +kerning first=364 second=197 amount=-2 +kerning first=364 second=198 amount=-2 +kerning first=364 second=256 amount=-2 +kerning first=364 second=258 amount=-2 +kerning first=364 second=260 amount=-2 +kerning first=364 second=913 amount=-2 +kerning first=364 second=916 amount=-2 +kerning first=364 second=923 amount=-2 +kerning first=364 second=1033 amount=-1 +kerning first=364 second=1040 amount=-2 +kerning first=364 second=1044 amount=-1 +kerning first=364 second=1051 amount=-1 +kerning first=364 second=1298 amount=-1 +kerning first=364 second=8218 amount=-1 +kerning first=364 second=8222 amount=-1 +kerning first=364 second=8230 amount=-1 +kerning first=366 second=44 amount=-1 +kerning first=366 second=46 amount=-1 +kerning first=366 second=65 amount=-2 +kerning first=366 second=193 amount=-2 +kerning first=366 second=194 amount=-2 +kerning first=366 second=196 amount=-2 +kerning first=366 second=197 amount=-2 +kerning first=366 second=198 amount=-2 +kerning first=366 second=256 amount=-2 +kerning first=366 second=258 amount=-2 +kerning first=366 second=260 amount=-2 +kerning first=366 second=913 amount=-2 +kerning first=366 second=916 amount=-2 +kerning first=366 second=923 amount=-2 +kerning first=366 second=1033 amount=-1 +kerning first=366 second=1040 amount=-2 +kerning first=366 second=1044 amount=-1 kerning first=366 second=1051 amount=-1 -kerning first=1044 second=364 amount=-1 -kerning first=180 second=1090 amount=-3 -kerning first=184 second=334 amount=-2 -kerning first=299 second=246 amount=-1 -kerning first=64 second=346 amount=-1 -kerning first=1080 second=291 amount=-1 -kerning first=8366 second=1098 amount=-3 -kerning first=8372 second=339 amount=-1 -kerning first=8378 second=101 amount=-1 -kerning first=87 second=273 amount=-3 -kerning first=90 second=45 amount=-3 -kerning first=342 second=8249 amount=-1 -kerning first=944 second=235 amount=-1 -kerning first=250 second=335 amount=-1 -kerning first=253 second=97 amount=-1 -kerning first=160 second=1108 amount=-1 -kerning first=163 second=347 amount=-1 -kerning first=276 second=259 amount=-1 -kerning first=279 second=34 amount=-1 -kerning first=48 second=121 amount=-1 -kerning first=1039 second=8216 amount=-3 -kerning first=185 second=965 amount=-1 -kerning first=65 second=1028 amount=-2 -kerning first=906 second=248 amount=-1 -kerning first=91 second=220 amount=-2 -kerning first=354 second=260 amount=-6 -kerning first=108 second=1176 amount=-1 -kerning first=1195 second=8217 amount=-1 -kerning first=251 second=966 amount=-1 -kerning first=254 second=275 amount=-1 -kerning first=167 second=289 amount=-1 -kerning first=52 second=71 amount=-2 -kerning first=1051 second=940 amount=-1 -kerning first=1063 second=249 amount=-1 -kerning first=192 second=221 amount=-5 -kerning first=304 second=351 amount=-1 -kerning first=72 second=233 amount=-1 -kerning first=209 second=1177 amount=-1 -kerning first=92 second=375 amount=-1 -kerning first=358 second=210 amount=-2 -kerning first=950 second=338 amount=-2 -kerning first=1219 second=941 amount=-1 -kerning first=1224 second=250 amount=-1 -kerning first=1026 second=262 amount=-2 -kerning first=53 second=246 amount=-1 -kerning first=1067 second=199 amount=-2 -kerning first=193 second=376 amount=-5 -kerning first=305 second=1035 amount=-5 -kerning first=310 second=291 amount=-1 -kerning first=1096 second=339 amount=-1 -kerning first=1099 second=101 amount=-1 -kerning first=910 second=1117 amount=-3 -kerning first=923 second=113 amount=-1 -kerning first=915 second=353 amount=-1 -kerning first=1176 second=263 amount=-1 -kerning first=239 second=235 amount=-1 -kerning first=356 second=1179 amount=-2 -kerning first=34 second=259 amount=-1 -kerning first=37 second=34 amount=-3 -kerning first=279 second=8216 amount=-1 -kerning first=8224 second=943 amount=-1 -kerning first=8230 second=252 amount=-1 -kerning first=1068 second=354 amount=-5 -kerning first=191 second=8250 amount=-1 -kerning first=77 second=336 amount=-2 -kerning first=1184 second=213 amount=-3 -kerning first=357 second=8217 amount=-3 -kerning first=960 second=225 amount=-1 -kerning first=1298 second=355 amount=-1 -kerning first=268 second=87 amount=-1 -kerning first=1035 second=367 amount=-1 -kerning first=177 second=337 amount=-1 -kerning first=180 second=99 amount=-1 -kerning first=291 second=249 amount=-1 -kerning first=61 second=111 amount=-1 -kerning first=58 second=351 amount=-1 -kerning first=201 second=261 amount=-1 -kerning first=198 second=953 amount=-1 -kerning first=339 second=1078 amount=-2 -kerning first=247 second=100 amount=-1 -kerning first=367 second=250 amount=-1 -kerning first=961 second=380 amount=-1 -kerning first=124 second=352 amount=-1 -kerning first=1033 second=8220 amount=-2 -kerning first=178 second=968 amount=-1 -kerning first=182 second=277 amount=-1 -kerning first=297 second=199 amount=-2 -kerning first=59 second=1035 amount=-5 -kerning first=62 second=291 amount=-1 -kerning first=205 second=211 amount=-2 -kerning first=322 second=339 amount=-1 -kerning first=8364 second=973 amount=-1 -kerning first=325 second=101 amount=-1 -kerning first=900 second=251 amount=-1 -kerning first=317 second=1098 amount=-3 -kerning first=343 second=955 amount=-3 -kerning first=105 second=365 amount=-1 -kerning first=1186 second=1066 amount=-2 -kerning first=274 second=212 amount=-2 -kerning first=37 second=8216 amount=-3 -kerning first=1041 second=943 amount=-1 -kerning first=186 second=224 amount=-1 -kerning first=298 second=354 amount=-5 -kerning first=203 second=1184 amount=-5 -kerning first=206 second=366 amount=-2 -kerning first=323 second=970 amount=-1 -kerning first=8377 second=229 amount=-1 -kerning first=86 second=378 amount=-2 -kerning first=89 second=171 amount=-3 -kerning first=232 second=63 amount=-2 -kerning first=103 second=8217 amount=-3 -kerning first=946 second=103 amount=-1 -kerning first=252 second=225 amount=-1 -kerning first=375 second=115 amount=-1 -kerning first=271 second=1185 amount=-3 -kerning first=47 second=249 amount=-1 -kerning first=299 second=1038 amount=-2 -kerning first=1080 second=1101 amount=-1 -kerning first=8378 second=1240 amount=-2 -kerning first=8372 second=1262 amount=-2 -kerning first=905 second=356 amount=-5 -kerning first=87 second=1078 amount=-1 -kerning first=1168 second=268 amount=-2 -kerning first=944 second=972 amount=-1 -kerning first=948 second=281 amount=-1 -kerning first=113 second=250 amount=-1 -kerning first=166 second=1241 amount=-1 -kerning first=169 second=187 amount=-1 -kerning first=273 second=8220 amount=-3 -kerning first=51 second=199 amount=-2 -kerning first=188 second=1079 amount=-1 -kerning first=194 second=89 amount=-5 -kerning first=1085 second=973 amount=-1 -kerning first=74 second=101 amount=-1 -kerning first=214 second=251 amount=-1 -kerning first=332 second=381 amount=-1 -kerning first=94 second=263 amount=-1 -kerning first=1174 second=216 amount=-1 -kerning first=351 second=8221 amount=-1 -kerning first=952 second=228 amount=-1 -kerning first=1257 second=118 amount=-1 -kerning first=380 second=240 amount=-1 -kerning first=971 second=1194 amount=-2 -kerning first=280 second=943 amount=-1 -kerning first=52 second=354 amount=-5 -kerning first=49 second=1118 amount=-1 -kerning first=195 second=266 amount=-2 -kerning first=198 second=39 amount=-3 -kerning first=72 second=970 amount=-1 -kerning first=75 second=279 amount=-2 -kerning first=912 second=920 amount=-2 -kerning first=1170 second=1195 amount=-1 -kerning first=361 second=253 amount=-1 -kerning first=950 second=1257 amount=-1 -kerning first=121 second=115 amount=-1 -kerning first=8226 second=360 amount=-2 -kerning first=8249 second=120 amount=-1 -kerning first=53 second=1038 amount=-2 -kerning first=310 second=1101 amount=-1 -kerning first=8361 second=287 amount=-1 -kerning first=1096 second=1262 amount=-2 -kerning first=1099 second=1240 amount=-2 -kerning first=1176 second=1069 amount=-1 -kerning first=239 second=972 amount=-1 -kerning first=1186 second=81 amount=-1 -kerning first=179 second=227 amount=-1 -kerning first=200 second=369 amount=-1 -kerning first=315 second=973 amount=-1 -kerning first=8365 second=232 amount=-1 -kerning first=80 second=381 amount=-1 -kerning first=1103 second=332 amount=-2 -kerning first=97 second=8221 amount=-1 -kerning first=100 second=1066 amount=-5 -kerning first=369 second=118 amount=-4 -kerning first=960 second=962 amount=-1 -kerning first=126 second=240 amount=-1 -kerning first=38 second=943 amount=-1 -kerning first=41 second=252 amount=-1 -kerning first=177 second=1256 amount=-2 -kerning first=299 second=67 amount=-2 -kerning first=207 second=79 amount=-2 -kerning first=902 second=119 amount=-4 -kerning first=84 second=328 amount=-2 -kerning first=936 second=1026 amount=-5 -kerning first=967 second=218 amount=-2 -kerning first=300 second=242 amount=-1 -kerning first=62 second=1101 amount=-1 -kerning first=1081 second=287 amount=-1 -kerning first=205 second=945 amount=-1 -kerning first=322 second=1262 amount=-2 -kerning first=325 second=1240 amount=-2 -kerning first=88 second=268 amount=-3 -kerning first=1118 second=219 amount=-2 -kerning first=354 second=81 amount=-1 -kerning first=1195 second=1175 amount=-1 -kerning first=1210 second=121 amount=-1 -kerning first=374 second=243 amount=-4 -kerning first=968 second=373 amount=-4 -kerning first=46 second=357 amount=-1 -kerning first=49 second=117 amount=-1 -kerning first=189 second=269 amount=-1 -kerning first=1087 second=232 amount=-1 -kerning first=330 second=332 amount=-2 -kerning first=8377 second=966 amount=-1 -kerning first=92 second=216 amount=-2 -kerning first=1119 second=374 amount=-5 -kerning first=115 second=118 amount=-1 -kerning first=1224 second=71 amount=-2 -kerning first=252 second=962 amount=-1 -kerning first=966 second=8230 amount=-1 -kerning first=1026 second=83 amount=-1 -kerning first=168 second=283 amount=-1 -kerning first=8218 second=363 amount=-1 -kerning first=47 second=1044 amount=-4 -kerning first=53 second=67 amount=-2 -kerning first=1064 second=245 amount=-1 -kerning first=193 second=217 amount=-2 -kerning first=73 second=229 amount=-1 -kerning first=337 second=44 amount=-1 -kerning first=93 second=371 amount=-1 -kerning first=90 second=1195 amount=-1 -kerning first=1176 second=84 amount=-5 -kerning first=236 second=286 amount=-2 -kerning first=951 second=334 amount=-2 -kerning first=948 second=1090 amount=-3 -kerning first=376 second=1107 amount=-3 -kerning first=172 second=230 amount=-1 -kerning first=282 second=360 amount=-2 -kerning first=54 second=242 amount=-1 -kerning first=191 second=947 amount=-4 -kerning first=194 second=372 amount=-5 -kerning first=311 second=287 amount=-2 -kerning first=74 second=1240 amount=-2 -kerning first=1097 second=335 amount=-1 -kerning first=338 second=219 amount=-2 -kerning first=916 second=347 amount=-1 -kerning first=94 second=1069 amount=-1 -kerning first=100 second=81 amount=-2 -kerning first=240 second=231 amount=-1 -kerning first=363 second=121 amount=-1 -kerning first=952 second=965 amount=-1 -kerning first=120 second=243 amount=-2 -kerning first=260 second=373 amount=-4 -kerning first=170 second=1263 amount=-1 -kerning first=8240 second=248 amount=-1 -kerning first=316 second=232 amount=-1 -kerning first=78 second=332 amount=-2 -kerning first=221 second=244 amount=-4 -kerning first=928 second=289 amount=-1 -kerning first=920 second=1033 amount=-1 -kerning first=367 second=71 amount=-2 -kerning first=1299 second=351 amount=-1 -kerning first=1036 second=363 amount=-1 -kerning first=178 second=333 amount=-1 -kerning first=294 second=245 amount=-1 -kerning first=1074 second=290 amount=-2 -kerning first=202 second=257 amount=-1 -kerning first=8364 second=338 amount=-2 -kerning first=8369 second=100 amount=-1 -kerning first=85 second=44 amount=-1 -kerning first=346 second=84 amount=-1 -kerning first=1186 second=364 amount=-1 -kerning first=242 second=1090 amount=-1 -kerning first=962 second=376 amount=-5 -kerning first=125 second=346 amount=-1 -kerning first=270 second=258 amount=-2 -kerning first=40 second=360 amount=-2 -kerning first=1037 second=1059 amount=-2 -kerning first=183 second=273 amount=-1 -kerning first=186 second=45 amount=-2 -kerning first=179 second=964 amount=-3 -kerning first=63 second=287 amount=-1 -kerning first=323 second=335 amount=-1 -kerning first=86 second=219 amount=-2 -kerning first=223 second=1108 amount=-1 +kerning first=366 second=1298 amount=-1 +kerning first=366 second=8218 amount=-1 +kerning first=366 second=8222 amount=-1 +kerning first=366 second=8230 amount=-1 +kerning first=368 second=44 amount=-1 +kerning first=368 second=46 amount=-1 +kerning first=368 second=65 amount=-2 +kerning first=368 second=193 amount=-2 +kerning first=368 second=194 amount=-2 +kerning first=368 second=196 amount=-2 +kerning first=368 second=197 amount=-2 +kerning first=368 second=198 amount=-2 +kerning first=368 second=256 amount=-2 +kerning first=368 second=258 amount=-2 +kerning first=368 second=260 amount=-2 +kerning first=368 second=913 amount=-2 +kerning first=368 second=916 amount=-2 +kerning first=368 second=923 amount=-2 +kerning first=368 second=1033 amount=-1 +kerning first=368 second=1040 amount=-2 +kerning first=368 second=1044 amount=-1 +kerning first=368 second=1051 amount=-1 +kerning first=368 second=1298 amount=-1 +kerning first=368 second=8218 amount=-1 +kerning first=368 second=8222 amount=-1 +kerning first=368 second=8230 amount=-1 +kerning first=370 second=44 amount=-1 +kerning first=370 second=46 amount=-1 +kerning first=370 second=65 amount=-2 +kerning first=370 second=193 amount=-2 +kerning first=370 second=194 amount=-2 +kerning first=370 second=196 amount=-2 +kerning first=370 second=197 amount=-2 +kerning first=370 second=198 amount=-2 +kerning first=370 second=256 amount=-2 +kerning first=370 second=258 amount=-2 +kerning first=370 second=260 amount=-2 +kerning first=370 second=913 amount=-2 +kerning first=370 second=916 amount=-2 +kerning first=370 second=923 amount=-2 +kerning first=370 second=1033 amount=-1 +kerning first=370 second=1040 amount=-2 +kerning first=370 second=1044 amount=-1 +kerning first=370 second=1051 amount=-1 +kerning first=370 second=1298 amount=-1 +kerning first=370 second=8218 amount=-1 +kerning first=370 second=8222 amount=-1 +kerning first=370 second=8230 amount=-1 +kerning first=372 second=38 amount=-1 +kerning first=372 second=44 amount=-3 +kerning first=372 second=45 amount=-2 +kerning first=372 second=46 amount=-3 +kerning first=372 second=47 amount=-3 +kerning first=372 second=110 amount=-2 +kerning first=372 second=63 amount=-1 +kerning first=372 second=65 amount=-5 +kerning first=372 second=67 amount=-2 +kerning first=372 second=114 amount=-2 +kerning first=372 second=71 amount=-2 +kerning first=372 second=74 amount=-3 +kerning first=372 second=79 amount=-2 +kerning first=372 second=81 amount=-2 +kerning first=372 second=83 amount=-1 +kerning first=372 second=97 amount=-2 +kerning first=372 second=99 amount=-3 +kerning first=372 second=100 amount=-3 +kerning first=372 second=101 amount=-3 +kerning first=372 second=102 amount=-1 +kerning first=372 second=103 amount=-2 +kerning first=372 second=109 amount=-2 +kerning first=372 second=111 amount=-3 +kerning first=372 second=112 amount=-2 +kerning first=372 second=113 amount=-3 +kerning first=372 second=115 amount=-2 +kerning first=372 second=117 amount=-2 +kerning first=372 second=118 amount=-1 +kerning first=372 second=119 amount=-1 +kerning first=372 second=120 amount=-1 +kerning first=372 second=121 amount=-1 +kerning first=372 second=122 amount=-1 +kerning first=372 second=171 amount=-2 +kerning first=372 second=173 amount=-2 +kerning first=372 second=187 amount=-2 +kerning first=372 second=193 amount=-5 +kerning first=372 second=194 amount=-5 kerning first=372 second=196 amount=-5 -kerning first=960 second=8250 amount=-1 -kerning first=126 second=1028 amount=-2 -kerning first=162 second=288 amount=-2 -kerning first=1048 second=248 amount=-1 -kerning first=299 second=350 amount=-1 -kerning first=207 second=362 amount=-2 -kerning first=204 second=1176 amount=-1 -kerning first=327 second=275 amount=-1 -kerning first=8378 second=225 amount=-1 -kerning first=84 second=1203 amount=-1 -kerning first=1168 second=87 amount=-5 -kerning first=944 second=337 amount=-1 -kerning first=948 second=99 amount=-1 -kerning first=113 second=71 amount=-2 -kerning first=1202 second=940 amount=-1 -kerning first=253 second=221 amount=-5 -kerning first=376 second=111 amount=-4 +kerning first=372 second=197 amount=-5 +kerning first=372 second=198 amount=-5 +kerning first=372 second=199 amount=-2 +kerning first=372 second=210 amount=-2 +kerning first=372 second=211 amount=-2 +kerning first=372 second=212 amount=-2 +kerning first=372 second=213 amount=-2 +kerning first=372 second=214 amount=-2 +kerning first=372 second=216 amount=-2 +kerning first=372 second=224 amount=-2 +kerning first=372 second=225 amount=-2 +kerning first=372 second=226 amount=-2 +kerning first=372 second=227 amount=-2 +kerning first=372 second=228 amount=-2 +kerning first=372 second=229 amount=-2 +kerning first=372 second=230 amount=-2 +kerning first=372 second=231 amount=-3 +kerning first=372 second=232 amount=-3 +kerning first=372 second=233 amount=-3 +kerning first=372 second=234 amount=-3 +kerning first=372 second=235 amount=-3 +kerning first=372 second=240 amount=-3 +kerning first=372 second=241 amount=-2 +kerning first=372 second=242 amount=-3 +kerning first=372 second=243 amount=-3 +kerning first=372 second=244 amount=-3 +kerning first=372 second=245 amount=-3 +kerning first=372 second=246 amount=-3 +kerning first=372 second=248 amount=-3 +kerning first=372 second=249 amount=-2 +kerning first=372 second=250 amount=-2 +kerning first=372 second=251 amount=-2 +kerning first=372 second=252 amount=-2 +kerning first=372 second=253 amount=-1 +kerning first=372 second=256 amount=-5 +kerning first=372 second=257 amount=-2 +kerning first=372 second=258 amount=-5 +kerning first=372 second=259 amount=-2 +kerning first=372 second=260 amount=-5 +kerning first=372 second=261 amount=-2 +kerning first=372 second=262 amount=-2 +kerning first=372 second=263 amount=-3 +kerning first=372 second=266 amount=-2 +kerning first=372 second=267 amount=-3 +kerning first=372 second=268 amount=-2 +kerning first=372 second=269 amount=-3 +kerning first=372 second=271 amount=-3 +kerning first=372 second=273 amount=-3 +kerning first=372 second=275 amount=-3 +kerning first=372 second=277 amount=-3 +kerning first=372 second=279 amount=-3 +kerning first=372 second=281 amount=-3 +kerning first=372 second=283 amount=-3 +kerning first=372 second=286 amount=-2 +kerning first=372 second=287 amount=-2 +kerning first=372 second=288 amount=-2 +kerning first=372 second=289 amount=-2 +kerning first=372 second=290 amount=-2 +kerning first=372 second=291 amount=-2 +kerning first=372 second=324 amount=-2 +kerning first=372 second=326 amount=-2 +kerning first=372 second=328 amount=-2 +kerning first=372 second=331 amount=-2 +kerning first=372 second=332 amount=-2 +kerning first=372 second=333 amount=-3 +kerning first=372 second=334 amount=-2 +kerning first=372 second=335 amount=-3 +kerning first=372 second=336 amount=-2 +kerning first=372 second=337 amount=-3 +kerning first=372 second=338 amount=-2 +kerning first=372 second=339 amount=-3 +kerning first=372 second=341 amount=-2 +kerning first=372 second=343 amount=-2 +kerning first=372 second=345 amount=-2 +kerning first=372 second=346 amount=-1 +kerning first=372 second=347 amount=-2 +kerning first=372 second=350 amount=-1 +kerning first=372 second=351 amount=-2 +kerning first=372 second=352 amount=-1 +kerning first=372 second=353 amount=-2 +kerning first=372 second=361 amount=-2 +kerning first=372 second=363 amount=-2 +kerning first=372 second=365 amount=-2 +kerning first=372 second=367 amount=-2 +kerning first=372 second=369 amount=-2 +kerning first=372 second=371 amount=-2 +kerning first=372 second=373 amount=-1 +kerning first=372 second=375 amount=-1 +kerning first=372 second=378 amount=-1 +kerning first=372 second=380 amount=-1 +kerning first=372 second=382 amount=-1 +kerning first=372 second=913 amount=-5 +kerning first=372 second=916 amount=-5 +kerning first=372 second=920 amount=-2 +kerning first=372 second=923 amount=-5 +kerning first=372 second=927 amount=-2 +kerning first=372 second=940 amount=-3 +kerning first=372 second=941 amount=-3 +kerning first=372 second=942 amount=-2 +kerning first=372 second=945 amount=-3 +kerning first=372 second=947 amount=-1 +kerning first=372 second=949 amount=-3 +kerning first=372 second=951 amount=-2 +kerning first=372 second=954 amount=-2 +kerning first=372 second=957 amount=-1 +kerning first=372 second=959 amount=-3 +kerning first=372 second=962 amount=-3 +kerning first=372 second=963 amount=-3 +kerning first=372 second=965 amount=-2 +kerning first=372 second=966 amount=-3 +kerning first=372 second=968 amount=-2 +kerning first=372 second=972 amount=-3 +kerning first=372 second=973 amount=-2 +kerning first=372 second=1028 amount=-2 +kerning first=372 second=1029 amount=-1 +kerning first=372 second=1032 amount=-3 +kerning first=372 second=1040 amount=-5 +kerning first=372 second=1054 amount=-2 +kerning first=372 second=1057 amount=-2 +kerning first=372 second=1072 amount=-2 +kerning first=372 second=1074 amount=-2 +kerning first=372 second=1075 amount=-2 +kerning first=372 second=1077 amount=-3 +kerning first=372 second=1078 amount=-1 +kerning first=372 second=1080 amount=-2 +kerning first=372 second=1081 amount=-2 +kerning first=372 second=1082 amount=-2 +kerning first=372 second=1084 amount=-2 +kerning first=372 second=1085 amount=-2 +kerning first=372 second=1086 amount=-3 +kerning first=372 second=1087 amount=-2 +kerning first=372 second=1088 amount=-2 +kerning first=372 second=1089 amount=-3 +kerning first=372 second=1091 amount=-1 +kerning first=372 second=1092 amount=-3 +kerning first=372 second=1093 amount=-1 +kerning first=372 second=1094 amount=-2 +kerning first=372 second=1096 amount=-2 +kerning first=372 second=1097 amount=-2 +kerning first=372 second=1099 amount=-2 +kerning first=372 second=1100 amount=-2 +kerning first=372 second=1102 amount=-2 +kerning first=372 second=1104 amount=-3 +kerning first=372 second=1105 amount=-3 +kerning first=372 second=1107 amount=-2 +kerning first=372 second=1108 amount=-3 +kerning first=372 second=1109 amount=-2 +kerning first=372 second=1114 amount=-2 +kerning first=372 second=1116 amount=-2 +kerning first=372 second=1117 amount=-2 +kerning first=372 second=1118 amount=-1 +kerning first=372 second=1119 amount=-2 +kerning first=372 second=1169 amount=-2 +kerning first=372 second=1175 amount=-1 +kerning first=372 second=1179 amount=-2 +kerning first=372 second=1187 amount=-2 +kerning first=372 second=1194 amount=-2 +kerning first=372 second=1195 amount=-3 +kerning first=372 second=1199 amount=-1 +kerning first=372 second=1203 amount=-1 +kerning first=372 second=1220 amount=-2 +kerning first=372 second=1224 amount=-2 +kerning first=372 second=1240 amount=-2 +kerning first=372 second=1241 amount=-3 +kerning first=372 second=1256 amount=-2 +kerning first=372 second=1257 amount=-3 +kerning first=372 second=1263 amount=-1 +kerning first=372 second=8211 amount=-2 +kerning first=372 second=8212 amount=-2 +kerning first=372 second=8218 amount=-3 +kerning first=372 second=8222 amount=-3 +kerning first=372 second=8230 amount=-3 +kerning first=372 second=8249 amount=-2 +kerning first=372 second=8250 amount=-2 +kerning first=373 second=44 amount=-2 +kerning first=373 second=45 amount=-1 +kerning first=373 second=46 amount=-2 +kerning first=373 second=47 amount=-3 +kerning first=373 second=97 amount=-1 +kerning first=373 second=99 amount=-1 +kerning first=373 second=100 amount=-1 +kerning first=373 second=101 amount=-1 +kerning first=373 second=103 amount=-1 +kerning first=373 second=111 amount=-1 +kerning first=373 second=113 amount=-1 +kerning first=373 second=115 amount=-1 +kerning first=373 second=171 amount=-1 +kerning first=373 second=173 amount=-1 +kerning first=373 second=224 amount=-1 +kerning first=373 second=225 amount=-1 +kerning first=373 second=226 amount=-1 +kerning first=373 second=227 amount=-1 +kerning first=373 second=228 amount=-1 +kerning first=373 second=229 amount=-1 +kerning first=373 second=230 amount=-1 +kerning first=373 second=231 amount=-1 +kerning first=373 second=232 amount=-1 +kerning first=373 second=233 amount=-1 +kerning first=373 second=234 amount=-1 +kerning first=373 second=235 amount=-1 +kerning first=373 second=240 amount=-1 +kerning first=373 second=242 amount=-1 +kerning first=373 second=243 amount=-1 +kerning first=373 second=244 amount=-1 +kerning first=373 second=245 amount=-1 +kerning first=373 second=246 amount=-1 +kerning first=373 second=248 amount=-1 +kerning first=373 second=257 amount=-1 +kerning first=373 second=259 amount=-1 +kerning first=373 second=261 amount=-1 +kerning first=373 second=263 amount=-1 +kerning first=373 second=267 amount=-1 +kerning first=373 second=269 amount=-1 +kerning first=373 second=271 amount=-1 +kerning first=373 second=273 amount=-1 +kerning first=373 second=275 amount=-1 +kerning first=373 second=277 amount=-1 +kerning first=373 second=279 amount=-1 +kerning first=373 second=281 amount=-1 +kerning first=373 second=283 amount=-1 +kerning first=373 second=287 amount=-1 +kerning first=373 second=289 amount=-1 +kerning first=373 second=291 amount=-1 +kerning first=373 second=333 amount=-1 +kerning first=373 second=335 amount=-1 +kerning first=373 second=337 amount=-1 +kerning first=373 second=339 amount=-1 +kerning first=373 second=347 amount=-1 kerning first=373 second=351 amount=-1 -kerning first=967 second=953 amount=-1 -kerning first=166 second=233 amount=-1 -kerning first=276 second=363 amount=-1 -kerning first=273 second=1177 amount=-1 -kerning first=48 second=245 amount=-1 -kerning first=188 second=375 amount=-1 -kerning first=303 second=290 amount=-2 -kerning first=1085 second=338 amount=-2 -kerning first=205 second=8211 amount=-2 -kerning first=208 second=1051 amount=-1 -kerning first=1094 second=100 amount=-1 -kerning first=906 second=352 amount=-1 -kerning first=94 second=84 amount=-5 -kerning first=114 second=246 amount=-1 -kerning first=1223 second=199 amount=-2 -kerning first=254 second=376 amount=-5 -kerning first=274 second=8212 amount=-2 -kerning first=1063 second=353 amount=-1 -kerning first=186 second=8249 amount=-3 -kerning first=195 second=85 amount=-2 -kerning first=72 second=335 amount=-1 -kerning first=75 second=97 amount=-1 -kerning first=95 second=259 amount=-1 -kerning first=98 second=34 amount=-1 -kerning first=1224 second=354 amount=-5 -kerning first=1219 second=1118 amount=-1 -kerning first=252 second=8250 amount=-1 -kerning first=1026 second=366 amount=-2 -kerning first=53 second=350 amount=-1 -kerning first=8361 second=103 amount=-1 -kerning first=73 second=966 amount=-1 -kerning first=79 second=47 amount=-1 -kerning first=76 second=275 amount=-1 -kerning first=1099 second=225 amount=-1 -kerning first=219 second=197 amount=-2 -kerning first=340 second=87 amount=-1 -kerning first=1176 second=367 amount=-1 -kerning first=1171 second=1185 amount=-3 -kerning first=239 second=337 amount=-1 -kerning first=119 second=351 amount=-1 -kerning first=122 second=111 amount=-1 -kerning first=8230 second=356 amount=-5 -kerning first=57 second=290 amount=-2 -kerning first=200 second=210 amount=-2 -kerning first=315 second=338 amount=-1 -kerning first=318 second=100 amount=-1 -kerning first=926 second=1241 amount=-1 -kerning first=934 second=187 amount=-1 -kerning first=100 second=364 amount=-2 -kerning first=1174 second=8220 amount=-2 -kerning first=240 second=968 amount=-1 -kerning first=955 second=1079 amount=-1 -kerning first=963 second=89 amount=-5 -kerning first=123 second=291 amount=-1 -kerning first=35 second=1059 amount=-2 -kerning first=291 second=353 amount=-1 -kerning first=296 second=113 amount=-1 -kerning first=61 second=235 amount=-1 -kerning first=201 second=365 amount=-1 -kerning first=8366 second=228 amount=-1 -kerning first=81 second=377 amount=-1 -kerning first=98 second=8216 amount=-1 -kerning first=247 second=224 amount=-1 -kerning first=367 second=354 amount=-5 -kerning first=964 second=266 amount=-2 -kerning first=967 second=39 amount=-3 -kerning first=266 second=1184 amount=-1 -kerning first=42 second=248 amount=-1 -kerning first=185 second=171 amount=-3 -kerning first=1081 second=103 amount=-1 -kerning first=8364 second=1257 amount=-1 -kerning first=325 second=225 amount=-1 -kerning first=903 second=115 amount=-1 -kerning first=900 second=355 amount=-1 -kerning first=105 second=940 amount=-1 -kerning first=108 second=249 amount=-1 -kerning first=968 second=214 amount=-2 -kerning first=1051 second=116 amount=-1 -kerning first=1047 second=356 amount=-1 -kerning first=69 second=100 amount=-1 -kerning first=1083 second=281 amount=-1 -kerning first=209 second=250 amount=-1 -kerning first=206 second=941 amount=-1 -kerning first=908 second=65 amount=-2 -kerning first=86 second=954 amount=-2 -kerning first=89 second=262 amount=-3 -kerning first=946 second=227 amount=-1 -kerning first=1219 second=117 amount=-1 -kerning first=249 second=1079 amount=-1 -kerning first=255 second=89 amount=-5 -kerning first=162 second=1098 amount=-3 -kerning first=165 second=339 amount=-1 -kerning first=168 second=101 amount=-1 -kerning first=278 second=251 amount=-1 -kerning first=47 second=353 amount=-1 -kerning first=50 second=113 amount=-1 -kerning first=193 second=38 amount=-1 -kerning first=190 second=263 amount=-1 -kerning first=8378 second=962 amount=-1 -kerning first=334 second=90 amount=-1 -kerning first=93 second=212 amount=-2 -kerning first=1117 second=1194 amount=-2 -kerning first=1168 second=370 amount=-2 -kerning first=910 second=240 amount=-4 -kerning first=356 second=252 amount=-2 -kerning first=944 second=1256 amount=-2 -kerning first=113 second=354 amount=-5 -kerning first=256 second=266 amount=-2 -kerning first=259 second=39 amount=-1 -kerning first=1027 second=79 amount=-2 -kerning first=169 second=279 amount=-1 -kerning first=166 second=970 amount=-1 -kerning first=8224 second=119 amount=-4 -kerning first=1062 second=920 amount=-1 -kerning first=194 second=213 amount=-2 -kerning first=74 second=225 amount=-1 -kerning first=1085 second=1257 amount=-1 -kerning first=311 second=103 amount=-2 -kerning first=214 second=355 amount=-1 -kerning first=91 second=1185 amount=-3 -kerning first=94 second=367 amount=-1 -kerning first=260 second=214 amount=-2 -kerning first=174 second=226 amount=-1 -kerning first=195 second=368 amount=-2 -kerning first=313 second=281 amount=-1 -kerning first=221 second=65 amount=-5 -kerning first=92 second=8220 amount=-3 -kerning first=361 second=357 amount=-1 -kerning first=956 second=269 amount=-1 -kerning first=36 second=251 amount=-1 -kerning first=193 second=8221 amount=-3 -kerning first=196 second=1066 amount=-5 -kerning first=1074 second=106 amount=1 -kerning first=317 second=228 amount=-1 -kerning first=1099 second=962 amount=-1 -kerning first=219 second=916 amount=-2 -kerning first=931 second=283 amount=-1 -kerning first=239 second=1256 amount=-2 -kerning first=242 second=382 amount=-1 -kerning first=362 second=1044 amount=-1 -kerning first=962 second=217 amount=-2 -kerning first=1041 second=119 amount=-4 -kerning first=1037 second=359 amount=-1 -kerning first=63 second=103 amount=-1 -kerning first=1071 second=1026 amount=-5 -kerning first=203 second=253 amount=-1 -kerning first=315 second=1257 amount=-1 -kerning first=8365 second=334 amount=-2 -kerning first=243 second=1083 amount=-1 -kerning first=369 second=242 amount=-1 -kerning first=366 second=923 amount=-2 -kerning first=960 second=947 amount=-4 -kerning first=963 second=372 amount=-5 -kerning first=123 second=1101 amount=-1 -kerning first=41 second=356 amount=-5 -kerning first=44 second=116 amount=-1 -kerning first=184 second=268 amount=-2 -kerning first=8260 second=1108 amount=-1 -kerning first=61 second=972 amount=-1 -kerning first=64 second=281 amount=-1 -kerning first=1080 second=231 amount=-1 -kerning first=8366 second=965 amount=-1 -kerning first=902 second=243 amount=-1 -kerning first=936 second=1263 amount=-1 -kerning first=250 second=269 amount=-1 -kerning first=160 second=973 amount=-1 -kerning first=1049 second=244 amount=-1 -kerning first=188 second=216 amount=-2 -kerning first=303 second=106 amount=1 -kerning first=325 second=962 amount=-1 -kerning first=1107 second=8230 amount=-3 -kerning first=1210 second=245 amount=-1 -kerning first=254 second=217 amount=-2 +kerning first=373 second=353 amount=-1 +kerning first=373 second=940 amount=-1 +kerning first=373 second=941 amount=-1 +kerning first=373 second=945 amount=-1 +kerning first=373 second=949 amount=-1 +kerning first=373 second=950 amount=-2 +kerning first=373 second=955 amount=-4 +kerning first=373 second=959 amount=-1 +kerning first=373 second=961 amount=-2 +kerning first=373 second=962 amount=-1 +kerning first=373 second=963 amount=-1 +kerning first=373 second=966 amount=-1 +kerning first=373 second=969 amount=-1 +kerning first=373 second=972 amount=-1 +kerning first=373 second=974 amount=-1 +kerning first=373 second=1072 amount=-1 +kerning first=373 second=1077 amount=-1 +kerning first=373 second=1086 amount=-1 +kerning first=373 second=1089 amount=-1 +kerning first=373 second=1092 amount=-1 +kerning first=373 second=1104 amount=-1 +kerning first=373 second=1105 amount=-1 +kerning first=373 second=1108 amount=-1 +kerning first=373 second=1109 amount=-1 +kerning first=373 second=1195 amount=-1 +kerning first=373 second=1241 amount=-1 +kerning first=373 second=1257 amount=-1 +kerning first=373 second=8211 amount=-1 +kerning first=373 second=8212 amount=-1 +kerning first=373 second=8218 amount=-2 +kerning first=373 second=8222 amount=-2 +kerning first=373 second=8230 amount=-2 +kerning first=373 second=8249 amount=-1 +kerning first=374 second=38 amount=-2 +kerning first=374 second=44 amount=-4 +kerning first=374 second=45 amount=-4 +kerning first=374 second=46 amount=-4 +kerning first=374 second=47 amount=-4 +kerning first=374 second=110 amount=-3 +kerning first=374 second=63 amount=-1 +kerning first=374 second=65 amount=-5 +kerning first=374 second=67 amount=-3 +kerning first=374 second=114 amount=-3 +kerning first=374 second=71 amount=-3 +kerning first=374 second=74 amount=-6 +kerning first=374 second=79 amount=-3 +kerning first=374 second=81 amount=-3 +kerning first=374 second=83 amount=-1 +kerning first=374 second=97 amount=-4 +kerning first=374 second=99 amount=-4 +kerning first=374 second=100 amount=-4 +kerning first=374 second=101 amount=-4 +kerning first=374 second=103 amount=-4 +kerning first=374 second=109 amount=-3 +kerning first=374 second=111 amount=-4 +kerning first=374 second=112 amount=-3 +kerning first=374 second=113 amount=-4 +kerning first=374 second=115 amount=-3 +kerning first=374 second=117 amount=-2 +kerning first=374 second=118 amount=-2 +kerning first=374 second=119 amount=-2 +kerning first=374 second=120 amount=-2 +kerning first=374 second=121 amount=-2 +kerning first=374 second=122 amount=-2 +kerning first=374 second=171 amount=-3 +kerning first=374 second=173 amount=-4 +kerning first=374 second=187 amount=-2 +kerning first=374 second=193 amount=-5 +kerning first=374 second=194 amount=-5 +kerning first=374 second=196 amount=-5 +kerning first=374 second=197 amount=-5 +kerning first=374 second=198 amount=-5 +kerning first=374 second=199 amount=-3 +kerning first=374 second=210 amount=-3 +kerning first=374 second=211 amount=-3 +kerning first=374 second=212 amount=-3 +kerning first=374 second=213 amount=-3 +kerning first=374 second=214 amount=-3 +kerning first=374 second=216 amount=-3 +kerning first=374 second=224 amount=-4 +kerning first=374 second=225 amount=-4 +kerning first=374 second=226 amount=-4 +kerning first=374 second=227 amount=-4 +kerning first=374 second=228 amount=-4 +kerning first=374 second=229 amount=-4 +kerning first=374 second=230 amount=-4 +kerning first=374 second=231 amount=-4 +kerning first=374 second=232 amount=-4 +kerning first=374 second=233 amount=-4 +kerning first=374 second=234 amount=-4 +kerning first=374 second=235 amount=-4 +kerning first=374 second=240 amount=-4 +kerning first=374 second=241 amount=-3 +kerning first=374 second=242 amount=-4 +kerning first=374 second=243 amount=-4 +kerning first=374 second=244 amount=-4 +kerning first=374 second=245 amount=-4 +kerning first=374 second=246 amount=-4 +kerning first=374 second=248 amount=-4 +kerning first=374 second=249 amount=-2 +kerning first=374 second=250 amount=-2 +kerning first=374 second=251 amount=-2 +kerning first=374 second=252 amount=-2 +kerning first=374 second=253 amount=-2 +kerning first=374 second=256 amount=-5 +kerning first=374 second=257 amount=-4 +kerning first=374 second=258 amount=-5 +kerning first=374 second=259 amount=-4 +kerning first=374 second=260 amount=-5 +kerning first=374 second=261 amount=-4 +kerning first=374 second=262 amount=-3 +kerning first=374 second=263 amount=-4 +kerning first=374 second=266 amount=-3 +kerning first=374 second=267 amount=-4 +kerning first=374 second=268 amount=-3 +kerning first=374 second=269 amount=-4 +kerning first=374 second=271 amount=-4 +kerning first=374 second=273 amount=-4 +kerning first=374 second=275 amount=-4 +kerning first=374 second=277 amount=-4 +kerning first=374 second=279 amount=-4 +kerning first=374 second=281 amount=-4 +kerning first=374 second=283 amount=-4 +kerning first=374 second=286 amount=-3 +kerning first=374 second=287 amount=-4 +kerning first=374 second=288 amount=-3 +kerning first=374 second=289 amount=-4 +kerning first=374 second=290 amount=-3 +kerning first=374 second=291 amount=-4 +kerning first=374 second=324 amount=-3 +kerning first=374 second=326 amount=-3 +kerning first=374 second=328 amount=-3 +kerning first=374 second=331 amount=-3 +kerning first=374 second=332 amount=-3 +kerning first=374 second=333 amount=-4 +kerning first=374 second=334 amount=-3 +kerning first=374 second=335 amount=-4 +kerning first=374 second=336 amount=-3 +kerning first=374 second=337 amount=-4 +kerning first=374 second=338 amount=-3 +kerning first=374 second=339 amount=-4 +kerning first=374 second=341 amount=-3 +kerning first=374 second=343 amount=-3 kerning first=374 second=345 amount=-3 -kerning first=968 second=949 amount=-1 -kerning first=971 second=257 amount=-1 -kerning first=167 second=229 amount=-1 -kerning first=280 second=119 amount=-4 -kerning first=8211 second=1051 amount=-4 -kerning first=46 second=920 amount=-1 -kerning first=186 second=1195 amount=-1 -kerning first=189 second=371 amount=-1 -kerning first=301 second=1026 amount=-5 -kerning first=304 second=286 amount=-2 -kerning first=1087 second=334 amount=-2 -kerning first=1083 second=1090 amount=-3 -kerning first=352 second=1174 amount=-1 -kerning first=950 second=273 amount=-1 -kerning first=946 second=964 amount=-3 -kerning first=252 second=947 amount=-4 -kerning first=255 second=372 amount=-5 -kerning first=165 second=1262 amount=-2 -kerning first=168 second=1240 amount=-2 -kerning first=1064 second=347 amount=-1 -kerning first=190 second=1069 amount=-1 -kerning first=196 second=81 amount=-2 -kerning first=310 second=231 amount=-2 -kerning first=70 second=1084 amount=-1 -kerning first=8378 second=8250 amount=-1 -kerning first=915 second=288 amount=-2 -kerning first=910 second=1028 amount=-3 -kerning first=382 second=232 amount=-1 -kerning first=1027 second=362 amount=-2 -kerning first=973 second=1176 amount=-1 -kerning first=172 second=332 amount=-2 -kerning first=287 second=244 amount=-1 -kerning first=57 second=106 amount=1 -kerning first=74 second=962 amount=-1 -kerning first=220 second=193 amount=-2 -kerning first=332 second=8230 amount=-1 -kerning first=926 second=233 amount=-1 -kerning first=240 second=333 amount=-1 -kerning first=363 second=245 amount=-1 -kerning first=955 second=375 amount=-1 -kerning first=1298 second=290 amount=-2 -kerning first=260 second=949 amount=-1 -kerning first=35 second=359 amount=-1 -kerning first=38 second=119 amount=-1 -kerning first=1028 second=1051 amount=-1 -kerning first=174 second=963 amount=-1 -kerning first=177 second=271 amount=-1 -kerning first=8240 second=352 amount=-1 -kerning first=55 second=1026 amount=-5 -kerning first=58 second=286 amount=-2 -kerning first=1073 second=234 amount=-1 -kerning first=316 second=334 amount=-2 -kerning first=8363 second=277 amount=-1 -kerning first=221 second=346 amount=-1 -kerning first=1178 second=1059 amount=-1 -kerning first=241 second=964 amount=-1 -kerning first=247 second=45 amount=-2 -kerning first=964 second=85 amount=-2 -kerning first=124 second=287 amount=-1 -kerning first=182 second=219 amount=-2 -kerning first=289 second=1108 amount=-1 -kerning first=294 second=347 amount=-1 -kerning first=62 second=231 amount=-1 -kerning first=202 second=361 amount=-1 -kerning first=205 second=121 amount=-1 -kerning first=317 second=965 amount=-1 -kerning first=8369 second=224 amount=-1 -kerning first=79 second=1202 amount=-3 -kerning first=1099 second=8250 amount=-1 -kerning first=161 second=232 amount=-1 -kerning first=43 second=244 amount=-1 -kerning first=1047 second=197 amount=-1 -kerning first=183 second=374 amount=-5 -kerning first=298 second=289 amount=-1 -kerning first=1083 second=99 amount=-1 -kerning first=209 second=71 amount=-2 -kerning first=901 second=351 amount=-1 -kerning first=80 second=8230 amount=-4 -kerning first=904 second=111 amount=-1 -kerning first=89 second=83 amount=-1 -kerning first=1116 second=261 amount=-1 -kerning first=940 second=967 amount=-2 -kerning first=249 second=375 amount=-1 -kerning first=372 second=290 amount=-2 -kerning first=268 second=8211 amount=-1 -kerning first=47 second=194 amount=-5 -kerning first=1048 second=352 amount=-1 -kerning first=190 second=84 amount=-5 -kerning first=302 second=234 amount=-1 -kerning first=64 second=1090 amount=-3 -kerning first=1080 second=968 amount=-1 -kerning first=1084 second=277 amount=-1 -kerning first=327 second=376 amount=-5 -kerning first=8372 second=1079 amount=-1 -kerning first=902 second=1035 amount=-5 -kerning first=905 second=291 amount=-1 -kerning first=1168 second=211 amount=-2 -kerning first=345 second=8212 amount=-1 -kerning first=1220 second=113 amount=-1 -kerning first=247 second=8249 amount=-3 -kerning first=256 second=85 amount=-2 -kerning first=376 second=235 amount=-4 -kerning first=166 second=335 amount=-1 -kerning first=169 second=97 amount=-1 -kerning first=48 second=347 amount=-1 -kerning first=191 second=259 amount=-1 -kerning first=194 second=34 amount=-3 -kerning first=74 second=46 amount=-1 -kerning first=325 second=8250 amount=-1 -kerning first=1118 second=1184 amount=-5 -kerning first=357 second=248 amount=-1 -kerning first=952 second=171 amount=-3 -kerning first=111 second=1113 amount=-1 -kerning first=1257 second=63 amount=-2 -kerning first=968 second=8217 amount=-3 -kerning first=167 second=966 amount=-1 -kerning first=170 second=275 amount=-1 -kerning first=8225 second=115 amount=-1 -kerning first=52 second=289 amount=-1 -kerning first=313 second=99 amount=-1 -kerning first=215 second=351 amount=-1 -kerning first=92 second=1177 amount=-1 -kerning first=95 second=363 amount=-1 -kerning first=235 second=967 amount=-2 -kerning first=381 second=338 amount=-1 -kerning first=1026 second=941 amount=-1 -kerning first=8249 second=65 amount=-1 -kerning first=56 second=234 amount=-1 -kerning first=1067 second=1241 amount=-1 -kerning first=196 second=364 amount=-2 -kerning first=314 second=277 amount=-1 -kerning first=310 second=968 amount=-1 -kerning first=8361 second=227 amount=-1 -kerning first=76 second=376 amount=-6 -kerning first=1096 second=1079 amount=-1 -kerning first=216 second=1035 amount=-2 -kerning first=915 second=1098 amount=-3 -kerning first=923 second=339 amount=-1 -kerning first=96 second=1059 amount=-2 -kerning first=93 second=8212 amount=-2 -kerning first=931 second=101 amount=-1 -kerning first=365 second=113 amount=-1 -kerning first=958 second=263 amount=-1 -kerning first=122 second=235 amount=-1 -kerning first=194 second=8216 amount=-3 -kerning first=318 second=224 amount=-1 -kerning first=74 second=8250 amount=-1 -kerning first=83 second=86 amount=-2 -kerning first=1103 second=266 amount=-2 -kerning first=1108 second=39 amount=-1 -kerning first=338 second=1184 amount=-5 -kerning first=934 second=279 amount=-1 -kerning first=926 second=970 amount=-1 -kerning first=103 second=248 amount=-1 -kerning first=243 second=378 amount=-1 -kerning first=963 second=213 amount=-2 -kerning first=260 second=8217 amount=-3 -kerning first=184 second=87 amount=-5 -kerning first=61 second=337 amount=-1 -kerning first=64 second=99 amount=-1 -kerning first=201 second=940 amount=-1 -kerning first=204 second=249 amount=-1 -kerning first=84 second=261 amount=-2 -kerning first=339 second=8218 amount=-1 -kerning first=1194 second=356 amount=-1 -kerning first=244 second=1078 amount=-2 -kerning first=964 second=368 amount=-2 -kerning first=160 second=338 amount=-2 -kerning first=163 second=100 amount=-1 -kerning first=273 second=250 amount=-1 -kerning first=42 second=352 amount=-1 -kerning first=185 second=262 amount=-2 -kerning first=297 second=1241 amount=-1 -kerning first=300 second=187 amount=-1 -kerning first=62 second=968 amount=-1 -kerning first=65 second=277 amount=-1 -kerning first=1081 second=227 amount=-1 -kerning first=322 second=1079 amount=-1 -kerning first=88 second=211 amount=-3 -kerning first=225 second=1098 amount=-1 -kerning first=108 second=353 amount=-1 -kerning first=248 second=955 amount=-1 -kerning first=251 second=263 amount=-1 -kerning first=965 second=1066 amount=-5 -kerning first=962 second=8221 amount=-3 -kerning first=1047 second=916 amount=-1 -kerning first=1051 second=240 amount=-1 -kerning first=189 second=212 amount=-2 -kerning first=69 second=224 amount=-1 -kerning first=206 second=1118 amount=-1 -kerning first=209 second=354 amount=-5 -kerning first=330 second=266 amount=-2 -kerning first=333 second=39 amount=-1 -kerning first=86 second=1184 amount=-5 -kerning first=1170 second=79 amount=-2 -kerning first=115 second=63 amount=-2 -kerning first=1206 second=920 amount=-1 -kerning first=255 second=213 amount=-2 -kerning first=372 second=1100 amount=-2 -kerning first=168 second=225 amount=-1 -kerning first=278 second=355 amount=-1 -kerning first=8212 second=1046 amount=-3 -kerning first=190 second=367 amount=-1 -kerning first=8378 second=947 amount=-4 -kerning first=905 second=1101 amount=-1 -kerning first=87 second=8218 amount=-3 -kerning first=1168 second=945 amount=-1 -kerning first=236 second=226 amount=-1 -kerning first=951 second=268 amount=-2 -kerning first=256 second=368 amount=-2 -kerning first=376 second=972 amount=-4 -kerning first=379 second=281 amount=-1 -kerning first=8224 second=243 amount=-1 -kerning first=51 second=1241 amount=-1 -kerning first=54 second=187 amount=-1 -kerning first=188 second=8220 amount=-3 -kerning first=311 second=227 amount=-1 -kerning first=77 second=89 amount=-5 -kerning first=1097 second=269 amount=-1 -kerning first=955 second=216 amount=-2 -kerning first=254 second=8221 amount=-3 -kerning first=1298 second=106 amount=1 -kerning first=1035 second=118 amount=-4 -kerning first=195 second=943 amount=-1 -kerning first=198 second=252 amount=-1 -kerning first=78 second=266 amount=-2 -kerning first=333 second=8222 amount=-1 -kerning first=928 second=229 amount=-1 -kerning first=361 second=920 amount=-2 -kerning first=956 second=371 amount=-1 -kerning first=124 second=103 amount=-1 -kerning first=1299 second=286 amount=-2 -kerning first=381 second=1257 amount=-1 -kerning first=36 second=355 amount=-1 -kerning first=1033 second=1046 amount=-2 -kerning first=39 second=115 amount=-1 -kerning first=178 second=267 amount=-1 -kerning first=1074 second=230 amount=-1 -kerning first=8364 second=273 amount=-1 -kerning first=8369 second=45 amount=-2 -kerning first=8361 second=964 amount=-3 -kerning first=1099 second=947 amount=-4 -kerning first=923 second=1262 amount=-2 -kerning first=931 second=1240 amount=-2 -kerning first=105 second=116 amount=-1 -kerning first=958 second=1069 amount=-1 -kerning first=965 second=81 amount=-2 -kerning first=125 second=281 amount=-1 -kerning first=122 second=972 amount=-1 -kerning first=1041 second=243 amount=-1 -kerning first=63 second=227 amount=-1 -kerning first=1071 second=1263 amount=-1 -kerning first=206 second=117 amount=-1 -kerning first=203 second=357 amount=-1 -kerning first=323 second=269 amount=-1 -kerning first=8370 second=220 amount=-2 -kerning first=223 second=973 amount=-1 -kerning first=947 second=244 amount=-1 -kerning first=249 second=216 amount=-2 -kerning first=162 second=228 amount=-1 -kerning first=275 second=118 amount=-1 -kerning first=180 second=1194 amount=-2 -kerning first=184 second=370 amount=-2 -kerning first=299 second=283 amount=-1 -kerning first=61 second=1256 amount=-2 -kerning first=1080 second=333 amount=-1 -kerning first=327 second=217 amount=-2 -kerning first=8372 second=375 amount=-1 -kerning first=81 second=8222 amount=-1 -kerning first=90 second=79 amount=-1 -kerning first=1117 second=257 amount=-1 -kerning first=353 second=119 amount=-1 -kerning first=944 second=271 amount=-1 -kerning first=247 second=1195 amount=-1 -kerning first=250 second=371 amount=-1 -kerning first=160 second=1257 amount=-1 -kerning first=8216 second=246 amount=-1 -kerning first=1049 second=346 amount=-1 -kerning first=303 second=230 amount=-1 -kerning first=1085 second=273 amount=-1 -kerning first=1081 second=964 amount=-3 -kerning first=208 second=923 amount=-2 -kerning first=325 second=947 amount=-4 -kerning first=8369 second=8249 amount=-3 -kerning first=906 second=287 amount=-1 -kerning first=88 second=945 amount=-2 -kerning first=1203 second=1108 amount=-1 -kerning first=1210 second=347 amount=-1 -kerning first=251 second=1069 amount=-1 -kerning first=377 second=231 amount=-1 -kerning first=971 second=361 amount=-1 -kerning first=280 second=243 amount=-1 -kerning first=8221 second=196 amount=-3 -kerning first=1051 second=1028 amount=-2 -kerning first=1063 second=288 amount=-2 -kerning first=301 second=1263 amount=-1 -kerning first=72 second=269 amount=-1 -kerning first=1095 second=220 amount=-2 -kerning first=912 second=232 amount=-1 -kerning first=1119 second=1176 amount=-1 -kerning first=1170 second=362 amount=-2 -kerning first=358 second=244 amount=-1 -kerning first=950 second=374 amount=-5 -kerning first=1224 second=289 amount=-1 -kerning first=168 second=962 amount=-1 -kerning first=8226 second=111 amount=-1 -kerning first=56 second=55 amount=-1 -kerning first=53 second=283 amount=-1 -kerning first=1067 second=233 amount=-1 -kerning first=310 second=333 amount=-2 -kerning first=76 second=217 amount=-1 -kerning first=1096 second=375 amount=-1 -kerning first=96 second=359 amount=-1 -kerning first=1168 second=8211 amount=-2 -kerning first=99 second=119 amount=-1 -kerning first=236 second=963 amount=-1 -kerning first=239 second=271 amount=-1 -kerning first=242 second=44 amount=-1 -kerning first=362 second=194 amount=-2 -kerning first=958 second=84 amount=-5 -kerning first=1263 second=234 amount=-1 -kerning first=176 second=218 amount=-2 -kerning first=287 second=346 amount=-1 -kerning first=8224 second=1035 amount=-5 -kerning first=8230 second=291 amount=-1 -kerning first=57 second=230 amount=-1 -kerning first=197 second=360 amount=-2 -kerning first=318 second=45 amount=-2 -kerning first=315 second=273 amount=-1 -kerning first=74 second=947 amount=-4 -kerning first=77 second=372 amount=-5 -kerning first=1103 second=85 amount=-2 -kerning first=926 second=335 amount=-1 -kerning first=934 second=97 amount=-1 -kerning first=363 second=347 amount=-1 -kerning first=960 second=259 amount=-1 -kerning first=963 second=34 amount=-3 -kerning first=123 second=231 amount=-1 -kerning first=38 second=243 amount=-1 -kerning first=1038 second=196 amount=-2 -kerning first=177 second=373 amount=-4 -kerning first=291 second=288 amount=-2 -kerning first=55 second=1263 amount=-1 -kerning first=1073 second=336 amount=-2 -kerning first=321 second=220 amount=-2 -kerning first=8366 second=171 amount=-3 -kerning first=928 second=966 amount=-1 -kerning first=936 second=275 amount=-1 -kerning first=1194 second=197 amount=-1 -kerning first=367 second=289 amount=-1 -kerning first=364 second=1033 amount=-1 -kerning first=273 second=71 amount=-2 -kerning first=1039 second=351 amount=-1 -kerning first=1046 second=111 amount=-2 -kerning first=185 second=83 amount=-1 -kerning first=297 second=233 amount=-1 -kerning first=62 second=333 amount=-1 -kerning first=205 second=245 amount=-1 -kerning first=322 second=375 amount=-1 -kerning first=900 second=290 amount=-2 -kerning first=340 second=8211 amount=-1 -kerning first=251 second=84 amount=-5 -kerning first=371 second=234 amount=-1 -kerning first=965 second=364 amount=-2 -kerning first=161 second=334 amount=-2 -kerning first=125 second=1090 amount=-3 -kerning first=274 second=246 amount=-1 -kerning first=43 second=346 amount=-1 -kerning first=1041 second=1035 amount=-5 -kerning first=69 second=45 amount=-2 -kerning first=63 second=964 amount=-3 -kerning first=318 second=8249 amount=-3 -kerning first=330 second=85 amount=-2 -kerning first=8377 second=263 amount=-1 -kerning first=904 second=235 amount=-1 -kerning first=252 second=259 amount=-1 -kerning first=255 second=34 amount=-3 -kerning first=963 second=8216 amount=-3 -kerning first=162 second=965 amount=-1 -kerning first=8212 second=354 amount=-4 -kerning first=47 second=288 amount=-2 -kerning first=44 second=1028 amount=-1 -kerning first=302 second=336 amount=-2 -kerning first=70 second=220 amount=-2 -kerning first=356 second=197 amount=-6 -kerning first=951 second=87 amount=-5 -kerning first=113 second=289 amount=-1 -kerning first=376 second=337 amount=-4 -kerning first=379 second=99 amount=-1 -kerning first=973 second=249 amount=-1 -kerning first=169 second=221 amount=-5 -kerning first=282 second=111 amount=-1 -kerning first=51 second=233 amount=-1 -kerning first=191 second=363 amount=-1 -kerning first=188 second=1177 amount=-1 -kerning first=214 second=290 amount=-2 -kerning first=916 second=100 amount=-1 -kerning first=88 second=8211 amount=-3 -kerning first=1169 second=941 amount=-1 -kerning first=354 second=1116 amount=-2 -kerning first=357 second=352 amount=-1 -kerning first=952 second=262 amount=-2 -kerning first=117 second=234 amount=-1 -kerning first=1223 second=1241 amount=-1 -kerning first=380 second=277 amount=-1 -kerning first=170 second=376 amount=-5 -kerning first=280 second=1035 amount=-5 -kerning first=1063 second=1098 amount=-3 -kerning first=189 second=8212 amount=-2 -kerning first=192 second=1059 amount=-2 -kerning first=69 second=8249 amount=-3 -kerning first=78 second=85 amount=-2 -kerning first=956 second=212 amount=-2 -kerning first=255 second=8216 amount=-3 -kerning first=1026 second=1118 amount=-1 -kerning first=168 second=8250 amount=-1 -kerning first=1033 second=354 amount=-5 -kerning first=56 second=336 amount=-2 -kerning first=1067 second=970 amount=-1 -kerning first=317 second=171 amount=-3 -kerning first=79 second=260 amount=-2 -kerning first=931 second=225 amount=-1 -kerning first=958 second=367 amount=-1 -kerning first=122 second=337 amount=-1 -kerning first=125 second=99 amount=-1 -kerning first=40 second=111 amount=-1 -kerning first=37 second=351 amount=-1 -kerning first=179 second=261 amount=-1 -kerning first=176 second=953 amount=-1 -kerning first=8365 second=268 amount=-2 -kerning first=1103 second=368 amount=-2 -kerning first=223 second=338 amount=-2 -kerning first=341 second=941 amount=-1 -kerning first=103 second=352 amount=-1 -kerning first=369 second=187 amount=-1 -kerning first=955 second=8220 amount=-3 -kerning first=123 second=968 amount=-1 -kerning first=126 second=277 amount=-1 -kerning first=271 second=199 amount=-2 -kerning first=38 second=1035 amount=-5 -kerning first=41 second=291 amount=-1 -kerning first=184 second=211 amount=-2 -kerning first=296 second=339 amount=-1 -kerning first=8260 second=973 amount=-1 -kerning first=299 second=101 amount=-1 -kerning first=291 second=1098 amount=-3 -kerning first=204 second=353 amount=-1 -kerning first=207 second=113 amount=-1 -kerning first=8372 second=216 amount=-2 -kerning first=84 second=365 amount=-2 -kerning first=1101 second=8221 amount=-1 -kerning first=1194 second=916 amount=-1 -kerning first=1202 second=240 amount=-1 -kerning first=250 second=212 amount=-2 -kerning first=964 second=943 amount=-1 -kerning first=967 second=252 amount=-1 -kerning first=163 second=224 amount=-1 -kerning first=273 second=354 amount=-5 -kerning first=182 second=1184 amount=-5 -kerning first=185 second=366 amount=-2 -kerning first=300 second=279 amount=-1 -kerning first=297 second=970 amount=-1 -kerning first=8369 second=1195 amount=-1 -kerning first=906 second=103 amount=-1 -kerning first=1118 second=253 amount=-1 -kerning first=354 second=115 amount=-3 -kerning first=251 second=367 amount=-1 -kerning first=248 second=1185 amount=-1 -kerning first=274 second=1038 amount=-2 -kerning first=8217 second=242 amount=-1 -kerning first=8211 second=923 amount=-2 -kerning first=304 second=226 amount=-1 -kerning first=1087 second=268 amount=-2 -kerning first=330 second=368 amount=-2 -kerning first=8377 second=1069 amount=-1 -kerning first=904 second=972 amount=-1 -kerning first=92 second=250 amount=-1 -kerning first=89 second=941 amount=-4 -kerning first=232 second=380 amount=-1 -kerning first=249 second=8220 amount=-3 -kerning first=1026 second=117 amount=-1 -kerning first=165 second=1079 amount=-1 -kerning first=171 second=89 amount=-2 -kerning first=47 second=1098 amount=-3 -kerning first=50 second=339 amount=-1 -kerning first=53 second=101 amount=-1 -kerning first=193 second=251 amount=-1 -kerning first=73 second=263 amount=-1 -kerning first=1096 second=216 amount=-2 -kerning first=327 second=8221 amount=-3 -kerning first=915 second=228 amount=-1 -kerning first=1176 second=118 amount=-4 -kerning first=356 second=916 amount=-6 -kerning first=948 second=1194 amount=-2 -kerning first=951 second=370 amount=-2 -kerning first=113 second=1099 amount=2 -kerning first=256 second=943 amount=-1 -kerning first=376 second=1256 amount=-3 -kerning first=172 second=266 amount=-2 -kerning first=176 second=39 amount=-3 -kerning first=51 second=970 amount=-1 -kerning first=54 second=279 amount=-1 -kerning first=77 second=213 amount=-2 -kerning first=1094 second=1195 amount=-1 -kerning first=338 second=253 amount=-1 -kerning first=100 second=115 amount=-1 -kerning first=240 second=267 amount=-1 -kerning first=1298 second=230 amount=-1 -kerning first=1028 second=923 amount=-1 -kerning first=1035 second=242 amount=-1 -kerning first=177 second=214 amount=-2 -kerning first=8240 second=287 amount=-1 -kerning first=58 second=226 amount=-1 -kerning first=198 second=356 amount=-5 -kerning first=201 second=116 amount=-1 -kerning first=316 second=268 amount=-2 -kerning first=8363 second=219 amount=-2 -kerning first=78 second=368 amount=-2 -kerning first=221 second=281 amount=-4 -kerning first=1185 second=243 amount=-2 -kerning first=124 second=227 amount=-1 -kerning first=178 second=369 amount=-1 -kerning first=289 second=973 amount=-1 -kerning first=1074 second=332 amount=-2 -kerning first=322 second=216 amount=-2 -kerning first=8364 second=374 amount=-5 -kerning first=900 second=106 amount=1 -kerning first=76 second=8221 amount=-3 -kerning first=79 second=1066 amount=-2 -kerning first=346 second=118 amount=-1 -kerning first=931 second=962 amount=-1 -kerning first=105 second=240 amount=-1 -kerning first=274 second=67 amount=-2 -kerning first=186 second=79 amount=-2 -kerning first=298 second=229 amount=-1 -kerning first=1075 second=963 amount=-1 -kerning first=203 second=920 amount=-2 -kerning first=323 second=371 amount=-1 -kerning first=318 second=1195 amount=-1 -kerning first=8377 second=84 amount=-5 -kerning first=901 second=286 amount=-2 -kerning first=86 second=253 amount=-1 -kerning first=223 second=1257 amount=-1 -kerning first=372 second=230 amount=-2 -kerning first=969 second=120 amount=-1 -kerning first=41 second=1101 amount=-1 -kerning first=1048 second=287 amount=-1 -kerning first=184 second=945 amount=-1 -kerning first=299 second=1240 amount=-2 -kerning first=296 second=1262 amount=-2 -kerning first=1084 second=219 amount=-2 -kerning first=8378 second=259 amount=-1 -kerning first=905 second=231 amount=-1 -kerning first=1113 second=1175 amount=-2 -kerning first=1117 second=361 amount=-1 -kerning first=1168 second=121 amount=-1 -kerning first=944 second=373 amount=-4 -kerning first=1202 second=1028 amount=-1 -kerning first=166 second=269 amount=-1 -kerning first=1062 second=232 amount=-1 -kerning first=303 second=332 amount=-2 -kerning first=1085 second=374 amount=-5 -kerning first=214 second=106 amount=1 -kerning first=332 second=256 amount=-2 -kerning first=94 second=118 amount=-4 -kerning first=1174 second=71 amount=-1 -kerning first=952 second=83 amount=-1 -kerning first=114 second=283 amount=-1 -kerning first=1223 second=233 amount=-1 +kerning first=374 second=346 amount=-1 +kerning first=374 second=347 amount=-3 +kerning first=374 second=350 amount=-1 +kerning first=374 second=351 amount=-3 +kerning first=374 second=352 amount=-1 +kerning first=374 second=353 amount=-3 +kerning first=374 second=361 amount=-2 +kerning first=374 second=363 amount=-2 +kerning first=374 second=365 amount=-2 +kerning first=374 second=367 amount=-2 +kerning first=374 second=369 amount=-2 +kerning first=374 second=371 amount=-2 +kerning first=374 second=373 amount=-2 +kerning first=374 second=375 amount=-2 +kerning first=374 second=378 amount=-2 +kerning first=374 second=380 amount=-2 +kerning first=374 second=382 amount=-2 +kerning first=374 second=913 amount=-5 +kerning first=374 second=916 amount=-5 +kerning first=374 second=920 amount=-3 +kerning first=374 second=923 amount=-5 +kerning first=374 second=927 amount=-3 +kerning first=374 second=937 amount=-2 +kerning first=374 second=940 amount=-4 +kerning first=374 second=941 amount=-4 +kerning first=374 second=942 amount=-3 +kerning first=374 second=943 amount=-2 +kerning first=374 second=945 amount=-4 +kerning first=374 second=947 amount=-2 +kerning first=374 second=949 amount=-4 +kerning first=374 second=950 amount=-2 +kerning first=374 second=951 amount=-3 +kerning first=374 second=952 amount=-2 +kerning first=374 second=953 amount=-2 +kerning first=374 second=954 amount=-3 +kerning first=374 second=955 amount=-2 +kerning first=374 second=957 amount=-2 +kerning first=374 second=959 amount=-4 +kerning first=374 second=961 amount=-5 +kerning first=374 second=962 amount=-4 +kerning first=374 second=963 amount=-4 +kerning first=374 second=964 amount=-2 +kerning first=374 second=965 amount=-2 +kerning first=374 second=966 amount=-4 +kerning first=374 second=967 amount=-2 +kerning first=374 second=968 amount=-2 +kerning first=374 second=969 amount=-4 +kerning first=374 second=970 amount=-2 +kerning first=374 second=972 amount=-4 +kerning first=374 second=973 amount=-2 +kerning first=374 second=974 amount=-4 +kerning first=374 second=1028 amount=-3 +kerning first=374 second=1029 amount=-1 +kerning first=374 second=1032 amount=-6 +kerning first=374 second=1033 amount=-5 +kerning first=374 second=1040 amount=-5 +kerning first=374 second=1044 amount=-5 +kerning first=374 second=1051 amount=-5 +kerning first=374 second=1054 amount=-3 +kerning first=374 second=1057 amount=-3 +kerning first=374 second=1069 amount=-2 +kerning first=374 second=1071 amount=-2 +kerning first=374 second=1072 amount=-4 +kerning first=374 second=1074 amount=-3 +kerning first=374 second=1075 amount=-3 +kerning first=374 second=1077 amount=-4 +kerning first=374 second=1078 amount=-2 +kerning first=374 second=1079 amount=-4 +kerning first=374 second=1080 amount=-3 +kerning first=374 second=1081 amount=-3 +kerning first=374 second=1082 amount=-3 +kerning first=374 second=1084 amount=-3 +kerning first=374 second=1085 amount=-3 +kerning first=374 second=1086 amount=-4 kerning first=374 second=1087 amount=-3 -kerning first=377 second=333 amount=-1 -kerning first=170 second=217 amount=-2 -kerning first=52 second=229 amount=-1 -kerning first=195 second=119 amount=-4 -kerning first=192 second=359 amount=-1 -kerning first=304 second=963 amount=-1 -kerning first=69 second=1195 amount=-1 -kerning first=72 second=371 amount=-1 -kerning first=212 second=1026 amount=-2 -kerning first=215 second=286 amount=-2 -kerning first=912 second=334 amount=-2 -kerning first=1175 second=246 amount=-1 -kerning first=238 second=218 amount=-2 -kerning first=358 second=346 amount=-1 -kerning first=118 second=230 amount=-1 -kerning first=258 second=360 amount=-2 -kerning first=381 second=273 amount=-1 -kerning first=168 second=947 amount=-4 -kerning first=8226 second=235 amount=-1 -kerning first=53 second=1240 amount=-2 -kerning first=50 second=1262 amount=-2 -kerning first=1067 second=335 amount=-1 -kerning first=314 second=219 amount=-2 -kerning first=73 second=1069 amount=-1 -kerning first=1099 second=259 amount=-1 -kerning first=1102 second=34 amount=-1 -kerning first=915 second=965 amount=-1 -kerning first=239 second=373 amount=-4 -kerning first=1263 second=336 amount=-2 -kerning first=57 second=332 amount=-2 -kerning first=1071 second=275 amount=-1 -kerning first=1075 second=47 amount=-2 -kerning first=200 second=244 amount=-1 -kerning first=315 second=374 amount=-6 -kerning first=80 second=256 amount=-4 -kerning first=8365 second=87 amount=-5 -kerning first=217 second=1298 amount=-1 -kerning first=934 second=221 amount=-5 -kerning first=1187 second=111 amount=-1 -kerning first=960 second=363 amount=-1 -kerning first=955 second=1177 amount=-1 -kerning first=123 second=333 amount=-1 -kerning first=177 second=949 amount=-1 -kerning first=180 second=257 amount=-1 -kerning first=8260 second=338 amount=-2 -kerning first=58 second=963 amount=-1 -kerning first=61 second=271 amount=-1 -kerning first=8366 second=262 amount=-2 -kerning first=221 second=1090 amount=-2 -kerning first=345 second=246 amount=-1 -kerning first=936 second=376 amount=-5 -kerning first=956 second=8212 amount=-2 -kerning first=160 second=273 amount=-1 -kerning first=163 second=45 amount=-2 -kerning first=124 second=964 amount=-3 -kerning first=42 second=287 amount=-1 -kerning first=1046 second=235 amount=-2 -kerning first=297 second=335 amount=-1 -kerning first=300 second=97 amount=-1 -kerning first=65 second=219 amount=-2 -kerning first=202 second=1108 amount=-1 -kerning first=205 second=347 amount=-1 -kerning first=325 second=259 amount=-1 -kerning first=328 second=34 amount=-1 -kerning first=88 second=121 amount=-1 -kerning first=1102 second=8216 amount=-1 -kerning first=931 second=8250 amount=-1 -kerning first=105 second=1028 amount=-2 -kerning first=108 second=288 amount=-2 -kerning first=371 second=336 amount=-2 -kerning first=968 second=248 amount=-1 -kerning first=164 second=220 amount=-2 -kerning first=274 second=350 amount=-1 -kerning first=183 second=1176 amount=-1 -kerning first=186 second=362 amount=-2 -kerning first=298 second=966 amount=-1 -kerning first=301 second=275 amount=-1 -kerning first=66 second=374 amount=-2 -kerning first=209 second=289 amount=-1 -kerning first=1087 second=87 amount=-5 -kerning first=8377 second=367 amount=-1 -kerning first=8370 second=1185 amount=-3 -kerning first=904 second=337 amount=-1 -kerning first=92 second=71 amount=-2 -kerning first=1119 second=249 amount=-1 -kerning first=1116 second=940 amount=-2 -kerning first=946 second=261 amount=-1 -kerning first=249 second=1177 amount=-1 -kerning first=252 second=363 amount=-1 -kerning first=165 second=375 amount=-1 -kerning first=278 second=290 amount=-2 -kerning first=184 second=8211 amount=-2 -kerning first=1064 second=100 amount=-1 -kerning first=187 second=1051 amount=-2 -kerning first=73 second=84 amount=-5 -kerning first=8372 second=8220 amount=-3 -kerning first=905 second=968 amount=-1 -kerning first=93 second=246 amount=-1 -kerning first=1171 second=199 amount=-2 -kerning first=910 second=277 amount=-4 -kerning first=356 second=291 amount=-2 -kerning first=951 second=211 amount=-2 -kerning first=1220 second=339 amount=-1 -kerning first=250 second=8212 amount=-2 -kerning first=253 second=1059 amount=-2 -kerning first=1207 second=1098 amount=-2 -kerning first=973 second=353 amount=-1 -kerning first=1027 second=113 amount=-1 -kerning first=163 second=8249 amount=-3 -kerning first=172 second=85 amount=-2 -kerning first=282 second=235 amount=-1 -kerning first=51 second=335 amount=-1 -kerning first=54 second=97 amount=-1 -kerning first=74 second=259 amount=-1 -kerning first=77 second=34 amount=-3 -kerning first=328 second=8216 amount=-1 -kerning first=916 second=224 amount=-1 -kerning first=1174 second=354 amount=-2 -kerning first=952 second=366 amount=-2 -kerning first=117 second=336 amount=-2 -kerning first=1223 second=970 amount=-1 -kerning first=260 second=248 amount=-1 -kerning first=8240 second=103 amount=-1 -kerning first=52 second=966 amount=-1 -kerning first=55 second=275 amount=-1 -kerning first=316 second=87 amount=-5 -kerning first=1095 second=1185 amount=-3 -kerning first=221 second=99 amount=-4 -kerning first=920 second=379 amount=-1 -kerning first=238 second=953 amount=-1 -kerning first=1299 second=226 amount=-1 -kerning first=266 second=198 amount=-1 -kerning first=36 second=290 amount=-2 -kerning first=178 second=210 amount=-2 -kerning first=289 second=338 amount=-2 -kerning first=294 second=100 amount=-1 -kerning first=8226 second=972 amount=-1 -kerning first=317 second=262 amount=-2 -kerning first=1096 second=8220 amount=-3 -kerning first=923 second=1079 amount=-1 -kerning first=102 second=291 amount=-1 -kerning first=937 second=89 amount=-2 -kerning first=365 second=339 amount=-1 -kerning first=962 second=251 amount=-1 -kerning first=40 second=235 amount=-1 -kerning first=179 second=365 amount=-1 -kerning first=323 second=212 amount=-2 -kerning first=8365 second=370 amount=-2 -kerning first=77 second=8216 amount=-3 -kerning first=86 second=74 amount=-4 -kerning first=1103 second=943 amount=-1 -kerning first=369 second=279 amount=-1 -kerning first=162 second=171 amount=-3 -kerning first=275 second=63 amount=-2 -kerning first=177 second=8217 amount=-3 -kerning first=1048 second=103 amount=-1 -kerning first=299 second=225 amount=-1 -kerning first=8260 second=1257 amount=-1 -kerning first=1080 second=267 amount=-1 -kerning first=67 second=87 amount=-1 -kerning first=321 second=1185 amount=-3 -kerning first=84 second=940 amount=-3 -kerning first=87 second=249 amount=-2 -kerning first=944 second=214 amount=-2 -kerning first=244 second=8218 amount=-1 -kerning first=373 second=226 amount=-1 -kerning first=967 second=356 amount=-5 -kerning first=48 second=100 amount=-1 -kerning first=1049 second=281 amount=-1 -kerning first=188 second=250 amount=-1 -kerning first=185 second=941 amount=-1 -kerning first=1046 second=972 amount=-2 -kerning first=322 second=8220 amount=-3 -kerning first=906 second=227 amount=-1 -kerning first=91 second=199 amount=-2 -kerning first=1118 second=357 amount=-1 -kerning first=108 second=1098 amount=-3 -kerning first=114 second=101 amount=-1 -kerning first=254 second=251 amount=-1 -kerning first=167 second=263 amount=-1 -kerning first=1063 second=228 amount=-1 -kerning first=72 second=212 amount=-2 -kerning first=1083 second=1194 amount=-2 -kerning first=1087 second=370 amount=-2 -kerning first=330 second=943 amount=-1 -kerning first=904 second=1256 amount=-2 -kerning first=89 second=1118 amount=-2 -kerning first=92 second=354 amount=-5 -kerning first=238 second=39 amount=-3 -kerning first=1224 second=229 amount=-1 -kerning first=8218 second=1026 amount=-5 -kerning first=8222 second=286 amount=-1 -kerning first=53 second=225 amount=-1 -kerning first=193 second=355 amount=-1 -kerning first=196 second=115 amount=-1 -kerning first=310 second=267 amount=-2 -kerning first=70 second=1185 amount=-3 -kerning first=73 second=367 amount=-1 -kerning first=93 second=1038 amount=-2 -kerning first=1176 second=242 amount=-1 -kerning first=239 second=214 amount=-2 -kerning first=356 second=1101 amount=-2 -kerning first=951 second=945 amount=-1 -kerning first=119 second=226 amount=-1 -kerning first=1220 second=1262 amount=-2 -kerning first=172 second=368 amount=-2 -kerning first=282 second=972 amount=-1 -kerning first=287 second=281 amount=-1 -kerning first=338 second=357 amount=-1 -kerning first=926 second=269 amount=-1 -kerning first=240 second=369 amount=-1 -kerning first=1298 second=332 amount=-2 -kerning first=174 second=1066 amount=-5 -kerning first=170 second=8221 amount=-3 -kerning first=291 second=228 amount=-1 -kerning first=201 second=240 amount=-1 -kerning first=316 second=370 amount=-2 -kerning first=313 second=1194 amount=-1 -kerning first=8366 second=83 amount=-1 -kerning first=78 second=943 amount=-1 -kerning first=221 second=382 amount=-2 -kerning first=936 second=217 amount=-2 -kerning first=247 second=79 amount=-2 -kerning first=367 second=229 amount=-1 -kerning first=964 second=119 amount=-4 -kerning first=1299 second=963 amount=-1 -kerning first=42 second=103 amount=-1 -kerning first=1039 second=286 amount=-2 -kerning first=182 second=253 amount=-1 -kerning first=289 second=1257 amount=-1 -kerning first=62 second=267 amount=-1 -kerning first=900 second=230 amount=-1 -kerning first=1114 second=120 amount=-2 -kerning first=931 second=947 amount=-4 -kerning first=365 second=1262 amount=-2 -kerning first=161 second=268 amount=-2 -kerning first=46 second=53 amount=-1 -kerning first=40 second=972 amount=-1 -kerning first=43 second=281 amount=-1 -kerning first=86 second=357 amount=-1 -kerning first=89 second=117 amount=-2 -kerning first=1206 second=232 amount=-1 -kerning first=372 second=332 amount=-2 -kerning first=165 second=216 amount=-2 -kerning first=278 second=106 amount=1 -kerning first=47 second=228 amount=-2 -kerning first=190 second=118 amount=-4 -kerning first=299 second=962 amount=-1 -kerning first=64 second=1194 amount=-2 -kerning first=8378 second=363 amount=-1 -kerning first=8372 second=1177 amount=-1 -kerning first=905 second=333 amount=-1 -kerning first=93 second=67 amount=-2 -kerning first=1168 second=245 amount=-1 -kerning first=944 second=949 amount=-1 -kerning first=948 second=257 amount=-1 -kerning first=113 second=229 amount=-1 -kerning first=253 second=359 amount=-1 -kerning first=256 second=119 amount=-4 -kerning first=376 second=271 amount=-4 -kerning first=373 second=963 amount=-1 -kerning first=163 second=1195 amount=-1 -kerning first=166 second=371 amount=-1 -kerning first=276 second=1026 amount=-5 -kerning first=8220 second=234 amount=-1 -kerning first=1049 second=1090 amount=-3 -kerning first=1062 second=334 amount=-1 -kerning first=306 second=218 amount=-2 -kerning first=214 second=230 amount=-1 -kerning first=906 second=964 amount=-3 -kerning first=916 second=45 amount=-2 -kerning first=94 second=242 amount=-1 -kerning first=335 second=120 amount=-2 -kerning first=231 second=947 amount=-1 -kerning first=357 second=287 amount=-1 -kerning first=1223 second=335 amount=-1 -kerning first=971 second=1108 amount=-1 -kerning first=167 second=1069 amount=-1 -kerning first=174 second=81 amount=-2 -kerning first=1063 second=965 amount=-1 -kerning first=1069 second=46 amount=-1 -kerning first=195 second=243 amount=-1 -kerning first=361 second=232 amount=-1 -kerning first=950 second=1176 amount=-1 -kerning first=1224 second=966 amount=-1 -kerning first=36 second=106 amount=1 -kerning first=8226 second=337 amount=-1 -kerning first=53 second=962 amount=-1 -kerning first=1070 second=221 amount=-3 -kerning first=199 second=193 amount=-1 -kerning first=317 second=83 amount=-1 -kerning first=8361 second=261 amount=-1 -kerning first=1096 second=1177 amount=-1 -kerning first=1099 second=363 amount=-1 -kerning first=923 second=375 amount=-1 -kerning first=239 second=949 amount=-1 -kerning first=951 second=8211 amount=-2 -kerning first=119 second=963 amount=-1 -kerning first=122 second=271 amount=-1 -kerning first=37 second=286 amount=-2 -kerning first=1037 second=234 amount=-1 -kerning first=287 second=1090 amount=-3 -kerning first=8230 second=968 amount=-1 -kerning first=60 second=218 amount=-2 -kerning first=1071 second=376 amount=-5 -kerning first=200 second=346 amount=-1 -kerning first=8365 second=211 amount=-2 -kerning first=80 second=360 amount=-2 -kerning first=83 second=120 amount=-1 -kerning first=223 second=273 amount=-1 -kerning first=916 second=8249 amount=-3 -kerning first=103 second=287 amount=-1 -kerning first=1187 second=235 amount=-1 -kerning first=369 second=97 amount=-1 -kerning first=126 second=219 amount=-2 -kerning first=1241 second=34 amount=-1 -kerning first=41 second=231 amount=-1 -kerning first=180 second=361 amount=-1 -kerning first=184 second=121 amount=-1 -kerning first=291 second=965 amount=-1 -kerning first=61 second=373 amount=-4 -kerning first=201 second=1028 amount=-2 -kerning first=204 second=288 amount=-2 -kerning first=8363 second=1184 amount=-5 -kerning first=8366 second=366 amount=-2 -kerning first=107 second=232 amount=-2 -kerning first=247 second=362 amount=-2 -kerning first=367 second=966 amount=-1 -kerning first=373 second=47 amount=-3 -kerning first=160 second=374 amount=-5 -kerning first=273 second=289 amount=-1 -kerning first=39 second=1298 amount=-3 -kerning first=1046 second=337 amount=-2 -kerning first=1049 second=99 amount=-1 -kerning first=188 second=71 amount=-2 -kerning first=300 second=221 amount=-5 -kerning first=1081 second=261 amount=-1 -kerning first=322 second=1177 amount=-1 -kerning first=325 second=363 amount=-1 -kerning first=88 second=245 amount=-2 -kerning first=1210 second=100 amount=-1 -kerning first=968 second=352 amount=-1 -kerning first=167 second=84 amount=-5 -kerning first=43 second=1090 amount=-3 -kerning first=1051 second=277 amount=-1 -kerning first=189 second=246 amount=-1 -kerning first=46 second=334 amount=-1 -kerning first=301 second=376 amount=-5 -kerning first=1087 second=211 amount=-2 -kerning first=323 second=8212 amount=-2 -kerning first=1170 second=113 amount=-1 -kerning first=1119 second=353 amount=-1 -kerning first=946 second=365 amount=-1 -kerning first=168 second=259 amount=-1 -kerning first=8222 second=102 amount=-2 -kerning first=1241 second=8216 amount=-1 -kerning first=47 second=965 amount=-1 -kerning first=53 second=46 amount=-1 -kerning first=1064 second=224 amount=-1 -kerning first=299 second=8250 amount=-1 -kerning first=1084 second=1184 amount=-5 -kerning first=910 second=378 amount=-2 -kerning first=915 second=171 amount=-3 -kerning first=93 second=350 amount=-1 -kerning first=944 second=8217 amount=-3 -kerning first=113 second=966 amount=-1 -kerning first=119 second=47 amount=-3 -kerning first=282 second=337 amount=-1 -kerning first=287 second=99 amount=-1 -kerning first=8230 second=52 amount=-1 -kerning first=54 second=221 amount=-5 -kerning first=194 second=351 amount=-1 -kerning first=197 second=111 amount=-1 -kerning first=306 second=953 amount=-1 -kerning first=311 second=261 amount=-1 -kerning first=74 second=363 amount=-1 -kerning first=240 second=210 amount=-2 -kerning first=363 second=100 amount=-1 -kerning first=952 second=941 amount=-1 -kerning first=955 second=250 amount=-1 -kerning first=1257 second=380 amount=-1 -kerning first=260 second=352 amount=-1 -kerning first=35 second=234 amount=-1 -kerning first=1035 second=187 amount=-1 -kerning first=174 second=364 amount=-2 -kerning first=8240 second=227 amount=-1 -kerning first=55 second=376 amount=-5 -kerning first=195 second=1035 amount=-5 -kerning first=198 second=291 amount=-1 -kerning first=1073 second=89 amount=-5 -kerning first=316 second=211 amount=-2 -kerning first=72 second=8212 amount=-2 -kerning first=920 second=955 amount=-2 -kerning first=928 second=263 amount=-1 -kerning first=294 second=224 amount=-1 -kerning first=8226 second=1256 amount=-2 -kerning first=53 second=8250 amount=-1 -kerning first=1074 second=266 amount=-2 -kerning first=314 second=1184 amount=-5 -kerning first=317 second=366 amount=-2 -kerning first=8369 second=79 amount=-2 -kerning first=239 second=8217 amount=-3 -kerning first=962 second=355 amount=-1 -kerning first=965 second=115 amount=-1 -kerning first=161 second=87 amount=-5 -kerning first=40 second=337 amount=-1 -kerning first=43 second=99 amount=-1 -kerning first=183 second=249 amount=-1 -kerning first=179 second=940 amount=-1 -kerning first=63 second=261 amount=-1 -kerning first=60 second=953 amount=-1 -kerning first=8365 second=945 amount=-1 -kerning first=901 second=226 amount=-1 -kerning first=86 second=198 amount=-6 -kerning first=947 second=281 amount=-1 -kerning first=1187 second=972 amount=-1 -kerning first=249 second=250 amount=-1 -kerning first=162 second=262 amount=-2 -kerning first=271 second=1241 amount=-1 -kerning first=41 second=968 amount=-1 -kerning first=1048 second=227 amount=-1 -kerning first=302 second=89 amount=-5 -kerning first=296 second=1079 amount=-1 -kerning first=1080 second=369 amount=-1 -kerning first=207 second=339 amount=-1 -kerning first=204 second=1098 amount=-3 -kerning first=327 second=251 amount=-1 -kerning first=84 second=1117 amount=-2 -kerning first=87 second=353 amount=-2 -kerning first=90 second=113 amount=-1 -kerning first=936 second=8221 amount=-3 -kerning first=166 second=212 amount=-2 -kerning first=279 second=102 amount=-1 -kerning first=8216 second=283 amount=-1 -kerning first=48 second=224 amount=-1 -kerning first=1046 second=1256 amount=-3 -kerning first=188 second=354 amount=-5 -kerning first=185 second=1118 amount=-1 -kerning first=303 second=266 amount=-2 -kerning first=306 second=39 amount=-3 -kerning first=65 second=1184 amount=-5 -kerning first=1118 second=920 amount=-2 -kerning first=357 second=103 amount=-1 -kerning first=354 second=341 amount=-2 -kerning first=114 second=225 amount=-1 -kerning first=1203 second=1257 amount=-1 -kerning first=254 second=355 amount=-1 -kerning first=377 second=267 amount=-1 -kerning first=167 second=367 amount=-1 -kerning first=164 second=1185 amount=-3 -kerning first=8221 second=230 amount=-1 -kerning first=189 second=1038 amount=-2 -kerning first=1087 second=945 amount=-1 -kerning first=215 second=226 amount=-1 -kerning first=912 second=268 amount=-2 -kerning first=358 second=281 amount=-1 -kerning first=165 second=8220 amount=-3 -kerning first=8218 second=1263 amount=-1 -kerning first=56 second=89 amount=-5 -kerning first=50 second=1079 amount=-1 -kerning first=1067 second=269 amount=-1 -kerning first=310 second=369 amount=-1 -kerning first=76 second=251 amount=-1 -kerning first=216 second=381 amount=-1 -kerning first=923 second=216 amount=-2 -kerning first=233 second=8221 amount=-1 -kerning first=236 second=1066 amount=-5 -kerning first=958 second=118 amount=-4 -kerning first=379 second=1194 amount=-1 -kerning first=172 second=943 amount=-1 -kerning first=176 second=252 amount=-1 -kerning first=282 second=1256 amount=-2 -kerning first=57 second=266 amount=-2 -kerning first=60 second=39 amount=-3 -kerning first=1071 second=217 amount=-2 -kerning first=318 second=79 amount=-2 -kerning first=1103 second=119 amount=-4 -kerning first=338 second=920 amount=-2 -kerning first=916 second=1195 amount=-1 -kerning first=926 second=371 amount=-1 -kerning first=103 second=103 amount=-1 -kerning first=1184 second=286 amount=-3 -kerning first=123 second=267 amount=-1 -kerning first=8260 second=273 amount=-1 -kerning first=61 second=214 amount=-2 -kerning first=1073 second=372 amount=-5 -kerning first=8240 second=964 amount=-3 -kerning first=198 second=1101 amount=-1 -kerning first=316 second=945 amount=-1 -kerning first=81 second=356 amount=-2 -kerning first=928 second=1069 amount=-1 -kerning first=964 second=243 amount=-1 -kerning first=42 second=227 amount=-1 -kerning first=1036 second=1263 amount=-2 -kerning first=182 second=357 amount=-1 -kerning first=185 second=117 amount=-1 -kerning first=297 second=269 amount=-1 -kerning first=62 second=369 amount=-1 -kerning first=202 second=973 amount=-1 -kerning first=8364 second=1176 amount=-1 -kerning first=8369 second=362 amount=-2 -kerning first=900 second=332 amount=-2 -kerning first=108 second=228 amount=-1 -kerning first=251 second=118 amount=-4 -kerning first=125 second=1194 amount=-2 -kerning first=161 second=370 amount=-2 -kerning first=274 second=283 amount=-1 -kerning first=40 second=1256 amount=-2 -kerning first=189 second=67 amount=-2 -kerning first=301 second=217 amount=-2 -kerning first=69 second=79 amount=-2 -kerning first=1083 second=257 amount=-1 -kerning first=209 second=229 amount=-1 -kerning first=8365 second=8211 amount=-2 -kerning first=330 second=119 amount=-4 -kerning first=901 second=963 amount=-1 -kerning first=904 second=271 amount=-1 -kerning first=86 second=920 amount=-2 -kerning first=908 second=44 amount=-1 -kerning first=89 second=241 amount=-3 -kerning first=1206 second=334 amount=-1 -kerning first=375 second=218 amount=-2 -kerning first=278 second=230 amount=-1 -kerning first=1048 second=964 amount=-3 -kerning first=1064 second=45 amount=-2 -kerning first=190 second=242 amount=-1 -kerning first=187 second=923 amount=-3 -kerning first=299 second=947 amount=-4 -kerning first=302 second=372 amount=-5 -kerning first=207 second=1262 amount=-2 -kerning first=1117 second=1108 amount=-1 -kerning first=1168 second=347 amount=-1 -kerning first=236 second=81 amount=-2 -kerning first=356 second=231 amount=-3 -kerning first=948 second=361 amount=-1 -kerning first=951 second=121 amount=-1 -kerning first=113 second=331 amount=2 -kerning first=1256 second=46 amount=-1 -kerning first=256 second=243 amount=-1 -kerning first=376 second=373 amount=-2 -kerning first=973 second=288 amount=-2 -kerning first=276 second=1263 amount=-1 -kerning first=51 second=269 amount=-1 -kerning first=1065 second=220 amount=-1 -kerning first=1085 second=1176 amount=-1 -kerning first=214 second=332 amount=-2 -kerning first=911 second=374 amount=-2 -kerning first=97 second=106 amount=1 -kerning first=354 second=1298 amount=-4 -kerning first=955 second=71 amount=-2 -kerning first=114 second=962 amount=-1 +kerning first=374 second=1088 amount=-3 +kerning first=374 second=1089 amount=-4 +kerning first=374 second=1090 amount=-2 +kerning first=374 second=1091 amount=-2 +kerning first=374 second=1092 amount=-4 +kerning first=374 second=1093 amount=-2 +kerning first=374 second=1094 amount=-3 +kerning first=374 second=1096 amount=-3 +kerning first=374 second=1097 amount=-3 +kerning first=374 second=1098 amount=-2 +kerning first=374 second=1099 amount=-3 +kerning first=374 second=1100 amount=-3 +kerning first=374 second=1101 amount=-4 +kerning first=374 second=1102 amount=-3 +kerning first=374 second=1104 amount=-4 +kerning first=374 second=1105 amount=-4 +kerning first=374 second=1107 amount=-3 +kerning first=374 second=1108 amount=-4 +kerning first=374 second=1109 amount=-3 +kerning first=374 second=1114 amount=-3 +kerning first=374 second=1116 amount=-3 +kerning first=374 second=1117 amount=-3 +kerning first=374 second=1118 amount=-2 +kerning first=374 second=1119 amount=-3 +kerning first=374 second=1169 amount=-3 +kerning first=374 second=1175 amount=-2 +kerning first=374 second=1176 amount=-2 +kerning first=374 second=1177 amount=-4 +kerning first=374 second=1179 amount=-3 +kerning first=374 second=1185 amount=-2 +kerning first=374 second=1187 amount=-3 +kerning first=374 second=1194 amount=-3 +kerning first=374 second=1195 amount=-4 +kerning first=374 second=1199 amount=-2 +kerning first=374 second=1203 amount=-2 +kerning first=374 second=1220 amount=-3 +kerning first=374 second=1224 amount=-3 +kerning first=374 second=1240 amount=-3 +kerning first=374 second=1241 amount=-4 +kerning first=374 second=1256 amount=-3 +kerning first=374 second=1257 amount=-4 +kerning first=374 second=1263 amount=-2 +kerning first=374 second=1298 amount=-5 +kerning first=374 second=8211 amount=-4 +kerning first=374 second=8212 amount=-4 +kerning first=374 second=8218 amount=-4 +kerning first=374 second=8222 amount=-4 kerning first=374 second=8230 amount=-4 -kerning first=55 second=217 amount=-2 -kerning first=78 second=119 amount=-4 -kerning first=1087 second=8211 amount=-2 -kerning first=75 second=359 amount=-1 -kerning first=215 second=963 amount=-1 -kerning first=221 second=44 amount=-4 -kerning first=928 second=84 amount=-5 -kerning first=95 second=1026 amount=-5 -kerning first=1178 second=234 amount=-1 -kerning first=361 second=334 amount=-2 -kerning first=956 second=246 amount=-1 -kerning first=358 second=1090 amount=-3 -kerning first=121 second=218 amount=-2 -kerning first=1240 second=258 amount=-2 -kerning first=36 second=230 amount=-1 -kerning first=171 second=1174 amount=-1 -kerning first=175 second=360 amount=-2 -kerning first=289 second=273 amount=-1 -kerning first=294 second=45 amount=-2 -kerning first=53 second=947 amount=-4 -kerning first=56 second=372 amount=-5 -kerning first=1064 second=8249 amount=-3 -kerning first=1074 second=85 amount=-2 -kerning first=8361 second=365 amount=-1 -kerning first=931 second=259 amount=-1 -kerning first=102 second=231 amount=-1 -kerning first=368 second=46 amount=-1 -kerning first=1037 second=336 amount=-2 -kerning first=8250 second=378 amount=-1 -kerning first=203 second=232 amount=-1 -kerning first=318 second=362 amount=-2 -kerning first=223 second=374 amount=-5 -kerning first=947 second=99 amount=-1 -kerning first=249 second=71 amount=-2 -kerning first=1187 second=337 amount=-1 -kerning first=369 second=221 amount=-5 -kerning first=963 second=351 amount=-1 -kerning first=162 second=83 amount=-1 -kerning first=271 second=233 amount=-1 -kerning first=41 second=333 amount=-1 -kerning first=184 second=245 amount=-1 -kerning first=296 second=375 amount=-1 -kerning first=61 second=949 amount=-1 -kerning first=64 second=257 amount=-1 -kerning first=1080 second=210 amount=-2 -kerning first=316 second=8211 amount=-2 -kerning first=8372 second=250 amount=-1 -kerning first=8366 second=941 amount=-1 -kerning first=87 second=194 amount=-5 -kerning first=104 second=1090 amount=-1 -kerning first=1202 second=277 amount=-1 -kerning first=250 second=246 amount=-1 -kerning first=964 second=1035 amount=-5 -kerning first=967 second=291 amount=-1 -kerning first=42 second=964 amount=-3 -kerning first=48 second=45 amount=-2 -kerning first=8216 second=101 amount=-1 -kerning first=294 second=8249 amount=-3 -kerning first=303 second=85 amount=-2 -kerning first=1081 second=365 amount=-1 -kerning first=88 second=347 amount=-1 -kerning first=234 second=34 amount=-1 -kerning first=108 second=965 amount=-1 -kerning first=114 second=46 amount=-3 -kerning first=1210 second=224 amount=-1 -kerning first=8217 second=279 amount=-1 -kerning first=49 second=220 amount=-2 -kerning first=1063 second=171 amount=-3 -kerning first=189 second=350 amount=-1 -kerning first=69 second=362 amount=-2 -kerning first=209 second=966 amount=-1 -kerning first=92 second=289 amount=-1 -kerning first=912 second=87 amount=-5 -kerning first=89 second=1033 amount=-5 -kerning first=358 second=99 amount=-1 -kerning first=950 second=249 amount=-1 -kerning first=946 second=940 amount=-1 -kerning first=258 second=111 amount=-1 -kerning first=255 second=351 amount=-1 -kerning first=375 second=953 amount=-1 -kerning first=165 second=1177 amount=-1 -kerning first=168 second=363 amount=-1 -kerning first=50 second=375 amount=-1 -kerning first=193 second=290 amount=-2 -kerning first=310 second=210 amount=-3 -kerning first=67 second=8211 amount=-1 -kerning first=1096 second=250 amount=-1 -kerning first=1090 second=941 amount=-1 -kerning first=915 second=262 amount=-2 -kerning first=910 second=954 amount=-3 -kerning first=96 second=234 amount=-1 -kerning first=1171 second=1241 amount=-1 -kerning first=1176 second=187 amount=-1 -kerning first=236 second=364 amount=-2 -kerning first=356 second=968 amount=-2 -kerning first=1220 second=1079 amount=-1 -kerning first=256 second=1035 amount=-5 -kerning first=1263 second=89 amount=-5 -kerning first=1027 second=339 amount=-1 -kerning first=166 second=8212 amount=-2 -kerning first=169 second=1059 amount=-2 -kerning first=973 second=1098 amount=-3 -kerning first=48 second=8249 amount=-3 -kerning first=57 second=85 amount=-2 -kerning first=197 second=235 amount=-1 -kerning first=926 second=212 amount=-2 -kerning first=1184 second=102 amount=-2 -kerning first=234 second=8216 amount=-1 -kerning first=363 second=224 amount=-1 -kerning first=955 second=354 amount=-5 -kerning first=952 second=1118 amount=-1 -kerning first=1298 second=266 amount=-2 -kerning first=35 second=336 amount=-2 -kerning first=1035 second=279 amount=-1 -kerning first=177 second=248 amount=-1 -kerning first=291 second=171 amount=-3 -kerning first=1073 second=213 amount=-2 -kerning first=8363 second=253 amount=-1 -kerning first=81 second=197 amount=-2 -kerning first=221 second=324 amount=-3 -kerning first=928 second=367 amount=-1 -kerning first=956 second=1038 amount=-2 -kerning first=124 second=261 amount=-1 -kerning first=121 second=953 amount=-1 -kerning first=1039 second=226 amount=-1 -kerning first=62 second=210 amount=-2 -kerning first=1074 second=368 amount=-2 -kerning first=202 second=338 amount=-2 -kerning first=205 second=100 amount=-1 -kerning first=317 second=941 amount=-1 -kerning first=322 second=250 amount=-1 -kerning first=343 second=1241 amount=-1 -kerning first=923 second=8220 amount=-3 -kerning first=105 second=277 amount=-1 -kerning first=371 second=89 amount=-5 -kerning first=365 second=1079 amount=-1 -kerning first=161 second=211 amount=-2 -kerning first=274 second=101 amount=-1 -kerning first=183 second=353 amount=-1 -kerning first=186 second=113 amount=-1 -kerning first=298 second=263 amount=-1 -kerning first=63 second=365 amount=-1 -kerning first=1071 second=8221 amount=-3 -kerning first=8377 second=118 amount=-4 -kerning first=1116 second=240 amount=-2 -kerning first=249 second=354 amount=-5 -kerning first=375 second=39 amount=-3 -kerning first=372 second=266 amount=-2 -kerning first=126 second=1184 amount=-5 -kerning first=162 second=366 amount=-2 -kerning first=271 second=970 amount=-1 -kerning first=47 second=171 amount=-3 -kerning first=302 second=213 amount=-2 -kerning first=61 second=8217 amount=-3 -kerning first=1084 second=253 amount=-1 -kerning first=327 second=355 amount=-1 -kerning first=905 second=267 amount=-1 -kerning first=227 second=1185 amount=-1 -kerning first=250 second=1038 amount=-2 +kerning first=374 second=8249 amount=-3 +kerning first=374 second=8250 amount=-2 +kerning first=376 second=38 amount=-2 +kerning first=376 second=44 amount=-4 +kerning first=376 second=45 amount=-4 +kerning first=376 second=46 amount=-4 +kerning first=376 second=47 amount=-4 +kerning first=376 second=110 amount=-3 +kerning first=376 second=63 amount=-1 +kerning first=376 second=65 amount=-5 +kerning first=376 second=67 amount=-3 +kerning first=376 second=114 amount=-3 +kerning first=376 second=71 amount=-3 +kerning first=376 second=74 amount=-6 +kerning first=376 second=79 amount=-3 +kerning first=376 second=81 amount=-3 +kerning first=376 second=83 amount=-1 +kerning first=376 second=97 amount=-4 +kerning first=376 second=99 amount=-4 +kerning first=376 second=100 amount=-4 +kerning first=376 second=101 amount=-4 +kerning first=376 second=103 amount=-4 +kerning first=376 second=109 amount=-3 +kerning first=376 second=111 amount=-4 +kerning first=376 second=112 amount=-3 +kerning first=376 second=113 amount=-4 +kerning first=376 second=115 amount=-3 +kerning first=376 second=117 amount=-2 +kerning first=376 second=118 amount=-2 +kerning first=376 second=119 amount=-2 +kerning first=376 second=120 amount=-2 +kerning first=376 second=121 amount=-2 +kerning first=376 second=122 amount=-2 +kerning first=376 second=171 amount=-3 +kerning first=376 second=173 amount=-4 +kerning first=376 second=187 amount=-2 +kerning first=376 second=193 amount=-5 +kerning first=376 second=194 amount=-5 +kerning first=376 second=196 amount=-5 +kerning first=376 second=197 amount=-5 +kerning first=376 second=198 amount=-5 +kerning first=376 second=199 amount=-3 +kerning first=376 second=210 amount=-3 +kerning first=376 second=211 amount=-3 +kerning first=376 second=212 amount=-3 +kerning first=376 second=213 amount=-3 kerning first=376 second=214 amount=-3 -kerning first=967 second=1101 amount=-1 -kerning first=45 second=1078 amount=-2 -kerning first=1062 second=268 amount=-1 -kerning first=303 second=368 amount=-2 -kerning first=91 second=1241 amount=-1 -kerning first=94 second=187 amount=-1 -kerning first=228 second=8220 amount=-1 -kerning first=357 second=227 amount=-1 -kerning first=952 second=117 amount=-1 -kerning first=117 second=89 amount=-5 -kerning first=1223 second=269 amount=-1 -kerning first=374 second=1187 amount=-3 -kerning first=971 second=973 amount=-1 -kerning first=170 second=251 amount=-1 -kerning first=52 second=263 amount=-1 -kerning first=301 second=8221 amount=-3 -kerning first=304 second=1066 amount=-5 -kerning first=912 second=370 amount=-2 -kerning first=98 second=102 amount=-1 -kerning first=1175 second=283 amount=-1 -kerning first=238 second=252 amount=-1 -kerning first=956 second=67 amount=-2 -kerning first=121 second=39 amount=-3 -kerning first=8226 second=271 amount=-1 -kerning first=56 second=213 amount=-2 -kerning first=1067 second=371 amount=-1 -kerning first=1064 second=1195 amount=-1 -kerning first=314 second=253 amount=-1 -kerning first=76 second=355 amount=-1 -kerning first=958 second=242 amount=-1 -kerning first=1263 second=372 amount=-5 -kerning first=382 second=945 amount=-1 -kerning first=1027 second=1262 amount=-2 -kerning first=37 second=226 amount=-1 -kerning first=176 second=356 amount=-5 -kerning first=179 second=116 amount=-1 -kerning first=57 second=368 amount=-2 -kerning first=197 second=972 amount=-1 -kerning first=200 second=281 amount=-1 -kerning first=8365 second=121 amount=-1 -kerning first=83 second=65 amount=-1 -kerning first=1103 second=243 amount=-1 -kerning first=103 second=227 amount=-1 -kerning first=123 second=369 amount=-1 -kerning first=296 second=216 amount=-2 -kerning first=8260 second=374 amount=-5 -kerning first=58 second=1066 amount=-5 -kerning first=55 second=8221 amount=-3 -kerning first=204 second=228 amount=-1 -kerning first=324 second=118 amount=-1 -kerning first=8372 second=71 amount=-2 -kerning first=81 second=916 amount=-2 -kerning first=84 second=240 amount=-3 -kerning first=221 second=1194 amount=-3 -kerning first=345 second=283 amount=-1 -kerning first=250 second=67 amount=-2 -kerning first=163 second=79 amount=-2 -kerning first=273 second=229 amount=-1 -kerning first=1039 second=963 amount=-1 -kerning first=182 second=920 amount=-2 -kerning first=1046 second=271 amount=-2 -kerning first=297 second=371 amount=-1 -kerning first=294 second=1195 amount=-1 -kerning first=65 second=253 amount=-1 -kerning first=202 second=1257 amount=-1 -kerning first=903 second=218 amount=-2 -kerning first=942 second=360 amount=-2 -kerning first=1203 second=273 amount=-1 -kerning first=1210 second=45 amount=-2 -kerning first=251 second=242 amount=-1 -kerning first=371 second=372 amount=-5 -kerning first=968 second=287 amount=-1 -kerning first=161 second=945 amount=-1 -kerning first=274 second=1240 amount=-2 -kerning first=8217 second=97 amount=-1 -kerning first=46 second=268 amount=-1 -kerning first=1051 second=219 amount=-2 -kerning first=298 second=1069 amount=-1 -kerning first=304 second=81 amount=-2 -kerning first=1079 second=1175 amount=-1 -kerning first=1083 second=361 amount=-1 -kerning first=1087 second=121 amount=-1 -kerning first=330 second=243 amount=-1 -kerning first=904 second=373 amount=-4 -kerning first=86 second=1102 amount=-2 -kerning first=89 second=343 amount=-3 -kerning first=1119 second=288 amount=-2 -kerning first=1219 second=220 amount=-2 -kerning first=278 second=332 amount=-2 -kerning first=50 second=216 amount=-2 -kerning first=193 second=106 amount=1 -kerning first=73 second=118 amount=-4 -kerning first=1096 second=71 amount=-2 -kerning first=334 second=193 amount=-2 -kerning first=915 second=83 amount=-1 -kerning first=93 second=283 amount=-1 -kerning first=1171 second=233 amount=-1 -kerning first=356 second=333 amount=-3 -kerning first=951 second=245 amount=-1 -kerning first=1220 second=375 amount=-1 +kerning first=376 second=216 amount=-3 +kerning first=376 second=224 amount=-4 +kerning first=376 second=225 amount=-4 +kerning first=376 second=226 amount=-4 +kerning first=376 second=227 amount=-4 +kerning first=376 second=228 amount=-4 +kerning first=376 second=229 amount=-4 +kerning first=376 second=230 amount=-4 +kerning first=376 second=231 amount=-4 +kerning first=376 second=232 amount=-4 +kerning first=376 second=233 amount=-4 +kerning first=376 second=234 amount=-4 +kerning first=376 second=235 amount=-4 +kerning first=376 second=240 amount=-4 +kerning first=376 second=241 amount=-3 +kerning first=376 second=242 amount=-4 +kerning first=376 second=243 amount=-4 +kerning first=376 second=244 amount=-4 +kerning first=376 second=245 amount=-4 +kerning first=376 second=246 amount=-4 +kerning first=376 second=248 amount=-4 +kerning first=376 second=249 amount=-2 +kerning first=376 second=250 amount=-2 +kerning first=376 second=251 amount=-2 +kerning first=376 second=252 amount=-2 +kerning first=376 second=253 amount=-2 +kerning first=376 second=256 amount=-5 +kerning first=376 second=257 amount=-4 +kerning first=376 second=258 amount=-5 +kerning first=376 second=259 amount=-4 +kerning first=376 second=260 amount=-5 +kerning first=376 second=261 amount=-4 +kerning first=376 second=262 amount=-3 +kerning first=376 second=263 amount=-4 +kerning first=376 second=266 amount=-3 +kerning first=376 second=267 amount=-4 +kerning first=376 second=268 amount=-3 +kerning first=376 second=269 amount=-4 +kerning first=376 second=271 amount=-4 +kerning first=376 second=273 amount=-4 +kerning first=376 second=275 amount=-4 +kerning first=376 second=277 amount=-4 +kerning first=376 second=279 amount=-4 +kerning first=376 second=281 amount=-4 +kerning first=376 second=283 amount=-4 +kerning first=376 second=286 amount=-3 +kerning first=376 second=287 amount=-4 +kerning first=376 second=288 amount=-3 +kerning first=376 second=289 amount=-4 +kerning first=376 second=290 amount=-3 +kerning first=376 second=291 amount=-4 +kerning first=376 second=324 amount=-3 +kerning first=376 second=326 amount=-3 +kerning first=376 second=328 amount=-3 +kerning first=376 second=331 amount=-3 +kerning first=376 second=332 amount=-3 +kerning first=376 second=333 amount=-4 +kerning first=376 second=334 amount=-3 +kerning first=376 second=335 amount=-4 +kerning first=376 second=336 amount=-3 +kerning first=376 second=337 amount=-4 +kerning first=376 second=338 amount=-3 +kerning first=376 second=339 amount=-4 +kerning first=376 second=341 amount=-3 +kerning first=376 second=343 amount=-3 +kerning first=376 second=345 amount=-3 +kerning first=376 second=346 amount=-1 +kerning first=376 second=347 amount=-3 +kerning first=376 second=350 amount=-1 +kerning first=376 second=351 amount=-3 +kerning first=376 second=352 amount=-1 +kerning first=376 second=353 amount=-3 +kerning first=376 second=361 amount=-2 +kerning first=376 second=363 amount=-2 +kerning first=376 second=365 amount=-2 +kerning first=376 second=367 amount=-2 +kerning first=376 second=369 amount=-2 +kerning first=376 second=371 amount=-2 +kerning first=376 second=373 amount=-2 +kerning first=376 second=375 amount=-2 +kerning first=376 second=378 amount=-2 +kerning first=376 second=380 amount=-2 +kerning first=376 second=382 amount=-2 +kerning first=376 second=913 amount=-5 +kerning first=376 second=916 amount=-5 +kerning first=376 second=920 amount=-3 +kerning first=376 second=923 amount=-5 +kerning first=376 second=927 amount=-3 +kerning first=376 second=937 amount=-2 +kerning first=376 second=940 amount=-4 +kerning first=376 second=941 amount=-4 +kerning first=376 second=942 amount=-3 +kerning first=376 second=943 amount=-2 +kerning first=376 second=945 amount=-4 +kerning first=376 second=947 amount=-2 kerning first=376 second=949 amount=-4 -kerning first=169 second=359 amount=-1 -kerning first=172 second=119 amount=-4 -kerning first=282 second=271 amount=-1 -kerning first=48 second=1195 amount=-1 -kerning first=51 second=371 amount=-1 -kerning first=1068 second=84 amount=-5 -kerning first=191 second=1026 amount=-5 -kerning first=194 second=286 amount=-2 -kerning first=1097 second=246 amount=-1 -kerning first=911 second=950 amount=-1 -kerning first=237 second=360 amount=-2 -kerning first=357 second=964 amount=-3 -kerning first=363 second=45 amount=-2 -kerning first=117 second=372 amount=-5 -kerning first=1210 second=8249 amount=-3 -kerning first=1298 second=85 amount=-2 -kerning first=260 second=287 amount=-1 -kerning first=1035 second=97 amount=-1 -kerning first=52 second=1069 amount=-1 -kerning first=58 second=81 amount=-2 -kerning first=1073 second=34 amount=-3 -kerning first=198 second=231 amount=-1 -kerning first=313 second=361 amount=-1 -kerning first=316 second=121 amount=-1 -kerning first=78 second=243 amount=-1 -kerning first=95 second=1263 amount=-1 -kerning first=1175 second=1095 amount=-2 -kerning first=1178 second=336 amount=-1 -kerning first=956 second=350 amount=-1 -kerning first=36 second=332 amount=-2 -kerning first=1036 second=275 amount=-2 -kerning first=178 second=244 amount=-1 -kerning first=289 second=374 amount=-5 -kerning first=322 second=71 amount=-2 -kerning first=8364 second=249 amount=-1 -kerning first=8361 second=940 amount=-1 -kerning first=1107 second=111 amount=-1 -kerning first=216 second=8230 amount=-1 -kerning first=343 second=233 amount=-1 -kerning first=923 second=1177 amount=-1 -kerning first=931 second=363 amount=-1 -kerning first=102 second=333 amount=-1 -kerning first=365 second=375 amount=-1 -kerning first=962 second=290 amount=-2 -kerning first=122 second=949 amount=-1 -kerning first=125 second=257 amount=-1 -kerning first=37 second=963 amount=-1 -kerning first=40 second=271 amount=-1 -kerning first=298 second=84 amount=-5 -kerning first=200 second=1090 amount=-3 -kerning first=203 second=334 amount=-2 -kerning first=323 second=246 amount=-1 -kerning first=8370 second=199 amount=-2 -kerning first=1103 second=1035 amount=-5 -kerning first=926 second=8212 amount=-2 -kerning first=934 second=1059 amount=-2 -kerning first=103 second=964 amount=-3 -kerning first=363 second=8249 amount=-3 -kerning first=271 second=335 amount=-1 -kerning first=8212 second=50 amount=-2 -kerning first=44 second=219 amount=-1 -kerning first=180 second=1108 amount=-1 -kerning first=184 second=347 amount=-1 -kerning first=299 second=259 amount=-1 -kerning first=302 second=34 amount=-3 -kerning first=1073 second=8216 amount=-3 -kerning first=64 second=361 amount=-1 -kerning first=204 second=965 amount=-1 -kerning first=210 second=46 amount=-1 -kerning first=8372 second=354 amount=-5 -kerning first=8366 second=1118 amount=-1 -kerning first=84 second=1028 amount=-1 -kerning first=87 second=288 amount=-2 -kerning first=944 second=248 amount=-1 -kerning first=250 second=350 amount=-1 -kerning first=160 second=1176 amount=-1 -kerning first=163 second=362 amount=-2 -kerning first=273 second=966 amount=-1 -kerning first=279 second=47 amount=-1 -kerning first=276 second=275 amount=-1 -kerning first=8216 second=225 amount=-1 -kerning first=45 second=374 amount=-4 -kerning first=188 second=289 amount=-1 -kerning first=1081 second=940 amount=-1 -kerning first=1085 second=249 amount=-1 -kerning first=211 second=221 amount=-3 -kerning first=906 second=261 amount=-1 -kerning first=903 second=953 amount=-1 -kerning first=91 second=233 amount=-1 -kerning first=254 second=290 amount=-2 -kerning first=377 second=210 amount=-1 -kerning first=971 second=338 amount=-2 -kerning first=161 second=8211 amount=-2 -kerning first=52 second=84 amount=-5 -kerning first=1063 second=262 amount=-2 -kerning first=192 second=234 amount=-1 -kerning first=304 second=364 amount=-2 -kerning first=72 second=246 amount=-1 -kerning first=1095 second=199 amount=-2 -kerning first=212 second=376 amount=-3 -kerning first=330 second=1035 amount=-5 -kerning first=912 second=211 amount=-2 -kerning first=1119 second=1098 amount=-3 -kerning first=1170 second=339 amount=-1 -kerning first=1175 second=101 amount=-1 -kerning first=950 second=353 amount=-1 -kerning first=1224 second=263 amount=-1 -kerning first=258 second=235 amount=-1 -kerning first=53 second=259 amount=-1 -kerning first=56 second=34 amount=-3 -kerning first=1067 second=212 amount=-2 -kerning first=302 second=8216 amount=-3 -kerning first=1096 second=354 amount=-5 -kerning first=915 second=366 amount=-2 -kerning first=96 second=336 amount=-2 -kerning first=1171 second=970 amount=-1 -kerning first=1176 second=279 amount=-1 -kerning first=239 second=248 amount=-1 -kerning first=1263 second=213 amount=-2 -kerning first=34 second=275 amount=-1 -kerning first=290 second=87 amount=-1 -kerning first=1065 second=1185 amount=-2 -kerning first=197 second=337 amount=-1 -kerning first=200 second=99 amount=-1 -kerning first=311 second=940 amount=-2 -kerning first=315 second=249 amount=-1 -kerning first=77 second=351 amount=-1 -kerning first=80 second=111 amount=-1 -kerning first=1184 second=226 amount=-1 -kerning first=123 second=210 amount=-2 -kerning first=1298 second=368 amount=-2 -kerning first=177 second=352 amount=-1 -kerning first=291 second=262 amount=-2 -kerning first=58 second=364 amount=-2 -kerning first=1066 second=8220 amount=-2 -kerning first=198 second=968 amount=-1 -kerning first=201 second=277 amount=-1 -kerning first=321 second=199 amount=-2 -kerning first=8363 second=357 amount=-1 -kerning first=8366 second=117 amount=-1 -kerning first=78 second=1035 amount=-5 -kerning first=339 second=1098 amount=-1 -kerning first=345 second=101 amount=-1 -kerning first=936 second=251 amount=-1 -kerning first=247 second=113 amount=-1 -kerning first=367 second=263 amount=-1 -kerning first=124 second=365 amount=-1 -kerning first=1299 second=1066 amount=-5 -kerning first=297 second=212 amount=-2 -kerning first=56 second=8216 amount=-3 -kerning first=65 second=74 amount=-1 -kerning first=1074 second=943 amount=-1 -kerning first=205 second=224 amount=-1 -kerning first=317 second=1118 amount=-1 -kerning first=322 second=354 amount=-5 -kerning first=900 second=266 amount=-2 -kerning first=903 second=39 amount=-3 -kerning first=222 second=1184 amount=-2 -kerning first=108 second=171 amount=-3 -kerning first=371 second=213 amount=-2 -kerning first=968 second=103 amount=-1 -kerning first=274 second=225 amount=-1 -kerning first=46 second=87 amount=-3 -kerning first=295 second=1185 amount=-1 -kerning first=298 second=367 amount=-1 -kerning first=63 second=940 amount=-1 -kerning first=323 second=1038 amount=-2 -kerning first=8377 second=242 amount=-1 -kerning first=904 second=214 amount=-2 -kerning first=946 second=116 amount=-1 -kerning first=1206 second=268 amount=-1 -kerning first=165 second=250 amount=-1 -kerning first=162 second=941 amount=-1 -kerning first=275 second=380 amount=-1 -kerning first=47 second=262 amount=-2 -kerning first=190 second=187 amount=-1 -kerning first=296 second=8220 amount=-3 -kerning first=70 second=199 amount=-1 -kerning first=1084 second=357 amount=-1 -kerning first=207 second=1079 amount=-1 -kerning first=213 second=89 amount=-3 -kerning first=905 second=369 amount=-1 -kerning first=90 second=339 amount=-1 -kerning first=93 second=101 amount=-1 -kerning first=1117 second=973 amount=-1 -kerning first=113 second=263 amount=-1 -kerning first=1220 second=216 amount=-2 -kerning first=973 second=228 amount=-1 -kerning first=8216 second=962 amount=-1 -kerning first=51 second=212 amount=-2 -kerning first=1049 second=1194 amount=-2 -kerning first=1062 second=370 amount=-1 -kerning first=194 second=102 amount=-2 -kerning first=303 second=943 amount=-1 -kerning first=306 second=252 amount=-1 -kerning first=71 second=354 amount=-1 -kerning first=214 second=266 amount=-2 -kerning first=916 second=79 amount=-2 -kerning first=94 second=279 amount=-1 -kerning first=91 second=970 amount=-1 -kerning first=354 second=1081 amount=-2 -kerning first=117 second=213 amount=-2 -kerning first=1210 second=1195 amount=-1 -kerning first=1223 second=371 amount=-1 -kerning first=260 second=103 amount=-1 -kerning first=971 second=1257 amount=-1 -kerning first=170 second=355 amount=-1 -kerning first=174 second=115 amount=-1 -kerning first=8225 second=218 amount=-2 -kerning first=52 second=367 amount=-1 -kerning first=49 second=1185 amount=-3 -kerning first=72 second=1038 amount=-2 -kerning first=912 second=945 amount=-1 -kerning first=1170 second=1262 amount=-2 -kerning first=238 second=356 amount=-5 -kerning first=361 second=268 amount=-2 -kerning first=1224 second=1069 amount=-1 -kerning first=1299 second=81 amount=-2 -kerning first=258 second=972 amount=-1 -kerning first=8226 second=373 amount=-4 -kerning first=50 second=8220 amount=-3 -kerning first=317 second=117 amount=-1 -kerning first=314 second=357 amount=-1 -kerning first=365 second=216 amount=-2 -kerning first=962 second=106 amount=1 -kerning first=179 second=240 amount=-1 -kerning first=287 second=1194 amount=-2 -kerning first=57 second=943 amount=-1 -kerning first=60 second=252 amount=-1 -kerning first=197 second=1256 amount=-2 -kerning first=323 second=67 amount=-2 -kerning first=8365 second=245 amount=-1 -kerning first=217 second=8222 amount=-1 -kerning first=934 second=359 amount=-1 -kerning first=940 second=119 amount=-2 -kerning first=1184 second=963 amount=-2 -kerning first=947 second=44 amount=-2 -kerning first=1187 second=271 amount=-1 -kerning first=363 second=1195 amount=-1 -kerning first=960 second=1026 amount=-5 -kerning first=963 second=286 amount=-2 -kerning first=126 second=253 amount=-1 -kerning first=41 second=267 amount=-1 -kerning first=1044 second=218 amount=-1 -kerning first=1202 second=219 amount=-1 -kerning first=367 second=1069 amount=-1 -kerning first=967 second=231 amount=-1 -kerning first=8216 second=46 amount=-1 -kerning first=1046 second=373 amount=-3 -kerning first=65 second=357 amount=-1 -kerning first=1118 second=232 amount=-1 -kerning first=1195 second=1203 amount=-1 -kerning first=254 second=106 amount=1 -kerning first=374 second=256 amount=-5 -kerning first=167 second=118 amount=-4 -kerning first=274 second=962 amount=-1 -kerning first=43 second=1194 amount=-2 -kerning first=46 second=370 amount=-1 -kerning first=1063 second=83 amount=-1 -kerning first=189 second=283 amount=-1 -kerning first=72 second=67 amount=-2 -kerning first=1087 second=245 amount=-1 -kerning first=904 second=949 amount=-1 -kerning first=92 second=229 amount=-1 -kerning first=235 second=119 amount=-1 -kerning first=1224 second=84 amount=-5 -kerning first=252 second=1026 amount=-5 -kerning first=255 second=286 amount=-2 -kerning first=8218 second=376 amount=-4 -kerning first=193 second=230 amount=-1 -kerning first=305 second=360 amount=-2 -kerning first=70 second=923 amount=-4 -kerning first=73 second=242 amount=-1 -kerning first=213 second=372 amount=-2 -kerning first=93 second=1240 amount=-2 -kerning first=1171 second=335 amount=-1 -kerning first=1176 second=97 amount=-1 -kerning first=948 second=1108 amount=-1 -kerning first=951 second=347 amount=-1 -kerning first=113 second=1069 amount=-1 -kerning first=1263 second=34 amount=-3 +kerning first=376 second=950 amount=-2 +kerning first=376 second=951 amount=-3 +kerning first=376 second=952 amount=-2 +kerning first=376 second=953 amount=-2 +kerning first=376 second=954 amount=-3 +kerning first=376 second=955 amount=-2 +kerning first=376 second=957 amount=-2 +kerning first=376 second=959 amount=-4 +kerning first=376 second=961 amount=-5 +kerning first=376 second=962 amount=-4 +kerning first=376 second=963 amount=-4 +kerning first=376 second=964 amount=-2 +kerning first=376 second=965 amount=-2 +kerning first=376 second=966 amount=-4 +kerning first=376 second=967 amount=-2 +kerning first=376 second=968 amount=-2 +kerning first=376 second=969 amount=-4 +kerning first=376 second=970 amount=-2 +kerning first=376 second=972 amount=-4 +kerning first=376 second=973 amount=-2 +kerning first=376 second=974 amount=-4 +kerning first=376 second=1028 amount=-3 +kerning first=376 second=1029 amount=-1 +kerning first=376 second=1032 amount=-6 +kerning first=376 second=1033 amount=-5 +kerning first=376 second=1040 amount=-5 +kerning first=376 second=1044 amount=-5 +kerning first=376 second=1051 amount=-5 +kerning first=376 second=1054 amount=-3 +kerning first=376 second=1057 amount=-3 +kerning first=376 second=1069 amount=-2 +kerning first=376 second=1071 amount=-2 +kerning first=376 second=1072 amount=-4 +kerning first=376 second=1074 amount=-3 +kerning first=376 second=1075 amount=-3 +kerning first=376 second=1077 amount=-4 +kerning first=376 second=1078 amount=-2 +kerning first=376 second=1079 amount=-4 +kerning first=376 second=1080 amount=-3 +kerning first=376 second=1081 amount=-3 +kerning first=376 second=1082 amount=-3 +kerning first=376 second=1084 amount=-3 +kerning first=376 second=1085 amount=-3 +kerning first=376 second=1086 amount=-4 +kerning first=376 second=1087 amount=-3 +kerning first=376 second=1088 amount=-3 +kerning first=376 second=1089 amount=-4 +kerning first=376 second=1090 amount=-2 +kerning first=376 second=1091 amount=-2 +kerning first=376 second=1092 amount=-4 +kerning first=376 second=1093 amount=-2 +kerning first=376 second=1094 amount=-3 +kerning first=376 second=1096 amount=-3 +kerning first=376 second=1097 amount=-3 +kerning first=376 second=1098 amount=-2 +kerning first=376 second=1099 amount=-3 +kerning first=376 second=1100 amount=-3 +kerning first=376 second=1101 amount=-4 +kerning first=376 second=1102 amount=-3 +kerning first=376 second=1104 amount=-4 +kerning first=376 second=1105 amount=-4 +kerning first=376 second=1107 amount=-3 +kerning first=376 second=1108 amount=-4 +kerning first=376 second=1109 amount=-3 +kerning first=376 second=1114 amount=-3 +kerning first=376 second=1116 amount=-3 +kerning first=376 second=1117 amount=-3 +kerning first=376 second=1118 amount=-2 +kerning first=376 second=1119 amount=-3 +kerning first=376 second=1169 amount=-3 kerning first=376 second=1175 amount=-2 -kerning first=973 second=965 amount=-1 -kerning first=172 second=243 amount=-1 -kerning first=282 second=373 amount=-4 -kerning first=8230 second=86 amount=-4 -kerning first=191 second=1263 amount=-1 -kerning first=338 second=232 amount=-1 -kerning first=916 second=362 amount=-2 -kerning first=1174 second=966 amount=-1 -kerning first=240 second=244 amount=-1 -kerning first=955 second=289 amount=-1 -kerning first=1035 second=221 amount=-5 -kerning first=291 second=83 amount=-1 -kerning first=8240 second=261 amount=-1 -kerning first=8225 second=953 amount=-1 -kerning first=198 second=333 amount=-1 -kerning first=316 second=245 amount=-1 -kerning first=221 second=257 amount=-4 -kerning first=912 second=8211 amount=-2 -kerning first=920 second=1051 amount=-1 -kerning first=367 second=84 amount=-5 -kerning first=1299 second=364 amount=-2 -kerning first=261 second=1090 amount=-1 -kerning first=178 second=346 amount=-1 -kerning first=59 second=360 amount=-2 -kerning first=1067 second=8212 amount=-2 -kerning first=205 second=45 amount=-2 -kerning first=202 second=273 amount=-1 -kerning first=8369 second=113 amount=-1 -kerning first=8364 second=353 amount=-1 -kerning first=900 second=85 amount=-2 -kerning first=1107 second=235 amount=-1 -kerning first=343 second=335 amount=-1 -kerning first=105 second=219 amount=-2 -kerning first=371 second=34 amount=-3 -kerning first=125 second=361 amount=-1 -kerning first=1263 second=8216 amount=-3 -kerning first=161 second=121 amount=-1 -kerning first=40 second=373 amount=-4 -kerning first=1047 second=86 amount=-1 -kerning first=179 second=1028 amount=-2 -kerning first=183 second=288 amount=-2 -kerning first=8250 second=1184 amount=-3 -kerning first=206 second=220 amount=-2 -kerning first=323 second=350 amount=-1 -kerning first=86 second=232 amount=-3 -kerning first=223 second=1176 amount=-1 -kerning first=249 second=289 amount=-1 -kerning first=165 second=71 amount=-2 -kerning first=47 second=83 amount=-1 -kerning first=1048 second=261 amount=-1 -kerning first=299 second=363 amount=-1 -kerning first=296 second=1177 amount=-1 -kerning first=207 second=375 amount=-1 -kerning first=327 second=290 amount=-2 -kerning first=905 second=210 amount=-2 -kerning first=1117 second=338 amount=-2 -kerning first=1168 second=100 amount=-1 -kerning first=944 second=352 amount=-1 -kerning first=113 second=84 amount=-5 -kerning first=253 second=234 amount=-1 -kerning first=967 second=968 amount=-1 -kerning first=166 second=246 amount=-1 -kerning first=276 second=376 amount=-5 -kerning first=1062 second=211 amount=-1 -kerning first=300 second=1059 amount=-2 -kerning first=297 second=8212 amount=-2 -kerning first=1085 second=353 amount=-1 -kerning first=205 second=8249 amount=-3 -kerning first=214 second=85 amount=-2 -kerning first=1094 second=113 amount=-1 -kerning first=906 second=365 amount=-1 -kerning first=91 second=335 amount=-1 -kerning first=94 second=97 amount=-1 -kerning first=117 second=34 amount=-3 -kerning first=114 second=259 amount=-1 -kerning first=1223 second=212 amount=-2 -kerning first=371 second=8216 amount=-3 -kerning first=274 second=8250 amount=-1 -kerning first=8225 second=39 amount=-3 -kerning first=1051 second=1184 amount=-5 -kerning first=1063 second=366 amount=-2 -kerning first=192 second=336 amount=-2 -kerning first=72 second=350 amount=-1 -kerning first=904 second=8217 amount=-3 -kerning first=92 second=966 amount=-1 -kerning first=98 second=47 amount=-1 -kerning first=95 second=275 amount=-1 -kerning first=361 second=87 amount=-5 -kerning first=1219 second=1185 amount=-3 -kerning first=1224 second=367 amount=-1 -kerning first=258 second=337 amount=-1 +kerning first=376 second=1176 amount=-2 +kerning first=376 second=1177 amount=-4 +kerning first=376 second=1179 amount=-3 +kerning first=376 second=1185 amount=-2 +kerning first=376 second=1187 amount=-3 +kerning first=376 second=1194 amount=-3 +kerning first=376 second=1195 amount=-4 +kerning first=376 second=1199 amount=-2 +kerning first=376 second=1203 amount=-2 +kerning first=376 second=1220 amount=-3 +kerning first=376 second=1224 amount=-3 +kerning first=376 second=1240 amount=-3 +kerning first=376 second=1241 amount=-4 +kerning first=376 second=1256 amount=-3 +kerning first=376 second=1257 amount=-4 +kerning first=376 second=1263 amount=-2 +kerning first=376 second=1298 amount=-5 +kerning first=376 second=8211 amount=-4 +kerning first=376 second=8212 amount=-4 +kerning first=376 second=8218 amount=-4 +kerning first=376 second=8222 amount=-4 +kerning first=376 second=8230 amount=-4 +kerning first=376 second=8249 amount=-3 +kerning first=376 second=8250 amount=-2 +kerning first=377 second=45 amount=-3 +kerning first=377 second=67 amount=-1 +kerning first=377 second=71 amount=-1 +kerning first=377 second=79 amount=-1 +kerning first=377 second=81 amount=-1 +kerning first=377 second=90 amount=1 +kerning first=377 second=99 amount=-1 +kerning first=377 second=100 amount=-1 +kerning first=377 second=101 amount=-1 +kerning first=377 second=111 amount=-1 +kerning first=377 second=113 amount=-1 +kerning first=377 second=173 amount=-3 +kerning first=377 second=199 amount=-1 +kerning first=377 second=210 amount=-1 +kerning first=377 second=211 amount=-1 +kerning first=377 second=212 amount=-1 +kerning first=377 second=213 amount=-1 +kerning first=377 second=214 amount=-1 +kerning first=377 second=216 amount=-1 +kerning first=377 second=231 amount=-1 +kerning first=377 second=232 amount=-1 +kerning first=377 second=233 amount=-1 +kerning first=377 second=234 amount=-1 +kerning first=377 second=235 amount=-1 +kerning first=377 second=240 amount=-1 +kerning first=377 second=242 amount=-1 +kerning first=377 second=243 amount=-1 +kerning first=377 second=244 amount=-1 +kerning first=377 second=245 amount=-1 +kerning first=377 second=246 amount=-1 +kerning first=377 second=248 amount=-1 +kerning first=377 second=262 amount=-1 +kerning first=377 second=263 amount=-1 +kerning first=377 second=266 amount=-1 +kerning first=377 second=267 amount=-1 +kerning first=377 second=268 amount=-1 +kerning first=377 second=269 amount=-1 +kerning first=377 second=271 amount=-1 +kerning first=377 second=273 amount=-1 +kerning first=377 second=275 amount=-1 +kerning first=377 second=277 amount=-1 +kerning first=377 second=279 amount=-1 +kerning first=377 second=281 amount=-1 +kerning first=377 second=283 amount=-1 +kerning first=377 second=286 amount=-1 +kerning first=377 second=288 amount=-1 +kerning first=377 second=290 amount=-1 +kerning first=377 second=332 amount=-1 +kerning first=377 second=333 amount=-1 +kerning first=377 second=334 amount=-1 +kerning first=377 second=335 amount=-1 +kerning first=377 second=336 amount=-1 +kerning first=377 second=337 amount=-1 +kerning first=377 second=338 amount=-1 +kerning first=377 second=339 amount=-1 +kerning first=377 second=377 amount=1 +kerning first=377 second=379 amount=1 +kerning first=377 second=381 amount=1 +kerning first=377 second=918 amount=1 +kerning first=377 second=920 amount=-1 +kerning first=377 second=927 amount=-1 +kerning first=377 second=940 amount=-1 +kerning first=377 second=941 amount=-1 +kerning first=377 second=945 amount=-1 +kerning first=377 second=949 amount=-1 +kerning first=377 second=959 amount=-1 +kerning first=377 second=962 amount=-1 +kerning first=377 second=963 amount=-1 +kerning first=377 second=966 amount=-1 +kerning first=377 second=972 amount=-1 +kerning first=377 second=1028 amount=-1 +kerning first=377 second=1054 amount=-1 +kerning first=377 second=1057 amount=-1 +kerning first=377 second=1077 amount=-1 +kerning first=377 second=1086 amount=-1 +kerning first=377 second=1089 amount=-1 +kerning first=377 second=1092 amount=-1 +kerning first=377 second=1104 amount=-1 +kerning first=377 second=1105 amount=-1 +kerning first=377 second=1108 amount=-1 +kerning first=377 second=1194 amount=-1 +kerning first=377 second=1195 amount=-1 +kerning first=377 second=1240 amount=-1 +kerning first=377 second=1241 amount=-1 +kerning first=377 second=1256 amount=-1 +kerning first=377 second=1257 amount=-1 +kerning first=377 second=8211 amount=-3 +kerning first=377 second=8212 amount=-3 +kerning first=378 second=99 amount=-1 +kerning first=378 second=100 amount=-1 +kerning first=378 second=101 amount=-1 +kerning first=378 second=111 amount=-1 +kerning first=378 second=113 amount=-1 +kerning first=378 second=231 amount=-1 +kerning first=378 second=232 amount=-1 +kerning first=378 second=233 amount=-1 +kerning first=378 second=234 amount=-1 +kerning first=378 second=235 amount=-1 +kerning first=378 second=240 amount=-1 +kerning first=378 second=242 amount=-1 +kerning first=378 second=243 amount=-1 +kerning first=378 second=244 amount=-1 +kerning first=378 second=245 amount=-1 +kerning first=378 second=246 amount=-1 +kerning first=378 second=248 amount=-1 +kerning first=378 second=263 amount=-1 +kerning first=378 second=267 amount=-1 +kerning first=378 second=269 amount=-1 +kerning first=378 second=271 amount=-1 +kerning first=378 second=273 amount=-1 +kerning first=378 second=275 amount=-1 +kerning first=378 second=277 amount=-1 +kerning first=378 second=279 amount=-1 +kerning first=378 second=281 amount=-1 +kerning first=378 second=283 amount=-1 +kerning first=378 second=333 amount=-1 +kerning first=378 second=335 amount=-1 +kerning first=378 second=337 amount=-1 +kerning first=378 second=339 amount=-1 kerning first=378 second=940 amount=-1 -kerning first=175 second=111 amount=-1 -kerning first=8226 second=214 amount=-2 -kerning first=53 second=363 amount=-1 -kerning first=50 second=1177 amount=-1 -kerning first=1059 second=8218 amount=-1 -kerning first=8361 second=116 amount=-1 -kerning first=76 second=290 amount=-1 -kerning first=923 second=250 amount=-1 -kerning first=915 second=941 amount=-1 -kerning first=239 second=352 amount=-1 -kerning first=958 second=187 amount=-1 -kerning first=954 second=1241 amount=-2 -kerning first=1220 second=8220 amount=-3 -kerning first=1027 second=1079 amount=-1 -kerning first=172 second=1035 amount=-5 -kerning first=176 second=291 amount=-1 -kerning first=1037 second=89 amount=-5 -kerning first=8230 second=369 amount=-1 -kerning first=51 second=8212 amount=-2 -kerning first=54 second=1059 amount=-2 -kerning first=1071 second=251 amount=-1 -kerning first=318 second=113 amount=-1 -kerning first=80 second=235 amount=-1 -kerning first=117 second=8216 amount=-3 -kerning first=1298 second=943 amount=-1 -kerning first=1044 second=39 amount=-2 -kerning first=288 second=1184 amount=-1 -kerning first=291 second=366 amount=-2 -kerning first=61 second=248 amount=-1 -kerning first=204 second=171 amount=-3 -kerning first=324 second=63 amount=-2 -kerning first=8363 second=920 amount=-2 -kerning first=345 second=225 amount=-1 -kerning first=936 second=355 amount=-1 -kerning first=101 second=1076 amount=-1 -kerning first=367 second=367 amount=-1 -kerning first=160 second=249 amount=-1 -kerning first=124 second=940 amount=-1 -kerning first=42 second=261 amount=-1 -kerning first=1046 second=214 amount=-3 -kerning first=1081 second=116 amount=-1 -kerning first=208 second=88 amount=-3 -kerning first=900 second=368 amount=-2 -kerning first=88 second=100 amount=-2 -kerning first=1107 second=972 amount=-1 -kerning first=108 second=262 amount=-2 -kerning first=251 second=187 amount=-1 -kerning first=365 second=8220 amount=-3 -kerning first=968 second=227 amount=-1 -kerning first=164 second=199 amount=-2 -kerning first=46 second=211 amount=-1 -kerning first=183 second=1098 amount=-3 -kerning first=186 second=339 amount=-1 -kerning first=189 second=101 amount=-1 -kerning first=301 second=251 amount=-1 -kerning first=69 second=113 amount=-1 -kerning first=209 second=263 amount=-1 -kerning first=901 second=1066 amount=-5 -kerning first=1119 second=228 amount=-1 -kerning first=946 second=240 amount=-1 -kerning first=1206 second=370 amount=-1 -kerning first=375 second=252 amount=-1 -kerning first=162 second=1118 amount=-1 -kerning first=165 second=354 amount=-5 -kerning first=278 second=266 amount=-2 -kerning first=281 second=39 amount=-1 -kerning first=8218 second=217 amount=-1 -kerning first=47 second=366 amount=-2 -kerning first=44 second=1184 amount=-5 -kerning first=1064 second=79 amount=-2 -kerning first=190 second=279 amount=-1 -kerning first=1084 second=920 amount=-2 -kerning first=8378 second=1026 amount=-5 -kerning first=910 second=253 amount=-2 -kerning first=93 second=225 amount=-1 -kerning first=1117 second=1257 amount=-1 -kerning first=236 second=115 amount=-1 -kerning first=356 second=267 amount=-3 -kerning first=113 second=367 amount=-1 -kerning first=110 second=1185 amount=-1 -kerning first=166 second=1038 amount=-2 -kerning first=282 second=214 amount=-2 -kerning first=45 second=8218 amount=-1 -kerning first=1062 second=945 amount=-1 -kerning first=194 second=226 amount=-1 -kerning first=306 second=356 amount=-5 -kerning first=214 second=368 amount=-2 -kerning first=111 second=8220 amount=-1 -kerning first=260 second=227 amount=-1 -kerning first=35 second=89 amount=-5 -kerning first=55 second=251 amount=-1 -kerning first=215 second=1066 amount=-5 -kerning first=928 second=118 amount=-4 -kerning first=1175 second=962 amount=-1 -kerning first=358 second=1194 amount=-2 -kerning first=361 second=370 amount=-2 -kerning first=956 second=283 amount=-1 -kerning first=121 second=252 amount=-1 -kerning first=258 second=1256 amount=-2 -kerning first=36 second=266 amount=-2 -kerning first=281 second=8222 amount=-1 -kerning first=294 second=79 amount=-2 -kerning first=8226 second=949 amount=-1 -kerning first=1074 second=119 amount=-4 -kerning first=314 second=920 amount=-2 -kerning first=1099 second=1026 amount=-5 -kerning first=102 second=267 amount=-1 -kerning first=1186 second=218 amount=-1 -kerning first=962 second=230 amount=-1 -kerning first=40 second=214 amount=-2 -kerning first=1037 second=372 amount=-5 -kerning first=1034 second=947 amount=-1 -kerning first=176 second=1101 amount=-1 -kerning first=60 second=356 amount=-5 -kerning first=63 second=116 amount=-1 -kerning first=203 second=268 amount=-2 -kerning first=8365 second=347 amount=-1 -kerning first=901 second=81 amount=-2 -kerning first=80 second=972 amount=-1 -kerning first=960 second=1263 amount=-1 -kerning first=126 second=357 amount=-1 -kerning first=162 second=117 amount=-1 -kerning first=271 second=269 amount=-1 -kerning first=41 second=369 amount=-1 -kerning first=180 second=973 amount=-1 -kerning first=8260 second=1176 amount=-1 -kerning first=1080 second=244 amount=-1 -kerning first=207 second=216 amount=-2 -kerning first=327 second=106 amount=1 -kerning first=8372 second=289 amount=-1 -kerning first=87 second=228 amount=-2 -kerning first=230 second=118 amount=-1 -kerning first=345 second=962 amount=-1 -kerning first=250 second=283 amount=-1 -kerning first=967 second=333 amount=-1 -kerning first=166 second=67 amount=-2 -kerning first=276 second=217 amount=-2 -kerning first=39 second=8222 amount=-1 -kerning first=48 second=79 amount=-2 -kerning first=1049 second=257 amount=-1 -kerning first=1046 second=949 amount=-2 -kerning first=188 second=229 amount=-1 -kerning first=303 second=119 amount=-4 -kerning first=300 second=359 amount=-1 -kerning first=65 second=920 amount=-2 -kerning first=205 second=1195 amount=-1 -kerning first=325 second=1026 amount=-5 -kerning first=1118 second=334 amount=-2 -kerning first=254 second=230 amount=-1 -kerning first=971 second=273 amount=-1 -kerning first=167 second=242 amount=-1 -kerning first=968 second=964 amount=-3 -kerning first=274 second=947 amount=-4 -kerning first=189 second=1240 amount=-2 -kerning first=186 second=1262 amount=-2 -kerning first=1083 second=1108 amount=-1 -kerning first=1087 second=347 amount=-1 -kerning first=209 second=1069 amount=-1 -kerning first=215 second=81 amount=-2 -kerning first=912 second=121 amount=-1 -kerning first=89 second=1084 amount=-3 -kerning first=1119 second=965 amount=-1 -kerning first=352 second=1202 amount=-1 -kerning first=946 second=1028 amount=-2 -kerning first=950 second=288 amount=-2 -kerning first=252 second=1263 amount=-1 -kerning first=1026 second=220 amount=-2 -kerning first=1064 second=362 amount=-2 -kerning first=193 second=332 amount=-2 -kerning first=310 second=244 amount=-2 -kerning first=1096 second=289 amount=-1 -kerning first=216 second=256 amount=-2 -kerning first=923 second=71 amount=-2 -kerning first=93 second=962 amount=-1 -kerning first=1176 second=221 amount=-5 -kerning first=954 second=233 amount=-2 -kerning first=1220 second=1177 amount=-1 +kerning first=378 second=941 amount=-1 +kerning first=378 second=945 amount=-1 +kerning first=378 second=949 amount=-1 +kerning first=378 second=959 amount=-1 +kerning first=378 second=962 amount=-1 +kerning first=378 second=963 amount=-1 +kerning first=378 second=966 amount=-1 +kerning first=378 second=972 amount=-1 +kerning first=378 second=1077 amount=-1 +kerning first=378 second=1086 amount=-1 +kerning first=378 second=1089 amount=-1 +kerning first=378 second=1092 amount=-1 +kerning first=378 second=1104 amount=-1 +kerning first=378 second=1105 amount=-1 +kerning first=378 second=1108 amount=-1 +kerning first=378 second=1195 amount=-1 +kerning first=378 second=1241 amount=-1 +kerning first=378 second=1257 amount=-1 +kerning first=379 second=45 amount=-3 +kerning first=379 second=67 amount=-1 +kerning first=379 second=71 amount=-1 +kerning first=379 second=79 amount=-1 +kerning first=379 second=81 amount=-1 +kerning first=379 second=90 amount=1 +kerning first=379 second=99 amount=-1 +kerning first=379 second=100 amount=-1 +kerning first=379 second=101 amount=-1 +kerning first=379 second=111 amount=-1 +kerning first=379 second=113 amount=-1 +kerning first=379 second=173 amount=-3 +kerning first=379 second=199 amount=-1 +kerning first=379 second=210 amount=-1 +kerning first=379 second=211 amount=-1 +kerning first=379 second=212 amount=-1 +kerning first=379 second=213 amount=-1 +kerning first=379 second=214 amount=-1 +kerning first=379 second=216 amount=-1 +kerning first=379 second=231 amount=-1 +kerning first=379 second=232 amount=-1 +kerning first=379 second=233 amount=-1 +kerning first=379 second=234 amount=-1 +kerning first=379 second=235 amount=-1 +kerning first=379 second=240 amount=-1 +kerning first=379 second=242 amount=-1 +kerning first=379 second=243 amount=-1 +kerning first=379 second=244 amount=-1 +kerning first=379 second=245 amount=-1 +kerning first=379 second=246 amount=-1 +kerning first=379 second=248 amount=-1 +kerning first=379 second=262 amount=-1 +kerning first=379 second=263 amount=-1 +kerning first=379 second=266 amount=-1 +kerning first=379 second=267 amount=-1 +kerning first=379 second=268 amount=-1 +kerning first=379 second=269 amount=-1 +kerning first=379 second=271 amount=-1 +kerning first=379 second=273 amount=-1 +kerning first=379 second=275 amount=-1 +kerning first=379 second=277 amount=-1 +kerning first=379 second=279 amount=-1 +kerning first=379 second=281 amount=-1 +kerning first=379 second=283 amount=-1 +kerning first=379 second=286 amount=-1 +kerning first=379 second=288 amount=-1 +kerning first=379 second=290 amount=-1 +kerning first=379 second=332 amount=-1 +kerning first=379 second=333 amount=-1 +kerning first=379 second=334 amount=-1 +kerning first=379 second=335 amount=-1 +kerning first=379 second=336 amount=-1 +kerning first=379 second=337 amount=-1 +kerning first=379 second=338 amount=-1 +kerning first=379 second=339 amount=-1 +kerning first=379 second=377 amount=1 +kerning first=379 second=379 amount=1 +kerning first=379 second=381 amount=1 +kerning first=379 second=918 amount=1 +kerning first=379 second=920 amount=-1 +kerning first=379 second=927 amount=-1 +kerning first=379 second=940 amount=-1 +kerning first=379 second=941 amount=-1 +kerning first=379 second=945 amount=-1 +kerning first=379 second=949 amount=-1 +kerning first=379 second=959 amount=-1 +kerning first=379 second=962 amount=-1 +kerning first=379 second=963 amount=-1 +kerning first=379 second=966 amount=-1 +kerning first=379 second=972 amount=-1 +kerning first=379 second=1028 amount=-1 +kerning first=379 second=1054 amount=-1 +kerning first=379 second=1057 amount=-1 +kerning first=379 second=1077 amount=-1 +kerning first=379 second=1086 amount=-1 +kerning first=379 second=1089 amount=-1 +kerning first=379 second=1092 amount=-1 +kerning first=379 second=1104 amount=-1 +kerning first=379 second=1105 amount=-1 +kerning first=379 second=1108 amount=-1 +kerning first=379 second=1194 amount=-1 +kerning first=379 second=1195 amount=-1 +kerning first=379 second=1240 amount=-1 +kerning first=379 second=1241 amount=-1 +kerning first=379 second=1256 amount=-1 +kerning first=379 second=1257 amount=-1 +kerning first=379 second=8211 amount=-3 +kerning first=379 second=8212 amount=-3 +kerning first=380 second=99 amount=-1 +kerning first=380 second=100 amount=-1 +kerning first=380 second=101 amount=-1 +kerning first=380 second=111 amount=-1 +kerning first=380 second=113 amount=-1 +kerning first=380 second=231 amount=-1 +kerning first=380 second=232 amount=-1 +kerning first=380 second=233 amount=-1 +kerning first=380 second=234 amount=-1 +kerning first=380 second=235 amount=-1 +kerning first=380 second=240 amount=-1 +kerning first=380 second=242 amount=-1 +kerning first=380 second=243 amount=-1 +kerning first=380 second=244 amount=-1 +kerning first=380 second=245 amount=-1 +kerning first=380 second=246 amount=-1 +kerning first=380 second=248 amount=-1 +kerning first=380 second=263 amount=-1 +kerning first=380 second=267 amount=-1 +kerning first=380 second=269 amount=-1 +kerning first=380 second=271 amount=-1 +kerning first=380 second=273 amount=-1 +kerning first=380 second=275 amount=-1 +kerning first=380 second=277 amount=-1 +kerning first=380 second=279 amount=-1 +kerning first=380 second=281 amount=-1 +kerning first=380 second=283 amount=-1 +kerning first=380 second=333 amount=-1 +kerning first=380 second=335 amount=-1 +kerning first=380 second=337 amount=-1 +kerning first=380 second=339 amount=-1 +kerning first=380 second=940 amount=-1 +kerning first=380 second=941 amount=-1 +kerning first=380 second=945 amount=-1 +kerning first=380 second=949 amount=-1 +kerning first=380 second=959 amount=-1 +kerning first=380 second=962 amount=-1 +kerning first=380 second=963 amount=-1 +kerning first=380 second=966 amount=-1 +kerning first=380 second=972 amount=-1 +kerning first=380 second=1077 amount=-1 +kerning first=380 second=1086 amount=-1 +kerning first=380 second=1089 amount=-1 +kerning first=380 second=1092 amount=-1 +kerning first=380 second=1104 amount=-1 +kerning first=380 second=1105 amount=-1 +kerning first=380 second=1108 amount=-1 +kerning first=380 second=1195 amount=-1 +kerning first=380 second=1241 amount=-1 +kerning first=380 second=1257 amount=-1 +kerning first=381 second=45 amount=-3 +kerning first=381 second=67 amount=-1 +kerning first=381 second=71 amount=-1 +kerning first=381 second=79 amount=-1 +kerning first=381 second=81 amount=-1 +kerning first=381 second=90 amount=1 +kerning first=381 second=99 amount=-1 +kerning first=381 second=100 amount=-1 +kerning first=381 second=101 amount=-1 +kerning first=381 second=111 amount=-1 +kerning first=381 second=113 amount=-1 +kerning first=381 second=173 amount=-3 +kerning first=381 second=199 amount=-1 +kerning first=381 second=210 amount=-1 +kerning first=381 second=211 amount=-1 +kerning first=381 second=212 amount=-1 +kerning first=381 second=213 amount=-1 +kerning first=381 second=214 amount=-1 +kerning first=381 second=216 amount=-1 +kerning first=381 second=231 amount=-1 +kerning first=381 second=232 amount=-1 +kerning first=381 second=233 amount=-1 +kerning first=381 second=234 amount=-1 +kerning first=381 second=235 amount=-1 +kerning first=381 second=240 amount=-1 +kerning first=381 second=242 amount=-1 +kerning first=381 second=243 amount=-1 +kerning first=381 second=244 amount=-1 +kerning first=381 second=245 amount=-1 +kerning first=381 second=246 amount=-1 +kerning first=381 second=248 amount=-1 +kerning first=381 second=262 amount=-1 +kerning first=381 second=263 amount=-1 +kerning first=381 second=266 amount=-1 +kerning first=381 second=267 amount=-1 +kerning first=381 second=268 amount=-1 +kerning first=381 second=269 amount=-1 +kerning first=381 second=271 amount=-1 +kerning first=381 second=273 amount=-1 +kerning first=381 second=275 amount=-1 +kerning first=381 second=277 amount=-1 +kerning first=381 second=279 amount=-1 +kerning first=381 second=281 amount=-1 +kerning first=381 second=283 amount=-1 +kerning first=381 second=286 amount=-1 +kerning first=381 second=288 amount=-1 +kerning first=381 second=290 amount=-1 +kerning first=381 second=332 amount=-1 +kerning first=381 second=333 amount=-1 +kerning first=381 second=334 amount=-1 +kerning first=381 second=335 amount=-1 +kerning first=381 second=336 amount=-1 +kerning first=381 second=337 amount=-1 +kerning first=381 second=338 amount=-1 +kerning first=381 second=339 amount=-1 +kerning first=381 second=377 amount=1 +kerning first=381 second=379 amount=1 +kerning first=381 second=381 amount=1 +kerning first=381 second=918 amount=1 +kerning first=381 second=920 amount=-1 +kerning first=381 second=927 amount=-1 +kerning first=381 second=940 amount=-1 +kerning first=381 second=941 amount=-1 +kerning first=381 second=945 amount=-1 +kerning first=381 second=949 amount=-1 +kerning first=381 second=959 amount=-1 +kerning first=381 second=962 amount=-1 +kerning first=381 second=963 amount=-1 +kerning first=381 second=966 amount=-1 +kerning first=381 second=972 amount=-1 +kerning first=381 second=1028 amount=-1 +kerning first=381 second=1054 amount=-1 +kerning first=381 second=1057 amount=-1 +kerning first=381 second=1077 amount=-1 +kerning first=381 second=1086 amount=-1 +kerning first=381 second=1089 amount=-1 +kerning first=381 second=1092 amount=-1 +kerning first=381 second=1104 amount=-1 +kerning first=381 second=1105 amount=-1 +kerning first=381 second=1108 amount=-1 +kerning first=381 second=1194 amount=-1 +kerning first=381 second=1195 amount=-1 +kerning first=381 second=1240 amount=-1 +kerning first=381 second=1241 amount=-1 +kerning first=381 second=1256 amount=-1 +kerning first=381 second=1257 amount=-1 +kerning first=381 second=8211 amount=-3 +kerning first=381 second=8212 amount=-3 +kerning first=382 second=99 amount=-1 +kerning first=382 second=100 amount=-1 +kerning first=382 second=101 amount=-1 +kerning first=382 second=111 amount=-1 +kerning first=382 second=113 amount=-1 +kerning first=382 second=231 amount=-1 +kerning first=382 second=232 amount=-1 +kerning first=382 second=233 amount=-1 +kerning first=382 second=234 amount=-1 +kerning first=382 second=235 amount=-1 +kerning first=382 second=240 amount=-1 +kerning first=382 second=242 amount=-1 +kerning first=382 second=243 amount=-1 +kerning first=382 second=244 amount=-1 kerning first=382 second=245 amount=-1 -kerning first=1027 second=375 amount=-1 -kerning first=282 second=949 amount=-1 -kerning first=287 second=257 amount=-1 -kerning first=8230 second=210 amount=-1 -kerning first=57 second=119 amount=-4 -kerning first=54 second=359 amount=-1 -kerning first=1062 second=8211 amount=-2 -kerning first=194 second=963 amount=-1 -kerning first=197 second=271 amount=-1 -kerning first=74 second=1026 amount=-5 -kerning first=77 second=286 amount=-2 -kerning first=335 second=1090 amount=-1 -kerning first=338 second=334 amount=-2 -kerning first=926 second=246 amount=-1 -kerning first=100 second=218 amount=-2 -kerning first=240 second=346 amount=-1 -kerning first=1223 second=8212 amount=-2 -kerning first=260 second=964 amount=-3 -kerning first=268 second=45 amount=-1 -kerning first=35 second=372 amount=-5 -kerning first=177 second=287 amount=-1 -kerning first=8240 second=365 amount=-1 -kerning first=201 second=219 amount=-2 -kerning first=316 second=347 amount=-1 -kerning first=313 second=1108 amount=-1 -kerning first=221 second=361 amount=-2 -kerning first=345 second=46 amount=-3 -kerning first=936 second=196 amount=-3 -kerning first=101 second=373 amount=-1 -kerning first=1194 second=86 amount=-1 -kerning first=182 second=232 amount=-1 -kerning first=294 second=362 amount=-2 -kerning first=8226 second=8217 amount=-3 -kerning first=289 second=1176 amount=-1 -kerning first=62 second=244 amount=-1 -kerning first=202 second=374 amount=-5 -kerning first=322 second=289 amount=-1 -kerning first=79 second=1298 amount=-1 -kerning first=1107 second=337 amount=-1 -kerning first=346 second=221 amount=-2 -kerning first=942 second=111 amount=-1 -kerning first=108 second=83 amount=-1 -kerning first=365 second=1177 amount=-1 -kerning first=161 second=245 amount=-1 -kerning first=40 second=949 amount=-1 -kerning first=43 second=257 amount=-1 -kerning first=8211 second=88 amount=-3 -kerning first=66 second=194 amount=-1 -kerning first=209 second=84 amount=-5 -kerning first=8370 second=1241 amount=-1 -kerning first=8377 second=187 amount=-1 -kerning first=901 second=364 amount=-2 -kerning first=86 second=334 amount=-2 -kerning first=1116 second=277 amount=-2 -kerning first=1206 second=211 amount=-1 -kerning first=369 second=1059 amount=-2 -kerning first=268 second=8249 amount=-1 -kerning first=278 second=85 amount=-2 -kerning first=1048 second=365 amount=-1 -kerning first=190 second=97 amount=-1 -kerning first=64 second=1108 amount=-1 -kerning first=70 second=109 amount=-1 -kerning first=910 second=74 amount=-6 -kerning first=87 second=965 amount=-2 -kerning first=1168 second=224 amount=-1 -kerning first=1202 second=1184 amount=-2 -kerning first=253 second=336 amount=-2 -kerning first=376 second=248 amount=-4 -kerning first=973 second=171 amount=-3 -kerning first=166 second=350 amount=-1 -kerning first=45 second=1176 amount=-1 -kerning first=48 second=362 amount=-2 -kerning first=188 second=966 amount=-1 -kerning first=191 second=275 amount=-1 -kerning first=68 second=1033 amount=-1 -kerning first=906 second=940 amount=-1 -kerning first=94 second=221 amount=-5 -kerning first=237 second=111 amount=-1 -kerning first=357 second=261 amount=-1 -kerning first=1028 second=88 amount=-2 -kerning first=170 second=290 amount=-2 -kerning first=46 second=8211 amount=-1 -kerning first=1063 second=941 amount=-1 -kerning first=75 second=234 amount=-2 -kerning first=1095 second=1241 amount=-1 -kerning first=215 second=364 amount=-2 -kerning first=95 second=376 amount=-5 -kerning first=1170 second=1079 amount=-1 -kerning first=1178 second=89 amount=-2 -kerning first=238 second=291 amount=-1 -kerning first=361 second=211 amount=-2 -kerning first=950 second=1098 amount=-3 -kerning first=956 second=101 amount=-1 -kerning first=36 second=85 amount=-2 -kerning first=1036 second=38 amount=-2 -kerning first=175 second=235 amount=-1 -kerning first=8218 second=8221 amount=-1 -kerning first=8222 second=1066 amount=-5 -kerning first=8361 second=240 amount=-1 -kerning first=1102 second=102 amount=-1 -kerning first=915 second=1118 amount=-1 -kerning first=923 second=354 amount=-5 -kerning first=93 second=8250 amount=-1 -kerning first=1186 second=39 amount=-2 -kerning first=958 second=279 amount=-1 -kerning first=122 second=248 amount=-1 -kerning first=1037 second=213 amount=-2 -kerning first=282 second=8217 amount=-3 -kerning first=1071 second=355 amount=-1 -kerning first=203 second=87 amount=-5 -kerning first=80 second=337 amount=-1 -kerning first=223 second=249 amount=-1 -kerning first=926 second=1038 amount=-2 -kerning first=103 second=261 amount=-1 -kerning first=100 second=953 amount=-1 -kerning first=360 second=8218 amount=-1 -kerning first=963 second=226 amount=-1 -kerning first=263 second=1078 amount=-1 -kerning first=41 second=210 amount=-2 -kerning first=180 second=338 amount=-2 -kerning first=184 second=100 amount=-1 -kerning first=291 second=941 amount=-1 -kerning first=296 second=250 amount=-1 -kerning first=61 second=352 amount=-1 -kerning first=204 second=262 amount=-2 -kerning first=321 second=1241 amount=-1 -kerning first=84 second=277 amount=-3 -kerning first=350 second=89 amount=-2 -kerning first=244 second=1098 amount=-1 -kerning first=247 second=339 amount=-1 -kerning first=250 second=101 amount=-1 -kerning first=163 second=113 amount=-1 -kerning first=160 second=353 amount=-1 -kerning first=269 second=955 amount=-1 -kerning first=273 second=263 amount=-1 -kerning first=42 second=365 amount=-1 -kerning first=1039 second=1066 amount=-5 -kerning first=1081 second=240 amount=-1 -kerning first=328 second=102 amount=-1 -kerning first=903 second=252 amount=-1 -kerning first=900 second=943 amount=-1 -kerning first=88 second=224 amount=-1 -kerning first=105 second=1184 amount=-5 -kerning first=108 second=366 amount=-2 -kerning first=1210 second=79 amount=-2 -kerning first=251 second=279 amount=-1 -kerning first=40 second=8217 amount=-3 -kerning first=1051 second=253 amount=-1 -kerning first=189 second=225 amount=-1 -kerning first=301 second=355 amount=-1 -kerning first=304 second=115 amount=-1 -kerning first=206 second=1185 amount=-3 -kerning first=209 second=367 amount=-1 -kerning first=86 second=1220 amount=-2 -kerning first=1206 second=945 amount=-1 -kerning first=375 second=356 amount=-5 -kerning first=255 second=226 amount=-1 -kerning first=278 second=368 amount=-2 -kerning first=8212 second=1069 amount=-1 -kerning first=8222 second=81 amount=-1 -kerning first=47 second=941 amount=-1 -kerning first=50 second=250 amount=-1 -kerning first=70 second=1241 amount=-1 -kerning first=73 second=187 amount=-1 -kerning first=207 second=8220 amount=-3 -kerning first=8378 second=1263 amount=-1 -kerning first=915 second=117 amount=-1 -kerning first=1171 second=269 amount=-1 -kerning first=96 second=89 amount=-5 -kerning first=356 second=369 amount=-2 -kerning first=948 second=973 amount=-1 -kerning first=113 second=942 amount=2 -kerning first=1027 second=216 amount=-2 -kerning first=276 second=8221 amount=-3 -kerning first=1068 second=118 amount=-1 -kerning first=311 second=240 amount=-2 -kerning first=1097 second=283 amount=-1 -kerning first=214 second=943 amount=-1 -kerning first=335 second=382 amount=-1 -kerning first=926 second=67 amount=-2 -kerning first=100 second=39 amount=-3 -kerning first=354 second=8222 amount=-3 -kerning first=363 second=79 amount=-2 -kerning first=955 second=229 amount=-1 -kerning first=1298 second=119 amount=-4 -kerning first=35 second=213 amount=-2 -kerning first=177 second=103 amount=-1 -kerning first=55 second=355 amount=-1 -kerning first=58 second=115 amount=-1 -kerning first=198 second=267 amount=-1 -kerning first=1066 second=1046 amount=-2 -kerning first=928 second=242 amount=-1 -kerning first=920 second=923 amount=-2 -kerning first=238 second=1101 amount=-1 -kerning first=361 second=945 amount=-1 -kerning first=956 second=1240 amount=-2 -kerning first=121 second=356 amount=-5 -kerning first=124 second=116 amount=-1 -kerning first=36 second=368 amount=-2 -kerning first=1039 second=81 amount=-2 -kerning first=175 second=972 amount=-1 -kerning first=178 second=281 amount=-1 -kerning first=1074 second=243 amount=-1 -kerning first=8361 second=1028 amount=-2 -kerning first=8364 second=288 amount=-2 -kerning first=1099 second=1263 amount=-1 -kerning first=343 second=269 amount=-1 -kerning first=962 second=332 amount=-2 -kerning first=37 second=1066 amount=-5 -kerning first=183 second=228 amount=-1 -kerning first=298 second=118 amount=-4 -kerning first=63 second=240 amount=-1 -kerning first=200 second=1194 amount=-2 -kerning first=203 second=370 amount=-2 -kerning first=323 second=283 amount=-1 -kerning first=8370 second=233 amount=-1 -kerning first=80 second=1256 amount=-2 -kerning first=947 second=257 amount=-1 -kerning first=1187 second=949 amount=-1 -kerning first=249 second=229 amount=-1 -kerning first=369 second=359 amount=-1 -kerning first=372 second=119 amount=-1 -kerning first=963 second=963 amount=-1 -kerning first=126 second=920 amount=-2 -kerning first=271 second=371 amount=-1 -kerning first=8212 second=84 amount=-4 -kerning first=44 second=253 amount=-1 -kerning first=180 second=1257 amount=-1 -kerning first=1080 second=346 amount=-1 -kerning first=327 second=230 amount=-1 +kerning first=382 second=246 amount=-1 +kerning first=382 second=248 amount=-1 +kerning first=382 second=263 amount=-1 +kerning first=382 second=267 amount=-1 +kerning first=382 second=269 amount=-1 +kerning first=382 second=271 amount=-1 +kerning first=382 second=273 amount=-1 +kerning first=382 second=275 amount=-1 +kerning first=382 second=277 amount=-1 +kerning first=382 second=279 amount=-1 +kerning first=382 second=281 amount=-1 +kerning first=382 second=283 amount=-1 +kerning first=382 second=333 amount=-1 +kerning first=382 second=335 amount=-1 +kerning first=382 second=337 amount=-1 +kerning first=382 second=339 amount=-1 +kerning first=382 second=940 amount=-1 +kerning first=382 second=941 amount=-1 +kerning first=382 second=945 amount=-1 +kerning first=382 second=949 amount=-1 +kerning first=382 second=959 amount=-1 +kerning first=382 second=962 amount=-1 +kerning first=382 second=963 amount=-1 +kerning first=382 second=966 amount=-1 +kerning first=382 second=972 amount=-1 +kerning first=382 second=1077 amount=-1 +kerning first=382 second=1086 amount=-1 +kerning first=382 second=1089 amount=-1 +kerning first=382 second=1092 amount=-1 +kerning first=382 second=1104 amount=-1 +kerning first=382 second=1105 amount=-1 +kerning first=382 second=1108 amount=-1 +kerning first=382 second=1195 amount=-1 +kerning first=382 second=1241 amount=-1 +kerning first=382 second=1257 amount=-1 +kerning first=902 second=34 amount=-3 +kerning first=902 second=38 amount=-1 +kerning first=902 second=39 amount=-3 +kerning first=902 second=45 amount=-2 +kerning first=902 second=63 amount=-5 +kerning first=902 second=67 amount=-2 +kerning first=902 second=71 amount=-2 +kerning first=902 second=74 amount=-1 +kerning first=902 second=79 amount=-2 +kerning first=902 second=81 amount=-2 +kerning first=902 second=83 amount=-1 +kerning first=902 second=84 amount=-5 +kerning first=902 second=85 amount=-2 +kerning first=902 second=86 amount=-6 +kerning first=902 second=87 amount=-5 +kerning first=902 second=89 amount=-5 +kerning first=902 second=97 amount=-1 +kerning first=902 second=99 amount=-1 +kerning first=902 second=100 amount=-1 +kerning first=902 second=101 amount=-1 +kerning first=902 second=102 amount=-2 +kerning first=902 second=103 amount=-1 +kerning first=902 second=106 amount=1 +kerning first=902 second=111 amount=-1 +kerning first=902 second=113 amount=-1 +kerning first=902 second=115 amount=-1 +kerning first=902 second=116 amount=-1 +kerning first=902 second=117 amount=-1 +kerning first=902 second=118 amount=-4 +kerning first=902 second=119 amount=-4 +kerning first=902 second=121 amount=-1 +kerning first=902 second=171 amount=-3 +kerning first=902 second=173 amount=-2 +kerning first=902 second=187 amount=-1 +kerning first=902 second=199 amount=-2 +kerning first=902 second=210 amount=-2 +kerning first=902 second=211 amount=-2 +kerning first=902 second=212 amount=-2 +kerning first=902 second=213 amount=-2 +kerning first=902 second=214 amount=-2 +kerning first=902 second=216 amount=-2 +kerning first=902 second=217 amount=-2 +kerning first=902 second=218 amount=-2 +kerning first=902 second=219 amount=-2 +kerning first=902 second=220 amount=-2 +kerning first=902 second=221 amount=-5 +kerning first=902 second=224 amount=-1 +kerning first=902 second=225 amount=-1 +kerning first=902 second=226 amount=-1 +kerning first=902 second=227 amount=-1 +kerning first=902 second=228 amount=-1 +kerning first=902 second=229 amount=-1 +kerning first=902 second=230 amount=-1 +kerning first=902 second=231 amount=-1 +kerning first=902 second=232 amount=-1 +kerning first=902 second=233 amount=-1 +kerning first=902 second=234 amount=-1 +kerning first=902 second=235 amount=-1 +kerning first=902 second=240 amount=-1 +kerning first=902 second=242 amount=-1 +kerning first=902 second=243 amount=-1 +kerning first=902 second=244 amount=-1 +kerning first=902 second=245 amount=-1 +kerning first=902 second=246 amount=-1 +kerning first=902 second=248 amount=-1 +kerning first=902 second=249 amount=-1 +kerning first=902 second=250 amount=-1 +kerning first=902 second=251 amount=-1 +kerning first=902 second=252 amount=-1 +kerning first=902 second=253 amount=-1 +kerning first=902 second=257 amount=-1 +kerning first=902 second=259 amount=-1 +kerning first=902 second=261 amount=-1 +kerning first=902 second=262 amount=-2 +kerning first=902 second=263 amount=-1 +kerning first=902 second=266 amount=-2 +kerning first=902 second=267 amount=-1 +kerning first=902 second=268 amount=-2 +kerning first=902 second=269 amount=-1 +kerning first=902 second=271 amount=-1 +kerning first=902 second=273 amount=-1 +kerning first=902 second=275 amount=-1 +kerning first=902 second=277 amount=-1 +kerning first=902 second=279 amount=-1 +kerning first=902 second=281 amount=-1 +kerning first=902 second=283 amount=-1 +kerning first=902 second=286 amount=-2 +kerning first=902 second=287 amount=-1 +kerning first=902 second=288 amount=-2 +kerning first=902 second=289 amount=-1 +kerning first=902 second=290 amount=-2 +kerning first=902 second=291 amount=-1 +kerning first=902 second=332 amount=-2 +kerning first=902 second=333 amount=-1 +kerning first=902 second=334 amount=-2 +kerning first=902 second=335 amount=-1 +kerning first=902 second=336 amount=-2 +kerning first=902 second=337 amount=-1 +kerning first=902 second=338 amount=-2 +kerning first=902 second=339 amount=-1 +kerning first=902 second=346 amount=-1 +kerning first=902 second=347 amount=-1 +kerning first=902 second=350 amount=-1 +kerning first=902 second=351 amount=-1 +kerning first=902 second=352 amount=-1 +kerning first=902 second=353 amount=-1 +kerning first=902 second=354 amount=-5 +kerning first=902 second=355 amount=-1 +kerning first=902 second=356 amount=-5 +kerning first=902 second=357 amount=-1 +kerning first=902 second=359 amount=-1 kerning first=902 second=360 amount=-2 -kerning first=1117 second=273 amount=-1 -kerning first=1168 second=45 amount=-2 -kerning first=350 second=372 amount=-2 -kerning first=944 second=287 amount=-1 -kerning first=107 second=945 amount=-2 -kerning first=247 second=1262 amount=-2 -kerning first=250 second=1240 amount=-2 -kerning first=273 second=1069 amount=-1 -kerning first=8216 second=259 amount=-1 -kerning first=1049 second=361 amount=-1 -kerning first=303 second=243 amount=-1 -kerning first=1081 second=1028 amount=-2 -kerning first=1085 second=288 amount=-2 -kerning first=325 second=1263 amount=-1 -kerning first=91 second=269 amount=-1 -kerning first=1210 second=362 amount=-2 -kerning first=254 second=332 amount=-2 -kerning first=377 second=244 amount=-1 -kerning first=971 second=374 amount=-5 -kerning first=170 second=106 amount=1 -kerning first=52 second=118 amount=-4 -kerning first=189 second=962 amount=-1 -kerning first=72 second=283 amount=-1 -kerning first=1095 second=233 amount=-1 -kerning first=912 second=245 amount=-1 -kerning first=95 second=217 amount=-2 -kerning first=1170 second=375 amount=-1 -kerning first=358 second=257 amount=-1 -kerning first=1206 second=8211 amount=-2 -kerning first=255 second=963 amount=-1 -kerning first=258 second=271 amount=-1 -kerning first=168 second=1026 amount=-5 -kerning first=1033 second=84 amount=-5 -kerning first=8222 second=364 amount=-1 -kerning first=1067 second=246 amount=-1 -kerning first=196 second=218 amount=-2 -kerning first=310 second=346 amount=-1 -kerning first=213 second=1174 amount=-3 -kerning first=340 second=45 amount=-1 -kerning first=93 second=947 amount=-4 -kerning first=96 second=372 amount=-5 -kerning first=1168 second=8249 amount=-3 -kerning first=239 second=287 amount=-1 -kerning first=954 second=335 amount=-2 -kerning first=958 second=97 amount=-1 -kerning first=379 second=1108 amount=-1 -kerning first=37 second=81 amount=-2 -kerning first=1037 second=34 amount=-3 -kerning first=176 second=231 amount=-1 -kerning first=287 second=361 amount=-1 -kerning first=57 second=243 amount=-1 -kerning first=197 second=373 amount=-4 -kerning first=315 second=288 amount=-1 -kerning first=74 second=1263 amount=-1 -kerning first=1097 second=1095 amount=-2 -kerning first=926 second=350 amount=-1 -kerning first=363 second=362 amount=-2 -kerning first=955 second=966 amount=-1 -kerning first=123 second=244 amount=-1 -kerning first=960 second=275 amount=-1 -kerning first=38 second=256 amount=-1 -kerning first=296 second=71 amount=-2 -kerning first=8240 second=940 amount=-1 -kerning first=8260 second=249 amount=-1 -kerning first=1073 second=351 amount=-1 -kerning first=1076 second=111 amount=-1 -kerning first=204 second=83 amount=-1 -kerning first=321 second=233 amount=-1 -kerning first=1101 second=967 amount=-2 -kerning first=936 second=290 amount=-2 -kerning first=361 second=8211 amount=-2 -kerning first=364 second=1051 amount=-1 -kerning first=273 second=84 amount=-5 -kerning first=1039 second=364 amount=-2 -kerning first=182 second=334 amount=-2 -kerning first=178 second=1090 amount=-3 -kerning first=297 second=246 amount=-1 -kerning first=62 second=346 amount=-1 -kerning first=1074 second=1035 amount=-5 -kerning first=1078 second=291 amount=-1 -kerning first=8364 second=1098 amount=-3 -kerning first=8369 second=339 amount=-1 -kerning first=88 second=45 amount=-3 -kerning first=340 second=8249 amount=-1 -kerning first=942 second=235 amount=-1 -kerning first=251 second=97 amount=-1 -kerning first=125 second=1108 amount=-1 -kerning first=161 second=347 amount=-1 -kerning first=274 second=259 amount=-1 -kerning first=277 second=34 amount=-1 -kerning first=43 second=361 amount=-1 -kerning first=1037 second=8216 amount=-3 -kerning first=46 second=121 amount=-1 -kerning first=183 second=965 amount=-1 -kerning first=63 second=1028 amount=-2 -kerning first=8370 second=970 amount=-1 -kerning first=8377 second=279 amount=-1 -kerning first=904 second=248 amount=-1 -kerning first=1119 second=171 amount=-3 -kerning first=352 second=260 amount=-1 -kerning first=112 second=122 amount=-1 -kerning first=249 second=966 amount=-1 -kerning first=252 second=275 amount=-1 -kerning first=966 second=1076 amount=-1 -kerning first=165 second=289 amount=-1 -kerning first=50 second=71 amount=-2 -kerning first=1048 second=940 amount=-1 -kerning first=190 second=221 amount=-5 -kerning first=302 second=351 amount=-1 -kerning first=305 second=111 amount=-1 -kerning first=70 second=233 amount=-1 -kerning first=207 second=1177 amount=-1 +kerning first=902 second=361 amount=-1 +kerning first=902 second=362 amount=-2 +kerning first=902 second=363 amount=-1 +kerning first=902 second=364 amount=-2 +kerning first=902 second=365 amount=-1 +kerning first=902 second=366 amount=-2 +kerning first=902 second=367 amount=-1 +kerning first=902 second=368 amount=-2 +kerning first=902 second=369 amount=-1 +kerning first=902 second=370 amount=-2 +kerning first=902 second=371 amount=-1 +kerning first=902 second=372 amount=-5 +kerning first=902 second=373 amount=-4 +kerning first=902 second=374 amount=-5 +kerning first=902 second=375 amount=-1 +kerning first=902 second=376 amount=-5 +kerning first=902 second=920 amount=-2 +kerning first=902 second=927 amount=-2 +kerning first=902 second=932 amount=-5 +kerning first=902 second=933 amount=-5 +kerning first=902 second=936 amount=-3 +kerning first=902 second=939 amount=-5 +kerning first=902 second=940 amount=-1 +kerning first=902 second=941 amount=-1 +kerning first=902 second=943 amount=-1 +kerning first=902 second=945 amount=-1 +kerning first=902 second=947 amount=-4 +kerning first=902 second=949 amount=-1 +kerning first=902 second=950 amount=-1 +kerning first=902 second=953 amount=-1 +kerning first=902 second=957 amount=-4 +kerning first=902 second=959 amount=-1 +kerning first=902 second=962 amount=-1 +kerning first=902 second=963 amount=-1 +kerning first=902 second=964 amount=-3 +kerning first=902 second=965 amount=-1 +kerning first=902 second=966 amount=-1 +kerning first=902 second=968 amount=-1 +kerning first=902 second=970 amount=-1 +kerning first=902 second=972 amount=-1 +kerning first=902 second=973 amount=-1 +kerning first=902 second=1026 amount=-5 +kerning first=902 second=1028 amount=-2 +kerning first=902 second=1029 amount=-1 +kerning first=902 second=1032 amount=-1 +kerning first=902 second=1035 amount=-5 +kerning first=902 second=1038 amount=-2 +kerning first=902 second=1054 amount=-2 +kerning first=902 second=1057 amount=-2 +kerning first=902 second=1058 amount=-5 +kerning first=902 second=1059 amount=-2 +kerning first=902 second=1063 amount=-3 +kerning first=902 second=1066 amount=-5 +kerning first=902 second=1069 amount=-1 +kerning first=902 second=1072 amount=-1 +kerning first=902 second=1077 amount=-1 +kerning first=902 second=1079 amount=-1 +kerning first=902 second=1086 amount=-1 +kerning first=902 second=1089 amount=-1 +kerning first=902 second=1090 amount=-3 +kerning first=902 second=1091 amount=-1 +kerning first=902 second=1092 amount=-1 +kerning first=902 second=1098 amount=-3 +kerning first=902 second=1101 amount=-1 +kerning first=902 second=1104 amount=-1 +kerning first=902 second=1105 amount=-1 +kerning first=902 second=1108 amount=-1 +kerning first=902 second=1109 amount=-1 +kerning first=902 second=1112 amount=1 +kerning first=902 second=1118 amount=-1 +kerning first=902 second=1176 amount=-1 +kerning first=902 second=1177 amount=-1 +kerning first=902 second=1184 amount=-5 +kerning first=902 second=1185 amount=-3 +kerning first=902 second=1194 amount=-2 +kerning first=902 second=1195 amount=-1 +kerning first=902 second=1198 amount=-5 +kerning first=902 second=1199 amount=-4 +kerning first=902 second=1240 amount=-2 +kerning first=902 second=1241 amount=-1 +kerning first=902 second=1256 amount=-2 +kerning first=902 second=1257 amount=-1 +kerning first=902 second=1262 amount=-2 +kerning first=902 second=1263 amount=-1 +kerning first=902 second=8211 amount=-2 +kerning first=902 second=8212 amount=-2 +kerning first=902 second=8216 amount=-3 +kerning first=902 second=8217 amount=-3 +kerning first=902 second=8220 amount=-3 +kerning first=902 second=8221 amount=-3 +kerning first=902 second=8249 amount=-3 +kerning first=902 second=8250 amount=-1 +kerning first=908 second=44 amount=-1 +kerning first=908 second=46 amount=-1 +kerning first=908 second=47 amount=-1 +kerning first=908 second=65 amount=-2 +kerning first=908 second=84 amount=-2 +kerning first=908 second=86 amount=-2 +kerning first=908 second=87 amount=-2 +kerning first=908 second=88 amount=-3 +kerning first=908 second=89 amount=-3 +kerning first=908 second=90 amount=-1 +kerning first=908 second=193 amount=-2 +kerning first=908 second=194 amount=-2 +kerning first=908 second=196 amount=-2 +kerning first=908 second=197 amount=-2 +kerning first=908 second=198 amount=-2 +kerning first=908 second=221 amount=-3 +kerning first=908 second=256 amount=-2 +kerning first=908 second=258 amount=-2 +kerning first=908 second=260 amount=-2 +kerning first=908 second=354 amount=-2 +kerning first=908 second=356 amount=-2 +kerning first=908 second=372 amount=-2 +kerning first=908 second=374 amount=-3 +kerning first=908 second=376 amount=-3 +kerning first=908 second=377 amount=-1 +kerning first=908 second=379 amount=-1 +kerning first=908 second=381 amount=-1 +kerning first=908 second=913 amount=-2 +kerning first=908 second=916 amount=-2 +kerning first=908 second=918 amount=-1 +kerning first=908 second=923 amount=-2 +kerning first=908 second=932 amount=-2 +kerning first=908 second=933 amount=-3 +kerning first=908 second=935 amount=-3 +kerning first=908 second=939 amount=-3 +kerning first=908 second=955 amount=-2 +kerning first=908 second=967 amount=-1 +kerning first=908 second=1026 amount=-2 +kerning first=908 second=1033 amount=-1 +kerning first=908 second=1035 amount=-2 +kerning first=908 second=1040 amount=-2 +kerning first=908 second=1044 amount=-1 +kerning first=908 second=1046 amount=-3 +kerning first=908 second=1051 amount=-1 +kerning first=908 second=1058 amount=-2 +kerning first=908 second=1061 amount=-3 +kerning first=908 second=1066 amount=-2 +kerning first=908 second=1071 amount=-1 +kerning first=908 second=1174 amount=-3 +kerning first=908 second=1184 amount=-2 +kerning first=908 second=1198 amount=-3 +kerning first=908 second=1202 amount=-3 +kerning first=908 second=1298 amount=-1 +kerning first=908 second=8218 amount=-1 +kerning first=908 second=8222 amount=-1 +kerning first=908 second=8230 amount=-1 +kerning first=910 second=38 amount=-2 +kerning first=910 second=44 amount=-4 +kerning first=910 second=45 amount=-4 +kerning first=910 second=46 amount=-4 +kerning first=910 second=47 amount=-4 +kerning first=910 second=110 amount=-3 +kerning first=910 second=63 amount=-1 +kerning first=910 second=65 amount=-5 +kerning first=910 second=67 amount=-3 +kerning first=910 second=114 amount=-3 +kerning first=910 second=71 amount=-3 +kerning first=910 second=74 amount=-6 +kerning first=910 second=79 amount=-3 +kerning first=910 second=81 amount=-3 +kerning first=910 second=83 amount=-1 +kerning first=910 second=97 amount=-4 +kerning first=910 second=99 amount=-4 +kerning first=910 second=100 amount=-4 +kerning first=910 second=101 amount=-4 +kerning first=910 second=103 amount=-4 +kerning first=910 second=109 amount=-3 +kerning first=910 second=111 amount=-4 +kerning first=910 second=112 amount=-3 +kerning first=910 second=113 amount=-4 +kerning first=910 second=115 amount=-3 +kerning first=910 second=117 amount=-2 +kerning first=910 second=118 amount=-2 +kerning first=910 second=119 amount=-2 +kerning first=910 second=120 amount=-2 +kerning first=910 second=121 amount=-2 +kerning first=910 second=122 amount=-2 +kerning first=910 second=171 amount=-3 +kerning first=910 second=173 amount=-4 +kerning first=910 second=187 amount=-2 +kerning first=910 second=193 amount=-5 +kerning first=910 second=194 amount=-5 +kerning first=910 second=196 amount=-5 +kerning first=910 second=197 amount=-5 kerning first=910 second=198 amount=-5 -kerning first=356 second=210 amount=-1 -kerning first=948 second=338 amount=-2 -kerning first=951 second=100 amount=-1 -kerning first=107 second=8211 amount=-3 -kerning first=1220 second=250 amount=-1 -kerning first=1207 second=941 amount=-1 -kerning first=376 second=352 amount=-1 -kerning first=973 second=262 amount=-2 -kerning first=169 second=234 amount=-1 -kerning first=51 second=246 amount=-1 -kerning first=1065 second=199 amount=-1 -kerning first=191 second=376 amount=-5 -kerning first=303 second=1035 amount=-5 -kerning first=306 second=291 amount=-1 -kerning first=1085 second=1098 amount=-3 -kerning first=1094 second=339 amount=-1 -kerning first=1097 second=101 amount=-1 -kerning first=916 second=113 amount=-1 -kerning first=88 second=8249 amount=-3 -kerning first=1169 second=955 amount=-4 -kerning first=1174 second=263 amount=-1 -kerning first=237 second=235 amount=-1 -kerning first=357 second=365 amount=-1 -kerning first=354 second=1179 amount=-2 -kerning first=35 second=34 amount=-3 -kerning first=277 second=8216 amount=-1 -kerning first=8225 second=252 amount=-1 -kerning first=55 second=196 amount=-5 -kerning first=1063 second=1118 amount=-1 -kerning first=1066 second=354 amount=-5 -kerning first=189 second=8250 amount=-1 -kerning first=75 second=336 amount=-3 -kerning first=1095 second=970 amount=-1 -kerning first=1178 second=213 amount=-1 -kerning first=956 second=225 amount=-1 -kerning first=1299 second=115 amount=-1 -kerning first=266 second=87 amount=-1 -kerning first=1026 second=1185 amount=-3 -kerning first=175 second=337 amount=-1 -kerning first=178 second=99 amount=-1 -kerning first=289 second=249 amount=-1 -kerning first=59 second=111 amount=-1 -kerning first=1067 second=1038 amount=-2 -kerning first=56 second=351 amount=-1 -kerning first=196 second=953 amount=-1 -kerning first=222 second=198 amount=-2 -kerning first=337 second=1078 amount=-2 -kerning first=365 second=250 amount=-1 -kerning first=37 second=364 amount=-2 -kerning first=1027 second=8220 amount=-3 -kerning first=176 second=968 amount=-1 -kerning first=179 second=277 amount=-1 -kerning first=57 second=1035 amount=-5 -kerning first=60 second=291 amount=-1 -kerning first=203 second=211 amount=-2 -kerning first=318 second=339 amount=-1 -kerning first=323 second=101 amount=-1 -kerning first=223 second=353 amount=-1 -kerning first=341 second=955 amount=-3 -kerning first=103 second=365 amount=-1 -kerning first=271 second=212 amount=-2 -kerning first=1241 second=102 amount=-1 -kerning first=35 second=8216 amount=-3 -kerning first=184 second=224 amount=-1 -kerning first=296 second=354 amount=-5 -kerning first=291 second=1118 amount=-1 -kerning first=201 second=1184 amount=-5 -kerning first=204 second=366 amount=-2 -kerning first=321 second=970 amount=-1 -kerning first=8372 second=229 amount=-1 -kerning first=84 second=378 amount=-1 -kerning first=87 second=171 amount=-2 -kerning first=230 second=63 amount=-2 -kerning first=944 second=103 amount=-1 -kerning first=101 second=8217 amount=-1 -kerning first=250 second=225 amount=-1 -kerning first=373 second=115 amount=-1 -kerning first=967 second=267 amount=-1 -kerning first=273 second=367 amount=-1 -kerning first=42 second=940 amount=-1 -kerning first=297 second=1038 amount=-2 -kerning first=8369 second=1262 amount=-2 -kerning first=903 second=356 amount=-5 -kerning first=906 second=116 amount=-1 -kerning first=1118 second=268 amount=-2 -kerning first=942 second=972 amount=-1 -kerning first=108 second=941 amount=-1 -kerning first=164 second=1241 amount=-1 -kerning first=167 second=187 amount=-1 -kerning first=49 second=199 amount=-2 -kerning first=1063 second=117 amount=-1 -kerning first=1051 second=357 amount=-1 -kerning first=192 second=89 amount=-5 -kerning first=186 second=1079 amount=-1 -kerning first=69 second=339 amount=-1 -kerning first=72 second=101 amount=-1 -kerning first=1083 second=973 amount=-1 -kerning first=89 second=955 amount=-2 -kerning first=92 second=263 amount=-1 -kerning first=1170 second=216 amount=-2 -kerning first=347 second=8221 amount=-1 -kerning first=352 second=1066 amount=-1 -kerning first=950 second=228 amount=-1 -kerning first=1224 second=118 amount=-4 -kerning first=378 second=240 amount=-1 -kerning first=278 second=943 amount=-1 -kerning first=47 second=1118 amount=-1 -kerning first=50 second=354 amount=-5 -kerning first=1067 second=67 amount=-2 -kerning first=1059 second=1044 amount=-1 -kerning first=193 second=266 amount=-2 -kerning first=196 second=39 amount=-3 -kerning first=73 second=279 amount=-1 -kerning first=70 second=970 amount=-1 -kerning first=1096 second=229 amount=-1 -kerning first=910 second=920 amount=-3 -kerning first=96 second=213 amount=-2 -kerning first=1168 second=1195 amount=-1 -kerning first=1171 second=371 amount=-1 -kerning first=239 second=103 amount=-1 -kerning first=948 second=1257 amount=-1 -kerning first=113 second=1119 amount=2 -kerning first=119 second=115 amount=-1 -kerning first=8224 second=360 amount=-2 -kerning first=51 second=1038 amount=-2 -kerning first=197 second=214 amount=-2 -kerning first=306 second=1101 amount=-1 -kerning first=77 second=226 amount=-1 -kerning first=338 second=268 amount=-2 -kerning first=1184 second=81 amount=-3 -kerning first=237 second=972 amount=-1 -kerning first=240 second=281 amount=-1 -kerning first=1298 second=243 amount=-1 -kerning first=177 second=227 amount=-1 -kerning first=291 second=117 amount=-1 -kerning first=198 second=369 amount=-1 -kerning first=313 second=973 amount=-1 -kerning first=8363 second=232 amount=-1 -kerning first=95 second=8221 amount=-3 -kerning first=936 second=106 amount=1 -kerning first=367 second=118 amount=-4 -kerning first=956 second=962 amount=-1 -kerning first=124 second=240 amount=-1 -kerning first=36 second=943 amount=-1 -kerning first=175 second=1256 amount=-2 -kerning first=297 second=67 amount=-2 -kerning first=205 second=79 amount=-2 -kerning first=322 second=229 amount=-1 -kerning first=900 second=119 amount=-4 -kerning first=1107 second=271 amount=-1 -kerning first=931 second=1026 amount=-5 -kerning first=105 second=253 amount=-1 -kerning first=965 second=218 amount=-2 -kerning first=1041 second=360 amount=-2 -kerning first=298 second=242 amount=-1 -kerning first=60 second=1101 amount=-1 -kerning first=203 second=945 amount=-1 -kerning first=318 second=1262 amount=-2 -kerning first=323 second=1240 amount=-2 -kerning first=8370 second=335 amount=-1 -kerning first=8377 second=97 amount=-1 -kerning first=86 second=268 amount=-2 -kerning first=372 second=243 amount=-3 -kerning first=966 second=373 amount=-1 -kerning first=44 second=357 amount=-1 -kerning first=47 second=117 amount=-1 -kerning first=64 second=973 amount=-1 -kerning first=1084 second=232 amount=-1 -kerning first=327 second=332 amount=-2 -kerning first=8372 second=966 amount=-1 -kerning first=905 second=244 amount=-1 -kerning first=8378 second=275 amount=-1 -kerning first=90 second=216 amount=-1 -kerning first=1117 second=374 amount=-5 -kerning first=1113 second=1203 amount=-2 -kerning first=113 second=118 amount=-4 -kerning first=1220 second=71 amount=-2 -kerning first=250 second=962 amount=-1 -kerning first=376 second=193 amount=-5 -kerning first=973 second=83 amount=-1 -kerning first=166 second=283 amount=-1 -kerning first=45 second=1044 amount=-4 -kerning first=51 second=67 amount=-2 -kerning first=1062 second=245 amount=-1 -kerning first=191 second=217 amount=-2 -kerning first=214 second=119 amount=-4 -kerning first=335 second=44 amount=-1 -kerning first=91 second=371 amount=-1 -kerning first=88 second=1195 amount=-2 -kerning first=1174 second=84 amount=-2 -kerning first=945 second=1090 amount=-2 -kerning first=1223 second=246 amount=-1 -kerning first=374 second=1107 amount=-3 -kerning first=170 second=230 amount=-1 -kerning first=280 second=360 amount=-2 -kerning first=283 second=120 amount=-2 -kerning first=52 second=242 amount=-1 -kerning first=189 second=947 amount=-4 -kerning first=192 second=372 amount=-5 -kerning first=72 second=1240 amount=-2 -kerning first=69 second=1262 amount=-2 -kerning first=1095 second=335 amount=-1 -kerning first=912 second=347 amount=-1 -kerning first=92 second=1069 amount=-1 -kerning first=1178 second=34 amount=-2 -kerning first=238 second=231 amount=-1 -kerning first=358 second=361 amount=-1 -kerning first=361 second=121 amount=-1 -kerning first=950 second=965 amount=-1 -kerning first=118 second=243 amount=-1 -kerning first=1262 second=196 amount=-2 -kerning first=258 second=373 amount=-4 -kerning first=381 second=288 amount=-1 -kerning first=168 second=1263 amount=-1 -kerning first=8226 second=248 amount=-1 -kerning first=1067 second=350 amount=-1 -kerning first=314 second=232 amount=-1 -kerning first=76 second=332 amount=-1 -kerning first=1096 second=966 amount=-1 -kerning first=1102 second=47 amount=-1 -kerning first=1099 second=275 amount=-1 -kerning first=915 second=1033 amount=-5 -kerning first=923 second=289 amount=-1 -kerning first=365 second=71 amount=-2 -kerning first=958 second=221 amount=-5 -kerning first=1263 second=351 amount=-1 -kerning first=1027 second=1177 amount=-1 -kerning first=176 second=333 amount=-1 -kerning first=8250 second=198 amount=-3 -kerning first=1071 second=290 amount=-2 -kerning first=197 second=949 amount=-1 -kerning first=200 second=257 amount=-1 -kerning first=8365 second=100 amount=-1 -kerning first=77 second=963 amount=-1 -kerning first=80 second=271 amount=-1 -kerning first=934 second=234 amount=-1 -kerning first=240 second=1090 amount=-3 -kerning first=960 second=376 amount=-5 -kerning first=123 second=346 amount=-1 -kerning first=1298 second=1035 amount=-5 -kerning first=268 second=258 amount=-1 -kerning first=38 second=360 amount=-2 -kerning first=1035 second=1059 amount=-2 -kerning first=1028 second=8212 amount=-1 -kerning first=180 second=273 amount=-1 -kerning first=184 second=45 amount=-2 -kerning first=177 second=964 amount=-3 -kerning first=8260 second=353 amount=-1 -kerning first=61 second=287 amount=-1 -kerning first=1076 second=235 amount=-1 -kerning first=321 second=335 amount=-1 -kerning first=221 second=1108 amount=-4 -kerning first=345 second=259 amount=-1 -kerning first=101 second=1175 amount=-2 -kerning first=1178 second=8216 amount=-2 -kerning first=370 second=196 amount=-2 -kerning first=956 second=8250 amount=-1 -kerning first=124 second=1028 amount=-2 -kerning first=160 second=288 amount=-2 -kerning first=1046 second=248 amount=-2 -kerning first=185 second=220 amount=-2 -kerning first=297 second=350 amount=-1 -kerning first=65 second=232 amount=-1 -kerning first=205 second=362 amount=-2 -kerning first=202 second=1176 amount=-1 -kerning first=322 second=966 amount=-1 -kerning first=325 second=275 amount=-1 -kerning first=1107 second=1076 amount=-3 -kerning first=1118 second=87 amount=-5 -kerning first=942 second=337 amount=-1 -kerning first=251 second=221 amount=-5 -kerning first=371 second=351 amount=-1 -kerning first=374 second=111 amount=-4 -kerning first=968 second=261 amount=-1 -kerning first=965 second=953 amount=-1 -kerning first=164 second=233 amount=-1 -kerning first=274 second=363 amount=-1 -kerning first=186 second=375 amount=-1 -kerning first=301 second=290 amount=-2 -kerning first=1083 second=338 amount=-2 -kerning first=203 second=8211 amount=-2 -kerning first=1087 second=100 amount=-1 -kerning first=904 second=352 amount=-1 -kerning first=92 second=84 amount=-5 -kerning first=1119 second=262 amount=-2 -kerning first=946 second=277 amount=-1 -kerning first=1219 second=199 amount=-2 -kerning first=252 second=376 amount=-5 -kerning first=375 second=291 amount=-1 -kerning first=271 second=8212 amount=-2 -kerning first=8218 second=251 amount=-1 -kerning first=1064 second=113 amount=-1 -kerning first=184 second=8249 amount=-3 -kerning first=193 second=85 amount=-2 -kerning first=305 second=235 amount=-1 -kerning first=70 second=335 amount=-1 -kerning first=73 second=97 amount=-1 -kerning first=96 second=34 amount=-3 -kerning first=93 second=259 amount=-1 -kerning first=1171 second=212 amount=-2 -kerning first=951 second=224 amount=-1 -kerning first=1220 second=354 amount=-5 -kerning first=250 second=8250 amount=-1 -kerning first=973 second=366 amount=-2 -kerning first=169 second=336 amount=-2 -kerning first=282 second=248 amount=-1 -kerning first=51 second=350 amount=-1 -kerning first=1068 second=63 amount=-5 -kerning first=74 second=275 amount=-1 -kerning first=217 second=197 amount=-2 -kerning first=338 second=87 amount=-5 -kerning first=237 second=337 amount=-1 -kerning first=240 second=99 amount=-1 -kerning first=357 second=940 amount=-1 -kerning first=117 second=351 amount=-1 -kerning first=1223 second=1038 amount=-2 -kerning first=260 second=261 amount=-1 -kerning first=120 second=111 amount=-2 -kerning first=8225 second=356 amount=-5 -kerning first=8240 second=116 amount=-1 -kerning first=55 second=290 amount=-2 -kerning first=198 second=210 amount=-2 -kerning first=313 second=338 amount=-1 -kerning first=316 second=100 amount=-1 -kerning first=221 second=112 amount=-3 -kerning first=928 second=187 amount=-1 -kerning first=1170 second=8220 amount=-3 -kerning first=238 second=968 amount=-1 -kerning first=121 second=291 amount=-1 -kerning first=1036 second=251 amount=-1 -kerning first=289 second=353 amount=-1 -kerning first=294 second=113 amount=-1 -kerning first=59 second=235 amount=-1 -kerning first=8364 second=228 amount=-1 -kerning first=79 second=377 amount=-1 -kerning first=96 second=8216 amount=-3 -kerning first=365 second=354 amount=-5 -kerning first=962 second=266 amount=-2 -kerning first=965 second=39 amount=-3 -kerning first=262 second=1184 amount=-1 -kerning first=40 second=248 amount=-1 -kerning first=183 second=171 amount=-3 -kerning first=197 second=8217 amount=-3 -kerning first=323 second=225 amount=-1 -kerning first=901 second=115 amount=-1 -kerning first=86 second=87 amount=-5 -kerning first=103 second=940 amount=-1 -kerning first=1048 second=116 amount=-1 -kerning first=1044 second=356 amount=-2 -kerning first=187 second=88 amount=-3 -kerning first=64 second=338 amount=-2 -kerning first=1080 second=281 amount=-1 -kerning first=207 second=250 amount=-1 -kerning first=204 second=941 amount=-1 -kerning first=1076 second=972 amount=-1 -kerning first=84 second=954 amount=-2 -kerning first=87 second=262 amount=-2 -kerning first=944 second=227 amount=-1 -kerning first=247 second=1079 amount=-1 -kerning first=253 second=89 amount=-5 -kerning first=967 second=369 amount=-1 -kerning first=160 second=1098 amount=-3 -kerning first=163 second=339 amount=-1 -kerning first=166 second=101 amount=-1 -kerning first=276 second=251 amount=-1 -kerning first=48 second=113 amount=-1 -kerning first=188 second=263 amount=-1 -kerning first=1085 second=228 amount=-1 -kerning first=906 second=240 amount=-1 -kerning first=332 second=90 amount=-1 -kerning first=91 second=212 amount=-2 -kerning first=1118 second=370 amount=-2 -kerning first=234 second=102 amount=-1 -kerning first=354 second=252 amount=-2 -kerning first=942 second=1256 amount=-2 -kerning first=108 second=1118 amount=-1 -kerning first=1223 second=67 amount=-2 -kerning first=254 second=266 amount=-2 -kerning first=257 second=39 amount=-1 -kerning first=164 second=970 amount=-1 -kerning first=167 second=279 amount=-1 -kerning first=1051 second=920 amount=-2 -kerning first=192 second=213 amount=-2 -kerning first=72 second=225 amount=-1 -kerning first=1083 second=1257 amount=-1 -kerning first=215 second=115 amount=-1 -kerning first=89 second=1185 amount=-2 -kerning first=92 second=367 amount=-1 -kerning first=1224 second=242 amount=-1 -kerning first=258 second=214 amount=-2 -kerning first=375 second=1101 amount=-1 -kerning first=193 second=368 amount=-2 -kerning first=305 second=972 amount=-1 -kerning first=310 second=281 amount=-2 -kerning first=219 second=65 amount=-2 -kerning first=910 second=1102 amount=-3 -kerning first=239 second=227 amount=-1 -kerning first=356 second=1169 amount=-2 -kerning first=954 second=269 amount=-2 -kerning first=1071 second=106 amount=1 -kerning first=194 second=1066 amount=-5 -kerning first=191 second=8221 amount=-3 -kerning first=80 second=90 amount=-1 -kerning first=217 second=916 amount=-2 -kerning first=1097 second=962 amount=-1 -kerning first=338 second=370 amount=-2 -kerning first=926 second=283 amount=-1 -kerning first=100 second=252 amount=-1 -kerning first=237 second=1256 amount=-2 -kerning first=360 second=1044 amount=-1 -kerning first=960 second=217 amount=-2 -kerning first=1035 second=359 amount=-1 -kerning first=61 second=103 amount=-1 -kerning first=1069 second=1026 amount=-2 -kerning first=1073 second=286 amount=-2 -kerning first=201 second=253 amount=-1 -kerning first=313 second=1257 amount=-1 -kerning first=8363 second=334 amount=-2 -kerning first=936 second=230 amount=-1 -kerning first=367 second=242 amount=-1 -kerning first=956 second=947 amount=-4 -kerning first=364 second=923 amount=-2 -kerning first=121 second=1101 amount=-1 -kerning first=42 second=116 amount=-1 -kerning first=182 second=268 amount=-2 -kerning first=59 second=972 amount=-1 -kerning first=62 second=281 amount=-1 -kerning first=1078 second=231 amount=-2 -kerning first=8364 second=965 amount=-1 -kerning first=900 second=243 amount=-1 -kerning first=931 second=1263 amount=-1 -kerning first=108 second=117 amount=-1 -kerning first=105 second=357 amount=-1 -kerning first=125 second=973 amount=-1 -kerning first=8211 second=122 amount=-2 -kerning first=186 second=216 amount=-2 -kerning first=301 second=106 amount=1 -kerning first=209 second=118 amount=-4 -kerning first=323 second=962 amount=-1 -kerning first=8377 second=221 amount=-5 -kerning first=86 second=370 amount=-2 -kerning first=1119 second=83 amount=-1 -kerning first=1206 second=245 amount=-1 -kerning first=252 second=217 amount=-2 -kerning first=372 second=345 amount=-2 -kerning first=165 second=229 amount=-1 -kerning first=278 second=119 amount=-4 -kerning first=44 second=920 amount=-1 -kerning first=47 second=241 amount=-1 -kerning first=184 second=1195 amount=-1 -kerning first=1059 second=194 amount=-2 -kerning first=299 second=1026 amount=-5 -kerning first=302 second=286 amount=-2 -kerning first=64 second=1257 amount=-1 -kerning first=1084 second=334 amount=-2 -kerning first=1080 second=1090 amount=-3 -kerning first=8378 second=376 amount=-5 -kerning first=905 second=346 amount=-1 -kerning first=350 second=1174 amount=-1 -kerning first=356 second=120 amount=-1 -kerning first=948 second=273 amount=-1 -kerning first=951 second=45 amount=-2 -kerning first=113 second=242 amount=-1 -kerning first=944 second=964 amount=-3 -kerning first=250 second=947 amount=-4 -kerning first=253 second=372 amount=-5 -kerning first=376 second=287 amount=-4 -kerning first=163 second=1262 amount=-2 -kerning first=166 second=1240 amount=-2 -kerning first=1049 second=1108 amount=-1 -kerning first=188 second=1069 amount=-1 -kerning first=194 second=81 amount=-2 -kerning first=306 second=231 amount=-1 -kerning first=1085 second=965 amount=-1 -kerning first=214 second=243 amount=-1 -kerning first=906 second=1028 amount=-2 -kerning first=952 second=220 amount=-2 -kerning first=1223 second=350 amount=-1 -kerning first=380 second=232 amount=-1 -kerning first=971 second=1176 amount=-1 -kerning first=170 second=332 amount=-2 -kerning first=55 second=106 amount=1 -kerning first=72 second=962 amount=-1 -kerning first=218 second=193 amount=-2 -kerning first=1170 second=1177 amount=-1 -kerning first=238 second=333 amount=-1 -kerning first=361 second=245 amount=-1 -kerning first=258 second=949 amount=-1 -kerning first=36 second=119 amount=-4 -kerning first=175 second=271 amount=-1 -kerning first=8226 second=352 amount=-1 -kerning first=53 second=1026 amount=-5 -kerning first=56 second=286 amount=-2 -kerning first=310 second=1090 amount=-4 -kerning first=314 second=334 amount=-2 -kerning first=8361 second=277 amount=-1 -kerning first=1099 second=376 amount=-5 -kerning first=1171 second=8212 amount=-2 -kerning first=1176 second=1059 amount=-2 -kerning first=239 second=964 amount=-3 -kerning first=951 second=8249 amount=-3 -kerning first=962 second=85 amount=-2 -kerning first=179 second=219 amount=-2 -kerning first=287 second=1108 amount=-1 -kerning first=60 second=231 amount=-1 -kerning first=200 second=361 amount=-1 -kerning first=203 second=121 amount=-1 -kerning first=315 second=965 amount=-1 -kerning first=8365 second=224 amount=-1 -kerning first=80 second=373 amount=-4 -kerning first=223 second=288 amount=-2 -kerning first=934 second=336 amount=-2 -kerning first=1187 second=248 amount=-1 -kerning first=126 second=232 amount=-1 -kerning first=1241 second=47 amount=-1 -kerning first=41 second=244 amount=-1 -kerning first=180 second=374 amount=-5 -kerning first=296 second=289 amount=-1 -kerning first=1076 second=337 amount=-1 -kerning first=1080 second=99 amount=-1 -kerning first=207 second=71 amount=-2 -kerning first=81 second=1071 amount=-1 -kerning first=902 second=111 amount=-1 -kerning first=87 second=83 amount=-1 -kerning first=107 second=245 amount=-2 -kerning first=247 second=375 amount=-1 -kerning first=967 second=210 amount=-2 -kerning first=266 second=8211 amount=-1 -kerning first=45 second=194 amount=-2 -kerning first=1046 second=352 amount=-1 -kerning first=188 second=84 amount=-5 -kerning first=300 second=234 amount=-1 -kerning first=62 second=1090 amount=-3 -kerning first=65 second=334 amount=-2 -kerning first=1081 second=277 amount=-1 -kerning first=325 second=376 amount=-5 -kerning first=8369 second=1079 amount=-1 -kerning first=900 second=1035 amount=-5 -kerning first=903 second=291 amount=-1 -kerning first=1118 second=211 amount=-2 -kerning first=343 second=8212 amount=-1 -kerning first=1210 second=113 amount=-1 -kerning first=254 second=85 amount=-2 -kerning first=374 second=235 amount=-4 -kerning first=968 second=365 amount=-1 -kerning first=164 second=335 amount=-1 -kerning first=167 second=97 amount=-1 -kerning first=43 second=1108 amount=-1 -kerning first=189 second=259 amount=-1 -kerning first=192 second=34 amount=-3 -kerning first=1087 second=224 amount=-1 -kerning first=212 second=196 amount=-2 -kerning first=323 second=8250 amount=-1 -kerning first=1119 second=366 amount=-2 -kerning first=950 second=171 amount=-3 -kerning first=966 second=8217 amount=-1 -kerning first=165 second=966 amount=-1 -kerning first=168 second=275 amount=-1 -kerning first=8218 second=355 amount=-1 -kerning first=47 second=1033 amount=-4 -kerning first=50 second=289 amount=-1 -kerning first=305 second=337 amount=-1 -kerning first=310 second=99 amount=-2 -kerning first=73 second=221 amount=-5 -kerning first=93 second=363 amount=-1 -kerning first=233 second=967 amount=-2 -kerning first=376 second=1097 amount=-3 -kerning first=379 second=338 amount=-1 -kerning first=382 second=100 amount=-1 -kerning first=973 second=941 amount=-1 -kerning first=1027 second=250 amount=-1 -kerning first=282 second=352 amount=-1 -kerning first=54 second=234 amount=-1 -kerning first=1065 second=1241 amount=-1 -kerning first=194 second=364 amount=-2 -kerning first=306 second=968 amount=-1 -kerning first=311 second=277 amount=-2 -kerning first=74 second=376 amount=-5 -kerning first=214 second=1035 amount=-5 -kerning first=338 second=211 amount=-2 -kerning first=916 second=339 amount=-1 -kerning first=94 second=1059 amount=-2 -kerning first=91 second=8212 amount=-2 -kerning first=926 second=101 amount=-1 -kerning first=363 second=113 amount=-1 -kerning first=955 second=263 amount=-1 -kerning first=120 second=235 amount=-2 -kerning first=260 second=365 amount=-1 -kerning first=8240 second=240 amount=-1 -kerning first=192 second=8216 amount=-3 -kerning first=316 second=224 amount=-1 -kerning first=72 second=8250 amount=-1 -kerning first=81 second=86 amount=-2 -kerning first=1106 second=39 amount=-1 -kerning first=336 second=1184 amount=-2 -kerning first=928 second=279 amount=-1 -kerning first=258 second=8217 amount=-3 -kerning first=39 second=197 amount=-3 -kerning first=1036 second=355 amount=-1 -kerning first=1039 second=115 amount=-1 -kerning first=182 second=87 amount=-5 -kerning first=59 second=337 amount=-1 -kerning first=62 second=99 amount=-1 -kerning first=202 second=249 amount=-1 -kerning first=337 second=8218 amount=-1 -kerning first=1186 second=356 amount=-2 -kerning first=242 second=1078 amount=-2 -kerning first=962 second=368 amount=-2 -kerning first=125 second=338 amount=-2 -kerning first=161 second=100 amount=-1 -kerning first=40 second=352 amount=-1 -kerning first=1047 second=65 amount=-1 -kerning first=183 second=262 amount=-2 -kerning first=298 second=187 amount=-1 -kerning first=60 second=968 amount=-1 -kerning first=63 second=277 amount=-1 -kerning first=206 second=199 amount=-2 -kerning first=318 second=1079 amount=-1 -kerning first=8370 second=269 amount=-1 -kerning first=86 second=211 amount=-2 -kerning first=223 second=1098 amount=-3 -kerning first=246 second=955 amount=-1 -kerning first=249 second=263 amount=-1 -kerning first=963 second=1066 amount=-5 -kerning first=960 second=8221 amount=-3 -kerning first=8212 second=118 amount=-1 -kerning first=1048 second=240 amount=-1 -kerning first=204 second=1118 amount=-1 -kerning first=207 second=354 amount=-5 -kerning first=327 second=266 amount=-2 -kerning first=331 second=39 amount=-1 -kerning first=8378 second=217 amount=-2 -kerning first=1168 second=79 amount=-2 -kerning first=1202 second=920 amount=-1 -kerning first=253 second=213 amount=-2 -kerning first=376 second=103 amount=-4 -kerning first=166 second=225 amount=-1 -kerning first=276 second=355 amount=-1 -kerning first=185 second=1185 amount=-3 -kerning first=188 second=367 amount=-1 -kerning first=68 second=379 amount=-1 -kerning first=903 second=1101 amount=-1 -kerning first=85 second=8218 amount=-1 -kerning first=1118 second=945 amount=-1 -kerning first=357 second=116 amount=-1 -kerning first=254 second=368 amount=-2 -kerning first=374 second=972 amount=-4 -kerning first=377 second=281 amount=-1 -kerning first=8221 second=243 amount=-1 -kerning first=49 second=1241 amount=-1 -kerning first=52 second=187 amount=-1 -kerning first=186 second=8220 amount=-3 -kerning first=69 second=1079 amount=-1 -kerning first=1095 second=269 amount=-1 -kerning first=95 second=251 amount=-1 -kerning first=255 second=1066 amount=-5 -kerning first=252 second=8221 amount=-3 -kerning first=1033 second=118 amount=-1 -kerning first=1067 second=283 amount=-1 -kerning first=193 second=943 amount=-1 -kerning first=196 second=252 amount=-1 -kerning first=305 second=1256 amount=-2 -kerning first=76 second=266 amount=-1 -kerning first=1099 second=217 amount=-2 -kerning first=923 second=229 amount=-1 -kerning first=1176 second=359 amount=-1 -kerning first=951 second=1195 amount=-1 -kerning first=1263 second=286 amount=-2 -kerning first=1256 second=1026 amount=-2 -kerning first=379 second=1257 amount=-1 -kerning first=37 second=115 amount=-1 -kerning first=176 second=267 amount=-1 -kerning first=1071 second=230 amount=-1 -kerning first=8365 second=45 amount=-2 -kerning first=80 second=214 amount=-2 -kerning first=338 second=945 amount=-1 -kerning first=916 second=1262 amount=-2 -kerning first=926 second=1240 amount=-2 -kerning first=100 second=356 amount=-5 -kerning first=103 second=116 amount=-1 -kerning first=955 second=1069 amount=-1 -kerning first=963 second=81 amount=-2 -kerning first=123 second=281 amount=-1 -kerning first=120 second=972 amount=-2 -kerning first=8240 second=1028 amount=-2 -kerning first=8260 second=288 amount=-2 -kerning first=61 second=227 amount=-1 -kerning first=204 second=117 amount=-1 -kerning first=201 second=357 amount=-1 -kerning first=321 second=269 amount=-1 -kerning first=8366 second=220 amount=-2 -kerning first=221 second=973 amount=-2 -kerning first=936 second=332 amount=-2 -kerning first=247 second=216 amount=-2 -kerning first=160 second=228 amount=-1 -kerning first=273 second=118 amount=-4 -kerning first=42 second=240 amount=-1 -kerning first=39 second=916 amount=-3 -kerning first=178 second=1194 amount=-2 -kerning first=182 second=370 amount=-2 -kerning first=297 second=283 amount=-1 -kerning first=59 second=1256 amount=-2 -kerning first=1078 second=333 amount=-2 -kerning first=325 second=217 amount=-2 -kerning first=8369 second=375 amount=-1 -kerning first=79 second=8222 amount=-1 -kerning first=88 second=79 amount=-3 -kerning first=1107 second=949 amount=-1 -kerning first=351 second=119 amount=-1 -kerning first=942 second=271 amount=-1 -kerning first=105 second=920 amount=-2 -kerning first=371 second=286 amount=-2 -kerning first=125 second=1257 amount=-1 -kerning first=270 second=1046 amount=-3 -kerning first=301 second=230 amount=-1 -kerning first=1079 second=964 amount=-1 -kerning first=1087 second=45 amount=-2 -kerning first=209 second=242 amount=-1 -kerning first=1083 second=273 amount=-1 -kerning first=323 second=947 amount=-4 -kerning first=8365 second=8249 amount=-3 -kerning first=904 second=287 amount=-1 -kerning first=86 second=945 amount=-1 -kerning first=946 second=219 amount=-2 -kerning first=947 second=1108 amount=-1 -kerning first=249 second=1069 amount=-1 -kerning first=255 second=81 amount=-2 -kerning first=375 second=231 amount=-1 -kerning first=966 second=1175 amount=-2 -kerning first=278 second=243 amount=-1 -kerning first=47 second=343 amount=-1 -kerning first=1048 second=1028 amount=-2 -kerning first=299 second=1263 amount=-1 -kerning first=70 second=269 amount=-1 +kerning first=910 second=199 amount=-3 +kerning first=910 second=210 amount=-3 +kerning first=910 second=211 amount=-3 +kerning first=910 second=212 amount=-3 +kerning first=910 second=213 amount=-3 +kerning first=910 second=214 amount=-3 +kerning first=910 second=216 amount=-3 +kerning first=910 second=224 amount=-4 +kerning first=910 second=225 amount=-4 +kerning first=910 second=226 amount=-4 +kerning first=910 second=227 amount=-4 +kerning first=910 second=228 amount=-4 +kerning first=910 second=229 amount=-4 +kerning first=910 second=230 amount=-4 +kerning first=910 second=231 amount=-4 kerning first=910 second=232 amount=-4 -kerning first=1117 second=1176 amount=-1 -kerning first=1168 second=362 amount=-2 -kerning first=356 second=244 amount=-3 -kerning first=948 second=374 amount=-5 -kerning first=1220 second=289 amount=-1 -kerning first=1027 second=71 amount=-2 -kerning first=166 second=962 amount=-1 -kerning first=8220 second=351 amount=-1 -kerning first=8224 second=111 amount=-1 -kerning first=51 second=283 amount=-1 -kerning first=1065 second=233 amount=-1 -kerning first=306 second=333 amount=-1 -kerning first=74 second=217 amount=-2 -kerning first=94 second=359 amount=-1 -kerning first=1118 second=8211 amount=-2 -kerning first=97 second=119 amount=-1 -kerning first=237 second=271 amount=-1 -kerning first=360 second=194 amount=-2 -kerning first=955 second=84 amount=-5 -kerning first=117 second=286 amount=-2 -kerning first=174 second=218 amount=-2 -kerning first=8225 second=291 amount=-1 -kerning first=55 second=230 amount=-1 -kerning first=195 second=360 amount=-2 -kerning first=316 second=45 amount=-2 -kerning first=313 second=273 amount=-1 -kerning first=72 second=947 amount=-4 -kerning first=1087 second=8249 amount=-3 -kerning first=928 second=97 amount=-1 -kerning first=358 second=1108 amount=-1 -kerning first=361 second=347 amount=-1 -kerning first=956 second=259 amount=-1 -kerning first=961 second=34 amount=-1 -kerning first=121 second=231 amount=-1 -kerning first=36 second=243 amount=-1 -kerning first=171 second=1202 amount=-1 -kerning first=175 second=373 amount=-4 -kerning first=289 second=288 amount=-2 -kerning first=53 second=1263 amount=-1 -kerning first=317 second=220 amount=-2 -kerning first=8364 second=171 amount=-3 -kerning first=923 second=966 amount=-1 -kerning first=931 second=275 amount=-1 -kerning first=102 second=244 amount=-1 -kerning first=362 second=1033 amount=-1 -kerning first=365 second=289 amount=-1 -kerning first=1037 second=351 amount=-1 -kerning first=1041 second=111 amount=-1 -kerning first=183 second=83 amount=-1 -kerning first=60 second=333 amount=-1 -kerning first=203 second=245 amount=-1 -kerning first=318 second=375 amount=-1 -kerning first=80 second=949 amount=-1 -kerning first=338 second=8211 amount=-2 -kerning first=249 second=84 amount=-5 -kerning first=369 second=234 amount=-1 -kerning first=963 second=364 amount=-2 -kerning first=126 second=334 amount=-2 -kerning first=123 second=1090 amount=-3 -kerning first=271 second=246 amount=-1 -kerning first=41 second=346 amount=-1 -kerning first=8260 second=1098 amount=-3 -kerning first=64 second=273 amount=-1 -kerning first=61 second=964 amount=-3 -kerning first=67 second=45 amount=-1 -kerning first=316 second=8249 amount=-3 -kerning first=327 second=85 amount=-2 -kerning first=8372 second=263 amount=-1 -kerning first=902 second=235 amount=-1 -kerning first=107 second=347 amount=-1 -kerning first=250 second=259 amount=-1 -kerning first=253 second=34 amount=-3 -kerning first=961 second=8216 amount=-1 -kerning first=160 second=965 amount=-1 -kerning first=42 second=1028 amount=-2 -kerning first=300 second=336 amount=-2 -kerning first=1085 second=171 amount=-3 -kerning first=234 second=47 amount=-1 -kerning first=354 second=197 amount=-6 -kerning first=374 second=337 amount=-4 -kerning first=377 second=99 amount=-1 -kerning first=968 second=940 amount=-1 -kerning first=971 second=249 amount=-1 -kerning first=167 second=221 amount=-5 -kerning first=280 second=111 amount=-1 -kerning first=49 second=233 amount=-1 -kerning first=189 second=363 amount=-1 -kerning first=186 second=1177 amount=-1 -kerning first=69 second=375 amount=-1 -kerning first=86 second=8211 amount=-2 -kerning first=912 second=100 amount=-1 -kerning first=89 second=1051 amount=-5 -kerning first=1170 second=250 amount=-1 -kerning first=1119 second=941 amount=-1 -kerning first=950 second=262 amount=-2 -kerning first=1219 second=1241 amount=-1 -kerning first=1224 second=187 amount=-1 -kerning first=255 second=364 amount=-2 -kerning first=375 second=968 amount=-1 -kerning first=378 second=277 amount=-1 -kerning first=1026 second=199 amount=-2 -kerning first=168 second=376 amount=-5 -kerning first=278 second=1035 amount=-5 -kerning first=1064 second=339 amount=-1 -kerning first=1067 second=101 amount=-1 -kerning first=190 second=1059 amount=-2 -kerning first=70 second=1074 amount=-1 -kerning first=1090 second=955 amount=-4 -kerning first=1096 second=263 amount=-1 -kerning first=67 second=8249 amount=-1 -kerning first=76 second=85 amount=-1 -kerning first=8378 second=8221 amount=-3 -kerning first=910 second=969 amount=-4 -kerning first=253 second=8216 amount=-3 -kerning first=34 second=196 amount=-3 -kerning first=1027 second=354 amount=-5 -kerning first=973 second=1118 amount=-1 -kerning first=166 second=8250 amount=-1 -kerning first=54 second=336 amount=-2 -kerning first=197 second=248 amount=-1 -kerning first=315 second=171 amount=-3 -kerning first=926 second=225 amount=-1 -kerning first=952 second=1185 amount=-3 -kerning first=955 second=367 amount=-1 -kerning first=120 second=337 amount=-2 -kerning first=123 second=99 amount=-1 -kerning first=260 second=940 amount=-1 -kerning first=38 second=111 amount=-1 -kerning first=35 second=351 amount=-1 -kerning first=177 second=261 amount=-1 -kerning first=174 second=953 amount=-1 -kerning first=8225 second=1101 amount=-1 -kerning first=1073 second=226 amount=-1 -kerning first=8363 second=268 amount=-2 -kerning first=221 second=338 amount=-3 -kerning first=1194 second=65 amount=-1 -kerning first=367 second=187 amount=-1 -kerning first=121 second=968 amount=-1 -kerning first=124 second=277 amount=-1 -kerning first=36 second=1035 amount=-5 -kerning first=39 second=291 amount=-1 -kerning first=182 second=211 amount=-2 -kerning first=294 second=339 amount=-1 -kerning first=297 second=101 amount=-1 -kerning first=289 second=1098 amount=-3 -kerning first=202 second=353 amount=-1 -kerning first=205 second=113 amount=-1 -kerning first=322 second=263 amount=-1 -kerning first=8369 second=216 amount=-2 -kerning first=1099 second=8221 amount=-3 -kerning first=962 second=943 amount=-1 -kerning first=965 second=252 amount=-1 -kerning first=161 second=224 amount=-1 -kerning first=270 second=354 amount=-2 -kerning first=179 second=1184 amount=-5 -kerning first=183 second=366 amount=-2 -kerning first=298 second=279 amount=-1 -kerning first=8365 second=1195 amount=-1 -kerning first=8370 second=371 amount=-1 -kerning first=904 second=103 amount=-1 -kerning first=80 second=8217 amount=-3 -kerning first=249 second=367 amount=-1 -kerning first=246 second=1185 amount=-1 -kerning first=271 second=1038 amount=-2 -kerning first=302 second=226 amount=-1 -kerning first=1084 second=268 amount=-2 -kerning first=327 second=368 amount=-2 -kerning first=8372 second=1069 amount=-1 -kerning first=902 second=972 amount=-1 -kerning first=905 second=281 amount=-1 -kerning first=87 second=941 amount=-3 -kerning first=230 second=380 amount=-1 -kerning first=356 second=65 amount=-6 -kerning first=113 second=187 amount=-1 -kerning first=247 second=8220 amount=-3 -kerning first=376 second=227 amount=-4 -kerning first=973 second=117 amount=-1 -kerning first=163 second=1079 amount=-1 -kerning first=169 second=89 amount=-5 -kerning first=48 second=339 amount=-1 -kerning first=1049 second=973 amount=-1 -kerning first=51 second=101 amount=-1 -kerning first=191 second=251 amount=-1 -kerning first=68 second=955 amount=-2 -kerning first=325 second=8221 amount=-3 -kerning first=1174 second=118 amount=-2 -kerning first=357 second=240 amount=-1 -kerning first=354 second=916 amount=-6 -kerning first=1223 second=283 amount=-1 -kerning first=254 second=943 amount=-1 -kerning first=374 second=1256 amount=-3 -kerning first=170 second=266 amount=-2 -kerning first=174 second=39 amount=-3 -kerning first=49 second=970 amount=-1 -kerning first=55 second=51 amount=-1 -kerning first=52 second=279 amount=-1 -kerning first=75 second=213 amount=-3 -kerning first=1087 second=1195 amount=-1 -kerning first=1095 second=371 amount=-1 -kerning first=95 second=355 amount=-1 -kerning first=238 second=267 amount=-1 -kerning first=175 second=214 amount=-2 -kerning first=8226 second=287 amount=-1 -kerning first=56 second=226 amount=-1 -kerning first=1064 second=1262 amount=-2 -kerning first=1067 second=1240 amount=-2 -kerning first=196 second=356 amount=-5 -kerning first=314 second=268 amount=-2 -kerning first=8361 second=219 amount=-2 -kerning first=76 second=368 amount=-1 -kerning first=1096 second=1069 amount=-1 -kerning first=1179 second=243 amount=-1 -kerning first=176 second=369 amount=-1 -kerning first=287 second=973 amount=-1 -kerning first=1071 second=332 amount=-2 -kerning first=318 second=216 amount=-2 -kerning first=74 second=8221 amount=-3 -kerning first=77 second=1066 amount=-5 -kerning first=223 second=228 amount=-1 -kerning first=926 second=962 amount=-1 -kerning first=103 second=240 amount=-1 -kerning first=240 second=1194 amount=-2 -kerning first=271 second=67 amount=-2 -kerning first=184 second=79 amount=-2 -kerning first=296 second=229 amount=-1 -kerning first=1073 second=963 amount=-1 -kerning first=1076 second=271 amount=-1 -kerning first=201 second=920 amount=-2 -kerning first=321 second=371 amount=-1 -kerning first=316 second=1195 amount=-1 -kerning first=8372 second=84 amount=-5 -kerning first=84 second=253 amount=-2 -kerning first=221 second=1257 amount=-4 -kerning first=964 second=360 amount=-2 -kerning first=273 second=242 amount=-1 -kerning first=182 second=945 amount=-1 -kerning first=297 second=1240 amount=-2 -kerning first=294 second=1262 amount=-2 -kerning first=65 second=268 amount=-2 -kerning first=1081 second=219 amount=-2 -kerning first=322 second=1069 amount=-1 -kerning first=903 second=231 amount=-1 -kerning first=1118 second=121 amount=-1 -kerning first=942 second=373 amount=-4 -kerning first=164 second=269 amount=-1 -kerning first=8211 second=350 amount=-1 -kerning first=43 second=973 amount=-1 -kerning first=1051 second=232 amount=-1 -kerning first=301 second=332 amount=-2 -kerning first=69 second=216 amount=-2 -kerning first=1083 second=374 amount=-5 -kerning first=1079 second=1203 amount=-1 -kerning first=92 second=118 amount=-4 -kerning first=1170 second=71 amount=-2 -kerning first=950 second=83 amount=-1 -kerning first=1219 second=233 amount=-1 -kerning first=375 second=333 amount=-1 -kerning first=372 second=1087 amount=-2 -kerning first=168 second=217 amount=-2 -kerning first=8218 second=290 amount=-1 -kerning first=50 second=229 amount=-1 -kerning first=193 second=119 amount=-4 -kerning first=190 second=359 amount=-1 -kerning first=302 second=963 amount=-1 -kerning first=305 second=271 amount=-1 -kerning first=70 second=371 amount=-1 -kerning first=1096 second=84 amount=-5 -kerning first=210 second=1026 amount=-2 -kerning first=905 second=1090 amount=-3 +kerning first=910 second=233 amount=-4 +kerning first=910 second=234 amount=-4 +kerning first=910 second=235 amount=-4 +kerning first=910 second=240 amount=-4 +kerning first=910 second=241 amount=-3 +kerning first=910 second=242 amount=-4 +kerning first=910 second=243 amount=-4 +kerning first=910 second=244 amount=-4 +kerning first=910 second=245 amount=-4 +kerning first=910 second=246 amount=-4 +kerning first=910 second=248 amount=-4 +kerning first=910 second=249 amount=-2 +kerning first=910 second=250 amount=-2 +kerning first=910 second=251 amount=-2 +kerning first=910 second=252 amount=-2 +kerning first=910 second=253 amount=-2 +kerning first=910 second=256 amount=-5 +kerning first=910 second=257 amount=-4 +kerning first=910 second=258 amount=-5 +kerning first=910 second=259 amount=-4 +kerning first=910 second=260 amount=-5 +kerning first=910 second=261 amount=-4 +kerning first=910 second=262 amount=-3 +kerning first=910 second=263 amount=-4 +kerning first=910 second=266 amount=-3 +kerning first=910 second=267 amount=-4 +kerning first=910 second=268 amount=-3 +kerning first=910 second=269 amount=-4 +kerning first=910 second=271 amount=-4 +kerning first=910 second=273 amount=-4 +kerning first=910 second=275 amount=-4 +kerning first=910 second=277 amount=-4 +kerning first=910 second=279 amount=-4 +kerning first=910 second=281 amount=-4 +kerning first=910 second=283 amount=-4 +kerning first=910 second=286 amount=-3 +kerning first=910 second=287 amount=-4 +kerning first=910 second=288 amount=-3 +kerning first=910 second=289 amount=-4 +kerning first=910 second=290 amount=-3 +kerning first=910 second=291 amount=-4 +kerning first=910 second=324 amount=-3 +kerning first=910 second=326 amount=-3 +kerning first=910 second=328 amount=-3 +kerning first=910 second=331 amount=-3 +kerning first=910 second=332 amount=-3 +kerning first=910 second=333 amount=-4 kerning first=910 second=334 amount=-3 -kerning first=1171 second=246 amount=-1 -kerning first=236 second=218 amount=-2 -kerning first=356 second=346 amount=-1 -kerning first=256 second=360 amount=-2 -kerning first=376 second=964 amount=-2 -kerning first=379 second=273 amount=-1 -kerning first=166 second=947 amount=-4 -kerning first=169 second=372 amount=-5 -kerning first=282 second=287 amount=-1 -kerning first=8224 second=235 amount=-1 -kerning first=51 second=1240 amount=-2 -kerning first=48 second=1262 amount=-2 -kerning first=1065 second=335 amount=-1 -kerning first=77 second=81 amount=-2 -kerning first=338 second=121 amount=-1 -kerning first=237 second=373 amount=-4 -kerning first=357 second=1028 amount=-2 -kerning first=55 second=332 amount=-2 -kerning first=198 second=244 amount=-1 -kerning first=313 second=374 amount=-6 -kerning first=8363 second=87 amount=-5 -kerning first=928 second=221 amount=-5 -kerning first=1185 second=111 amount=-2 -kerning first=235 second=8230 amount=-1 -kerning first=956 second=363 amount=-1 -kerning first=121 second=333 amount=-1 -kerning first=1036 second=290 amount=-3 -kerning first=175 second=949 amount=-1 -kerning first=178 second=257 amount=-1 -kerning first=56 second=963 amount=-1 -kerning first=59 second=271 amount=-1 -kerning first=322 second=84 amount=-5 -kerning first=8364 second=262 amount=-2 -kerning first=343 second=246 amount=-1 -kerning first=931 second=376 amount=-5 -kerning first=958 second=1059 amount=-2 -kerning first=954 second=8212 amount=-3 -kerning first=125 second=273 amount=-1 -kerning first=161 second=45 amount=-2 -kerning first=40 second=287 amount=-1 -kerning first=1041 second=235 amount=-1 -kerning first=298 second=97 amount=-1 -kerning first=63 second=219 amount=-2 -kerning first=200 second=1108 amount=-1 -kerning first=203 second=347 amount=-1 -kerning first=323 second=259 amount=-1 -kerning first=8370 second=212 amount=-2 -kerning first=326 second=34 amount=-1 -kerning first=86 second=121 amount=-2 -kerning first=223 second=965 amount=-1 -kerning first=926 second=8250 amount=-1 -kerning first=103 second=1028 amount=-2 -kerning first=369 second=336 amount=-2 -kerning first=162 second=220 amount=-2 -kerning first=271 second=350 amount=-1 -kerning first=180 second=1176 amount=-1 -kerning first=184 second=362 amount=-2 -kerning first=187 second=122 amount=-1 -kerning first=296 second=966 amount=-1 -kerning first=299 second=275 amount=-1 -kerning first=64 second=374 amount=-5 -kerning first=207 second=289 amount=-1 -kerning first=1084 second=87 amount=-5 -kerning first=8372 second=367 amount=-1 -kerning first=8366 second=1185 amount=-3 -kerning first=902 second=337 amount=-1 -kerning first=905 second=99 amount=-1 -kerning first=90 second=71 amount=-1 -kerning first=1117 second=249 amount=-1 -kerning first=944 second=261 amount=-1 -kerning first=247 second=1177 amount=-1 -kerning first=250 second=363 amount=-1 -kerning first=163 second=375 amount=-1 -kerning first=276 second=290 amount=-2 -kerning first=1049 second=338 amount=-2 -kerning first=182 second=8211 amount=-2 -kerning first=1062 second=100 amount=-1 -kerning first=71 second=84 amount=-1 -kerning first=1085 second=262 amount=-2 -kerning first=8369 second=8220 amount=-3 -kerning first=903 second=968 amount=-1 -kerning first=88 second=934 amount=-5 -kerning first=91 second=246 amount=-1 -kerning first=906 second=277 amount=-1 -kerning first=354 second=291 amount=-2 -kerning first=1203 second=1098 amount=-2 -kerning first=1210 second=339 amount=-1 -kerning first=251 second=1059 amount=-2 -kerning first=1223 second=101 amount=-1 -kerning first=971 second=353 amount=-1 -kerning first=161 second=8249 amount=-3 -kerning first=170 second=85 amount=-2 -kerning first=280 second=235 amount=-1 -kerning first=49 second=335 amount=-1 -kerning first=52 second=97 amount=-1 -kerning first=72 second=259 amount=-1 -kerning first=1095 second=212 amount=-2 -kerning first=326 second=8216 amount=-1 -kerning first=912 second=224 amount=-1 -kerning first=1170 second=354 amount=-5 -kerning first=1119 second=1118 amount=-1 -kerning first=946 second=1184 amount=-5 -kerning first=950 second=366 amount=-2 -kerning first=1224 second=279 amount=-1 -kerning first=258 second=248 amount=-1 -kerning first=1219 second=970 amount=-1 -kerning first=1033 second=63 amount=-5 -kerning first=171 second=260 amount=-1 -kerning first=8226 second=103 amount=-1 -kerning first=50 second=966 amount=-1 -kerning first=53 second=275 amount=-1 -kerning first=1067 second=225 amount=-1 -kerning first=314 second=87 amount=-5 -kerning first=1096 second=367 amount=-1 -kerning first=910 second=1220 amount=-3 -kerning first=96 second=351 amount=-1 -kerning first=1171 second=1038 amount=-2 -kerning first=239 second=261 amount=-1 -kerning first=236 second=953 amount=-1 -kerning first=1263 second=226 amount=-1 -kerning first=262 second=198 amount=-1 -kerning first=176 second=210 amount=-2 -kerning first=287 second=338 amount=-2 -kerning first=8224 second=972 amount=-1 -kerning first=197 second=352 amount=-1 -kerning first=315 second=262 amount=-1 -kerning first=77 second=364 amount=-2 -kerning first=916 second=1079 amount=-1 -kerning first=100 second=291 amount=-1 -kerning first=934 second=89 amount=-5 -kerning first=363 second=339 amount=-1 -kerning first=960 second=251 amount=-1 -kerning first=38 second=235 amount=-1 -kerning first=177 second=365 amount=-1 -kerning first=8260 second=228 amount=-1 -kerning first=321 second=212 amount=-2 -kerning first=8363 second=370 amount=-2 -kerning first=84 second=74 amount=-5 -kerning first=936 second=266 amount=-2 -kerning first=941 second=39 amount=-1 -kerning first=367 second=279 amount=-1 -kerning first=160 second=171 amount=-3 -kerning first=175 second=8217 amount=-3 -kerning first=297 second=225 amount=-1 -kerning first=65 second=87 amount=-5 -kerning first=1078 second=267 amount=-2 -kerning first=317 second=1185 amount=-3 -kerning first=322 second=367 amount=-1 -kerning first=942 second=214 amount=-2 -kerning first=242 second=8218 amount=-1 -kerning first=371 second=226 amount=-1 -kerning first=965 second=356 amount=-5 -kerning first=968 second=116 amount=-1 -kerning first=43 second=338 amount=-2 -kerning first=1041 second=972 amount=-1 -kerning first=186 second=250 amount=-1 -kerning first=183 second=941 amount=-1 -kerning first=206 second=1241 amount=-1 -kerning first=209 second=187 amount=-1 -kerning first=318 second=8220 amount=-3 -kerning first=904 second=227 amount=-1 -kerning first=89 second=199 amount=-3 -kerning first=1119 second=117 amount=-1 -kerning first=252 second=251 amount=-1 -kerning first=165 second=263 amount=-1 -kerning first=8218 second=106 amount=2 -kerning first=70 second=212 amount=-1 -kerning first=1080 second=1194 amount=-2 -kerning first=1084 second=370 amount=-2 -kerning first=327 second=943 amount=-1 -kerning first=902 second=1256 amount=-2 -kerning first=87 second=1118 amount=-1 -kerning first=1171 second=67 amount=-2 -kerning first=236 second=39 amount=-3 -kerning first=951 second=79 amount=-2 -kerning first=113 second=279 amount=-1 -kerning first=1220 second=229 amount=-1 -kerning first=376 second=328 amount=-3 -kerning first=169 second=213 amount=-2 -kerning first=282 second=103 amount=-1 -kerning first=1049 second=1257 amount=-1 -kerning first=51 second=225 amount=-1 -kerning first=191 second=355 amount=-1 -kerning first=194 second=115 amount=-1 -kerning first=306 second=267 amount=-1 -kerning first=91 second=1038 amount=-2 -kerning first=1174 second=242 amount=-1 -kerning first=237 second=214 amount=-2 -kerning first=354 second=1101 amount=-2 -kerning first=117 second=226 amount=-1 -kerning first=1223 second=1240 amount=-2 -kerning first=1210 second=1262 amount=-2 -kerning first=260 second=116 amount=-1 -kerning first=170 second=368 amount=-2 -kerning first=280 second=972 amount=-1 -kerning first=8225 second=231 amount=-1 -kerning first=69 second=8220 amount=-3 -kerning first=238 second=369 amount=-1 -kerning first=358 second=973 amount=-1 -kerning first=168 second=8221 amount=-3 -kerning first=171 second=1066 amount=-1 -kerning first=289 second=228 amount=-1 -kerning first=1067 second=962 amount=-1 -kerning first=314 second=370 amount=-2 -kerning first=310 second=1194 amount=-3 -kerning first=8364 second=83 amount=-1 -kerning first=931 second=217 amount=-2 -kerning first=365 second=229 amount=-1 -kerning first=962 second=119 amount=-4 -kerning first=958 second=359 amount=-1 -kerning first=1263 second=963 amount=-1 -kerning first=382 second=1195 amount=-1 -kerning first=40 second=103 amount=-1 -kerning first=1037 second=286 amount=-2 -kerning first=1034 second=1026 amount=-5 -kerning first=179 second=253 amount=-1 -kerning first=287 second=1257 amount=-1 -kerning first=8230 second=1090 amount=-3 -kerning first=60 second=267 amount=-1 -kerning first=1103 second=360 amount=-2 -kerning first=1108 second=120 amount=-1 -kerning first=926 second=947 amount=-4 -kerning first=934 second=372 amount=-5 -kerning first=100 second=1101 amount=-1 -kerning first=363 second=1262 amount=-2 -kerning first=126 second=268 amount=-2 -kerning first=38 second=972 amount=-1 -kerning first=44 second=53 amount=-1 -kerning first=41 second=281 amount=-1 -kerning first=1044 second=231 amount=-1 -kerning first=8260 second=965 amount=-1 -kerning first=87 second=117 amount=-2 -kerning first=1202 second=232 amount=-1 -kerning first=967 second=244 amount=-1 -kerning first=163 second=216 amount=-2 -kerning first=276 second=106 amount=1 -kerning first=188 second=118 amount=-4 -kerning first=297 second=962 amount=-1 -kerning first=62 second=1194 amount=-2 -kerning first=65 second=370 amount=-2 -kerning first=1085 second=83 amount=-1 -kerning first=8369 second=1177 amount=-1 -kerning first=903 second=333 amount=-1 -kerning first=85 second=1044 amount=-1 -kerning first=91 second=67 amount=-2 -kerning first=1118 second=245 amount=-1 -kerning first=942 second=949 amount=-1 -kerning first=251 second=359 amount=-1 -kerning first=254 second=119 amount=-4 -kerning first=371 second=963 amount=-1 -kerning first=374 second=271 amount=-4 -kerning first=161 second=1195 amount=-1 -kerning first=164 second=371 amount=-1 -kerning first=274 second=1026 amount=-5 -kerning first=8217 second=234 amount=-1 -kerning first=43 second=1257 amount=-1 -kerning first=1051 second=334 amount=-2 -kerning first=304 second=218 amount=-2 -kerning first=330 second=360 amount=-2 -kerning first=8370 second=8212 amount=-2 -kerning first=8377 second=1059 amount=-2 -kerning first=904 second=964 amount=-3 -kerning first=912 second=45 amount=-2 -kerning first=92 second=242 amount=-1 -kerning first=89 second=923 amount=-5 -kerning first=229 second=947 amount=-1 -kerning first=333 second=120 amount=-2 -kerning first=1219 second=335 amount=-1 -kerning first=1224 second=97 amount=-1 -kerning first=165 second=1069 amount=-1 -kerning first=47 second=1084 amount=-1 -kerning first=193 second=243 amount=-1 -kerning first=305 second=373 amount=-4 -kerning first=915 second=220 amount=-2 -kerning first=1171 second=350 amount=-1 -kerning first=948 second=1176 amount=-1 -kerning first=951 second=362 amount=-2 -kerning first=113 second=1085 amount=2 -kerning first=1220 second=966 amount=-1 -kerning first=376 second=1203 amount=-2 -kerning first=1027 second=289 amount=-1 -kerning first=8224 second=337 amount=-1 -kerning first=51 second=962 amount=-1 -kerning first=1068 second=221 amount=-5 -kerning first=338 second=245 amount=-1 +kerning first=910 second=335 amount=-4 +kerning first=910 second=336 amount=-3 +kerning first=910 second=337 amount=-4 +kerning first=910 second=338 amount=-3 +kerning first=910 second=339 amount=-4 +kerning first=910 second=341 amount=-3 +kerning first=910 second=343 amount=-3 +kerning first=910 second=345 amount=-3 +kerning first=910 second=346 amount=-1 +kerning first=910 second=347 amount=-3 +kerning first=910 second=350 amount=-1 +kerning first=910 second=351 amount=-3 +kerning first=910 second=352 amount=-1 +kerning first=910 second=353 amount=-3 +kerning first=910 second=361 amount=-2 +kerning first=910 second=363 amount=-2 +kerning first=910 second=365 amount=-2 +kerning first=910 second=367 amount=-2 +kerning first=910 second=369 amount=-2 +kerning first=910 second=371 amount=-2 +kerning first=910 second=373 amount=-2 +kerning first=910 second=375 amount=-2 +kerning first=910 second=378 amount=-2 +kerning first=910 second=380 amount=-2 +kerning first=910 second=382 amount=-2 +kerning first=910 second=913 amount=-5 +kerning first=910 second=916 amount=-5 +kerning first=910 second=920 amount=-3 +kerning first=910 second=923 amount=-5 +kerning first=910 second=927 amount=-3 +kerning first=910 second=937 amount=-2 +kerning first=910 second=940 amount=-4 +kerning first=910 second=941 amount=-4 +kerning first=910 second=942 amount=-3 +kerning first=910 second=943 amount=-2 +kerning first=910 second=945 amount=-4 +kerning first=910 second=947 amount=-2 +kerning first=910 second=949 amount=-4 +kerning first=910 second=950 amount=-2 +kerning first=910 second=951 amount=-3 +kerning first=910 second=952 amount=-2 +kerning first=910 second=953 amount=-2 +kerning first=910 second=954 amount=-3 +kerning first=910 second=955 amount=-2 +kerning first=910 second=957 amount=-2 +kerning first=910 second=959 amount=-4 +kerning first=910 second=961 amount=-5 +kerning first=910 second=962 amount=-4 +kerning first=910 second=963 amount=-4 +kerning first=910 second=964 amount=-2 +kerning first=910 second=965 amount=-2 +kerning first=910 second=966 amount=-4 +kerning first=910 second=967 amount=-2 +kerning first=910 second=968 amount=-2 +kerning first=910 second=969 amount=-4 +kerning first=910 second=970 amount=-2 +kerning first=910 second=972 amount=-4 +kerning first=910 second=973 amount=-2 +kerning first=910 second=974 amount=-4 +kerning first=910 second=1028 amount=-3 +kerning first=910 second=1029 amount=-1 +kerning first=910 second=1032 amount=-6 +kerning first=910 second=1033 amount=-5 +kerning first=910 second=1040 amount=-5 +kerning first=910 second=1044 amount=-5 +kerning first=910 second=1051 amount=-5 +kerning first=910 second=1054 amount=-3 +kerning first=910 second=1057 amount=-3 +kerning first=910 second=1069 amount=-2 +kerning first=910 second=1071 amount=-2 +kerning first=910 second=1072 amount=-4 +kerning first=910 second=1074 amount=-3 +kerning first=910 second=1075 amount=-3 +kerning first=910 second=1077 amount=-4 +kerning first=910 second=1078 amount=-2 +kerning first=910 second=1079 amount=-4 +kerning first=910 second=1080 amount=-3 +kerning first=910 second=1081 amount=-3 +kerning first=910 second=1082 amount=-3 +kerning first=910 second=1084 amount=-3 +kerning first=910 second=1085 amount=-3 +kerning first=910 second=1086 amount=-4 +kerning first=910 second=1087 amount=-3 +kerning first=910 second=1088 amount=-3 +kerning first=910 second=1089 amount=-4 +kerning first=910 second=1090 amount=-2 +kerning first=910 second=1091 amount=-2 +kerning first=910 second=1092 amount=-4 +kerning first=910 second=1093 amount=-2 +kerning first=910 second=1094 amount=-3 +kerning first=910 second=1096 amount=-3 +kerning first=910 second=1097 amount=-3 +kerning first=910 second=1098 amount=-2 +kerning first=910 second=1099 amount=-3 +kerning first=910 second=1100 amount=-3 +kerning first=910 second=1101 amount=-4 +kerning first=910 second=1102 amount=-3 +kerning first=910 second=1104 amount=-4 +kerning first=910 second=1105 amount=-4 +kerning first=910 second=1107 amount=-3 +kerning first=910 second=1108 amount=-4 +kerning first=910 second=1109 amount=-3 +kerning first=910 second=1114 amount=-3 +kerning first=910 second=1116 amount=-3 +kerning first=910 second=1117 amount=-3 +kerning first=910 second=1118 amount=-2 +kerning first=910 second=1119 amount=-3 +kerning first=910 second=1169 amount=-3 +kerning first=910 second=1175 amount=-2 +kerning first=910 second=1176 amount=-2 +kerning first=910 second=1177 amount=-4 +kerning first=910 second=1179 amount=-3 +kerning first=910 second=1185 amount=-2 +kerning first=910 second=1187 amount=-3 +kerning first=910 second=1194 amount=-3 +kerning first=910 second=1195 amount=-4 +kerning first=910 second=1199 amount=-2 +kerning first=910 second=1203 amount=-2 +kerning first=910 second=1220 amount=-3 +kerning first=910 second=1224 amount=-3 +kerning first=910 second=1240 amount=-3 +kerning first=910 second=1241 amount=-4 +kerning first=910 second=1256 amount=-3 +kerning first=910 second=1257 amount=-4 +kerning first=910 second=1263 amount=-2 +kerning first=910 second=1298 amount=-5 +kerning first=910 second=8211 amount=-4 +kerning first=910 second=8212 amount=-4 +kerning first=910 second=8218 amount=-4 +kerning first=910 second=8222 amount=-4 +kerning first=910 second=8230 amount=-4 +kerning first=910 second=8249 amount=-3 +kerning first=910 second=8250 amount=-2 +kerning first=911 second=89 amount=-2 +kerning first=911 second=221 amount=-2 +kerning first=911 second=374 amount=-2 +kerning first=911 second=376 amount=-2 +kerning first=911 second=933 amount=-2 +kerning first=911 second=939 amount=-2 +kerning first=911 second=950 amount=-1 +kerning first=911 second=1198 amount=-2 +kerning first=913 second=34 amount=-3 +kerning first=913 second=38 amount=-1 +kerning first=913 second=39 amount=-3 +kerning first=913 second=45 amount=-2 +kerning first=913 second=63 amount=-5 +kerning first=913 second=67 amount=-2 +kerning first=913 second=71 amount=-2 +kerning first=913 second=74 amount=-1 +kerning first=913 second=79 amount=-2 +kerning first=913 second=81 amount=-2 +kerning first=913 second=83 amount=-1 +kerning first=913 second=84 amount=-5 +kerning first=913 second=85 amount=-2 +kerning first=913 second=86 amount=-6 +kerning first=913 second=87 amount=-5 +kerning first=913 second=89 amount=-5 +kerning first=913 second=97 amount=-1 +kerning first=913 second=99 amount=-1 +kerning first=913 second=100 amount=-1 +kerning first=913 second=101 amount=-1 +kerning first=913 second=102 amount=-2 +kerning first=913 second=103 amount=-1 +kerning first=913 second=106 amount=1 +kerning first=913 second=111 amount=-1 +kerning first=913 second=113 amount=-1 +kerning first=913 second=115 amount=-1 +kerning first=913 second=116 amount=-1 +kerning first=913 second=117 amount=-1 +kerning first=913 second=118 amount=-4 +kerning first=913 second=119 amount=-4 +kerning first=913 second=121 amount=-1 +kerning first=913 second=171 amount=-3 +kerning first=913 second=173 amount=-2 +kerning first=913 second=187 amount=-1 +kerning first=913 second=199 amount=-2 +kerning first=913 second=210 amount=-2 +kerning first=913 second=211 amount=-2 +kerning first=913 second=212 amount=-2 +kerning first=913 second=213 amount=-2 +kerning first=913 second=214 amount=-2 +kerning first=913 second=216 amount=-2 +kerning first=913 second=217 amount=-2 +kerning first=913 second=218 amount=-2 +kerning first=913 second=219 amount=-2 +kerning first=913 second=220 amount=-2 +kerning first=913 second=221 amount=-5 +kerning first=913 second=224 amount=-1 +kerning first=913 second=225 amount=-1 +kerning first=913 second=226 amount=-1 +kerning first=913 second=227 amount=-1 +kerning first=913 second=228 amount=-1 +kerning first=913 second=229 amount=-1 +kerning first=913 second=230 amount=-1 +kerning first=913 second=231 amount=-1 +kerning first=913 second=232 amount=-1 +kerning first=913 second=233 amount=-1 +kerning first=913 second=234 amount=-1 +kerning first=913 second=235 amount=-1 +kerning first=913 second=240 amount=-1 +kerning first=913 second=242 amount=-1 +kerning first=913 second=243 amount=-1 +kerning first=913 second=244 amount=-1 +kerning first=913 second=245 amount=-1 +kerning first=913 second=246 amount=-1 +kerning first=913 second=248 amount=-1 +kerning first=913 second=249 amount=-1 +kerning first=913 second=250 amount=-1 +kerning first=913 second=251 amount=-1 +kerning first=913 second=252 amount=-1 +kerning first=913 second=253 amount=-1 +kerning first=913 second=257 amount=-1 +kerning first=913 second=259 amount=-1 +kerning first=913 second=261 amount=-1 +kerning first=913 second=262 amount=-2 +kerning first=913 second=263 amount=-1 +kerning first=913 second=266 amount=-2 +kerning first=913 second=267 amount=-1 +kerning first=913 second=268 amount=-2 +kerning first=913 second=269 amount=-1 +kerning first=913 second=271 amount=-1 +kerning first=913 second=273 amount=-1 +kerning first=913 second=275 amount=-1 +kerning first=913 second=277 amount=-1 +kerning first=913 second=279 amount=-1 +kerning first=913 second=281 amount=-1 +kerning first=913 second=283 amount=-1 +kerning first=913 second=286 amount=-2 +kerning first=913 second=287 amount=-1 +kerning first=913 second=288 amount=-2 +kerning first=913 second=289 amount=-1 +kerning first=913 second=290 amount=-2 +kerning first=913 second=291 amount=-1 +kerning first=913 second=332 amount=-2 +kerning first=913 second=333 amount=-1 +kerning first=913 second=334 amount=-2 +kerning first=913 second=335 amount=-1 +kerning first=913 second=336 amount=-2 +kerning first=913 second=337 amount=-1 +kerning first=913 second=338 amount=-2 +kerning first=913 second=339 amount=-1 +kerning first=913 second=346 amount=-1 +kerning first=913 second=347 amount=-1 +kerning first=913 second=350 amount=-1 +kerning first=913 second=351 amount=-1 +kerning first=913 second=352 amount=-1 +kerning first=913 second=353 amount=-1 +kerning first=913 second=354 amount=-5 +kerning first=913 second=355 amount=-1 +kerning first=913 second=356 amount=-5 +kerning first=913 second=357 amount=-1 +kerning first=913 second=359 amount=-1 +kerning first=913 second=360 amount=-2 +kerning first=913 second=361 amount=-1 +kerning first=913 second=362 amount=-2 +kerning first=913 second=363 amount=-1 +kerning first=913 second=364 amount=-2 +kerning first=913 second=365 amount=-1 +kerning first=913 second=366 amount=-2 +kerning first=913 second=367 amount=-1 +kerning first=913 second=368 amount=-2 +kerning first=913 second=369 amount=-1 +kerning first=913 second=370 amount=-2 +kerning first=913 second=371 amount=-1 +kerning first=913 second=372 amount=-5 +kerning first=913 second=373 amount=-4 +kerning first=913 second=374 amount=-5 +kerning first=913 second=375 amount=-1 +kerning first=913 second=376 amount=-5 +kerning first=913 second=920 amount=-2 +kerning first=913 second=927 amount=-2 +kerning first=913 second=932 amount=-5 +kerning first=913 second=933 amount=-5 +kerning first=913 second=936 amount=-3 +kerning first=913 second=939 amount=-5 +kerning first=913 second=940 amount=-1 +kerning first=913 second=941 amount=-1 +kerning first=913 second=943 amount=-1 +kerning first=913 second=945 amount=-1 +kerning first=913 second=947 amount=-4 +kerning first=913 second=949 amount=-1 +kerning first=913 second=950 amount=-1 +kerning first=913 second=953 amount=-1 +kerning first=913 second=957 amount=-4 +kerning first=913 second=959 amount=-1 +kerning first=913 second=962 amount=-1 +kerning first=913 second=963 amount=-1 +kerning first=913 second=964 amount=-3 +kerning first=913 second=965 amount=-1 +kerning first=913 second=966 amount=-1 +kerning first=913 second=968 amount=-1 +kerning first=913 second=970 amount=-1 +kerning first=913 second=972 amount=-1 +kerning first=913 second=973 amount=-1 +kerning first=913 second=1026 amount=-5 +kerning first=913 second=1028 amount=-2 +kerning first=913 second=1029 amount=-1 +kerning first=913 second=1032 amount=-1 +kerning first=913 second=1035 amount=-5 +kerning first=913 second=1038 amount=-2 +kerning first=913 second=1054 amount=-2 +kerning first=913 second=1057 amount=-2 +kerning first=913 second=1058 amount=-5 +kerning first=913 second=1059 amount=-2 +kerning first=913 second=1063 amount=-3 +kerning first=913 second=1066 amount=-5 +kerning first=913 second=1069 amount=-1 +kerning first=913 second=1072 amount=-1 +kerning first=913 second=1077 amount=-1 +kerning first=913 second=1079 amount=-1 +kerning first=913 second=1086 amount=-1 +kerning first=913 second=1089 amount=-1 +kerning first=913 second=1090 amount=-3 +kerning first=913 second=1091 amount=-1 +kerning first=913 second=1092 amount=-1 +kerning first=913 second=1098 amount=-3 +kerning first=913 second=1101 amount=-1 +kerning first=913 second=1104 amount=-1 +kerning first=913 second=1105 amount=-1 +kerning first=913 second=1108 amount=-1 +kerning first=913 second=1109 amount=-1 +kerning first=913 second=1112 amount=1 +kerning first=913 second=1118 amount=-1 +kerning first=913 second=1176 amount=-1 +kerning first=913 second=1177 amount=-1 +kerning first=913 second=1184 amount=-5 +kerning first=913 second=1185 amount=-3 +kerning first=913 second=1194 amount=-2 +kerning first=913 second=1195 amount=-1 +kerning first=913 second=1198 amount=-5 +kerning first=913 second=1199 amount=-4 +kerning first=913 second=1240 amount=-2 +kerning first=913 second=1241 amount=-1 +kerning first=913 second=1256 amount=-2 +kerning first=913 second=1257 amount=-1 +kerning first=913 second=1262 amount=-2 +kerning first=913 second=1263 amount=-1 +kerning first=913 second=8211 amount=-2 +kerning first=913 second=8212 amount=-2 +kerning first=913 second=8216 amount=-3 +kerning first=913 second=8217 amount=-3 +kerning first=913 second=8220 amount=-3 +kerning first=913 second=8221 amount=-3 +kerning first=913 second=8249 amount=-3 +kerning first=913 second=8250 amount=-1 +kerning first=914 second=65 amount=-1 +kerning first=914 second=84 amount=-1 +kerning first=914 second=86 amount=-1 +kerning first=914 second=87 amount=-1 +kerning first=914 second=88 amount=-2 +kerning first=914 second=89 amount=-2 +kerning first=914 second=193 amount=-1 +kerning first=914 second=194 amount=-1 +kerning first=914 second=196 amount=-1 +kerning first=914 second=197 amount=-1 +kerning first=914 second=198 amount=-1 +kerning first=914 second=221 amount=-2 +kerning first=914 second=256 amount=-1 +kerning first=914 second=258 amount=-1 +kerning first=914 second=260 amount=-1 +kerning first=914 second=354 amount=-1 +kerning first=914 second=356 amount=-1 +kerning first=914 second=372 amount=-1 +kerning first=914 second=374 amount=-2 +kerning first=914 second=376 amount=-2 +kerning first=914 second=913 amount=-1 +kerning first=914 second=916 amount=-1 +kerning first=914 second=923 amount=-1 +kerning first=914 second=932 amount=-1 +kerning first=914 second=933 amount=-2 +kerning first=914 second=935 amount=-2 +kerning first=914 second=939 amount=-2 +kerning first=914 second=955 amount=-1 +kerning first=914 second=1026 amount=-1 +kerning first=914 second=1035 amount=-1 +kerning first=914 second=1040 amount=-1 +kerning first=914 second=1046 amount=-2 +kerning first=914 second=1058 amount=-1 +kerning first=914 second=1061 amount=-2 +kerning first=914 second=1066 amount=-1 +kerning first=914 second=1174 amount=-2 +kerning first=914 second=1184 amount=-1 +kerning first=914 second=1198 amount=-2 +kerning first=914 second=1202 amount=-2 +kerning first=915 second=934 amount=-3 +kerning first=915 second=1033 amount=-5 +kerning first=915 second=1044 amount=-5 +kerning first=915 second=1051 amount=-5 +kerning first=915 second=1060 amount=-3 +kerning first=915 second=1298 amount=-5 +kerning first=916 second=34 amount=-3 +kerning first=916 second=38 amount=-1 +kerning first=916 second=39 amount=-3 +kerning first=916 second=45 amount=-2 +kerning first=916 second=63 amount=-5 +kerning first=916 second=67 amount=-2 +kerning first=916 second=71 amount=-2 +kerning first=916 second=74 amount=-1 +kerning first=916 second=79 amount=-2 +kerning first=916 second=81 amount=-2 +kerning first=916 second=83 amount=-1 +kerning first=916 second=84 amount=-5 +kerning first=916 second=85 amount=-2 +kerning first=916 second=86 amount=-6 +kerning first=916 second=87 amount=-5 +kerning first=916 second=89 amount=-5 +kerning first=916 second=97 amount=-1 +kerning first=916 second=99 amount=-1 +kerning first=916 second=100 amount=-1 +kerning first=916 second=101 amount=-1 +kerning first=916 second=102 amount=-2 +kerning first=916 second=103 amount=-1 +kerning first=916 second=106 amount=1 +kerning first=916 second=111 amount=-1 +kerning first=916 second=113 amount=-1 +kerning first=916 second=115 amount=-1 +kerning first=916 second=116 amount=-1 +kerning first=916 second=117 amount=-1 +kerning first=916 second=118 amount=-4 +kerning first=916 second=119 amount=-4 +kerning first=916 second=121 amount=-1 +kerning first=916 second=171 amount=-3 +kerning first=916 second=173 amount=-2 +kerning first=916 second=187 amount=-1 +kerning first=916 second=199 amount=-2 +kerning first=916 second=210 amount=-2 +kerning first=916 second=211 amount=-2 +kerning first=916 second=212 amount=-2 +kerning first=916 second=213 amount=-2 +kerning first=916 second=214 amount=-2 +kerning first=916 second=216 amount=-2 +kerning first=916 second=217 amount=-2 +kerning first=916 second=218 amount=-2 +kerning first=916 second=219 amount=-2 +kerning first=916 second=220 amount=-2 +kerning first=916 second=221 amount=-5 +kerning first=916 second=224 amount=-1 +kerning first=916 second=225 amount=-1 +kerning first=916 second=226 amount=-1 +kerning first=916 second=227 amount=-1 +kerning first=916 second=228 amount=-1 +kerning first=916 second=229 amount=-1 +kerning first=916 second=230 amount=-1 +kerning first=916 second=231 amount=-1 +kerning first=916 second=232 amount=-1 +kerning first=916 second=233 amount=-1 +kerning first=916 second=234 amount=-1 +kerning first=916 second=235 amount=-1 +kerning first=916 second=240 amount=-1 +kerning first=916 second=242 amount=-1 +kerning first=916 second=243 amount=-1 +kerning first=916 second=244 amount=-1 +kerning first=916 second=245 amount=-1 +kerning first=916 second=246 amount=-1 +kerning first=916 second=248 amount=-1 +kerning first=916 second=249 amount=-1 +kerning first=916 second=250 amount=-1 +kerning first=916 second=251 amount=-1 +kerning first=916 second=252 amount=-1 +kerning first=916 second=253 amount=-1 +kerning first=916 second=257 amount=-1 +kerning first=916 second=259 amount=-1 +kerning first=916 second=261 amount=-1 +kerning first=916 second=262 amount=-2 +kerning first=916 second=263 amount=-1 +kerning first=916 second=266 amount=-2 +kerning first=916 second=267 amount=-1 +kerning first=916 second=268 amount=-2 +kerning first=916 second=269 amount=-1 +kerning first=916 second=271 amount=-1 +kerning first=916 second=273 amount=-1 +kerning first=916 second=275 amount=-1 +kerning first=916 second=277 amount=-1 +kerning first=916 second=279 amount=-1 +kerning first=916 second=281 amount=-1 +kerning first=916 second=283 amount=-1 +kerning first=916 second=286 amount=-2 +kerning first=916 second=287 amount=-1 +kerning first=916 second=288 amount=-2 +kerning first=916 second=289 amount=-1 +kerning first=916 second=290 amount=-2 +kerning first=916 second=291 amount=-1 +kerning first=916 second=332 amount=-2 +kerning first=916 second=333 amount=-1 +kerning first=916 second=334 amount=-2 +kerning first=916 second=335 amount=-1 +kerning first=916 second=336 amount=-2 +kerning first=916 second=337 amount=-1 +kerning first=916 second=338 amount=-2 +kerning first=916 second=339 amount=-1 +kerning first=916 second=346 amount=-1 +kerning first=916 second=347 amount=-1 +kerning first=916 second=350 amount=-1 +kerning first=916 second=351 amount=-1 +kerning first=916 second=352 amount=-1 +kerning first=916 second=353 amount=-1 +kerning first=916 second=354 amount=-5 +kerning first=916 second=355 amount=-1 +kerning first=916 second=356 amount=-5 +kerning first=916 second=357 amount=-1 +kerning first=916 second=359 amount=-1 +kerning first=916 second=360 amount=-2 +kerning first=916 second=361 amount=-1 +kerning first=916 second=362 amount=-2 +kerning first=916 second=363 amount=-1 +kerning first=916 second=364 amount=-2 +kerning first=916 second=365 amount=-1 +kerning first=916 second=366 amount=-2 +kerning first=916 second=367 amount=-1 +kerning first=916 second=368 amount=-2 +kerning first=916 second=369 amount=-1 +kerning first=916 second=370 amount=-2 +kerning first=916 second=371 amount=-1 +kerning first=916 second=372 amount=-5 +kerning first=916 second=373 amount=-4 +kerning first=916 second=374 amount=-5 kerning first=916 second=375 amount=-1 -kerning first=237 second=949 amount=-1 -kerning first=240 second=257 amount=-1 -kerning first=117 second=963 amount=-1 -kerning first=120 second=271 amount=-2 -kerning first=35 second=286 amount=-2 -kerning first=1035 second=234 amount=-1 -kerning first=283 second=1090 amount=-1 -kerning first=8225 second=968 amount=-1 -kerning first=8240 second=277 amount=-1 -kerning first=58 second=218 amount=-2 -kerning first=1069 second=376 amount=-3 -kerning first=198 second=346 amount=-1 -kerning first=8363 second=211 amount=-2 -kerning first=78 second=360 amount=-2 -kerning first=1095 second=8212 amount=-2 -kerning first=221 second=273 amount=-4 -kerning first=912 second=8249 amount=-3 -kerning first=936 second=85 amount=-2 -kerning first=1185 second=235 amount=-2 -kerning first=367 second=97 amount=-1 -kerning first=124 second=219 amount=-2 -kerning first=39 second=231 amount=-1 -kerning first=178 second=361 amount=-1 -kerning first=182 second=121 amount=-1 -kerning first=289 second=965 amount=-1 -kerning first=59 second=373 amount=-4 -kerning first=1067 second=8250 amount=-1 -kerning first=202 second=288 amount=-2 -kerning first=8361 second=1184 amount=-5 -kerning first=8364 second=366 amount=-2 -kerning first=1107 second=248 amount=-1 -kerning first=105 second=232 amount=-1 -kerning first=248 second=122 amount=-1 -kerning first=365 second=966 amount=-1 -kerning first=125 second=374 amount=-5 -kerning first=1041 second=337 amount=-1 -kerning first=186 second=71 amount=-2 -kerning first=298 second=221 amount=-5 -kerning first=57 second=8230 amount=-1 -kerning first=206 second=233 amount=-1 -kerning first=318 second=1177 amount=-1 -kerning first=323 second=363 amount=-1 -kerning first=86 second=245 amount=-3 -kerning first=1206 second=100 amount=-1 -kerning first=165 second=84 amount=-5 -kerning first=41 second=1090 amount=-3 -kerning first=44 second=334 amount=-1 -kerning first=1048 second=277 amount=-1 -kerning first=299 second=376 amount=-5 -kerning first=1084 second=211 amount=-2 -kerning first=67 second=258 amount=-1 -kerning first=321 second=8212 amount=-2 -kerning first=8378 second=251 amount=-1 -kerning first=1168 second=113 amount=-1 -kerning first=1117 second=353 amount=-1 -kerning first=944 second=365 amount=-1 -kerning first=113 second=97 amount=-1 -kerning first=166 second=259 amount=-1 -kerning first=169 second=34 amount=-3 -kerning first=51 second=46 amount=-1 -kerning first=297 second=8250 amount=-1 -kerning first=1081 second=1184 amount=-5 -kerning first=1085 second=366 amount=-2 -kerning first=91 second=350 amount=-1 -kerning first=1174 second=63 amount=-2 -kerning first=942 second=8217 amount=-3 -kerning first=114 second=275 amount=-1 -kerning first=1223 second=225 amount=-1 -kerning first=280 second=337 amount=-1 -kerning first=52 second=221 amount=-5 -kerning first=195 second=111 amount=-1 -kerning first=192 second=351 amount=-1 -kerning first=304 second=953 amount=-1 -kerning first=72 second=363 amount=-1 -kerning first=69 second=1177 amount=-1 -kerning first=212 second=967 amount=-1 -kerning first=336 second=198 amount=-2 +kerning first=916 second=376 amount=-5 +kerning first=916 second=920 amount=-2 +kerning first=916 second=927 amount=-2 +kerning first=916 second=932 amount=-5 +kerning first=916 second=933 amount=-5 +kerning first=916 second=936 amount=-3 +kerning first=916 second=939 amount=-5 +kerning first=916 second=940 amount=-1 +kerning first=916 second=941 amount=-1 +kerning first=916 second=943 amount=-1 +kerning first=916 second=945 amount=-1 +kerning first=916 second=947 amount=-4 +kerning first=916 second=949 amount=-1 +kerning first=916 second=950 amount=-1 +kerning first=916 second=953 amount=-1 +kerning first=916 second=957 amount=-4 +kerning first=916 second=959 amount=-1 +kerning first=916 second=962 amount=-1 +kerning first=916 second=963 amount=-1 +kerning first=916 second=964 amount=-3 +kerning first=916 second=965 amount=-1 +kerning first=916 second=966 amount=-1 +kerning first=916 second=968 amount=-1 +kerning first=916 second=970 amount=-1 +kerning first=916 second=972 amount=-1 +kerning first=916 second=973 amount=-1 +kerning first=916 second=1026 amount=-5 +kerning first=916 second=1028 amount=-2 +kerning first=916 second=1029 amount=-1 +kerning first=916 second=1032 amount=-1 +kerning first=916 second=1035 amount=-5 +kerning first=916 second=1038 amount=-2 +kerning first=916 second=1054 amount=-2 +kerning first=916 second=1057 amount=-2 +kerning first=916 second=1058 amount=-5 +kerning first=916 second=1059 amount=-2 +kerning first=916 second=1063 amount=-3 +kerning first=916 second=1066 amount=-5 +kerning first=916 second=1069 amount=-1 +kerning first=916 second=1072 amount=-1 +kerning first=916 second=1077 amount=-1 +kerning first=916 second=1079 amount=-1 +kerning first=916 second=1086 amount=-1 +kerning first=916 second=1089 amount=-1 +kerning first=916 second=1090 amount=-3 +kerning first=916 second=1091 amount=-1 +kerning first=916 second=1092 amount=-1 +kerning first=916 second=1098 amount=-3 +kerning first=916 second=1101 amount=-1 +kerning first=916 second=1104 amount=-1 +kerning first=916 second=1105 amount=-1 +kerning first=916 second=1108 amount=-1 +kerning first=916 second=1109 amount=-1 +kerning first=916 second=1112 amount=1 +kerning first=916 second=1118 amount=-1 +kerning first=916 second=1176 amount=-1 +kerning first=916 second=1177 amount=-1 +kerning first=916 second=1184 amount=-5 +kerning first=916 second=1185 amount=-3 +kerning first=916 second=1194 amount=-2 +kerning first=916 second=1195 amount=-1 +kerning first=916 second=1198 amount=-5 +kerning first=916 second=1199 amount=-4 +kerning first=916 second=1240 amount=-2 +kerning first=916 second=1241 amount=-1 +kerning first=916 second=1256 amount=-2 +kerning first=916 second=1257 amount=-1 +kerning first=916 second=1262 amount=-2 +kerning first=916 second=1263 amount=-1 +kerning first=916 second=8211 amount=-2 +kerning first=916 second=8212 amount=-2 +kerning first=916 second=8216 amount=-3 +kerning first=916 second=8217 amount=-3 +kerning first=916 second=8220 amount=-3 +kerning first=916 second=8221 amount=-3 +kerning first=916 second=8249 amount=-3 +kerning first=916 second=8250 amount=-1 +kerning first=918 second=45 amount=-3 +kerning first=918 second=67 amount=-1 +kerning first=918 second=71 amount=-1 +kerning first=918 second=79 amount=-1 +kerning first=918 second=81 amount=-1 +kerning first=918 second=90 amount=1 +kerning first=918 second=99 amount=-1 +kerning first=918 second=100 amount=-1 +kerning first=918 second=101 amount=-1 +kerning first=918 second=111 amount=-1 +kerning first=918 second=113 amount=-1 +kerning first=918 second=173 amount=-3 +kerning first=918 second=199 amount=-1 +kerning first=918 second=210 amount=-1 +kerning first=918 second=211 amount=-1 +kerning first=918 second=212 amount=-1 +kerning first=918 second=213 amount=-1 +kerning first=918 second=214 amount=-1 +kerning first=918 second=216 amount=-1 +kerning first=918 second=231 amount=-1 +kerning first=918 second=232 amount=-1 +kerning first=918 second=233 amount=-1 +kerning first=918 second=234 amount=-1 +kerning first=918 second=235 amount=-1 +kerning first=918 second=240 amount=-1 +kerning first=918 second=242 amount=-1 +kerning first=918 second=243 amount=-1 +kerning first=918 second=244 amount=-1 +kerning first=918 second=245 amount=-1 +kerning first=918 second=246 amount=-1 +kerning first=918 second=248 amount=-1 +kerning first=918 second=262 amount=-1 +kerning first=918 second=263 amount=-1 +kerning first=918 second=266 amount=-1 +kerning first=918 second=267 amount=-1 +kerning first=918 second=268 amount=-1 +kerning first=918 second=269 amount=-1 +kerning first=918 second=271 amount=-1 +kerning first=918 second=273 amount=-1 +kerning first=918 second=275 amount=-1 +kerning first=918 second=277 amount=-1 +kerning first=918 second=279 amount=-1 +kerning first=918 second=281 amount=-1 +kerning first=918 second=283 amount=-1 +kerning first=918 second=286 amount=-1 +kerning first=918 second=288 amount=-1 +kerning first=918 second=290 amount=-1 +kerning first=918 second=332 amount=-1 +kerning first=918 second=333 amount=-1 +kerning first=918 second=334 amount=-1 +kerning first=918 second=335 amount=-1 +kerning first=918 second=336 amount=-1 +kerning first=918 second=337 amount=-1 +kerning first=918 second=338 amount=-1 +kerning first=918 second=339 amount=-1 +kerning first=918 second=377 amount=1 +kerning first=918 second=379 amount=1 +kerning first=918 second=381 amount=1 +kerning first=918 second=918 amount=1 +kerning first=918 second=920 amount=-1 +kerning first=918 second=927 amount=-1 +kerning first=918 second=940 amount=-1 +kerning first=918 second=941 amount=-1 +kerning first=918 second=945 amount=-1 +kerning first=918 second=949 amount=-1 +kerning first=918 second=959 amount=-1 +kerning first=918 second=962 amount=-1 +kerning first=918 second=963 amount=-1 +kerning first=918 second=966 amount=-1 +kerning first=918 second=972 amount=-1 +kerning first=918 second=1028 amount=-1 +kerning first=918 second=1054 amount=-1 +kerning first=918 second=1057 amount=-1 +kerning first=918 second=1077 amount=-1 +kerning first=918 second=1086 amount=-1 +kerning first=918 second=1089 amount=-1 +kerning first=918 second=1092 amount=-1 +kerning first=918 second=1104 amount=-1 +kerning first=918 second=1105 amount=-1 +kerning first=918 second=1108 amount=-1 +kerning first=918 second=1194 amount=-1 +kerning first=918 second=1195 amount=-1 +kerning first=918 second=1240 amount=-1 +kerning first=918 second=1241 amount=-1 +kerning first=918 second=1256 amount=-1 +kerning first=918 second=1257 amount=-1 +kerning first=918 second=8211 amount=-3 +kerning first=918 second=8212 amount=-3 +kerning first=920 second=44 amount=-1 +kerning first=920 second=46 amount=-1 +kerning first=920 second=47 amount=-1 +kerning first=920 second=65 amount=-2 +kerning first=920 second=84 amount=-2 +kerning first=920 second=86 amount=-2 +kerning first=920 second=87 amount=-2 kerning first=920 second=88 amount=-3 -kerning first=95 second=290 amount=-2 -kerning first=238 second=210 amount=-2 -kerning first=358 second=338 amount=-2 -kerning first=361 second=100 amount=-1 -kerning first=950 second=941 amount=-1 -kerning first=258 second=352 amount=-1 -kerning first=381 second=262 amount=-1 -kerning first=1026 second=1241 amount=-1 -kerning first=8226 second=227 amount=-1 -kerning first=53 second=376 amount=-5 -kerning first=1064 second=1079 amount=-1 -kerning first=193 second=1035 amount=-5 -kerning first=196 second=291 amount=-1 -kerning first=1070 second=89 amount=-3 -kerning first=314 second=211 amount=-2 -kerning first=70 second=8212 amount=-2 -kerning first=73 second=1059 amount=-2 -kerning first=1099 second=251 amount=-1 +kerning first=920 second=89 amount=-3 +kerning first=920 second=90 amount=-1 +kerning first=920 second=193 amount=-2 +kerning first=920 second=194 amount=-2 +kerning first=920 second=196 amount=-2 +kerning first=920 second=197 amount=-2 +kerning first=920 second=198 amount=-2 +kerning first=920 second=221 amount=-3 +kerning first=920 second=256 amount=-2 +kerning first=920 second=258 amount=-2 +kerning first=920 second=260 amount=-2 +kerning first=920 second=354 amount=-2 +kerning first=920 second=356 amount=-2 +kerning first=920 second=372 amount=-2 +kerning first=920 second=374 amount=-3 +kerning first=920 second=376 amount=-3 +kerning first=920 second=377 amount=-1 +kerning first=920 second=379 amount=-1 +kerning first=920 second=381 amount=-1 +kerning first=920 second=913 amount=-2 +kerning first=920 second=916 amount=-2 +kerning first=920 second=918 amount=-1 +kerning first=920 second=923 amount=-2 +kerning first=920 second=932 amount=-2 +kerning first=920 second=933 amount=-3 +kerning first=920 second=935 amount=-3 +kerning first=920 second=939 amount=-3 +kerning first=920 second=955 amount=-2 +kerning first=920 second=967 amount=-1 +kerning first=920 second=1026 amount=-2 +kerning first=920 second=1033 amount=-1 +kerning first=920 second=1035 amount=-2 +kerning first=920 second=1040 amount=-2 +kerning first=920 second=1044 amount=-1 +kerning first=920 second=1046 amount=-3 +kerning first=920 second=1051 amount=-1 +kerning first=920 second=1058 amount=-2 +kerning first=920 second=1061 amount=-3 +kerning first=920 second=1066 amount=-2 +kerning first=920 second=1071 amount=-1 +kerning first=920 second=1174 amount=-3 +kerning first=920 second=1184 amount=-2 +kerning first=920 second=1198 amount=-3 +kerning first=920 second=1202 amount=-3 +kerning first=920 second=1298 amount=-1 +kerning first=920 second=8218 amount=-1 +kerning first=920 second=8222 amount=-1 +kerning first=920 second=8230 amount=-1 +kerning first=922 second=38 amount=-2 +kerning first=922 second=45 amount=-4 +kerning first=922 second=63 amount=-2 +kerning first=922 second=67 amount=-3 +kerning first=922 second=71 amount=-3 +kerning first=922 second=74 amount=-1 +kerning first=922 second=79 amount=-3 +kerning first=922 second=81 amount=-3 +kerning first=922 second=83 amount=-1 +kerning first=922 second=97 amount=-1 +kerning first=922 second=99 amount=-2 +kerning first=922 second=100 amount=-2 +kerning first=922 second=101 amount=-2 +kerning first=922 second=102 amount=-2 +kerning first=922 second=103 amount=-1 +kerning first=922 second=111 amount=-2 +kerning first=922 second=113 amount=-2 +kerning first=922 second=116 amount=-1 +kerning first=922 second=117 amount=-1 +kerning first=922 second=118 amount=-3 +kerning first=922 second=119 amount=-3 +kerning first=922 second=121 amount=-2 +kerning first=922 second=171 amount=-3 +kerning first=922 second=173 amount=-4 +kerning first=922 second=187 amount=-2 +kerning first=922 second=199 amount=-3 +kerning first=922 second=210 amount=-3 +kerning first=922 second=211 amount=-3 +kerning first=922 second=212 amount=-3 +kerning first=922 second=213 amount=-3 +kerning first=922 second=214 amount=-3 +kerning first=922 second=216 amount=-3 +kerning first=922 second=224 amount=-1 +kerning first=922 second=225 amount=-1 +kerning first=922 second=226 amount=-1 +kerning first=922 second=227 amount=-1 +kerning first=922 second=228 amount=-1 +kerning first=922 second=229 amount=-1 +kerning first=922 second=230 amount=-1 +kerning first=922 second=231 amount=-2 +kerning first=922 second=232 amount=-2 +kerning first=922 second=233 amount=-2 +kerning first=922 second=234 amount=-2 +kerning first=922 second=235 amount=-2 +kerning first=922 second=240 amount=-2 +kerning first=922 second=242 amount=-2 +kerning first=922 second=243 amount=-2 +kerning first=922 second=244 amount=-2 +kerning first=922 second=245 amount=-2 +kerning first=922 second=246 amount=-2 +kerning first=922 second=248 amount=-2 +kerning first=922 second=249 amount=-1 +kerning first=922 second=250 amount=-1 +kerning first=922 second=251 amount=-1 +kerning first=922 second=252 amount=-1 +kerning first=922 second=253 amount=-2 +kerning first=922 second=257 amount=-1 +kerning first=922 second=259 amount=-1 +kerning first=922 second=261 amount=-1 +kerning first=922 second=262 amount=-3 +kerning first=922 second=263 amount=-2 +kerning first=922 second=266 amount=-3 +kerning first=922 second=267 amount=-2 +kerning first=922 second=268 amount=-3 +kerning first=922 second=269 amount=-2 +kerning first=922 second=271 amount=-2 +kerning first=922 second=273 amount=-2 +kerning first=922 second=275 amount=-2 +kerning first=922 second=277 amount=-2 +kerning first=922 second=279 amount=-2 +kerning first=922 second=281 amount=-2 +kerning first=922 second=283 amount=-2 +kerning first=922 second=286 amount=-3 +kerning first=922 second=287 amount=-1 +kerning first=922 second=288 amount=-3 +kerning first=922 second=289 amount=-1 +kerning first=922 second=290 amount=-3 +kerning first=922 second=291 amount=-1 +kerning first=922 second=332 amount=-3 +kerning first=922 second=333 amount=-2 +kerning first=922 second=334 amount=-3 +kerning first=922 second=335 amount=-2 +kerning first=922 second=336 amount=-3 +kerning first=922 second=337 amount=-2 +kerning first=922 second=338 amount=-3 +kerning first=922 second=339 amount=-2 +kerning first=922 second=346 amount=-1 +kerning first=922 second=350 amount=-1 +kerning first=922 second=352 amount=-1 +kerning first=922 second=355 amount=-1 +kerning first=922 second=357 amount=-1 +kerning first=922 second=359 amount=-1 +kerning first=922 second=361 amount=-1 +kerning first=922 second=363 amount=-1 +kerning first=922 second=365 amount=-1 +kerning first=922 second=367 amount=-1 +kerning first=922 second=369 amount=-1 +kerning first=922 second=371 amount=-1 +kerning first=922 second=373 amount=-3 +kerning first=922 second=375 amount=-2 +kerning first=922 second=920 amount=-3 +kerning first=922 second=927 amount=-3 +kerning first=922 second=940 amount=-2 +kerning first=922 second=941 amount=-2 +kerning first=922 second=945 amount=-2 +kerning first=922 second=947 amount=-3 +kerning first=922 second=949 amount=-2 +kerning first=922 second=957 amount=-3 +kerning first=922 second=959 amount=-2 +kerning first=922 second=962 amount=-2 +kerning first=922 second=963 amount=-2 +kerning first=922 second=964 amount=-4 +kerning first=922 second=965 amount=-1 +kerning first=922 second=966 amount=-2 +kerning first=922 second=968 amount=-1 +kerning first=922 second=972 amount=-2 +kerning first=922 second=973 amount=-1 +kerning first=922 second=1028 amount=-3 +kerning first=922 second=1029 amount=-1 +kerning first=922 second=1032 amount=-1 +kerning first=922 second=1054 amount=-3 +kerning first=922 second=1057 amount=-3 +kerning first=922 second=1069 amount=-2 +kerning first=922 second=1072 amount=-1 +kerning first=922 second=1077 amount=-2 +kerning first=922 second=1079 amount=-1 +kerning first=922 second=1086 amount=-2 +kerning first=922 second=1089 amount=-2 +kerning first=922 second=1090 amount=-4 +kerning first=922 second=1091 amount=-2 +kerning first=922 second=1092 amount=-2 +kerning first=922 second=1098 amount=-4 +kerning first=922 second=1101 amount=-1 +kerning first=922 second=1104 amount=-2 +kerning first=922 second=1105 amount=-2 +kerning first=922 second=1108 amount=-2 +kerning first=922 second=1118 amount=-2 +kerning first=922 second=1176 amount=-2 +kerning first=922 second=1177 amount=-1 +kerning first=922 second=1185 amount=-4 +kerning first=922 second=1194 amount=-3 +kerning first=922 second=1195 amount=-2 +kerning first=922 second=1199 amount=-3 +kerning first=922 second=1240 amount=-3 +kerning first=922 second=1241 amount=-2 +kerning first=922 second=1256 amount=-3 +kerning first=922 second=1257 amount=-2 +kerning first=922 second=1263 amount=-2 +kerning first=922 second=8211 amount=-4 +kerning first=922 second=8212 amount=-4 +kerning first=922 second=8249 amount=-3 +kerning first=922 second=8250 amount=-2 +kerning first=923 second=34 amount=-3 +kerning first=923 second=38 amount=-1 +kerning first=923 second=39 amount=-3 +kerning first=923 second=45 amount=-2 +kerning first=923 second=63 amount=-5 +kerning first=923 second=67 amount=-2 +kerning first=923 second=71 amount=-2 +kerning first=923 second=74 amount=-1 +kerning first=923 second=79 amount=-2 +kerning first=923 second=81 amount=-2 +kerning first=923 second=83 amount=-1 +kerning first=923 second=84 amount=-5 +kerning first=923 second=85 amount=-2 +kerning first=923 second=86 amount=-6 +kerning first=923 second=87 amount=-5 +kerning first=923 second=89 amount=-5 +kerning first=923 second=97 amount=-1 +kerning first=923 second=99 amount=-1 +kerning first=923 second=100 amount=-1 +kerning first=923 second=101 amount=-1 +kerning first=923 second=102 amount=-2 +kerning first=923 second=103 amount=-1 +kerning first=923 second=106 amount=1 +kerning first=923 second=111 amount=-1 +kerning first=923 second=113 amount=-1 +kerning first=923 second=115 amount=-1 +kerning first=923 second=116 amount=-1 +kerning first=923 second=117 amount=-1 +kerning first=923 second=118 amount=-4 +kerning first=923 second=119 amount=-4 +kerning first=923 second=121 amount=-1 +kerning first=923 second=171 amount=-3 +kerning first=923 second=173 amount=-2 +kerning first=923 second=187 amount=-1 +kerning first=923 second=199 amount=-2 +kerning first=923 second=210 amount=-2 +kerning first=923 second=211 amount=-2 +kerning first=923 second=212 amount=-2 +kerning first=923 second=213 amount=-2 +kerning first=923 second=214 amount=-2 +kerning first=923 second=216 amount=-2 +kerning first=923 second=217 amount=-2 +kerning first=923 second=218 amount=-2 +kerning first=923 second=219 amount=-2 +kerning first=923 second=220 amount=-2 +kerning first=923 second=221 amount=-5 +kerning first=923 second=224 amount=-1 +kerning first=923 second=225 amount=-1 +kerning first=923 second=226 amount=-1 +kerning first=923 second=227 amount=-1 +kerning first=923 second=228 amount=-1 +kerning first=923 second=229 amount=-1 +kerning first=923 second=230 amount=-1 +kerning first=923 second=231 amount=-1 +kerning first=923 second=232 amount=-1 +kerning first=923 second=233 amount=-1 +kerning first=923 second=234 amount=-1 +kerning first=923 second=235 amount=-1 +kerning first=923 second=240 amount=-1 +kerning first=923 second=242 amount=-1 +kerning first=923 second=243 amount=-1 +kerning first=923 second=244 amount=-1 +kerning first=923 second=245 amount=-1 +kerning first=923 second=246 amount=-1 +kerning first=923 second=248 amount=-1 +kerning first=923 second=249 amount=-1 +kerning first=923 second=250 amount=-1 +kerning first=923 second=251 amount=-1 +kerning first=923 second=252 amount=-1 +kerning first=923 second=253 amount=-1 +kerning first=923 second=257 amount=-1 +kerning first=923 second=259 amount=-1 +kerning first=923 second=261 amount=-1 +kerning first=923 second=262 amount=-2 kerning first=923 second=263 amount=-1 -kerning first=239 second=365 amount=-1 -kerning first=169 second=8216 amount=-3 -kerning first=8224 second=1256 amount=-2 -kerning first=51 second=8250 amount=-1 -kerning first=1071 second=266 amount=-2 -kerning first=315 second=366 amount=-1 -kerning first=8365 second=79 amount=-2 -kerning first=80 second=248 amount=-1 -kerning first=223 second=171 amount=-3 -kerning first=934 second=213 amount=-2 -kerning first=237 second=8217 amount=-3 -kerning first=960 second=355 amount=-1 -kerning first=963 second=115 amount=-1 -kerning first=126 second=87 amount=-5 -kerning first=38 second=337 amount=-1 -kerning first=41 second=99 amount=-1 -kerning first=180 second=249 amount=-1 -kerning first=177 second=940 amount=-1 -kerning first=61 second=261 amount=-1 -kerning first=58 second=953 amount=-1 -kerning first=8363 second=945 amount=-1 -kerning first=84 second=198 amount=-6 -kerning first=221 second=1078 amount=-2 -kerning first=936 second=368 amount=-2 -kerning first=107 second=100 amount=-2 -kerning first=1185 second=972 amount=-2 -kerning first=247 second=250 amount=-1 -kerning first=160 second=262 amount=-2 -kerning first=273 second=187 amount=-1 -kerning first=45 second=49 amount=-3 -kerning first=42 second=277 amount=-1 -kerning first=1046 second=227 amount=-1 -kerning first=185 second=199 amount=-2 -kerning first=294 second=1079 amount=-1 -kerning first=300 second=89 amount=-5 -kerning first=65 second=211 amount=-2 -kerning first=205 second=339 amount=-1 -kerning first=202 second=1098 amount=-3 -kerning first=325 second=251 amount=-1 -kerning first=88 second=113 amount=-2 -kerning first=931 second=8221 amount=-3 -kerning first=968 second=240 amount=-1 -kerning first=164 second=212 amount=-2 -kerning first=277 second=102 amount=-1 -kerning first=1041 second=1256 amount=-2 -kerning first=186 second=354 amount=-5 -kerning first=183 second=1118 amount=-1 -kerning first=301 second=266 amount=-2 -kerning first=304 second=39 amount=-3 -kerning first=63 second=1184 amount=-5 -kerning first=1075 second=8222 amount=-3 -kerning first=1087 second=79 amount=-2 -kerning first=209 second=279 amount=-1 -kerning first=206 second=970 amount=-1 -kerning first=8377 second=359 amount=-1 -kerning first=946 second=253 amount=-1 +kerning first=923 second=266 amount=-2 +kerning first=923 second=267 amount=-1 +kerning first=923 second=268 amount=-2 +kerning first=923 second=269 amount=-1 +kerning first=923 second=271 amount=-1 +kerning first=923 second=273 amount=-1 +kerning first=923 second=275 amount=-1 +kerning first=923 second=277 amount=-1 +kerning first=923 second=279 amount=-1 +kerning first=923 second=281 amount=-1 +kerning first=923 second=283 amount=-1 +kerning first=923 second=286 amount=-2 +kerning first=923 second=287 amount=-1 +kerning first=923 second=288 amount=-2 +kerning first=923 second=289 amount=-1 +kerning first=923 second=290 amount=-2 +kerning first=923 second=291 amount=-1 +kerning first=923 second=332 amount=-2 +kerning first=923 second=333 amount=-1 +kerning first=923 second=334 amount=-2 +kerning first=923 second=335 amount=-1 +kerning first=923 second=336 amount=-2 +kerning first=923 second=337 amount=-1 +kerning first=923 second=338 amount=-2 +kerning first=923 second=339 amount=-1 +kerning first=923 second=346 amount=-1 +kerning first=923 second=347 amount=-1 +kerning first=923 second=350 amount=-1 +kerning first=923 second=351 amount=-1 +kerning first=923 second=352 amount=-1 +kerning first=923 second=353 amount=-1 +kerning first=923 second=354 amount=-5 +kerning first=923 second=355 amount=-1 +kerning first=923 second=356 amount=-5 +kerning first=923 second=357 amount=-1 +kerning first=923 second=359 amount=-1 +kerning first=923 second=360 amount=-2 +kerning first=923 second=361 amount=-1 +kerning first=923 second=362 amount=-2 +kerning first=923 second=363 amount=-1 +kerning first=923 second=364 amount=-2 +kerning first=923 second=365 amount=-1 +kerning first=923 second=366 amount=-2 +kerning first=923 second=367 amount=-1 +kerning first=923 second=368 amount=-2 +kerning first=923 second=369 amount=-1 +kerning first=923 second=370 amount=-2 +kerning first=923 second=371 amount=-1 +kerning first=923 second=372 amount=-5 +kerning first=923 second=373 amount=-4 +kerning first=923 second=374 amount=-5 +kerning first=923 second=375 amount=-1 +kerning first=923 second=376 amount=-5 +kerning first=923 second=920 amount=-2 +kerning first=923 second=927 amount=-2 +kerning first=923 second=932 amount=-5 +kerning first=923 second=933 amount=-5 +kerning first=923 second=936 amount=-3 +kerning first=923 second=939 amount=-5 +kerning first=923 second=940 amount=-1 +kerning first=923 second=941 amount=-1 +kerning first=923 second=943 amount=-1 +kerning first=923 second=945 amount=-1 +kerning first=923 second=947 amount=-4 +kerning first=923 second=949 amount=-1 +kerning first=923 second=950 amount=-1 +kerning first=923 second=953 amount=-1 +kerning first=923 second=957 amount=-4 +kerning first=923 second=959 amount=-1 +kerning first=923 second=962 amount=-1 +kerning first=923 second=963 amount=-1 +kerning first=923 second=964 amount=-3 +kerning first=923 second=965 amount=-1 +kerning first=923 second=966 amount=-1 +kerning first=923 second=968 amount=-1 +kerning first=923 second=970 amount=-1 +kerning first=923 second=972 amount=-1 +kerning first=923 second=973 amount=-1 +kerning first=923 second=1026 amount=-5 +kerning first=923 second=1028 amount=-2 +kerning first=923 second=1029 amount=-1 +kerning first=923 second=1032 amount=-1 +kerning first=923 second=1035 amount=-5 +kerning first=923 second=1038 amount=-2 +kerning first=923 second=1054 amount=-2 +kerning first=923 second=1057 amount=-2 +kerning first=923 second=1058 amount=-5 +kerning first=923 second=1059 amount=-2 +kerning first=923 second=1063 amount=-3 +kerning first=923 second=1066 amount=-5 +kerning first=923 second=1069 amount=-1 +kerning first=923 second=1072 amount=-1 +kerning first=923 second=1077 amount=-1 +kerning first=923 second=1079 amount=-1 +kerning first=923 second=1086 amount=-1 +kerning first=923 second=1089 amount=-1 +kerning first=923 second=1090 amount=-3 +kerning first=923 second=1091 amount=-1 +kerning first=923 second=1092 amount=-1 +kerning first=923 second=1098 amount=-3 +kerning first=923 second=1101 amount=-1 +kerning first=923 second=1104 amount=-1 +kerning first=923 second=1105 amount=-1 +kerning first=923 second=1108 amount=-1 +kerning first=923 second=1109 amount=-1 +kerning first=923 second=1112 amount=1 +kerning first=923 second=1118 amount=-1 +kerning first=923 second=1176 amount=-1 +kerning first=923 second=1177 amount=-1 +kerning first=923 second=1184 amount=-5 +kerning first=923 second=1185 amount=-3 +kerning first=923 second=1194 amount=-2 +kerning first=923 second=1195 amount=-1 +kerning first=923 second=1198 amount=-5 +kerning first=923 second=1199 amount=-4 +kerning first=923 second=1240 amount=-2 +kerning first=923 second=1241 amount=-1 +kerning first=923 second=1256 amount=-2 +kerning first=923 second=1257 amount=-1 +kerning first=923 second=1262 amount=-2 +kerning first=923 second=1263 amount=-1 +kerning first=923 second=8211 amount=-2 +kerning first=923 second=8212 amount=-2 +kerning first=923 second=8216 amount=-3 +kerning first=923 second=8217 amount=-3 +kerning first=923 second=8220 amount=-3 +kerning first=923 second=8221 amount=-3 +kerning first=923 second=8249 amount=-3 +kerning first=923 second=8250 amount=-1 +kerning first=927 second=44 amount=-1 +kerning first=927 second=46 amount=-1 +kerning first=927 second=47 amount=-1 +kerning first=927 second=65 amount=-2 +kerning first=927 second=84 amount=-2 +kerning first=927 second=86 amount=-2 +kerning first=927 second=87 amount=-2 +kerning first=927 second=88 amount=-3 +kerning first=927 second=89 amount=-3 +kerning first=927 second=90 amount=-1 +kerning first=927 second=193 amount=-2 +kerning first=927 second=194 amount=-2 +kerning first=927 second=196 amount=-2 +kerning first=927 second=197 amount=-2 +kerning first=927 second=198 amount=-2 +kerning first=927 second=221 amount=-3 +kerning first=927 second=256 amount=-2 +kerning first=927 second=258 amount=-2 +kerning first=927 second=260 amount=-2 +kerning first=927 second=354 amount=-2 +kerning first=927 second=356 amount=-2 +kerning first=927 second=372 amount=-2 +kerning first=927 second=374 amount=-3 +kerning first=927 second=376 amount=-3 +kerning first=927 second=377 amount=-1 +kerning first=927 second=379 amount=-1 +kerning first=927 second=381 amount=-1 +kerning first=927 second=913 amount=-2 +kerning first=927 second=916 amount=-2 +kerning first=927 second=918 amount=-1 +kerning first=927 second=923 amount=-2 +kerning first=927 second=932 amount=-2 +kerning first=927 second=933 amount=-3 +kerning first=927 second=935 amount=-3 +kerning first=927 second=939 amount=-3 +kerning first=927 second=955 amount=-2 +kerning first=927 second=967 amount=-1 +kerning first=927 second=1026 amount=-2 +kerning first=927 second=1033 amount=-1 +kerning first=927 second=1035 amount=-2 +kerning first=927 second=1040 amount=-2 +kerning first=927 second=1044 amount=-1 +kerning first=927 second=1046 amount=-3 +kerning first=927 second=1051 amount=-1 +kerning first=927 second=1058 amount=-2 +kerning first=927 second=1061 amount=-3 +kerning first=927 second=1066 amount=-2 +kerning first=927 second=1071 amount=-1 +kerning first=927 second=1174 amount=-3 +kerning first=927 second=1184 amount=-2 +kerning first=927 second=1198 amount=-3 +kerning first=927 second=1202 amount=-3 +kerning first=927 second=1298 amount=-1 +kerning first=927 second=8218 amount=-1 +kerning first=927 second=8222 amount=-1 +kerning first=927 second=8230 amount=-1 +kerning first=929 second=44 amount=-4 +kerning first=929 second=45 amount=-1 +kerning first=929 second=46 amount=-4 +kerning first=929 second=47 amount=-3 +kerning first=929 second=65 amount=-4 +kerning first=929 second=74 amount=-3 +kerning first=929 second=86 amount=-1 +kerning first=929 second=87 amount=-1 +kerning first=929 second=88 amount=-2 +kerning first=929 second=89 amount=-2 +kerning first=929 second=90 amount=-1 +kerning first=929 second=97 amount=-1 +kerning first=929 second=103 amount=-1 +kerning first=929 second=173 amount=-1 +kerning first=929 second=193 amount=-4 +kerning first=929 second=194 amount=-4 +kerning first=929 second=196 amount=-4 +kerning first=929 second=197 amount=-4 +kerning first=929 second=198 amount=-4 +kerning first=929 second=221 amount=-2 +kerning first=929 second=224 amount=-1 +kerning first=929 second=225 amount=-1 +kerning first=929 second=226 amount=-1 +kerning first=929 second=227 amount=-1 +kerning first=929 second=228 amount=-1 +kerning first=929 second=229 amount=-1 +kerning first=929 second=230 amount=-1 +kerning first=929 second=256 amount=-4 +kerning first=929 second=257 amount=-1 +kerning first=929 second=258 amount=-4 +kerning first=929 second=259 amount=-1 +kerning first=929 second=260 amount=-4 +kerning first=929 second=261 amount=-1 +kerning first=929 second=287 amount=-1 +kerning first=929 second=289 amount=-1 +kerning first=929 second=291 amount=-1 +kerning first=929 second=372 amount=-1 +kerning first=929 second=374 amount=-2 +kerning first=929 second=376 amount=-2 +kerning first=929 second=377 amount=-1 +kerning first=929 second=379 amount=-1 +kerning first=929 second=381 amount=-1 +kerning first=929 second=913 amount=-4 +kerning first=929 second=916 amount=-4 +kerning first=929 second=918 amount=-1 +kerning first=929 second=923 amount=-4 +kerning first=929 second=933 amount=-2 +kerning first=929 second=935 amount=-2 +kerning first=929 second=939 amount=-2 +kerning first=929 second=950 amount=-1 +kerning first=929 second=955 amount=-3 +kerning first=929 second=961 amount=-1 +kerning first=929 second=1032 amount=-3 +kerning first=929 second=1040 amount=-4 +kerning first=929 second=1046 amount=-2 +kerning first=929 second=1061 amount=-2 +kerning first=929 second=1072 amount=-1 +kerning first=929 second=1174 amount=-2 +kerning first=929 second=1198 amount=-2 +kerning first=929 second=1202 amount=-2 +kerning first=929 second=8211 amount=-1 +kerning first=929 second=8212 amount=-1 +kerning first=929 second=8218 amount=-4 +kerning first=929 second=8222 amount=-4 +kerning first=929 second=8230 amount=-4 +kerning first=932 second=44 amount=-3 +kerning first=932 second=45 amount=-4 +kerning first=932 second=46 amount=-3 +kerning first=932 second=47 amount=-4 +kerning first=932 second=110 amount=-2 +kerning first=932 second=65 amount=-6 +kerning first=932 second=67 amount=-1 +kerning first=932 second=114 amount=-2 +kerning first=932 second=71 amount=-1 +kerning first=932 second=74 amount=-5 +kerning first=932 second=79 amount=-1 +kerning first=932 second=81 amount=-1 +kerning first=932 second=83 amount=-1 +kerning first=932 second=97 amount=-2 +kerning first=932 second=99 amount=-3 +kerning first=932 second=100 amount=-3 +kerning first=932 second=101 amount=-3 +kerning first=932 second=103 amount=-2 +kerning first=932 second=109 amount=-2 +kerning first=932 second=111 amount=-3 +kerning first=932 second=112 amount=-2 +kerning first=932 second=113 amount=-3 +kerning first=932 second=115 amount=-3 +kerning first=932 second=117 amount=-2 +kerning first=932 second=118 amount=-2 +kerning first=932 second=119 amount=-2 +kerning first=932 second=120 amount=-1 +kerning first=932 second=121 amount=-2 +kerning first=932 second=122 amount=-1 +kerning first=932 second=171 amount=-3 +kerning first=932 second=173 amount=-4 +kerning first=932 second=187 amount=-1 +kerning first=932 second=193 amount=-6 +kerning first=932 second=194 amount=-6 +kerning first=932 second=196 amount=-6 +kerning first=932 second=197 amount=-6 +kerning first=932 second=198 amount=-6 +kerning first=932 second=199 amount=-1 +kerning first=932 second=210 amount=-1 +kerning first=932 second=211 amount=-1 +kerning first=932 second=212 amount=-1 +kerning first=932 second=213 amount=-1 +kerning first=932 second=214 amount=-1 +kerning first=932 second=216 amount=-1 +kerning first=932 second=224 amount=-2 +kerning first=932 second=225 amount=-2 +kerning first=932 second=226 amount=-2 +kerning first=932 second=227 amount=-2 +kerning first=932 second=228 amount=-2 +kerning first=932 second=229 amount=-2 +kerning first=932 second=230 amount=-2 +kerning first=932 second=231 amount=-3 +kerning first=932 second=232 amount=-3 +kerning first=932 second=233 amount=-3 +kerning first=932 second=234 amount=-3 +kerning first=932 second=235 amount=-3 +kerning first=932 second=240 amount=-3 +kerning first=932 second=241 amount=-2 +kerning first=932 second=242 amount=-3 +kerning first=932 second=243 amount=-3 +kerning first=932 second=244 amount=-3 +kerning first=932 second=245 amount=-3 +kerning first=932 second=246 amount=-3 +kerning first=932 second=248 amount=-3 +kerning first=932 second=249 amount=-2 +kerning first=932 second=250 amount=-2 +kerning first=932 second=251 amount=-2 +kerning first=932 second=252 amount=-2 +kerning first=932 second=253 amount=-2 +kerning first=932 second=256 amount=-6 +kerning first=932 second=257 amount=-2 +kerning first=932 second=258 amount=-6 +kerning first=932 second=259 amount=-2 +kerning first=932 second=260 amount=-6 +kerning first=932 second=261 amount=-2 +kerning first=932 second=262 amount=-1 +kerning first=932 second=263 amount=-3 +kerning first=932 second=266 amount=-1 +kerning first=932 second=267 amount=-3 +kerning first=932 second=268 amount=-1 +kerning first=932 second=269 amount=-3 +kerning first=932 second=271 amount=-3 +kerning first=932 second=273 amount=-3 +kerning first=932 second=275 amount=-3 +kerning first=932 second=277 amount=-3 +kerning first=932 second=279 amount=-3 +kerning first=932 second=281 amount=-3 +kerning first=932 second=283 amount=-3 +kerning first=932 second=286 amount=-1 +kerning first=932 second=287 amount=-2 +kerning first=932 second=288 amount=-1 +kerning first=932 second=289 amount=-2 +kerning first=932 second=290 amount=-1 +kerning first=932 second=291 amount=-2 +kerning first=932 second=324 amount=-2 +kerning first=932 second=326 amount=-2 +kerning first=932 second=328 amount=-2 +kerning first=932 second=331 amount=-2 +kerning first=932 second=332 amount=-1 +kerning first=932 second=333 amount=-3 +kerning first=932 second=334 amount=-1 +kerning first=932 second=335 amount=-3 +kerning first=932 second=336 amount=-1 +kerning first=932 second=337 amount=-3 +kerning first=932 second=338 amount=-1 +kerning first=932 second=339 amount=-3 +kerning first=932 second=341 amount=-2 +kerning first=932 second=343 amount=-2 +kerning first=932 second=345 amount=-2 +kerning first=932 second=346 amount=-1 +kerning first=932 second=347 amount=-3 +kerning first=932 second=350 amount=-1 +kerning first=932 second=351 amount=-3 +kerning first=932 second=352 amount=-1 +kerning first=932 second=353 amount=-3 +kerning first=932 second=361 amount=-2 +kerning first=932 second=363 amount=-2 +kerning first=932 second=365 amount=-2 +kerning first=932 second=367 amount=-2 +kerning first=932 second=369 amount=-2 +kerning first=932 second=371 amount=-2 +kerning first=932 second=373 amount=-2 +kerning first=932 second=375 amount=-2 +kerning first=932 second=378 amount=-1 +kerning first=932 second=380 amount=-1 +kerning first=932 second=382 amount=-1 +kerning first=932 second=913 amount=-6 +kerning first=932 second=916 amount=-6 +kerning first=932 second=920 amount=-1 +kerning first=932 second=923 amount=-6 +kerning first=932 second=927 amount=-1 +kerning first=932 second=940 amount=-3 +kerning first=932 second=941 amount=-3 +kerning first=932 second=942 amount=-2 +kerning first=932 second=945 amount=-3 +kerning first=932 second=947 amount=-2 +kerning first=932 second=949 amount=-3 +kerning first=932 second=951 amount=-2 +kerning first=932 second=954 amount=-2 +kerning first=932 second=957 amount=-2 +kerning first=932 second=959 amount=-3 +kerning first=932 second=962 amount=-3 +kerning first=932 second=963 amount=-3 +kerning first=932 second=965 amount=-2 +kerning first=932 second=966 amount=-3 +kerning first=932 second=968 amount=-2 +kerning first=932 second=972 amount=-3 +kerning first=932 second=973 amount=-2 +kerning first=932 second=1028 amount=-1 +kerning first=932 second=1029 amount=-1 +kerning first=932 second=1032 amount=-5 +kerning first=932 second=1033 amount=-4 +kerning first=932 second=1040 amount=-6 +kerning first=932 second=1044 amount=-4 +kerning first=932 second=1051 amount=-4 +kerning first=932 second=1054 amount=-1 +kerning first=932 second=1057 amount=-1 +kerning first=932 second=1072 amount=-2 +kerning first=932 second=1074 amount=-2 +kerning first=932 second=1075 amount=-2 +kerning first=932 second=1077 amount=-3 +kerning first=932 second=1078 amount=-1 +kerning first=932 second=1079 amount=-2 +kerning first=932 second=1080 amount=-2 +kerning first=932 second=1081 amount=-2 +kerning first=932 second=1082 amount=-2 +kerning first=932 second=1084 amount=-2 +kerning first=932 second=1085 amount=-2 +kerning first=932 second=1086 amount=-3 +kerning first=932 second=1087 amount=-2 +kerning first=932 second=1088 amount=-2 +kerning first=932 second=1089 amount=-3 +kerning first=932 second=1091 amount=-2 +kerning first=932 second=1092 amount=-3 +kerning first=932 second=1093 amount=-1 +kerning first=932 second=1094 amount=-2 +kerning first=932 second=1096 amount=-2 +kerning first=932 second=1097 amount=-2 +kerning first=932 second=1099 amount=-2 +kerning first=932 second=1100 amount=-2 +kerning first=932 second=1101 amount=-2 +kerning first=932 second=1102 amount=-2 +kerning first=932 second=1104 amount=-3 +kerning first=932 second=1105 amount=-3 +kerning first=932 second=1107 amount=-2 +kerning first=932 second=1108 amount=-3 +kerning first=932 second=1109 amount=-3 +kerning first=932 second=1114 amount=-2 +kerning first=932 second=1116 amount=-2 +kerning first=932 second=1117 amount=-2 +kerning first=932 second=1118 amount=-2 +kerning first=932 second=1119 amount=-2 +kerning first=932 second=1169 amount=-2 +kerning first=932 second=1175 amount=-1 +kerning first=932 second=1177 amount=-2 +kerning first=932 second=1179 amount=-2 +kerning first=932 second=1187 amount=-2 +kerning first=932 second=1194 amount=-1 +kerning first=932 second=1195 amount=-3 +kerning first=932 second=1199 amount=-2 +kerning first=932 second=1203 amount=-1 +kerning first=932 second=1220 amount=-2 +kerning first=932 second=1224 amount=-2 +kerning first=932 second=1240 amount=-1 +kerning first=932 second=1241 amount=-3 +kerning first=932 second=1256 amount=-1 +kerning first=932 second=1257 amount=-3 +kerning first=932 second=1263 amount=-2 +kerning first=932 second=1298 amount=-4 +kerning first=932 second=8211 amount=-4 +kerning first=932 second=8212 amount=-4 +kerning first=932 second=8218 amount=-3 +kerning first=932 second=8222 amount=-3 +kerning first=932 second=8230 amount=-3 +kerning first=932 second=8249 amount=-3 +kerning first=932 second=8250 amount=-1 +kerning first=933 second=38 amount=-2 +kerning first=933 second=44 amount=-4 +kerning first=933 second=45 amount=-4 +kerning first=933 second=46 amount=-4 +kerning first=933 second=47 amount=-4 +kerning first=933 second=110 amount=-3 +kerning first=933 second=63 amount=-1 +kerning first=933 second=65 amount=-5 +kerning first=933 second=67 amount=-3 +kerning first=933 second=114 amount=-3 +kerning first=933 second=71 amount=-3 +kerning first=933 second=74 amount=-6 +kerning first=933 second=79 amount=-3 +kerning first=933 second=81 amount=-3 +kerning first=933 second=83 amount=-1 +kerning first=933 second=97 amount=-4 +kerning first=933 second=99 amount=-4 +kerning first=933 second=100 amount=-4 +kerning first=933 second=101 amount=-4 +kerning first=933 second=103 amount=-4 +kerning first=933 second=109 amount=-3 +kerning first=933 second=111 amount=-4 +kerning first=933 second=112 amount=-3 +kerning first=933 second=113 amount=-4 +kerning first=933 second=115 amount=-3 +kerning first=933 second=117 amount=-2 +kerning first=933 second=118 amount=-2 +kerning first=933 second=119 amount=-2 +kerning first=933 second=120 amount=-2 +kerning first=933 second=121 amount=-2 +kerning first=933 second=122 amount=-2 +kerning first=933 second=171 amount=-3 +kerning first=933 second=173 amount=-4 +kerning first=933 second=187 amount=-2 +kerning first=933 second=193 amount=-5 +kerning first=933 second=194 amount=-5 +kerning first=933 second=196 amount=-5 +kerning first=933 second=197 amount=-5 +kerning first=933 second=198 amount=-5 +kerning first=933 second=199 amount=-3 +kerning first=933 second=210 amount=-3 +kerning first=933 second=211 amount=-3 +kerning first=933 second=212 amount=-3 +kerning first=933 second=213 amount=-3 +kerning first=933 second=214 amount=-3 +kerning first=933 second=216 amount=-3 +kerning first=933 second=224 amount=-4 +kerning first=933 second=225 amount=-4 +kerning first=933 second=226 amount=-4 +kerning first=933 second=227 amount=-4 +kerning first=933 second=228 amount=-4 +kerning first=933 second=229 amount=-4 +kerning first=933 second=230 amount=-4 +kerning first=933 second=231 amount=-4 +kerning first=933 second=232 amount=-4 +kerning first=933 second=233 amount=-4 +kerning first=933 second=234 amount=-4 +kerning first=933 second=235 amount=-4 +kerning first=933 second=240 amount=-4 +kerning first=933 second=241 amount=-3 +kerning first=933 second=242 amount=-4 +kerning first=933 second=243 amount=-4 +kerning first=933 second=244 amount=-4 +kerning first=933 second=245 amount=-4 +kerning first=933 second=246 amount=-4 +kerning first=933 second=248 amount=-4 +kerning first=933 second=249 amount=-2 +kerning first=933 second=250 amount=-2 +kerning first=933 second=251 amount=-2 +kerning first=933 second=252 amount=-2 +kerning first=933 second=253 amount=-2 +kerning first=933 second=256 amount=-5 +kerning first=933 second=257 amount=-4 +kerning first=933 second=258 amount=-5 +kerning first=933 second=259 amount=-4 +kerning first=933 second=260 amount=-5 +kerning first=933 second=261 amount=-4 +kerning first=933 second=262 amount=-3 +kerning first=933 second=263 amount=-4 +kerning first=933 second=266 amount=-3 +kerning first=933 second=267 amount=-4 +kerning first=933 second=268 amount=-3 +kerning first=933 second=269 amount=-4 +kerning first=933 second=271 amount=-4 +kerning first=933 second=273 amount=-4 +kerning first=933 second=275 amount=-4 +kerning first=933 second=277 amount=-4 +kerning first=933 second=279 amount=-4 +kerning first=933 second=281 amount=-4 +kerning first=933 second=283 amount=-4 +kerning first=933 second=286 amount=-3 +kerning first=933 second=287 amount=-4 +kerning first=933 second=288 amount=-3 +kerning first=933 second=289 amount=-4 +kerning first=933 second=290 amount=-3 +kerning first=933 second=291 amount=-4 +kerning first=933 second=324 amount=-3 +kerning first=933 second=326 amount=-3 +kerning first=933 second=328 amount=-3 +kerning first=933 second=331 amount=-3 +kerning first=933 second=332 amount=-3 +kerning first=933 second=333 amount=-4 +kerning first=933 second=334 amount=-3 +kerning first=933 second=335 amount=-4 +kerning first=933 second=336 amount=-3 +kerning first=933 second=337 amount=-4 +kerning first=933 second=338 amount=-3 +kerning first=933 second=339 amount=-4 +kerning first=933 second=341 amount=-3 +kerning first=933 second=343 amount=-3 +kerning first=933 second=345 amount=-3 +kerning first=933 second=346 amount=-1 +kerning first=933 second=347 amount=-3 +kerning first=933 second=350 amount=-1 +kerning first=933 second=351 amount=-3 +kerning first=933 second=352 amount=-1 +kerning first=933 second=353 amount=-3 +kerning first=933 second=361 amount=-2 +kerning first=933 second=363 amount=-2 +kerning first=933 second=365 amount=-2 +kerning first=933 second=367 amount=-2 +kerning first=933 second=369 amount=-2 +kerning first=933 second=371 amount=-2 +kerning first=933 second=373 amount=-2 +kerning first=933 second=375 amount=-2 +kerning first=933 second=378 amount=-2 +kerning first=933 second=380 amount=-2 +kerning first=933 second=382 amount=-2 +kerning first=933 second=913 amount=-5 +kerning first=933 second=916 amount=-5 +kerning first=933 second=920 amount=-3 +kerning first=933 second=923 amount=-5 +kerning first=933 second=927 amount=-3 +kerning first=933 second=937 amount=-2 +kerning first=933 second=940 amount=-4 +kerning first=933 second=941 amount=-4 +kerning first=933 second=942 amount=-3 +kerning first=933 second=943 amount=-2 +kerning first=933 second=945 amount=-4 +kerning first=933 second=947 amount=-2 +kerning first=933 second=949 amount=-4 +kerning first=933 second=950 amount=-2 +kerning first=933 second=951 amount=-3 +kerning first=933 second=952 amount=-2 +kerning first=933 second=953 amount=-2 +kerning first=933 second=954 amount=-3 +kerning first=933 second=955 amount=-2 +kerning first=933 second=957 amount=-2 +kerning first=933 second=959 amount=-4 +kerning first=933 second=961 amount=-5 +kerning first=933 second=962 amount=-4 +kerning first=933 second=963 amount=-4 +kerning first=933 second=964 amount=-2 +kerning first=933 second=965 amount=-2 +kerning first=933 second=966 amount=-4 +kerning first=933 second=967 amount=-2 +kerning first=933 second=968 amount=-2 +kerning first=933 second=969 amount=-4 +kerning first=933 second=970 amount=-2 +kerning first=933 second=972 amount=-4 +kerning first=933 second=973 amount=-2 +kerning first=933 second=974 amount=-4 +kerning first=933 second=1028 amount=-3 +kerning first=933 second=1029 amount=-1 +kerning first=933 second=1032 amount=-6 +kerning first=933 second=1033 amount=-5 +kerning first=933 second=1040 amount=-5 +kerning first=933 second=1044 amount=-5 +kerning first=933 second=1051 amount=-5 +kerning first=933 second=1054 amount=-3 +kerning first=933 second=1057 amount=-3 +kerning first=933 second=1069 amount=-2 +kerning first=933 second=1071 amount=-2 +kerning first=933 second=1072 amount=-4 +kerning first=933 second=1074 amount=-3 +kerning first=933 second=1075 amount=-3 +kerning first=933 second=1077 amount=-4 +kerning first=933 second=1078 amount=-2 +kerning first=933 second=1079 amount=-4 +kerning first=933 second=1080 amount=-3 +kerning first=933 second=1081 amount=-3 +kerning first=933 second=1082 amount=-3 +kerning first=933 second=1084 amount=-3 +kerning first=933 second=1085 amount=-3 +kerning first=933 second=1086 amount=-4 +kerning first=933 second=1087 amount=-3 +kerning first=933 second=1088 amount=-3 +kerning first=933 second=1089 amount=-4 +kerning first=933 second=1090 amount=-2 +kerning first=933 second=1091 amount=-2 +kerning first=933 second=1092 amount=-4 +kerning first=933 second=1093 amount=-2 +kerning first=933 second=1094 amount=-3 +kerning first=933 second=1096 amount=-3 +kerning first=933 second=1097 amount=-3 +kerning first=933 second=1098 amount=-2 +kerning first=933 second=1099 amount=-3 +kerning first=933 second=1100 amount=-3 +kerning first=933 second=1101 amount=-4 +kerning first=933 second=1102 amount=-3 +kerning first=933 second=1104 amount=-4 +kerning first=933 second=1105 amount=-4 +kerning first=933 second=1107 amount=-3 +kerning first=933 second=1108 amount=-4 +kerning first=933 second=1109 amount=-3 +kerning first=933 second=1114 amount=-3 +kerning first=933 second=1116 amount=-3 +kerning first=933 second=1117 amount=-3 +kerning first=933 second=1118 amount=-2 +kerning first=933 second=1119 amount=-3 +kerning first=933 second=1169 amount=-3 +kerning first=933 second=1175 amount=-2 +kerning first=933 second=1176 amount=-2 +kerning first=933 second=1177 amount=-4 +kerning first=933 second=1179 amount=-3 +kerning first=933 second=1185 amount=-2 +kerning first=933 second=1187 amount=-3 +kerning first=933 second=1194 amount=-3 +kerning first=933 second=1195 amount=-4 +kerning first=933 second=1199 amount=-2 +kerning first=933 second=1203 amount=-2 +kerning first=933 second=1220 amount=-3 +kerning first=933 second=1224 amount=-3 +kerning first=933 second=1240 amount=-3 +kerning first=933 second=1241 amount=-4 +kerning first=933 second=1256 amount=-3 +kerning first=933 second=1257 amount=-4 +kerning first=933 second=1263 amount=-2 +kerning first=933 second=1298 amount=-5 +kerning first=933 second=8211 amount=-4 +kerning first=933 second=8212 amount=-4 +kerning first=933 second=8218 amount=-4 +kerning first=933 second=8222 amount=-4 +kerning first=933 second=8230 amount=-4 +kerning first=933 second=8249 amount=-3 +kerning first=933 second=8250 amount=-2 +kerning first=934 second=84 amount=-3 +kerning first=934 second=88 amount=-5 +kerning first=934 second=354 amount=-3 +kerning first=934 second=356 amount=-3 +kerning first=934 second=932 amount=-3 +kerning first=934 second=935 amount=-5 +kerning first=934 second=1026 amount=-3 +kerning first=934 second=1033 amount=-3 +kerning first=934 second=1035 amount=-3 +kerning first=934 second=1044 amount=-3 +kerning first=934 second=1046 amount=-5 +kerning first=934 second=1051 amount=-3 +kerning first=934 second=1058 amount=-3 +kerning first=934 second=1061 amount=-5 +kerning first=934 second=1066 amount=-3 +kerning first=934 second=1174 amount=-5 +kerning first=934 second=1184 amount=-3 +kerning first=934 second=1202 amount=-5 +kerning first=934 second=1298 amount=-3 +kerning first=935 second=38 amount=-2 +kerning first=935 second=45 amount=-3 +kerning first=935 second=63 amount=-2 +kerning first=935 second=67 amount=-3 +kerning first=935 second=71 amount=-3 +kerning first=935 second=74 amount=-1 +kerning first=935 second=79 amount=-3 +kerning first=935 second=81 amount=-3 +kerning first=935 second=83 amount=-1 +kerning first=935 second=97 amount=-1 +kerning first=935 second=99 amount=-2 +kerning first=935 second=100 amount=-2 +kerning first=935 second=101 amount=-2 +kerning first=935 second=111 amount=-2 +kerning first=935 second=113 amount=-2 +kerning first=935 second=115 amount=-1 +kerning first=935 second=116 amount=-1 +kerning first=935 second=117 amount=-1 +kerning first=935 second=118 amount=-3 +kerning first=935 second=119 amount=-3 +kerning first=935 second=121 amount=-1 +kerning first=935 second=171 amount=-3 +kerning first=935 second=173 amount=-3 +kerning first=935 second=187 amount=-1 +kerning first=935 second=199 amount=-3 +kerning first=935 second=210 amount=-3 +kerning first=935 second=211 amount=-3 +kerning first=935 second=212 amount=-3 +kerning first=935 second=213 amount=-3 +kerning first=935 second=214 amount=-3 +kerning first=935 second=216 amount=-3 +kerning first=935 second=224 amount=-1 +kerning first=935 second=225 amount=-1 +kerning first=935 second=226 amount=-1 +kerning first=935 second=227 amount=-1 +kerning first=935 second=228 amount=-1 +kerning first=935 second=229 amount=-1 +kerning first=935 second=230 amount=-1 +kerning first=935 second=231 amount=-2 +kerning first=935 second=232 amount=-2 +kerning first=935 second=233 amount=-2 +kerning first=935 second=234 amount=-2 +kerning first=935 second=235 amount=-2 +kerning first=935 second=240 amount=-2 +kerning first=935 second=242 amount=-2 +kerning first=935 second=243 amount=-2 +kerning first=935 second=244 amount=-2 +kerning first=935 second=245 amount=-2 +kerning first=935 second=246 amount=-2 +kerning first=935 second=248 amount=-2 +kerning first=935 second=249 amount=-1 +kerning first=935 second=250 amount=-1 +kerning first=935 second=251 amount=-1 +kerning first=935 second=252 amount=-1 +kerning first=935 second=253 amount=-1 +kerning first=935 second=257 amount=-1 +kerning first=935 second=259 amount=-1 +kerning first=935 second=261 amount=-1 +kerning first=935 second=262 amount=-3 +kerning first=935 second=263 amount=-2 +kerning first=935 second=266 amount=-3 +kerning first=935 second=267 amount=-2 +kerning first=935 second=268 amount=-3 +kerning first=935 second=269 amount=-2 +kerning first=935 second=271 amount=-2 +kerning first=935 second=273 amount=-2 +kerning first=935 second=275 amount=-2 +kerning first=935 second=277 amount=-2 +kerning first=935 second=279 amount=-2 +kerning first=935 second=281 amount=-2 +kerning first=935 second=283 amount=-2 +kerning first=935 second=286 amount=-3 +kerning first=935 second=288 amount=-3 +kerning first=935 second=290 amount=-3 +kerning first=935 second=332 amount=-3 +kerning first=935 second=333 amount=-2 +kerning first=935 second=334 amount=-3 +kerning first=935 second=335 amount=-2 +kerning first=935 second=336 amount=-3 +kerning first=935 second=337 amount=-2 +kerning first=935 second=338 amount=-3 +kerning first=935 second=339 amount=-2 +kerning first=935 second=346 amount=-1 +kerning first=935 second=347 amount=-1 +kerning first=935 second=350 amount=-1 +kerning first=935 second=351 amount=-1 +kerning first=935 second=352 amount=-1 +kerning first=935 second=353 amount=-1 +kerning first=935 second=355 amount=-1 +kerning first=935 second=357 amount=-1 +kerning first=935 second=359 amount=-1 +kerning first=935 second=361 amount=-1 +kerning first=935 second=363 amount=-1 +kerning first=935 second=365 amount=-1 +kerning first=935 second=367 amount=-1 +kerning first=935 second=369 amount=-1 +kerning first=935 second=371 amount=-1 +kerning first=935 second=373 amount=-3 +kerning first=935 second=375 amount=-1 +kerning first=935 second=920 amount=-3 +kerning first=935 second=927 amount=-3 +kerning first=935 second=934 amount=-5 +kerning first=935 second=940 amount=-2 +kerning first=935 second=941 amount=-2 +kerning first=935 second=943 amount=-1 +kerning first=935 second=945 amount=-2 +kerning first=935 second=947 amount=-3 +kerning first=935 second=949 amount=-2 +kerning first=935 second=950 amount=-2 +kerning first=935 second=952 amount=-2 +kerning first=935 second=953 amount=-1 +kerning first=935 second=957 amount=-3 +kerning first=935 second=959 amount=-2 +kerning first=935 second=962 amount=-2 +kerning first=935 second=963 amount=-2 +kerning first=935 second=964 amount=-3 +kerning first=935 second=965 amount=-1 +kerning first=935 second=966 amount=-2 +kerning first=935 second=967 amount=-2 +kerning first=935 second=968 amount=-1 +kerning first=935 second=969 amount=-2 +kerning first=935 second=970 amount=-1 +kerning first=935 second=972 amount=-2 +kerning first=935 second=973 amount=-1 +kerning first=935 second=974 amount=-2 +kerning first=935 second=1028 amount=-3 +kerning first=935 second=1029 amount=-1 +kerning first=935 second=1032 amount=-1 +kerning first=935 second=1047 amount=-2 +kerning first=935 second=1054 amount=-3 +kerning first=935 second=1057 amount=-3 +kerning first=935 second=1060 amount=-5 +kerning first=935 second=1063 amount=-1 +kerning first=935 second=1069 amount=-2 +kerning first=935 second=1072 amount=-1 +kerning first=935 second=1077 amount=-2 +kerning first=935 second=1079 amount=-2 +kerning first=935 second=1086 amount=-2 +kerning first=935 second=1089 amount=-2 +kerning first=935 second=1090 amount=-3 +kerning first=935 second=1091 amount=-1 +kerning first=935 second=1092 amount=-2 +kerning first=935 second=1098 amount=-3 +kerning first=935 second=1101 amount=-2 +kerning first=935 second=1104 amount=-2 +kerning first=935 second=1105 amount=-2 +kerning first=935 second=1108 amount=-2 +kerning first=935 second=1109 amount=-1 +kerning first=935 second=1118 amount=-1 +kerning first=935 second=1176 amount=-2 +kerning first=935 second=1177 amount=-2 +kerning first=935 second=1185 amount=-3 +kerning first=935 second=1194 amount=-3 +kerning first=935 second=1195 amount=-2 +kerning first=935 second=1199 amount=-3 +kerning first=935 second=1240 amount=-3 +kerning first=935 second=1241 amount=-2 +kerning first=935 second=1256 amount=-3 +kerning first=935 second=1257 amount=-2 +kerning first=935 second=1263 amount=-1 +kerning first=935 second=8211 amount=-3 +kerning first=935 second=8212 amount=-3 +kerning first=935 second=8249 amount=-3 +kerning first=935 second=8250 amount=-1 +kerning first=936 second=65 amount=-3 +kerning first=936 second=193 amount=-3 +kerning first=936 second=194 amount=-3 +kerning first=936 second=196 amount=-3 +kerning first=936 second=197 amount=-3 +kerning first=936 second=198 amount=-3 +kerning first=936 second=256 amount=-3 +kerning first=936 second=258 amount=-3 +kerning first=936 second=260 amount=-3 +kerning first=936 second=913 amount=-3 +kerning first=936 second=916 amount=-3 +kerning first=936 second=923 amount=-3 +kerning first=936 second=950 amount=-1 +kerning first=936 second=955 amount=-2 +kerning first=936 second=961 amount=-1 +kerning first=936 second=1040 amount=-3 +kerning first=937 second=89 amount=-2 +kerning first=937 second=221 amount=-2 +kerning first=937 second=374 amount=-2 +kerning first=937 second=376 amount=-2 +kerning first=937 second=933 amount=-2 +kerning first=937 second=939 amount=-2 +kerning first=937 second=950 amount=-1 +kerning first=937 second=1198 amount=-2 +kerning first=939 second=38 amount=-2 +kerning first=939 second=44 amount=-4 +kerning first=939 second=45 amount=-4 +kerning first=939 second=46 amount=-4 +kerning first=939 second=47 amount=-4 +kerning first=939 second=110 amount=-3 +kerning first=939 second=63 amount=-1 +kerning first=939 second=65 amount=-5 +kerning first=939 second=67 amount=-3 +kerning first=939 second=114 amount=-3 +kerning first=939 second=71 amount=-3 +kerning first=939 second=74 amount=-6 +kerning first=939 second=79 amount=-3 +kerning first=939 second=81 amount=-3 +kerning first=939 second=83 amount=-1 +kerning first=939 second=97 amount=-4 +kerning first=939 second=99 amount=-4 +kerning first=939 second=100 amount=-4 +kerning first=939 second=101 amount=-4 +kerning first=939 second=103 amount=-4 +kerning first=939 second=109 amount=-3 +kerning first=939 second=111 amount=-4 +kerning first=939 second=112 amount=-3 +kerning first=939 second=113 amount=-4 +kerning first=939 second=115 amount=-3 +kerning first=939 second=117 amount=-2 +kerning first=939 second=118 amount=-2 +kerning first=939 second=119 amount=-2 +kerning first=939 second=120 amount=-2 +kerning first=939 second=121 amount=-2 +kerning first=939 second=122 amount=-2 +kerning first=939 second=171 amount=-3 +kerning first=939 second=173 amount=-4 +kerning first=939 second=187 amount=-2 +kerning first=939 second=193 amount=-5 +kerning first=939 second=194 amount=-5 +kerning first=939 second=196 amount=-5 +kerning first=939 second=197 amount=-5 +kerning first=939 second=198 amount=-5 +kerning first=939 second=199 amount=-3 +kerning first=939 second=210 amount=-3 +kerning first=939 second=211 amount=-3 +kerning first=939 second=212 amount=-3 +kerning first=939 second=213 amount=-3 +kerning first=939 second=214 amount=-3 +kerning first=939 second=216 amount=-3 +kerning first=939 second=224 amount=-4 +kerning first=939 second=225 amount=-4 +kerning first=939 second=226 amount=-4 +kerning first=939 second=227 amount=-4 +kerning first=939 second=228 amount=-4 +kerning first=939 second=229 amount=-4 +kerning first=939 second=230 amount=-4 +kerning first=939 second=231 amount=-4 +kerning first=939 second=232 amount=-4 +kerning first=939 second=233 amount=-4 +kerning first=939 second=234 amount=-4 +kerning first=939 second=235 amount=-4 +kerning first=939 second=240 amount=-4 +kerning first=939 second=241 amount=-3 +kerning first=939 second=242 amount=-4 +kerning first=939 second=243 amount=-4 +kerning first=939 second=244 amount=-4 +kerning first=939 second=245 amount=-4 +kerning first=939 second=246 amount=-4 +kerning first=939 second=248 amount=-4 +kerning first=939 second=249 amount=-2 +kerning first=939 second=250 amount=-2 +kerning first=939 second=251 amount=-2 +kerning first=939 second=252 amount=-2 +kerning first=939 second=253 amount=-2 +kerning first=939 second=256 amount=-5 +kerning first=939 second=257 amount=-4 +kerning first=939 second=258 amount=-5 +kerning first=939 second=259 amount=-4 +kerning first=939 second=260 amount=-5 +kerning first=939 second=261 amount=-4 +kerning first=939 second=262 amount=-3 +kerning first=939 second=263 amount=-4 +kerning first=939 second=266 amount=-3 +kerning first=939 second=267 amount=-4 +kerning first=939 second=268 amount=-3 +kerning first=939 second=269 amount=-4 +kerning first=939 second=271 amount=-4 +kerning first=939 second=273 amount=-4 +kerning first=939 second=275 amount=-4 +kerning first=939 second=277 amount=-4 +kerning first=939 second=279 amount=-4 +kerning first=939 second=281 amount=-4 +kerning first=939 second=283 amount=-4 +kerning first=939 second=286 amount=-3 +kerning first=939 second=287 amount=-4 +kerning first=939 second=288 amount=-3 +kerning first=939 second=289 amount=-4 +kerning first=939 second=290 amount=-3 +kerning first=939 second=291 amount=-4 +kerning first=939 second=324 amount=-3 +kerning first=939 second=326 amount=-3 +kerning first=939 second=328 amount=-3 +kerning first=939 second=331 amount=-3 +kerning first=939 second=332 amount=-3 +kerning first=939 second=333 amount=-4 +kerning first=939 second=334 amount=-3 +kerning first=939 second=335 amount=-4 +kerning first=939 second=336 amount=-3 +kerning first=939 second=337 amount=-4 +kerning first=939 second=338 amount=-3 +kerning first=939 second=339 amount=-4 +kerning first=939 second=341 amount=-3 +kerning first=939 second=343 amount=-3 +kerning first=939 second=345 amount=-3 +kerning first=939 second=346 amount=-1 +kerning first=939 second=347 amount=-3 +kerning first=939 second=350 amount=-1 +kerning first=939 second=351 amount=-3 +kerning first=939 second=352 amount=-1 +kerning first=939 second=353 amount=-3 +kerning first=939 second=361 amount=-2 +kerning first=939 second=363 amount=-2 +kerning first=939 second=365 amount=-2 +kerning first=939 second=367 amount=-2 +kerning first=939 second=369 amount=-2 +kerning first=939 second=371 amount=-2 +kerning first=939 second=373 amount=-2 +kerning first=939 second=375 amount=-2 +kerning first=939 second=378 amount=-2 +kerning first=939 second=380 amount=-2 +kerning first=939 second=382 amount=-2 +kerning first=939 second=913 amount=-5 +kerning first=939 second=916 amount=-5 +kerning first=939 second=920 amount=-3 +kerning first=939 second=923 amount=-5 +kerning first=939 second=927 amount=-3 +kerning first=939 second=937 amount=-2 +kerning first=939 second=940 amount=-4 +kerning first=939 second=941 amount=-4 +kerning first=939 second=942 amount=-3 +kerning first=939 second=943 amount=-2 +kerning first=939 second=945 amount=-4 +kerning first=939 second=947 amount=-2 +kerning first=939 second=949 amount=-4 +kerning first=939 second=950 amount=-2 +kerning first=939 second=951 amount=-3 +kerning first=939 second=952 amount=-2 +kerning first=939 second=953 amount=-2 +kerning first=939 second=954 amount=-3 +kerning first=939 second=955 amount=-2 +kerning first=939 second=957 amount=-2 +kerning first=939 second=959 amount=-4 +kerning first=939 second=961 amount=-5 +kerning first=939 second=962 amount=-4 +kerning first=939 second=963 amount=-4 +kerning first=939 second=964 amount=-2 +kerning first=939 second=965 amount=-2 +kerning first=939 second=966 amount=-4 +kerning first=939 second=967 amount=-2 +kerning first=939 second=968 amount=-2 +kerning first=939 second=969 amount=-4 +kerning first=939 second=970 amount=-2 +kerning first=939 second=972 amount=-4 +kerning first=939 second=973 amount=-2 +kerning first=939 second=974 amount=-4 +kerning first=939 second=1028 amount=-3 +kerning first=939 second=1029 amount=-1 +kerning first=939 second=1032 amount=-6 +kerning first=939 second=1033 amount=-5 +kerning first=939 second=1040 amount=-5 +kerning first=939 second=1044 amount=-5 +kerning first=939 second=1051 amount=-5 +kerning first=939 second=1054 amount=-3 +kerning first=939 second=1057 amount=-3 +kerning first=939 second=1069 amount=-2 +kerning first=939 second=1071 amount=-2 +kerning first=939 second=1072 amount=-4 +kerning first=939 second=1074 amount=-3 +kerning first=939 second=1075 amount=-3 +kerning first=939 second=1077 amount=-4 +kerning first=939 second=1078 amount=-2 +kerning first=939 second=1079 amount=-4 +kerning first=939 second=1080 amount=-3 +kerning first=939 second=1081 amount=-3 +kerning first=939 second=1082 amount=-3 +kerning first=939 second=1084 amount=-3 +kerning first=939 second=1085 amount=-3 +kerning first=939 second=1086 amount=-4 +kerning first=939 second=1087 amount=-3 +kerning first=939 second=1088 amount=-3 +kerning first=939 second=1089 amount=-4 +kerning first=939 second=1090 amount=-2 +kerning first=939 second=1091 amount=-2 +kerning first=939 second=1092 amount=-4 +kerning first=939 second=1093 amount=-2 +kerning first=939 second=1094 amount=-3 +kerning first=939 second=1096 amount=-3 +kerning first=939 second=1097 amount=-3 +kerning first=939 second=1098 amount=-2 +kerning first=939 second=1099 amount=-3 +kerning first=939 second=1100 amount=-3 +kerning first=939 second=1101 amount=-4 +kerning first=939 second=1102 amount=-3 +kerning first=939 second=1104 amount=-4 +kerning first=939 second=1105 amount=-4 +kerning first=939 second=1107 amount=-3 +kerning first=939 second=1108 amount=-4 +kerning first=939 second=1109 amount=-3 +kerning first=939 second=1114 amount=-3 +kerning first=939 second=1116 amount=-3 +kerning first=939 second=1117 amount=-3 +kerning first=939 second=1118 amount=-2 +kerning first=939 second=1119 amount=-3 +kerning first=939 second=1169 amount=-3 +kerning first=939 second=1175 amount=-2 +kerning first=939 second=1176 amount=-2 +kerning first=939 second=1177 amount=-4 +kerning first=939 second=1179 amount=-3 +kerning first=939 second=1185 amount=-2 +kerning first=939 second=1187 amount=-3 +kerning first=939 second=1194 amount=-3 +kerning first=939 second=1195 amount=-4 +kerning first=939 second=1199 amount=-2 +kerning first=939 second=1203 amount=-2 +kerning first=939 second=1220 amount=-3 +kerning first=939 second=1224 amount=-3 +kerning first=939 second=1240 amount=-3 +kerning first=939 second=1241 amount=-4 +kerning first=939 second=1256 amount=-3 +kerning first=939 second=1257 amount=-4 +kerning first=939 second=1263 amount=-2 +kerning first=939 second=1298 amount=-5 +kerning first=939 second=8211 amount=-4 +kerning first=939 second=8212 amount=-4 +kerning first=939 second=8218 amount=-4 +kerning first=939 second=8222 amount=-4 +kerning first=939 second=8230 amount=-4 +kerning first=939 second=8249 amount=-3 +kerning first=939 second=8250 amount=-2 +kerning first=940 second=118 amount=-2 +kerning first=940 second=119 amount=-2 +kerning first=940 second=373 amount=-2 +kerning first=940 second=947 amount=-2 +kerning first=940 second=957 amount=-2 +kerning first=940 second=964 amount=-2 +kerning first=940 second=967 amount=-2 +kerning first=940 second=1090 amount=-2 +kerning first=940 second=1098 amount=-2 +kerning first=940 second=1185 amount=-2 +kerning first=940 second=1199 amount=-2 +kerning first=941 second=34 amount=-1 +kerning first=941 second=39 amount=-1 +kerning first=941 second=63 amount=-1 +kerning first=941 second=118 amount=-1 +kerning first=941 second=119 amount=-1 +kerning first=941 second=120 amount=-1 +kerning first=941 second=373 amount=-1 +kerning first=941 second=947 amount=-1 +kerning first=941 second=955 amount=-1 +kerning first=941 second=957 amount=-1 +kerning first=941 second=1078 amount=-1 +kerning first=941 second=1093 amount=-1 +kerning first=941 second=1175 amount=-1 +kerning first=941 second=1199 amount=-1 +kerning first=941 second=1203 amount=-1 +kerning first=941 second=8216 amount=-1 +kerning first=941 second=8217 amount=-1 +kerning first=941 second=8220 amount=-1 +kerning first=941 second=8221 amount=-1 +kerning first=943 second=118 amount=-2 +kerning first=943 second=119 amount=-2 +kerning first=943 second=373 amount=-2 +kerning first=943 second=947 amount=-2 +kerning first=943 second=957 amount=-2 +kerning first=943 second=964 amount=-2 +kerning first=943 second=967 amount=-2 +kerning first=943 second=1090 amount=-2 +kerning first=943 second=1098 amount=-2 +kerning first=943 second=1185 amount=-2 +kerning first=943 second=1199 amount=-2 +kerning first=945 second=118 amount=-2 +kerning first=945 second=119 amount=-2 +kerning first=945 second=373 amount=-2 +kerning first=945 second=947 amount=-2 +kerning first=945 second=957 amount=-2 +kerning first=945 second=964 amount=-2 +kerning first=945 second=967 amount=-2 +kerning first=945 second=1090 amount=-2 +kerning first=945 second=1098 amount=-2 +kerning first=945 second=1185 amount=-2 +kerning first=945 second=1199 amount=-2 +kerning first=947 second=44 amount=-2 +kerning first=947 second=45 amount=-1 +kerning first=947 second=46 amount=-2 +kerning first=947 second=47 amount=-3 +kerning first=947 second=97 amount=-1 +kerning first=947 second=99 amount=-1 +kerning first=947 second=100 amount=-1 +kerning first=947 second=101 amount=-1 +kerning first=947 second=103 amount=-1 +kerning first=947 second=111 amount=-1 +kerning first=947 second=113 amount=-1 +kerning first=947 second=115 amount=-1 +kerning first=947 second=171 amount=-1 +kerning first=947 second=173 amount=-1 +kerning first=947 second=224 amount=-1 +kerning first=947 second=225 amount=-1 +kerning first=947 second=226 amount=-1 +kerning first=947 second=227 amount=-1 +kerning first=947 second=228 amount=-1 +kerning first=947 second=229 amount=-1 +kerning first=947 second=230 amount=-1 +kerning first=947 second=231 amount=-1 +kerning first=947 second=232 amount=-1 +kerning first=947 second=233 amount=-1 +kerning first=947 second=234 amount=-1 +kerning first=947 second=235 amount=-1 +kerning first=947 second=240 amount=-1 +kerning first=947 second=242 amount=-1 +kerning first=947 second=243 amount=-1 +kerning first=947 second=244 amount=-1 +kerning first=947 second=245 amount=-1 +kerning first=947 second=246 amount=-1 +kerning first=947 second=248 amount=-1 +kerning first=947 second=257 amount=-1 +kerning first=947 second=259 amount=-1 +kerning first=947 second=261 amount=-1 +kerning first=947 second=263 amount=-1 +kerning first=947 second=267 amount=-1 +kerning first=947 second=269 amount=-1 +kerning first=947 second=271 amount=-1 +kerning first=947 second=273 amount=-1 +kerning first=947 second=275 amount=-1 +kerning first=947 second=277 amount=-1 +kerning first=947 second=279 amount=-1 +kerning first=947 second=281 amount=-1 +kerning first=947 second=283 amount=-1 +kerning first=947 second=287 amount=-1 +kerning first=947 second=289 amount=-1 +kerning first=947 second=291 amount=-1 +kerning first=947 second=333 amount=-1 +kerning first=947 second=335 amount=-1 +kerning first=947 second=337 amount=-1 +kerning first=947 second=339 amount=-1 +kerning first=947 second=347 amount=-1 +kerning first=947 second=351 amount=-1 +kerning first=947 second=353 amount=-1 +kerning first=947 second=940 amount=-1 +kerning first=947 second=941 amount=-1 +kerning first=947 second=945 amount=-1 +kerning first=947 second=949 amount=-1 +kerning first=947 second=950 amount=-2 +kerning first=947 second=955 amount=-4 +kerning first=947 second=959 amount=-1 +kerning first=947 second=961 amount=-2 +kerning first=947 second=962 amount=-1 +kerning first=947 second=963 amount=-1 +kerning first=947 second=966 amount=-1 +kerning first=947 second=969 amount=-1 +kerning first=947 second=972 amount=-1 +kerning first=947 second=974 amount=-1 +kerning first=947 second=1072 amount=-1 +kerning first=947 second=1077 amount=-1 +kerning first=947 second=1086 amount=-1 +kerning first=947 second=1089 amount=-1 +kerning first=947 second=1092 amount=-1 +kerning first=947 second=1104 amount=-1 +kerning first=947 second=1105 amount=-1 +kerning first=947 second=1108 amount=-1 +kerning first=947 second=1109 amount=-1 +kerning first=947 second=1195 amount=-1 +kerning first=947 second=1241 amount=-1 kerning first=947 second=1257 amount=-1 -kerning first=252 second=355 amount=-1 -kerning first=255 second=115 amount=-1 -kerning first=375 second=267 amount=-1 -kerning first=165 second=367 amount=-1 -kerning first=162 second=1185 amount=-3 -kerning first=305 second=214 amount=-2 -kerning first=1084 second=945 amount=-1 -kerning first=910 second=268 amount=-3 -kerning first=356 second=281 amount=-3 -kerning first=163 second=8220 amount=-3 -kerning first=282 second=227 amount=-1 -kerning first=48 second=1079 amount=-1 -kerning first=54 second=89 amount=-5 -kerning first=1065 second=269 amount=-1 -kerning first=306 second=369 amount=-1 -kerning first=74 second=251 amount=-1 -kerning first=916 second=216 amount=-2 -kerning first=231 second=8221 amount=-1 +kerning first=947 second=8211 amount=-1 +kerning first=947 second=8212 amount=-1 +kerning first=947 second=8218 amount=-2 +kerning first=947 second=8222 amount=-2 +kerning first=947 second=8230 amount=-2 +kerning first=947 second=8249 amount=-1 +kerning first=949 second=34 amount=-1 +kerning first=949 second=39 amount=-1 +kerning first=949 second=63 amount=-1 +kerning first=949 second=118 amount=-1 +kerning first=949 second=119 amount=-1 +kerning first=949 second=120 amount=-1 +kerning first=949 second=373 amount=-1 +kerning first=949 second=947 amount=-1 +kerning first=949 second=955 amount=-1 +kerning first=949 second=957 amount=-1 +kerning first=949 second=1078 amount=-1 +kerning first=949 second=1093 amount=-1 +kerning first=949 second=1175 amount=-1 +kerning first=949 second=1199 amount=-1 +kerning first=949 second=1203 amount=-1 +kerning first=949 second=8216 amount=-1 +kerning first=949 second=8217 amount=-1 +kerning first=949 second=8220 amount=-1 +kerning first=949 second=8221 amount=-1 +kerning first=950 second=110 amount=-2 +kerning first=950 second=114 amount=-2 +kerning first=950 second=109 amount=-2 +kerning first=950 second=112 amount=-2 +kerning first=950 second=117 amount=-2 +kerning first=950 second=118 amount=-2 +kerning first=950 second=119 amount=-2 +kerning first=950 second=241 amount=-2 +kerning first=950 second=249 amount=-2 +kerning first=950 second=250 amount=-2 +kerning first=950 second=251 amount=-2 +kerning first=950 second=252 amount=-2 +kerning first=950 second=324 amount=-2 +kerning first=950 second=326 amount=-2 +kerning first=950 second=328 amount=-2 +kerning first=950 second=331 amount=-2 +kerning first=950 second=341 amount=-2 +kerning first=950 second=343 amount=-2 +kerning first=950 second=345 amount=-2 +kerning first=950 second=361 amount=-2 +kerning first=950 second=363 amount=-2 +kerning first=950 second=365 amount=-2 +kerning first=950 second=367 amount=-2 +kerning first=950 second=369 amount=-2 +kerning first=950 second=371 amount=-2 +kerning first=950 second=373 amount=-2 +kerning first=950 second=942 amount=-2 +kerning first=950 second=943 amount=-2 +kerning first=950 second=947 amount=-2 +kerning first=950 second=951 amount=-2 +kerning first=950 second=952 amount=-2 +kerning first=950 second=953 amount=-2 +kerning first=950 second=954 amount=-2 +kerning first=950 second=955 amount=-2 +kerning first=950 second=957 amount=-2 +kerning first=950 second=965 amount=-2 +kerning first=950 second=967 amount=-1 +kerning first=950 second=968 amount=-2 +kerning first=950 second=969 amount=-3 +kerning first=950 second=970 amount=-2 +kerning first=950 second=973 amount=-2 +kerning first=950 second=974 amount=-3 +kerning first=950 second=1074 amount=-2 +kerning first=950 second=1075 amount=-2 +kerning first=950 second=1080 amount=-2 +kerning first=950 second=1081 amount=-2 +kerning first=950 second=1082 amount=-2 +kerning first=950 second=1084 amount=-2 +kerning first=950 second=1085 amount=-2 +kerning first=950 second=1087 amount=-2 +kerning first=950 second=1088 amount=-2 +kerning first=950 second=1094 amount=-2 +kerning first=950 second=1096 amount=-2 +kerning first=950 second=1097 amount=-2 +kerning first=950 second=1099 amount=-2 +kerning first=950 second=1100 amount=-2 +kerning first=950 second=1102 amount=-2 +kerning first=950 second=1107 amount=-2 +kerning first=950 second=1114 amount=-2 +kerning first=950 second=1116 amount=-2 +kerning first=950 second=1117 amount=-2 +kerning first=950 second=1119 amount=-2 +kerning first=950 second=1169 amount=-2 +kerning first=950 second=1179 amount=-2 +kerning first=950 second=1187 amount=-2 +kerning first=950 second=1199 amount=-2 +kerning first=950 second=1220 amount=-2 +kerning first=950 second=1224 amount=-2 +kerning first=953 second=118 amount=-2 +kerning first=953 second=119 amount=-2 +kerning first=953 second=373 amount=-2 +kerning first=953 second=947 amount=-2 +kerning first=953 second=957 amount=-2 +kerning first=953 second=964 amount=-2 +kerning first=953 second=967 amount=-2 +kerning first=953 second=1090 amount=-2 +kerning first=953 second=1098 amount=-2 +kerning first=953 second=1185 amount=-2 +kerning first=953 second=1199 amount=-2 +kerning first=954 second=45 amount=-3 +kerning first=954 second=97 amount=-1 +kerning first=954 second=99 amount=-2 +kerning first=954 second=100 amount=-2 +kerning first=954 second=101 amount=-2 +kerning first=954 second=103 amount=-2 +kerning first=954 second=106 amount=1 +kerning first=954 second=111 amount=-2 +kerning first=954 second=113 amount=-2 +kerning first=954 second=115 amount=-1 +kerning first=954 second=173 amount=-3 +kerning first=954 second=224 amount=-1 +kerning first=954 second=225 amount=-1 +kerning first=954 second=226 amount=-1 +kerning first=954 second=227 amount=-1 +kerning first=954 second=228 amount=-1 +kerning first=954 second=229 amount=-1 +kerning first=954 second=230 amount=-1 +kerning first=954 second=231 amount=-2 +kerning first=954 second=232 amount=-2 +kerning first=954 second=233 amount=-2 +kerning first=954 second=234 amount=-2 +kerning first=954 second=235 amount=-2 +kerning first=954 second=240 amount=-2 +kerning first=954 second=242 amount=-2 +kerning first=954 second=243 amount=-2 +kerning first=954 second=244 amount=-2 +kerning first=954 second=245 amount=-2 +kerning first=954 second=246 amount=-2 +kerning first=954 second=248 amount=-2 +kerning first=954 second=257 amount=-1 +kerning first=954 second=259 amount=-1 +kerning first=954 second=261 amount=-1 +kerning first=954 second=263 amount=-2 +kerning first=954 second=267 amount=-2 +kerning first=954 second=269 amount=-2 +kerning first=954 second=271 amount=-2 +kerning first=954 second=273 amount=-2 +kerning first=954 second=275 amount=-2 +kerning first=954 second=277 amount=-2 +kerning first=954 second=279 amount=-2 +kerning first=954 second=281 amount=-2 +kerning first=954 second=283 amount=-2 +kerning first=954 second=287 amount=-2 +kerning first=954 second=289 amount=-2 +kerning first=954 second=291 amount=-2 +kerning first=954 second=333 amount=-2 +kerning first=954 second=335 amount=-2 +kerning first=954 second=337 amount=-2 +kerning first=954 second=339 amount=-2 +kerning first=954 second=347 amount=-1 +kerning first=954 second=351 amount=-1 +kerning first=954 second=353 amount=-1 +kerning first=954 second=940 amount=-2 +kerning first=954 second=941 amount=-2 +kerning first=954 second=945 amount=-2 +kerning first=954 second=949 amount=-2 +kerning first=954 second=959 amount=-2 +kerning first=954 second=962 amount=-2 +kerning first=954 second=963 amount=-2 +kerning first=954 second=966 amount=-2 +kerning first=954 second=972 amount=-2 +kerning first=954 second=1072 amount=-1 +kerning first=954 second=1077 amount=-2 +kerning first=954 second=1086 amount=-2 +kerning first=954 second=1089 amount=-2 +kerning first=954 second=1092 amount=-2 +kerning first=954 second=1104 amount=-2 +kerning first=954 second=1105 amount=-2 +kerning first=954 second=1108 amount=-2 +kerning first=954 second=1109 amount=-1 +kerning first=954 second=1112 amount=1 +kerning first=954 second=1195 amount=-2 +kerning first=954 second=1241 amount=-2 +kerning first=954 second=1257 amount=-2 +kerning first=954 second=8211 amount=-3 +kerning first=954 second=8212 amount=-3 +kerning first=955 second=99 amount=-1 +kerning first=955 second=100 amount=-1 +kerning first=955 second=101 amount=-1 +kerning first=955 second=111 amount=-1 +kerning first=955 second=113 amount=-1 kerning first=955 second=118 amount=-4 -kerning first=1223 second=962 amount=-1 -kerning first=260 second=240 amount=-1 -kerning first=377 second=1194 amount=-1 -kerning first=170 second=943 amount=-1 -kerning first=174 second=252 amount=-1 -kerning first=280 second=1256 amount=-2 -kerning first=283 second=382 amount=-1 -kerning first=8225 second=333 amount=-1 -kerning first=55 second=266 amount=-2 -kerning first=58 second=39 amount=-3 -kerning first=316 second=79 amount=-2 -kerning first=1101 second=119 amount=-1 -kerning first=912 second=1195 amount=-1 -kerning first=1178 second=286 amount=-1 -kerning first=358 second=1257 amount=-1 -kerning first=121 second=267 amount=-1 -kerning first=1299 second=218 amount=-2 -kerning first=39 second=52 amount=-1 -kerning first=1036 second=230 amount=-1 -kerning first=8226 second=964 amount=-3 -kerning first=59 second=214 amount=-2 -kerning first=1067 second=947 amount=-4 -kerning first=1070 second=372 amount=-2 -kerning first=196 second=1101 amount=-1 -kerning first=314 second=945 amount=-1 -kerning first=79 second=356 amount=-2 -kerning first=923 second=1069 amount=-1 -kerning first=102 second=281 amount=-1 -kerning first=1186 second=231 amount=-1 -kerning first=962 second=243 amount=-1 -kerning first=40 second=227 amount=-1 -kerning first=179 second=357 amount=-1 -kerning first=183 second=117 amount=-1 -kerning first=60 second=369 amount=-1 -kerning first=200 second=973 amount=-1 -kerning first=8365 second=362 amount=-2 -kerning first=249 second=118 amount=-4 -kerning first=123 second=1194 amount=-2 -kerning first=126 second=370 amount=-2 -kerning first=271 second=283 amount=-1 -kerning first=38 second=1256 amount=-2 -kerning first=1044 second=333 amount=-1 -kerning first=299 second=217 amount=-2 -kerning first=1080 second=257 amount=-1 -kerning first=1076 second=949 amount=-1 -kerning first=207 second=229 amount=-1 -kerning first=8363 second=8211 amount=-2 -kerning first=327 second=119 amount=-4 -kerning first=902 second=271 amount=-1 -kerning first=84 second=920 amount=-1 -kerning first=87 second=241 amount=-2 -kerning first=1202 second=334 amount=-1 -kerning first=967 second=346 amount=-1 -kerning first=276 second=230 amount=-1 -kerning first=1049 second=273 amount=-1 -kerning first=188 second=242 amount=-1 -kerning first=1046 second=964 amount=-3 -kerning first=1062 second=45 amount=-2 -kerning first=297 second=947 amount=-4 -kerning first=300 second=372 amount=-5 -kerning first=65 second=945 amount=-1 -kerning first=205 second=1262 amount=-2 -kerning first=906 second=219 amount=-2 -kerning first=1118 second=347 amount=-1 -kerning first=354 second=231 amount=-3 -kerning first=254 second=243 amount=-1 -kerning first=374 second=373 amount=-2 -kerning first=968 second=1028 amount=-2 -kerning first=971 second=288 amount=-2 -kerning first=274 second=1263 amount=-1 -kerning first=49 second=269 amount=-1 -kerning first=1063 second=220 amount=-2 -kerning first=1083 second=1176 amount=-1 -kerning first=1087 second=362 amount=-2 -kerning first=908 second=374 amount=-3 -kerning first=95 second=106 amount=1 -kerning first=1170 second=289 amount=-1 -kerning first=1224 second=221 amount=-5 -kerning first=372 second=8230 amount=-3 -kerning first=1026 second=233 amount=-1 -kerning first=53 second=217 amount=-2 -kerning first=1064 second=375 amount=-1 -kerning first=305 second=949 amount=-1 -kerning first=310 second=257 amount=-1 -kerning first=73 second=359 amount=-1 -kerning first=1084 second=8211 amount=-2 -kerning first=76 second=119 amount=-3 -kerning first=219 second=44 amount=-1 -kerning first=923 second=84 amount=-5 -kerning first=93 second=1026 amount=-5 -kerning first=96 second=286 amount=-2 -kerning first=1176 second=234 amount=-1 -kerning first=954 second=246 amount=-2 -kerning first=1256 second=376 amount=-3 -kerning first=34 second=230 amount=-1 -kerning first=172 second=360 amount=-2 -kerning first=282 second=964 amount=-3 -kerning first=287 second=273 amount=-1 -kerning first=51 second=947 amount=-4 -kerning first=54 second=372 amount=-5 -kerning first=1062 second=8249 amount=-1 -kerning first=1071 second=85 amount=-2 -kerning first=197 second=287 amount=-1 -kerning first=338 second=347 amount=-1 -kerning first=926 second=259 amount=-1 -kerning first=934 second=34 amount=-3 -kerning first=100 second=231 amount=-1 -kerning first=240 second=361 amount=-1 -kerning first=366 second=46 amount=-1 -kerning first=1223 second=8250 amount=-1 -kerning first=260 second=1028 amount=-2 -kerning first=1035 second=336 amount=-2 -kerning first=291 second=220 amount=-2 -kerning first=8260 second=171 amount=-3 -kerning first=201 second=232 amount=-1 -kerning first=316 second=362 amount=-2 -kerning first=1185 second=337 amount=-2 -kerning first=247 second=71 amount=-2 -kerning first=367 second=221 amount=-5 -kerning first=964 second=111 amount=-1 -kerning first=118 second=8230 amount=-2 -kerning first=160 second=83 amount=-1 -kerning first=1299 second=953 amount=-1 -kerning first=39 second=333 amount=-1 -kerning first=182 second=245 amount=-1 -kerning first=294 second=375 amount=-1 -kerning first=8249 second=1078 amount=-1 -kerning first=59 second=949 amount=-1 -kerning first=62 second=257 amount=-1 -kerning first=314 second=8211 amount=-2 -kerning first=8369 second=250 amount=-1 -kerning first=8364 second=941 amount=-1 -kerning first=85 second=194 amount=-2 -kerning first=105 second=334 amount=-2 -kerning first=962 second=1035 amount=-5 -kerning first=965 second=291 amount=-1 -kerning first=43 second=273 amount=-1 -kerning first=40 second=964 amount=-3 -kerning first=46 second=45 amount=-1 -kerning first=301 second=85 amount=-2 -kerning first=206 second=335 amount=-1 -kerning first=209 second=97 amount=-1 -kerning first=86 second=347 amount=-1 -kerning first=89 second=109 amount=-3 -kerning first=232 second=34 amount=-1 -kerning first=934 second=8216 amount=-3 -kerning first=112 second=46 amount=-1 -kerning first=8218 second=51 amount=-1 -kerning first=47 second=220 amount=-2 -kerning first=187 second=350 amount=-1 -kerning first=64 second=1176 amount=-1 -kerning first=70 second=122 amount=-1 -kerning first=207 second=966 amount=-1 -kerning first=213 second=47 amount=-1 -kerning first=8378 second=355 amount=-1 -kerning first=356 second=99 amount=-3 -kerning first=948 second=249 amount=-1 -kerning first=944 second=940 amount=-1 -kerning first=113 second=221 amount=-5 -kerning first=256 second=111 amount=-1 -kerning first=253 second=351 amount=-1 -kerning first=376 second=261 amount=-4 -kerning first=163 second=1177 amount=-1 -kerning first=166 second=363 amount=-1 -kerning first=8220 second=226 amount=-1 -kerning first=48 second=375 amount=-1 -kerning first=191 second=290 amount=-2 -kerning first=306 second=210 amount=-2 -kerning first=65 second=8211 amount=-2 -kerning first=1085 second=941 amount=-1 -kerning first=68 second=1051 amount=-1 -kerning first=94 second=234 amount=-1 -kerning first=1169 second=1241 amount=-1 -kerning first=354 second=968 amount=-2 -kerning first=357 second=277 amount=-1 -kerning first=952 second=199 amount=-2 -kerning first=1210 second=1079 amount=-1 -kerning first=254 second=1035 amount=-5 -kerning first=971 second=1098 amount=-3 -kerning first=164 second=8212 amount=-2 -kerning first=167 second=1059 amount=-2 -kerning first=55 second=85 amount=-2 -kerning first=195 second=235 amount=-1 -kerning first=232 second=8216 amount=-1 -kerning first=361 second=224 amount=-1 -kerning first=950 second=1118 amount=-1 -kerning first=1299 second=39 amount=-3 -kerning first=1026 second=970 amount=-1 -kerning first=175 second=248 amount=-1 -kerning first=289 second=171 amount=-3 -kerning first=305 second=8217 amount=-3 -kerning first=8361 second=253 amount=-1 -kerning first=79 second=197 amount=-2 -kerning first=1099 second=355 amount=-1 -kerning first=222 second=87 amount=-2 -kerning first=923 second=367 amount=-1 -kerning first=915 second=1185 amount=-3 -kerning first=102 second=99 amount=-1 -kerning first=239 second=940 amount=-1 -kerning first=1037 second=226 amount=-1 -kerning first=60 second=210 amount=-2 -kerning first=1071 second=368 amount=-2 -kerning first=200 second=338 amount=-2 -kerning first=203 second=100 amount=-1 -kerning first=315 second=941 amount=-1 -kerning first=318 second=250 amount=-1 -kerning first=80 second=352 amount=-1 -kerning first=223 second=262 amount=-2 -kerning first=341 second=1241 amount=-1 -kerning first=916 second=8220 amount=-3 -kerning first=100 second=968 amount=-1 -kerning first=103 second=277 amount=-1 -kerning first=363 second=1079 amount=-1 -kerning first=369 second=89 amount=-5 -kerning first=126 second=211 amount=-2 -kerning first=271 second=101 amount=-1 -kerning first=180 second=353 amount=-1 -kerning first=184 second=113 amount=-1 -kerning first=296 second=263 amount=-1 -kerning first=61 second=365 amount=-1 -kerning first=1073 second=1066 amount=-5 -kerning first=8372 second=118 amount=-4 -kerning first=936 second=943 amount=-1 -kerning first=107 second=224 amount=-1 -kerning first=247 second=354 amount=-5 -kerning first=124 second=1184 amount=-5 -kerning first=160 second=366 amount=-2 -kerning first=273 second=279 amount=-1 -kerning first=300 second=213 amount=-2 -kerning first=59 second=8217 amount=-3 -kerning first=1081 second=253 amount=-1 -kerning first=325 second=355 amount=-1 -kerning first=903 second=267 amount=-1 -kerning first=225 second=1185 amount=-1 -kerning first=374 second=214 amount=-3 -kerning first=965 second=1101 amount=-1 -kerning first=1051 second=268 amount=-2 -kerning first=301 second=368 amount=-2 -kerning first=69 second=250 amount=-1 -kerning first=92 second=187 amount=-1 -kerning first=89 second=1241 amount=-4 -kerning first=226 second=8220 amount=-1 -kerning first=946 second=357 amount=-1 -kerning first=950 second=117 amount=-1 -kerning first=1219 second=269 amount=-1 -kerning first=372 second=1187 amount=-2 -kerning first=375 second=369 amount=-1 -kerning first=168 second=251 amount=-1 -kerning first=8218 second=332 amount=-1 -kerning first=50 second=263 amount=-1 -kerning first=1064 second=216 amount=-2 -kerning first=299 second=8221 amount=-3 -kerning first=302 second=1066 amount=-5 -kerning first=1096 second=118 amount=-4 -kerning first=216 second=90 amount=-1 -kerning first=905 second=1194 amount=-2 -kerning first=1171 second=283 amount=-1 -kerning first=236 second=252 amount=-1 -kerning first=356 second=382 amount=-1 -kerning first=373 second=8222 amount=-2 -kerning first=1027 second=229 amount=-1 -kerning first=8220 second=963 amount=-1 -kerning first=8224 second=271 amount=-1 -kerning first=54 second=213 amount=-2 -kerning first=1062 second=1195 amount=-1 -kerning first=197 second=103 amount=-1 -kerning first=74 second=355 amount=-1 -kerning first=77 second=115 amount=-1 +kerning first=955 second=119 amount=-4 +kerning first=955 second=231 amount=-1 +kerning first=955 second=232 amount=-1 +kerning first=955 second=233 amount=-1 +kerning first=955 second=234 amount=-1 +kerning first=955 second=235 amount=-1 +kerning first=955 second=240 amount=-1 kerning first=955 second=242 amount=-1 -kerning first=1223 second=947 amount=-4 -kerning first=380 second=945 amount=-1 -kerning first=35 second=226 amount=-1 -kerning first=174 second=356 amount=-5 -kerning first=177 second=116 amount=-1 -kerning first=8240 second=219 amount=-2 -kerning first=55 second=368 amount=-2 -kerning first=1073 second=81 amount=-2 -kerning first=195 second=972 amount=-1 -kerning first=198 second=281 amount=-1 -kerning first=8363 second=121 amount=-1 -kerning first=81 second=65 amount=-2 -kerning first=121 second=369 amount=-1 -kerning first=1036 second=332 amount=-3 -kerning first=294 second=216 amount=-2 -kerning first=8249 second=374 amount=-2 -kerning first=56 second=1066 amount=-5 -kerning first=53 second=8221 amount=-3 -kerning first=202 second=228 amount=-1 -kerning first=322 second=118 amount=-4 -kerning first=8369 second=71 amount=-2 -kerning first=79 second=916 amount=-2 -kerning first=343 second=283 amount=-1 -kerning first=1186 second=333 amount=-1 -kerning first=119 second=8222 amount=-2 -kerning first=161 second=79 amount=-2 -kerning first=1037 second=963 amount=-1 -kerning first=1041 second=271 amount=-1 -kerning first=179 second=920 amount=-2 -kerning first=63 second=253 amount=-1 -kerning first=200 second=1257 amount=-1 -kerning first=8370 second=246 amount=-1 -kerning first=901 second=218 amount=-2 -kerning first=934 second=1174 amount=-5 -kerning first=947 second=273 amount=-1 -kerning first=1206 second=45 amount=-2 -kerning first=249 second=242 amount=-1 -kerning first=1187 second=964 amount=-2 -kerning first=369 second=372 amount=-5 -kerning first=126 second=945 amount=-1 -kerning first=271 second=1240 amount=-2 -kerning first=44 second=268 amount=-1 -kerning first=1048 second=219 amount=-2 -kerning first=296 second=1069 amount=-1 -kerning first=302 second=81 amount=-2 -kerning first=1080 second=361 amount=-1 -kerning first=1084 second=121 amount=-1 -kerning first=327 second=243 amount=-1 -kerning first=902 second=373 amount=-4 -kerning first=84 second=1102 amount=-2 -kerning first=87 second=343 amount=-2 -kerning first=1117 second=288 amount=-2 -kerning first=276 second=332 amount=-2 -kerning first=8220 second=47 amount=-2 -kerning first=48 second=216 amount=-2 -kerning first=1049 second=374 amount=-5 -kerning first=8216 second=275 amount=-1 -kerning first=191 second=106 amount=1 -kerning first=332 second=193 amount=-2 -kerning first=88 second=974 amount=-2 -kerning first=91 second=283 amount=-1 -kerning first=1169 second=233 amount=-1 -kerning first=354 second=333 amount=-3 -kerning first=1210 second=375 amount=-1 -kerning first=374 second=949 amount=-4 -kerning first=167 second=359 amount=-1 -kerning first=170 second=119 amount=-4 -kerning first=280 second=271 amount=-1 -kerning first=283 second=44 amount=-1 -kerning first=49 second=371 amount=-1 -kerning first=1066 second=84 amount=-5 -kerning first=189 second=1026 amount=-5 -kerning first=192 second=286 amount=-2 -kerning first=1095 second=246 amount=-1 -kerning first=215 second=218 amount=-2 -kerning first=95 second=230 amount=-1 -kerning first=358 second=273 amount=-1 -kerning first=361 second=45 amount=-2 -kerning first=112 second=947 amount=-1 -kerning first=1206 second=8249 amount=-1 -kerning first=258 second=287 amount=-1 -kerning first=1026 second=335 amount=-1 -kerning first=50 second=1069 amount=-1 -kerning first=56 second=81 amount=-2 -kerning first=1067 second=259 amount=-1 -kerning first=196 second=231 amount=-1 -kerning first=310 second=361 amount=-1 -kerning first=314 second=121 amount=-1 -kerning first=76 second=243 amount=-1 -kerning first=213 second=1202 amount=-3 -kerning first=93 second=1263 amount=-1 -kerning first=1176 second=336 amount=-2 -kerning first=1027 second=966 amount=-1 -kerning first=176 second=244 amount=-1 -kerning first=287 second=374 amount=-5 -kerning first=8250 second=87 amount=-3 -kerning first=318 second=71 amount=-2 -kerning first=80 second=193 amount=-4 -kerning first=1103 second=111 amount=-1 -kerning first=223 second=83 amount=-1 -kerning first=341 second=233 amount=-1 -kerning first=916 second=1177 amount=-1 -kerning first=926 second=363 amount=-1 -kerning first=100 second=333 amount=-1 -kerning first=363 second=375 amount=-1 -kerning first=960 second=290 amount=-2 -kerning first=123 second=257 amount=-1 -kerning first=120 second=949 amount=-2 -kerning first=35 second=963 amount=-1 -kerning first=38 second=271 amount=-1 -kerning first=296 second=84 amount=-5 -kerning first=8260 second=262 amount=-2 -kerning first=1073 second=364 amount=-2 -kerning first=198 second=1090 amount=-3 -kerning first=201 second=334 amount=-2 -kerning first=321 second=246 amount=-1 -kerning first=8366 second=199 amount=-2 -kerning first=221 second=950 amount=-2 -kerning first=928 second=1059 amount=-2 -kerning first=101 second=964 amount=-1 -kerning first=107 second=45 amount=-3 -kerning first=361 second=8249 amount=-3 +kerning first=955 second=243 amount=-1 +kerning first=955 second=244 amount=-1 +kerning first=955 second=245 amount=-1 +kerning first=955 second=246 amount=-1 +kerning first=955 second=248 amount=-1 +kerning first=955 second=263 amount=-1 +kerning first=955 second=267 amount=-1 +kerning first=955 second=269 amount=-1 +kerning first=955 second=271 amount=-1 +kerning first=955 second=273 amount=-1 +kerning first=955 second=275 amount=-1 +kerning first=955 second=277 amount=-1 +kerning first=955 second=279 amount=-1 +kerning first=955 second=281 amount=-1 +kerning first=955 second=283 amount=-1 +kerning first=955 second=333 amount=-1 +kerning first=955 second=335 amount=-1 +kerning first=955 second=337 amount=-1 +kerning first=955 second=339 amount=-1 +kerning first=955 second=373 amount=-4 +kerning first=955 second=940 amount=-1 +kerning first=955 second=941 amount=-1 +kerning first=955 second=945 amount=-1 +kerning first=955 second=947 amount=-4 +kerning first=955 second=949 amount=-1 +kerning first=955 second=957 amount=-4 +kerning first=955 second=959 amount=-1 +kerning first=955 second=962 amount=-1 +kerning first=955 second=963 amount=-1 +kerning first=955 second=964 amount=-4 +kerning first=955 second=966 amount=-1 +kerning first=955 second=967 amount=-3 +kerning first=955 second=972 amount=-1 +kerning first=955 second=1077 amount=-1 +kerning first=955 second=1086 amount=-1 +kerning first=955 second=1089 amount=-1 +kerning first=955 second=1090 amount=-4 +kerning first=955 second=1092 amount=-1 +kerning first=955 second=1098 amount=-4 +kerning first=955 second=1104 amount=-1 +kerning first=955 second=1105 amount=-1 +kerning first=955 second=1108 amount=-1 +kerning first=955 second=1185 amount=-4 +kerning first=955 second=1195 amount=-1 +kerning first=955 second=1199 amount=-4 +kerning first=955 second=1241 amount=-1 +kerning first=955 second=1257 amount=-1 +kerning first=957 second=44 amount=-2 +kerning first=957 second=45 amount=-1 +kerning first=957 second=46 amount=-2 +kerning first=957 second=47 amount=-3 +kerning first=957 second=97 amount=-1 +kerning first=957 second=99 amount=-1 +kerning first=957 second=100 amount=-1 +kerning first=957 second=101 amount=-1 +kerning first=957 second=103 amount=-1 +kerning first=957 second=111 amount=-1 +kerning first=957 second=113 amount=-1 +kerning first=957 second=115 amount=-1 +kerning first=957 second=171 amount=-1 +kerning first=957 second=173 amount=-1 +kerning first=957 second=224 amount=-1 +kerning first=957 second=225 amount=-1 +kerning first=957 second=226 amount=-1 +kerning first=957 second=227 amount=-1 +kerning first=957 second=228 amount=-1 +kerning first=957 second=229 amount=-1 +kerning first=957 second=230 amount=-1 +kerning first=957 second=231 amount=-1 +kerning first=957 second=232 amount=-1 +kerning first=957 second=233 amount=-1 +kerning first=957 second=234 amount=-1 +kerning first=957 second=235 amount=-1 +kerning first=957 second=240 amount=-1 +kerning first=957 second=242 amount=-1 +kerning first=957 second=243 amount=-1 +kerning first=957 second=244 amount=-1 +kerning first=957 second=245 amount=-1 +kerning first=957 second=246 amount=-1 +kerning first=957 second=248 amount=-1 +kerning first=957 second=257 amount=-1 +kerning first=957 second=259 amount=-1 +kerning first=957 second=261 amount=-1 +kerning first=957 second=263 amount=-1 +kerning first=957 second=267 amount=-1 +kerning first=957 second=269 amount=-1 +kerning first=957 second=271 amount=-1 +kerning first=957 second=273 amount=-1 +kerning first=957 second=275 amount=-1 +kerning first=957 second=277 amount=-1 +kerning first=957 second=279 amount=-1 +kerning first=957 second=281 amount=-1 +kerning first=957 second=283 amount=-1 +kerning first=957 second=287 amount=-1 +kerning first=957 second=289 amount=-1 +kerning first=957 second=291 amount=-1 +kerning first=957 second=333 amount=-1 +kerning first=957 second=335 amount=-1 +kerning first=957 second=337 amount=-1 +kerning first=957 second=339 amount=-1 +kerning first=957 second=347 amount=-1 +kerning first=957 second=351 amount=-1 +kerning first=957 second=353 amount=-1 +kerning first=957 second=940 amount=-1 +kerning first=957 second=941 amount=-1 +kerning first=957 second=945 amount=-1 +kerning first=957 second=949 amount=-1 +kerning first=957 second=950 amount=-2 +kerning first=957 second=955 amount=-4 +kerning first=957 second=959 amount=-1 +kerning first=957 second=961 amount=-2 +kerning first=957 second=962 amount=-1 +kerning first=957 second=963 amount=-1 +kerning first=957 second=966 amount=-1 +kerning first=957 second=969 amount=-1 +kerning first=957 second=972 amount=-1 +kerning first=957 second=974 amount=-1 +kerning first=957 second=1072 amount=-1 +kerning first=957 second=1077 amount=-1 +kerning first=957 second=1086 amount=-1 +kerning first=957 second=1089 amount=-1 +kerning first=957 second=1092 amount=-1 +kerning first=957 second=1104 amount=-1 +kerning first=957 second=1105 amount=-1 +kerning first=957 second=1108 amount=-1 +kerning first=957 second=1109 amount=-1 +kerning first=957 second=1195 amount=-1 +kerning first=957 second=1241 amount=-1 +kerning first=957 second=1257 amount=-1 +kerning first=957 second=8211 amount=-1 +kerning first=957 second=8212 amount=-1 +kerning first=957 second=8218 amount=-2 +kerning first=957 second=8222 amount=-2 +kerning first=957 second=8230 amount=-2 +kerning first=957 second=8249 amount=-1 +kerning first=958 second=171 amount=-3 +kerning first=958 second=8249 amount=-3 +kerning first=959 second=34 amount=-1 +kerning first=959 second=39 amount=-1 +kerning first=959 second=44 amount=-1 +kerning first=959 second=46 amount=-1 +kerning first=959 second=47 amount=-1 +kerning first=959 second=63 amount=-2 +kerning first=959 second=102 amount=-1 +kerning first=959 second=118 amount=-1 +kerning first=959 second=119 amount=-1 +kerning first=959 second=120 amount=-2 +kerning first=959 second=122 amount=-1 +kerning first=959 second=373 amount=-1 +kerning first=959 second=378 amount=-1 +kerning first=959 second=380 amount=-1 +kerning first=959 second=382 amount=-1 +kerning first=959 second=947 amount=-1 +kerning first=959 second=955 amount=-1 +kerning first=959 second=957 amount=-1 +kerning first=959 second=964 amount=-1 +kerning first=959 second=967 amount=-2 +kerning first=959 second=1076 amount=-1 +kerning first=959 second=1078 amount=-2 +kerning first=959 second=1083 amount=-1 +kerning first=959 second=1090 amount=-1 +kerning first=959 second=1093 amount=-2 +kerning first=959 second=1098 amount=-1 +kerning first=959 second=1113 amount=-1 +kerning first=959 second=1175 amount=-2 +kerning first=959 second=1185 amount=-1 +kerning first=959 second=1199 amount=-1 +kerning first=959 second=1203 amount=-2 +kerning first=959 second=1299 amount=-1 +kerning first=959 second=8216 amount=-1 +kerning first=959 second=8217 amount=-1 +kerning first=959 second=8218 amount=-1 +kerning first=959 second=8220 amount=-1 +kerning first=959 second=8221 amount=-1 +kerning first=959 second=8222 amount=-1 +kerning first=959 second=8230 amount=-1 +kerning first=961 second=34 amount=-1 +kerning first=961 second=39 amount=-1 +kerning first=961 second=44 amount=-1 +kerning first=961 second=46 amount=-1 +kerning first=961 second=47 amount=-1 +kerning first=961 second=63 amount=-2 +kerning first=961 second=102 amount=-1 +kerning first=961 second=118 amount=-1 +kerning first=961 second=119 amount=-1 +kerning first=961 second=120 amount=-2 +kerning first=961 second=122 amount=-1 +kerning first=961 second=373 amount=-1 +kerning first=961 second=378 amount=-1 +kerning first=961 second=380 amount=-1 +kerning first=961 second=382 amount=-1 +kerning first=961 second=947 amount=-1 +kerning first=961 second=955 amount=-1 +kerning first=961 second=957 amount=-1 +kerning first=961 second=964 amount=-1 +kerning first=961 second=967 amount=-2 +kerning first=961 second=1076 amount=-1 +kerning first=961 second=1078 amount=-2 +kerning first=961 second=1083 amount=-1 +kerning first=961 second=1090 amount=-1 +kerning first=961 second=1093 amount=-2 +kerning first=961 second=1098 amount=-1 +kerning first=961 second=1113 amount=-1 +kerning first=961 second=1175 amount=-2 +kerning first=961 second=1185 amount=-1 +kerning first=961 second=1199 amount=-1 +kerning first=961 second=1203 amount=-2 +kerning first=961 second=1299 amount=-1 +kerning first=961 second=8216 amount=-1 +kerning first=961 second=8217 amount=-1 +kerning first=961 second=8218 amount=-1 +kerning first=961 second=8220 amount=-1 +kerning first=961 second=8221 amount=-1 +kerning first=961 second=8222 amount=-1 +kerning first=961 second=8230 amount=-1 +kerning first=962 second=118 amount=-1 +kerning first=962 second=119 amount=-1 +kerning first=962 second=373 amount=-1 +kerning first=962 second=947 amount=-1 +kerning first=962 second=955 amount=-1 +kerning first=962 second=957 amount=-1 +kerning first=962 second=1199 amount=-1 +kerning first=964 second=99 amount=-1 +kerning first=964 second=100 amount=-1 +kerning first=964 second=101 amount=-1 +kerning first=964 second=111 amount=-1 +kerning first=964 second=113 amount=-1 +kerning first=964 second=231 amount=-1 +kerning first=964 second=232 amount=-1 +kerning first=964 second=233 amount=-1 +kerning first=964 second=234 amount=-1 kerning first=964 second=235 amount=-1 -kerning first=273 second=97 amount=-1 -kerning first=42 second=219 amount=-2 -kerning first=178 second=1108 amount=-1 -kerning first=182 second=347 amount=-1 -kerning first=297 second=259 amount=-1 -kerning first=300 second=34 amount=-3 -kerning first=62 second=361 amount=-1 -kerning first=65 second=121 amount=-1 -kerning first=202 second=965 amount=-1 -kerning first=208 second=46 amount=-1 -kerning first=8369 second=354 amount=-5 -kerning first=8364 second=1118 amount=-1 -kerning first=942 second=248 amount=-1 -kerning first=108 second=220 amount=-2 -kerning first=245 second=1113 amount=-1 -kerning first=125 second=1176 amount=-1 -kerning first=161 second=362 amount=-2 -kerning first=274 second=275 amount=-1 -kerning first=277 second=47 amount=-1 -kerning first=43 second=374 amount=-5 -kerning first=1051 second=87 amount=-5 -kerning first=186 second=289 amount=-1 -kerning first=69 second=71 amount=-2 -kerning first=1083 second=249 amount=-1 -kerning first=209 second=221 amount=-5 -kerning first=8370 second=1038 amount=-2 -kerning first=330 second=111 amount=-1 -kerning first=904 second=261 amount=-1 -kerning first=901 second=953 amount=-1 -kerning first=89 second=233 amount=-4 -kerning first=252 second=290 amount=-2 -kerning first=375 second=210 amount=-2 -kerning first=126 second=8211 amount=-2 -kerning first=8212 second=380 amount=-2 -kerning first=50 second=84 amount=-5 -kerning first=190 second=234 amount=-1 -kerning first=302 second=364 amount=-2 -kerning first=70 second=246 amount=-1 -kerning first=210 second=376 amount=-3 -kerning first=327 second=1035 amount=-5 -kerning first=910 second=211 amount=-3 -kerning first=1117 second=1098 amount=-3 -kerning first=1168 second=339 amount=-1 -kerning first=1171 second=101 amount=-1 -kerning first=951 second=113 amount=-1 -kerning first=948 second=353 amount=-1 -kerning first=1220 second=263 amount=-1 -kerning first=256 second=235 amount=-1 -kerning first=376 second=365 amount=-2 -kerning first=51 second=259 amount=-1 -kerning first=54 second=34 amount=-3 -kerning first=1065 second=212 amount=-1 -kerning first=300 second=8216 amount=-3 -kerning first=74 second=196 amount=-1 -kerning first=1085 second=1118 amount=-1 -kerning first=906 second=1184 amount=-5 -kerning first=94 second=336 amount=-2 -kerning first=1174 second=279 amount=-1 -kerning first=237 second=248 amount=-1 -kerning first=288 second=87 amount=-1 -kerning first=8225 second=267 amount=-1 -kerning first=1063 second=1185 amount=-3 -kerning first=195 second=337 amount=-1 -kerning first=198 second=99 amount=-1 -kerning first=313 second=249 amount=-1 -kerning first=1095 second=1038 amount=-2 -kerning first=78 second=111 amount=-1 -kerning first=215 second=953 amount=-1 -kerning first=908 second=8218 amount=-1 -kerning first=121 second=210 amount=-2 -kerning first=381 second=941 amount=-1 -kerning first=175 second=352 amount=-1 -kerning first=289 second=262 amount=-2 -kerning first=56 second=364 amount=-2 -kerning first=1064 second=8220 amount=-3 -kerning first=196 second=968 amount=-1 -kerning first=317 second=199 amount=-2 -kerning first=8361 second=357 amount=-1 -kerning first=8364 second=117 amount=-1 -kerning first=76 second=1035 amount=-6 -kerning first=337 second=1098 amount=-1 -kerning first=343 second=101 amount=-1 -kerning first=931 second=251 amount=-1 -kerning first=365 second=263 amount=-1 -kerning first=1263 second=1066 amount=-5 -kerning first=8230 second=1194 amount=-1 -kerning first=54 second=8216 amount=-3 -kerning first=1071 second=943 amount=-1 -kerning first=203 second=224 amount=-1 -kerning first=315 second=1118 amount=-1 -kerning first=318 second=354 amount=-5 -kerning first=8370 second=67 amount=-2 -kerning first=901 second=39 amount=-3 -kerning first=223 second=366 amount=-2 -kerning first=369 second=213 amount=-2 -kerning first=271 second=225 amount=-1 -kerning first=1044 second=267 amount=-1 -kerning first=44 second=87 amount=-3 -kerning first=291 second=1185 amount=-3 -kerning first=296 second=367 amount=-1 -kerning first=61 second=940 amount=-1 -kerning first=64 second=249 amount=-1 -kerning first=321 second=1038 amount=-2 -kerning first=8372 second=242 amount=-1 -kerning first=902 second=214 amount=-2 -kerning first=221 second=8218 amount=-4 -kerning first=944 second=116 amount=-1 -kerning first=1202 second=268 amount=-1 +kerning first=964 second=240 amount=-1 +kerning first=964 second=242 amount=-1 +kerning first=964 second=243 amount=-1 +kerning first=964 second=244 amount=-1 +kerning first=964 second=245 amount=-1 +kerning first=964 second=246 amount=-1 +kerning first=964 second=248 amount=-1 +kerning first=964 second=263 amount=-1 +kerning first=964 second=267 amount=-1 +kerning first=964 second=269 amount=-1 +kerning first=964 second=271 amount=-1 +kerning first=964 second=273 amount=-1 +kerning first=964 second=275 amount=-1 +kerning first=964 second=277 amount=-1 +kerning first=964 second=279 amount=-1 +kerning first=964 second=281 amount=-1 +kerning first=964 second=283 amount=-1 +kerning first=964 second=333 amount=-1 +kerning first=964 second=335 amount=-1 +kerning first=964 second=337 amount=-1 +kerning first=964 second=339 amount=-1 +kerning first=964 second=940 amount=-1 +kerning first=964 second=941 amount=-1 +kerning first=964 second=945 amount=-1 +kerning first=964 second=949 amount=-1 +kerning first=964 second=959 amount=-1 +kerning first=964 second=962 amount=-1 +kerning first=964 second=963 amount=-1 +kerning first=964 second=966 amount=-1 kerning first=964 second=972 amount=-1 -kerning first=967 second=281 amount=-1 -kerning first=163 second=250 amount=-1 -kerning first=160 second=941 amount=-1 -kerning first=185 second=1241 amount=-1 -kerning first=188 second=187 amount=-1 -kerning first=294 second=8220 amount=-3 -kerning first=1081 second=357 amount=-1 -kerning first=1085 second=117 amount=-1 -kerning first=205 second=1079 amount=-1 -kerning first=211 second=89 amount=-3 -kerning first=903 second=369 amount=-1 -kerning first=88 second=339 amount=-2 -kerning first=91 second=101 amount=-1 -kerning first=1210 second=216 amount=-2 -kerning first=371 second=1066 amount=-5 -kerning first=971 second=228 amount=-1 -kerning first=49 second=212 amount=-2 -kerning first=1051 second=370 amount=-2 -kerning first=301 second=943 amount=-1 -kerning first=304 second=252 amount=-1 -kerning first=69 second=354 amount=-5 -kerning first=1095 second=67 amount=-2 -kerning first=215 second=39 amount=-3 -kerning first=912 second=79 amount=-2 -kerning first=92 second=279 amount=-1 -kerning first=1170 second=229 amount=-1 -kerning first=89 second=970 amount=-2 -kerning first=946 second=920 amount=-2 -kerning first=950 second=241 amount=-2 -kerning first=1206 second=1195 amount=-1 -kerning first=1219 second=371 amount=-1 -kerning first=258 second=103 amount=-1 -kerning first=168 second=355 amount=-1 -kerning first=8222 second=218 amount=-1 -kerning first=47 second=1185 amount=-3 -kerning first=50 second=367 amount=-1 -kerning first=70 second=1038 amount=-2 -kerning first=1096 second=242 amount=-1 -kerning first=910 second=945 amount=-4 -kerning first=1171 second=1240 amount=-2 -kerning first=1168 second=1262 amount=-2 -kerning first=96 second=226 amount=-1 -kerning first=236 second=356 amount=-5 -kerning first=239 second=116 amount=-1 -kerning first=1220 second=1069 amount=-1 -kerning first=1263 second=81 amount=-2 -kerning first=256 second=972 amount=-1 -kerning first=8224 second=373 amount=-4 -kerning first=48 second=8220 amount=-3 -kerning first=197 second=227 amount=-1 -kerning first=315 second=117 amount=-1 -kerning first=363 second=216 amount=-2 -kerning first=960 second=106 amount=1 -kerning first=117 second=1066 amount=-5 -kerning first=177 second=240 amount=-1 -kerning first=8221 second=8230 amount=-1 -kerning first=8260 second=83 amount=-1 -kerning first=55 second=943 amount=-1 -kerning first=58 second=252 amount=-1 -kerning first=195 second=1256 amount=-2 -kerning first=321 second=67 amount=-2 -kerning first=8363 second=245 amount=-1 -kerning first=928 second=359 amount=-1 -kerning first=936 second=119 amount=-4 -kerning first=1185 second=271 amount=-2 -kerning first=1194 second=44 amount=-1 -kerning first=1178 second=963 amount=-1 -kerning first=361 second=1195 amount=-1 -kerning first=956 second=1026 amount=-5 -kerning first=124 second=253 amount=-1 -kerning first=1240 second=1046 amount=-3 -kerning first=39 second=267 amount=-1 -kerning first=1039 second=218 amount=-2 -kerning first=1074 second=360 amount=-2 -kerning first=1070 second=1174 amount=-3 -kerning first=322 second=242 amount=-1 -kerning first=105 second=268 amount=-2 -kerning first=365 second=1069 amount=-1 -kerning first=371 second=81 amount=-2 -kerning first=965 second=231 amount=-1 -kerning first=8211 second=46 amount=-1 -kerning first=1041 second=373 amount=-4 -kerning first=63 second=357 amount=-1 -kerning first=206 second=269 amount=-1 -kerning first=8370 second=350 amount=-1 -kerning first=1116 second=232 amount=-2 -kerning first=252 second=106 amount=1 -kerning first=372 second=256 amount=-5 -kerning first=165 second=118 amount=-4 -kerning first=271 second=962 amount=-1 -kerning first=8212 second=221 amount=-4 -kerning first=41 second=1194 amount=-2 -kerning first=44 second=370 amount=-1 -kerning first=1038 second=8230 amount=-1 -kerning first=70 second=67 amount=-1 -kerning first=1084 second=245 amount=-1 -kerning first=8378 second=290 amount=-2 -kerning first=902 second=949 amount=-1 -kerning first=905 second=257 amount=-1 -kerning first=233 second=119 amount=-1 -kerning first=356 second=44 amount=-3 -kerning first=107 second=1195 amount=-2 -kerning first=1220 second=84 amount=-5 -kerning first=250 second=1026 amount=-5 -kerning first=253 second=286 amount=-2 -kerning first=967 second=1090 amount=-3 -kerning first=191 second=230 amount=-1 -kerning first=303 second=360 amount=-2 -kerning first=68 second=923 amount=-2 -kerning first=211 second=372 amount=-2 -kerning first=91 second=1240 amount=-2 -kerning first=1169 second=335 amount=-1 -kerning first=357 second=219 amount=-2 -kerning first=117 second=81 amount=-2 -kerning first=1223 second=259 amount=-1 -kerning first=1257 second=34 amount=-1 -kerning first=374 second=1175 amount=-2 -kerning first=971 second=965 amount=-1 +kerning first=964 second=1077 amount=-1 +kerning first=964 second=1086 amount=-1 +kerning first=964 second=1089 amount=-1 +kerning first=964 second=1092 amount=-1 +kerning first=964 second=1104 amount=-1 +kerning first=964 second=1105 amount=-1 +kerning first=964 second=1108 amount=-1 +kerning first=964 second=1195 amount=-1 +kerning first=964 second=1241 amount=-1 +kerning first=964 second=1257 amount=-1 +kerning first=966 second=34 amount=-1 +kerning first=966 second=39 amount=-1 +kerning first=966 second=44 amount=-1 +kerning first=966 second=46 amount=-1 +kerning first=966 second=47 amount=-1 +kerning first=966 second=63 amount=-2 +kerning first=966 second=102 amount=-1 +kerning first=966 second=118 amount=-1 +kerning first=966 second=119 amount=-1 +kerning first=966 second=120 amount=-2 +kerning first=966 second=122 amount=-1 +kerning first=966 second=373 amount=-1 +kerning first=966 second=378 amount=-1 +kerning first=966 second=380 amount=-1 +kerning first=966 second=382 amount=-1 +kerning first=966 second=947 amount=-1 +kerning first=966 second=955 amount=-1 +kerning first=966 second=957 amount=-1 +kerning first=966 second=964 amount=-1 +kerning first=966 second=967 amount=-2 +kerning first=966 second=1076 amount=-1 +kerning first=966 second=1078 amount=-2 +kerning first=966 second=1083 amount=-1 +kerning first=966 second=1090 amount=-1 +kerning first=966 second=1093 amount=-2 +kerning first=966 second=1098 amount=-1 +kerning first=966 second=1113 amount=-1 +kerning first=966 second=1175 amount=-2 +kerning first=966 second=1185 amount=-1 +kerning first=966 second=1199 amount=-1 +kerning first=966 second=1203 amount=-2 +kerning first=966 second=1299 amount=-1 +kerning first=966 second=8216 amount=-1 +kerning first=966 second=8217 amount=-1 +kerning first=966 second=8218 amount=-1 +kerning first=966 second=8220 amount=-1 +kerning first=966 second=8221 amount=-1 +kerning first=966 second=8222 amount=-1 +kerning first=966 second=8230 amount=-1 +kerning first=967 second=99 amount=-2 +kerning first=967 second=100 amount=-2 +kerning first=967 second=101 amount=-2 +kerning first=967 second=111 amount=-2 +kerning first=967 second=113 amount=-2 +kerning first=967 second=231 amount=-2 +kerning first=967 second=232 amount=-2 +kerning first=967 second=233 amount=-2 +kerning first=967 second=234 amount=-2 +kerning first=967 second=235 amount=-2 +kerning first=967 second=240 amount=-2 +kerning first=967 second=242 amount=-2 +kerning first=967 second=243 amount=-2 +kerning first=967 second=244 amount=-2 +kerning first=967 second=245 amount=-2 +kerning first=967 second=246 amount=-2 +kerning first=967 second=248 amount=-2 +kerning first=967 second=263 amount=-2 +kerning first=967 second=267 amount=-2 +kerning first=967 second=269 amount=-2 +kerning first=967 second=271 amount=-2 +kerning first=967 second=273 amount=-2 +kerning first=967 second=275 amount=-2 +kerning first=967 second=277 amount=-2 +kerning first=967 second=279 amount=-2 +kerning first=967 second=281 amount=-2 +kerning first=967 second=283 amount=-2 +kerning first=967 second=333 amount=-2 +kerning first=967 second=335 amount=-2 +kerning first=967 second=337 amount=-2 +kerning first=967 second=339 amount=-2 +kerning first=967 second=940 amount=-2 +kerning first=967 second=941 amount=-2 +kerning first=967 second=943 amount=-1 +kerning first=967 second=945 amount=-2 +kerning first=967 second=949 amount=-2 +kerning first=967 second=950 amount=-2 +kerning first=967 second=953 amount=-1 +kerning first=967 second=955 amount=-2 +kerning first=967 second=959 amount=-2 +kerning first=967 second=962 amount=-2 +kerning first=967 second=963 amount=-2 +kerning first=967 second=966 amount=-2 +kerning first=967 second=969 amount=-1 +kerning first=967 second=970 amount=-1 +kerning first=967 second=972 amount=-2 +kerning first=967 second=974 amount=-1 +kerning first=967 second=1077 amount=-2 +kerning first=967 second=1086 amount=-2 +kerning first=967 second=1089 amount=-2 +kerning first=967 second=1092 amount=-2 +kerning first=967 second=1104 amount=-2 +kerning first=967 second=1105 amount=-2 +kerning first=967 second=1108 amount=-2 +kerning first=967 second=1195 amount=-2 +kerning first=967 second=1241 amount=-2 +kerning first=967 second=1257 amount=-2 +kerning first=969 second=120 amount=-1 +kerning first=969 second=955 amount=-1 +kerning first=969 second=967 amount=-1 +kerning first=969 second=1078 amount=-1 +kerning first=969 second=1093 amount=-1 +kerning first=969 second=1175 amount=-1 +kerning first=969 second=1203 amount=-1 +kerning first=970 second=118 amount=-2 +kerning first=970 second=119 amount=-2 +kerning first=970 second=373 amount=-2 +kerning first=970 second=947 amount=-2 +kerning first=970 second=957 amount=-2 +kerning first=970 second=964 amount=-2 +kerning first=970 second=967 amount=-2 +kerning first=970 second=1090 amount=-2 +kerning first=970 second=1098 amount=-2 +kerning first=970 second=1185 amount=-2 +kerning first=970 second=1199 amount=-2 +kerning first=972 second=34 amount=-1 +kerning first=972 second=39 amount=-1 +kerning first=972 second=44 amount=-1 +kerning first=972 second=46 amount=-1 +kerning first=972 second=47 amount=-1 +kerning first=972 second=63 amount=-2 +kerning first=972 second=102 amount=-1 +kerning first=972 second=118 amount=-1 +kerning first=972 second=119 amount=-1 +kerning first=972 second=120 amount=-2 +kerning first=972 second=122 amount=-1 +kerning first=972 second=373 amount=-1 +kerning first=972 second=378 amount=-1 +kerning first=972 second=380 amount=-1 +kerning first=972 second=382 amount=-1 +kerning first=972 second=947 amount=-1 +kerning first=972 second=955 amount=-1 +kerning first=972 second=957 amount=-1 +kerning first=972 second=964 amount=-1 +kerning first=972 second=967 amount=-2 +kerning first=972 second=1076 amount=-1 +kerning first=972 second=1078 amount=-2 +kerning first=972 second=1083 amount=-1 +kerning first=972 second=1090 amount=-1 +kerning first=972 second=1093 amount=-2 +kerning first=972 second=1098 amount=-1 +kerning first=972 second=1113 amount=-1 +kerning first=972 second=1175 amount=-2 +kerning first=972 second=1185 amount=-1 +kerning first=972 second=1199 amount=-1 +kerning first=972 second=1203 amount=-2 +kerning first=972 second=1299 amount=-1 +kerning first=972 second=8216 amount=-1 +kerning first=972 second=8217 amount=-1 +kerning first=972 second=8218 amount=-1 +kerning first=972 second=8220 amount=-1 +kerning first=972 second=8221 amount=-1 +kerning first=972 second=8222 amount=-1 +kerning first=972 second=8230 amount=-1 +kerning first=974 second=120 amount=-1 +kerning first=974 second=955 amount=-1 +kerning first=974 second=967 amount=-1 +kerning first=974 second=1078 amount=-1 +kerning first=974 second=1093 amount=-1 +kerning first=974 second=1175 amount=-1 +kerning first=974 second=1203 amount=-1 +kerning first=1028 second=44 amount=-1 +kerning first=1028 second=45 amount=-1 kerning first=1028 second=46 amount=-1 -kerning first=170 second=243 amount=-1 -kerning first=280 second=373 amount=-4 -kerning first=189 second=1263 amount=-1 -kerning first=1095 second=350 amount=-1 -kerning first=912 second=362 amount=-2 -kerning first=95 second=332 amount=-2 -kerning first=1170 second=966 amount=-1 -kerning first=1175 second=275 amount=-1 -kerning first=238 second=244 amount=-1 -kerning first=358 second=374 amount=-5 +kerning first=1028 second=47 amount=-1 +kerning first=1028 second=65 amount=-1 +kerning first=1028 second=84 amount=-1 +kerning first=1028 second=86 amount=-1 +kerning first=1028 second=87 amount=-1 +kerning first=1028 second=88 amount=-2 +kerning first=1028 second=89 amount=-2 +kerning first=1028 second=90 amount=-1 +kerning first=1028 second=106 amount=1 +kerning first=1028 second=171 amount=-1 +kerning first=1028 second=173 amount=-1 +kerning first=1028 second=193 amount=-1 +kerning first=1028 second=194 amount=-1 +kerning first=1028 second=196 amount=-1 +kerning first=1028 second=197 amount=-1 +kerning first=1028 second=198 amount=-1 +kerning first=1028 second=221 amount=-2 +kerning first=1028 second=256 amount=-1 +kerning first=1028 second=258 amount=-1 +kerning first=1028 second=260 amount=-1 +kerning first=1028 second=354 amount=-1 +kerning first=1028 second=356 amount=-1 +kerning first=1028 second=372 amount=-1 +kerning first=1028 second=374 amount=-2 +kerning first=1028 second=376 amount=-2 +kerning first=1028 second=377 amount=-1 +kerning first=1028 second=379 amount=-1 +kerning first=1028 second=381 amount=-1 +kerning first=1028 second=913 amount=-1 +kerning first=1028 second=916 amount=-1 +kerning first=1028 second=918 amount=-1 +kerning first=1028 second=923 amount=-1 +kerning first=1028 second=932 amount=-1 +kerning first=1028 second=933 amount=-2 +kerning first=1028 second=935 amount=-2 +kerning first=1028 second=939 amount=-2 +kerning first=1028 second=1026 amount=-1 +kerning first=1028 second=1033 amount=-1 +kerning first=1028 second=1035 amount=-1 +kerning first=1028 second=1040 amount=-1 +kerning first=1028 second=1044 amount=-1 +kerning first=1028 second=1046 amount=-2 +kerning first=1028 second=1051 amount=-1 +kerning first=1028 second=1058 amount=-1 +kerning first=1028 second=1061 amount=-2 +kerning first=1028 second=1066 amount=-1 +kerning first=1028 second=1069 amount=1 +kerning first=1028 second=1112 amount=1 +kerning first=1028 second=1174 amount=-2 +kerning first=1028 second=1176 amount=1 +kerning first=1028 second=1184 amount=-1 +kerning first=1028 second=1198 amount=-2 +kerning first=1028 second=1202 amount=-2 +kerning first=1028 second=1298 amount=-1 +kerning first=1028 second=8211 amount=-1 +kerning first=1028 second=8212 amount=-1 +kerning first=1028 second=8218 amount=-1 +kerning first=1028 second=8222 amount=-1 +kerning first=1028 second=8230 amount=-1 +kerning first=1028 second=8249 amount=-1 +kerning first=1029 second=65 amount=-1 +kerning first=1029 second=84 amount=-1 +kerning first=1029 second=86 amount=-2 +kerning first=1029 second=87 amount=-2 +kerning first=1029 second=88 amount=-1 +kerning first=1029 second=89 amount=-2 +kerning first=1029 second=106 amount=1 +kerning first=1029 second=118 amount=-1 +kerning first=1029 second=119 amount=-1 +kerning first=1029 second=120 amount=-1 +kerning first=1029 second=193 amount=-1 +kerning first=1029 second=194 amount=-1 +kerning first=1029 second=196 amount=-1 +kerning first=1029 second=197 amount=-1 +kerning first=1029 second=198 amount=-1 +kerning first=1029 second=221 amount=-2 +kerning first=1029 second=256 amount=-1 +kerning first=1029 second=258 amount=-1 +kerning first=1029 second=260 amount=-1 +kerning first=1029 second=354 amount=-1 +kerning first=1029 second=356 amount=-1 +kerning first=1029 second=372 amount=-2 +kerning first=1029 second=373 amount=-1 +kerning first=1029 second=374 amount=-2 +kerning first=1029 second=376 amount=-2 +kerning first=1029 second=913 amount=-1 +kerning first=1029 second=916 amount=-1 +kerning first=1029 second=923 amount=-1 +kerning first=1029 second=932 amount=-1 +kerning first=1029 second=933 amount=-2 +kerning first=1029 second=935 amount=-1 +kerning first=1029 second=939 amount=-2 +kerning first=1029 second=947 amount=-1 +kerning first=1029 second=957 amount=-1 +kerning first=1029 second=1026 amount=-1 +kerning first=1029 second=1035 amount=-1 +kerning first=1029 second=1040 amount=-1 +kerning first=1029 second=1046 amount=-1 +kerning first=1029 second=1058 amount=-1 +kerning first=1029 second=1061 amount=-1 +kerning first=1029 second=1066 amount=-1 +kerning first=1029 second=1078 amount=-1 +kerning first=1029 second=1093 amount=-1 +kerning first=1029 second=1112 amount=1 +kerning first=1029 second=1174 amount=-1 +kerning first=1029 second=1175 amount=-1 +kerning first=1029 second=1184 amount=-1 +kerning first=1029 second=1198 amount=-2 +kerning first=1029 second=1199 amount=-1 +kerning first=1029 second=1202 amount=-1 +kerning first=1029 second=1203 amount=-1 +kerning first=1032 second=44 amount=-1 +kerning first=1032 second=46 amount=-1 +kerning first=1032 second=47 amount=-1 +kerning first=1032 second=65 amount=-1 +kerning first=1032 second=193 amount=-1 +kerning first=1032 second=194 amount=-1 +kerning first=1032 second=196 amount=-1 +kerning first=1032 second=197 amount=-1 +kerning first=1032 second=198 amount=-1 +kerning first=1032 second=256 amount=-1 +kerning first=1032 second=258 amount=-1 +kerning first=1032 second=260 amount=-1 +kerning first=1032 second=913 amount=-1 +kerning first=1032 second=916 amount=-1 +kerning first=1032 second=923 amount=-1 +kerning first=1032 second=1040 amount=-1 +kerning first=1032 second=8218 amount=-1 +kerning first=1032 second=8222 amount=-1 +kerning first=1032 second=8230 amount=-1 +kerning first=1033 second=34 amount=-2 +kerning first=1033 second=39 amount=-2 +kerning first=1033 second=63 amount=-5 +kerning first=1033 second=65 amount=-1 +kerning first=1033 second=84 amount=-5 +kerning first=1033 second=88 amount=-2 +kerning first=1033 second=89 amount=-5 +kerning first=1033 second=118 amount=-1 +kerning first=1033 second=119 amount=-1 +kerning first=1033 second=193 amount=-1 +kerning first=1033 second=194 amount=-1 +kerning first=1033 second=196 amount=-1 +kerning first=1033 second=197 amount=-1 +kerning first=1033 second=198 amount=-1 kerning first=1033 second=221 amount=-5 -kerning first=289 second=83 amount=-1 -kerning first=8226 second=261 amount=-1 -kerning first=1064 second=1177 amount=-1 -kerning first=1067 second=363 amount=-1 -kerning first=196 second=333 amount=-1 -kerning first=314 second=245 amount=-1 -kerning first=1099 second=290 amount=-2 -kerning first=915 second=1051 amount=-5 -kerning first=96 second=963 amount=-1 -kerning first=910 second=8211 amount=-4 -kerning first=102 second=44 amount=-2 -kerning first=365 second=84 amount=-5 -kerning first=958 second=234 amount=-1 -kerning first=1263 second=364 amount=-2 -kerning first=259 second=1090 amount=-1 -kerning first=37 second=218 amount=-2 +kerning first=1033 second=256 amount=-1 +kerning first=1033 second=258 amount=-1 +kerning first=1033 second=260 amount=-1 +kerning first=1033 second=354 amount=-5 +kerning first=1033 second=356 amount=-5 +kerning first=1033 second=373 amount=-1 +kerning first=1033 second=374 amount=-5 +kerning first=1033 second=376 amount=-5 +kerning first=1033 second=913 amount=-1 +kerning first=1033 second=916 amount=-1 +kerning first=1033 second=923 amount=-1 +kerning first=1033 second=932 amount=-5 +kerning first=1033 second=933 amount=-5 +kerning first=1033 second=935 amount=-2 +kerning first=1033 second=939 amount=-5 +kerning first=1033 second=947 amount=-1 +kerning first=1033 second=957 amount=-1 +kerning first=1033 second=964 amount=-2 +kerning first=1033 second=1026 amount=-5 +kerning first=1033 second=1035 amount=-5 +kerning first=1033 second=1040 amount=-1 +kerning first=1033 second=1046 amount=-2 +kerning first=1033 second=1058 amount=-5 +kerning first=1033 second=1061 amount=-2 +kerning first=1033 second=1063 amount=-1 +kerning first=1033 second=1066 amount=-5 +kerning first=1033 second=1071 amount=-1 +kerning first=1033 second=1090 amount=-2 +kerning first=1033 second=1098 amount=-2 +kerning first=1033 second=1174 amount=-2 +kerning first=1033 second=1184 amount=-5 +kerning first=1033 second=1185 amount=-2 +kerning first=1033 second=1198 amount=-5 +kerning first=1033 second=1199 amount=-1 +kerning first=1033 second=1202 amount=-2 +kerning first=1033 second=8216 amount=-2 +kerning first=1033 second=8217 amount=-2 +kerning first=1033 second=8220 amount=-2 +kerning first=1033 second=8221 amount=-2 +kerning first=1034 second=34 amount=-2 +kerning first=1034 second=39 amount=-2 +kerning first=1034 second=63 amount=-5 +kerning first=1034 second=65 amount=-1 +kerning first=1034 second=84 amount=-5 +kerning first=1034 second=88 amount=-2 +kerning first=1034 second=89 amount=-5 +kerning first=1034 second=118 amount=-1 +kerning first=1034 second=119 amount=-1 +kerning first=1034 second=193 amount=-1 +kerning first=1034 second=194 amount=-1 +kerning first=1034 second=196 amount=-1 +kerning first=1034 second=197 amount=-1 +kerning first=1034 second=198 amount=-1 +kerning first=1034 second=221 amount=-5 +kerning first=1034 second=256 amount=-1 +kerning first=1034 second=258 amount=-1 +kerning first=1034 second=260 amount=-1 +kerning first=1034 second=354 amount=-5 +kerning first=1034 second=356 amount=-5 +kerning first=1034 second=373 amount=-1 +kerning first=1034 second=374 amount=-5 kerning first=1034 second=376 amount=-5 -kerning first=176 second=346 amount=-1 -kerning first=57 second=360 amount=-2 -kerning first=1065 second=8212 amount=-2 -kerning first=200 second=273 amount=-1 -kerning first=203 second=45 amount=-2 -kerning first=197 second=964 amount=-3 -kerning first=8365 second=113 amount=-1 -kerning first=80 second=287 amount=-1 -kerning first=1103 second=235 amount=-1 -kerning first=341 second=335 amount=-1 -kerning first=103 second=219 amount=-2 -kerning first=240 second=1108 amount=-1 -kerning first=369 second=34 amount=-3 -kerning first=123 second=361 amount=-1 -kerning first=126 second=121 amount=-1 -kerning first=1257 second=8216 amount=-1 -kerning first=38 second=373 amount=-4 -kerning first=177 second=1028 amount=-2 -kerning first=180 second=288 amount=-2 -kerning first=8240 second=1184 amount=-5 -kerning first=8260 second=366 amount=-2 -kerning first=1076 second=248 amount=-1 -kerning first=204 second=220 amount=-2 -kerning first=321 second=350 amount=-1 -kerning first=84 second=232 amount=-3 -kerning first=221 second=1176 amount=-2 -kerning first=345 second=275 amount=-1 -kerning first=101 second=1203 amount=-2 -kerning first=247 second=289 amount=-1 -kerning first=964 second=337 amount=-1 -kerning first=967 second=99 amount=-1 -kerning first=163 second=71 amount=-2 -kerning first=273 second=221 amount=-5 -kerning first=1039 second=953 amount=-1 -kerning first=1046 second=261 amount=-1 -kerning first=45 second=83 amount=-1 -kerning first=185 second=233 amount=-1 -kerning first=297 second=363 amount=-1 -kerning first=294 second=1177 amount=-1 -kerning first=65 second=245 amount=-1 -kerning first=205 second=375 amount=-1 -kerning first=325 second=290 amount=-2 -kerning first=903 second=210 amount=-2 -kerning first=1118 second=100 amount=-1 -kerning first=942 second=352 amount=-1 -kerning first=251 second=234 amount=-1 -kerning first=371 second=364 amount=-2 -kerning first=965 second=968 amount=-1 -kerning first=968 second=277 amount=-1 -kerning first=164 second=246 amount=-1 -kerning first=274 second=376 amount=-5 -kerning first=1051 second=211 amount=-2 -kerning first=298 second=1059 amount=-2 -kerning first=1087 second=113 amount=-1 -kerning first=1083 second=353 amount=-1 -kerning first=203 second=8249 amount=-3 -kerning first=330 second=235 amount=-1 -kerning first=904 second=365 amount=-1 -kerning first=86 second=1094 amount=-2 -kerning first=92 second=97 amount=-1 -kerning first=89 second=335 amount=-4 -kerning first=115 second=34 amount=-1 -kerning first=1219 second=212 amount=-2 -kerning first=369 second=8216 amount=-3 -kerning first=271 second=8250 amount=-1 -kerning first=8218 second=266 amount=-1 -kerning first=8222 second=39 amount=-1 -kerning first=1048 second=1184 amount=-5 -kerning first=190 second=336 amount=-2 -kerning first=305 second=248 amount=-1 -kerning first=70 second=350 amount=-1 -kerning first=213 second=260 amount=-2 -kerning first=902 second=8217 amount=-3 -kerning first=90 second=966 amount=-1 -kerning first=93 second=275 amount=-1 -kerning first=1171 second=225 amount=-1 -kerning first=356 second=324 amount=-2 -kerning first=1207 second=1185 amount=-2 -kerning first=1220 second=367 amount=-1 -kerning first=256 second=337 amount=-1 -kerning first=376 second=940 amount=-4 -kerning first=172 second=111 amount=-1 -kerning first=282 second=261 amount=-1 -kerning first=169 second=351 amount=-1 -kerning first=8224 second=214 amount=-2 -kerning first=48 second=1177 amount=-1 -kerning first=51 second=363 amount=-1 -kerning first=74 second=290 amount=-2 -kerning first=338 second=100 amount=-1 -kerning first=916 second=250 amount=-1 -kerning first=237 second=352 amount=-1 -kerning first=952 second=1241 amount=-1 -kerning first=955 second=187 amount=-1 -kerning first=117 second=364 amount=-2 -kerning first=1210 second=8220 amount=-3 -kerning first=260 second=277 amount=-1 -kerning first=170 second=1035 amount=-5 -kerning first=174 second=291 amount=-1 -kerning first=1035 second=89 amount=-5 -kerning first=8225 second=369 amount=-1 -kerning first=49 second=8212 amount=-2 -kerning first=52 second=1059 amount=-2 -kerning first=316 second=113 amount=-1 -kerning first=78 second=235 amount=-1 -kerning first=961 second=102 amount=-1 -kerning first=115 second=8216 amount=-1 -kerning first=1299 second=252 amount=-1 -kerning first=1240 second=354 amount=-2 -kerning first=1036 second=266 amount=-3 -kerning first=1039 second=39 amount=-3 -kerning first=286 second=1184 amount=-1 -kerning first=289 second=366 amount=-2 -kerning first=59 second=248 amount=-1 -kerning first=202 second=171 amount=-3 -kerning first=8361 second=920 amount=-2 -kerning first=343 second=225 amount=-1 -kerning first=931 second=355 amount=-1 -kerning first=105 second=87 amount=-5 -kerning first=1186 second=267 amount=-1 -kerning first=365 second=367 amount=-1 -kerning first=125 second=249 amount=-1 -kerning first=122 second=940 amount=-1 -kerning first=40 second=261 amount=-1 -kerning first=37 second=953 amount=-1 -kerning first=1041 second=214 amount=-2 -kerning first=86 second=100 amount=-3 -kerning first=1103 second=972 amount=-1 -kerning first=223 second=941 amount=-1 -kerning first=249 second=187 amount=-1 -kerning first=363 second=8220 amount=-3 -kerning first=162 second=199 amount=-2 -kerning first=44 second=211 amount=-1 -kerning first=180 second=1098 amount=-3 -kerning first=184 second=339 amount=-1 -kerning first=299 second=251 amount=-1 -kerning first=64 second=353 amount=-1 -kerning first=207 second=263 amount=-1 -kerning first=8378 second=106 amount=1 -kerning first=1117 second=228 amount=-1 -kerning first=944 second=240 amount=-1 -kerning first=1202 second=370 amount=-1 -kerning first=964 second=1256 amount=-2 -kerning first=160 second=1118 amount=-1 -kerning first=163 second=354 amount=-5 -kerning first=276 second=266 amount=-2 -kerning first=279 second=39 amount=-1 -kerning first=42 second=1184 amount=-5 -kerning first=188 second=279 amount=-1 -kerning first=185 second=970 amount=-1 -kerning first=1062 second=79 amount=-1 -kerning first=1081 second=920 amount=-2 -kerning first=906 second=253 amount=-1 -kerning first=91 second=225 amount=-1 -kerning first=354 second=267 amount=-3 -kerning first=108 second=1185 amount=-3 -kerning first=164 second=1038 amount=-2 -kerning first=280 second=214 amount=-2 -kerning first=8211 second=947 amount=-1 -kerning first=1051 second=945 amount=-1 -kerning first=192 second=226 amount=-1 -kerning first=304 second=356 amount=-5 -kerning first=330 second=972 amount=-1 -kerning first=950 second=343 amount=-2 -kerning first=109 second=8220 amount=-1 -kerning first=258 second=227 amount=-1 -kerning first=1026 second=269 amount=-1 -kerning first=53 second=251 amount=-1 -kerning first=1099 second=106 amount=1 -kerning first=213 second=1066 amount=-2 -kerning first=923 second=118 amount=-4 -kerning first=1171 second=962 amount=-1 -kerning first=239 second=240 amount=-1 -kerning first=356 second=1194 amount=-1 -kerning first=954 second=283 amount=-2 -kerning first=256 second=1256 amount=-2 -kerning first=37 second=39 amount=-3 -kerning first=279 second=8222 amount=-1 -kerning first=8224 second=949 amount=-1 -kerning first=1071 second=119 amount=-4 -kerning first=80 second=103 amount=-1 -kerning first=100 second=267 amount=-1 -kerning first=960 second=230 amount=-1 -kerning first=1298 second=360 amount=-2 -kerning first=38 second=214 amount=-2 -kerning first=1035 second=372 amount=-5 -kerning first=174 second=1101 amount=-1 -kerning first=58 second=356 amount=-5 -kerning first=61 second=116 amount=-1 -kerning first=201 second=268 amount=-2 -kerning first=8363 second=347 amount=-1 -kerning first=78 second=972 amount=-1 -kerning first=936 second=243 amount=-1 -kerning first=956 second=1263 amount=-1 -kerning first=124 second=357 amount=-1 -kerning first=160 second=117 amount=-1 -kerning first=178 second=973 amount=-1 -kerning first=1078 second=244 amount=-2 -kerning first=205 second=216 amount=-2 -kerning first=325 second=106 amount=1 -kerning first=8369 second=289 amount=-1 -kerning first=228 second=118 amount=-1 -kerning first=343 second=962 amount=-1 -kerning first=105 second=370 amount=-2 -kerning first=965 second=333 amount=-1 -kerning first=164 second=67 amount=-2 -kerning first=274 second=217 amount=-2 -kerning first=1041 second=949 amount=-1 -kerning first=46 second=79 amount=-1 -kerning first=186 second=229 amount=-1 -kerning first=301 second=119 amount=-4 -kerning first=298 second=359 amount=-1 -kerning first=63 second=920 amount=-2 -kerning first=206 second=371 amount=-1 -kerning first=203 second=1195 amount=-1 -kerning first=323 second=1026 amount=-5 -kerning first=8377 second=234 amount=-1 -kerning first=947 second=950 amount=-2 -kerning first=252 second=230 amount=-1 -kerning first=966 second=964 amount=-1 -kerning first=165 second=242 amount=-1 -kerning first=271 second=947 amount=-4 -kerning first=8218 second=85 amount=-1 -kerning first=184 second=1262 amount=-2 -kerning first=1080 second=1108 amount=-1 -kerning first=1084 second=347 amount=-1 -kerning first=207 second=1069 amount=-1 -kerning first=905 second=361 amount=-1 -kerning first=87 second=1084 amount=-2 -kerning first=910 second=121 amount=-2 -kerning first=1117 second=965 amount=-1 -kerning first=350 second=1202 amount=-1 -kerning first=353 second=373 amount=-1 -kerning first=944 second=1028 amount=-2 -kerning first=948 second=288 amount=-2 -kerning first=250 second=1263 amount=-1 -kerning first=973 second=220 amount=-2 -kerning first=8220 second=260 amount=-3 -kerning first=1049 second=1176 amount=-1 -kerning first=1062 second=362 amount=-1 -kerning first=191 second=332 amount=-2 -kerning first=306 second=244 amount=-1 -kerning first=74 second=106 amount=1 -kerning first=916 second=71 amount=-2 -kerning first=91 second=962 amount=-1 -kerning first=1174 second=221 amount=-2 -kerning first=952 second=233 amount=-1 -kerning first=1223 second=363 amount=-1 -kerning first=1210 second=1177 amount=-1 -kerning first=380 second=245 amount=-1 -kerning first=280 second=949 amount=-1 -kerning first=8225 second=210 amount=-2 -kerning first=55 second=119 amount=-4 -kerning first=1051 second=8211 amount=-2 -kerning first=52 second=359 amount=-1 -kerning first=192 second=963 amount=-1 -kerning first=195 second=271 amount=-1 -kerning first=72 second=1026 amount=-5 -kerning first=75 second=286 amount=-3 -kerning first=333 second=1090 amount=-1 -kerning first=238 second=346 amount=-1 -kerning first=1219 second=8212 amount=-2 -kerning first=1224 second=1059 amount=-2 -kerning first=258 second=964 amount=-3 -kerning first=266 second=45 amount=-1 -kerning first=175 second=287 amount=-1 -kerning first=8226 second=365 amount=-1 -kerning first=314 second=347 amount=-1 -kerning first=310 second=1108 amount=-2 -kerning first=343 second=46 amount=-3 -kerning first=99 second=373 amount=-1 -kerning first=1171 second=8250 amount=-1 -kerning first=239 second=1028 amount=-2 -kerning first=958 second=336 amount=-2 -kerning first=179 second=232 amount=-1 -kerning first=287 second=1176 amount=-1 -kerning first=8224 second=8217 amount=-3 -kerning first=8230 second=1063 amount=-3 -kerning first=60 second=244 amount=-1 -kerning first=200 second=374 amount=-5 -kerning first=318 second=289 amount=-1 -kerning first=1103 second=337 amount=-1 -kerning first=344 second=221 amount=-2 -kerning first=934 second=351 amount=-1 -kerning first=363 second=1177 amount=-1 -kerning first=126 second=245 amount=-1 -kerning first=38 second=949 amount=-1 -kerning first=41 second=257 amount=-1 -kerning first=1044 second=210 amount=-1 -kerning first=8260 second=941 amount=-1 -kerning first=207 second=84 amount=-5 -kerning first=8366 second=1241 amount=-1 -kerning first=8372 second=187 amount=-1 -kerning first=84 second=334 amount=-1 -kerning first=936 second=1035 amount=-5 -kerning first=1202 second=211 amount=-1 -kerning first=367 second=1059 amount=-2 -kerning first=266 second=8249 amount=-1 -kerning first=276 second=85 amount=-2 -kerning first=1046 second=365 amount=-1 -kerning first=185 second=335 amount=-1 -kerning first=188 second=97 amount=-1 -kerning first=62 second=1108 amount=-1 -kerning first=65 second=347 amount=-1 -kerning first=1118 second=224 amount=-1 -kerning first=251 second=336 amount=-2 -kerning first=374 second=248 amount=-4 -kerning first=971 second=171 amount=-3 -kerning first=164 second=350 amount=-1 -kerning first=43 second=1176 amount=-1 -kerning first=46 second=362 amount=-1 -kerning first=1041 second=8217 amount=-3 -kerning first=186 second=966 amount=-1 -kerning first=189 second=275 amount=-1 -kerning first=69 second=289 amount=-1 -kerning first=330 second=337 amount=-1 -kerning first=904 second=940 amount=-1 -kerning first=92 second=221 amount=-5 -kerning first=947 second=8218 amount=-2 -kerning first=969 second=1078 amount=-1 -kerning first=168 second=290 amount=-2 -kerning first=8218 second=368 amount=-1 -kerning first=47 second=1051 amount=-4 -kerning first=44 second=8211 amount=-1 -kerning first=1064 second=250 amount=-1 -kerning first=305 second=352 amount=-1 -kerning first=73 second=234 amount=-1 -kerning first=1090 second=1241 amount=-1 -kerning first=1096 second=187 amount=-1 -kerning first=915 second=199 amount=-2 -kerning first=93 second=376 amount=-5 -kerning first=1168 second=1079 amount=-1 -kerning first=1176 second=89 amount=-5 -kerning first=236 second=291 amount=-1 -kerning first=948 second=1098 amount=-3 -kerning first=951 second=339 amount=-1 -kerning first=113 second=1059 amount=-2 -kerning first=954 second=101 amount=-2 -kerning first=376 second=1117 amount=-3 -kerning first=382 second=113 amount=-1 -kerning first=1027 second=263 amount=-1 -kerning first=172 second=235 amount=-1 -kerning first=282 second=365 amount=-1 -kerning first=338 second=224 amount=-1 -kerning first=916 second=354 amount=-5 -kerning first=91 second=8250 amount=-1 -kerning first=357 second=1184 amount=-5 -kerning first=952 second=970 amount=-1 -kerning first=955 second=279 amount=-1 -kerning first=120 second=248 amount=-2 -kerning first=1035 second=213 amount=-2 -kerning first=280 second=8217 amount=-3 -kerning first=8240 second=253 amount=-1 -kerning first=1073 second=115 amount=-1 -kerning first=201 second=87 amount=-5 -kerning first=78 second=337 amount=-1 -kerning first=221 second=249 amount=-2 -kerning first=1299 second=356 amount=-5 -kerning first=178 second=338 amount=-2 -kerning first=182 second=100 amount=-1 -kerning first=289 second=941 amount=-1 -kerning first=294 second=250 amount=-1 -kerning first=59 second=352 amount=-1 -kerning first=202 second=262 amount=-2 -kerning first=317 second=1241 amount=-1 -kerning first=322 second=187 amount=-1 -kerning first=346 second=89 amount=-2 -kerning first=105 second=211 amount=-2 -kerning first=242 second=1098 amount=-1 -kerning first=161 second=113 amount=-1 -kerning first=125 second=353 amount=-1 -kerning first=267 second=955 amount=-1 -kerning first=40 second=365 amount=-1 +kerning first=1034 second=913 amount=-1 +kerning first=1034 second=916 amount=-1 +kerning first=1034 second=923 amount=-1 +kerning first=1034 second=932 amount=-5 +kerning first=1034 second=933 amount=-5 +kerning first=1034 second=935 amount=-2 +kerning first=1034 second=939 amount=-5 +kerning first=1034 second=947 amount=-1 +kerning first=1034 second=957 amount=-1 +kerning first=1034 second=964 amount=-2 +kerning first=1034 second=1026 amount=-5 +kerning first=1034 second=1035 amount=-5 +kerning first=1034 second=1040 amount=-1 +kerning first=1034 second=1046 amount=-2 +kerning first=1034 second=1058 amount=-5 +kerning first=1034 second=1061 amount=-2 +kerning first=1034 second=1063 amount=-1 +kerning first=1034 second=1066 amount=-5 +kerning first=1034 second=1071 amount=-1 +kerning first=1034 second=1090 amount=-2 +kerning first=1034 second=1098 amount=-2 +kerning first=1034 second=1174 amount=-2 +kerning first=1034 second=1184 amount=-5 +kerning first=1034 second=1185 amount=-2 +kerning first=1034 second=1198 amount=-5 +kerning first=1034 second=1199 amount=-1 +kerning first=1034 second=1202 amount=-2 +kerning first=1034 second=8216 amount=-2 +kerning first=1034 second=8217 amount=-2 +kerning first=1034 second=8220 amount=-2 kerning first=1034 second=8221 amount=-2 -kerning first=1037 second=1066 amount=-5 -kerning first=206 second=212 amount=-2 -kerning first=326 second=102 amount=-1 -kerning first=8370 second=283 amount=-1 -kerning first=901 second=252 amount=-1 -kerning first=86 second=224 amount=-3 -kerning first=1103 second=1256 amount=-2 -kerning first=223 second=1118 amount=-1 -kerning first=103 second=1184 amount=-5 -kerning first=1206 second=79 amount=-1 -kerning first=249 second=279 amount=-1 -kerning first=38 second=8217 amount=-3 -kerning first=1048 second=253 amount=-1 -kerning first=299 second=355 amount=-1 -kerning first=302 second=115 amount=-1 -kerning first=204 second=1185 amount=-3 -kerning first=207 second=367 amount=-1 -kerning first=8378 second=230 amount=-1 -kerning first=84 second=1220 amount=-2 -kerning first=1202 second=945 amount=-1 -kerning first=253 second=226 amount=-1 -kerning first=276 second=368 amount=-2 -kerning first=48 second=250 amount=-1 -kerning first=205 second=8220 amount=-3 -kerning first=906 second=357 amount=-1 -kerning first=88 second=1079 amount=-2 -kerning first=94 second=89 amount=-5 -kerning first=1169 second=269 amount=-1 -kerning first=354 second=369 amount=-2 -kerning first=274 second=8221 amount=-3 -kerning first=8221 second=256 amount=-3 -kerning first=1066 second=118 amount=-1 -kerning first=75 second=102 amount=-2 -kerning first=1095 second=283 amount=-1 -kerning first=215 second=252 amount=-1 -kerning first=330 second=1256 amount=-2 -kerning first=333 second=382 amount=-1 -kerning first=908 second=1044 amount=-1 -kerning first=95 second=266 amount=-2 -kerning first=98 second=39 amount=-1 -kerning first=361 second=79 amount=-2 -kerning first=1224 second=359 amount=-1 -kerning first=1026 second=371 amount=-1 -kerning first=175 second=103 amount=-1 -kerning first=53 second=355 amount=-1 -kerning first=56 second=115 amount=-1 -kerning first=196 second=267 amount=-1 -kerning first=1099 second=230 amount=-1 -kerning first=923 second=242 amount=-1 -kerning first=1171 second=947 amount=-4 -kerning first=1176 second=372 amount=-5 -kerning first=236 second=1101 amount=-1 -kerning first=951 second=1262 amount=-2 -kerning first=1027 second=1069 amount=-1 -kerning first=1037 second=81 amount=-2 -kerning first=172 second=972 amount=-1 -kerning first=176 second=281 amount=-1 -kerning first=8230 second=361 amount=-1 -kerning first=1071 second=243 amount=-1 -kerning first=80 second=227 amount=-1 -kerning first=223 second=117 amount=-1 -kerning first=341 second=269 amount=-1 -kerning first=100 second=369 amount=-1 -kerning first=240 second=973 amount=-1 -kerning first=960 second=332 amount=-2 -kerning first=35 second=1066 amount=-5 +kerning first=1036 second=38 amount=-2 +kerning first=1036 second=45 amount=-4 +kerning first=1036 second=63 amount=-2 +kerning first=1036 second=67 amount=-3 +kerning first=1036 second=71 amount=-3 +kerning first=1036 second=74 amount=-1 +kerning first=1036 second=79 amount=-3 +kerning first=1036 second=81 amount=-3 +kerning first=1036 second=83 amount=-1 +kerning first=1036 second=97 amount=-1 +kerning first=1036 second=99 amount=-2 +kerning first=1036 second=100 amount=-2 +kerning first=1036 second=101 amount=-2 +kerning first=1036 second=102 amount=-2 +kerning first=1036 second=103 amount=-1 +kerning first=1036 second=111 amount=-2 +kerning first=1036 second=113 amount=-2 +kerning first=1036 second=116 amount=-1 +kerning first=1036 second=117 amount=-1 +kerning first=1036 second=118 amount=-3 +kerning first=1036 second=119 amount=-3 +kerning first=1036 second=121 amount=-2 +kerning first=1036 second=171 amount=-3 +kerning first=1036 second=173 amount=-4 +kerning first=1036 second=187 amount=-2 +kerning first=1036 second=199 amount=-3 +kerning first=1036 second=210 amount=-3 +kerning first=1036 second=211 amount=-3 +kerning first=1036 second=212 amount=-3 +kerning first=1036 second=213 amount=-3 +kerning first=1036 second=214 amount=-3 +kerning first=1036 second=216 amount=-3 +kerning first=1036 second=224 amount=-1 +kerning first=1036 second=225 amount=-1 +kerning first=1036 second=226 amount=-1 +kerning first=1036 second=227 amount=-1 +kerning first=1036 second=228 amount=-1 +kerning first=1036 second=229 amount=-1 +kerning first=1036 second=230 amount=-1 +kerning first=1036 second=231 amount=-2 +kerning first=1036 second=232 amount=-2 +kerning first=1036 second=233 amount=-2 +kerning first=1036 second=234 amount=-2 +kerning first=1036 second=235 amount=-2 +kerning first=1036 second=240 amount=-2 +kerning first=1036 second=242 amount=-2 +kerning first=1036 second=243 amount=-2 +kerning first=1036 second=244 amount=-2 +kerning first=1036 second=245 amount=-2 +kerning first=1036 second=246 amount=-2 +kerning first=1036 second=248 amount=-2 +kerning first=1036 second=249 amount=-1 +kerning first=1036 second=250 amount=-1 +kerning first=1036 second=251 amount=-1 +kerning first=1036 second=252 amount=-1 +kerning first=1036 second=253 amount=-2 +kerning first=1036 second=257 amount=-1 +kerning first=1036 second=259 amount=-1 +kerning first=1036 second=261 amount=-1 +kerning first=1036 second=262 amount=-3 +kerning first=1036 second=263 amount=-2 +kerning first=1036 second=266 amount=-3 +kerning first=1036 second=267 amount=-2 +kerning first=1036 second=268 amount=-3 +kerning first=1036 second=269 amount=-2 +kerning first=1036 second=271 amount=-2 +kerning first=1036 second=273 amount=-2 +kerning first=1036 second=275 amount=-2 +kerning first=1036 second=277 amount=-2 +kerning first=1036 second=279 amount=-2 +kerning first=1036 second=281 amount=-2 +kerning first=1036 second=283 amount=-2 +kerning first=1036 second=286 amount=-3 +kerning first=1036 second=287 amount=-1 +kerning first=1036 second=288 amount=-3 +kerning first=1036 second=289 amount=-1 +kerning first=1036 second=290 amount=-3 +kerning first=1036 second=291 amount=-1 +kerning first=1036 second=332 amount=-3 +kerning first=1036 second=333 amount=-2 +kerning first=1036 second=334 amount=-3 +kerning first=1036 second=335 amount=-2 +kerning first=1036 second=336 amount=-3 +kerning first=1036 second=337 amount=-2 +kerning first=1036 second=338 amount=-3 +kerning first=1036 second=339 amount=-2 +kerning first=1036 second=346 amount=-1 +kerning first=1036 second=350 amount=-1 +kerning first=1036 second=352 amount=-1 +kerning first=1036 second=355 amount=-1 +kerning first=1036 second=357 amount=-1 +kerning first=1036 second=359 amount=-1 +kerning first=1036 second=361 amount=-1 +kerning first=1036 second=363 amount=-1 +kerning first=1036 second=365 amount=-1 +kerning first=1036 second=367 amount=-1 +kerning first=1036 second=369 amount=-1 +kerning first=1036 second=371 amount=-1 +kerning first=1036 second=373 amount=-3 +kerning first=1036 second=375 amount=-2 +kerning first=1036 second=920 amount=-3 +kerning first=1036 second=927 amount=-3 +kerning first=1036 second=940 amount=-2 +kerning first=1036 second=941 amount=-2 +kerning first=1036 second=945 amount=-2 +kerning first=1036 second=947 amount=-3 +kerning first=1036 second=949 amount=-2 +kerning first=1036 second=957 amount=-3 +kerning first=1036 second=959 amount=-2 +kerning first=1036 second=962 amount=-2 +kerning first=1036 second=963 amount=-2 +kerning first=1036 second=964 amount=-4 +kerning first=1036 second=965 amount=-1 +kerning first=1036 second=966 amount=-2 +kerning first=1036 second=968 amount=-1 +kerning first=1036 second=972 amount=-2 +kerning first=1036 second=973 amount=-1 +kerning first=1036 second=1028 amount=-3 +kerning first=1036 second=1029 amount=-1 +kerning first=1036 second=1032 amount=-1 +kerning first=1036 second=1054 amount=-3 +kerning first=1036 second=1057 amount=-3 +kerning first=1036 second=1069 amount=-2 +kerning first=1036 second=1072 amount=-1 +kerning first=1036 second=1077 amount=-2 +kerning first=1036 second=1079 amount=-1 +kerning first=1036 second=1086 amount=-2 +kerning first=1036 second=1089 amount=-2 +kerning first=1036 second=1090 amount=-4 +kerning first=1036 second=1091 amount=-2 +kerning first=1036 second=1092 amount=-2 +kerning first=1036 second=1098 amount=-4 +kerning first=1036 second=1101 amount=-1 +kerning first=1036 second=1104 amount=-2 +kerning first=1036 second=1105 amount=-2 +kerning first=1036 second=1108 amount=-2 +kerning first=1036 second=1118 amount=-2 +kerning first=1036 second=1176 amount=-2 +kerning first=1036 second=1177 amount=-1 +kerning first=1036 second=1185 amount=-4 +kerning first=1036 second=1194 amount=-3 +kerning first=1036 second=1195 amount=-2 +kerning first=1036 second=1199 amount=-3 +kerning first=1036 second=1240 amount=-3 +kerning first=1036 second=1241 amount=-2 +kerning first=1036 second=1256 amount=-3 +kerning first=1036 second=1257 amount=-2 +kerning first=1036 second=1263 amount=-2 +kerning first=1036 second=8211 amount=-4 +kerning first=1036 second=8212 amount=-4 +kerning first=1036 second=8249 amount=-3 +kerning first=1036 second=8250 amount=-2 +kerning first=1038 second=44 amount=-1 +kerning first=1038 second=46 amount=-1 +kerning first=1038 second=65 amount=-2 +kerning first=1038 second=193 amount=-2 +kerning first=1038 second=194 amount=-2 +kerning first=1038 second=196 amount=-2 +kerning first=1038 second=197 amount=-2 +kerning first=1038 second=198 amount=-2 kerning first=1038 second=256 amount=-2 -kerning first=180 second=228 amount=-1 -kerning first=296 second=118 amount=-4 -kerning first=61 second=240 amount=-1 -kerning first=198 second=1194 amount=-2 -kerning first=201 second=370 amount=-2 -kerning first=321 second=283 amount=-1 -kerning first=8366 second=233 amount=-1 -kerning first=78 second=1256 amount=-2 -kerning first=221 second=1044 amount=-5 -kerning first=98 second=8222 amount=-1 -kerning first=1185 second=949 amount=-2 -kerning first=247 second=229 amount=-1 -kerning first=367 second=359 amount=-1 -kerning first=964 second=271 amount=-1 -kerning first=124 second=920 amount=-2 -kerning first=42 second=253 amount=-1 -kerning first=178 second=1257 amount=-1 -kerning first=325 second=230 amount=-1 -kerning first=900 second=360 amount=-2 -kerning first=1118 second=45 amount=-2 -kerning first=346 second=372 amount=-2 -kerning first=942 second=287 amount=-1 -kerning first=105 second=945 amount=-1 -kerning first=968 second=219 amount=-2 -kerning first=1051 second=121 amount=-1 -kerning first=301 second=243 amount=-1 -kerning first=1083 second=288 amount=-2 -kerning first=323 second=1263 amount=-1 -kerning first=8377 second=336 amount=-2 -kerning first=89 second=269 amount=-4 -kerning first=1119 second=220 amount=-2 -kerning first=946 second=232 amount=-1 -kerning first=1206 second=362 amount=-1 -kerning first=252 second=332 amount=-2 -kerning first=375 second=244 amount=-1 -kerning first=966 second=1203 amount=-2 -kerning first=168 second=106 amount=1 -kerning first=50 second=118 amount=-4 -kerning first=1064 second=71 amount=-2 -kerning first=70 second=283 amount=-1 -kerning first=1090 second=233 amount=-1 -kerning first=910 second=245 amount=-4 -kerning first=93 second=217 amount=-2 -kerning first=1168 second=375 amount=-1 -kerning first=356 second=257 amount=-2 -kerning first=113 second=359 amount=-1 -kerning first=1202 second=8211 amount=-2 -kerning first=253 second=963 amount=-1 -kerning first=256 second=271 amount=-1 -kerning first=1027 second=84 amount=-5 -kerning first=166 second=1026 amount=-5 -kerning first=169 second=286 amount=-2 -kerning first=1062 second=934 amount=-2 -kerning first=194 second=218 amount=-2 -kerning first=1065 second=246 amount=-1 -kerning first=306 second=346 amount=-1 -kerning first=74 second=230 amount=-1 -kerning first=214 second=360 amount=-2 -kerning first=211 second=1174 amount=-3 -kerning first=338 second=45 amount=-2 -kerning first=91 second=947 amount=-4 -kerning first=94 second=372 amount=-5 -kerning first=1118 second=8249 amount=-3 -kerning first=237 second=287 amount=-1 -kerning first=952 second=335 amount=-1 -kerning first=955 second=97 amount=-1 -kerning first=260 second=219 amount=-2 -kerning first=377 second=1108 amount=-1 -kerning first=35 second=81 amount=-2 -kerning first=1035 second=34 amount=-3 -kerning first=174 second=231 amount=-1 -kerning first=55 second=243 amount=-1 -kerning first=1069 second=196 amount=-2 -kerning first=195 second=373 amount=-4 -kerning first=313 second=288 amount=-1 -kerning first=72 second=1263 amount=-1 -kerning first=358 second=1176 amount=-1 -kerning first=361 second=362 amount=-2 -kerning first=961 second=47 amount=-1 -kerning first=956 second=275 amount=-1 -kerning first=121 second=244 amount=-1 -kerning first=171 second=1298 amount=-1 -kerning first=294 second=71 amount=-2 -kerning first=8226 second=940 amount=-1 -kerning first=1074 second=111 amount=-1 -kerning first=202 second=83 amount=-1 -kerning first=317 second=233 amount=-1 -kerning first=931 second=290 amount=-2 -kerning first=102 second=257 amount=-1 -kerning first=1186 second=210 amount=-1 -kerning first=362 second=1051 amount=-1 -kerning first=270 second=84 amount=-2 -kerning first=1037 second=364 amount=-2 -kerning first=179 second=334 amount=-2 -kerning first=176 second=1090 amount=-3 -kerning first=60 second=346 amount=-1 -kerning first=1071 second=1035 amount=-5 -kerning first=8365 second=339 amount=-1 -kerning first=86 second=45 amount=-2 -kerning first=8370 second=101 amount=-1 -kerning first=80 second=964 amount=-3 -kerning first=338 second=8249 amount=-3 -kerning first=249 second=97 amount=-1 -kerning first=123 second=1108 amount=-1 -kerning first=126 second=347 amount=-1 -kerning first=271 second=259 amount=-1 -kerning first=275 second=34 amount=-1 -kerning first=38 second=1175 amount=-2 -kerning first=41 second=361 amount=-1 -kerning first=1035 second=8216 amount=-3 -kerning first=44 second=121 amount=-1 -kerning first=180 second=965 amount=-1 -kerning first=8260 second=1118 amount=-1 -kerning first=61 second=1028 amount=-2 -kerning first=64 second=288 amount=-2 -kerning first=8366 second=970 amount=-1 -kerning first=8372 second=279 amount=-1 -kerning first=902 second=248 amount=-1 -kerning first=1117 second=171 amount=-3 -kerning first=350 second=260 amount=-1 -kerning first=247 second=966 amount=-1 -kerning first=250 second=275 amount=-1 -kerning first=163 second=289 amount=-1 -kerning first=48 second=71 amount=-2 -kerning first=1046 second=940 amount=-2 -kerning first=1049 second=249 amount=-1 -kerning first=188 second=221 amount=-5 -kerning first=300 second=351 amount=-1 -kerning first=303 second=111 amount=-1 -kerning first=205 second=1177 amount=-1 -kerning first=88 second=375 amount=-1 -kerning first=1114 second=1078 amount=-2 -kerning first=354 second=210 amount=-1 -kerning first=105 second=8211 amount=-2 -kerning first=1203 second=941 amount=-1 -kerning first=1210 second=250 amount=-1 -kerning first=374 second=352 amount=-1 -kerning first=971 second=262 amount=-2 -kerning first=167 second=234 amount=-1 -kerning first=49 second=246 amount=-1 -kerning first=1063 second=199 amount=-2 -kerning first=189 second=376 amount=-5 -kerning first=301 second=1035 amount=-5 -kerning first=304 second=291 amount=-1 -kerning first=1083 second=1098 amount=-3 -kerning first=1087 second=339 amount=-1 -kerning first=209 second=1059 amount=-2 -kerning first=206 second=8212 amount=-2 -kerning first=1095 second=101 amount=-1 -kerning first=912 second=113 amount=-1 -kerning first=86 second=8249 amount=-3 -kerning first=95 second=85 amount=-2 -kerning first=89 second=1074 amount=-3 -kerning first=1170 second=263 amount=-1 -kerning first=1026 second=212 amount=-2 -kerning first=275 second=8216 amount=-1 -kerning first=8222 second=252 amount=-1 -kerning first=1064 second=354 amount=-5 -kerning first=196 second=86 amount=-6 -kerning first=73 second=336 amount=-2 -kerning first=1096 second=279 amount=-1 -kerning first=923 second=63 amount=-5 -kerning first=1176 second=213 amount=-2 -kerning first=353 second=8217 amount=-1 -kerning first=954 second=225 amount=-1 -kerning first=1263 second=115 amount=-1 -kerning first=262 second=87 amount=-1 -kerning first=973 second=1185 amount=-3 -kerning first=1027 second=367 amount=-1 -kerning first=172 second=337 amount=-1 -kerning first=176 second=99 amount=-1 -kerning first=282 second=940 amount=-1 -kerning first=287 second=249 amount=-1 -kerning first=57 second=111 amount=-1 -kerning first=54 second=351 amount=-1 -kerning first=197 second=261 amount=-1 -kerning first=194 second=953 amount=-1 -kerning first=1065 second=1038 amount=-1 -kerning first=220 second=198 amount=-2 -kerning first=335 second=1078 amount=-2 -kerning first=100 second=210 amount=-2 -kerning first=240 second=338 amount=-2 -kerning first=363 second=250 amount=-1 -kerning first=35 second=364 amount=-2 -kerning first=174 second=968 amount=-1 -kerning first=177 second=277 amount=-1 -kerning first=291 second=199 amount=-2 -kerning first=8240 second=357 amount=-1 -kerning first=8260 second=117 amount=-1 -kerning first=55 second=1035 amount=-5 -kerning first=58 second=291 amount=-1 -kerning first=201 second=211 amount=-2 -kerning first=316 second=339 amount=-1 -kerning first=321 second=101 amount=-1 -kerning first=221 second=353 amount=-3 -kerning first=339 second=955 amount=-1 -kerning first=1178 second=1066 amount=-2 -kerning first=1039 second=252 amount=-1 -kerning first=182 second=224 amount=-1 -kerning first=294 second=354 amount=-5 -kerning first=289 second=1118 amount=-1 -kerning first=199 second=1184 amount=-1 -kerning first=202 second=366 amount=-2 -kerning first=8249 second=1044 amount=-1 -kerning first=322 second=279 amount=-1 -kerning first=8369 second=229 amount=-1 -kerning first=317 second=970 amount=-1 -kerning first=228 second=63 amount=-2 -kerning first=942 second=103 amount=-1 -kerning first=99 second=8217 amount=-1 -kerning first=371 second=115 amount=-1 -kerning first=965 second=267 amount=-1 -kerning first=43 second=249 amount=-1 -kerning first=40 second=940 amount=-1 -kerning first=8370 second=1240 amount=-2 -kerning first=8365 second=1262 amount=-2 -kerning first=901 second=356 amount=-5 -kerning first=904 second=116 amount=-1 -kerning first=83 second=1078 amount=-1 -kerning first=162 second=1241 amount=-1 -kerning first=165 second=187 amount=-1 -kerning first=47 second=199 amount=-1 -kerning first=1048 second=357 amount=-1 -kerning first=184 second=1079 amount=-1 -kerning first=190 second=89 amount=-5 -kerning first=64 second=1098 amount=-3 -kerning first=70 second=101 amount=-1 -kerning first=1080 second=973 amount=-1 -kerning first=8378 second=332 amount=-2 -kerning first=90 second=263 amount=-1 -kerning first=1168 second=216 amount=-2 -kerning first=350 second=1066 amount=-1 -kerning first=948 second=228 amount=-1 -kerning first=1220 second=118 amount=-4 -kerning first=376 second=240 amount=-4 -kerning first=967 second=1194 amount=-2 -kerning first=276 second=943 amount=-1 -kerning first=48 second=354 amount=-5 -kerning first=1065 second=67 amount=-1 -kerning first=191 second=266 amount=-2 -kerning first=194 second=39 amount=-3 -kerning first=906 second=920 amount=-2 -kerning first=94 second=213 amount=-2 -kerning first=1118 second=1195 amount=-1 -kerning first=237 second=103 amount=-1 -kerning first=357 second=253 amount=-1 -kerning first=117 second=115 amount=-1 -kerning first=49 second=1038 amount=-2 -kerning first=195 second=214 amount=-2 -kerning first=304 second=1101 amount=-1 -kerning first=75 second=226 amount=-1 -kerning first=1087 second=1262 amount=-2 -kerning first=1095 second=1240 amount=-2 -kerning first=215 second=356 amount=-5 -kerning first=95 second=368 amount=-2 -kerning first=1170 second=1069 amount=-1 -kerning first=1178 second=81 amount=-1 -kerning first=238 second=281 amount=-1 -kerning first=950 second=1084 amount=-2 -kerning first=175 second=227 amount=-1 -kerning first=289 second=117 amount=-1 -kerning first=196 second=369 amount=-1 -kerning first=310 second=973 amount=-1 -kerning first=8361 second=232 amount=-1 -kerning first=1099 second=332 amount=-2 -kerning first=93 second=8221 amount=-3 -kerning first=96 second=1066 amount=-5 -kerning first=931 second=106 amount=1 -kerning first=365 second=118 amount=-4 -kerning first=954 second=962 amount=-2 -kerning first=122 second=240 amount=-1 -kerning first=37 second=252 amount=-1 -kerning first=172 second=1256 amount=-2 -kerning first=203 second=79 amount=-2 -kerning first=318 second=229 amount=-1 -kerning first=1103 second=271 amount=-1 -kerning first=338 second=1195 amount=-1 -kerning first=926 second=1026 amount=-5 -kerning first=934 second=286 amount=-2 -kerning first=103 second=253 amount=-1 -kerning first=240 second=1257 amount=-1 -kerning first=963 second=218 amount=-2 -kerning first=296 second=242 amount=-1 -kerning first=58 second=1101 amount=-1 -kerning first=201 second=945 amount=-1 -kerning first=316 second=1262 amount=-2 -kerning first=321 second=1240 amount=-2 -kerning first=8366 second=335 amount=-1 -kerning first=8372 second=97 amount=-1 -kerning first=84 second=268 amount=-1 -kerning first=964 second=373 amount=-4 -kerning first=42 second=357 amount=-1 -kerning first=185 second=269 amount=-1 -kerning first=62 second=973 amount=-1 -kerning first=1081 second=232 amount=-1 -kerning first=325 second=332 amount=-2 -kerning first=8369 second=966 amount=-1 -kerning first=903 second=244 amount=-1 -kerning first=88 second=216 amount=-3 -kerning first=111 second=118 amount=-1 -kerning first=1210 second=71 amount=-2 -kerning first=374 second=193 amount=-5 -kerning first=971 second=83 amount=-1 -kerning first=164 second=283 amount=-1 -kerning first=49 second=67 amount=-2 -kerning first=1051 second=245 amount=-1 -kerning first=189 second=217 amount=-2 -kerning first=69 second=229 amount=-1 -kerning first=209 second=359 amount=-1 -kerning first=330 second=271 amount=-1 -kerning first=333 second=44 amount=-1 -kerning first=908 second=194 amount=-2 -kerning first=86 second=1195 amount=-1 -kerning first=89 second=371 amount=-2 -kerning first=1170 second=84 amount=-5 -kerning first=946 second=334 amount=-2 -kerning first=943 second=1090 amount=-2 -kerning first=1206 second=934 amount=-2 -kerning first=1219 second=246 amount=-1 -kerning first=255 second=218 amount=-2 -kerning first=372 second=1107 amount=-2 -kerning first=375 second=346 amount=-1 -kerning first=168 second=230 amount=-1 -kerning first=278 second=360 amount=-2 -kerning first=281 second=120 amount=-2 -kerning first=47 second=923 amount=-5 -kerning first=50 second=242 amount=-1 -kerning first=190 second=372 amount=-5 -kerning first=305 second=287 amount=-1 -kerning first=70 second=1240 amount=-2 -kerning first=1090 second=335 amount=-1 -kerning first=1096 second=97 amount=-1 -kerning first=905 second=1108 amount=-1 -kerning first=910 second=347 amount=-3 -kerning first=96 second=81 amount=-2 -kerning first=1176 second=34 amount=-3 -kerning first=236 second=231 amount=-1 -kerning first=1171 second=259 amount=-1 -kerning first=353 second=1175 amount=-1 -kerning first=356 second=361 amount=-2 -kerning first=948 second=965 amount=-1 -kerning first=1256 second=196 amount=-2 -kerning first=256 second=373 amount=-4 -kerning first=376 second=1028 amount=-3 -kerning first=379 second=288 amount=-1 -kerning first=166 second=1263 amount=-1 -kerning first=8224 second=248 amount=-1 -kerning first=311 second=232 amount=-2 -kerning first=74 second=332 amount=-2 -kerning first=1094 second=966 amount=-1 -kerning first=1097 second=275 amount=-1 -kerning first=916 second=289 amount=-1 -kerning first=363 second=71 amount=-2 -kerning first=955 second=221 amount=-5 -kerning first=1298 second=111 amount=-1 -kerning first=174 second=333 amount=-1 -kerning first=195 second=949 amount=-1 -kerning first=198 second=257 amount=-1 -kerning first=8363 second=100 amount=-1 -kerning first=78 second=271 amount=-1 -kerning first=75 second=963 amount=-2 -kerning first=81 second=44 amount=-1 -kerning first=221 second=194 amount=-5 -kerning first=928 second=234 amount=-1 -kerning first=1178 second=364 amount=-1 -kerning first=238 second=1090 amount=-3 -kerning first=956 second=376 amount=-5 -kerning first=121 second=346 amount=-1 -kerning first=1299 second=291 amount=-1 -kerning first=266 second=258 amount=-1 -kerning first=36 second=360 amount=-2 -kerning first=1026 second=8212 amount=-2 -kerning first=178 second=273 amount=-1 -kerning first=182 second=45 amount=-2 -kerning first=175 second=964 amount=-3 -kerning first=59 second=287 amount=-1 -kerning first=1074 second=235 amount=-1 -kerning first=317 second=335 amount=-1 -kerning first=322 second=97 amount=-1 -kerning first=343 second=259 amount=-1 -kerning first=99 second=1175 amount=-1 -kerning first=1176 second=8216 amount=-3 -kerning first=105 second=121 amount=-1 -kerning first=248 second=46 amount=-1 -kerning first=368 second=196 amount=-2 -kerning first=125 second=288 amount=-2 -kerning first=1041 second=248 amount=-1 -kerning first=183 second=220 amount=-2 -kerning first=63 second=232 amount=-1 -kerning first=203 second=362 amount=-2 -kerning first=200 second=1176 amount=-1 -kerning first=318 second=966 amount=-1 -kerning first=323 second=275 amount=-1 -kerning first=8370 second=225 amount=-1 -kerning first=83 second=374 amount=-2 -kerning first=1187 second=940 amount=-1 -kerning first=249 second=221 amount=-5 -kerning first=369 second=351 amount=-1 -kerning first=372 second=111 amount=-3 -kerning first=963 second=953 amount=-1 -kerning first=162 second=233 amount=-1 -kerning first=271 second=363 amount=-1 -kerning first=184 second=375 amount=-1 -kerning first=299 second=290 amount=-2 -kerning first=1080 second=338 amount=-2 -kerning first=201 second=8211 amount=-2 -kerning first=1084 second=100 amount=-1 -kerning first=902 second=352 amount=-1 -kerning first=1117 second=262 amount=-2 -kerning first=944 second=277 amount=-1 -kerning first=250 second=376 amount=-5 -kerning first=373 second=291 amount=-1 -kerning first=273 second=1059 amount=-2 -kerning first=1049 second=353 amount=-1 -kerning first=182 second=8249 amount=-3 -kerning first=1062 second=113 amount=-1 -kerning first=191 second=85 amount=-2 -kerning first=303 second=235 amount=-1 -kerning first=94 second=34 amount=-3 -kerning first=91 second=259 amount=-1 -kerning first=1210 second=354 amount=-5 -kerning first=968 second=1184 amount=-5 -kerning first=971 second=366 amount=-2 -kerning first=167 second=336 amount=-2 -kerning first=280 second=248 amount=-1 -kerning first=49 second=350 amount=-1 -kerning first=1066 second=63 amount=-5 -kerning first=69 second=966 amount=-1 -kerning first=72 second=275 amount=-1 -kerning first=1095 second=225 amount=-1 -kerning first=336 second=87 amount=-2 -kerning first=1170 second=367 amount=-1 -kerning first=1119 second=1185 amount=-3 -kerning first=238 second=99 amount=-1 -kerning first=358 second=249 amount=-1 -kerning first=1219 second=1038 amount=-2 -kerning first=118 second=111 amount=-1 -kerning first=258 second=261 amount=-1 -kerning first=255 second=953 amount=-1 -kerning first=8226 second=116 amount=-1 -kerning first=8222 second=356 amount=-5 -kerning first=53 second=290 amount=-2 -kerning first=196 second=210 amount=-2 -kerning first=310 second=338 amount=-3 -kerning first=314 second=100 amount=-1 -kerning first=915 second=1241 amount=-1 -kerning first=923 second=187 amount=-1 -kerning first=96 second=364 amount=-2 -kerning first=1168 second=8220 amount=-3 -kerning first=236 second=968 amount=-1 -kerning first=239 second=277 amount=-1 -kerning first=951 second=1079 amount=-1 -kerning first=958 second=89 amount=-5 -kerning first=119 second=291 amount=-1 -kerning first=382 second=339 amount=-1 -kerning first=287 second=353 amount=-1 -kerning first=57 second=235 amount=-1 -kerning first=197 second=365 amount=-1 -kerning first=94 second=8216 amount=-3 -kerning first=1184 second=252 amount=-1 -kerning first=363 second=354 amount=-5 -kerning first=960 second=266 amount=-2 -kerning first=963 second=39 amount=-3 -kerning first=260 second=1184 amount=-5 -kerning first=38 second=248 amount=-1 -kerning first=180 second=171 amount=-3 -kerning first=8240 second=920 amount=-2 -kerning first=195 second=8217 amount=-3 -kerning first=321 second=225 amount=-1 -kerning first=339 second=1185 amount=-1 -kerning first=964 second=214 amount=-2 -kerning first=1299 second=1101 amount=-1 -kerning first=1039 second=356 amount=-5 +kerning first=1038 second=258 amount=-2 +kerning first=1038 second=260 amount=-2 +kerning first=1038 second=913 amount=-2 +kerning first=1038 second=916 amount=-2 +kerning first=1038 second=923 amount=-2 +kerning first=1038 second=1033 amount=-1 +kerning first=1038 second=1040 amount=-2 +kerning first=1038 second=1044 amount=-1 +kerning first=1038 second=1051 amount=-1 +kerning first=1038 second=1298 amount=-1 +kerning first=1038 second=8218 amount=-1 +kerning first=1038 second=8222 amount=-1 +kerning first=1038 second=8230 amount=-1 +kerning first=1040 second=34 amount=-3 +kerning first=1040 second=38 amount=-1 +kerning first=1040 second=39 amount=-3 +kerning first=1040 second=45 amount=-2 +kerning first=1040 second=63 amount=-5 +kerning first=1040 second=67 amount=-2 +kerning first=1040 second=71 amount=-2 +kerning first=1040 second=74 amount=-1 +kerning first=1040 second=79 amount=-2 +kerning first=1040 second=81 amount=-2 +kerning first=1040 second=83 amount=-1 +kerning first=1040 second=84 amount=-5 +kerning first=1040 second=85 amount=-2 +kerning first=1040 second=86 amount=-6 +kerning first=1040 second=87 amount=-5 +kerning first=1040 second=89 amount=-5 +kerning first=1040 second=97 amount=-1 +kerning first=1040 second=99 amount=-1 +kerning first=1040 second=100 amount=-1 +kerning first=1040 second=101 amount=-1 +kerning first=1040 second=102 amount=-2 +kerning first=1040 second=103 amount=-1 +kerning first=1040 second=106 amount=1 +kerning first=1040 second=111 amount=-1 +kerning first=1040 second=113 amount=-1 +kerning first=1040 second=115 amount=-1 +kerning first=1040 second=116 amount=-1 +kerning first=1040 second=117 amount=-1 +kerning first=1040 second=118 amount=-4 +kerning first=1040 second=119 amount=-4 +kerning first=1040 second=121 amount=-1 +kerning first=1040 second=171 amount=-3 +kerning first=1040 second=173 amount=-2 +kerning first=1040 second=187 amount=-1 +kerning first=1040 second=199 amount=-2 +kerning first=1040 second=210 amount=-2 +kerning first=1040 second=211 amount=-2 +kerning first=1040 second=212 amount=-2 +kerning first=1040 second=213 amount=-2 +kerning first=1040 second=214 amount=-2 +kerning first=1040 second=216 amount=-2 +kerning first=1040 second=217 amount=-2 +kerning first=1040 second=218 amount=-2 +kerning first=1040 second=219 amount=-2 +kerning first=1040 second=220 amount=-2 +kerning first=1040 second=221 amount=-5 +kerning first=1040 second=224 amount=-1 +kerning first=1040 second=225 amount=-1 +kerning first=1040 second=226 amount=-1 +kerning first=1040 second=227 amount=-1 +kerning first=1040 second=228 amount=-1 +kerning first=1040 second=229 amount=-1 +kerning first=1040 second=230 amount=-1 +kerning first=1040 second=231 amount=-1 +kerning first=1040 second=232 amount=-1 +kerning first=1040 second=233 amount=-1 +kerning first=1040 second=234 amount=-1 +kerning first=1040 second=235 amount=-1 +kerning first=1040 second=240 amount=-1 +kerning first=1040 second=242 amount=-1 +kerning first=1040 second=243 amount=-1 +kerning first=1040 second=244 amount=-1 +kerning first=1040 second=245 amount=-1 +kerning first=1040 second=246 amount=-1 +kerning first=1040 second=248 amount=-1 +kerning first=1040 second=249 amount=-1 +kerning first=1040 second=250 amount=-1 +kerning first=1040 second=251 amount=-1 +kerning first=1040 second=252 amount=-1 +kerning first=1040 second=253 amount=-1 +kerning first=1040 second=257 amount=-1 +kerning first=1040 second=259 amount=-1 +kerning first=1040 second=261 amount=-1 +kerning first=1040 second=262 amount=-2 +kerning first=1040 second=263 amount=-1 +kerning first=1040 second=266 amount=-2 +kerning first=1040 second=267 amount=-1 +kerning first=1040 second=268 amount=-2 +kerning first=1040 second=269 amount=-1 +kerning first=1040 second=271 amount=-1 +kerning first=1040 second=273 amount=-1 +kerning first=1040 second=275 amount=-1 +kerning first=1040 second=277 amount=-1 +kerning first=1040 second=279 amount=-1 +kerning first=1040 second=281 amount=-1 +kerning first=1040 second=283 amount=-1 +kerning first=1040 second=286 amount=-2 +kerning first=1040 second=287 amount=-1 +kerning first=1040 second=288 amount=-2 +kerning first=1040 second=289 amount=-1 +kerning first=1040 second=290 amount=-2 +kerning first=1040 second=291 amount=-1 +kerning first=1040 second=332 amount=-2 +kerning first=1040 second=333 amount=-1 +kerning first=1040 second=334 amount=-2 +kerning first=1040 second=335 amount=-1 +kerning first=1040 second=336 amount=-2 +kerning first=1040 second=337 amount=-1 +kerning first=1040 second=338 amount=-2 +kerning first=1040 second=339 amount=-1 +kerning first=1040 second=346 amount=-1 +kerning first=1040 second=347 amount=-1 +kerning first=1040 second=350 amount=-1 +kerning first=1040 second=351 amount=-1 +kerning first=1040 second=352 amount=-1 +kerning first=1040 second=353 amount=-1 +kerning first=1040 second=354 amount=-5 +kerning first=1040 second=355 amount=-1 +kerning first=1040 second=356 amount=-5 +kerning first=1040 second=357 amount=-1 +kerning first=1040 second=359 amount=-1 +kerning first=1040 second=360 amount=-2 +kerning first=1040 second=361 amount=-1 +kerning first=1040 second=362 amount=-2 +kerning first=1040 second=363 amount=-1 +kerning first=1040 second=364 amount=-2 +kerning first=1040 second=365 amount=-1 +kerning first=1040 second=366 amount=-2 +kerning first=1040 second=367 amount=-1 +kerning first=1040 second=368 amount=-2 +kerning first=1040 second=369 amount=-1 +kerning first=1040 second=370 amount=-2 +kerning first=1040 second=371 amount=-1 +kerning first=1040 second=372 amount=-5 +kerning first=1040 second=373 amount=-4 +kerning first=1040 second=374 amount=-5 +kerning first=1040 second=375 amount=-1 +kerning first=1040 second=376 amount=-5 +kerning first=1040 second=920 amount=-2 +kerning first=1040 second=927 amount=-2 +kerning first=1040 second=932 amount=-5 +kerning first=1040 second=933 amount=-5 +kerning first=1040 second=936 amount=-3 +kerning first=1040 second=939 amount=-5 +kerning first=1040 second=940 amount=-1 +kerning first=1040 second=941 amount=-1 +kerning first=1040 second=943 amount=-1 +kerning first=1040 second=945 amount=-1 +kerning first=1040 second=947 amount=-4 +kerning first=1040 second=949 amount=-1 +kerning first=1040 second=950 amount=-1 +kerning first=1040 second=953 amount=-1 +kerning first=1040 second=957 amount=-4 +kerning first=1040 second=959 amount=-1 +kerning first=1040 second=962 amount=-1 +kerning first=1040 second=963 amount=-1 +kerning first=1040 second=964 amount=-3 +kerning first=1040 second=965 amount=-1 +kerning first=1040 second=966 amount=-1 +kerning first=1040 second=968 amount=-1 +kerning first=1040 second=970 amount=-1 +kerning first=1040 second=972 amount=-1 +kerning first=1040 second=973 amount=-1 +kerning first=1040 second=1026 amount=-5 +kerning first=1040 second=1028 amount=-2 +kerning first=1040 second=1029 amount=-1 +kerning first=1040 second=1032 amount=-1 +kerning first=1040 second=1035 amount=-5 +kerning first=1040 second=1038 amount=-2 +kerning first=1040 second=1054 amount=-2 +kerning first=1040 second=1057 amount=-2 +kerning first=1040 second=1058 amount=-5 +kerning first=1040 second=1059 amount=-2 +kerning first=1040 second=1063 amount=-3 +kerning first=1040 second=1066 amount=-5 +kerning first=1040 second=1069 amount=-1 +kerning first=1040 second=1072 amount=-1 +kerning first=1040 second=1077 amount=-1 +kerning first=1040 second=1079 amount=-1 +kerning first=1040 second=1086 amount=-1 +kerning first=1040 second=1089 amount=-1 +kerning first=1040 second=1090 amount=-3 +kerning first=1040 second=1091 amount=-1 +kerning first=1040 second=1092 amount=-1 +kerning first=1040 second=1098 amount=-3 +kerning first=1040 second=1101 amount=-1 +kerning first=1040 second=1104 amount=-1 +kerning first=1040 second=1105 amount=-1 +kerning first=1040 second=1108 amount=-1 +kerning first=1040 second=1109 amount=-1 +kerning first=1040 second=1112 amount=1 +kerning first=1040 second=1118 amount=-1 +kerning first=1040 second=1176 amount=-1 +kerning first=1040 second=1177 amount=-1 +kerning first=1040 second=1184 amount=-5 +kerning first=1040 second=1185 amount=-3 +kerning first=1040 second=1194 amount=-2 +kerning first=1040 second=1195 amount=-1 +kerning first=1040 second=1198 amount=-5 +kerning first=1040 second=1199 amount=-4 +kerning first=1040 second=1240 amount=-2 +kerning first=1040 second=1241 amount=-1 +kerning first=1040 second=1256 amount=-2 +kerning first=1040 second=1257 amount=-1 +kerning first=1040 second=1262 amount=-2 +kerning first=1040 second=1263 amount=-1 +kerning first=1040 second=8211 amount=-2 +kerning first=1040 second=8212 amount=-2 +kerning first=1040 second=8216 amount=-3 +kerning first=1040 second=8217 amount=-3 +kerning first=1040 second=8220 amount=-3 +kerning first=1040 second=8221 amount=-3 +kerning first=1040 second=8249 amount=-3 +kerning first=1040 second=8250 amount=-1 +kerning first=1041 second=84 amount=-3 +kerning first=1041 second=88 amount=-2 +kerning first=1041 second=354 amount=-3 +kerning first=1041 second=356 amount=-3 +kerning first=1041 second=932 amount=-3 +kerning first=1041 second=935 amount=-2 +kerning first=1041 second=1026 amount=-3 +kerning first=1041 second=1035 amount=-3 +kerning first=1041 second=1046 amount=-2 +kerning first=1041 second=1058 amount=-3 +kerning first=1041 second=1061 amount=-2 +kerning first=1041 second=1063 amount=-1 +kerning first=1041 second=1066 amount=-3 +kerning first=1041 second=1069 amount=1 +kerning first=1041 second=1071 amount=-1 +kerning first=1041 second=1174 amount=-2 +kerning first=1041 second=1176 amount=1 +kerning first=1041 second=1184 amount=-3 +kerning first=1041 second=1202 amount=-2 +kerning first=1042 second=65 amount=-1 +kerning first=1042 second=84 amount=-1 +kerning first=1042 second=86 amount=-1 +kerning first=1042 second=87 amount=-1 +kerning first=1042 second=88 amount=-2 +kerning first=1042 second=89 amount=-2 +kerning first=1042 second=193 amount=-1 +kerning first=1042 second=194 amount=-1 +kerning first=1042 second=196 amount=-1 +kerning first=1042 second=197 amount=-1 +kerning first=1042 second=198 amount=-1 +kerning first=1042 second=221 amount=-2 +kerning first=1042 second=256 amount=-1 +kerning first=1042 second=258 amount=-1 +kerning first=1042 second=260 amount=-1 +kerning first=1042 second=354 amount=-1 +kerning first=1042 second=356 amount=-1 +kerning first=1042 second=372 amount=-1 +kerning first=1042 second=374 amount=-2 +kerning first=1042 second=376 amount=-2 +kerning first=1042 second=913 amount=-1 +kerning first=1042 second=916 amount=-1 +kerning first=1042 second=923 amount=-1 +kerning first=1042 second=932 amount=-1 +kerning first=1042 second=933 amount=-2 +kerning first=1042 second=935 amount=-2 +kerning first=1042 second=939 amount=-2 +kerning first=1042 second=955 amount=-1 +kerning first=1042 second=1026 amount=-1 +kerning first=1042 second=1035 amount=-1 +kerning first=1042 second=1040 amount=-1 +kerning first=1042 second=1046 amount=-2 +kerning first=1042 second=1058 amount=-1 +kerning first=1042 second=1061 amount=-2 +kerning first=1042 second=1066 amount=-1 +kerning first=1042 second=1174 amount=-2 +kerning first=1042 second=1184 amount=-1 +kerning first=1042 second=1198 amount=-2 +kerning first=1042 second=1202 amount=-2 +kerning first=1043 second=934 amount=-3 +kerning first=1043 second=1033 amount=-5 +kerning first=1043 second=1044 amount=-5 +kerning first=1043 second=1051 amount=-5 +kerning first=1043 second=1060 amount=-3 +kerning first=1043 second=1298 amount=-5 +kerning first=1044 second=34 amount=-2 +kerning first=1044 second=39 amount=-2 +kerning first=1044 second=45 amount=-2 +kerning first=1044 second=63 amount=-2 +kerning first=1044 second=67 amount=-1 +kerning first=1044 second=71 amount=-1 +kerning first=1044 second=79 amount=-1 +kerning first=1044 second=81 amount=-1 +kerning first=1044 second=84 amount=-2 +kerning first=1044 second=85 amount=-1 +kerning first=1044 second=89 amount=-2 +kerning first=1044 second=99 amount=-1 +kerning first=1044 second=100 amount=-1 +kerning first=1044 second=101 amount=-1 +kerning first=1044 second=106 amount=7 +kerning first=1044 second=111 amount=-1 +kerning first=1044 second=113 amount=-1 +kerning first=1044 second=118 amount=-2 +kerning first=1044 second=119 amount=-2 +kerning first=1044 second=171 amount=-1 +kerning first=1044 second=173 amount=-2 +kerning first=1044 second=199 amount=-1 +kerning first=1044 second=210 amount=-1 +kerning first=1044 second=211 amount=-1 +kerning first=1044 second=212 amount=-1 +kerning first=1044 second=213 amount=-1 +kerning first=1044 second=214 amount=-1 +kerning first=1044 second=216 amount=-1 +kerning first=1044 second=217 amount=-1 +kerning first=1044 second=218 amount=-1 +kerning first=1044 second=219 amount=-1 +kerning first=1044 second=220 amount=-1 +kerning first=1044 second=221 amount=-2 +kerning first=1044 second=231 amount=-1 +kerning first=1044 second=232 amount=-1 +kerning first=1044 second=233 amount=-1 +kerning first=1044 second=234 amount=-1 +kerning first=1044 second=235 amount=-1 +kerning first=1044 second=240 amount=-1 +kerning first=1044 second=242 amount=-1 +kerning first=1044 second=243 amount=-1 +kerning first=1044 second=244 amount=-1 +kerning first=1044 second=245 amount=-1 +kerning first=1044 second=246 amount=-1 +kerning first=1044 second=248 amount=-1 +kerning first=1044 second=262 amount=-1 +kerning first=1044 second=263 amount=-1 +kerning first=1044 second=266 amount=-1 +kerning first=1044 second=267 amount=-1 +kerning first=1044 second=268 amount=-1 +kerning first=1044 second=269 amount=-1 +kerning first=1044 second=271 amount=-1 +kerning first=1044 second=273 amount=-1 +kerning first=1044 second=275 amount=-1 +kerning first=1044 second=277 amount=-1 +kerning first=1044 second=279 amount=-1 +kerning first=1044 second=281 amount=-1 +kerning first=1044 second=283 amount=-1 +kerning first=1044 second=286 amount=-1 +kerning first=1044 second=288 amount=-1 +kerning first=1044 second=290 amount=-1 +kerning first=1044 second=332 amount=-1 +kerning first=1044 second=333 amount=-1 +kerning first=1044 second=334 amount=-1 +kerning first=1044 second=335 amount=-1 +kerning first=1044 second=336 amount=-1 +kerning first=1044 second=337 amount=-1 +kerning first=1044 second=338 amount=-1 +kerning first=1044 second=339 amount=-1 +kerning first=1044 second=354 amount=-2 +kerning first=1044 second=356 amount=-2 +kerning first=1044 second=360 amount=-1 +kerning first=1044 second=362 amount=-1 +kerning first=1044 second=364 amount=-1 +kerning first=1044 second=366 amount=-1 +kerning first=1044 second=368 amount=-1 +kerning first=1044 second=370 amount=-1 +kerning first=1044 second=373 amount=-2 +kerning first=1044 second=374 amount=-2 +kerning first=1044 second=376 amount=-2 +kerning first=1044 second=920 amount=-1 +kerning first=1044 second=927 amount=-1 +kerning first=1044 second=932 amount=-2 +kerning first=1044 second=933 amount=-2 +kerning first=1044 second=934 amount=-2 +kerning first=1044 second=939 amount=-2 +kerning first=1044 second=940 amount=-1 +kerning first=1044 second=941 amount=-1 +kerning first=1044 second=945 amount=-1 +kerning first=1044 second=947 amount=-2 +kerning first=1044 second=949 amount=-1 +kerning first=1044 second=957 amount=-2 +kerning first=1044 second=959 amount=-1 +kerning first=1044 second=962 amount=-1 +kerning first=1044 second=963 amount=-1 +kerning first=1044 second=964 amount=-2 +kerning first=1044 second=966 amount=-1 +kerning first=1044 second=972 amount=-1 +kerning first=1044 second=1026 amount=-2 +kerning first=1044 second=1028 amount=-1 +kerning first=1044 second=1035 amount=-2 +kerning first=1044 second=1038 amount=-1 +kerning first=1044 second=1054 amount=-1 +kerning first=1044 second=1057 amount=-1 +kerning first=1044 second=1058 amount=-2 +kerning first=1044 second=1059 amount=-1 +kerning first=1044 second=1060 amount=-2 +kerning first=1044 second=1063 amount=-2 +kerning first=1044 second=1066 amount=-2 +kerning first=1044 second=1077 amount=-1 +kerning first=1044 second=1086 amount=-1 +kerning first=1044 second=1089 amount=-1 +kerning first=1044 second=1090 amount=-2 +kerning first=1044 second=1092 amount=-1 +kerning first=1044 second=1098 amount=-2 +kerning first=1044 second=1104 amount=-1 +kerning first=1044 second=1105 amount=-1 +kerning first=1044 second=1108 amount=-1 +kerning first=1044 second=1112 amount=7 +kerning first=1044 second=1184 amount=-2 +kerning first=1044 second=1185 amount=-2 +kerning first=1044 second=1194 amount=-1 +kerning first=1044 second=1195 amount=-1 +kerning first=1044 second=1198 amount=-2 +kerning first=1044 second=1199 amount=-2 +kerning first=1044 second=1240 amount=-1 +kerning first=1044 second=1241 amount=-1 +kerning first=1044 second=1256 amount=-1 +kerning first=1044 second=1257 amount=-1 +kerning first=1044 second=1262 amount=-1 +kerning first=1044 second=8211 amount=-2 +kerning first=1044 second=8212 amount=-2 +kerning first=1044 second=8216 amount=-2 +kerning first=1044 second=8217 amount=-2 +kerning first=1044 second=8220 amount=-2 +kerning first=1044 second=8221 amount=-2 +kerning first=1044 second=8249 amount=-1 +kerning first=1046 second=38 amount=-2 +kerning first=1046 second=45 amount=-3 +kerning first=1046 second=63 amount=-2 +kerning first=1046 second=67 amount=-3 +kerning first=1046 second=71 amount=-3 +kerning first=1046 second=74 amount=-1 +kerning first=1046 second=79 amount=-3 +kerning first=1046 second=81 amount=-3 +kerning first=1046 second=83 amount=-1 +kerning first=1046 second=97 amount=-1 +kerning first=1046 second=99 amount=-2 +kerning first=1046 second=100 amount=-2 +kerning first=1046 second=101 amount=-2 +kerning first=1046 second=111 amount=-2 +kerning first=1046 second=113 amount=-2 +kerning first=1046 second=115 amount=-1 kerning first=1046 second=116 amount=-1 -kerning first=62 second=338 amount=-2 -kerning first=65 second=100 amount=-1 -kerning first=1074 second=972 amount=-1 -kerning first=202 second=941 amount=-1 -kerning first=205 second=250 amount=-1 -kerning first=1078 second=281 amount=-2 -kerning first=942 second=227 amount=-1 -kerning first=108 second=199 amount=-2 -kerning first=251 second=89 amount=-5 -kerning first=965 second=369 amount=-1 -kerning first=125 second=1098 amount=-3 -kerning first=161 second=339 amount=-1 -kerning first=164 second=101 amount=-1 -kerning first=274 second=251 amount=-1 -kerning first=43 second=353 amount=-1 -kerning first=186 second=263 amount=-1 -kerning first=1083 second=228 amount=-1 -kerning first=8370 second=962 amount=-1 -kerning first=904 second=240 amount=-1 -kerning first=89 second=212 amount=-3 -kerning first=232 second=102 amount=-1 -kerning first=1219 second=67 amount=-2 -kerning first=252 second=266 amount=-2 -kerning first=255 second=39 amount=-3 -kerning first=162 second=970 amount=-1 -kerning first=165 second=279 amount=-1 -kerning first=8218 second=119 amount=-2 -kerning first=1048 second=920 amount=-2 -kerning first=190 second=213 amount=-2 -kerning first=305 second=103 amount=-1 -kerning first=70 second=225 amount=-1 -kerning first=1080 second=1257 amount=-1 -kerning first=1220 second=242 amount=-1 -kerning first=256 second=214 amount=-2 -kerning first=169 second=226 amount=-1 -kerning first=282 second=116 amount=-1 -kerning first=191 second=368 amount=-2 -kerning first=303 second=972 amount=-1 -kerning first=306 second=281 amount=-1 -kerning first=217 second=65 amount=-2 -kerning first=237 second=227 amount=-1 -kerning first=357 second=357 amount=-1 -kerning first=354 second=1169 amount=-2 -kerning first=952 second=269 amount=-1 -kerning first=8225 second=244 amount=-1 -kerning first=192 second=1066 amount=-5 -kerning first=189 second=8221 amount=-3 -kerning first=1095 second=962 amount=-1 -kerning first=95 second=943 amount=-1 -kerning first=956 second=217 amount=-2 -kerning first=1036 second=119 amount=-3 -kerning first=8249 second=194 amount=-1 -kerning first=1067 second=1026 amount=-5 -kerning first=59 second=103 amount=-1 -kerning first=310 second=1257 amount=-2 -kerning first=8361 second=334 amount=-2 -kerning first=931 second=230 amount=-1 -kerning first=365 second=242 amount=-1 -kerning first=362 second=923 amount=-2 -kerning first=958 second=372 amount=-5 -kerning first=37 second=356 amount=-5 -kerning first=40 second=116 amount=-1 -kerning first=179 second=268 amount=-2 -kerning first=57 second=972 amount=-1 -kerning first=60 second=281 amount=-1 -kerning first=1075 second=231 amount=-1 -kerning first=1103 second=373 amount=-4 -kerning first=926 second=1263 amount=-1 -kerning first=103 second=357 amount=-1 -kerning first=123 second=973 amount=-1 -kerning first=1044 second=244 amount=-1 -kerning first=184 second=216 amount=-2 -kerning first=299 second=106 amount=1 -kerning first=64 second=228 amount=-1 -kerning first=207 second=118 amount=-4 -kerning first=321 second=962 amount=-1 -kerning first=8372 second=221 amount=-5 -kerning first=1101 second=8230 amount=-1 -kerning first=1117 second=83 amount=-1 -kerning first=1202 second=245 amount=-1 -kerning first=250 second=217 amount=-2 -kerning first=964 second=949 amount=-1 -kerning first=967 second=257 amount=-1 -kerning first=163 second=229 amount=-1 -kerning first=276 second=119 amount=-4 -kerning first=273 second=359 amount=-1 -kerning first=42 second=920 amount=-2 -kerning first=182 second=1195 amount=-1 -kerning first=185 second=371 amount=-1 -kerning first=297 second=1026 amount=-5 -kerning first=300 second=286 amount=-2 -kerning first=62 second=1257 amount=-1 -kerning first=1081 second=334 amount=-2 -kerning first=903 second=346 amount=-1 -kerning first=346 second=1174 amount=-1 -kerning first=354 second=120 amount=-1 -kerning first=942 second=964 amount=-3 -kerning first=248 second=947 amount=-1 -kerning first=251 second=372 amount=-5 -kerning first=374 second=287 amount=-4 -kerning first=161 second=1262 amount=-2 -kerning first=164 second=1240 amount=-2 -kerning first=1051 second=347 amount=-1 -kerning first=186 second=1069 amount=-1 -kerning first=192 second=81 amount=-2 -kerning first=304 second=231 amount=-1 -kerning first=1083 second=965 amount=-1 -kerning first=330 second=373 amount=-4 -kerning first=8370 second=8250 amount=-1 -kerning first=904 second=1028 amount=-2 -kerning first=950 second=220 amount=-2 -kerning first=1219 second=350 amount=-1 -kerning first=378 second=232 amount=-1 -kerning first=168 second=332 amount=-2 -kerning first=1064 second=289 amount=-1 -kerning first=53 second=106 amount=1 -kerning first=1059 second=1033 amount=-1 -kerning first=70 second=962 amount=-1 -kerning first=1096 second=221 amount=-5 -kerning first=216 second=193 amount=-2 -kerning first=915 second=233 amount=-1 -kerning first=1168 second=1177 amount=-1 -kerning first=1171 second=363 amount=-1 -kerning first=236 second=333 amount=-1 -kerning first=951 second=375 amount=-1 -kerning first=256 second=949 amount=-1 -kerning first=169 second=963 amount=-1 -kerning first=172 second=271 amount=-1 -kerning first=8224 second=352 amount=-1 -kerning first=51 second=1026 amount=-5 -kerning first=54 second=286 amount=-2 -kerning first=306 second=1090 amount=-3 -kerning first=77 second=218 amount=-2 -kerning first=1174 second=1059 amount=-1 -kerning first=240 second=273 amount=-1 -kerning first=237 second=964 amount=-3 -kerning first=960 second=85 amount=-2 -kerning first=120 second=287 amount=-1 -kerning first=1298 second=235 amount=-1 -kerning first=177 second=219 amount=-2 -kerning first=58 second=231 amount=-1 -kerning first=198 second=361 amount=-1 -kerning first=201 second=121 amount=-1 -kerning first=313 second=965 amount=-1 -kerning first=8363 second=224 amount=-1 -kerning first=78 second=373 amount=-4 -kerning first=1095 second=8250 amount=-1 -kerning first=221 second=288 amount=-3 -kerning first=928 second=336 amount=-2 -kerning first=1185 second=248 amount=-2 -kerning first=124 second=232 amount=-1 -kerning first=39 second=244 amount=-1 -kerning first=178 second=374 amount=-5 -kerning first=294 second=289 amount=-1 -kerning first=1074 second=337 amount=-1 -kerning first=1078 second=99 amount=-2 -kerning first=205 second=71 amount=-2 -kerning first=322 second=221 amount=-5 -kerning first=900 second=111 amount=-1 -kerning first=79 second=1071 amount=-1 -kerning first=105 second=245 amount=-1 -kerning first=965 second=210 amount=-2 -kerning first=262 second=8211 amount=-1 -kerning first=1041 second=352 amount=-1 -kerning first=186 second=84 amount=-5 -kerning first=298 second=234 amount=-1 -kerning first=60 second=1090 amount=-3 -kerning first=63 second=334 amount=-2 -kerning first=206 second=246 amount=-1 -kerning first=323 second=376 amount=-5 -kerning first=8365 second=1079 amount=-1 -kerning first=8377 second=89 amount=-5 -kerning first=901 second=291 amount=-1 -kerning first=86 second=258 amount=-6 -kerning first=341 second=8212 amount=-1 -kerning first=947 second=353 amount=-1 -kerning first=1206 second=113 amount=-1 -kerning first=252 second=85 amount=-2 -kerning first=372 second=235 amount=-3 -kerning first=162 second=335 amount=-1 -kerning first=165 second=97 amount=-1 -kerning first=41 second=1108 amount=-1 -kerning first=47 second=109 amount=-1 -kerning first=190 second=34 amount=-3 -kerning first=70 second=46 amount=-4 -kerning first=64 second=965 amount=-1 -kerning first=1084 second=224 amount=-1 -kerning first=210 second=196 amount=-2 -kerning first=321 second=8250 amount=-1 -kerning first=8378 second=266 amount=-2 -kerning first=1117 second=366 amount=-2 -kerning first=948 second=171 amount=-3 -kerning first=113 second=110 amount=2 -kerning first=964 second=8217 amount=-3 -kerning first=163 second=966 amount=-1 -kerning first=166 second=275 amount=-1 -kerning first=8220 second=115 amount=-1 -kerning first=48 second=289 amount=-1 -kerning first=45 second=1033 amount=-4 -kerning first=303 second=337 amount=-1 -kerning first=306 second=99 amount=-1 -kerning first=71 second=221 amount=-2 -kerning first=214 second=111 amount=-1 -kerning first=88 second=1177 amount=-2 -kerning first=91 second=363 amount=-1 -kerning first=374 second=1097 amount=-3 -kerning first=377 second=338 amount=-1 -kerning first=380 second=100 amount=-1 -kerning first=971 second=941 amount=-1 -kerning first=280 second=352 amount=-1 -kerning first=52 second=234 amount=-1 -kerning first=1063 second=1241 amount=-1 -kerning first=192 second=364 amount=-2 -kerning first=304 second=968 amount=-1 -kerning first=72 second=376 amount=-5 -kerning first=1087 second=1079 amount=-1 -kerning first=215 second=291 amount=-1 -kerning first=212 second=1035 amount=-2 -kerning first=912 second=339 amount=-1 -kerning first=92 second=1059 amount=-2 -kerning first=89 second=8212 amount=-4 -kerning first=361 second=113 amount=-1 -kerning first=358 second=353 amount=-1 -kerning first=950 second=955 amount=-2 -kerning first=118 second=235 amount=-1 -kerning first=258 second=365 amount=-1 -kerning first=8226 second=240 amount=-1 -kerning first=190 second=8216 amount=-3 -kerning first=314 second=224 amount=-1 -kerning first=70 second=8250 amount=-1 -kerning first=79 second=86 amount=-2 -kerning first=1099 second=266 amount=-2 -kerning first=1102 second=39 amount=-1 -kerning first=334 second=1184 amount=-2 -kerning first=915 second=970 amount=-1 -kerning first=923 second=279 amount=-1 -kerning first=958 second=213 amount=-2 -kerning first=256 second=8217 amount=-3 -kerning first=1037 second=115 amount=-1 -kerning first=179 second=87 amount=-5 -kerning first=57 second=337 amount=-1 -kerning first=60 second=99 amount=-1 -kerning first=197 second=940 amount=-1 -kerning first=200 second=249 amount=-1 -kerning first=80 second=261 amount=-1 -kerning first=77 second=953 amount=-1 -kerning first=1103 second=214 amount=-2 -kerning first=335 second=8218 amount=-1 -kerning first=934 second=226 amount=-1 -kerning first=960 second=368 amount=-2 -kerning first=123 second=338 amount=-2 -kerning first=126 second=100 amount=-1 -kerning first=1298 second=972 amount=-1 -kerning first=38 second=352 amount=-1 -kerning first=180 second=262 amount=-2 -kerning first=291 second=1241 amount=-1 -kerning first=296 second=187 amount=-1 -kerning first=58 second=968 amount=-1 -kerning first=61 second=277 amount=-1 -kerning first=204 second=199 amount=-2 -kerning first=316 second=1079 amount=-1 -kerning first=8366 second=269 amount=-1 -kerning first=84 second=211 amount=-1 -kerning first=221 second=1098 amount=-2 -kerning first=107 second=113 amount=-2 -kerning first=244 second=955 amount=-1 -kerning first=247 second=263 amount=-1 -kerning first=956 second=8221 amount=-3 +kerning first=1046 second=117 amount=-1 +kerning first=1046 second=118 amount=-3 +kerning first=1046 second=119 amount=-3 +kerning first=1046 second=121 amount=-1 +kerning first=1046 second=171 amount=-3 +kerning first=1046 second=173 amount=-3 +kerning first=1046 second=187 amount=-1 +kerning first=1046 second=199 amount=-3 +kerning first=1046 second=210 amount=-3 +kerning first=1046 second=211 amount=-3 +kerning first=1046 second=212 amount=-3 +kerning first=1046 second=213 amount=-3 +kerning first=1046 second=214 amount=-3 +kerning first=1046 second=216 amount=-3 +kerning first=1046 second=224 amount=-1 +kerning first=1046 second=225 amount=-1 +kerning first=1046 second=226 amount=-1 +kerning first=1046 second=227 amount=-1 +kerning first=1046 second=228 amount=-1 +kerning first=1046 second=229 amount=-1 +kerning first=1046 second=230 amount=-1 +kerning first=1046 second=231 amount=-2 +kerning first=1046 second=232 amount=-2 +kerning first=1046 second=233 amount=-2 +kerning first=1046 second=234 amount=-2 +kerning first=1046 second=235 amount=-2 kerning first=1046 second=240 amount=-2 -kerning first=185 second=212 amount=-2 -kerning first=1074 second=1256 amount=-2 -kerning first=65 second=224 amount=-1 -kerning first=202 second=1118 amount=-1 -kerning first=205 second=354 amount=-5 -kerning first=325 second=266 amount=-2 -kerning first=328 second=39 amount=-1 -kerning first=1102 second=8222 amount=-1 -kerning first=1118 second=79 amount=-2 -kerning first=111 second=63 amount=-2 -kerning first=251 second=213 amount=-2 -kerning first=374 second=103 amount=-4 -kerning first=968 second=253 amount=-1 -kerning first=164 second=225 amount=-1 -kerning first=274 second=355 amount=-1 -kerning first=183 second=1185 amount=-3 -kerning first=186 second=367 amount=-1 -kerning first=206 second=1038 amount=-2 -kerning first=330 second=214 amount=-2 -kerning first=8370 second=947 amount=-4 -kerning first=8377 second=372 amount=-5 -kerning first=901 second=1101 amount=-1 -kerning first=1116 second=945 amount=-2 -kerning first=352 second=356 amount=-1 -kerning first=946 second=268 amount=-2 -kerning first=252 second=368 amount=-2 -kerning first=375 second=281 amount=-1 -kerning first=372 second=972 amount=-3 -kerning first=47 second=1241 amount=-1 -kerning first=50 second=187 amount=-1 -kerning first=184 second=8220 amount=-3 -kerning first=305 second=227 amount=-1 -kerning first=70 second=326 amount=-1 -kerning first=73 second=89 amount=-5 -kerning first=1090 second=269 amount=-1 -kerning first=905 second=973 amount=-1 -kerning first=93 second=251 amount=-1 -kerning first=951 second=216 amount=-2 -kerning first=253 second=1066 amount=-5 -kerning first=250 second=8221 amount=-3 -kerning first=1027 second=118 amount=-4 -kerning first=282 second=240 amount=-1 -kerning first=1065 second=283 amount=-1 -kerning first=191 second=943 amount=-1 -kerning first=194 second=252 amount=-1 -kerning first=303 second=1256 amount=-2 -kerning first=74 second=266 amount=-2 -kerning first=77 second=39 amount=-3 -kerning first=338 second=79 amount=-2 -kerning first=916 second=229 amount=-1 -kerning first=357 second=920 amount=-2 -kerning first=952 second=371 amount=-1 -kerning first=120 second=103 amount=-1 -kerning first=1223 second=1026 amount=-5 -kerning first=260 second=253 amount=-1 -kerning first=377 second=1257 amount=-1 -kerning first=35 second=115 amount=-1 -kerning first=174 second=267 amount=-1 -kerning first=8225 second=346 amount=-1 -kerning first=8363 second=45 amount=-2 -kerning first=78 second=214 amount=-2 -kerning first=1095 second=947 amount=-4 -kerning first=215 second=1101 amount=-1 -kerning first=912 second=1262 amount=-2 -kerning first=118 second=972 amount=-1 -kerning first=121 second=281 amount=-1 -kerning first=1299 second=231 amount=-1 -kerning first=39 second=65 amount=-3 -kerning first=1036 second=243 amount=-2 -kerning first=8226 second=1028 amount=-2 -kerning first=59 second=227 amount=-1 -kerning first=1067 second=1263 amount=-1 -kerning first=202 second=117 amount=-1 -kerning first=317 second=269 amount=-1 -kerning first=8364 second=220 amount=-2 -kerning first=931 second=332 amount=-2 -kerning first=1186 second=244 amount=-1 -kerning first=125 second=228 amount=-1 -kerning first=40 second=240 amount=-1 -kerning first=176 second=1194 amount=-2 -kerning first=179 second=370 amount=-2 -kerning first=57 second=1256 amount=-2 -kerning first=1075 second=333 amount=-1 -kerning first=206 second=67 amount=-2 -kerning first=323 second=217 amount=-2 -kerning first=8365 second=375 amount=-1 -kerning first=86 second=79 amount=-2 -kerning first=1103 second=949 amount=-1 -kerning first=347 second=119 amount=-1 -kerning first=934 second=963 amount=-1 -kerning first=103 second=920 amount=-2 -kerning first=369 second=286 amount=-2 -kerning first=123 second=1257 amount=-1 -kerning first=268 second=1046 amount=-2 -kerning first=299 second=230 amount=-1 -kerning first=1076 second=964 amount=-2 -kerning first=1084 second=45 amount=-2 -kerning first=207 second=242 amount=-1 -kerning first=1080 second=273 amount=-1 -kerning first=321 second=947 amount=-4 -kerning first=8363 second=8249 amount=-3 -kerning first=8378 second=85 amount=-2 -kerning first=902 second=287 amount=-1 -kerning first=84 second=945 amount=-3 -kerning first=944 second=219 amount=-2 -kerning first=247 second=1069 amount=-1 -kerning first=253 second=81 amount=-2 -kerning first=373 second=231 amount=-1 -kerning first=967 second=361 amount=-1 -kerning first=276 second=243 amount=-1 -kerning first=8216 second=196 amount=-3 -kerning first=1049 second=288 amount=-2 +kerning first=1046 second=242 amount=-2 +kerning first=1046 second=243 amount=-2 +kerning first=1046 second=244 amount=-2 +kerning first=1046 second=245 amount=-2 +kerning first=1046 second=246 amount=-2 +kerning first=1046 second=248 amount=-2 +kerning first=1046 second=249 amount=-1 +kerning first=1046 second=250 amount=-1 +kerning first=1046 second=251 amount=-1 +kerning first=1046 second=252 amount=-1 +kerning first=1046 second=253 amount=-1 +kerning first=1046 second=257 amount=-1 +kerning first=1046 second=259 amount=-1 +kerning first=1046 second=261 amount=-1 +kerning first=1046 second=262 amount=-3 +kerning first=1046 second=263 amount=-2 +kerning first=1046 second=266 amount=-3 +kerning first=1046 second=267 amount=-2 +kerning first=1046 second=268 amount=-3 +kerning first=1046 second=269 amount=-2 +kerning first=1046 second=271 amount=-2 +kerning first=1046 second=273 amount=-2 +kerning first=1046 second=275 amount=-2 +kerning first=1046 second=277 amount=-2 +kerning first=1046 second=279 amount=-2 +kerning first=1046 second=281 amount=-2 +kerning first=1046 second=283 amount=-2 +kerning first=1046 second=286 amount=-3 +kerning first=1046 second=288 amount=-3 +kerning first=1046 second=290 amount=-3 +kerning first=1046 second=332 amount=-3 +kerning first=1046 second=333 amount=-2 +kerning first=1046 second=334 amount=-3 +kerning first=1046 second=335 amount=-2 +kerning first=1046 second=336 amount=-3 +kerning first=1046 second=337 amount=-2 +kerning first=1046 second=338 amount=-3 +kerning first=1046 second=339 amount=-2 +kerning first=1046 second=346 amount=-1 +kerning first=1046 second=347 amount=-1 +kerning first=1046 second=350 amount=-1 +kerning first=1046 second=351 amount=-1 +kerning first=1046 second=352 amount=-1 +kerning first=1046 second=353 amount=-1 +kerning first=1046 second=355 amount=-1 +kerning first=1046 second=357 amount=-1 +kerning first=1046 second=359 amount=-1 +kerning first=1046 second=361 amount=-1 +kerning first=1046 second=363 amount=-1 +kerning first=1046 second=365 amount=-1 +kerning first=1046 second=367 amount=-1 +kerning first=1046 second=369 amount=-1 +kerning first=1046 second=371 amount=-1 +kerning first=1046 second=373 amount=-3 +kerning first=1046 second=375 amount=-1 +kerning first=1046 second=920 amount=-3 +kerning first=1046 second=927 amount=-3 +kerning first=1046 second=934 amount=-5 +kerning first=1046 second=940 amount=-2 +kerning first=1046 second=941 amount=-2 +kerning first=1046 second=943 amount=-1 +kerning first=1046 second=945 amount=-2 +kerning first=1046 second=947 amount=-3 +kerning first=1046 second=949 amount=-2 +kerning first=1046 second=950 amount=-2 +kerning first=1046 second=952 amount=-2 +kerning first=1046 second=953 amount=-1 +kerning first=1046 second=957 amount=-3 +kerning first=1046 second=959 amount=-2 +kerning first=1046 second=962 amount=-2 +kerning first=1046 second=963 amount=-2 +kerning first=1046 second=964 amount=-3 +kerning first=1046 second=965 amount=-1 +kerning first=1046 second=966 amount=-2 +kerning first=1046 second=967 amount=-2 +kerning first=1046 second=968 amount=-1 +kerning first=1046 second=969 amount=-2 +kerning first=1046 second=970 amount=-1 +kerning first=1046 second=972 amount=-2 +kerning first=1046 second=973 amount=-1 +kerning first=1046 second=974 amount=-2 kerning first=1046 second=1028 amount=-3 -kerning first=297 second=1263 amount=-1 -kerning first=1085 second=220 amount=-2 -kerning first=906 second=232 amount=-1 -kerning first=1118 second=362 amount=-2 -kerning first=354 second=244 amount=-3 -kerning first=1210 second=289 amount=-1 -kerning first=164 second=962 amount=-1 -kerning first=8217 second=351 amount=-1 -kerning first=8221 second=111 amount=-1 -kerning first=52 second=55 amount=-1 -kerning first=49 second=283 amount=-1 -kerning first=1063 second=233 amount=-1 -kerning first=304 second=333 amount=-1 -kerning first=72 second=217 amount=-2 -kerning first=1087 second=375 amount=-1 -kerning first=330 second=949 amount=-1 -kerning first=92 second=359 amount=-1 -kerning first=95 second=119 amount=-4 -kerning first=1116 second=8211 amount=-3 -kerning first=1224 second=234 amount=-1 -kerning first=375 second=1090 amount=-3 -kerning first=1026 second=246 amount=-1 -kerning first=8218 second=1035 amount=-5 -kerning first=8222 second=291 amount=-1 -kerning first=53 second=230 amount=-1 -kerning first=193 second=360 amount=-2 -kerning first=314 second=45 amount=-2 -kerning first=305 second=964 amount=-3 -kerning first=310 second=273 amount=-2 -kerning first=70 second=947 amount=-4 -kerning first=73 second=372 amount=-5 -kerning first=1084 second=8249 amount=-3 -kerning first=1099 second=85 amount=-2 -kerning first=915 second=335 amount=-1 -kerning first=923 second=97 amount=-1 -kerning first=910 second=1094 amount=-3 -kerning first=239 second=219 amount=-2 -kerning first=356 second=1108 amount=-3 -kerning first=954 second=259 amount=-1 -kerning first=958 second=34 amount=-3 -kerning first=119 second=231 amount=-1 -kerning first=34 second=243 amount=-1 -kerning first=1034 second=196 amount=-1 -kerning first=172 second=373 amount=-4 -kerning first=282 second=1028 amount=-2 -kerning first=287 second=288 amount=-2 -kerning first=51 second=1263 amount=-1 -kerning first=315 second=220 amount=-1 -kerning first=338 second=362 amount=-2 -kerning first=916 second=966 amount=-1 -kerning first=100 second=244 amount=-1 -kerning first=926 second=275 amount=-1 -kerning first=240 second=374 amount=-5 -kerning first=363 second=289 amount=-1 -kerning first=360 second=1033 amount=-1 -kerning first=1298 second=337 amount=-1 -kerning first=38 second=193 amount=-1 -kerning first=1035 second=351 amount=-1 -kerning first=180 second=83 amount=-1 -kerning first=291 second=233 amount=-1 -kerning first=58 second=333 amount=-1 -kerning first=1069 second=967 amount=-1 -kerning first=201 second=245 amount=-1 -kerning first=316 second=375 amount=-1 -kerning first=78 second=949 amount=-1 -kerning first=247 second=84 amount=-5 -kerning first=367 second=234 amount=-1 -kerning first=124 second=334 amount=-2 -kerning first=121 second=1090 amount=-3 -kerning first=1299 second=968 amount=-1 -kerning first=1039 second=291 amount=-1 -kerning first=62 second=273 amount=-1 -kerning first=65 second=45 amount=-2 -kerning first=59 second=964 amount=-3 -kerning first=314 second=8249 amount=-3 -kerning first=325 second=85 amount=-2 -kerning first=8369 second=263 amount=-1 -kerning first=900 second=235 amount=-1 -kerning first=105 second=347 amount=-1 -kerning first=102 second=1108 amount=-1 -kerning first=251 second=34 amount=-3 -kerning first=958 second=8216 amount=-3 -kerning first=125 second=965 amount=-1 -kerning first=40 second=1028 amount=-2 -kerning first=43 second=288 amount=-2 -kerning first=298 second=336 amount=-2 -kerning first=1083 second=171 amount=-3 -kerning first=206 second=350 amount=-1 -kerning first=8377 second=213 amount=-2 -kerning first=86 second=362 amount=-2 -kerning first=1103 second=8217 amount=-3 -kerning first=89 second=122 amount=-2 -kerning first=232 second=47 amount=-1 -kerning first=352 second=197 amount=-1 -kerning first=946 second=87 amount=-5 -kerning first=375 second=99 amount=-1 -kerning first=372 second=337 amount=-3 -kerning first=165 second=221 amount=-5 -kerning first=278 second=111 amount=-1 -kerning first=47 second=233 amount=-2 -kerning first=184 second=1177 amount=-1 -kerning first=8378 second=368 amount=-2 -kerning first=905 second=338 amount=-2 -kerning first=84 second=8211 amount=-4 -kerning first=910 second=100 amount=-4 -kerning first=1168 second=250 amount=-1 -kerning first=1117 second=941 amount=-1 -kerning first=356 second=112 amount=-2 -kerning first=948 second=262 amount=-2 -kerning first=113 second=234 amount=-1 -kerning first=1220 second=187 amount=-1 -kerning first=1207 second=1241 amount=-1 -kerning first=253 second=364 amount=-2 -kerning first=376 second=277 amount=-4 -kerning first=973 second=199 amount=-2 -kerning first=166 second=376 amount=-5 -kerning first=276 second=1035 amount=-5 -kerning first=1049 second=1098 amount=-3 -kerning first=185 second=8212 amount=-2 -kerning first=188 second=1059 amount=-2 +kerning first=1046 second=1029 amount=-1 +kerning first=1046 second=1032 amount=-1 +kerning first=1046 second=1047 amount=-2 +kerning first=1046 second=1054 amount=-3 +kerning first=1046 second=1057 amount=-3 +kerning first=1046 second=1060 amount=-5 +kerning first=1046 second=1063 amount=-1 +kerning first=1046 second=1069 amount=-2 +kerning first=1046 second=1072 amount=-1 +kerning first=1046 second=1077 amount=-2 +kerning first=1046 second=1079 amount=-2 +kerning first=1046 second=1086 amount=-2 +kerning first=1046 second=1089 amount=-2 +kerning first=1046 second=1090 amount=-3 +kerning first=1046 second=1091 amount=-1 +kerning first=1046 second=1092 amount=-2 +kerning first=1046 second=1098 amount=-3 +kerning first=1046 second=1101 amount=-2 +kerning first=1046 second=1104 amount=-2 +kerning first=1046 second=1105 amount=-2 +kerning first=1046 second=1108 amount=-2 +kerning first=1046 second=1109 amount=-1 +kerning first=1046 second=1118 amount=-1 +kerning first=1046 second=1176 amount=-2 +kerning first=1046 second=1177 amount=-2 +kerning first=1046 second=1185 amount=-3 +kerning first=1046 second=1194 amount=-3 +kerning first=1046 second=1195 amount=-2 +kerning first=1046 second=1199 amount=-3 +kerning first=1046 second=1240 amount=-3 +kerning first=1046 second=1241 amount=-2 +kerning first=1046 second=1256 amount=-3 +kerning first=1046 second=1257 amount=-2 +kerning first=1046 second=1263 amount=-1 +kerning first=1046 second=8211 amount=-3 +kerning first=1046 second=8212 amount=-3 +kerning first=1046 second=8249 amount=-3 +kerning first=1046 second=8250 amount=-1 +kerning first=1047 second=65 amount=-1 +kerning first=1047 second=84 amount=-1 +kerning first=1047 second=86 amount=-1 +kerning first=1047 second=87 amount=-1 +kerning first=1047 second=88 amount=-2 +kerning first=1047 second=89 amount=-2 +kerning first=1047 second=193 amount=-1 +kerning first=1047 second=194 amount=-1 +kerning first=1047 second=196 amount=-1 +kerning first=1047 second=197 amount=-1 +kerning first=1047 second=198 amount=-1 +kerning first=1047 second=221 amount=-2 +kerning first=1047 second=256 amount=-1 +kerning first=1047 second=258 amount=-1 +kerning first=1047 second=260 amount=-1 +kerning first=1047 second=354 amount=-1 +kerning first=1047 second=356 amount=-1 +kerning first=1047 second=372 amount=-1 +kerning first=1047 second=374 amount=-2 +kerning first=1047 second=376 amount=-2 +kerning first=1047 second=913 amount=-1 +kerning first=1047 second=916 amount=-1 +kerning first=1047 second=923 amount=-1 +kerning first=1047 second=932 amount=-1 +kerning first=1047 second=933 amount=-2 +kerning first=1047 second=935 amount=-2 +kerning first=1047 second=939 amount=-2 +kerning first=1047 second=955 amount=-1 +kerning first=1047 second=1026 amount=-1 +kerning first=1047 second=1035 amount=-1 +kerning first=1047 second=1040 amount=-1 +kerning first=1047 second=1046 amount=-2 +kerning first=1047 second=1058 amount=-1 +kerning first=1047 second=1061 amount=-2 +kerning first=1047 second=1066 amount=-1 +kerning first=1047 second=1174 amount=-2 +kerning first=1047 second=1184 amount=-1 +kerning first=1047 second=1198 amount=-2 +kerning first=1047 second=1202 amount=-2 +kerning first=1050 second=38 amount=-2 +kerning first=1050 second=45 amount=-4 +kerning first=1050 second=63 amount=-2 +kerning first=1050 second=67 amount=-3 +kerning first=1050 second=71 amount=-3 +kerning first=1050 second=74 amount=-1 +kerning first=1050 second=79 amount=-3 +kerning first=1050 second=81 amount=-3 +kerning first=1050 second=83 amount=-1 +kerning first=1050 second=97 amount=-1 +kerning first=1050 second=99 amount=-2 +kerning first=1050 second=100 amount=-2 +kerning first=1050 second=101 amount=-2 +kerning first=1050 second=102 amount=-2 +kerning first=1050 second=103 amount=-1 +kerning first=1050 second=111 amount=-2 +kerning first=1050 second=113 amount=-2 +kerning first=1050 second=116 amount=-1 +kerning first=1050 second=117 amount=-1 +kerning first=1050 second=118 amount=-3 +kerning first=1050 second=119 amount=-3 +kerning first=1050 second=121 amount=-2 +kerning first=1050 second=171 amount=-3 +kerning first=1050 second=173 amount=-4 +kerning first=1050 second=187 amount=-2 +kerning first=1050 second=199 amount=-3 +kerning first=1050 second=210 amount=-3 +kerning first=1050 second=211 amount=-3 +kerning first=1050 second=212 amount=-3 +kerning first=1050 second=213 amount=-3 +kerning first=1050 second=214 amount=-3 +kerning first=1050 second=216 amount=-3 +kerning first=1050 second=224 amount=-1 +kerning first=1050 second=225 amount=-1 +kerning first=1050 second=226 amount=-1 +kerning first=1050 second=227 amount=-1 +kerning first=1050 second=228 amount=-1 +kerning first=1050 second=229 amount=-1 +kerning first=1050 second=230 amount=-1 +kerning first=1050 second=231 amount=-2 +kerning first=1050 second=232 amount=-2 +kerning first=1050 second=233 amount=-2 +kerning first=1050 second=234 amount=-2 +kerning first=1050 second=235 amount=-2 +kerning first=1050 second=240 amount=-2 +kerning first=1050 second=242 amount=-2 +kerning first=1050 second=243 amount=-2 +kerning first=1050 second=244 amount=-2 +kerning first=1050 second=245 amount=-2 +kerning first=1050 second=246 amount=-2 +kerning first=1050 second=248 amount=-2 +kerning first=1050 second=249 amount=-1 +kerning first=1050 second=250 amount=-1 +kerning first=1050 second=251 amount=-1 +kerning first=1050 second=252 amount=-1 +kerning first=1050 second=253 amount=-2 +kerning first=1050 second=257 amount=-1 +kerning first=1050 second=259 amount=-1 +kerning first=1050 second=261 amount=-1 +kerning first=1050 second=262 amount=-3 +kerning first=1050 second=263 amount=-2 +kerning first=1050 second=266 amount=-3 +kerning first=1050 second=267 amount=-2 +kerning first=1050 second=268 amount=-3 +kerning first=1050 second=269 amount=-2 +kerning first=1050 second=271 amount=-2 +kerning first=1050 second=273 amount=-2 +kerning first=1050 second=275 amount=-2 +kerning first=1050 second=277 amount=-2 +kerning first=1050 second=279 amount=-2 +kerning first=1050 second=281 amount=-2 +kerning first=1050 second=283 amount=-2 +kerning first=1050 second=286 amount=-3 +kerning first=1050 second=287 amount=-1 +kerning first=1050 second=288 amount=-3 +kerning first=1050 second=289 amount=-1 +kerning first=1050 second=290 amount=-3 +kerning first=1050 second=291 amount=-1 +kerning first=1050 second=332 amount=-3 +kerning first=1050 second=333 amount=-2 +kerning first=1050 second=334 amount=-3 +kerning first=1050 second=335 amount=-2 +kerning first=1050 second=336 amount=-3 +kerning first=1050 second=337 amount=-2 +kerning first=1050 second=338 amount=-3 +kerning first=1050 second=339 amount=-2 +kerning first=1050 second=346 amount=-1 +kerning first=1050 second=350 amount=-1 +kerning first=1050 second=352 amount=-1 +kerning first=1050 second=355 amount=-1 +kerning first=1050 second=357 amount=-1 +kerning first=1050 second=359 amount=-1 +kerning first=1050 second=361 amount=-1 +kerning first=1050 second=363 amount=-1 +kerning first=1050 second=365 amount=-1 +kerning first=1050 second=367 amount=-1 +kerning first=1050 second=369 amount=-1 +kerning first=1050 second=371 amount=-1 +kerning first=1050 second=373 amount=-3 +kerning first=1050 second=375 amount=-2 +kerning first=1050 second=920 amount=-3 +kerning first=1050 second=927 amount=-3 +kerning first=1050 second=940 amount=-2 +kerning first=1050 second=941 amount=-2 +kerning first=1050 second=945 amount=-2 +kerning first=1050 second=947 amount=-3 +kerning first=1050 second=949 amount=-2 +kerning first=1050 second=957 amount=-3 +kerning first=1050 second=959 amount=-2 +kerning first=1050 second=962 amount=-2 +kerning first=1050 second=963 amount=-2 +kerning first=1050 second=964 amount=-4 +kerning first=1050 second=965 amount=-1 +kerning first=1050 second=966 amount=-2 +kerning first=1050 second=968 amount=-1 +kerning first=1050 second=972 amount=-2 +kerning first=1050 second=973 amount=-1 +kerning first=1050 second=1028 amount=-3 +kerning first=1050 second=1029 amount=-1 +kerning first=1050 second=1032 amount=-1 +kerning first=1050 second=1054 amount=-3 +kerning first=1050 second=1057 amount=-3 +kerning first=1050 second=1069 amount=-2 +kerning first=1050 second=1072 amount=-1 +kerning first=1050 second=1077 amount=-2 +kerning first=1050 second=1079 amount=-1 +kerning first=1050 second=1086 amount=-2 +kerning first=1050 second=1089 amount=-2 +kerning first=1050 second=1090 amount=-4 +kerning first=1050 second=1091 amount=-2 +kerning first=1050 second=1092 amount=-2 +kerning first=1050 second=1098 amount=-4 +kerning first=1050 second=1101 amount=-1 +kerning first=1050 second=1104 amount=-2 +kerning first=1050 second=1105 amount=-2 +kerning first=1050 second=1108 amount=-2 +kerning first=1050 second=1118 amount=-2 +kerning first=1050 second=1176 amount=-2 +kerning first=1050 second=1177 amount=-1 +kerning first=1050 second=1185 amount=-4 +kerning first=1050 second=1194 amount=-3 +kerning first=1050 second=1195 amount=-2 +kerning first=1050 second=1199 amount=-3 +kerning first=1050 second=1240 amount=-3 +kerning first=1050 second=1241 amount=-2 +kerning first=1050 second=1256 amount=-3 +kerning first=1050 second=1257 amount=-2 +kerning first=1050 second=1263 amount=-2 +kerning first=1050 second=8211 amount=-4 +kerning first=1050 second=8212 amount=-4 +kerning first=1050 second=8249 amount=-3 +kerning first=1050 second=8250 amount=-2 +kerning first=1054 second=44 amount=-1 +kerning first=1054 second=46 amount=-1 +kerning first=1054 second=47 amount=-1 +kerning first=1054 second=65 amount=-2 +kerning first=1054 second=84 amount=-2 +kerning first=1054 second=86 amount=-2 +kerning first=1054 second=87 amount=-2 +kerning first=1054 second=88 amount=-3 +kerning first=1054 second=89 amount=-3 +kerning first=1054 second=90 amount=-1 +kerning first=1054 second=193 amount=-2 +kerning first=1054 second=194 amount=-2 +kerning first=1054 second=196 amount=-2 +kerning first=1054 second=197 amount=-2 +kerning first=1054 second=198 amount=-2 +kerning first=1054 second=221 amount=-3 +kerning first=1054 second=256 amount=-2 +kerning first=1054 second=258 amount=-2 +kerning first=1054 second=260 amount=-2 +kerning first=1054 second=354 amount=-2 +kerning first=1054 second=356 amount=-2 +kerning first=1054 second=372 amount=-2 +kerning first=1054 second=374 amount=-3 +kerning first=1054 second=376 amount=-3 +kerning first=1054 second=377 amount=-1 +kerning first=1054 second=379 amount=-1 +kerning first=1054 second=381 amount=-1 +kerning first=1054 second=913 amount=-2 +kerning first=1054 second=916 amount=-2 +kerning first=1054 second=918 amount=-1 +kerning first=1054 second=923 amount=-2 +kerning first=1054 second=932 amount=-2 +kerning first=1054 second=933 amount=-3 +kerning first=1054 second=935 amount=-3 +kerning first=1054 second=939 amount=-3 +kerning first=1054 second=955 amount=-2 +kerning first=1054 second=967 amount=-1 +kerning first=1054 second=1026 amount=-2 +kerning first=1054 second=1033 amount=-1 +kerning first=1054 second=1035 amount=-2 +kerning first=1054 second=1040 amount=-2 +kerning first=1054 second=1044 amount=-1 +kerning first=1054 second=1046 amount=-3 +kerning first=1054 second=1051 amount=-1 +kerning first=1054 second=1058 amount=-2 +kerning first=1054 second=1061 amount=-3 +kerning first=1054 second=1066 amount=-2 +kerning first=1054 second=1071 amount=-1 +kerning first=1054 second=1174 amount=-3 +kerning first=1054 second=1184 amount=-2 +kerning first=1054 second=1198 amount=-3 +kerning first=1054 second=1202 amount=-3 +kerning first=1054 second=1298 amount=-1 +kerning first=1054 second=8218 amount=-1 +kerning first=1054 second=8222 amount=-1 +kerning first=1054 second=8230 amount=-1 +kerning first=1056 second=44 amount=-4 +kerning first=1056 second=45 amount=-1 +kerning first=1056 second=46 amount=-4 +kerning first=1056 second=47 amount=-3 +kerning first=1056 second=65 amount=-4 +kerning first=1056 second=74 amount=-3 +kerning first=1056 second=86 amount=-1 +kerning first=1056 second=87 amount=-1 +kerning first=1056 second=88 amount=-2 +kerning first=1056 second=89 amount=-2 +kerning first=1056 second=90 amount=-1 +kerning first=1056 second=97 amount=-1 +kerning first=1056 second=103 amount=-1 +kerning first=1056 second=173 amount=-1 +kerning first=1056 second=193 amount=-4 +kerning first=1056 second=194 amount=-4 +kerning first=1056 second=196 amount=-4 +kerning first=1056 second=197 amount=-4 +kerning first=1056 second=198 amount=-4 +kerning first=1056 second=221 amount=-2 +kerning first=1056 second=224 amount=-1 +kerning first=1056 second=225 amount=-1 +kerning first=1056 second=226 amount=-1 +kerning first=1056 second=227 amount=-1 +kerning first=1056 second=228 amount=-1 +kerning first=1056 second=229 amount=-1 +kerning first=1056 second=230 amount=-1 +kerning first=1056 second=256 amount=-4 +kerning first=1056 second=257 amount=-1 +kerning first=1056 second=258 amount=-4 +kerning first=1056 second=259 amount=-1 +kerning first=1056 second=260 amount=-4 +kerning first=1056 second=261 amount=-1 +kerning first=1056 second=287 amount=-1 +kerning first=1056 second=289 amount=-1 +kerning first=1056 second=291 amount=-1 +kerning first=1056 second=372 amount=-1 +kerning first=1056 second=374 amount=-2 +kerning first=1056 second=376 amount=-2 +kerning first=1056 second=377 amount=-1 +kerning first=1056 second=379 amount=-1 +kerning first=1056 second=381 amount=-1 +kerning first=1056 second=913 amount=-4 +kerning first=1056 second=916 amount=-4 +kerning first=1056 second=918 amount=-1 +kerning first=1056 second=923 amount=-4 +kerning first=1056 second=933 amount=-2 +kerning first=1056 second=935 amount=-2 +kerning first=1056 second=939 amount=-2 +kerning first=1056 second=950 amount=-1 +kerning first=1056 second=955 amount=-3 +kerning first=1056 second=961 amount=-1 +kerning first=1056 second=1032 amount=-3 +kerning first=1056 second=1040 amount=-4 +kerning first=1056 second=1046 amount=-2 +kerning first=1056 second=1061 amount=-2 +kerning first=1056 second=1072 amount=-1 +kerning first=1056 second=1174 amount=-2 +kerning first=1056 second=1198 amount=-2 +kerning first=1056 second=1202 amount=-2 +kerning first=1056 second=8211 amount=-1 +kerning first=1056 second=8212 amount=-1 +kerning first=1056 second=8218 amount=-4 +kerning first=1056 second=8222 amount=-4 +kerning first=1056 second=8230 amount=-4 +kerning first=1057 second=44 amount=-1 +kerning first=1057 second=45 amount=-1 +kerning first=1057 second=46 amount=-1 +kerning first=1057 second=47 amount=-1 +kerning first=1057 second=65 amount=-1 +kerning first=1057 second=84 amount=-1 +kerning first=1057 second=86 amount=-1 +kerning first=1057 second=87 amount=-1 +kerning first=1057 second=88 amount=-2 +kerning first=1057 second=89 amount=-2 +kerning first=1057 second=90 amount=-1 +kerning first=1057 second=106 amount=1 +kerning first=1057 second=171 amount=-1 +kerning first=1057 second=173 amount=-1 +kerning first=1057 second=193 amount=-1 +kerning first=1057 second=194 amount=-1 +kerning first=1057 second=196 amount=-1 +kerning first=1057 second=197 amount=-1 +kerning first=1057 second=198 amount=-1 +kerning first=1057 second=221 amount=-2 +kerning first=1057 second=256 amount=-1 +kerning first=1057 second=258 amount=-1 +kerning first=1057 second=260 amount=-1 +kerning first=1057 second=354 amount=-1 +kerning first=1057 second=356 amount=-1 +kerning first=1057 second=372 amount=-1 +kerning first=1057 second=374 amount=-2 +kerning first=1057 second=376 amount=-2 +kerning first=1057 second=377 amount=-1 +kerning first=1057 second=379 amount=-1 +kerning first=1057 second=381 amount=-1 +kerning first=1057 second=913 amount=-1 +kerning first=1057 second=916 amount=-1 +kerning first=1057 second=918 amount=-1 +kerning first=1057 second=923 amount=-1 +kerning first=1057 second=932 amount=-1 +kerning first=1057 second=933 amount=-2 +kerning first=1057 second=935 amount=-2 +kerning first=1057 second=939 amount=-2 +kerning first=1057 second=1026 amount=-1 +kerning first=1057 second=1033 amount=-1 +kerning first=1057 second=1035 amount=-1 +kerning first=1057 second=1040 amount=-1 +kerning first=1057 second=1044 amount=-1 +kerning first=1057 second=1046 amount=-2 +kerning first=1057 second=1051 amount=-1 +kerning first=1057 second=1058 amount=-1 +kerning first=1057 second=1061 amount=-2 +kerning first=1057 second=1066 amount=-1 +kerning first=1057 second=1069 amount=1 +kerning first=1057 second=1112 amount=1 +kerning first=1057 second=1174 amount=-2 +kerning first=1057 second=1176 amount=1 +kerning first=1057 second=1184 amount=-1 +kerning first=1057 second=1198 amount=-2 +kerning first=1057 second=1202 amount=-2 +kerning first=1057 second=1298 amount=-1 +kerning first=1057 second=8211 amount=-1 +kerning first=1057 second=8212 amount=-1 +kerning first=1057 second=8218 amount=-1 +kerning first=1057 second=8222 amount=-1 +kerning first=1057 second=8230 amount=-1 +kerning first=1057 second=8249 amount=-1 +kerning first=1058 second=44 amount=-3 +kerning first=1058 second=45 amount=-4 +kerning first=1058 second=46 amount=-3 +kerning first=1058 second=47 amount=-4 +kerning first=1058 second=110 amount=-2 +kerning first=1058 second=65 amount=-6 +kerning first=1058 second=67 amount=-1 +kerning first=1058 second=114 amount=-2 +kerning first=1058 second=71 amount=-1 +kerning first=1058 second=74 amount=-5 +kerning first=1058 second=79 amount=-1 +kerning first=1058 second=81 amount=-1 +kerning first=1058 second=83 amount=-1 +kerning first=1058 second=97 amount=-2 +kerning first=1058 second=99 amount=-3 +kerning first=1058 second=100 amount=-3 +kerning first=1058 second=101 amount=-3 +kerning first=1058 second=103 amount=-2 +kerning first=1058 second=109 amount=-2 +kerning first=1058 second=111 amount=-3 +kerning first=1058 second=112 amount=-2 +kerning first=1058 second=113 amount=-3 +kerning first=1058 second=115 amount=-3 +kerning first=1058 second=117 amount=-2 +kerning first=1058 second=118 amount=-2 +kerning first=1058 second=119 amount=-2 +kerning first=1058 second=120 amount=-1 +kerning first=1058 second=121 amount=-2 +kerning first=1058 second=122 amount=-1 +kerning first=1058 second=171 amount=-3 +kerning first=1058 second=173 amount=-4 +kerning first=1058 second=187 amount=-1 +kerning first=1058 second=193 amount=-6 +kerning first=1058 second=194 amount=-6 +kerning first=1058 second=196 amount=-6 +kerning first=1058 second=197 amount=-6 +kerning first=1058 second=198 amount=-6 +kerning first=1058 second=199 amount=-1 +kerning first=1058 second=210 amount=-1 +kerning first=1058 second=211 amount=-1 +kerning first=1058 second=212 amount=-1 +kerning first=1058 second=213 amount=-1 +kerning first=1058 second=214 amount=-1 +kerning first=1058 second=216 amount=-1 +kerning first=1058 second=224 amount=-2 +kerning first=1058 second=225 amount=-2 +kerning first=1058 second=226 amount=-2 +kerning first=1058 second=227 amount=-2 +kerning first=1058 second=228 amount=-2 +kerning first=1058 second=229 amount=-2 +kerning first=1058 second=230 amount=-2 +kerning first=1058 second=231 amount=-3 +kerning first=1058 second=232 amount=-3 +kerning first=1058 second=233 amount=-3 +kerning first=1058 second=234 amount=-3 +kerning first=1058 second=235 amount=-3 +kerning first=1058 second=240 amount=-3 +kerning first=1058 second=241 amount=-2 +kerning first=1058 second=242 amount=-3 +kerning first=1058 second=243 amount=-3 +kerning first=1058 second=244 amount=-3 +kerning first=1058 second=245 amount=-3 +kerning first=1058 second=246 amount=-3 +kerning first=1058 second=248 amount=-3 +kerning first=1058 second=249 amount=-2 +kerning first=1058 second=250 amount=-2 +kerning first=1058 second=251 amount=-2 +kerning first=1058 second=252 amount=-2 +kerning first=1058 second=253 amount=-2 +kerning first=1058 second=256 amount=-6 +kerning first=1058 second=257 amount=-2 +kerning first=1058 second=258 amount=-6 +kerning first=1058 second=259 amount=-2 +kerning first=1058 second=260 amount=-6 +kerning first=1058 second=261 amount=-2 +kerning first=1058 second=262 amount=-1 +kerning first=1058 second=263 amount=-3 +kerning first=1058 second=266 amount=-1 +kerning first=1058 second=267 amount=-3 +kerning first=1058 second=268 amount=-1 +kerning first=1058 second=269 amount=-3 +kerning first=1058 second=271 amount=-3 +kerning first=1058 second=273 amount=-3 +kerning first=1058 second=275 amount=-3 +kerning first=1058 second=277 amount=-3 +kerning first=1058 second=279 amount=-3 +kerning first=1058 second=281 amount=-3 +kerning first=1058 second=283 amount=-3 +kerning first=1058 second=286 amount=-1 +kerning first=1058 second=287 amount=-2 +kerning first=1058 second=288 amount=-1 +kerning first=1058 second=289 amount=-2 +kerning first=1058 second=290 amount=-1 +kerning first=1058 second=291 amount=-2 +kerning first=1058 second=324 amount=-2 +kerning first=1058 second=326 amount=-2 +kerning first=1058 second=328 amount=-2 +kerning first=1058 second=331 amount=-2 +kerning first=1058 second=332 amount=-1 +kerning first=1058 second=333 amount=-3 +kerning first=1058 second=334 amount=-1 +kerning first=1058 second=335 amount=-3 +kerning first=1058 second=336 amount=-1 +kerning first=1058 second=337 amount=-3 +kerning first=1058 second=338 amount=-1 +kerning first=1058 second=339 amount=-3 +kerning first=1058 second=341 amount=-2 +kerning first=1058 second=343 amount=-2 +kerning first=1058 second=345 amount=-2 +kerning first=1058 second=346 amount=-1 +kerning first=1058 second=347 amount=-3 +kerning first=1058 second=350 amount=-1 +kerning first=1058 second=351 amount=-3 +kerning first=1058 second=352 amount=-1 +kerning first=1058 second=353 amount=-3 +kerning first=1058 second=361 amount=-2 +kerning first=1058 second=363 amount=-2 +kerning first=1058 second=365 amount=-2 +kerning first=1058 second=367 amount=-2 +kerning first=1058 second=369 amount=-2 +kerning first=1058 second=371 amount=-2 +kerning first=1058 second=373 amount=-2 +kerning first=1058 second=375 amount=-2 +kerning first=1058 second=378 amount=-1 +kerning first=1058 second=380 amount=-1 +kerning first=1058 second=382 amount=-1 +kerning first=1058 second=913 amount=-6 +kerning first=1058 second=916 amount=-6 +kerning first=1058 second=920 amount=-1 +kerning first=1058 second=923 amount=-6 +kerning first=1058 second=927 amount=-1 +kerning first=1058 second=940 amount=-3 +kerning first=1058 second=941 amount=-3 +kerning first=1058 second=942 amount=-2 +kerning first=1058 second=945 amount=-3 +kerning first=1058 second=947 amount=-2 +kerning first=1058 second=949 amount=-3 +kerning first=1058 second=951 amount=-2 +kerning first=1058 second=954 amount=-2 +kerning first=1058 second=957 amount=-2 +kerning first=1058 second=959 amount=-3 +kerning first=1058 second=962 amount=-3 +kerning first=1058 second=963 amount=-3 +kerning first=1058 second=965 amount=-2 +kerning first=1058 second=966 amount=-3 +kerning first=1058 second=968 amount=-2 +kerning first=1058 second=972 amount=-3 +kerning first=1058 second=973 amount=-2 +kerning first=1058 second=1028 amount=-1 +kerning first=1058 second=1029 amount=-1 +kerning first=1058 second=1032 amount=-5 +kerning first=1058 second=1033 amount=-4 +kerning first=1058 second=1040 amount=-6 +kerning first=1058 second=1044 amount=-4 +kerning first=1058 second=1051 amount=-4 +kerning first=1058 second=1054 amount=-1 +kerning first=1058 second=1057 amount=-1 +kerning first=1058 second=1072 amount=-2 +kerning first=1058 second=1074 amount=-2 +kerning first=1058 second=1075 amount=-2 +kerning first=1058 second=1077 amount=-3 +kerning first=1058 second=1078 amount=-1 +kerning first=1058 second=1079 amount=-2 +kerning first=1058 second=1080 amount=-2 +kerning first=1058 second=1081 amount=-2 +kerning first=1058 second=1082 amount=-2 +kerning first=1058 second=1084 amount=-2 +kerning first=1058 second=1085 amount=-2 +kerning first=1058 second=1086 amount=-3 +kerning first=1058 second=1087 amount=-2 +kerning first=1058 second=1088 amount=-2 +kerning first=1058 second=1089 amount=-3 +kerning first=1058 second=1091 amount=-2 +kerning first=1058 second=1092 amount=-3 +kerning first=1058 second=1093 amount=-1 +kerning first=1058 second=1094 amount=-2 +kerning first=1058 second=1096 amount=-2 +kerning first=1058 second=1097 amount=-2 +kerning first=1058 second=1099 amount=-2 +kerning first=1058 second=1100 amount=-2 +kerning first=1058 second=1101 amount=-2 +kerning first=1058 second=1102 amount=-2 +kerning first=1058 second=1104 amount=-3 +kerning first=1058 second=1105 amount=-3 +kerning first=1058 second=1107 amount=-2 +kerning first=1058 second=1108 amount=-3 +kerning first=1058 second=1109 amount=-3 +kerning first=1058 second=1114 amount=-2 +kerning first=1058 second=1116 amount=-2 +kerning first=1058 second=1117 amount=-2 +kerning first=1058 second=1118 amount=-2 +kerning first=1058 second=1119 amount=-2 +kerning first=1058 second=1169 amount=-2 +kerning first=1058 second=1175 amount=-1 +kerning first=1058 second=1177 amount=-2 +kerning first=1058 second=1179 amount=-2 +kerning first=1058 second=1187 amount=-2 +kerning first=1058 second=1194 amount=-1 +kerning first=1058 second=1195 amount=-3 +kerning first=1058 second=1199 amount=-2 +kerning first=1058 second=1203 amount=-1 +kerning first=1058 second=1220 amount=-2 +kerning first=1058 second=1224 amount=-2 +kerning first=1058 second=1240 amount=-1 +kerning first=1058 second=1241 amount=-3 +kerning first=1058 second=1256 amount=-1 +kerning first=1058 second=1257 amount=-3 +kerning first=1058 second=1263 amount=-2 +kerning first=1058 second=1298 amount=-4 +kerning first=1058 second=8211 amount=-4 +kerning first=1058 second=8212 amount=-4 +kerning first=1058 second=8218 amount=-3 +kerning first=1058 second=8222 amount=-3 +kerning first=1058 second=8230 amount=-3 +kerning first=1058 second=8249 amount=-3 +kerning first=1058 second=8250 amount=-1 +kerning first=1059 second=44 amount=-1 +kerning first=1059 second=46 amount=-1 +kerning first=1059 second=65 amount=-2 +kerning first=1059 second=193 amount=-2 +kerning first=1059 second=194 amount=-2 +kerning first=1059 second=196 amount=-2 +kerning first=1059 second=197 amount=-2 +kerning first=1059 second=198 amount=-2 +kerning first=1059 second=256 amount=-2 +kerning first=1059 second=258 amount=-2 +kerning first=1059 second=260 amount=-2 +kerning first=1059 second=913 amount=-2 +kerning first=1059 second=916 amount=-2 +kerning first=1059 second=923 amount=-2 +kerning first=1059 second=1033 amount=-1 +kerning first=1059 second=1040 amount=-2 +kerning first=1059 second=1044 amount=-1 +kerning first=1059 second=1051 amount=-1 +kerning first=1059 second=1298 amount=-1 +kerning first=1059 second=8218 amount=-1 +kerning first=1059 second=8222 amount=-1 +kerning first=1059 second=8230 amount=-1 +kerning first=1060 second=84 amount=-3 +kerning first=1060 second=88 amount=-5 +kerning first=1060 second=354 amount=-3 +kerning first=1060 second=356 amount=-3 +kerning first=1060 second=932 amount=-3 +kerning first=1060 second=935 amount=-5 +kerning first=1060 second=1026 amount=-3 +kerning first=1060 second=1033 amount=-3 +kerning first=1060 second=1035 amount=-3 +kerning first=1060 second=1044 amount=-3 +kerning first=1060 second=1046 amount=-5 +kerning first=1060 second=1051 amount=-3 +kerning first=1060 second=1058 amount=-3 +kerning first=1060 second=1061 amount=-5 +kerning first=1060 second=1066 amount=-3 +kerning first=1060 second=1174 amount=-5 +kerning first=1060 second=1184 amount=-3 +kerning first=1060 second=1202 amount=-5 +kerning first=1060 second=1298 amount=-3 +kerning first=1061 second=38 amount=-2 +kerning first=1061 second=45 amount=-3 +kerning first=1061 second=63 amount=-2 +kerning first=1061 second=67 amount=-3 +kerning first=1061 second=71 amount=-3 +kerning first=1061 second=74 amount=-1 +kerning first=1061 second=79 amount=-3 +kerning first=1061 second=81 amount=-3 +kerning first=1061 second=83 amount=-1 +kerning first=1061 second=97 amount=-1 +kerning first=1061 second=99 amount=-2 +kerning first=1061 second=100 amount=-2 +kerning first=1061 second=101 amount=-2 +kerning first=1061 second=111 amount=-2 +kerning first=1061 second=113 amount=-2 +kerning first=1061 second=115 amount=-1 +kerning first=1061 second=116 amount=-1 +kerning first=1061 second=117 amount=-1 +kerning first=1061 second=118 amount=-3 +kerning first=1061 second=119 amount=-3 +kerning first=1061 second=121 amount=-1 +kerning first=1061 second=171 amount=-3 +kerning first=1061 second=173 amount=-3 +kerning first=1061 second=187 amount=-1 +kerning first=1061 second=199 amount=-3 +kerning first=1061 second=210 amount=-3 +kerning first=1061 second=211 amount=-3 +kerning first=1061 second=212 amount=-3 +kerning first=1061 second=213 amount=-3 +kerning first=1061 second=214 amount=-3 +kerning first=1061 second=216 amount=-3 +kerning first=1061 second=224 amount=-1 +kerning first=1061 second=225 amount=-1 +kerning first=1061 second=226 amount=-1 +kerning first=1061 second=227 amount=-1 +kerning first=1061 second=228 amount=-1 +kerning first=1061 second=229 amount=-1 +kerning first=1061 second=230 amount=-1 +kerning first=1061 second=231 amount=-2 +kerning first=1061 second=232 amount=-2 +kerning first=1061 second=233 amount=-2 +kerning first=1061 second=234 amount=-2 +kerning first=1061 second=235 amount=-2 +kerning first=1061 second=240 amount=-2 +kerning first=1061 second=242 amount=-2 +kerning first=1061 second=243 amount=-2 +kerning first=1061 second=244 amount=-2 +kerning first=1061 second=245 amount=-2 +kerning first=1061 second=246 amount=-2 +kerning first=1061 second=248 amount=-2 +kerning first=1061 second=249 amount=-1 +kerning first=1061 second=250 amount=-1 +kerning first=1061 second=251 amount=-1 +kerning first=1061 second=252 amount=-1 +kerning first=1061 second=253 amount=-1 +kerning first=1061 second=257 amount=-1 +kerning first=1061 second=259 amount=-1 +kerning first=1061 second=261 amount=-1 +kerning first=1061 second=262 amount=-3 +kerning first=1061 second=263 amount=-2 +kerning first=1061 second=266 amount=-3 +kerning first=1061 second=267 amount=-2 +kerning first=1061 second=268 amount=-3 +kerning first=1061 second=269 amount=-2 +kerning first=1061 second=271 amount=-2 +kerning first=1061 second=273 amount=-2 +kerning first=1061 second=275 amount=-2 +kerning first=1061 second=277 amount=-2 +kerning first=1061 second=279 amount=-2 +kerning first=1061 second=281 amount=-2 +kerning first=1061 second=283 amount=-2 +kerning first=1061 second=286 amount=-3 +kerning first=1061 second=288 amount=-3 +kerning first=1061 second=290 amount=-3 +kerning first=1061 second=332 amount=-3 +kerning first=1061 second=333 amount=-2 +kerning first=1061 second=334 amount=-3 +kerning first=1061 second=335 amount=-2 +kerning first=1061 second=336 amount=-3 +kerning first=1061 second=337 amount=-2 +kerning first=1061 second=338 amount=-3 +kerning first=1061 second=339 amount=-2 +kerning first=1061 second=346 amount=-1 +kerning first=1061 second=347 amount=-1 +kerning first=1061 second=350 amount=-1 +kerning first=1061 second=351 amount=-1 +kerning first=1061 second=352 amount=-1 +kerning first=1061 second=353 amount=-1 +kerning first=1061 second=355 amount=-1 +kerning first=1061 second=357 amount=-1 +kerning first=1061 second=359 amount=-1 +kerning first=1061 second=361 amount=-1 +kerning first=1061 second=363 amount=-1 +kerning first=1061 second=365 amount=-1 +kerning first=1061 second=367 amount=-1 +kerning first=1061 second=369 amount=-1 +kerning first=1061 second=371 amount=-1 +kerning first=1061 second=373 amount=-3 +kerning first=1061 second=375 amount=-1 +kerning first=1061 second=920 amount=-3 +kerning first=1061 second=927 amount=-3 +kerning first=1061 second=934 amount=-5 +kerning first=1061 second=940 amount=-2 +kerning first=1061 second=941 amount=-2 +kerning first=1061 second=943 amount=-1 +kerning first=1061 second=945 amount=-2 +kerning first=1061 second=947 amount=-3 +kerning first=1061 second=949 amount=-2 +kerning first=1061 second=950 amount=-2 +kerning first=1061 second=952 amount=-2 +kerning first=1061 second=953 amount=-1 +kerning first=1061 second=957 amount=-3 +kerning first=1061 second=959 amount=-2 +kerning first=1061 second=962 amount=-2 +kerning first=1061 second=963 amount=-2 +kerning first=1061 second=964 amount=-3 +kerning first=1061 second=965 amount=-1 +kerning first=1061 second=966 amount=-2 +kerning first=1061 second=967 amount=-2 +kerning first=1061 second=968 amount=-1 +kerning first=1061 second=969 amount=-2 +kerning first=1061 second=970 amount=-1 +kerning first=1061 second=972 amount=-2 +kerning first=1061 second=973 amount=-1 +kerning first=1061 second=974 amount=-2 +kerning first=1061 second=1028 amount=-3 +kerning first=1061 second=1029 amount=-1 +kerning first=1061 second=1032 amount=-1 +kerning first=1061 second=1047 amount=-2 +kerning first=1061 second=1054 amount=-3 +kerning first=1061 second=1057 amount=-3 +kerning first=1061 second=1060 amount=-5 +kerning first=1061 second=1063 amount=-1 +kerning first=1061 second=1069 amount=-2 +kerning first=1061 second=1072 amount=-1 +kerning first=1061 second=1077 amount=-2 +kerning first=1061 second=1079 amount=-2 +kerning first=1061 second=1086 amount=-2 +kerning first=1061 second=1089 amount=-2 +kerning first=1061 second=1090 amount=-3 +kerning first=1061 second=1091 amount=-1 +kerning first=1061 second=1092 amount=-2 +kerning first=1061 second=1098 amount=-3 +kerning first=1061 second=1101 amount=-2 +kerning first=1061 second=1104 amount=-2 +kerning first=1061 second=1105 amount=-2 +kerning first=1061 second=1108 amount=-2 +kerning first=1061 second=1109 amount=-1 +kerning first=1061 second=1118 amount=-1 +kerning first=1061 second=1176 amount=-2 +kerning first=1061 second=1177 amount=-2 +kerning first=1061 second=1185 amount=-3 +kerning first=1061 second=1194 amount=-3 +kerning first=1061 second=1195 amount=-2 +kerning first=1061 second=1199 amount=-3 +kerning first=1061 second=1240 amount=-3 +kerning first=1061 second=1241 amount=-2 +kerning first=1061 second=1256 amount=-3 +kerning first=1061 second=1257 amount=-2 +kerning first=1061 second=1263 amount=-1 +kerning first=1061 second=8211 amount=-3 +kerning first=1061 second=8212 amount=-3 +kerning first=1061 second=8249 amount=-3 +kerning first=1061 second=8250 amount=-1 +kerning first=1062 second=34 amount=-2 +kerning first=1062 second=39 amount=-2 +kerning first=1062 second=45 amount=-2 +kerning first=1062 second=63 amount=-2 +kerning first=1062 second=67 amount=-1 +kerning first=1062 second=71 amount=-1 +kerning first=1062 second=79 amount=-1 +kerning first=1062 second=81 amount=-1 +kerning first=1062 second=84 amount=-2 +kerning first=1062 second=85 amount=-1 +kerning first=1062 second=89 amount=-2 +kerning first=1062 second=99 amount=-1 +kerning first=1062 second=100 amount=-1 +kerning first=1062 second=101 amount=-1 +kerning first=1062 second=106 amount=7 +kerning first=1062 second=111 amount=-1 +kerning first=1062 second=113 amount=-1 +kerning first=1062 second=118 amount=-2 +kerning first=1062 second=119 amount=-2 +kerning first=1062 second=171 amount=-1 +kerning first=1062 second=173 amount=-2 +kerning first=1062 second=199 amount=-1 +kerning first=1062 second=210 amount=-1 +kerning first=1062 second=211 amount=-1 +kerning first=1062 second=212 amount=-1 +kerning first=1062 second=213 amount=-1 +kerning first=1062 second=214 amount=-1 +kerning first=1062 second=216 amount=-1 +kerning first=1062 second=217 amount=-1 +kerning first=1062 second=218 amount=-1 +kerning first=1062 second=219 amount=-1 +kerning first=1062 second=220 amount=-1 +kerning first=1062 second=221 amount=-2 +kerning first=1062 second=231 amount=-1 +kerning first=1062 second=232 amount=-1 +kerning first=1062 second=233 amount=-1 +kerning first=1062 second=234 amount=-1 +kerning first=1062 second=235 amount=-1 +kerning first=1062 second=240 amount=-1 +kerning first=1062 second=242 amount=-1 +kerning first=1062 second=243 amount=-1 +kerning first=1062 second=244 amount=-1 +kerning first=1062 second=245 amount=-1 +kerning first=1062 second=246 amount=-1 +kerning first=1062 second=248 amount=-1 +kerning first=1062 second=262 amount=-1 +kerning first=1062 second=263 amount=-1 +kerning first=1062 second=266 amount=-1 +kerning first=1062 second=267 amount=-1 +kerning first=1062 second=268 amount=-1 +kerning first=1062 second=269 amount=-1 +kerning first=1062 second=271 amount=-1 +kerning first=1062 second=273 amount=-1 +kerning first=1062 second=275 amount=-1 +kerning first=1062 second=277 amount=-1 +kerning first=1062 second=279 amount=-1 +kerning first=1062 second=281 amount=-1 +kerning first=1062 second=283 amount=-1 +kerning first=1062 second=286 amount=-1 +kerning first=1062 second=288 amount=-1 +kerning first=1062 second=290 amount=-1 +kerning first=1062 second=332 amount=-1 +kerning first=1062 second=333 amount=-1 +kerning first=1062 second=334 amount=-1 +kerning first=1062 second=335 amount=-1 +kerning first=1062 second=336 amount=-1 +kerning first=1062 second=337 amount=-1 +kerning first=1062 second=338 amount=-1 kerning first=1062 second=339 amount=-1 -kerning first=1065 second=101 amount=-1 -kerning first=65 second=8249 amount=-3 -kerning first=74 second=85 amount=-2 -kerning first=1094 second=263 amount=-1 -kerning first=214 second=235 amount=-1 -kerning first=952 second=212 amount=-2 -kerning first=1257 second=102 amount=-1 -kerning first=251 second=8216 amount=-3 -kerning first=260 second=74 amount=-1 -kerning first=971 second=1118 amount=-1 -kerning first=164 second=8250 amount=-1 -kerning first=52 second=336 amount=-2 -kerning first=1063 second=970 amount=-1 -kerning first=195 second=248 amount=-1 -kerning first=313 second=171 amount=-3 -kerning first=330 second=8217 amount=-3 -kerning first=235 second=1076 amount=-1 -kerning first=950 second=1185 amount=-3 -kerning first=118 second=337 amount=-1 -kerning first=121 second=99 amount=-1 -kerning first=258 second=940 amount=-1 -kerning first=381 second=379 amount=1 -kerning first=36 second=111 amount=-1 -kerning first=1026 second=1038 amount=-2 -kerning first=175 second=261 amount=-1 -kerning first=199 second=198 amount=-1 -kerning first=8361 second=268 amount=-2 -kerning first=1099 second=368 amount=-2 -kerning first=365 second=187 amount=-1 -kerning first=951 second=8220 amount=-3 -kerning first=122 second=277 amount=-1 -kerning first=37 second=291 amount=-1 -kerning first=179 second=211 amount=-2 -kerning first=287 second=1098 amount=-3 -kerning first=8230 second=973 amount=-1 -kerning first=200 second=353 amount=-1 -kerning first=203 second=113 amount=-1 -kerning first=318 second=263 amount=-1 -kerning first=8365 second=216 amount=-2 -kerning first=80 second=365 amount=-1 -kerning first=1187 second=240 amount=-1 -kerning first=960 second=943 amount=-1 -kerning first=963 second=252 amount=-1 -kerning first=126 second=224 amount=-1 -kerning first=1298 second=1256 amount=-2 -kerning first=268 second=354 amount=-1 -kerning first=1241 second=39 amount=-1 -kerning first=177 second=1184 amount=-5 -kerning first=180 second=366 amount=-2 -kerning first=296 second=279 amount=-1 -kerning first=291 second=970 amount=-1 -kerning first=64 second=171 amount=-3 -kerning first=8363 second=1195 amount=-1 -kerning first=8366 second=371 amount=-1 -kerning first=902 second=103 amount=-1 -kerning first=78 second=8217 amount=-3 -kerning first=247 second=367 amount=-1 -kerning first=244 second=1185 amount=-1 -kerning first=1039 second=1101 amount=-1 -kerning first=300 second=226 amount=-1 -kerning first=68 second=88 amount=-3 -kerning first=1081 second=268 amount=-2 -kerning first=325 second=368 amount=-2 -kerning first=8369 second=1069 amount=-1 -kerning first=900 second=972 amount=-1 -kerning first=903 second=281 amount=-1 -kerning first=88 second=250 amount=-1 -kerning first=354 second=65 amount=-6 -kerning first=108 second=1241 amount=-1 -kerning first=245 second=8220 amount=-1 -kerning first=374 second=227 amount=-4 -kerning first=968 second=357 amount=-1 -kerning first=971 second=117 amount=-1 -kerning first=161 second=1079 amount=-1 -kerning first=167 second=89 amount=-5 -kerning first=43 second=1098 amount=-3 -kerning first=49 second=101 amount=-1 -kerning first=189 second=251 amount=-1 -kerning first=66 second=955 amount=-1 -kerning first=69 second=263 amount=-1 -kerning first=1087 second=216 amount=-2 -kerning first=323 second=8221 amount=-3 -kerning first=1170 second=118 amount=-4 -kerning first=352 second=916 amount=-1 -kerning first=946 second=370 amount=-2 -kerning first=115 second=102 amount=-1 -kerning first=1219 second=283 amount=-1 -kerning first=252 second=943 amount=-1 -kerning first=255 second=252 amount=-1 -kerning first=372 second=1256 amount=-2 -kerning first=1026 second=67 amount=-2 -kerning first=168 second=266 amount=-2 -kerning first=1241 second=8222 amount=-1 -kerning first=47 second=970 amount=-1 -kerning first=50 second=279 amount=-1 -kerning first=1064 second=229 amount=-1 -kerning first=73 second=213 amount=-2 -kerning first=1084 second=1195 amount=-1 -kerning first=905 second=1257 amount=-1 -kerning first=96 second=115 amount=-1 -kerning first=93 second=355 amount=-1 -kerning first=236 second=267 amount=-1 -kerning first=1027 second=242 amount=-1 -kerning first=172 second=214 amount=-2 -kerning first=8224 second=287 amount=-1 -kerning first=54 second=226 amount=-1 -kerning first=1065 second=1240 amount=-1 +kerning first=1062 second=354 amount=-2 +kerning first=1062 second=356 amount=-2 +kerning first=1062 second=360 amount=-1 +kerning first=1062 second=362 amount=-1 +kerning first=1062 second=364 amount=-1 +kerning first=1062 second=366 amount=-1 +kerning first=1062 second=368 amount=-1 +kerning first=1062 second=370 amount=-1 +kerning first=1062 second=373 amount=-2 +kerning first=1062 second=374 amount=-2 +kerning first=1062 second=376 amount=-2 +kerning first=1062 second=920 amount=-1 +kerning first=1062 second=927 amount=-1 +kerning first=1062 second=932 amount=-2 +kerning first=1062 second=933 amount=-2 +kerning first=1062 second=934 amount=-2 +kerning first=1062 second=939 amount=-2 +kerning first=1062 second=940 amount=-1 +kerning first=1062 second=941 amount=-1 +kerning first=1062 second=945 amount=-1 +kerning first=1062 second=947 amount=-2 +kerning first=1062 second=949 amount=-1 +kerning first=1062 second=957 amount=-2 +kerning first=1062 second=959 amount=-1 +kerning first=1062 second=962 amount=-1 +kerning first=1062 second=963 amount=-1 +kerning first=1062 second=964 amount=-2 +kerning first=1062 second=966 amount=-1 +kerning first=1062 second=972 amount=-1 +kerning first=1062 second=1026 amount=-2 +kerning first=1062 second=1028 amount=-1 +kerning first=1062 second=1035 amount=-2 +kerning first=1062 second=1038 amount=-1 +kerning first=1062 second=1054 amount=-1 +kerning first=1062 second=1057 amount=-1 +kerning first=1062 second=1058 amount=-2 +kerning first=1062 second=1059 amount=-1 +kerning first=1062 second=1060 amount=-2 +kerning first=1062 second=1063 amount=-2 +kerning first=1062 second=1066 amount=-2 +kerning first=1062 second=1077 amount=-1 +kerning first=1062 second=1086 amount=-1 +kerning first=1062 second=1089 amount=-1 +kerning first=1062 second=1090 amount=-2 +kerning first=1062 second=1092 amount=-1 +kerning first=1062 second=1098 amount=-2 +kerning first=1062 second=1104 amount=-1 +kerning first=1062 second=1105 amount=-1 +kerning first=1062 second=1108 amount=-1 +kerning first=1062 second=1112 amount=7 +kerning first=1062 second=1184 amount=-2 +kerning first=1062 second=1185 amount=-2 +kerning first=1062 second=1194 amount=-1 +kerning first=1062 second=1195 amount=-1 +kerning first=1062 second=1198 amount=-2 +kerning first=1062 second=1199 amount=-2 +kerning first=1062 second=1240 amount=-1 +kerning first=1062 second=1241 amount=-1 +kerning first=1062 second=1256 amount=-1 +kerning first=1062 second=1257 amount=-1 kerning first=1062 second=1262 amount=-1 -kerning first=194 second=356 amount=-5 -kerning first=197 second=116 amount=-1 -kerning first=74 second=368 amount=-2 -kerning first=214 second=972 amount=-1 -kerning first=1223 second=1263 amount=-1 -kerning first=120 second=227 amount=-1 -kerning first=260 second=357 amount=-1 -kerning first=174 second=369 amount=-1 -kerning first=8240 second=232 amount=-1 -kerning first=316 second=216 amount=-2 -kerning first=72 second=8221 amount=-3 -kerning first=221 second=228 amount=-4 -kerning first=238 second=1194 amount=-2 -kerning first=1299 second=333 amount=-1 -kerning first=182 second=79 amount=-2 -kerning first=294 second=229 amount=-1 -kerning first=1074 second=271 amount=-1 -kerning first=317 second=371 amount=-1 -kerning first=314 second=1195 amount=-1 -kerning first=8369 second=84 amount=-5 -kerning first=962 second=360 amount=-2 -kerning first=37 second=1101 amount=-1 -kerning first=1041 second=287 amount=-1 -kerning first=179 second=945 amount=-1 -kerning first=63 second=268 amount=-2 -kerning first=318 second=1069 amount=-1 -kerning first=8370 second=259 amount=-1 -kerning first=8377 second=34 amount=-3 -kerning first=901 second=231 amount=-1 -kerning first=934 second=1202 amount=-5 -kerning first=940 second=373 amount=-2 -kerning first=162 second=269 amount=-1 -kerning first=41 second=973 amount=-1 -kerning first=1048 second=232 amount=-1 -kerning first=299 second=332 amount=-2 -kerning first=1080 second=374 amount=-5 -kerning first=1168 second=71 amount=-2 -kerning first=948 second=83 amount=-1 -kerning first=1207 second=233 amount=-1 -kerning first=373 second=333 amount=-1 -kerning first=166 second=217 amount=-2 -kerning first=48 second=229 amount=-1 -kerning first=191 second=119 amount=-4 -kerning first=188 second=359 amount=-1 -kerning first=300 second=963 amount=-1 -kerning first=303 second=271 amount=-1 -kerning first=65 second=1195 amount=-1 -kerning first=208 second=1026 amount=-2 -kerning first=906 second=334 amount=-2 -kerning first=903 second=1090 amount=-3 -kerning first=1169 second=246 amount=-1 -kerning first=354 second=346 amount=-1 -kerning first=114 second=230 amount=-1 -kerning first=254 second=360 amount=-2 -kerning first=374 second=964 amount=-2 -kerning first=377 second=273 amount=-1 -kerning first=164 second=947 amount=-4 -kerning first=167 second=372 amount=-5 -kerning first=280 second=287 amount=-1 -kerning first=8221 second=235 amount=-1 -kerning first=49 second=1240 amount=-2 -kerning first=46 second=1262 amount=-1 -kerning first=1063 second=335 amount=-1 -kerning first=69 second=1069 amount=-1 -kerning first=75 second=81 amount=-3 -kerning first=1095 second=259 amount=-1 -kerning first=215 second=231 amount=-1 -kerning first=8377 second=8216 amount=-3 -kerning first=920 second=46 amount=-1 -kerning first=95 second=243 amount=-1 -kerning first=235 second=373 amount=-1 -kerning first=358 second=288 amount=-2 -kerning first=1224 second=336 amount=-2 -kerning first=972 second=1113 amount=-1 -kerning first=1026 second=350 amount=-1 -kerning first=53 second=332 amount=-2 -kerning first=1064 second=966 amount=-1 -kerning first=1070 second=47 amount=-1 -kerning first=196 second=244 amount=-1 -kerning first=1067 second=275 amount=-1 -kerning first=8361 second=87 amount=-5 -kerning first=213 second=1298 amount=-1 -kerning first=923 second=221 amount=-5 -kerning first=1176 second=351 amount=-1 -kerning first=233 second=8230 amount=-1 -kerning first=1179 second=111 amount=-1 -kerning first=951 second=1177 amount=-1 -kerning first=1256 second=967 amount=-1 -kerning first=119 second=333 amount=-1 -kerning first=172 second=949 amount=-1 -kerning first=176 second=257 amount=-1 -kerning first=8230 second=338 amount=-1 -kerning first=54 second=963 amount=-1 -kerning first=57 second=271 amount=-1 -kerning first=318 second=84 amount=-5 -kerning first=341 second=246 amount=-1 -kerning first=926 second=376 amount=-5 -kerning first=100 second=346 amount=-1 -kerning first=1184 second=291 amount=-1 -kerning first=952 second=8212 amount=-2 -kerning first=955 second=1059 amount=-2 -kerning first=123 second=273 amount=-1 -kerning first=126 second=45 amount=-2 -kerning first=38 second=287 amount=-1 -kerning first=291 second=335 amount=-1 -kerning first=296 second=97 amount=-1 -kerning first=61 second=219 amount=-2 -kerning first=198 second=1108 amount=-1 -kerning first=201 second=347 amount=-1 -kerning first=321 second=259 amount=-1 -kerning first=8366 second=212 amount=-2 -kerning first=324 second=34 amount=-1 -kerning first=84 second=121 amount=-2 -kerning first=221 second=965 amount=-2 -kerning first=367 second=336 amount=-2 -kerning first=964 second=248 amount=-1 -kerning first=160 second=220 amount=-2 -kerning first=42 second=232 amount=-1 -kerning first=178 second=1176 amount=-1 -kerning first=182 second=362 amount=-2 -kerning first=294 second=966 amount=-1 -kerning first=297 second=275 amount=-1 -kerning first=62 second=374 amount=-5 -kerning first=1081 second=87 amount=-5 -kerning first=205 second=289 amount=-1 -kerning first=8369 second=367 amount=-1 -kerning first=8364 second=1185 amount=-3 -kerning first=900 second=337 amount=-1 -kerning first=903 second=99 amount=-1 -kerning first=88 second=71 amount=-3 -kerning first=1107 second=940 amount=-1 -kerning first=942 second=261 amount=-1 -kerning first=108 second=233 amount=-1 -kerning first=161 second=375 amount=-1 -kerning first=274 second=290 amount=-2 -kerning first=179 second=8211 amount=-2 -kerning first=1051 second=100 amount=-1 -kerning first=69 second=84 amount=-5 -kerning first=1083 second=262 amount=-2 -kerning first=209 second=234 amount=-1 -kerning first=8365 second=8220 amount=-3 -kerning first=901 second=968 amount=-1 -kerning first=904 second=277 amount=-1 -kerning first=89 second=246 amount=-4 -kerning first=1119 second=199 amount=-2 -kerning first=946 second=211 amount=-2 -kerning first=1219 second=101 amount=-1 -kerning first=249 second=1059 amount=-2 -kerning first=1206 second=339 amount=-1 -kerning first=126 second=8249 amount=-3 -kerning first=168 second=85 amount=-2 -kerning first=278 second=235 amount=-1 -kerning first=47 second=335 amount=-1 -kerning first=50 second=97 amount=-1 -kerning first=70 second=259 amount=-1 -kerning first=73 second=34 amount=-3 -kerning first=324 second=8216 amount=-1 -kerning first=8378 second=943 amount=-1 -kerning first=910 second=224 amount=-4 -kerning first=1168 second=354 amount=-5 -kerning first=1117 second=1118 amount=-1 -kerning first=944 second=1184 amount=-5 -kerning first=948 second=366 amount=-2 -kerning first=113 second=336 amount=-2 -kerning first=1220 second=279 amount=-1 -kerning first=256 second=248 amount=-1 -kerning first=376 second=378 amount=-2 -kerning first=8224 second=103 amount=-1 -kerning first=48 second=966 amount=-1 -kerning first=51 second=275 amount=-1 -kerning first=1085 second=1185 amount=-3 -kerning first=214 second=337 amount=-1 -kerning first=94 second=351 amount=-1 -kerning first=237 second=261 amount=-1 -kerning first=174 second=210 amount=-2 -kerning first=8225 second=281 amount=-1 -kerning first=8221 second=972 amount=-1 -kerning first=195 second=352 amount=-1 -kerning first=313 second=262 amount=-1 -kerning first=1087 second=8220 amount=-3 -kerning first=215 second=968 amount=-1 -kerning first=912 second=1079 amount=-1 -kerning first=95 second=1035 amount=-5 -kerning first=928 second=89 amount=-5 -kerning first=358 second=1098 amount=-3 -kerning first=361 second=339 amount=-1 -kerning first=956 second=251 amount=-1 -kerning first=36 second=235 amount=-1 -kerning first=175 second=365 amount=-1 -kerning first=317 second=212 amount=-2 -kerning first=8361 second=370 amount=-2 -kerning first=73 second=8216 amount=-3 -kerning first=1099 second=943 amount=-1 -kerning first=931 second=266 amount=-2 -kerning first=239 second=1184 amount=-5 -kerning first=365 second=279 amount=-1 -kerning first=125 second=171 amount=-3 -kerning first=172 second=8217 amount=-3 -kerning first=1041 second=103 amount=-1 -kerning first=63 second=87 amount=-5 -kerning first=1075 second=267 amount=-1 -kerning first=318 second=367 amount=-1 -kerning first=80 second=940 amount=-1 -kerning first=1184 second=1101 amount=-1 -kerning first=369 second=226 amount=-1 -kerning first=963 second=356 amount=-5 -kerning first=41 second=338 amount=-2 -kerning first=1044 second=281 amount=-1 -kerning first=184 second=250 amount=-1 -kerning first=180 second=941 amount=-1 -kerning first=64 second=262 amount=-2 -kerning first=204 second=1241 amount=-1 -kerning first=207 second=187 amount=-1 -kerning first=316 second=8220 amount=-3 -kerning first=902 second=227 amount=-1 -kerning first=87 second=199 amount=-2 -kerning first=1117 second=117 amount=-1 -kerning first=104 second=1098 amount=-1 -kerning first=107 second=339 amount=-2 -kerning first=250 second=251 amount=-1 -kerning first=163 second=263 amount=-1 -kerning first=1049 second=228 amount=-1 -kerning first=1081 second=370 amount=-2 -kerning first=325 second=943 amount=-1 -kerning first=900 second=1256 amount=-2 -kerning first=234 second=39 amount=-1 -kerning first=108 second=970 amount=-1 -kerning first=1210 second=229 amount=-1 -kerning first=374 second=328 amount=-3 -kerning first=968 second=920 amount=-2 -kerning first=167 second=213 amount=-2 -kerning first=280 second=103 amount=-1 -kerning first=8221 second=56 amount=-1 -kerning first=8211 second=1026 amount=-4 -kerning first=49 second=225 amount=-1 -kerning first=189 second=355 amount=-1 -kerning first=192 second=115 amount=-1 -kerning first=304 second=267 amount=-1 -kerning first=69 second=367 amount=-1 -kerning first=1170 second=242 amount=-1 -kerning first=946 second=945 amount=-1 -kerning first=1219 second=1240 amount=-2 -kerning first=1206 second=1262 amount=-1 -kerning first=255 second=356 amount=-5 -kerning first=258 second=116 amount=-1 -kerning first=168 second=368 amount=-2 -kerning first=278 second=972 amount=-1 -kerning first=910 second=961 amount=-5 -kerning first=915 second=269 amount=-1 -kerning first=236 second=369 amount=-1 -kerning first=356 second=973 amount=-2 -kerning first=113 second=1224 amount=2 -kerning first=169 second=1066 amount=-5 -kerning first=166 second=8221 amount=-3 -kerning first=287 second=228 amount=-1 -kerning first=8220 second=1298 amount=-3 +kerning first=1062 second=8211 amount=-2 +kerning first=1062 second=8212 amount=-2 +kerning first=1062 second=8216 amount=-2 +kerning first=1062 second=8217 amount=-2 +kerning first=1062 second=8220 amount=-2 +kerning first=1062 second=8221 amount=-2 +kerning first=1062 second=8249 amount=-1 +kerning first=1065 second=34 amount=-2 +kerning first=1065 second=39 amount=-2 +kerning first=1065 second=45 amount=-2 +kerning first=1065 second=63 amount=-2 +kerning first=1065 second=67 amount=-1 +kerning first=1065 second=71 amount=-1 +kerning first=1065 second=79 amount=-1 +kerning first=1065 second=81 amount=-1 +kerning first=1065 second=84 amount=-2 +kerning first=1065 second=85 amount=-1 +kerning first=1065 second=89 amount=-2 +kerning first=1065 second=99 amount=-1 +kerning first=1065 second=100 amount=-1 +kerning first=1065 second=101 amount=-1 +kerning first=1065 second=106 amount=7 +kerning first=1065 second=111 amount=-1 +kerning first=1065 second=113 amount=-1 +kerning first=1065 second=118 amount=-2 +kerning first=1065 second=119 amount=-2 +kerning first=1065 second=171 amount=-1 +kerning first=1065 second=173 amount=-2 +kerning first=1065 second=199 amount=-1 +kerning first=1065 second=210 amount=-1 +kerning first=1065 second=211 amount=-1 +kerning first=1065 second=212 amount=-1 +kerning first=1065 second=213 amount=-1 +kerning first=1065 second=214 amount=-1 +kerning first=1065 second=216 amount=-1 +kerning first=1065 second=217 amount=-1 +kerning first=1065 second=218 amount=-1 +kerning first=1065 second=219 amount=-1 +kerning first=1065 second=220 amount=-1 +kerning first=1065 second=221 amount=-2 +kerning first=1065 second=231 amount=-1 +kerning first=1065 second=232 amount=-1 +kerning first=1065 second=233 amount=-1 +kerning first=1065 second=234 amount=-1 +kerning first=1065 second=235 amount=-1 +kerning first=1065 second=240 amount=-1 +kerning first=1065 second=242 amount=-1 +kerning first=1065 second=243 amount=-1 +kerning first=1065 second=244 amount=-1 +kerning first=1065 second=245 amount=-1 +kerning first=1065 second=246 amount=-1 +kerning first=1065 second=248 amount=-1 +kerning first=1065 second=262 amount=-1 +kerning first=1065 second=263 amount=-1 +kerning first=1065 second=266 amount=-1 +kerning first=1065 second=267 amount=-1 +kerning first=1065 second=268 amount=-1 +kerning first=1065 second=269 amount=-1 +kerning first=1065 second=271 amount=-1 +kerning first=1065 second=273 amount=-1 +kerning first=1065 second=275 amount=-1 +kerning first=1065 second=277 amount=-1 +kerning first=1065 second=279 amount=-1 +kerning first=1065 second=281 amount=-1 +kerning first=1065 second=283 amount=-1 +kerning first=1065 second=286 amount=-1 +kerning first=1065 second=288 amount=-1 +kerning first=1065 second=290 amount=-1 +kerning first=1065 second=332 amount=-1 +kerning first=1065 second=333 amount=-1 +kerning first=1065 second=334 amount=-1 +kerning first=1065 second=335 amount=-1 +kerning first=1065 second=336 amount=-1 +kerning first=1065 second=337 amount=-1 +kerning first=1065 second=338 amount=-1 +kerning first=1065 second=339 amount=-1 +kerning first=1065 second=354 amount=-2 +kerning first=1065 second=356 amount=-2 +kerning first=1065 second=360 amount=-1 +kerning first=1065 second=362 amount=-1 +kerning first=1065 second=364 amount=-1 +kerning first=1065 second=366 amount=-1 +kerning first=1065 second=368 amount=-1 +kerning first=1065 second=370 amount=-1 +kerning first=1065 second=373 amount=-2 +kerning first=1065 second=374 amount=-2 +kerning first=1065 second=376 amount=-2 +kerning first=1065 second=920 amount=-1 +kerning first=1065 second=927 amount=-1 +kerning first=1065 second=932 amount=-2 +kerning first=1065 second=933 amount=-2 +kerning first=1065 second=934 amount=-2 +kerning first=1065 second=939 amount=-2 +kerning first=1065 second=940 amount=-1 +kerning first=1065 second=941 amount=-1 +kerning first=1065 second=945 amount=-1 +kerning first=1065 second=947 amount=-2 +kerning first=1065 second=949 amount=-1 +kerning first=1065 second=957 amount=-2 +kerning first=1065 second=959 amount=-1 kerning first=1065 second=962 amount=-1 -kerning first=197 second=240 amount=-1 -kerning first=306 second=1194 amount=-2 -kerning first=74 second=943 amount=-1 -kerning first=77 second=252 amount=-1 -kerning first=214 second=1256 amount=-2 -kerning first=926 second=217 amount=-2 -kerning first=234 second=8222 amount=-1 -kerning first=363 second=229 amount=-1 -kerning first=960 second=119 amount=-4 -kerning first=955 second=359 amount=-1 -kerning first=1298 second=271 amount=-1 -kerning first=260 second=920 amount=-2 -kerning first=380 second=1195 amount=-1 -kerning first=38 second=103 amount=-1 -kerning first=1028 second=1026 amount=-1 -kerning first=1035 second=286 amount=-2 -kerning first=177 second=253 amount=-1 -kerning first=8240 second=334 amount=-2 -kerning first=8225 second=1090 amount=-3 -kerning first=58 second=267 amount=-1 -kerning first=1073 second=218 amount=-2 -kerning first=928 second=372 amount=-5 -kerning first=1185 second=287 amount=-2 -kerning first=361 second=1262 amount=-2 -kerning first=124 second=268 amount=-2 -kerning first=36 second=972 amount=-1 -kerning first=39 second=281 amount=-1 -kerning first=1039 second=231 amount=-1 -kerning first=1070 second=1202 amount=-3 -kerning first=1074 second=373 amount=-4 -kerning first=965 second=244 amount=-1 -kerning first=161 second=216 amount=-2 -kerning first=274 second=106 amount=1 -kerning first=43 second=228 amount=-1 -kerning first=186 second=118 amount=-4 -kerning first=60 second=1194 amount=-2 -kerning first=63 second=370 amount=-2 -kerning first=1083 second=83 amount=-1 -kerning first=206 second=283 amount=-1 -kerning first=8365 second=1177 amount=-1 -kerning first=8370 second=363 amount=-1 -kerning first=901 second=333 amount=-1 -kerning first=89 second=67 amount=-3 -kerning first=1116 second=245 amount=-2 -kerning first=249 second=359 amount=-1 -kerning first=252 second=119 amount=-4 -kerning first=369 second=963 amount=-1 -kerning first=372 second=271 amount=-3 -kerning first=126 second=1195 amount=-1 -kerning first=162 second=371 amount=-1 -kerning first=271 second=1026 amount=-5 -kerning first=41 second=1257 amount=-1 -kerning first=1044 second=1090 amount=-2 -kerning first=1048 second=334 amount=-2 -kerning first=302 second=218 amount=-2 -kerning first=327 second=360 amount=-2 -kerning first=8366 second=8212 amount=-2 -kerning first=8372 second=1059 amount=-2 -kerning first=905 second=273 amount=-1 -kerning first=902 second=964 amount=-3 -kerning first=87 second=923 amount=-5 -kerning first=910 second=45 amount=-4 -kerning first=90 second=242 amount=-1 -kerning first=227 second=947 amount=-1 -kerning first=1207 second=335 amount=-1 -kerning first=1220 second=97 amount=-1 -kerning first=967 second=1108 amount=-1 -kerning first=163 second=1069 amount=-1 -kerning first=169 second=81 amount=-2 -kerning first=1049 second=965 amount=-1 -kerning first=191 second=243 amount=-1 -kerning first=303 second=373 amount=-4 -kerning first=357 second=232 amount=-1 -kerning first=1210 second=966 amount=-1 -kerning first=1257 second=47 amount=-1 -kerning first=1223 second=275 amount=-1 -kerning first=374 second=1203 amount=-2 -kerning first=8221 second=337 amount=-1 -kerning first=8225 second=99 amount=-1 -kerning first=49 second=962 amount=-1 +kerning first=1065 second=963 amount=-1 +kerning first=1065 second=964 amount=-2 +kerning first=1065 second=966 amount=-1 +kerning first=1065 second=972 amount=-1 +kerning first=1065 second=1026 amount=-2 +kerning first=1065 second=1028 amount=-1 +kerning first=1065 second=1035 amount=-2 +kerning first=1065 second=1038 amount=-1 +kerning first=1065 second=1054 amount=-1 +kerning first=1065 second=1057 amount=-1 +kerning first=1065 second=1058 amount=-2 +kerning first=1065 second=1059 amount=-1 +kerning first=1065 second=1060 amount=-2 +kerning first=1065 second=1063 amount=-2 +kerning first=1065 second=1066 amount=-2 +kerning first=1065 second=1077 amount=-1 +kerning first=1065 second=1086 amount=-1 +kerning first=1065 second=1089 amount=-1 +kerning first=1065 second=1090 amount=-2 +kerning first=1065 second=1092 amount=-1 +kerning first=1065 second=1098 amount=-2 +kerning first=1065 second=1104 amount=-1 +kerning first=1065 second=1105 amount=-1 +kerning first=1065 second=1108 amount=-1 +kerning first=1065 second=1112 amount=7 +kerning first=1065 second=1184 amount=-2 +kerning first=1065 second=1185 amount=-2 +kerning first=1065 second=1194 amount=-1 +kerning first=1065 second=1195 amount=-1 +kerning first=1065 second=1198 amount=-2 +kerning first=1065 second=1199 amount=-2 +kerning first=1065 second=1240 amount=-1 +kerning first=1065 second=1241 amount=-1 +kerning first=1065 second=1256 amount=-1 +kerning first=1065 second=1257 amount=-1 +kerning first=1065 second=1262 amount=-1 +kerning first=1065 second=8211 amount=-2 +kerning first=1065 second=8212 amount=-2 +kerning first=1065 second=8216 amount=-2 +kerning first=1065 second=8217 amount=-2 +kerning first=1065 second=8220 amount=-2 +kerning first=1065 second=8221 amount=-2 +kerning first=1065 second=8249 amount=-1 +kerning first=1066 second=34 amount=-2 +kerning first=1066 second=39 amount=-2 +kerning first=1066 second=63 amount=-5 +kerning first=1066 second=65 amount=-1 +kerning first=1066 second=84 amount=-5 +kerning first=1066 second=88 amount=-2 +kerning first=1066 second=89 amount=-5 +kerning first=1066 second=118 amount=-1 +kerning first=1066 second=119 amount=-1 +kerning first=1066 second=193 amount=-1 +kerning first=1066 second=194 amount=-1 +kerning first=1066 second=196 amount=-1 +kerning first=1066 second=197 amount=-1 +kerning first=1066 second=198 amount=-1 kerning first=1066 second=221 amount=-5 -kerning first=1087 second=1177 amount=-1 -kerning first=1095 second=363 amount=-1 -kerning first=215 second=333 amount=-1 -kerning first=912 second=375 amount=-1 -kerning first=238 second=257 amount=-1 -kerning first=946 second=8211 amount=-2 -kerning first=118 second=271 amount=-1 -kerning first=1240 second=84 amount=-2 -kerning first=281 second=1090 amount=-1 -kerning first=8226 second=277 amount=-1 -kerning first=8222 second=968 amount=-1 -kerning first=56 second=218 amount=-2 -kerning first=1067 second=376 amount=-5 -kerning first=196 second=346 amount=-1 -kerning first=8361 second=211 amount=-2 -kerning first=76 second=360 amount=-1 -kerning first=1096 second=1059 amount=-2 -kerning first=910 second=8249 amount=-3 -kerning first=931 second=85 amount=-2 -kerning first=1179 second=235 amount=-1 -kerning first=365 second=97 amount=-1 -kerning first=37 second=231 amount=-1 -kerning first=176 second=361 amount=-1 -kerning first=179 second=121 amount=-1 -kerning first=287 second=965 amount=-1 -kerning first=57 second=373 amount=-4 -kerning first=197 second=1028 amount=-2 -kerning first=200 second=288 amount=-2 -kerning first=1103 second=248 amount=-1 -kerning first=223 second=220 amount=-2 -kerning first=103 second=232 amount=-1 -kerning first=240 second=1176 amount=-1 -kerning first=246 second=122 amount=-1 -kerning first=363 second=966 amount=-1 -kerning first=123 second=374 amount=-5 -kerning first=1044 second=99 amount=-1 -kerning first=184 second=71 amount=-2 -kerning first=296 second=221 amount=-5 -kerning first=55 second=8230 amount=-4 -kerning first=64 second=83 amount=-1 -kerning first=1073 second=953 amount=-1 -kerning first=204 second=233 amount=-1 -kerning first=316 second=1177 amount=-1 -kerning first=321 second=363 amount=-1 -kerning first=84 second=245 amount=-3 -kerning first=101 second=1299 amount=-1 -kerning first=1202 second=100 amount=-1 -kerning first=964 second=352 amount=-1 -kerning first=163 second=84 amount=-5 -kerning first=273 second=234 amount=-1 -kerning first=42 second=334 amount=-2 -kerning first=1039 second=968 amount=-1 -kerning first=185 second=246 amount=-1 -kerning first=1046 second=277 amount=-2 -kerning first=297 second=376 amount=-5 -kerning first=1081 second=211 amount=-2 -kerning first=322 second=1059 amount=-2 -kerning first=317 second=8212 amount=-2 -kerning first=1118 second=113 amount=-1 -kerning first=942 second=365 amount=-1 -kerning first=108 second=335 amount=-1 -kerning first=164 second=259 amount=-1 -kerning first=167 second=34 amount=-3 -kerning first=43 second=965 amount=-1 -kerning first=1051 second=224 amount=-1 -kerning first=1083 second=366 amount=-2 -kerning first=209 second=336 amount=-2 -kerning first=330 second=248 amount=-1 -kerning first=89 second=350 amount=-1 -kerning first=1219 second=225 amount=-1 -kerning first=278 second=337 amount=-1 -kerning first=8222 second=52 amount=-1 -kerning first=50 second=221 amount=-5 -kerning first=193 second=111 amount=-1 -kerning first=305 second=261 amount=-1 -kerning first=190 second=351 amount=-1 -kerning first=70 second=363 amount=-1 -kerning first=302 second=953 amount=-1 -kerning first=210 second=967 amount=-1 -kerning first=334 second=198 amount=-2 -kerning first=93 second=290 amount=-2 -kerning first=236 second=210 amount=-2 -kerning first=356 second=338 amount=-1 -kerning first=951 second=250 amount=-1 -kerning first=948 second=941 amount=-1 -kerning first=256 second=352 amount=-1 -kerning first=376 second=954 amount=-3 -kerning first=379 second=262 amount=-1 -kerning first=973 second=1241 amount=-1 -kerning first=1027 second=187 amount=-1 -kerning first=169 second=364 amount=-2 -kerning first=282 second=277 amount=-1 -kerning first=8224 second=227 amount=-1 -kerning first=51 second=376 amount=-5 -kerning first=191 second=1035 amount=-5 -kerning first=194 second=291 amount=-1 +kerning first=1066 second=256 amount=-1 +kerning first=1066 second=258 amount=-1 +kerning first=1066 second=260 amount=-1 +kerning first=1066 second=354 amount=-5 +kerning first=1066 second=356 amount=-5 +kerning first=1066 second=373 amount=-1 +kerning first=1066 second=374 amount=-5 +kerning first=1066 second=376 amount=-5 +kerning first=1066 second=913 amount=-1 +kerning first=1066 second=916 amount=-1 +kerning first=1066 second=923 amount=-1 +kerning first=1066 second=932 amount=-5 +kerning first=1066 second=933 amount=-5 +kerning first=1066 second=935 amount=-2 +kerning first=1066 second=939 amount=-5 +kerning first=1066 second=947 amount=-1 +kerning first=1066 second=957 amount=-1 +kerning first=1066 second=964 amount=-2 +kerning first=1066 second=1026 amount=-5 +kerning first=1066 second=1035 amount=-5 +kerning first=1066 second=1040 amount=-1 +kerning first=1066 second=1046 amount=-2 +kerning first=1066 second=1058 amount=-5 +kerning first=1066 second=1061 amount=-2 +kerning first=1066 second=1063 amount=-1 +kerning first=1066 second=1066 amount=-5 +kerning first=1066 second=1071 amount=-1 +kerning first=1066 second=1090 amount=-2 +kerning first=1066 second=1098 amount=-2 +kerning first=1066 second=1174 amount=-2 +kerning first=1066 second=1184 amount=-5 +kerning first=1066 second=1185 amount=-2 +kerning first=1066 second=1198 amount=-5 +kerning first=1066 second=1199 amount=-1 +kerning first=1066 second=1202 amount=-2 +kerning first=1066 second=8216 amount=-2 +kerning first=1066 second=8217 amount=-2 +kerning first=1066 second=8220 amount=-2 +kerning first=1066 second=8221 amount=-2 +kerning first=1068 second=34 amount=-2 +kerning first=1068 second=39 amount=-2 +kerning first=1068 second=63 amount=-5 +kerning first=1068 second=65 amount=-1 +kerning first=1068 second=84 amount=-5 +kerning first=1068 second=88 amount=-2 kerning first=1068 second=89 amount=-5 -kerning first=338 second=113 amount=-1 -kerning first=916 second=263 amount=-1 -kerning first=237 second=365 amount=-1 -kerning first=167 second=8216 amount=-3 -kerning first=49 second=8250 amount=-1 -kerning first=1073 second=39 amount=-3 -kerning first=313 second=366 amount=-1 -kerning first=8363 second=79 amount=-2 -kerning first=78 second=248 amount=-1 -kerning first=221 second=171 amount=-3 -kerning first=928 second=213 amount=-2 -kerning first=1185 second=103 amount=-2 -kerning first=235 second=8217 amount=-1 -kerning first=956 second=355 amount=-1 -kerning first=1299 second=267 amount=-1 -kerning first=124 second=87 amount=-5 -kerning first=36 second=337 amount=-1 -kerning first=39 second=99 amount=-1 -kerning first=178 second=249 amount=-1 -kerning first=175 second=940 amount=-1 -kerning first=59 second=261 amount=-1 -kerning first=1074 second=214 amount=-2 -kerning first=56 second=953 amount=-1 -kerning first=8361 second=945 amount=-1 -kerning first=931 second=368 amount=-2 -kerning first=105 second=100 amount=-1 -kerning first=1186 second=281 amount=-1 -kerning first=1179 second=972 amount=-1 -kerning first=125 second=262 amount=-2 -kerning first=37 second=968 amount=-1 -kerning first=40 second=277 amount=-1 -kerning first=1041 second=227 amount=-1 -kerning first=183 second=199 amount=-2 -kerning first=298 second=89 amount=-5 -kerning first=63 second=211 amount=-2 -kerning first=203 second=339 amount=-1 -kerning first=206 second=101 amount=-1 -kerning first=200 second=1098 amount=-3 -kerning first=323 second=251 amount=-1 -kerning first=86 second=113 amount=-3 -kerning first=934 second=1066 amount=-5 -kerning first=926 second=8221 amount=-3 -kerning first=947 second=228 amount=-1 -kerning first=162 second=212 amount=-2 -kerning first=275 second=102 amount=-1 -kerning first=8212 second=55 amount=-3 -kerning first=184 second=354 amount=-5 -kerning first=180 second=1118 amount=-1 -kerning first=299 second=266 amount=-2 -kerning first=302 second=39 amount=-3 -kerning first=61 second=1184 amount=-5 -kerning first=64 second=366 amount=-2 -kerning first=1084 second=79 amount=-2 -kerning first=207 second=279 amount=-1 -kerning first=204 second=970 amount=-1 -kerning first=8372 second=359 amount=-1 -kerning first=8378 second=119 amount=-4 -kerning first=944 second=253 amount=-1 -kerning first=250 second=355 amount=-1 -kerning first=253 second=115 amount=-1 -kerning first=373 second=267 amount=-1 -kerning first=163 second=367 amount=-1 -kerning first=160 second=1185 amount=-3 -kerning first=8216 second=230 amount=-1 -kerning first=45 second=379 amount=-2 -kerning first=185 second=1038 amount=-2 -kerning first=303 second=214 amount=-2 -kerning first=1081 second=945 amount=-1 -kerning first=906 second=268 amount=-2 -kerning first=354 second=281 amount=-3 -kerning first=111 second=380 amount=-1 -kerning first=161 second=8220 amount=-3 -kerning first=280 second=227 amount=-1 -kerning first=52 second=89 amount=-5 -kerning first=1063 second=269 amount=-1 -kerning first=304 second=369 amount=-1 -kerning first=72 second=251 amount=-1 -kerning first=212 second=381 amount=-1 -kerning first=912 second=216 amount=-2 -kerning first=229 second=8221 amount=-1 -kerning first=358 second=228 amount=-1 -kerning first=953 second=118 amount=-2 -kerning first=1219 second=962 amount=-1 -kerning first=258 second=240 amount=-1 -kerning first=375 second=1194 amount=-2 -kerning first=1026 second=283 amount=-1 -kerning first=168 second=943 amount=-1 -kerning first=278 second=1256 amount=-2 -kerning first=281 second=382 amount=-1 -kerning first=56 second=39 amount=-3 -kerning first=53 second=266 amount=-2 -kerning first=1067 second=217 amount=-2 -kerning first=314 second=79 amount=-2 -kerning first=1096 second=359 amount=-1 -kerning first=1099 second=119 amount=-4 -kerning first=910 second=1195 amount=-4 -kerning first=915 second=371 amount=-1 -kerning first=1171 second=1026 amount=-5 -kerning first=1176 second=286 amount=-2 -kerning first=239 second=253 amount=-1 -kerning first=356 second=1257 amount=-3 -kerning first=119 second=267 amount=-1 -kerning first=1263 second=218 amount=-2 -kerning first=8224 second=964 amount=-3 -kerning first=57 second=214 amount=-2 -kerning first=1065 second=947 amount=-2 -kerning first=194 second=1101 amount=-1 -kerning first=311 second=945 amount=-2 -kerning first=77 second=356 amount=-5 -kerning first=80 second=116 amount=-1 -kerning first=916 second=1069 amount=-1 -kerning first=934 second=81 amount=-2 -kerning first=100 second=281 amount=-1 -kerning first=1184 second=231 amount=-2 -kerning first=960 second=243 amount=-1 -kerning first=1298 second=373 amount=-4 -kerning first=38 second=227 amount=-1 -kerning first=177 second=357 amount=-1 -kerning first=180 second=117 amount=-1 -kerning first=291 second=269 amount=-1 -kerning first=8260 second=220 amount=-2 -kerning first=58 second=369 amount=-1 -kerning first=198 second=973 amount=-1 -kerning first=8363 second=362 amount=-2 -kerning first=936 second=256 amount=-3 -kerning first=247 second=118 amount=-4 -kerning first=121 second=1194 amount=-2 -kerning first=124 second=370 amount=-2 -kerning first=1262 second=8230 amount=-1 -kerning first=36 second=1256 amount=-2 -kerning first=1039 second=333 amount=-1 -kerning first=185 second=67 amount=-2 -kerning first=297 second=217 amount=-2 -kerning first=56 second=8222 amount=-1 -kerning first=65 second=79 amount=-2 -kerning first=1074 second=949 amount=-1 -kerning first=1078 second=257 amount=-1 -kerning first=205 second=229 amount=-1 -kerning first=322 second=359 amount=-1 -kerning first=8361 second=8211 amount=-2 -kerning first=325 second=119 amount=-4 -kerning first=900 second=271 amount=-1 -kerning first=102 second=1257 amount=-1 -kerning first=1186 second=1090 amount=-2 -kerning first=371 second=218 amount=-2 -kerning first=965 second=346 amount=-1 -kerning first=274 second=230 amount=-1 -kerning first=1051 second=45 amount=-2 -kerning first=186 second=242 amount=-1 -kerning first=1041 second=964 amount=-3 -kerning first=298 second=372 amount=-5 -kerning first=295 second=947 amount=-1 -kerning first=63 second=945 amount=-1 -kerning first=206 second=1240 amount=-2 -kerning first=203 second=1262 amount=-2 -kerning first=904 second=219 amount=-2 -kerning first=1116 second=347 amount=-1 -kerning first=946 second=121 amount=-1 -kerning first=252 second=243 amount=-1 -kerning first=372 second=373 amount=-1 -kerning first=271 second=1263 amount=-1 -kerning first=47 second=269 amount=-1 -kerning first=1080 second=1176 amount=-1 -kerning first=1084 second=362 amount=-2 -kerning first=905 second=374 amount=-5 -kerning first=93 second=106 amount=1 -kerning first=1168 second=289 amount=-1 -kerning first=951 second=71 amount=-2 -kerning first=1220 second=221 amount=-5 -kerning first=370 second=8230 amount=-1 -kerning first=973 second=233 amount=-1 -kerning first=51 second=217 amount=-2 -kerning first=303 second=949 amount=-1 -kerning first=306 second=257 amount=-1 -kerning first=74 second=119 amount=-4 -kerning first=1081 second=8211 amount=-2 -kerning first=214 second=271 amount=-1 -kerning first=217 second=44 amount=-1 -kerning first=916 second=84 amount=-5 -kerning first=91 second=1026 amount=-5 -kerning first=94 second=286 amount=-2 -kerning first=1174 second=234 amount=-1 -kerning first=357 second=334 amount=-2 -kerning first=952 second=246 amount=-1 -kerning first=117 second=218 amount=-2 -kerning first=1223 second=376 amount=-5 -kerning first=170 second=360 amount=-2 -kerning first=280 second=964 amount=-3 -kerning first=49 second=947 amount=-4 -kerning first=52 second=372 amount=-5 -kerning first=1051 second=8249 amount=-3 -kerning first=195 second=287 amount=-1 -kerning first=928 second=34 amount=-3 -kerning first=235 second=1175 amount=-2 -kerning first=238 second=361 amount=-1 -kerning first=358 second=965 amount=-1 -kerning first=364 second=46 amount=-1 -kerning first=1219 second=8250 amount=-1 -kerning first=258 second=1028 amount=-2 -kerning first=289 second=220 amount=-2 +kerning first=1068 second=118 amount=-1 +kerning first=1068 second=119 amount=-1 +kerning first=1068 second=193 amount=-1 +kerning first=1068 second=194 amount=-1 +kerning first=1068 second=196 amount=-1 +kerning first=1068 second=197 amount=-1 +kerning first=1068 second=198 amount=-1 +kerning first=1068 second=221 amount=-5 +kerning first=1068 second=256 amount=-1 +kerning first=1068 second=258 amount=-1 +kerning first=1068 second=260 amount=-1 +kerning first=1068 second=354 amount=-5 +kerning first=1068 second=356 amount=-5 +kerning first=1068 second=373 amount=-1 +kerning first=1068 second=374 amount=-5 +kerning first=1068 second=376 amount=-5 +kerning first=1068 second=913 amount=-1 +kerning first=1068 second=916 amount=-1 +kerning first=1068 second=923 amount=-1 +kerning first=1068 second=932 amount=-5 +kerning first=1068 second=933 amount=-5 +kerning first=1068 second=935 amount=-2 +kerning first=1068 second=939 amount=-5 +kerning first=1068 second=947 amount=-1 +kerning first=1068 second=957 amount=-1 +kerning first=1068 second=964 amount=-2 +kerning first=1068 second=1026 amount=-5 +kerning first=1068 second=1035 amount=-5 +kerning first=1068 second=1040 amount=-1 +kerning first=1068 second=1046 amount=-2 +kerning first=1068 second=1058 amount=-5 +kerning first=1068 second=1061 amount=-2 +kerning first=1068 second=1063 amount=-1 +kerning first=1068 second=1066 amount=-5 +kerning first=1068 second=1071 amount=-1 +kerning first=1068 second=1090 amount=-2 +kerning first=1068 second=1098 amount=-2 +kerning first=1068 second=1174 amount=-2 +kerning first=1068 second=1184 amount=-5 +kerning first=1068 second=1185 amount=-2 +kerning first=1068 second=1198 amount=-5 +kerning first=1068 second=1199 amount=-1 +kerning first=1068 second=1202 amount=-2 +kerning first=1068 second=8216 amount=-2 +kerning first=1068 second=8217 amount=-2 +kerning first=1068 second=8220 amount=-2 +kerning first=1068 second=8221 amount=-2 +kerning first=1069 second=44 amount=-1 +kerning first=1069 second=46 amount=-1 +kerning first=1069 second=47 amount=-1 +kerning first=1069 second=65 amount=-2 +kerning first=1069 second=84 amount=-2 +kerning first=1069 second=86 amount=-2 +kerning first=1069 second=87 amount=-2 +kerning first=1069 second=88 amount=-3 +kerning first=1069 second=89 amount=-3 +kerning first=1069 second=90 amount=-1 +kerning first=1069 second=193 amount=-2 +kerning first=1069 second=194 amount=-2 +kerning first=1069 second=196 amount=-2 +kerning first=1069 second=197 amount=-2 +kerning first=1069 second=198 amount=-2 +kerning first=1069 second=221 amount=-3 +kerning first=1069 second=256 amount=-2 +kerning first=1069 second=258 amount=-2 +kerning first=1069 second=260 amount=-2 +kerning first=1069 second=354 amount=-2 +kerning first=1069 second=356 amount=-2 +kerning first=1069 second=372 amount=-2 +kerning first=1069 second=374 amount=-3 +kerning first=1069 second=376 amount=-3 +kerning first=1069 second=377 amount=-1 +kerning first=1069 second=379 amount=-1 +kerning first=1069 second=381 amount=-1 +kerning first=1069 second=913 amount=-2 +kerning first=1069 second=916 amount=-2 +kerning first=1069 second=918 amount=-1 +kerning first=1069 second=923 amount=-2 +kerning first=1069 second=932 amount=-2 +kerning first=1069 second=933 amount=-3 +kerning first=1069 second=935 amount=-3 +kerning first=1069 second=939 amount=-3 +kerning first=1069 second=955 amount=-2 +kerning first=1069 second=967 amount=-1 +kerning first=1069 second=1026 amount=-2 +kerning first=1069 second=1033 amount=-1 +kerning first=1069 second=1035 amount=-2 +kerning first=1069 second=1040 amount=-2 +kerning first=1069 second=1044 amount=-1 +kerning first=1069 second=1046 amount=-3 +kerning first=1069 second=1051 amount=-1 +kerning first=1069 second=1058 amount=-2 +kerning first=1069 second=1061 amount=-3 +kerning first=1069 second=1066 amount=-2 +kerning first=1069 second=1071 amount=-1 +kerning first=1069 second=1174 amount=-3 +kerning first=1069 second=1184 amount=-2 +kerning first=1069 second=1198 amount=-3 +kerning first=1069 second=1202 amount=-3 +kerning first=1069 second=1298 amount=-1 +kerning first=1069 second=8218 amount=-1 +kerning first=1069 second=8222 amount=-1 +kerning first=1069 second=8230 amount=-1 +kerning first=1070 second=44 amount=-1 +kerning first=1070 second=46 amount=-1 +kerning first=1070 second=47 amount=-1 +kerning first=1070 second=65 amount=-2 +kerning first=1070 second=84 amount=-2 +kerning first=1070 second=86 amount=-2 +kerning first=1070 second=87 amount=-2 +kerning first=1070 second=88 amount=-3 +kerning first=1070 second=89 amount=-3 +kerning first=1070 second=90 amount=-1 +kerning first=1070 second=193 amount=-2 +kerning first=1070 second=194 amount=-2 +kerning first=1070 second=196 amount=-2 +kerning first=1070 second=197 amount=-2 +kerning first=1070 second=198 amount=-2 +kerning first=1070 second=221 amount=-3 +kerning first=1070 second=256 amount=-2 +kerning first=1070 second=258 amount=-2 kerning first=1070 second=260 amount=-2 -kerning first=314 second=362 amount=-2 -kerning first=310 second=1176 amount=-2 -kerning first=1186 second=99 amount=-1 -kerning first=1179 second=337 amount=-1 -kerning first=365 second=221 amount=-5 -kerning first=962 second=111 amount=-1 -kerning first=958 second=351 amount=-1 -kerning first=125 second=83 amount=-1 -kerning first=1263 second=953 amount=-1 -kerning first=116 second=8230 amount=-1 -kerning first=37 second=333 amount=-1 -kerning first=179 second=245 amount=-1 -kerning first=57 second=949 amount=-1 -kerning first=60 second=257 amount=-1 -kerning first=311 second=8211 amount=-3 -kerning first=8365 second=250 amount=-1 -kerning first=83 second=194 amount=-1 -kerning first=1103 second=352 amount=-1 -kerning first=934 second=364 amount=-2 -kerning first=100 second=1090 amount=-3 -kerning first=103 second=334 amount=-2 -kerning first=1184 second=968 amount=-1 -kerning first=1187 second=277 amount=-1 -kerning first=960 second=1035 amount=-5 -kerning first=963 second=291 amount=-1 -kerning first=41 second=273 amount=-1 -kerning first=38 second=964 amount=-3 -kerning first=44 second=45 amount=-1 -kerning first=299 second=85 amount=-2 -kerning first=204 second=335 amount=-1 -kerning first=207 second=97 amount=-1 -kerning first=84 second=347 amount=-3 -kerning first=87 second=109 amount=-2 -kerning first=230 second=34 amount=-1 -kerning first=928 second=8216 amount=-3 -kerning first=273 second=336 amount=-2 -kerning first=1049 second=171 amount=-3 -kerning first=185 second=350 amount=-1 -kerning first=65 second=362 amount=-2 -kerning first=1074 second=8217 amount=-3 -kerning first=62 second=1176 amount=-1 -kerning first=205 second=966 amount=-1 -kerning first=211 second=47 amount=-1 -kerning first=906 second=87 amount=-5 -kerning first=85 second=1033 amount=-1 -kerning first=354 second=99 amount=-3 -kerning first=942 second=940 amount=-1 -kerning first=254 second=111 amount=-1 -kerning first=251 second=351 amount=-1 -kerning first=371 second=953 amount=-1 -kerning first=374 second=261 amount=-4 -kerning first=161 second=1177 amount=-1 -kerning first=164 second=363 amount=-1 -kerning first=8217 second=226 amount=-1 -kerning first=46 second=375 amount=-1 -kerning first=189 second=290 amount=-2 -kerning first=304 second=210 amount=-2 -kerning first=63 second=8211 amount=-2 -kerning first=1087 second=250 amount=-1 -kerning first=1083 second=941 amount=-1 -kerning first=330 second=352 amount=-1 -kerning first=92 second=234 amount=-1 -kerning first=1119 second=1241 amount=-1 -kerning first=1170 second=187 amount=-1 -kerning first=950 second=199 amount=-2 -kerning first=1224 second=89 amount=-5 -kerning first=252 second=1035 amount=-5 -kerning first=255 second=291 amount=-1 -kerning first=162 second=8212 amount=-2 -kerning first=165 second=1059 amount=-2 -kerning first=1026 second=101 amount=-1 -kerning first=47 second=1074 amount=-1 -kerning first=53 second=85 amount=-2 -kerning first=1064 second=263 amount=-1 -kerning first=193 second=235 amount=-1 -kerning first=305 second=365 amount=-1 -kerning first=213 second=377 amount=-1 -kerning first=915 second=212 amount=-2 -kerning first=230 second=8216 amount=-1 -kerning first=951 second=354 amount=-5 -kerning first=948 second=1118 amount=-1 -kerning first=113 second=1075 amount=2 -kerning first=1263 second=39 amount=-3 -kerning first=1027 second=279 amount=-1 -kerning first=172 second=248 amount=-1 -kerning first=973 second=970 amount=-1 -kerning first=287 second=171 amount=-3 -kerning first=303 second=8217 amount=-3 -kerning first=916 second=367 amount=-1 -kerning first=100 second=99 amount=-1 -kerning first=237 second=940 amount=-1 -kerning first=240 second=249 amount=-1 -kerning first=952 second=1038 amount=-2 -kerning first=117 second=953 amount=-1 -kerning first=1298 second=214 amount=-2 -kerning first=120 second=261 amount=-1 -kerning first=1035 second=226 amount=-1 -kerning first=283 second=1078 amount=-2 -kerning first=8240 second=268 amount=-2 -kerning first=58 second=210 amount=-2 -kerning first=198 second=338 amount=-2 -kerning first=201 second=100 amount=-1 -kerning first=313 second=941 amount=-1 -kerning first=316 second=250 amount=-1 -kerning first=78 second=352 amount=-1 -kerning first=221 second=262 amount=-3 -kerning first=912 second=8220 amount=-3 -kerning first=1185 second=227 amount=-1 -kerning first=361 second=1079 amount=-1 -kerning first=367 second=89 amount=-5 -kerning first=124 second=211 amount=-2 -kerning first=1299 second=369 amount=-1 -kerning first=261 second=1098 amount=-1 -kerning first=178 second=353 amount=-1 -kerning first=182 second=113 amount=-1 -kerning first=294 second=263 amount=-1 -kerning first=59 second=365 amount=-1 -kerning first=1067 second=8221 amount=-3 +kerning first=1070 second=354 amount=-2 +kerning first=1070 second=356 amount=-2 +kerning first=1070 second=372 amount=-2 +kerning first=1070 second=374 amount=-3 +kerning first=1070 second=376 amount=-3 +kerning first=1070 second=377 amount=-1 +kerning first=1070 second=379 amount=-1 +kerning first=1070 second=381 amount=-1 +kerning first=1070 second=913 amount=-2 +kerning first=1070 second=916 amount=-2 +kerning first=1070 second=918 amount=-1 +kerning first=1070 second=923 amount=-2 +kerning first=1070 second=932 amount=-2 +kerning first=1070 second=933 amount=-3 +kerning first=1070 second=935 amount=-3 +kerning first=1070 second=939 amount=-3 +kerning first=1070 second=955 amount=-2 +kerning first=1070 second=967 amount=-1 +kerning first=1070 second=1026 amount=-2 +kerning first=1070 second=1033 amount=-1 +kerning first=1070 second=1035 amount=-2 +kerning first=1070 second=1040 amount=-2 +kerning first=1070 second=1044 amount=-1 +kerning first=1070 second=1046 amount=-3 +kerning first=1070 second=1051 amount=-1 +kerning first=1070 second=1058 amount=-2 +kerning first=1070 second=1061 amount=-3 kerning first=1070 second=1066 amount=-2 -kerning first=8369 second=118 amount=-4 -kerning first=1107 second=240 amount=-1 -kerning first=931 second=943 amount=-1 -kerning first=105 second=224 amount=-1 -kerning first=371 second=39 amount=-3 -kerning first=125 second=366 amount=-2 -kerning first=43 second=171 amount=-3 -kerning first=298 second=213 amount=-2 -kerning first=57 second=8217 amount=-3 -kerning first=206 second=225 amount=-1 -kerning first=323 second=355 amount=-1 -kerning first=901 second=267 amount=-1 -kerning first=223 second=1185 amount=-3 -kerning first=372 second=214 amount=-2 -kerning first=963 second=1101 amount=-1 -kerning first=1048 second=268 amount=-2 -kerning first=299 second=368 amount=-2 -kerning first=64 second=941 amount=-1 -kerning first=8378 second=243 amount=-1 -kerning first=87 second=1241 amount=-3 -kerning first=224 second=8220 amount=-1 -kerning first=944 second=357 amount=-1 -kerning first=948 second=117 amount=-1 -kerning first=113 second=89 amount=-5 -kerning first=1207 second=269 amount=-1 -kerning first=967 second=973 amount=-1 -kerning first=166 second=251 amount=-1 -kerning first=48 second=263 amount=-1 -kerning first=1062 second=216 amount=-1 -kerning first=297 second=8221 amount=-3 -kerning first=300 second=1066 amount=-5 -kerning first=903 second=1194 amount=-2 -kerning first=906 second=370 amount=-2 -kerning first=1169 second=283 amount=-1 -kerning first=354 second=382 amount=-1 -kerning first=952 second=67 amount=-2 -kerning first=117 second=39 amount=-3 -kerning first=1223 second=217 amount=-2 -kerning first=8217 second=963 amount=-1 -kerning first=8221 second=271 amount=-1 -kerning first=52 second=213 amount=-2 -kerning first=1063 second=371 amount=-1 -kerning first=1051 second=1195 amount=-1 -kerning first=195 second=103 amount=-1 -kerning first=72 second=355 amount=-1 -kerning first=215 second=267 amount=-1 -kerning first=1219 second=947 amount=-4 -kerning first=1224 second=372 amount=-5 -kerning first=255 second=1101 amount=-1 -kerning first=378 second=945 amount=-1 -kerning first=1026 second=1240 amount=-2 -kerning first=171 second=356 amount=-1 -kerning first=175 second=116 amount=-1 -kerning first=8226 second=219 amount=-2 -kerning first=53 second=368 amount=-2 -kerning first=1064 second=1069 amount=-1 -kerning first=193 second=972 amount=-1 -kerning first=196 second=281 amount=-1 -kerning first=8361 second=121 amount=-1 -kerning first=79 second=65 amount=-2 -kerning first=1099 second=243 amount=-1 -kerning first=1171 second=1263 amount=-1 -kerning first=239 second=357 amount=-1 -kerning first=8230 second=374 amount=-4 -kerning first=54 second=1066 amount=-5 -kerning first=51 second=8221 amount=-3 -kerning first=200 second=228 amount=-1 -kerning first=318 second=118 amount=-4 -kerning first=8365 second=71 amount=-2 -kerning first=80 second=240 amount=-1 -kerning first=341 second=283 amount=-1 -kerning first=1184 second=333 amount=-2 -kerning first=126 second=79 amount=-2 -kerning first=1298 second=949 amount=-1 -kerning first=1035 second=963 amount=-1 -kerning first=177 second=920 amount=-2 -kerning first=291 second=371 amount=-1 -kerning first=61 second=253 amount=-1 -kerning first=198 second=1257 amount=-1 -kerning first=8366 second=246 amount=-1 -kerning first=345 second=230 amount=-1 -kerning first=936 second=360 amount=-2 -kerning first=941 second=120 amount=-1 -kerning first=101 second=1083 amount=-1 -kerning first=1202 second=45 amount=-2 -kerning first=247 second=242 amount=-1 -kerning first=367 second=372 amount=-5 -kerning first=964 second=287 amount=-1 -kerning first=124 second=945 amount=-1 -kerning first=42 second=268 amount=-2 -kerning first=294 second=1069 amount=-1 -kerning first=300 second=81 amount=-2 +kerning first=1070 second=1071 amount=-1 +kerning first=1070 second=1174 amount=-3 +kerning first=1070 second=1184 amount=-2 +kerning first=1070 second=1198 amount=-3 +kerning first=1070 second=1202 amount=-3 +kerning first=1070 second=1298 amount=-1 +kerning first=1070 second=8218 amount=-1 +kerning first=1070 second=8222 amount=-1 +kerning first=1070 second=8230 amount=-1 +kerning first=1072 second=34 amount=-1 +kerning first=1072 second=39 amount=-1 +kerning first=1072 second=63 amount=-2 +kerning first=1072 second=102 amount=-1 +kerning first=1072 second=106 amount=1 +kerning first=1072 second=118 amount=-1 +kerning first=1072 second=119 amount=-1 +kerning first=1072 second=373 amount=-1 +kerning first=1072 second=947 amount=-1 +kerning first=1072 second=957 amount=-1 +kerning first=1072 second=964 amount=-1 +kerning first=1072 second=1090 amount=-1 +kerning first=1072 second=1098 amount=-1 +kerning first=1072 second=1112 amount=1 +kerning first=1072 second=1185 amount=-1 +kerning first=1072 second=1199 amount=-1 +kerning first=1072 second=8216 amount=-1 +kerning first=1072 second=8217 amount=-1 +kerning first=1072 second=8220 amount=-1 +kerning first=1072 second=8221 amount=-1 +kerning first=1073 second=120 amount=-2 +kerning first=1073 second=964 amount=-1 +kerning first=1073 second=1076 amount=-1 +kerning first=1073 second=1078 amount=-2 +kerning first=1073 second=1083 amount=-1 +kerning first=1073 second=1090 amount=-1 +kerning first=1073 second=1093 amount=-2 +kerning first=1073 second=1098 amount=-1 +kerning first=1073 second=1113 amount=-1 +kerning first=1073 second=1175 amount=-2 +kerning first=1073 second=1185 amount=-1 +kerning first=1073 second=1203 amount=-2 +kerning first=1073 second=1299 amount=-1 +kerning first=1074 second=63 amount=-1 +kerning first=1074 second=120 amount=-1 +kerning first=1074 second=1078 amount=-1 +kerning first=1074 second=1093 amount=-1 kerning first=1074 second=1175 amount=-1 -kerning first=1081 second=121 amount=-1 -kerning first=325 second=243 amount=-1 -kerning first=900 second=373 amount=-4 -kerning first=108 second=269 amount=-1 -kerning first=968 second=232 amount=-1 -kerning first=274 second=332 amount=-2 -kerning first=8217 second=47 amount=-2 -kerning first=46 second=216 amount=-1 -kerning first=1047 second=374 amount=-2 -kerning first=189 second=106 amount=1 -kerning first=69 second=118 amount=-4 -kerning first=1087 second=71 amount=-2 -kerning first=206 second=962 amount=-1 -kerning first=8377 second=351 amount=-1 -kerning first=89 second=283 amount=-4 -kerning first=1119 second=233 amount=-1 -kerning first=946 second=245 amount=-1 -kerning first=375 second=257 amount=-1 -kerning first=372 second=949 amount=-3 -kerning first=966 second=1299 amount=-1 -kerning first=165 second=359 amount=-1 -kerning first=168 second=119 amount=-4 -kerning first=278 second=271 amount=-1 -kerning first=281 second=44 amount=-1 -kerning first=47 second=371 amount=-1 -kerning first=1064 second=84 amount=-5 -kerning first=190 second=286 amount=-2 -kerning first=187 second=1026 amount=-3 -kerning first=67 second=1046 amount=-2 -kerning first=1090 second=246 amount=-1 -kerning first=8378 second=1035 amount=-5 -kerning first=910 second=258 amount=-5 -kerning first=93 second=230 amount=-1 -kerning first=356 second=273 amount=-3 -kerning first=110 second=947 amount=-1 -kerning first=113 second=372 amount=-5 -kerning first=1202 second=8249 amount=-1 -kerning first=256 second=287 amount=-1 -kerning first=973 second=335 amount=-1 -kerning first=1027 second=97 amount=-1 -kerning first=282 second=219 amount=-2 -kerning first=48 second=1069 amount=-1 -kerning first=54 second=81 amount=-2 -kerning first=1068 second=34 amount=-2 -kerning first=194 second=231 amount=-1 -kerning first=306 second=361 amount=-1 -kerning first=74 second=243 amount=-1 -kerning first=214 second=373 amount=-4 -kerning first=211 second=1202 amount=-3 -kerning first=91 second=1263 amount=-1 -kerning first=1174 second=336 amount=-1 -kerning first=952 second=350 amount=-1 -kerning first=260 second=232 amount=-1 -kerning first=174 second=244 amount=-1 -kerning first=55 second=256 amount=-5 -kerning first=8240 second=87 amount=-5 -kerning first=316 second=71 amount=-2 -kerning first=212 second=8230 amount=-1 -kerning first=221 second=83 amount=-1 -kerning first=912 second=1177 amount=-1 -kerning first=361 second=375 amount=-1 -kerning first=956 second=290 amount=-2 -kerning first=118 second=949 amount=-1 -kerning first=121 second=257 amount=-1 -kerning first=1299 second=210 amount=-2 -kerning first=36 second=271 amount=-1 -kerning first=39 second=44 amount=-1 -kerning first=294 second=84 amount=-5 -kerning first=196 second=1090 amount=-3 -kerning first=317 second=246 amount=-1 -kerning first=8364 second=199 amount=-2 -kerning first=1099 second=1035 amount=-5 -kerning first=222 second=258 amount=-2 -kerning first=915 second=8212 amount=-2 -kerning first=923 second=1059 amount=-2 -kerning first=105 second=45 amount=-2 -kerning first=102 second=273 amount=-1 -kerning first=962 second=235 amount=-1 -kerning first=40 second=219 amount=-2 -kerning first=176 second=1108 amount=-1 -kerning first=179 second=347 amount=-1 -kerning first=298 second=34 amount=-3 -kerning first=60 second=361 amount=-1 -kerning first=63 second=121 amount=-1 -kerning first=1068 second=8216 amount=-2 -kerning first=200 second=965 amount=-1 -kerning first=8365 second=354 amount=-5 -kerning first=80 second=1028 amount=-2 -kerning first=243 second=1113 amount=-1 -kerning first=947 second=171 amount=-1 -kerning first=123 second=1176 amount=-1 -kerning first=126 second=362 amount=-2 -kerning first=1298 second=8217 amount=-3 -kerning first=271 second=275 amount=-1 -kerning first=275 second=47 amount=-1 -kerning first=38 second=1203 amount=-2 -kerning first=41 second=374 amount=-5 -kerning first=1048 second=87 amount=-5 -kerning first=184 second=289 amount=-1 -kerning first=8260 second=1185 amount=-3 +kerning first=1074 second=1203 amount=-1 +kerning first=1075 second=44 amount=-3 +kerning first=1075 second=46 amount=-3 +kerning first=1075 second=47 amount=-2 +kerning first=1075 second=99 amount=-1 +kerning first=1075 second=100 amount=-1 +kerning first=1075 second=101 amount=-1 +kerning first=1075 second=111 amount=-1 +kerning first=1075 second=113 amount=-1 +kerning first=1075 second=231 amount=-1 +kerning first=1075 second=232 amount=-1 +kerning first=1075 second=233 amount=-1 +kerning first=1075 second=234 amount=-1 +kerning first=1075 second=235 amount=-1 +kerning first=1075 second=240 amount=-1 +kerning first=1075 second=242 amount=-1 +kerning first=1075 second=243 amount=-1 +kerning first=1075 second=244 amount=-1 +kerning first=1075 second=245 amount=-1 +kerning first=1075 second=246 amount=-1 +kerning first=1075 second=248 amount=-1 +kerning first=1075 second=263 amount=-1 +kerning first=1075 second=267 amount=-1 +kerning first=1075 second=269 amount=-1 +kerning first=1075 second=271 amount=-1 +kerning first=1075 second=273 amount=-1 +kerning first=1075 second=275 amount=-1 +kerning first=1075 second=277 amount=-1 +kerning first=1075 second=279 amount=-1 +kerning first=1075 second=281 amount=-1 +kerning first=1075 second=283 amount=-1 +kerning first=1075 second=333 amount=-1 +kerning first=1075 second=335 amount=-1 +kerning first=1075 second=337 amount=-1 +kerning first=1075 second=339 amount=-1 +kerning first=1075 second=940 amount=-1 +kerning first=1075 second=941 amount=-1 +kerning first=1075 second=945 amount=-1 +kerning first=1075 second=949 amount=-1 +kerning first=1075 second=955 amount=-4 +kerning first=1075 second=959 amount=-1 +kerning first=1075 second=962 amount=-1 +kerning first=1075 second=963 amount=-1 +kerning first=1075 second=966 amount=-1 +kerning first=1075 second=972 amount=-1 +kerning first=1075 second=1076 amount=-3 +kerning first=1075 second=1077 amount=-1 +kerning first=1075 second=1083 amount=-3 +kerning first=1075 second=1086 amount=-1 +kerning first=1075 second=1089 amount=-1 +kerning first=1075 second=1092 amount=-1 +kerning first=1075 second=1104 amount=-1 +kerning first=1075 second=1105 amount=-1 +kerning first=1075 second=1108 amount=-1 +kerning first=1075 second=1113 amount=-3 +kerning first=1075 second=1195 amount=-1 +kerning first=1075 second=1241 amount=-1 +kerning first=1075 second=1257 amount=-1 +kerning first=1075 second=1299 amount=-3 +kerning first=1075 second=8218 amount=-3 +kerning first=1075 second=8222 amount=-3 +kerning first=1075 second=8230 amount=-3 +kerning first=1076 second=99 amount=-1 +kerning first=1076 second=100 amount=-1 +kerning first=1076 second=101 amount=-1 +kerning first=1076 second=111 amount=-1 +kerning first=1076 second=113 amount=-1 +kerning first=1076 second=231 amount=-1 +kerning first=1076 second=232 amount=-1 +kerning first=1076 second=233 amount=-1 +kerning first=1076 second=234 amount=-1 +kerning first=1076 second=235 amount=-1 +kerning first=1076 second=240 amount=-1 +kerning first=1076 second=242 amount=-1 +kerning first=1076 second=243 amount=-1 +kerning first=1076 second=244 amount=-1 +kerning first=1076 second=245 amount=-1 +kerning first=1076 second=246 amount=-1 +kerning first=1076 second=248 amount=-1 +kerning first=1076 second=263 amount=-1 +kerning first=1076 second=267 amount=-1 +kerning first=1076 second=269 amount=-1 +kerning first=1076 second=271 amount=-1 +kerning first=1076 second=273 amount=-1 +kerning first=1076 second=275 amount=-1 +kerning first=1076 second=277 amount=-1 +kerning first=1076 second=279 amount=-1 +kerning first=1076 second=281 amount=-1 +kerning first=1076 second=283 amount=-1 +kerning first=1076 second=333 amount=-1 +kerning first=1076 second=335 amount=-1 +kerning first=1076 second=337 amount=-1 +kerning first=1076 second=339 amount=-1 kerning first=1076 second=940 amount=-1 -kerning first=1080 second=249 amount=-1 -kerning first=207 second=221 amount=-5 -kerning first=8366 second=1038 amount=-2 -kerning first=327 second=111 amount=-1 -kerning first=902 second=261 amount=-1 -kerning first=87 second=233 amount=-3 -kerning first=250 second=290 amount=-2 -kerning first=967 second=338 amount=-2 -kerning first=124 second=8211 amount=-2 -kerning first=48 second=84 amount=-5 -kerning first=1049 second=262 amount=-2 -kerning first=188 second=234 amount=-1 -kerning first=300 second=364 amount=-2 -kerning first=1085 second=199 amount=-2 -kerning first=208 second=376 amount=-3 -kerning first=325 second=1035 amount=-5 -kerning first=906 second=211 amount=-2 -kerning first=1118 second=339 amount=-1 -kerning first=1169 second=101 amount=-1 -kerning first=105 second=8249 amount=-3 -kerning first=1210 second=263 amount=-1 -kerning first=254 second=235 amount=-1 -kerning first=374 second=365 amount=-2 -kerning first=49 second=259 amount=-1 -kerning first=52 second=34 amount=-1 -kerning first=1063 second=212 amount=-2 -kerning first=298 second=8216 amount=-3 -kerning first=1083 second=1118 amount=-1 -kerning first=1087 second=354 amount=-5 -kerning first=206 second=8250 amount=-1 -kerning first=904 second=1184 amount=-5 -kerning first=92 second=336 amount=-2 -kerning first=1119 second=970 amount=-1 -kerning first=1170 second=279 amount=-1 -kerning first=358 second=171 amount=-3 -kerning first=1224 second=213 amount=-2 -kerning first=1026 second=225 amount=-1 -kerning first=171 second=197 amount=-1 -kerning first=286 second=87 amount=-1 -kerning first=1064 second=367 amount=-1 -kerning first=193 second=337 amount=-1 -kerning first=196 second=99 amount=-1 -kerning first=305 second=940 amount=-1 -kerning first=310 second=249 amount=-1 -kerning first=70 second=1114 amount=-1 -kerning first=73 second=351 amount=-1 -kerning first=76 second=111 amount=-1 -kerning first=1176 second=226 amount=-1 -kerning first=356 second=1078 amount=-1 -kerning first=379 second=941 amount=-1 -kerning first=172 second=352 amount=-1 -kerning first=287 second=262 amount=-2 -kerning first=54 second=364 amount=-2 -kerning first=1062 second=8220 amount=-2 -kerning first=194 second=968 amount=-1 -kerning first=197 second=277 amount=-1 -kerning first=315 second=199 amount=-1 -kerning first=74 second=1035 amount=-5 -kerning first=77 second=291 amount=-1 -kerning first=335 second=1098 amount=-1 -kerning first=338 second=339 amount=-1 -kerning first=341 second=101 amount=-1 -kerning first=926 second=251 amount=-1 -kerning first=240 second=353 amount=-1 -kerning first=363 second=263 amount=-1 -kerning first=1223 second=8221 amount=-3 -kerning first=291 second=212 amount=-2 -kerning first=8225 second=1194 amount=-2 -kerning first=8240 second=370 amount=-2 -kerning first=52 second=8216 amount=-1 -kerning first=1073 second=252 amount=-1 -kerning first=201 second=224 amount=-1 -kerning first=313 second=1118 amount=-1 -kerning first=316 second=354 amount=-5 -kerning first=8366 second=67 amount=-2 -kerning first=101 second=378 amount=-1 -kerning first=367 second=213 amount=-2 -kerning first=964 second=103 amount=-1 -kerning first=42 second=87 amount=-5 -kerning first=1039 second=267 amount=-1 -kerning first=289 second=1185 amount=-3 -kerning first=294 second=367 amount=-1 -kerning first=62 second=249 amount=-1 -kerning first=59 second=940 amount=-1 -kerning first=317 second=1038 amount=-2 -kerning first=8369 second=242 amount=-1 -kerning first=900 second=214 amount=-2 -kerning first=219 second=8218 amount=-1 -kerning first=942 second=116 amount=-1 -kerning first=962 second=972 amount=-1 -kerning first=965 second=281 amount=-1 -kerning first=161 second=250 amount=-1 -kerning first=125 second=941 amount=-1 -kerning first=43 second=262 amount=-2 -kerning first=183 second=1241 amount=-1 -kerning first=186 second=187 amount=-1 -kerning first=1083 second=117 amount=-1 -kerning first=203 second=1079 amount=-1 -kerning first=209 second=89 amount=-5 -kerning first=901 second=369 amount=-1 -kerning first=86 second=339 amount=-3 -kerning first=89 second=101 amount=-4 -kerning first=1206 second=216 amount=-1 -kerning first=369 second=1066 amount=-5 -kerning first=47 second=212 amount=-1 -kerning first=1048 second=370 amount=-2 -kerning first=1044 second=1194 amount=-1 -kerning first=299 second=943 amount=-1 -kerning first=302 second=252 amount=-1 -kerning first=64 second=1118 amount=-1 -kerning first=70 second=114 amount=-1 -kerning first=67 second=354 amount=-1 -kerning first=910 second=79 amount=-3 -kerning first=90 second=279 amount=-1 -kerning first=1168 second=229 amount=-1 -kerning first=944 second=920 amount=-2 -kerning first=113 second=213 amount=-2 -kerning first=1202 second=1195 amount=-1 -kerning first=256 second=103 amount=-1 -kerning first=376 second=253 amount=-2 -kerning first=967 second=1257 amount=-1 -kerning first=166 second=355 amount=-1 -kerning first=169 second=115 amount=-1 -kerning first=48 second=367 amount=-1 +kerning first=1076 second=941 amount=-1 +kerning first=1076 second=945 amount=-1 +kerning first=1076 second=949 amount=-1 +kerning first=1076 second=959 amount=-1 +kerning first=1076 second=962 amount=-1 +kerning first=1076 second=963 amount=-1 +kerning first=1076 second=964 amount=-2 +kerning first=1076 second=966 amount=-1 +kerning first=1076 second=972 amount=-1 +kerning first=1076 second=1073 amount=-1 +kerning first=1076 second=1077 amount=-1 +kerning first=1076 second=1086 amount=-1 +kerning first=1076 second=1089 amount=-1 +kerning first=1076 second=1090 amount=-2 +kerning first=1076 second=1092 amount=-1 +kerning first=1076 second=1095 amount=-2 +kerning first=1076 second=1098 amount=-2 +kerning first=1076 second=1104 amount=-1 +kerning first=1076 second=1105 amount=-1 +kerning first=1076 second=1108 amount=-1 +kerning first=1076 second=1185 amount=-2 +kerning first=1076 second=1195 amount=-1 +kerning first=1076 second=1241 amount=-1 +kerning first=1076 second=1257 amount=-1 +kerning first=1077 second=34 amount=-1 +kerning first=1077 second=39 amount=-1 +kerning first=1077 second=44 amount=-1 +kerning first=1077 second=46 amount=-1 +kerning first=1077 second=47 amount=-1 +kerning first=1077 second=63 amount=-2 +kerning first=1077 second=102 amount=-1 +kerning first=1077 second=118 amount=-1 +kerning first=1077 second=119 amount=-1 +kerning first=1077 second=120 amount=-2 +kerning first=1077 second=122 amount=-1 +kerning first=1077 second=373 amount=-1 +kerning first=1077 second=378 amount=-1 +kerning first=1077 second=380 amount=-1 +kerning first=1077 second=382 amount=-1 +kerning first=1077 second=947 amount=-1 +kerning first=1077 second=955 amount=-1 +kerning first=1077 second=957 amount=-1 +kerning first=1077 second=964 amount=-1 +kerning first=1077 second=967 amount=-2 +kerning first=1077 second=1076 amount=-1 +kerning first=1077 second=1078 amount=-2 +kerning first=1077 second=1083 amount=-1 +kerning first=1077 second=1090 amount=-1 +kerning first=1077 second=1093 amount=-2 +kerning first=1077 second=1098 amount=-1 +kerning first=1077 second=1113 amount=-1 +kerning first=1077 second=1175 amount=-2 +kerning first=1077 second=1185 amount=-1 +kerning first=1077 second=1199 amount=-1 +kerning first=1077 second=1203 amount=-2 +kerning first=1077 second=1299 amount=-1 +kerning first=1077 second=8216 amount=-1 +kerning first=1077 second=8217 amount=-1 +kerning first=1077 second=8218 amount=-1 +kerning first=1077 second=8220 amount=-1 +kerning first=1077 second=8221 amount=-1 +kerning first=1077 second=8222 amount=-1 +kerning first=1077 second=8230 amount=-1 +kerning first=1078 second=45 amount=-3 +kerning first=1078 second=97 amount=-1 +kerning first=1078 second=99 amount=-2 +kerning first=1078 second=100 amount=-2 +kerning first=1078 second=101 amount=-2 +kerning first=1078 second=103 amount=-1 +kerning first=1078 second=111 amount=-2 +kerning first=1078 second=113 amount=-2 +kerning first=1078 second=115 amount=-1 +kerning first=1078 second=171 amount=-2 +kerning first=1078 second=173 amount=-3 +kerning first=1078 second=187 amount=-1 +kerning first=1078 second=224 amount=-1 +kerning first=1078 second=225 amount=-1 +kerning first=1078 second=226 amount=-1 +kerning first=1078 second=227 amount=-1 +kerning first=1078 second=228 amount=-1 +kerning first=1078 second=229 amount=-1 +kerning first=1078 second=230 amount=-1 +kerning first=1078 second=231 amount=-2 +kerning first=1078 second=232 amount=-2 +kerning first=1078 second=233 amount=-2 +kerning first=1078 second=234 amount=-2 +kerning first=1078 second=235 amount=-2 +kerning first=1078 second=240 amount=-2 +kerning first=1078 second=242 amount=-2 +kerning first=1078 second=243 amount=-2 +kerning first=1078 second=244 amount=-2 +kerning first=1078 second=245 amount=-2 +kerning first=1078 second=246 amount=-2 +kerning first=1078 second=248 amount=-2 +kerning first=1078 second=257 amount=-1 +kerning first=1078 second=259 amount=-1 +kerning first=1078 second=261 amount=-1 +kerning first=1078 second=263 amount=-2 +kerning first=1078 second=267 amount=-2 +kerning first=1078 second=269 amount=-2 +kerning first=1078 second=271 amount=-2 +kerning first=1078 second=273 amount=-2 +kerning first=1078 second=275 amount=-2 +kerning first=1078 second=277 amount=-2 +kerning first=1078 second=279 amount=-2 +kerning first=1078 second=281 amount=-2 +kerning first=1078 second=283 amount=-2 +kerning first=1078 second=287 amount=-1 +kerning first=1078 second=289 amount=-1 +kerning first=1078 second=291 amount=-1 +kerning first=1078 second=333 amount=-2 +kerning first=1078 second=335 amount=-2 +kerning first=1078 second=337 amount=-2 +kerning first=1078 second=339 amount=-2 +kerning first=1078 second=347 amount=-1 +kerning first=1078 second=351 amount=-1 +kerning first=1078 second=353 amount=-1 +kerning first=1078 second=940 amount=-2 +kerning first=1078 second=941 amount=-2 +kerning first=1078 second=945 amount=-2 +kerning first=1078 second=949 amount=-2 +kerning first=1078 second=959 amount=-2 +kerning first=1078 second=962 amount=-2 +kerning first=1078 second=963 amount=-2 +kerning first=1078 second=966 amount=-2 +kerning first=1078 second=969 amount=-1 +kerning first=1078 second=972 amount=-2 +kerning first=1078 second=974 amount=-1 +kerning first=1078 second=1072 amount=-1 +kerning first=1078 second=1073 amount=-1 +kerning first=1078 second=1077 amount=-2 +kerning first=1078 second=1086 amount=-2 +kerning first=1078 second=1089 amount=-2 +kerning first=1078 second=1092 amount=-2 +kerning first=1078 second=1095 amount=-1 +kerning first=1078 second=1104 amount=-2 +kerning first=1078 second=1105 amount=-2 +kerning first=1078 second=1108 amount=-2 +kerning first=1078 second=1109 amount=-1 +kerning first=1078 second=1195 amount=-2 +kerning first=1078 second=1241 amount=-2 +kerning first=1078 second=1257 amount=-2 +kerning first=1078 second=8211 amount=-3 +kerning first=1078 second=8212 amount=-3 +kerning first=1078 second=8249 amount=-2 +kerning first=1078 second=8250 amount=-1 +kerning first=1079 second=120 amount=-1 +kerning first=1079 second=964 amount=-1 +kerning first=1079 second=1078 amount=-1 +kerning first=1079 second=1090 amount=-1 +kerning first=1079 second=1093 amount=-1 +kerning first=1079 second=1098 amount=-1 +kerning first=1079 second=1175 amount=-1 +kerning first=1079 second=1185 amount=-1 +kerning first=1079 second=1203 amount=-1 +kerning first=1082 second=45 amount=-3 +kerning first=1082 second=97 amount=-1 +kerning first=1082 second=99 amount=-2 +kerning first=1082 second=100 amount=-2 +kerning first=1082 second=101 amount=-2 +kerning first=1082 second=103 amount=-2 +kerning first=1082 second=106 amount=1 +kerning first=1082 second=111 amount=-2 +kerning first=1082 second=113 amount=-2 +kerning first=1082 second=115 amount=-1 +kerning first=1082 second=173 amount=-3 +kerning first=1082 second=224 amount=-1 +kerning first=1082 second=225 amount=-1 +kerning first=1082 second=226 amount=-1 +kerning first=1082 second=227 amount=-1 +kerning first=1082 second=228 amount=-1 +kerning first=1082 second=229 amount=-1 +kerning first=1082 second=230 amount=-1 +kerning first=1082 second=231 amount=-2 +kerning first=1082 second=232 amount=-2 +kerning first=1082 second=233 amount=-2 +kerning first=1082 second=234 amount=-2 +kerning first=1082 second=235 amount=-2 +kerning first=1082 second=240 amount=-2 +kerning first=1082 second=242 amount=-2 +kerning first=1082 second=243 amount=-2 +kerning first=1082 second=244 amount=-2 +kerning first=1082 second=245 amount=-2 +kerning first=1082 second=246 amount=-2 +kerning first=1082 second=248 amount=-2 +kerning first=1082 second=257 amount=-1 +kerning first=1082 second=259 amount=-1 +kerning first=1082 second=261 amount=-1 +kerning first=1082 second=263 amount=-2 +kerning first=1082 second=267 amount=-2 +kerning first=1082 second=269 amount=-2 +kerning first=1082 second=271 amount=-2 +kerning first=1082 second=273 amount=-2 +kerning first=1082 second=275 amount=-2 +kerning first=1082 second=277 amount=-2 +kerning first=1082 second=279 amount=-2 +kerning first=1082 second=281 amount=-2 +kerning first=1082 second=283 amount=-2 +kerning first=1082 second=287 amount=-2 +kerning first=1082 second=289 amount=-2 +kerning first=1082 second=291 amount=-2 +kerning first=1082 second=333 amount=-2 +kerning first=1082 second=335 amount=-2 +kerning first=1082 second=337 amount=-2 +kerning first=1082 second=339 amount=-2 +kerning first=1082 second=347 amount=-1 +kerning first=1082 second=351 amount=-1 +kerning first=1082 second=353 amount=-1 +kerning first=1082 second=940 amount=-2 +kerning first=1082 second=941 amount=-2 +kerning first=1082 second=945 amount=-2 +kerning first=1082 second=949 amount=-2 +kerning first=1082 second=959 amount=-2 +kerning first=1082 second=962 amount=-2 +kerning first=1082 second=963 amount=-2 +kerning first=1082 second=966 amount=-2 +kerning first=1082 second=972 amount=-2 +kerning first=1082 second=1072 amount=-1 +kerning first=1082 second=1077 amount=-2 +kerning first=1082 second=1086 amount=-2 +kerning first=1082 second=1089 amount=-2 +kerning first=1082 second=1092 amount=-2 +kerning first=1082 second=1104 amount=-2 +kerning first=1082 second=1105 amount=-2 +kerning first=1082 second=1108 amount=-2 +kerning first=1082 second=1109 amount=-1 +kerning first=1082 second=1112 amount=1 +kerning first=1082 second=1195 amount=-2 +kerning first=1082 second=1241 amount=-2 +kerning first=1082 second=1257 amount=-2 +kerning first=1082 second=8211 amount=-3 +kerning first=1082 second=8212 amount=-3 +kerning first=1086 second=34 amount=-1 +kerning first=1086 second=39 amount=-1 +kerning first=1086 second=44 amount=-1 +kerning first=1086 second=46 amount=-1 +kerning first=1086 second=47 amount=-1 +kerning first=1086 second=63 amount=-2 +kerning first=1086 second=102 amount=-1 +kerning first=1086 second=118 amount=-1 +kerning first=1086 second=119 amount=-1 +kerning first=1086 second=120 amount=-2 +kerning first=1086 second=122 amount=-1 +kerning first=1086 second=373 amount=-1 +kerning first=1086 second=378 amount=-1 +kerning first=1086 second=380 amount=-1 +kerning first=1086 second=382 amount=-1 +kerning first=1086 second=947 amount=-1 +kerning first=1086 second=955 amount=-1 +kerning first=1086 second=957 amount=-1 +kerning first=1086 second=964 amount=-1 +kerning first=1086 second=967 amount=-2 +kerning first=1086 second=1076 amount=-1 +kerning first=1086 second=1078 amount=-2 +kerning first=1086 second=1083 amount=-1 +kerning first=1086 second=1090 amount=-1 +kerning first=1086 second=1093 amount=-2 +kerning first=1086 second=1098 amount=-1 +kerning first=1086 second=1113 amount=-1 +kerning first=1086 second=1175 amount=-2 +kerning first=1086 second=1185 amount=-1 +kerning first=1086 second=1199 amount=-1 +kerning first=1086 second=1203 amount=-2 +kerning first=1086 second=1299 amount=-1 +kerning first=1086 second=8216 amount=-1 +kerning first=1086 second=8217 amount=-1 +kerning first=1086 second=8218 amount=-1 +kerning first=1086 second=8220 amount=-1 +kerning first=1086 second=8221 amount=-1 +kerning first=1086 second=8222 amount=-1 +kerning first=1086 second=8230 amount=-1 +kerning first=1088 second=34 amount=-1 +kerning first=1088 second=39 amount=-1 +kerning first=1088 second=44 amount=-1 +kerning first=1088 second=46 amount=-1 +kerning first=1088 second=47 amount=-1 +kerning first=1088 second=63 amount=-2 +kerning first=1088 second=102 amount=-1 +kerning first=1088 second=118 amount=-1 +kerning first=1088 second=119 amount=-1 +kerning first=1088 second=120 amount=-2 +kerning first=1088 second=122 amount=-1 +kerning first=1088 second=373 amount=-1 +kerning first=1088 second=378 amount=-1 +kerning first=1088 second=380 amount=-1 +kerning first=1088 second=382 amount=-1 +kerning first=1088 second=947 amount=-1 +kerning first=1088 second=955 amount=-1 +kerning first=1088 second=957 amount=-1 +kerning first=1088 second=964 amount=-1 +kerning first=1088 second=967 amount=-2 +kerning first=1088 second=1076 amount=-1 +kerning first=1088 second=1078 amount=-2 +kerning first=1088 second=1083 amount=-1 +kerning first=1088 second=1090 amount=-1 +kerning first=1088 second=1093 amount=-2 +kerning first=1088 second=1098 amount=-1 +kerning first=1088 second=1113 amount=-1 +kerning first=1088 second=1175 amount=-2 +kerning first=1088 second=1185 amount=-1 +kerning first=1088 second=1199 amount=-1 +kerning first=1088 second=1203 amount=-2 +kerning first=1088 second=1299 amount=-1 +kerning first=1088 second=8216 amount=-1 +kerning first=1088 second=8217 amount=-1 +kerning first=1088 second=8218 amount=-1 +kerning first=1088 second=8220 amount=-1 +kerning first=1088 second=8221 amount=-1 +kerning first=1088 second=8222 amount=-1 +kerning first=1088 second=8230 amount=-1 +kerning first=1089 second=34 amount=-1 +kerning first=1089 second=39 amount=-1 +kerning first=1089 second=63 amount=-1 +kerning first=1089 second=118 amount=-1 +kerning first=1089 second=119 amount=-1 +kerning first=1089 second=120 amount=-1 +kerning first=1089 second=373 amount=-1 +kerning first=1089 second=947 amount=-1 +kerning first=1089 second=955 amount=-1 +kerning first=1089 second=957 amount=-1 +kerning first=1089 second=1078 amount=-1 +kerning first=1089 second=1093 amount=-1 +kerning first=1089 second=1175 amount=-1 +kerning first=1089 second=1199 amount=-1 +kerning first=1089 second=1203 amount=-1 +kerning first=1089 second=8216 amount=-1 +kerning first=1089 second=8217 amount=-1 +kerning first=1089 second=8220 amount=-1 +kerning first=1089 second=8221 amount=-1 +kerning first=1090 second=44 amount=-3 +kerning first=1090 second=46 amount=-3 +kerning first=1090 second=47 amount=-2 +kerning first=1090 second=99 amount=-1 +kerning first=1090 second=100 amount=-1 +kerning first=1090 second=101 amount=-1 +kerning first=1090 second=111 amount=-1 +kerning first=1090 second=113 amount=-1 +kerning first=1090 second=231 amount=-1 +kerning first=1090 second=232 amount=-1 +kerning first=1090 second=233 amount=-1 +kerning first=1090 second=234 amount=-1 +kerning first=1090 second=235 amount=-1 +kerning first=1090 second=240 amount=-1 +kerning first=1090 second=242 amount=-1 +kerning first=1090 second=243 amount=-1 +kerning first=1090 second=244 amount=-1 +kerning first=1090 second=245 amount=-1 +kerning first=1090 second=246 amount=-1 +kerning first=1090 second=248 amount=-1 +kerning first=1090 second=263 amount=-1 +kerning first=1090 second=267 amount=-1 +kerning first=1090 second=269 amount=-1 +kerning first=1090 second=271 amount=-1 +kerning first=1090 second=273 amount=-1 +kerning first=1090 second=275 amount=-1 +kerning first=1090 second=277 amount=-1 +kerning first=1090 second=279 amount=-1 +kerning first=1090 second=281 amount=-1 +kerning first=1090 second=283 amount=-1 +kerning first=1090 second=333 amount=-1 +kerning first=1090 second=335 amount=-1 +kerning first=1090 second=337 amount=-1 +kerning first=1090 second=339 amount=-1 +kerning first=1090 second=940 amount=-1 +kerning first=1090 second=941 amount=-1 +kerning first=1090 second=945 amount=-1 +kerning first=1090 second=949 amount=-1 +kerning first=1090 second=955 amount=-4 +kerning first=1090 second=959 amount=-1 +kerning first=1090 second=962 amount=-1 +kerning first=1090 second=963 amount=-1 +kerning first=1090 second=966 amount=-1 +kerning first=1090 second=972 amount=-1 +kerning first=1090 second=1076 amount=-3 +kerning first=1090 second=1077 amount=-1 +kerning first=1090 second=1083 amount=-3 +kerning first=1090 second=1086 amount=-1 +kerning first=1090 second=1089 amount=-1 +kerning first=1090 second=1092 amount=-1 +kerning first=1090 second=1104 amount=-1 +kerning first=1090 second=1105 amount=-1 +kerning first=1090 second=1108 amount=-1 +kerning first=1090 second=1113 amount=-3 +kerning first=1090 second=1195 amount=-1 +kerning first=1090 second=1241 amount=-1 +kerning first=1090 second=1257 amount=-1 +kerning first=1090 second=1299 amount=-3 +kerning first=1090 second=8218 amount=-3 +kerning first=1090 second=8222 amount=-3 +kerning first=1090 second=8230 amount=-3 +kerning first=1091 second=106 amount=7 +kerning first=1091 second=1112 amount=7 +kerning first=1092 second=34 amount=-1 +kerning first=1092 second=39 amount=-1 +kerning first=1092 second=44 amount=-1 +kerning first=1092 second=46 amount=-1 +kerning first=1092 second=47 amount=-1 +kerning first=1092 second=63 amount=-2 +kerning first=1092 second=102 amount=-1 +kerning first=1092 second=118 amount=-1 +kerning first=1092 second=119 amount=-1 +kerning first=1092 second=120 amount=-2 +kerning first=1092 second=122 amount=-1 +kerning first=1092 second=373 amount=-1 +kerning first=1092 second=378 amount=-1 +kerning first=1092 second=380 amount=-1 +kerning first=1092 second=382 amount=-1 +kerning first=1092 second=947 amount=-1 +kerning first=1092 second=955 amount=-1 +kerning first=1092 second=957 amount=-1 +kerning first=1092 second=964 amount=-1 +kerning first=1092 second=967 amount=-2 +kerning first=1092 second=1076 amount=-1 +kerning first=1092 second=1078 amount=-2 +kerning first=1092 second=1083 amount=-1 +kerning first=1092 second=1090 amount=-1 +kerning first=1092 second=1093 amount=-2 +kerning first=1092 second=1098 amount=-1 +kerning first=1092 second=1113 amount=-1 +kerning first=1092 second=1175 amount=-2 +kerning first=1092 second=1185 amount=-1 +kerning first=1092 second=1199 amount=-1 +kerning first=1092 second=1203 amount=-2 +kerning first=1092 second=1299 amount=-1 +kerning first=1092 second=8216 amount=-1 +kerning first=1092 second=8217 amount=-1 +kerning first=1092 second=8218 amount=-1 +kerning first=1092 second=8220 amount=-1 +kerning first=1092 second=8221 amount=-1 +kerning first=1092 second=8222 amount=-1 +kerning first=1092 second=8230 amount=-1 +kerning first=1093 second=45 amount=-3 +kerning first=1093 second=97 amount=-1 +kerning first=1093 second=99 amount=-2 +kerning first=1093 second=100 amount=-2 +kerning first=1093 second=101 amount=-2 +kerning first=1093 second=103 amount=-1 +kerning first=1093 second=111 amount=-2 +kerning first=1093 second=113 amount=-2 +kerning first=1093 second=115 amount=-1 +kerning first=1093 second=171 amount=-2 +kerning first=1093 second=173 amount=-3 +kerning first=1093 second=187 amount=-1 +kerning first=1093 second=224 amount=-1 +kerning first=1093 second=225 amount=-1 +kerning first=1093 second=226 amount=-1 +kerning first=1093 second=227 amount=-1 +kerning first=1093 second=228 amount=-1 +kerning first=1093 second=229 amount=-1 +kerning first=1093 second=230 amount=-1 +kerning first=1093 second=231 amount=-2 +kerning first=1093 second=232 amount=-2 +kerning first=1093 second=233 amount=-2 +kerning first=1093 second=234 amount=-2 +kerning first=1093 second=235 amount=-2 +kerning first=1093 second=240 amount=-2 +kerning first=1093 second=242 amount=-2 +kerning first=1093 second=243 amount=-2 +kerning first=1093 second=244 amount=-2 +kerning first=1093 second=245 amount=-2 +kerning first=1093 second=246 amount=-2 +kerning first=1093 second=248 amount=-2 +kerning first=1093 second=257 amount=-1 +kerning first=1093 second=259 amount=-1 +kerning first=1093 second=261 amount=-1 +kerning first=1093 second=263 amount=-2 +kerning first=1093 second=267 amount=-2 +kerning first=1093 second=269 amount=-2 +kerning first=1093 second=271 amount=-2 +kerning first=1093 second=273 amount=-2 +kerning first=1093 second=275 amount=-2 +kerning first=1093 second=277 amount=-2 +kerning first=1093 second=279 amount=-2 +kerning first=1093 second=281 amount=-2 +kerning first=1093 second=283 amount=-2 +kerning first=1093 second=287 amount=-1 +kerning first=1093 second=289 amount=-1 +kerning first=1093 second=291 amount=-1 +kerning first=1093 second=333 amount=-2 +kerning first=1093 second=335 amount=-2 +kerning first=1093 second=337 amount=-2 +kerning first=1093 second=339 amount=-2 +kerning first=1093 second=347 amount=-1 +kerning first=1093 second=351 amount=-1 +kerning first=1093 second=353 amount=-1 +kerning first=1093 second=940 amount=-2 +kerning first=1093 second=941 amount=-2 +kerning first=1093 second=945 amount=-2 +kerning first=1093 second=949 amount=-2 +kerning first=1093 second=959 amount=-2 +kerning first=1093 second=962 amount=-2 +kerning first=1093 second=963 amount=-2 +kerning first=1093 second=966 amount=-2 +kerning first=1093 second=969 amount=-1 +kerning first=1093 second=972 amount=-2 +kerning first=1093 second=974 amount=-1 +kerning first=1093 second=1072 amount=-1 +kerning first=1093 second=1073 amount=-1 +kerning first=1093 second=1077 amount=-2 +kerning first=1093 second=1086 amount=-2 +kerning first=1093 second=1089 amount=-2 +kerning first=1093 second=1092 amount=-2 +kerning first=1093 second=1095 amount=-1 +kerning first=1093 second=1104 amount=-2 +kerning first=1093 second=1105 amount=-2 +kerning first=1093 second=1108 amount=-2 +kerning first=1093 second=1109 amount=-1 +kerning first=1093 second=1195 amount=-2 +kerning first=1093 second=1241 amount=-2 +kerning first=1093 second=1257 amount=-2 +kerning first=1093 second=8211 amount=-3 +kerning first=1093 second=8212 amount=-3 +kerning first=1093 second=8249 amount=-2 +kerning first=1093 second=8250 amount=-1 +kerning first=1094 second=99 amount=-1 +kerning first=1094 second=100 amount=-1 +kerning first=1094 second=101 amount=-1 +kerning first=1094 second=111 amount=-1 +kerning first=1094 second=113 amount=-1 +kerning first=1094 second=231 amount=-1 +kerning first=1094 second=232 amount=-1 +kerning first=1094 second=233 amount=-1 +kerning first=1094 second=234 amount=-1 +kerning first=1094 second=235 amount=-1 +kerning first=1094 second=240 amount=-1 kerning first=1094 second=242 amount=-1 -kerning first=214 second=214 amount=-2 -kerning first=906 second=945 amount=-1 -kerning first=94 second=226 amount=-1 -kerning first=1118 second=1262 amount=-2 -kerning first=237 second=116 amount=-1 -kerning first=357 second=268 amount=-2 -kerning first=1210 second=1069 amount=-1 -kerning first=254 second=972 amount=-1 -kerning first=46 second=8220 amount=-1 -kerning first=195 second=227 amount=-1 -kerning first=313 second=117 amount=-1 -kerning first=215 second=369 amount=-1 -kerning first=361 second=216 amount=-2 -kerning first=956 second=106 amount=1 -kerning first=112 second=8221 amount=-1 -kerning first=1262 second=256 amount=-2 -kerning first=1026 second=962 amount=-1 -kerning first=175 second=240 amount=-1 -kerning first=171 second=916 amount=-1 -kerning first=53 second=943 amount=-1 -kerning first=56 second=252 amount=-1 -kerning first=193 second=1256 amount=-2 -kerning first=317 second=67 amount=-2 -kerning first=8361 second=245 amount=-1 -kerning first=213 second=8222 amount=-1 -kerning first=923 second=359 amount=-1 -kerning first=931 second=119 amount=-4 -kerning first=1176 second=963 amount=-1 -kerning first=1179 second=271 amount=-1 -kerning first=239 second=920 amount=-2 -kerning first=958 second=286 amount=-2 -kerning first=37 second=267 amount=-1 -kerning first=1037 second=218 amount=-2 -kerning first=8250 second=258 amount=-3 -kerning first=1071 second=360 amount=-2 -kerning first=1068 second=1174 amount=-2 -kerning first=318 second=242 amount=-1 -kerning first=77 second=1101 amount=-1 -kerning first=1103 second=287 amount=-1 -kerning first=338 second=1262 amount=-2 -kerning first=103 second=268 amount=-2 -kerning first=363 second=1069 amount=-1 -kerning first=369 second=81 amount=-2 -kerning first=963 second=231 amount=-1 -kerning first=61 second=357 amount=-1 -kerning first=64 second=117 amount=-1 -kerning first=204 second=269 amount=-1 -kerning first=8366 second=350 amount=-1 -kerning first=1194 second=374 amount=-2 -kerning first=250 second=106 amount=1 -kerning first=370 second=256 amount=-2 -kerning first=163 second=118 amount=-4 -kerning first=42 second=370 amount=-2 -kerning first=1049 second=83 amount=-1 -kerning first=185 second=283 amount=-1 -kerning first=1081 second=245 amount=-1 -kerning first=900 second=949 amount=-1 -kerning first=903 second=257 amount=-1 -kerning first=88 second=229 amount=-1 -kerning first=1107 second=1299 amount=-3 -kerning first=231 second=119 amount=-1 -kerning first=354 second=44 amount=-3 -kerning first=108 second=371 amount=-1 -kerning first=105 second=1195 amount=-1 -kerning first=1210 second=84 amount=-5 -kerning first=251 second=286 amount=-2 -kerning first=965 second=1090 amount=-3 -kerning first=968 second=334 amount=-2 -kerning first=8211 second=376 amount=-4 -kerning first=189 second=230 amount=-1 -kerning first=301 second=360 amount=-2 -kerning first=69 second=242 amount=-1 -kerning first=206 second=947 amount=-4 -kerning first=209 second=372 amount=-5 -kerning first=330 second=287 amount=-1 -kerning first=66 second=923 amount=-1 -kerning first=86 second=1262 amount=-2 -kerning first=89 second=1240 amount=-3 -kerning first=1119 second=335 amount=-1 -kerning first=1170 second=97 amount=-1 -kerning first=946 second=347 amount=-1 -kerning first=950 second=109 amount=-2 -kerning first=1219 second=259 amount=-1 -kerning first=1224 second=34 amount=-3 -kerning first=255 second=231 amount=-1 -kerning first=372 second=1175 amount=-1 -kerning first=375 second=361 amount=-1 -kerning first=168 second=243 amount=-1 -kerning first=278 second=373 amount=-4 -kerning first=8222 second=86 amount=-4 -kerning first=905 second=1176 amount=-1 -kerning first=93 second=332 amount=-2 -kerning first=1168 second=966 amount=-1 -kerning first=1171 second=275 amount=-1 -kerning first=236 second=244 amount=-1 -kerning first=353 second=1203 amount=-1 -kerning first=951 second=289 amount=-1 -kerning first=1027 second=221 amount=-5 -kerning first=287 second=83 amount=-1 -kerning first=8224 second=261 amount=-1 -kerning first=194 second=333 amount=-1 -kerning first=311 second=245 amount=-2 -kerning first=214 second=949 amount=-1 -kerning first=906 second=8211 amount=-2 -kerning first=94 second=963 amount=-1 -kerning first=363 second=84 amount=-5 -kerning first=955 second=234 amount=-1 -kerning first=260 second=334 amount=-2 -kerning first=35 second=218 amount=-2 -kerning first=257 second=1090 amount=-1 -kerning first=1028 second=376 amount=-2 -kerning first=174 second=346 amount=-1 -kerning first=8240 second=211 amount=-2 -kerning first=55 second=360 amount=-2 -kerning first=1063 second=8212 amount=-2 -kerning first=198 second=273 amount=-1 -kerning first=201 second=45 amount=-2 -kerning first=195 second=964 amount=-3 -kerning first=8363 second=113 amount=-1 -kerning first=78 second=287 amount=-1 -kerning first=238 second=1108 amount=-1 -kerning first=367 second=34 amount=-3 -kerning first=121 second=361 amount=-1 -kerning first=1224 second=8216 amount=-3 -kerning first=124 second=121 amount=-1 -kerning first=36 second=373 amount=-4 -kerning first=1026 second=8250 amount=-1 -kerning first=175 second=1028 amount=-2 -kerning first=178 second=288 amount=-2 -kerning first=8226 second=1184 amount=-5 -kerning first=1074 second=248 amount=-1 -kerning first=202 second=220 amount=-2 -kerning first=317 second=350 amount=-1 -kerning first=343 second=275 amount=-1 -kerning first=99 second=1203 amount=-1 -kerning first=962 second=337 amount=-1 -kerning first=965 second=99 amount=-1 -kerning first=161 second=71 amount=-2 -kerning first=270 second=221 amount=-3 -kerning first=43 second=83 amount=-1 -kerning first=1037 second=953 amount=-1 -kerning first=1041 second=261 amount=-1 -kerning first=34 second=8230 amount=-1 -kerning first=183 second=233 amount=-1 -kerning first=63 second=245 amount=-1 -kerning first=203 second=375 amount=-1 -kerning first=323 second=290 amount=-2 -kerning first=901 second=210 amount=-2 -kerning first=1116 second=100 amount=-2 -kerning first=249 second=234 amount=-1 -kerning first=369 second=364 amount=-2 -kerning first=963 second=968 amount=-1 -kerning first=162 second=246 amount=-1 -kerning first=271 second=376 amount=-5 -kerning first=8212 second=89 amount=-4 -kerning first=1048 second=211 amount=-2 -kerning first=291 second=8212 amount=-2 -kerning first=296 second=1059 amount=-2 -kerning first=1084 second=113 amount=-1 -kerning first=1080 second=353 amount=-1 -kerning first=201 second=8249 amount=-3 -kerning first=327 second=235 amount=-1 -kerning first=902 second=365 amount=-1 -kerning first=84 second=1094 amount=-2 -kerning first=87 second=335 amount=-3 -kerning first=113 second=34 amount=-3 -kerning first=367 second=8216 amount=-3 -kerning first=376 second=74 amount=-6 -kerning first=1049 second=366 amount=-2 -kerning first=188 second=336 amount=-2 -kerning first=303 second=248 amount=-1 -kerning first=211 second=260 amount=-2 -kerning first=900 second=8217 amount=-3 -kerning first=88 second=966 amount=-2 -kerning first=91 second=275 amount=-1 -kerning first=354 second=324 amount=-2 -kerning first=357 second=87 amount=-5 -kerning first=1203 second=1185 amount=-2 -kerning first=1210 second=367 amount=-1 -kerning first=254 second=337 amount=-1 -kerning first=374 second=940 amount=-4 -kerning first=170 second=111 amount=-1 -kerning first=167 second=351 amount=-1 -kerning first=280 second=261 amount=-1 -kerning first=49 second=363 amount=-1 -kerning first=72 second=290 amount=-2 -kerning first=215 second=210 amount=-2 -kerning first=912 second=250 amount=-1 -kerning first=358 second=262 amount=-2 -kerning first=950 second=1241 amount=-1 -kerning first=1206 second=8220 amount=-2 -kerning first=255 second=968 amount=-1 -kerning first=258 second=277 amount=-1 -kerning first=381 second=199 amount=-1 -kerning first=168 second=1035 amount=-5 -kerning first=1033 second=89 amount=-5 -kerning first=8222 second=369 amount=-1 -kerning first=47 second=8212 amount=-1 -kerning first=50 second=1059 amount=-2 -kerning first=1067 second=251 amount=-1 -kerning first=314 second=113 amount=-1 -kerning first=76 second=235 amount=-1 -kerning first=113 second=8216 amount=-3 -kerning first=1263 second=252 amount=-1 -kerning first=1037 second=39 amount=-3 -kerning first=282 second=1184 amount=-5 -kerning first=287 second=366 amount=-2 -kerning first=8220 second=8222 amount=-1 -kerning first=57 second=248 amount=-1 -kerning first=200 second=171 amount=-3 -kerning first=1103 second=103 amount=-1 -kerning first=214 second=8217 amount=-3 -kerning first=341 second=225 amount=-1 -kerning first=926 second=355 amount=-1 -kerning first=934 second=115 amount=-1 -kerning first=103 second=87 amount=-5 -kerning first=1184 second=267 amount=-2 -kerning first=363 second=367 amount=-1 -kerning first=123 second=249 amount=-1 -kerning first=120 second=940 amount=-2 -kerning first=38 second=261 amount=-1 -kerning first=35 second=953 amount=-1 -kerning first=283 second=8218 amount=-1 -kerning first=8240 second=945 amount=-1 -kerning first=1073 second=356 amount=-5 -kerning first=84 second=100 amount=-3 -kerning first=221 second=941 amount=-4 -kerning first=247 second=187 amount=-1 -kerning first=361 second=8220 amount=-3 -kerning first=964 second=227 amount=-1 -kerning first=160 second=199 amount=-2 -kerning first=273 second=89 amount=-5 -kerning first=42 second=211 amount=-2 -kerning first=1039 second=369 amount=-1 -kerning first=178 second=1098 amount=-3 -kerning first=182 second=339 amount=-1 -kerning first=185 second=101 amount=-1 -kerning first=297 second=251 amount=-1 -kerning first=62 second=353 amount=-1 -kerning first=65 second=113 amount=-1 -kerning first=205 second=263 amount=-1 -kerning first=942 second=240 amount=-1 -kerning first=108 second=212 amount=-2 -kerning first=1186 second=1194 amount=-1 -kerning first=371 second=252 amount=-1 -kerning first=962 second=1256 amount=-2 -kerning first=125 second=1118 amount=-1 -kerning first=161 second=354 amount=-5 -kerning first=274 second=266 amount=-2 -kerning first=277 second=39 amount=-1 -kerning first=40 second=1184 amount=-5 -kerning first=43 second=366 amount=-2 -kerning first=1051 second=79 amount=-2 -kerning first=186 second=279 amount=-1 -kerning first=183 second=970 amount=-1 -kerning first=209 second=213 amount=-2 -kerning first=8370 second=1026 amount=-5 -kerning first=8377 second=286 amount=-2 -kerning first=330 second=103 amount=-1 -kerning first=904 second=253 amount=-1 -kerning first=89 second=225 amount=-4 -kerning first=966 second=1083 amount=-1 -kerning first=162 second=1038 amount=-2 -kerning first=278 second=214 amount=-2 -kerning first=8212 second=372 amount=-2 -kerning first=1048 second=945 amount=-1 -kerning first=190 second=226 amount=-1 -kerning first=302 second=356 amount=-5 -kerning first=305 second=116 amount=-1 -kerning first=327 second=972 amount=-1 -kerning first=256 second=227 amount=-1 -kerning first=973 second=269 amount=-1 -kerning first=51 second=251 amount=-1 -kerning first=211 second=1066 amount=-2 -kerning first=916 second=118 amount=-4 -kerning first=1169 second=962 amount=-1 -kerning first=237 second=240 amount=-1 -kerning first=357 second=370 amount=-2 -kerning first=354 second=1194 amount=-1 -kerning first=952 second=283 amount=-1 -kerning first=117 second=252 amount=-1 -kerning first=254 second=1256 amount=-2 -kerning first=35 second=39 amount=-3 -kerning first=277 second=8222 amount=-1 -kerning first=8221 second=949 amount=-1 -kerning first=8225 second=257 amount=-1 -kerning first=1095 second=1026 amount=-5 -kerning first=78 second=103 amount=-1 -kerning first=1178 second=218 amount=-1 -kerning first=956 second=230 amount=-1 -kerning first=36 second=214 amount=-2 -kerning first=1026 second=947 amount=-4 -kerning first=56 second=356 amount=-5 -kerning first=59 second=116 amount=-1 -kerning first=8361 second=347 amount=-1 -kerning first=76 second=972 amount=-1 -kerning first=931 second=243 amount=-1 -kerning first=125 second=117 amount=-1 -kerning first=37 second=369 amount=-1 -kerning first=176 second=973 amount=-1 -kerning first=8230 second=1176 amount=-1 -kerning first=1075 second=244 amount=-1 -kerning first=203 second=216 amount=-2 -kerning first=323 second=106 amount=1 -kerning first=8365 second=289 amount=-1 -kerning first=226 second=118 amount=-1 -kerning first=341 second=962 amount=-1 -kerning first=100 second=1194 amount=-2 -kerning first=103 second=370 amount=-2 -kerning first=963 second=333 amount=-1 -kerning first=162 second=67 amount=-2 -kerning first=271 second=217 amount=-2 -kerning first=44 second=79 amount=-1 -kerning first=184 second=229 amount=-1 -kerning first=299 second=119 amount=-4 -kerning first=8240 second=8211 amount=-2 -kerning first=296 second=359 amount=-1 -kerning first=61 second=920 amount=-2 -kerning first=204 second=371 amount=-1 -kerning first=201 second=1195 amount=-1 -kerning first=321 second=1026 amount=-5 -kerning first=8372 second=234 amount=-1 +kerning first=1094 second=243 amount=-1 +kerning first=1094 second=244 amount=-1 +kerning first=1094 second=245 amount=-1 +kerning first=1094 second=246 amount=-1 +kerning first=1094 second=248 amount=-1 +kerning first=1094 second=263 amount=-1 +kerning first=1094 second=267 amount=-1 +kerning first=1094 second=269 amount=-1 +kerning first=1094 second=271 amount=-1 +kerning first=1094 second=273 amount=-1 +kerning first=1094 second=275 amount=-1 +kerning first=1094 second=277 amount=-1 +kerning first=1094 second=279 amount=-1 +kerning first=1094 second=281 amount=-1 +kerning first=1094 second=283 amount=-1 +kerning first=1094 second=333 amount=-1 +kerning first=1094 second=335 amount=-1 +kerning first=1094 second=337 amount=-1 +kerning first=1094 second=339 amount=-1 +kerning first=1094 second=940 amount=-1 +kerning first=1094 second=941 amount=-1 +kerning first=1094 second=945 amount=-1 +kerning first=1094 second=949 amount=-1 +kerning first=1094 second=959 amount=-1 +kerning first=1094 second=962 amount=-1 +kerning first=1094 second=963 amount=-1 +kerning first=1094 second=964 amount=-2 +kerning first=1094 second=966 amount=-1 +kerning first=1094 second=972 amount=-1 +kerning first=1094 second=1073 amount=-1 +kerning first=1094 second=1077 amount=-1 +kerning first=1094 second=1086 amount=-1 +kerning first=1094 second=1089 amount=-1 +kerning first=1094 second=1090 amount=-2 +kerning first=1094 second=1092 amount=-1 +kerning first=1094 second=1095 amount=-2 +kerning first=1094 second=1098 amount=-2 +kerning first=1094 second=1104 amount=-1 +kerning first=1094 second=1105 amount=-1 +kerning first=1094 second=1108 amount=-1 +kerning first=1094 second=1185 amount=-2 +kerning first=1094 second=1195 amount=-1 +kerning first=1094 second=1241 amount=-1 +kerning first=1094 second=1257 amount=-1 +kerning first=1097 second=99 amount=-1 +kerning first=1097 second=100 amount=-1 +kerning first=1097 second=101 amount=-1 +kerning first=1097 second=111 amount=-1 +kerning first=1097 second=113 amount=-1 +kerning first=1097 second=231 amount=-1 +kerning first=1097 second=232 amount=-1 +kerning first=1097 second=233 amount=-1 +kerning first=1097 second=234 amount=-1 +kerning first=1097 second=235 amount=-1 +kerning first=1097 second=240 amount=-1 +kerning first=1097 second=242 amount=-1 +kerning first=1097 second=243 amount=-1 +kerning first=1097 second=244 amount=-1 +kerning first=1097 second=245 amount=-1 +kerning first=1097 second=246 amount=-1 +kerning first=1097 second=248 amount=-1 +kerning first=1097 second=263 amount=-1 +kerning first=1097 second=267 amount=-1 +kerning first=1097 second=269 amount=-1 +kerning first=1097 second=271 amount=-1 +kerning first=1097 second=273 amount=-1 +kerning first=1097 second=275 amount=-1 +kerning first=1097 second=277 amount=-1 +kerning first=1097 second=279 amount=-1 +kerning first=1097 second=281 amount=-1 +kerning first=1097 second=283 amount=-1 +kerning first=1097 second=333 amount=-1 +kerning first=1097 second=335 amount=-1 +kerning first=1097 second=337 amount=-1 +kerning first=1097 second=339 amount=-1 +kerning first=1097 second=940 amount=-1 +kerning first=1097 second=941 amount=-1 +kerning first=1097 second=945 amount=-1 +kerning first=1097 second=949 amount=-1 +kerning first=1097 second=959 amount=-1 +kerning first=1097 second=962 amount=-1 +kerning first=1097 second=963 amount=-1 +kerning first=1097 second=964 amount=-2 +kerning first=1097 second=966 amount=-1 +kerning first=1097 second=972 amount=-1 +kerning first=1097 second=1073 amount=-1 +kerning first=1097 second=1077 amount=-1 +kerning first=1097 second=1086 amount=-1 +kerning first=1097 second=1089 amount=-1 +kerning first=1097 second=1090 amount=-2 +kerning first=1097 second=1092 amount=-1 +kerning first=1097 second=1095 amount=-2 +kerning first=1097 second=1098 amount=-2 +kerning first=1097 second=1104 amount=-1 +kerning first=1097 second=1105 amount=-1 +kerning first=1097 second=1108 amount=-1 +kerning first=1097 second=1185 amount=-2 +kerning first=1097 second=1195 amount=-1 +kerning first=1097 second=1241 amount=-1 +kerning first=1097 second=1257 amount=-1 +kerning first=1098 second=120 amount=-2 +kerning first=1098 second=1078 amount=-2 +kerning first=1098 second=1093 amount=-2 +kerning first=1098 second=1095 amount=-1 +kerning first=1098 second=1175 amount=-2 +kerning first=1098 second=1203 amount=-2 +kerning first=1100 second=120 amount=-2 +kerning first=1100 second=1078 amount=-2 +kerning first=1100 second=1093 amount=-2 +kerning first=1100 second=1095 amount=-1 +kerning first=1100 second=1175 amount=-2 +kerning first=1100 second=1203 amount=-2 +kerning first=1101 second=34 amount=-1 +kerning first=1101 second=39 amount=-1 +kerning first=1101 second=44 amount=-1 +kerning first=1101 second=46 amount=-1 +kerning first=1101 second=47 amount=-1 +kerning first=1101 second=63 amount=-2 +kerning first=1101 second=102 amount=-1 +kerning first=1101 second=118 amount=-1 +kerning first=1101 second=119 amount=-1 +kerning first=1101 second=120 amount=-2 +kerning first=1101 second=122 amount=-1 +kerning first=1101 second=373 amount=-1 +kerning first=1101 second=378 amount=-1 +kerning first=1101 second=380 amount=-1 +kerning first=1101 second=382 amount=-1 +kerning first=1101 second=947 amount=-1 +kerning first=1101 second=955 amount=-1 +kerning first=1101 second=957 amount=-1 +kerning first=1101 second=964 amount=-1 +kerning first=1101 second=967 amount=-2 +kerning first=1101 second=1076 amount=-1 +kerning first=1101 second=1078 amount=-2 +kerning first=1101 second=1083 amount=-1 +kerning first=1101 second=1090 amount=-1 +kerning first=1101 second=1093 amount=-2 +kerning first=1101 second=1098 amount=-1 +kerning first=1101 second=1113 amount=-1 +kerning first=1101 second=1175 amount=-2 +kerning first=1101 second=1185 amount=-1 +kerning first=1101 second=1199 amount=-1 +kerning first=1101 second=1203 amount=-2 +kerning first=1101 second=1299 amount=-1 +kerning first=1101 second=8216 amount=-1 +kerning first=1101 second=8217 amount=-1 +kerning first=1101 second=8218 amount=-1 +kerning first=1101 second=8220 amount=-1 +kerning first=1101 second=8221 amount=-1 +kerning first=1101 second=8222 amount=-1 +kerning first=1101 second=8230 amount=-1 +kerning first=1102 second=34 amount=-1 +kerning first=1102 second=39 amount=-1 +kerning first=1102 second=44 amount=-1 +kerning first=1102 second=46 amount=-1 +kerning first=1102 second=47 amount=-1 +kerning first=1102 second=63 amount=-2 +kerning first=1102 second=102 amount=-1 +kerning first=1102 second=118 amount=-1 +kerning first=1102 second=119 amount=-1 +kerning first=1102 second=120 amount=-2 +kerning first=1102 second=122 amount=-1 +kerning first=1102 second=373 amount=-1 +kerning first=1102 second=378 amount=-1 +kerning first=1102 second=380 amount=-1 +kerning first=1102 second=382 amount=-1 +kerning first=1102 second=947 amount=-1 +kerning first=1102 second=955 amount=-1 +kerning first=1102 second=957 amount=-1 +kerning first=1102 second=964 amount=-1 +kerning first=1102 second=967 amount=-2 +kerning first=1102 second=1076 amount=-1 +kerning first=1102 second=1078 amount=-2 +kerning first=1102 second=1083 amount=-1 +kerning first=1102 second=1090 amount=-1 +kerning first=1102 second=1093 amount=-2 +kerning first=1102 second=1098 amount=-1 +kerning first=1102 second=1113 amount=-1 +kerning first=1102 second=1175 amount=-2 +kerning first=1102 second=1185 amount=-1 +kerning first=1102 second=1199 amount=-1 +kerning first=1102 second=1203 amount=-2 +kerning first=1102 second=1299 amount=-1 +kerning first=1102 second=8216 amount=-1 +kerning first=1102 second=8217 amount=-1 +kerning first=1102 second=8218 amount=-1 +kerning first=1102 second=8220 amount=-1 +kerning first=1102 second=8221 amount=-1 +kerning first=1102 second=8222 amount=-1 +kerning first=1102 second=8230 amount=-1 +kerning first=1104 second=34 amount=-1 +kerning first=1104 second=39 amount=-1 +kerning first=1104 second=44 amount=-1 +kerning first=1104 second=46 amount=-1 +kerning first=1104 second=47 amount=-1 +kerning first=1104 second=63 amount=-2 +kerning first=1104 second=102 amount=-1 +kerning first=1104 second=118 amount=-1 +kerning first=1104 second=119 amount=-1 +kerning first=1104 second=120 amount=-2 +kerning first=1104 second=122 amount=-1 +kerning first=1104 second=373 amount=-1 +kerning first=1104 second=378 amount=-1 +kerning first=1104 second=380 amount=-1 +kerning first=1104 second=382 amount=-1 +kerning first=1104 second=947 amount=-1 +kerning first=1104 second=955 amount=-1 +kerning first=1104 second=957 amount=-1 +kerning first=1104 second=964 amount=-1 +kerning first=1104 second=967 amount=-2 +kerning first=1104 second=1076 amount=-1 +kerning first=1104 second=1078 amount=-2 +kerning first=1104 second=1083 amount=-1 +kerning first=1104 second=1090 amount=-1 +kerning first=1104 second=1093 amount=-2 +kerning first=1104 second=1098 amount=-1 +kerning first=1104 second=1113 amount=-1 +kerning first=1104 second=1175 amount=-2 +kerning first=1104 second=1185 amount=-1 +kerning first=1104 second=1199 amount=-1 +kerning first=1104 second=1203 amount=-2 +kerning first=1104 second=1299 amount=-1 +kerning first=1104 second=8216 amount=-1 +kerning first=1104 second=8217 amount=-1 +kerning first=1104 second=8218 amount=-1 +kerning first=1104 second=8220 amount=-1 +kerning first=1104 second=8221 amount=-1 +kerning first=1104 second=8222 amount=-1 +kerning first=1104 second=8230 amount=-1 +kerning first=1105 second=34 amount=-1 +kerning first=1105 second=39 amount=-1 +kerning first=1105 second=44 amount=-1 +kerning first=1105 second=46 amount=-1 +kerning first=1105 second=47 amount=-1 +kerning first=1105 second=63 amount=-2 +kerning first=1105 second=102 amount=-1 +kerning first=1105 second=118 amount=-1 +kerning first=1105 second=119 amount=-1 +kerning first=1105 second=120 amount=-2 +kerning first=1105 second=122 amount=-1 +kerning first=1105 second=373 amount=-1 +kerning first=1105 second=378 amount=-1 +kerning first=1105 second=380 amount=-1 +kerning first=1105 second=382 amount=-1 +kerning first=1105 second=947 amount=-1 +kerning first=1105 second=955 amount=-1 +kerning first=1105 second=957 amount=-1 +kerning first=1105 second=964 amount=-1 +kerning first=1105 second=967 amount=-2 +kerning first=1105 second=1076 amount=-1 +kerning first=1105 second=1078 amount=-2 +kerning first=1105 second=1083 amount=-1 +kerning first=1105 second=1090 amount=-1 +kerning first=1105 second=1093 amount=-2 +kerning first=1105 second=1098 amount=-1 +kerning first=1105 second=1113 amount=-1 +kerning first=1105 second=1175 amount=-2 +kerning first=1105 second=1185 amount=-1 +kerning first=1105 second=1199 amount=-1 +kerning first=1105 second=1203 amount=-2 +kerning first=1105 second=1299 amount=-1 +kerning first=1105 second=8216 amount=-1 +kerning first=1105 second=8217 amount=-1 +kerning first=1105 second=8218 amount=-1 +kerning first=1105 second=8220 amount=-1 +kerning first=1105 second=8221 amount=-1 +kerning first=1105 second=8222 amount=-1 +kerning first=1105 second=8230 amount=-1 +kerning first=1106 second=34 amount=-1 +kerning first=1106 second=39 amount=-1 +kerning first=1106 second=63 amount=-2 +kerning first=1106 second=102 amount=-1 +kerning first=1106 second=106 amount=1 +kerning first=1106 second=118 amount=-1 +kerning first=1106 second=119 amount=-1 +kerning first=1106 second=373 amount=-1 +kerning first=1106 second=947 amount=-1 +kerning first=1106 second=957 amount=-1 +kerning first=1106 second=964 amount=-1 kerning first=1106 second=1090 amount=-1 -kerning first=250 second=230 amount=-1 -kerning first=964 second=964 amount=-3 -kerning first=967 second=273 amount=-1 -kerning first=163 second=242 amount=-1 -kerning first=269 second=947 amount=-1 -kerning first=273 second=372 amount=-5 -kerning first=42 second=945 amount=-1 -kerning first=185 second=1240 amount=-2 -kerning first=182 second=1262 amount=-2 -kerning first=1081 second=347 amount=-1 -kerning first=1078 second=1108 amount=-2 -kerning first=205 second=1069 amount=-1 -kerning first=903 second=361 amount=-1 -kerning first=906 second=121 amount=-1 -kerning first=1169 second=46 amount=-3 -kerning first=346 second=1202 amount=-1 -kerning first=351 second=373 amount=-1 -kerning first=942 second=1028 amount=-2 -kerning first=971 second=220 amount=-2 -kerning first=8217 second=260 amount=-3 -kerning first=1051 second=362 amount=-2 -kerning first=189 second=332 amount=-2 -kerning first=304 second=244 amount=-1 -kerning first=72 second=106 amount=1 -kerning first=1087 second=289 amount=-1 -kerning first=212 second=256 amount=-2 -kerning first=912 second=71 amount=-2 -kerning first=89 second=962 amount=-4 -kerning first=1170 second=221 amount=-5 -kerning first=358 second=83 amount=-1 -kerning first=950 second=233 amount=-1 -kerning first=1219 second=363 amount=-1 -kerning first=255 second=333 amount=-1 -kerning first=378 second=245 amount=-1 -kerning first=278 second=949 amount=-1 -kerning first=8222 second=210 amount=-1 -kerning first=50 second=359 amount=-1 -kerning first=1048 second=8211 amount=-2 -kerning first=53 second=119 amount=-4 -kerning first=190 second=963 amount=-1 -kerning first=193 second=271 amount=-1 -kerning first=1059 second=1051 amount=-1 -kerning first=70 second=1026 amount=-5 -kerning first=73 second=286 amount=-2 -kerning first=1096 second=234 amount=-1 -kerning first=331 second=1090 amount=-1 -kerning first=915 second=246 amount=-1 -kerning first=96 second=218 amount=-2 -kerning first=1171 second=376 amount=-5 -kerning first=236 second=346 amount=-1 -kerning first=1220 second=1059 amount=-2 -kerning first=256 second=964 amount=-3 -kerning first=262 second=45 amount=-1 -kerning first=172 second=287 amount=-1 -kerning first=8224 second=365 amount=-1 -kerning first=197 second=219 amount=-2 -kerning first=306 second=1108 amount=-1 -kerning first=311 second=347 amount=-1 -kerning first=77 second=231 amount=-1 -kerning first=341 second=46 amount=-3 -kerning first=97 second=373 amount=-1 -kerning first=237 second=1028 amount=-2 -kerning first=240 second=288 amount=-2 -kerning first=955 second=336 amount=-2 -kerning first=1298 second=248 amount=-1 -kerning first=177 second=232 amount=-1 -kerning first=58 second=244 amount=-1 -kerning first=198 second=374 amount=-5 -kerning first=316 second=289 amount=-1 -kerning first=342 second=221 amount=-2 -kerning first=936 second=111 amount=-1 -kerning first=928 second=351 amount=-1 -kerning first=1185 second=261 amount=-1 -kerning first=361 second=1177 amount=-1 -kerning first=124 second=245 amount=-1 -kerning first=36 second=949 amount=-1 -kerning first=39 second=257 amount=-1 -kerning first=1039 second=210 amount=-2 -kerning first=1074 second=352 amount=-1 -kerning first=205 second=84 amount=-5 -kerning first=322 second=234 amount=-1 -kerning first=8364 second=1241 amount=-1 -kerning first=8369 second=187 amount=-1 +kerning first=1106 second=1098 amount=-1 +kerning first=1106 second=1112 amount=1 +kerning first=1106 second=1185 amount=-1 +kerning first=1106 second=1199 amount=-1 +kerning first=1106 second=8216 amount=-1 +kerning first=1106 second=8217 amount=-1 +kerning first=1106 second=8220 amount=-1 +kerning first=1106 second=8221 amount=-1 +kerning first=1107 second=44 amount=-3 +kerning first=1107 second=46 amount=-3 +kerning first=1107 second=47 amount=-2 +kerning first=1107 second=99 amount=-1 +kerning first=1107 second=100 amount=-1 +kerning first=1107 second=101 amount=-1 +kerning first=1107 second=111 amount=-1 +kerning first=1107 second=113 amount=-1 +kerning first=1107 second=231 amount=-1 +kerning first=1107 second=232 amount=-1 +kerning first=1107 second=233 amount=-1 +kerning first=1107 second=234 amount=-1 +kerning first=1107 second=235 amount=-1 +kerning first=1107 second=240 amount=-1 +kerning first=1107 second=242 amount=-1 +kerning first=1107 second=243 amount=-1 +kerning first=1107 second=244 amount=-1 +kerning first=1107 second=245 amount=-1 +kerning first=1107 second=246 amount=-1 +kerning first=1107 second=248 amount=-1 +kerning first=1107 second=263 amount=-1 +kerning first=1107 second=267 amount=-1 +kerning first=1107 second=269 amount=-1 +kerning first=1107 second=271 amount=-1 +kerning first=1107 second=273 amount=-1 +kerning first=1107 second=275 amount=-1 kerning first=1107 second=277 amount=-1 -kerning first=931 second=1035 amount=-5 -kerning first=365 second=1059 amount=-2 -kerning first=262 second=8249 amount=-1 -kerning first=274 second=85 amount=-2 -kerning first=1041 second=365 amount=-1 -kerning first=183 second=335 amount=-1 -kerning first=186 second=97 amount=-1 -kerning first=60 second=1108 amount=-1 -kerning first=63 second=347 amount=-1 -kerning first=206 second=259 amount=-1 -kerning first=209 second=34 amount=-3 -kerning first=89 second=46 amount=-4 -kerning first=1116 second=224 amount=-1 -kerning first=352 second=86 amount=-2 -kerning first=249 second=336 amount=-2 -kerning first=372 second=248 amount=-3 -kerning first=966 second=378 amount=-1 -kerning first=162 second=350 amount=-1 -kerning first=41 second=1176 amount=-1 -kerning first=47 second=122 amount=-2 -kerning first=1044 second=1063 amount=-2 -kerning first=44 second=362 amount=-1 -kerning first=184 second=966 amount=-1 -kerning first=327 second=337 amount=-1 -kerning first=905 second=249 amount=-1 -kerning first=902 second=940 amount=-1 -kerning first=1194 second=8218 amount=-1 -kerning first=376 second=198 amount=-5 -kerning first=166 second=290 amount=-2 -kerning first=42 second=8211 amount=-2 -kerning first=1049 second=941 amount=-1 -kerning first=45 second=1051 amount=-4 -kerning first=303 second=352 amount=-1 -kerning first=1085 second=1241 amount=-1 -kerning first=91 second=376 amount=-5 -kerning first=1118 second=1079 amount=-1 -kerning first=1174 second=89 amount=-2 -kerning first=357 second=211 amount=-2 -kerning first=945 second=1098 amount=-2 -kerning first=952 second=101 amount=-1 -kerning first=108 second=8212 amount=-2 -kerning first=1223 second=251 amount=-1 -kerning first=374 second=1117 amount=-3 -kerning first=380 second=113 amount=-1 -kerning first=170 second=235 amount=-1 -kerning first=280 second=365 amount=-1 -kerning first=209 second=8216 amount=-3 -kerning first=912 second=354 amount=-5 -kerning first=89 second=8250 amount=-2 -kerning first=1178 second=39 amount=-2 -kerning first=358 second=366 amount=-2 -kerning first=950 second=970 amount=-1 -kerning first=118 second=248 amount=-1 -kerning first=278 second=8217 amount=-3 -kerning first=8226 second=253 amount=-1 -kerning first=1067 second=355 amount=-1 -kerning first=199 second=87 amount=-1 -kerning first=76 second=337 amount=-1 -kerning first=915 second=1038 amount=-2 -kerning first=96 second=953 amount=-1 -kerning first=356 second=8218 amount=-3 -kerning first=958 second=226 amount=-1 -kerning first=1263 second=356 amount=-5 -kerning first=37 second=210 amount=-2 -kerning first=176 second=338 amount=-2 -kerning first=179 second=100 amount=-1 -kerning first=287 second=941 amount=-1 -kerning first=57 second=352 amount=-1 -kerning first=200 second=262 amount=-2 -kerning first=315 second=1241 amount=-1 -kerning first=318 second=187 amount=-1 -kerning first=77 second=968 amount=-1 -kerning first=80 second=277 amount=-1 -kerning first=1103 second=227 amount=-1 -kerning first=223 second=199 amount=-2 -kerning first=338 second=1079 amount=-1 -kerning first=344 second=89 amount=-2 -kerning first=103 second=211 amount=-2 -kerning first=1184 second=369 amount=-1 -kerning first=240 second=1098 amount=-3 -kerning first=126 second=113 amount=-1 -kerning first=123 second=353 amount=-1 -kerning first=263 second=955 amount=-1 -kerning first=38 second=365 amount=-1 -kerning first=1035 second=1066 amount=-5 -kerning first=1076 second=240 amount=-1 -kerning first=204 second=212 amount=-2 -kerning first=324 second=102 amount=-1 -kerning first=8366 second=283 amount=-1 -kerning first=84 second=224 amount=-2 -kerning first=221 second=1118 amount=-2 -kerning first=1202 second=79 amount=-1 -kerning first=247 second=279 amount=-1 -kerning first=273 second=213 amount=-2 -kerning first=36 second=8217 amount=-3 -kerning first=1046 second=253 amount=-1 -kerning first=185 second=225 amount=-1 -kerning first=297 second=355 amount=-1 -kerning first=300 second=115 amount=-1 -kerning first=202 second=1185 amount=-3 -kerning first=205 second=367 amount=-1 +kerning first=1107 second=279 amount=-1 +kerning first=1107 second=281 amount=-1 +kerning first=1107 second=283 amount=-1 +kerning first=1107 second=333 amount=-1 +kerning first=1107 second=335 amount=-1 +kerning first=1107 second=337 amount=-1 +kerning first=1107 second=339 amount=-1 +kerning first=1107 second=940 amount=-1 +kerning first=1107 second=941 amount=-1 +kerning first=1107 second=945 amount=-1 +kerning first=1107 second=949 amount=-1 +kerning first=1107 second=955 amount=-4 +kerning first=1107 second=959 amount=-1 +kerning first=1107 second=962 amount=-1 +kerning first=1107 second=963 amount=-1 +kerning first=1107 second=966 amount=-1 +kerning first=1107 second=972 amount=-1 +kerning first=1107 second=1076 amount=-3 +kerning first=1107 second=1077 amount=-1 kerning first=1107 second=1083 amount=-3 -kerning first=102 second=8218 amount=-2 -kerning first=251 second=226 amount=-1 -kerning first=371 second=356 amount=-5 -kerning first=968 second=268 amount=-2 -kerning first=274 second=368 amount=-2 -kerning first=43 second=941 amount=-1 -kerning first=46 second=250 amount=-1 -kerning first=69 second=187 amount=-1 -kerning first=203 second=8220 amount=-3 -kerning first=330 second=227 amount=-1 -kerning first=8370 second=1263 amount=-1 -kerning first=904 second=357 amount=-1 -kerning first=86 second=1079 amount=-1 -kerning first=92 second=89 amount=-5 -kerning first=89 second=326 amount=-3 -kerning first=1119 second=269 amount=-1 -kerning first=271 second=8221 amount=-3 -kerning first=1064 second=118 amount=-4 -kerning first=305 second=240 amount=-1 -kerning first=1090 second=283 amount=-1 -kerning first=327 second=1256 amount=-2 -kerning first=915 second=67 amount=-2 -kerning first=93 second=266 amount=-2 -kerning first=96 second=39 amount=-3 -kerning first=1171 second=217 amount=-2 -kerning first=951 second=229 amount=-1 -kerning first=1220 second=359 amount=-1 -kerning first=376 second=920 amount=-3 -kerning first=973 second=371 amount=-1 -kerning first=172 second=103 amount=-1 -kerning first=282 second=253 amount=-1 -kerning first=51 second=355 amount=-1 -kerning first=54 second=115 amount=-1 -kerning first=194 second=267 amount=-1 -kerning first=916 second=242 amount=-1 -kerning first=357 second=945 amount=-1 -kerning first=952 second=1240 amount=-2 -kerning first=117 second=356 amount=-5 -kerning first=260 second=268 amount=-2 -kerning first=1035 second=81 amount=-2 -kerning first=170 second=972 amount=-1 -kerning first=174 second=281 amount=-1 -kerning first=8225 second=361 amount=-1 -kerning first=8240 second=121 amount=-1 -kerning first=78 second=227 amount=-1 -kerning first=1095 second=1263 amount=-1 -kerning first=221 second=117 amount=-2 -kerning first=238 second=973 amount=-1 -kerning first=956 second=332 amount=-2 -kerning first=1299 second=244 amount=-1 -kerning first=178 second=228 amount=-1 -kerning first=294 second=118 amount=-4 -kerning first=59 second=240 amount=-1 -kerning first=196 second=1194 amount=-2 -kerning first=317 second=283 amount=-1 -kerning first=8364 second=233 amount=-1 -kerning first=76 second=1256 amount=-1 -kerning first=219 second=1044 amount=-1 -kerning first=105 second=79 amount=-2 -kerning first=1179 second=949 amount=-1 -kerning first=365 second=359 amount=-1 -kerning first=958 second=963 amount=-1 -kerning first=962 second=271 amount=-1 -kerning first=40 second=253 amount=-1 -kerning first=176 second=1257 amount=-1 -kerning first=323 second=230 amount=-1 -kerning first=1103 second=964 amount=-3 -kerning first=1116 second=45 amount=-3 -kerning first=344 second=372 amount=-1 -kerning first=103 second=945 amount=-1 -kerning first=268 second=1069 amount=1 -kerning first=1048 second=121 amount=-1 -kerning first=299 second=243 amount=-1 -kerning first=1080 second=288 amount=-2 -kerning first=321 second=1263 amount=-1 -kerning first=8372 second=336 amount=-2 -kerning first=87 second=269 amount=-3 -kerning first=1117 second=220 amount=-2 -kerning first=944 second=232 amount=-1 -kerning first=1194 second=1176 amount=1 -kerning first=1202 second=362 amount=-1 -kerning first=250 second=332 amount=-2 -kerning first=373 second=244 amount=-1 -kerning first=967 second=374 amount=-5 -kerning first=166 second=106 amount=1 -kerning first=48 second=118 amount=-4 -kerning first=185 second=962 amount=-1 -kerning first=1062 second=71 amount=-1 -kerning first=1085 second=233 amount=-1 -kerning first=906 second=245 amount=-1 -kerning first=91 second=217 amount=-2 -kerning first=1118 second=375 amount=-1 -kerning first=354 second=257 amount=-2 -kerning first=251 second=963 amount=-1 -kerning first=254 second=271 amount=-1 -kerning first=164 second=1026 amount=-5 -kerning first=167 second=286 amount=-2 -kerning first=1063 second=246 amount=-1 -kerning first=192 second=218 amount=-2 -kerning first=304 second=346 amount=-1 -kerning first=72 second=230 amount=-1 -kerning first=330 second=964 amount=-3 -kerning first=92 second=372 amount=-5 -kerning first=89 second=947 amount=-2 -kerning first=950 second=335 amount=-1 -kerning first=258 second=219 amount=-2 -kerning first=375 second=1108 amount=-1 -kerning first=1026 second=259 amount=-1 -kerning first=1033 second=34 amount=-2 -kerning first=53 second=243 amount=-1 -kerning first=193 second=373 amount=-4 -kerning first=305 second=1028 amount=-2 -kerning first=310 second=288 amount=-3 -kerning first=70 second=1263 amount=-1 -kerning first=1096 second=336 amount=-2 -kerning first=915 second=350 amount=-1 -kerning first=239 second=232 amount=-1 -kerning first=951 second=966 amount=-1 -kerning first=954 second=275 amount=-2 -kerning first=119 second=244 amount=-1 -kerning first=34 second=256 amount=-3 -kerning first=8224 second=940 amount=-1 -kerning first=8230 second=249 amount=-1 -kerning first=1071 second=111 amount=-1 -kerning first=200 second=83 amount=-1 -kerning first=315 second=233 amount=-1 -kerning first=77 second=333 amount=-1 -kerning first=338 second=375 amount=-1 -kerning first=926 second=290 amount=-2 -kerning first=100 second=257 amount=-1 -kerning first=1184 second=210 amount=-3 -kerning first=357 second=8211 amount=-2 -kerning first=360 second=1051 amount=-1 -kerning first=1298 second=352 amount=-1 -kerning first=268 second=84 amount=-1 -kerning first=1035 second=364 amount=-2 -kerning first=177 second=334 amount=-2 -kerning first=174 second=1090 amount=-3 -kerning first=291 second=246 amount=-1 -kerning first=8260 second=199 amount=-2 -kerning first=58 second=346 amount=-1 -kerning first=1069 second=1035 amount=-2 -kerning first=1073 second=291 amount=-1 -kerning first=8363 second=339 amount=-1 -kerning first=8366 second=101 amount=-1 -kerning first=78 second=964 amount=-3 -kerning first=84 second=45 amount=-4 -kerning first=936 second=235 amount=-1 -kerning first=247 second=97 amount=-1 -kerning first=121 second=1108 amount=-1 -kerning first=124 second=347 amount=-1 -kerning first=273 second=34 amount=-3 -kerning first=42 second=121 amount=-1 -kerning first=1033 second=8216 amount=-2 -kerning first=1046 second=74 amount=-1 -kerning first=178 second=965 amount=-1 -kerning first=59 second=1028 amount=-2 -kerning first=62 second=288 amount=-2 -kerning first=322 second=336 amount=-2 -kerning first=8364 second=970 amount=-1 -kerning first=8369 second=279 amount=-1 -kerning first=900 second=248 amount=-1 -kerning first=346 second=260 amount=-1 -kerning first=105 second=362 amount=-2 -kerning first=1186 second=1063 amount=-2 -kerning first=968 second=87 amount=-5 -kerning first=161 second=289 amount=-1 -kerning first=1041 second=940 amount=-1 -kerning first=46 second=71 amount=-1 -kerning first=186 second=221 amount=-5 -kerning first=298 second=351 amount=-1 -kerning first=301 second=111 amount=-1 -kerning first=206 second=363 amount=-1 -kerning first=203 second=1177 amount=-1 -kerning first=8377 second=226 amount=-1 -kerning first=86 second=375 amount=-1 -kerning first=1108 second=1078 amount=-1 -kerning first=946 second=100 amount=-1 -kerning first=103 second=8211 amount=-2 -kerning first=947 second=941 amount=-1 -kerning first=372 second=352 amount=-1 -kerning first=165 second=234 amount=-1 -kerning first=47 second=246 amount=-2 -kerning first=187 second=376 amount=-3 -kerning first=299 second=1035 amount=-5 -kerning first=302 second=291 amount=-1 -kerning first=1080 second=1098 amount=-3 -kerning first=1084 second=339 amount=-1 -kerning first=207 second=1059 amount=-2 -kerning first=204 second=8212 amount=-2 -kerning first=1090 second=101 amount=-1 -kerning first=905 second=353 amount=-1 -kerning first=84 second=8249 amount=-3 -kerning first=93 second=85 amount=-2 -kerning first=87 second=1074 amount=-2 -kerning first=1168 second=263 amount=-1 -kerning first=910 second=113 amount=-4 -kerning first=973 second=212 amount=-2 -kerning first=273 second=8216 amount=-3 -kerning first=1049 second=1118 amount=-1 -kerning first=1062 second=354 amount=-2 -kerning first=185 second=8250 amount=-1 -kerning first=194 second=86 amount=-6 -kerning first=1085 second=970 amount=-1 -kerning first=1094 second=279 amount=-1 -kerning first=214 second=248 amount=-1 -kerning first=916 second=63 amount=-5 -kerning first=1174 second=213 amount=-1 -kerning first=351 second=8217 amount=-1 -kerning first=952 second=225 amount=-1 -kerning first=1223 second=355 amount=-1 -kerning first=260 second=87 amount=-5 -kerning first=971 second=1185 amount=-3 -kerning first=170 second=337 amount=-1 -kerning first=174 second=99 amount=-1 -kerning first=280 second=940 amount=-1 -kerning first=55 second=111 amount=-1 -kerning first=1063 second=1038 amount=-2 -kerning first=195 second=261 amount=-1 -kerning first=52 second=351 amount=-1 -kerning first=192 second=953 amount=-1 -kerning first=218 second=198 amount=-2 -kerning first=333 second=1078 amount=-2 -kerning first=238 second=338 amount=-2 -kerning first=361 second=250 amount=-1 -kerning first=358 second=941 amount=-1 -kerning first=381 second=1241 amount=-1 -kerning first=972 second=8220 amount=-1 -kerning first=175 second=277 amount=-1 -kerning first=289 second=199 amount=-2 -kerning first=8226 second=357 amount=-1 -kerning first=53 second=1035 amount=-5 -kerning first=56 second=291 amount=-1 -kerning first=314 second=339 amount=-1 -kerning first=317 second=101 amount=-1 -kerning first=310 second=1098 amount=-4 -kerning first=337 second=955 amount=-1 -kerning first=1176 second=1066 amount=-5 -kerning first=1171 second=8221 amount=-3 -kerning first=1037 second=252 amount=-1 -kerning first=179 second=224 amount=-1 -kerning first=287 second=1118 amount=-1 -kerning first=290 second=354 amount=-1 -kerning first=197 second=1184 amount=-5 -kerning first=200 second=366 amount=-2 -kerning first=318 second=279 amount=-1 -kerning first=8365 second=229 amount=-1 -kerning first=226 second=63 amount=-2 -kerning first=97 second=8217 amount=-1 -kerning first=369 second=115 amount=-1 -kerning first=963 second=267 amount=-1 -kerning first=41 second=249 amount=-1 -kerning first=38 second=940 amount=-1 -kerning first=291 second=1038 amount=-2 -kerning first=1073 second=1101 amount=-1 -kerning first=8366 second=1240 amount=-2 -kerning first=8363 second=1262 amount=-2 -kerning first=902 second=116 amount=-1 -kerning first=936 second=972 amount=-1 -kerning first=160 second=1241 amount=-1 -kerning first=163 second=187 amount=-1 -kerning first=1049 second=117 amount=-1 -kerning first=182 second=1079 amount=-1 -kerning first=188 second=89 amount=-5 -kerning first=1046 second=357 amount=-1 -kerning first=62 second=1098 amount=-3 -kerning first=65 second=339 amount=-1 -kerning first=88 second=263 amount=-2 -kerning first=1118 second=216 amount=-2 -kerning first=346 second=1066 amount=-1 -kerning first=1210 second=118 amount=-4 -kerning first=374 second=240 amount=-4 -kerning first=965 second=1194 amount=-2 -kerning first=968 second=370 amount=-2 -kerning first=274 second=943 amount=-1 -kerning first=43 second=1118 amount=-1 -kerning first=46 second=354 amount=-5 -kerning first=1063 second=67 amount=-2 -kerning first=189 second=266 amount=-2 -kerning first=192 second=39 amount=-3 -kerning first=69 second=279 amount=-1 -kerning first=1087 second=229 amount=-1 -kerning first=8377 second=963 amount=-1 -kerning first=904 second=920 amount=-2 -kerning first=92 second=213 amount=-2 +kerning first=1107 second=1086 amount=-1 +kerning first=1107 second=1089 amount=-1 +kerning first=1107 second=1092 amount=-1 +kerning first=1107 second=1104 amount=-1 +kerning first=1107 second=1105 amount=-1 +kerning first=1107 second=1108 amount=-1 +kerning first=1107 second=1113 amount=-3 +kerning first=1107 second=1195 amount=-1 +kerning first=1107 second=1241 amount=-1 +kerning first=1107 second=1257 amount=-1 +kerning first=1107 second=1299 amount=-3 +kerning first=1107 second=8218 amount=-3 +kerning first=1107 second=8222 amount=-3 +kerning first=1107 second=8230 amount=-3 +kerning first=1108 second=34 amount=-1 +kerning first=1108 second=39 amount=-1 +kerning first=1108 second=63 amount=-1 +kerning first=1108 second=118 amount=-1 +kerning first=1108 second=119 amount=-1 +kerning first=1108 second=120 amount=-1 +kerning first=1108 second=373 amount=-1 +kerning first=1108 second=947 amount=-1 +kerning first=1108 second=955 amount=-1 +kerning first=1108 second=957 amount=-1 +kerning first=1108 second=1078 amount=-1 +kerning first=1108 second=1093 amount=-1 +kerning first=1108 second=1175 amount=-1 +kerning first=1108 second=1199 amount=-1 +kerning first=1108 second=1203 amount=-1 +kerning first=1108 second=8216 amount=-1 +kerning first=1108 second=8217 amount=-1 +kerning first=1108 second=8220 amount=-1 +kerning first=1108 second=8221 amount=-1 +kerning first=1109 second=34 amount=-1 +kerning first=1109 second=39 amount=-1 +kerning first=1109 second=63 amount=-2 +kerning first=1109 second=102 amount=-1 +kerning first=1109 second=118 amount=-1 +kerning first=1109 second=119 amount=-1 +kerning first=1109 second=120 amount=-1 +kerning first=1109 second=373 amount=-1 +kerning first=1109 second=947 amount=-1 +kerning first=1109 second=957 amount=-1 +kerning first=1109 second=1078 amount=-1 +kerning first=1109 second=1093 amount=-1 +kerning first=1109 second=1175 amount=-1 +kerning first=1109 second=1199 amount=-1 +kerning first=1109 second=1203 amount=-1 +kerning first=1109 second=8216 amount=-1 +kerning first=1109 second=8217 amount=-1 +kerning first=1109 second=8220 amount=-1 +kerning first=1109 second=8221 amount=-1 +kerning first=1112 second=106 amount=7 +kerning first=1112 second=1112 amount=7 +kerning first=1113 second=120 amount=-2 +kerning first=1113 second=1078 amount=-2 +kerning first=1113 second=1093 amount=-2 +kerning first=1113 second=1095 amount=-1 +kerning first=1113 second=1175 amount=-2 +kerning first=1113 second=1203 amount=-2 +kerning first=1114 second=120 amount=-2 +kerning first=1114 second=1078 amount=-2 +kerning first=1114 second=1093 amount=-2 +kerning first=1114 second=1095 amount=-1 +kerning first=1114 second=1175 amount=-2 +kerning first=1114 second=1203 amount=-2 +kerning first=1115 second=34 amount=-1 +kerning first=1115 second=39 amount=-1 +kerning first=1115 second=63 amount=-2 +kerning first=1115 second=102 amount=-1 +kerning first=1115 second=106 amount=1 +kerning first=1115 second=118 amount=-1 +kerning first=1115 second=119 amount=-1 +kerning first=1115 second=373 amount=-1 +kerning first=1115 second=947 amount=-1 +kerning first=1115 second=957 amount=-1 +kerning first=1115 second=964 amount=-1 +kerning first=1115 second=1090 amount=-1 +kerning first=1115 second=1098 amount=-1 +kerning first=1115 second=1112 amount=1 +kerning first=1115 second=1185 amount=-1 +kerning first=1115 second=1199 amount=-1 +kerning first=1115 second=8216 amount=-1 +kerning first=1115 second=8217 amount=-1 +kerning first=1115 second=8220 amount=-1 +kerning first=1115 second=8221 amount=-1 +kerning first=1116 second=45 amount=-3 +kerning first=1116 second=97 amount=-1 +kerning first=1116 second=99 amount=-2 +kerning first=1116 second=100 amount=-2 +kerning first=1116 second=101 amount=-2 +kerning first=1116 second=103 amount=-2 +kerning first=1116 second=106 amount=1 +kerning first=1116 second=111 amount=-2 +kerning first=1116 second=113 amount=-2 +kerning first=1116 second=115 amount=-1 +kerning first=1116 second=173 amount=-3 +kerning first=1116 second=224 amount=-1 +kerning first=1116 second=225 amount=-1 +kerning first=1116 second=226 amount=-1 +kerning first=1116 second=227 amount=-1 +kerning first=1116 second=228 amount=-1 +kerning first=1116 second=229 amount=-1 +kerning first=1116 second=230 amount=-1 +kerning first=1116 second=231 amount=-2 +kerning first=1116 second=232 amount=-2 +kerning first=1116 second=233 amount=-2 +kerning first=1116 second=234 amount=-2 +kerning first=1116 second=235 amount=-2 +kerning first=1116 second=240 amount=-2 +kerning first=1116 second=242 amount=-2 +kerning first=1116 second=243 amount=-2 +kerning first=1116 second=244 amount=-2 +kerning first=1116 second=245 amount=-2 +kerning first=1116 second=246 amount=-2 +kerning first=1116 second=248 amount=-2 +kerning first=1116 second=257 amount=-1 +kerning first=1116 second=259 amount=-1 +kerning first=1116 second=261 amount=-1 +kerning first=1116 second=263 amount=-2 +kerning first=1116 second=267 amount=-2 +kerning first=1116 second=269 amount=-2 +kerning first=1116 second=271 amount=-2 +kerning first=1116 second=273 amount=-2 +kerning first=1116 second=275 amount=-2 +kerning first=1116 second=277 amount=-2 +kerning first=1116 second=279 amount=-2 +kerning first=1116 second=281 amount=-2 +kerning first=1116 second=283 amount=-2 +kerning first=1116 second=287 amount=-2 +kerning first=1116 second=289 amount=-2 +kerning first=1116 second=291 amount=-2 +kerning first=1116 second=333 amount=-2 +kerning first=1116 second=335 amount=-2 +kerning first=1116 second=337 amount=-2 +kerning first=1116 second=339 amount=-2 +kerning first=1116 second=347 amount=-1 +kerning first=1116 second=351 amount=-1 +kerning first=1116 second=353 amount=-1 +kerning first=1116 second=940 amount=-2 +kerning first=1116 second=941 amount=-2 +kerning first=1116 second=945 amount=-2 +kerning first=1116 second=949 amount=-2 +kerning first=1116 second=959 amount=-2 +kerning first=1116 second=962 amount=-2 +kerning first=1116 second=963 amount=-2 +kerning first=1116 second=966 amount=-2 +kerning first=1116 second=972 amount=-2 +kerning first=1116 second=1072 amount=-1 +kerning first=1116 second=1077 amount=-2 +kerning first=1116 second=1086 amount=-2 +kerning first=1116 second=1089 amount=-2 +kerning first=1116 second=1092 amount=-2 +kerning first=1116 second=1104 amount=-2 +kerning first=1116 second=1105 amount=-2 +kerning first=1116 second=1108 amount=-2 +kerning first=1116 second=1109 amount=-1 +kerning first=1116 second=1112 amount=1 kerning first=1116 second=1195 amount=-2 -kerning first=1119 second=371 amount=-1 -kerning first=255 second=267 amount=-1 -kerning first=8212 second=1174 amount=-3 -kerning first=8218 second=360 amount=-1 -kerning first=47 second=1038 amount=-2 -kerning first=1064 second=242 amount=-1 -kerning first=1059 second=923 amount=-2 -kerning first=193 second=214 amount=-2 -kerning first=302 second=1101 amount=-1 -kerning first=73 second=226 amount=-1 -kerning first=1084 second=1262 amount=-2 -kerning first=213 second=356 amount=-2 -kerning first=93 second=368 amount=-2 -kerning first=1168 second=1069 amount=-1 -kerning first=1176 second=81 amount=-2 -kerning first=236 second=281 amount=-1 -kerning first=376 second=1102 amount=-3 -kerning first=172 second=227 amount=-1 -kerning first=282 second=357 amount=-1 -kerning first=287 second=117 amount=-1 -kerning first=194 second=369 amount=-1 -kerning first=306 second=973 amount=-1 -kerning first=338 second=216 amount=-2 -kerning first=91 second=8221 amount=-3 -kerning first=94 second=1066 amount=-5 -kerning first=926 second=106 amount=1 -kerning first=240 second=228 amount=-1 -kerning first=363 second=118 amount=-4 -kerning first=952 second=962 amount=-1 -kerning first=120 second=240 amount=-2 -kerning first=260 second=370 amount=-2 -kerning first=35 second=252 amount=-1 -kerning first=170 second=1256 amount=-2 -kerning first=291 second=67 amount=-2 -kerning first=8240 second=245 amount=-1 -kerning first=201 second=79 amount=-2 -kerning first=316 second=229 amount=-1 -kerning first=221 second=241 amount=-3 -kerning first=928 second=286 amount=-2 -kerning first=920 second=1026 amount=-2 -kerning first=238 second=1257 amount=-1 -kerning first=1299 second=346 amount=-1 -kerning first=1033 second=1174 amount=-2 -kerning first=294 second=242 amount=-1 -kerning first=56 second=1101 amount=-1 -kerning first=1074 second=287 amount=-1 -kerning first=314 second=1262 amount=-2 -kerning first=317 second=1240 amount=-2 -kerning first=8364 second=335 amount=-1 -kerning first=8369 second=97 amount=-1 -kerning first=962 second=373 amount=-4 -kerning first=40 second=357 amount=-1 -kerning first=43 second=117 amount=-1 -kerning first=183 second=269 amount=-1 -kerning first=60 second=973 amount=-1 -kerning first=323 second=332 amount=-2 -kerning first=8365 second=966 amount=-1 -kerning first=901 second=244 amount=-1 -kerning first=86 second=216 amount=-2 -kerning first=8370 second=275 amount=-1 -kerning first=229 second=106 amount=1 -kerning first=934 second=1298 amount=-3 -kerning first=109 second=118 amount=-1 -kerning first=1206 second=71 amount=-1 -kerning first=372 second=193 amount=-5 -kerning first=162 second=283 amount=-1 -kerning first=47 second=67 amount=-1 -kerning first=1048 second=245 amount=-1 -kerning first=207 second=359 amount=-1 -kerning first=327 second=271 amount=-1 -kerning first=84 second=1195 amount=-3 -kerning first=87 second=371 amount=-2 -kerning first=1168 second=84 amount=-5 -kerning first=944 second=334 amount=-2 -kerning first=1202 second=934 amount=-2 -kerning first=253 second=218 amount=-2 -kerning first=1207 second=246 amount=-1 -kerning first=967 second=950 amount=-2 -kerning first=166 second=230 amount=-1 -kerning first=276 second=360 amount=-2 -kerning first=48 second=242 amount=-1 -kerning first=279 second=120 amount=-2 -kerning first=45 second=923 amount=-2 -kerning first=185 second=947 amount=-4 -kerning first=188 second=372 amount=-5 -kerning first=303 second=287 amount=-1 -kerning first=65 second=1262 amount=-2 -kerning first=1085 second=335 amount=-1 -kerning first=903 second=1108 amount=-1 -kerning first=906 second=347 amount=-1 -kerning first=88 second=1069 amount=-2 -kerning first=94 second=81 amount=-2 +kerning first=1116 second=1241 amount=-2 +kerning first=1116 second=1257 amount=-2 +kerning first=1116 second=8211 amount=-3 +kerning first=1116 second=8212 amount=-3 +kerning first=1169 second=44 amount=-3 +kerning first=1169 second=46 amount=-3 +kerning first=1169 second=47 amount=-2 +kerning first=1169 second=99 amount=-1 +kerning first=1169 second=100 amount=-1 +kerning first=1169 second=101 amount=-1 +kerning first=1169 second=111 amount=-1 +kerning first=1169 second=113 amount=-1 +kerning first=1169 second=231 amount=-1 +kerning first=1169 second=232 amount=-1 +kerning first=1169 second=233 amount=-1 +kerning first=1169 second=234 amount=-1 +kerning first=1169 second=235 amount=-1 +kerning first=1169 second=240 amount=-1 +kerning first=1169 second=242 amount=-1 +kerning first=1169 second=243 amount=-1 +kerning first=1169 second=244 amount=-1 +kerning first=1169 second=245 amount=-1 +kerning first=1169 second=246 amount=-1 +kerning first=1169 second=248 amount=-1 +kerning first=1169 second=263 amount=-1 +kerning first=1169 second=267 amount=-1 +kerning first=1169 second=269 amount=-1 +kerning first=1169 second=271 amount=-1 +kerning first=1169 second=273 amount=-1 +kerning first=1169 second=275 amount=-1 +kerning first=1169 second=277 amount=-1 +kerning first=1169 second=279 amount=-1 +kerning first=1169 second=281 amount=-1 +kerning first=1169 second=283 amount=-1 +kerning first=1169 second=333 amount=-1 +kerning first=1169 second=335 amount=-1 +kerning first=1169 second=337 amount=-1 +kerning first=1169 second=339 amount=-1 +kerning first=1169 second=940 amount=-1 +kerning first=1169 second=941 amount=-1 +kerning first=1169 second=945 amount=-1 +kerning first=1169 second=949 amount=-1 +kerning first=1169 second=955 amount=-4 +kerning first=1169 second=959 amount=-1 +kerning first=1169 second=962 amount=-1 +kerning first=1169 second=963 amount=-1 +kerning first=1169 second=966 amount=-1 +kerning first=1169 second=972 amount=-1 +kerning first=1169 second=1076 amount=-3 +kerning first=1169 second=1077 amount=-1 +kerning first=1169 second=1083 amount=-3 +kerning first=1169 second=1086 amount=-1 +kerning first=1169 second=1089 amount=-1 +kerning first=1169 second=1092 amount=-1 +kerning first=1169 second=1104 amount=-1 +kerning first=1169 second=1105 amount=-1 +kerning first=1169 second=1108 amount=-1 +kerning first=1169 second=1113 amount=-3 +kerning first=1169 second=1195 amount=-1 +kerning first=1169 second=1241 amount=-1 +kerning first=1169 second=1257 amount=-1 +kerning first=1169 second=1299 amount=-3 +kerning first=1169 second=8218 amount=-3 +kerning first=1169 second=8222 amount=-3 +kerning first=1169 second=8230 amount=-3 kerning first=1174 second=34 amount=-2 -kerning first=351 second=1175 amount=-1 -kerning first=354 second=361 amount=-2 -kerning first=357 second=121 amount=-1 -kerning first=114 second=243 amount=-1 -kerning first=254 second=373 amount=-4 -kerning first=374 second=1028 amount=-3 -kerning first=377 second=288 amount=-1 -kerning first=164 second=1263 amount=-1 -kerning first=8221 second=248 amount=-1 -kerning first=1063 second=350 amount=-1 -kerning first=72 second=332 amount=-2 -kerning first=1087 second=966 amount=-1 -kerning first=215 second=244 amount=-1 -kerning first=1095 second=275 amount=-1 -kerning first=912 second=289 amount=-1 -kerning first=908 second=1033 amount=-1 -kerning first=361 second=71 amount=-2 -kerning first=1224 second=351 amount=-1 -kerning first=381 second=233 amount=-1 -kerning first=1026 second=363 amount=-1 -kerning first=1067 second=290 amount=-2 -kerning first=193 second=949 amount=-1 -kerning first=196 second=257 amount=-1 -kerning first=8361 second=100 amount=-1 -kerning first=73 second=963 amount=-1 -kerning first=76 second=271 amount=-1 -kerning first=79 second=44 amount=-1 -kerning first=219 second=194 amount=-2 -kerning first=923 second=234 amount=-1 -kerning first=1176 second=364 amount=-2 -kerning first=239 second=334 amount=-2 -kerning first=236 second=1090 amount=-3 -kerning first=1263 second=291 amount=-1 -kerning first=262 second=258 amount=-1 -kerning first=1256 second=1035 amount=-2 -kerning first=973 second=8212 amount=-2 -kerning first=1027 second=1059 amount=-2 -kerning first=176 second=273 amount=-1 -kerning first=179 second=45 amount=-2 -kerning first=172 second=964 amount=-3 -kerning first=57 second=287 amount=-1 -kerning first=1071 second=235 amount=-1 -kerning first=318 second=97 amount=-1 -kerning first=315 second=335 amount=-1 -kerning first=80 second=219 amount=-2 -kerning first=341 second=259 amount=-1 -kerning first=100 second=361 amount=-1 -kerning first=103 second=121 amount=-1 +kerning first=1174 second=39 amount=-2 +kerning first=1174 second=45 amount=-2 +kerning first=1174 second=63 amount=-2 +kerning first=1174 second=67 amount=-1 +kerning first=1174 second=71 amount=-1 +kerning first=1174 second=79 amount=-1 +kerning first=1174 second=81 amount=-1 +kerning first=1174 second=84 amount=-2 +kerning first=1174 second=85 amount=-1 +kerning first=1174 second=89 amount=-2 +kerning first=1174 second=99 amount=-1 +kerning first=1174 second=100 amount=-1 +kerning first=1174 second=101 amount=-1 +kerning first=1174 second=106 amount=7 +kerning first=1174 second=111 amount=-1 +kerning first=1174 second=113 amount=-1 +kerning first=1174 second=118 amount=-2 +kerning first=1174 second=119 amount=-2 +kerning first=1174 second=171 amount=-1 +kerning first=1174 second=173 amount=-2 +kerning first=1174 second=199 amount=-1 +kerning first=1174 second=210 amount=-1 +kerning first=1174 second=211 amount=-1 +kerning first=1174 second=212 amount=-1 +kerning first=1174 second=213 amount=-1 +kerning first=1174 second=214 amount=-1 +kerning first=1174 second=216 amount=-1 +kerning first=1174 second=217 amount=-1 +kerning first=1174 second=218 amount=-1 +kerning first=1174 second=219 amount=-1 +kerning first=1174 second=220 amount=-1 +kerning first=1174 second=221 amount=-2 +kerning first=1174 second=231 amount=-1 +kerning first=1174 second=232 amount=-1 +kerning first=1174 second=233 amount=-1 +kerning first=1174 second=234 amount=-1 +kerning first=1174 second=235 amount=-1 +kerning first=1174 second=240 amount=-1 +kerning first=1174 second=242 amount=-1 +kerning first=1174 second=243 amount=-1 +kerning first=1174 second=244 amount=-1 +kerning first=1174 second=245 amount=-1 +kerning first=1174 second=246 amount=-1 +kerning first=1174 second=248 amount=-1 +kerning first=1174 second=262 amount=-1 +kerning first=1174 second=263 amount=-1 +kerning first=1174 second=266 amount=-1 +kerning first=1174 second=267 amount=-1 +kerning first=1174 second=268 amount=-1 +kerning first=1174 second=269 amount=-1 +kerning first=1174 second=271 amount=-1 +kerning first=1174 second=273 amount=-1 +kerning first=1174 second=275 amount=-1 +kerning first=1174 second=277 amount=-1 +kerning first=1174 second=279 amount=-1 +kerning first=1174 second=281 amount=-1 +kerning first=1174 second=283 amount=-1 +kerning first=1174 second=286 amount=-1 +kerning first=1174 second=288 amount=-1 +kerning first=1174 second=290 amount=-1 +kerning first=1174 second=332 amount=-1 +kerning first=1174 second=333 amount=-1 +kerning first=1174 second=334 amount=-1 +kerning first=1174 second=335 amount=-1 +kerning first=1174 second=336 amount=-1 +kerning first=1174 second=337 amount=-1 +kerning first=1174 second=338 amount=-1 +kerning first=1174 second=339 amount=-1 +kerning first=1174 second=354 amount=-2 +kerning first=1174 second=356 amount=-2 +kerning first=1174 second=360 amount=-1 +kerning first=1174 second=362 amount=-1 +kerning first=1174 second=364 amount=-1 +kerning first=1174 second=366 amount=-1 +kerning first=1174 second=368 amount=-1 +kerning first=1174 second=370 amount=-1 +kerning first=1174 second=373 amount=-2 +kerning first=1174 second=374 amount=-2 +kerning first=1174 second=376 amount=-2 +kerning first=1174 second=920 amount=-1 +kerning first=1174 second=927 amount=-1 +kerning first=1174 second=932 amount=-2 +kerning first=1174 second=933 amount=-2 +kerning first=1174 second=934 amount=-2 +kerning first=1174 second=939 amount=-2 +kerning first=1174 second=940 amount=-1 +kerning first=1174 second=941 amount=-1 +kerning first=1174 second=945 amount=-1 +kerning first=1174 second=947 amount=-2 +kerning first=1174 second=949 amount=-1 +kerning first=1174 second=957 amount=-2 +kerning first=1174 second=959 amount=-1 +kerning first=1174 second=962 amount=-1 +kerning first=1174 second=963 amount=-1 +kerning first=1174 second=964 amount=-2 +kerning first=1174 second=966 amount=-1 +kerning first=1174 second=972 amount=-1 +kerning first=1174 second=1026 amount=-2 +kerning first=1174 second=1028 amount=-1 +kerning first=1174 second=1035 amount=-2 +kerning first=1174 second=1038 amount=-1 +kerning first=1174 second=1054 amount=-1 +kerning first=1174 second=1057 amount=-1 +kerning first=1174 second=1058 amount=-2 +kerning first=1174 second=1059 amount=-1 +kerning first=1174 second=1060 amount=-2 +kerning first=1174 second=1063 amount=-2 +kerning first=1174 second=1066 amount=-2 +kerning first=1174 second=1077 amount=-1 +kerning first=1174 second=1086 amount=-1 +kerning first=1174 second=1089 amount=-1 +kerning first=1174 second=1090 amount=-2 +kerning first=1174 second=1092 amount=-1 +kerning first=1174 second=1098 amount=-2 +kerning first=1174 second=1104 amount=-1 +kerning first=1174 second=1105 amount=-1 +kerning first=1174 second=1108 amount=-1 +kerning first=1174 second=1112 amount=7 +kerning first=1174 second=1184 amount=-2 +kerning first=1174 second=1185 amount=-2 +kerning first=1174 second=1194 amount=-1 +kerning first=1174 second=1195 amount=-1 +kerning first=1174 second=1198 amount=-2 +kerning first=1174 second=1199 amount=-2 +kerning first=1174 second=1240 amount=-1 +kerning first=1174 second=1241 amount=-1 +kerning first=1174 second=1256 amount=-1 +kerning first=1174 second=1257 amount=-1 +kerning first=1174 second=1262 amount=-1 +kerning first=1174 second=8211 amount=-2 +kerning first=1174 second=8212 amount=-2 kerning first=1174 second=8216 amount=-2 -kerning first=240 second=965 amount=-1 -kerning first=246 second=46 amount=-1 -kerning first=366 second=196 amount=-2 -kerning first=952 second=8250 amount=-1 -kerning first=123 second=288 amount=-2 -kerning first=180 second=220 amount=-2 -kerning first=291 second=350 amount=-1 -kerning first=61 second=232 amount=-1 -kerning first=201 second=362 amount=-2 -kerning first=198 second=1176 amount=-1 -kerning first=316 second=966 amount=-1 -kerning first=321 second=275 amount=-1 -kerning first=8366 second=225 amount=-1 -kerning first=81 second=374 amount=-3 -kerning first=1101 second=1076 amount=-1 -kerning first=221 second=1033 amount=-5 -kerning first=936 second=337 amount=-1 -kerning first=1185 second=940 amount=-2 -kerning first=247 second=221 amount=-5 -kerning first=367 second=351 amount=-1 -kerning first=964 second=261 amount=-1 -kerning first=160 second=233 amount=-1 -kerning first=42 second=245 amount=-1 -kerning first=182 second=375 amount=-1 -kerning first=297 second=290 amount=-2 -kerning first=1081 second=100 amount=-1 -kerning first=199 second=8211 amount=-1 -kerning first=900 second=352 amount=-1 -kerning first=942 second=277 amount=-1 -kerning first=108 second=246 amount=-1 -kerning first=371 second=291 amount=-1 -kerning first=968 second=211 amount=-2 -kerning first=1051 second=113 amount=-1 -kerning first=179 second=8249 amount=-3 -kerning first=189 second=85 amount=-2 -kerning first=301 second=235 amount=-1 -kerning first=69 second=97 amount=-1 -kerning first=86 second=951 amount=-2 -kerning first=92 second=34 amount=-3 -kerning first=89 second=259 amount=-4 -kerning first=1119 second=212 amount=-2 -kerning first=946 second=224 amount=-1 -kerning first=1206 second=354 amount=-2 -kerning first=165 second=336 amount=-2 -kerning first=278 second=248 amount=-1 -kerning first=47 second=350 amount=-1 -kerning first=70 second=275 amount=-1 -kerning first=213 second=197 amount=-2 -kerning first=334 second=87 amount=-2 -kerning first=1168 second=367 amount=-1 -kerning first=1117 second=1185 amount=-3 -kerning first=236 second=99 amount=-1 -kerning first=356 second=249 amount=-2 -kerning first=113 second=351 amount=-1 -kerning first=256 second=261 amount=-1 -kerning first=253 second=953 amount=-1 -kerning first=8224 second=116 amount=-1 -kerning first=51 second=290 amount=-2 -kerning first=194 second=210 amount=-2 -kerning first=306 second=338 amount=-2 -kerning first=311 second=100 amount=-2 -kerning first=214 second=352 amount=-1 -kerning first=916 second=187 amount=-1 -kerning first=94 second=364 amount=-2 -kerning first=1118 second=8220 amount=-3 -kerning first=237 second=277 amount=-1 -kerning first=955 second=89 amount=-5 -kerning first=117 second=291 amount=-1 -kerning first=260 second=211 amount=-2 -kerning first=380 second=339 amount=-1 -kerning first=55 second=235 amount=-1 -kerning first=195 second=365 amount=-1 -kerning first=92 second=8216 amount=-3 -kerning first=358 second=1118 amount=-1 -kerning first=361 second=354 amount=-5 -kerning first=956 second=266 amount=-2 -kerning first=961 second=39 amount=-1 -kerning first=258 second=1184 amount=-5 -kerning first=36 second=248 amount=-1 -kerning first=178 second=171 amount=-3 -kerning first=8226 second=920 amount=-2 -kerning first=196 second=1063 amount=-3 -kerning first=193 second=8217 amount=-3 -kerning first=1074 second=103 amount=-1 -kerning first=317 second=225 amount=-1 -kerning first=82 second=87 amount=-1 -kerning first=337 second=1185 amount=-1 -kerning first=962 second=214 amount=-2 -kerning first=1263 second=1101 amount=-1 -kerning first=1037 second=356 amount=-5 -kerning first=1041 second=116 amount=-1 -kerning first=60 second=338 amount=-2 -kerning first=63 second=100 amount=-1 -kerning first=1071 second=972 amount=-1 -kerning first=203 second=250 amount=-1 -kerning first=200 second=941 amount=-1 -kerning first=1075 second=281 amount=-1 -kerning first=223 second=1241 amount=-1 -kerning first=338 second=8220 amount=-3 -kerning first=249 second=89 amount=-5 -kerning first=963 second=369 amount=-1 -kerning first=123 second=1098 amount=-3 -kerning first=126 second=339 amount=-1 -kerning first=162 second=101 amount=-1 -kerning first=271 second=251 amount=-1 -kerning first=41 second=353 amount=-1 -kerning first=184 second=263 amount=-1 -kerning first=1080 second=228 amount=-1 -kerning first=8366 second=962 amount=-1 -kerning first=902 second=240 amount=-1 -kerning first=87 second=212 amount=-2 -kerning first=230 second=102 amount=-1 -kerning first=936 second=1256 amount=-2 -kerning first=1194 second=1044 amount=-1 -kerning first=250 second=266 amount=-2 -kerning first=253 second=39 amount=-3 -kerning first=961 second=8222 amount=-1 -kerning first=163 second=279 amount=-1 -kerning first=160 second=970 amount=-1 -kerning first=1046 second=920 amount=-3 -kerning first=188 second=213 amount=-2 -kerning first=303 second=103 amount=-1 -kerning first=1078 second=1257 amount=-2 -kerning first=88 second=367 amount=-1 -kerning first=108 second=1038 amount=-2 -kerning first=1210 second=242 amount=-1 -kerning first=254 second=214 amount=-2 -kerning first=371 second=1101 amount=-1 -kerning first=968 second=945 amount=-1 -kerning first=167 second=226 amount=-1 -kerning first=280 second=116 amount=-1 -kerning first=189 second=368 amount=-2 -kerning first=301 second=972 amount=-1 -kerning first=304 second=281 amount=-1 -kerning first=86 second=8220 amount=-3 -kerning first=358 second=117 amount=-1 -kerning first=950 second=269 amount=-1 -kerning first=255 second=369 amount=-1 -kerning first=375 second=973 amount=-1 -kerning first=1067 second=106 amount=1 -kerning first=190 second=1066 amount=-5 -kerning first=310 second=228 amount=-1 -kerning first=70 second=1080 amount=-1 -kerning first=1090 second=962 amount=-1 -kerning first=213 second=916 amount=-2 -kerning first=915 second=283 amount=-1 -kerning first=96 second=252 amount=-1 -kerning first=93 second=943 amount=-1 -kerning first=910 second=974 amount=-4 -kerning first=356 second=1044 amount=-4 -kerning first=1027 second=359 amount=-1 -kerning first=1034 second=119 amount=-1 -kerning first=282 second=920 amount=-2 -kerning first=57 second=103 amount=-1 -kerning first=1065 second=1026 amount=-2 -kerning first=197 second=253 amount=-1 -kerning first=306 second=1257 amount=-1 -kerning first=77 second=267 amount=-1 -kerning first=926 second=230 amount=-1 -kerning first=363 second=242 amount=-1 -kerning first=952 second=947 amount=-4 -kerning first=955 second=372 amount=-5 -kerning first=117 second=1101 amount=-1 -kerning first=360 second=923 amount=-2 -kerning first=1298 second=287 amount=-1 -kerning first=260 second=945 amount=-1 -kerning first=35 second=356 amount=-5 -kerning first=38 second=116 amount=-1 -kerning first=177 second=268 amount=-2 -kerning first=8225 second=1108 amount=-1 -kerning first=8240 second=347 amount=-1 -kerning first=55 second=972 amount=-1 -kerning first=58 second=281 amount=-1 -kerning first=1073 second=231 amount=-1 -kerning first=1101 second=373 amount=-1 -kerning first=221 second=343 amount=-3 -kerning first=121 second=973 amount=-1 -kerning first=1039 second=244 amount=-1 -kerning first=182 second=216 amount=-2 -kerning first=297 second=106 amount=1 -kerning first=62 second=228 amount=-1 -kerning first=1070 second=1298 amount=-1 -kerning first=8249 second=1033 amount=-1 -kerning first=205 second=118 amount=-4 -kerning first=317 second=962 amount=-1 -kerning first=8369 second=221 amount=-5 -kerning first=108 second=67 amount=-2 -kerning first=962 second=949 amount=-1 -kerning first=965 second=257 amount=-1 -kerning first=161 second=229 amount=-1 -kerning first=274 second=119 amount=-4 -kerning first=40 second=920 amount=-2 -kerning first=179 second=1195 amount=-1 -kerning first=183 second=371 amount=-1 -kerning first=1047 second=194 amount=-1 -kerning first=298 second=286 amount=-2 -kerning first=60 second=1257 amount=-1 -kerning first=8370 second=376 amount=-5 -kerning first=901 second=346 amount=-1 -kerning first=352 second=120 amount=-1 -kerning first=946 second=45 amount=-2 -kerning first=940 second=964 amount=-2 -kerning first=246 second=947 amount=-1 -kerning first=249 second=372 amount=-5 -kerning first=372 second=287 amount=-2 -kerning first=126 second=1262 amount=-2 -kerning first=162 second=1240 amount=-2 -kerning first=1048 second=347 amount=-1 -kerning first=1044 second=1108 amount=-1 -kerning first=184 second=1069 amount=-1 -kerning first=190 second=81 amount=-2 -kerning first=302 second=231 amount=-1 -kerning first=1080 second=965 amount=-1 -kerning first=1090 second=46 amount=-3 -kerning first=327 second=373 amount=-4 -kerning first=8366 second=8250 amount=-1 -kerning first=902 second=1028 amount=-2 -kerning first=905 second=288 amount=-2 -kerning first=948 second=220 amount=-2 -kerning first=376 second=232 amount=-4 -kerning first=967 second=1176 amount=-1 -kerning first=166 second=332 amount=-2 -kerning first=8220 second=197 amount=-3 -kerning first=51 second=106 amount=1 -kerning first=1118 second=1177 amount=-1 -kerning first=357 second=245 amount=-1 -kerning first=1223 second=290 amount=-2 -kerning first=254 second=949 amount=-1 -kerning first=968 second=8211 amount=-2 -kerning first=167 second=963 amount=-1 -kerning first=170 second=271 amount=-1 -kerning first=49 second=1026 amount=-5 -kerning first=55 second=56 amount=-1 -kerning first=52 second=286 amount=-2 -kerning first=304 second=1090 amount=-3 -kerning first=1095 second=376 amount=-5 -kerning first=215 second=346 amount=-1 -kerning first=336 second=258 amount=-2 -kerning first=95 second=360 amount=-2 -kerning first=1119 second=8212 amount=-2 -kerning first=1170 second=1059 amount=-2 -kerning first=98 second=120 amount=-2 -kerning first=238 second=273 amount=-1 -kerning first=235 second=964 amount=-1 -kerning first=946 second=8249 amount=-3 -kerning first=950 second=1074 amount=-2 -kerning first=956 second=85 amount=-2 -kerning first=118 second=287 amount=-1 -kerning first=381 second=335 amount=-1 -kerning first=175 second=219 amount=-2 -kerning first=56 second=231 amount=-1 -kerning first=196 second=361 amount=-1 -kerning first=310 second=965 amount=-1 -kerning first=8361 second=224 amount=-1 -kerning first=76 second=373 amount=-3 -kerning first=923 second=336 amount=-2 -kerning first=1179 second=248 amount=-1 -kerning first=122 second=232 amount=-1 -kerning first=382 second=966 amount=-1 -kerning first=37 second=244 amount=-1 -kerning first=176 second=374 amount=-5 -kerning first=1071 second=337 amount=-1 -kerning first=1075 second=99 amount=-1 -kerning first=203 second=71 amount=-2 -kerning first=318 second=221 amount=-5 -kerning first=74 second=8230 amount=-1 -kerning first=1103 second=261 amount=-1 -kerning first=223 second=233 amount=-1 -kerning first=338 second=1177 amount=-1 -kerning first=103 second=245 amount=-1 -kerning first=963 second=210 amount=-2 -kerning first=260 second=8211 amount=-2 -kerning first=184 second=84 amount=-5 -kerning first=296 second=234 amount=-1 -kerning first=8260 second=1241 amount=-1 -kerning first=58 second=1090 amount=-3 -kerning first=61 second=334 amount=-2 -kerning first=1073 second=968 amount=-1 -kerning first=204 second=246 amount=-1 -kerning first=1076 second=277 amount=-1 -kerning first=321 second=376 amount=-5 -kerning first=8363 second=1079 amount=-1 -kerning first=8372 second=89 amount=-5 -kerning first=84 second=258 amount=-6 -kerning first=1202 second=113 amount=-1 -kerning first=250 second=85 amount=-2 -kerning first=964 second=365 amount=-1 -kerning first=160 second=335 amount=-1 -kerning first=163 second=97 amount=-1 -kerning first=39 second=1108 amount=-1 -kerning first=42 second=347 amount=-1 -kerning first=185 second=259 amount=-1 -kerning first=188 second=34 amount=-3 -kerning first=62 second=965 amount=-1 -kerning first=1081 second=224 amount=-1 -kerning first=68 second=46 amount=-1 -kerning first=208 second=196 amount=-2 -kerning first=317 second=8250 amount=-1 -kerning first=108 second=350 amount=-1 -kerning first=962 second=8217 amount=-3 -kerning first=161 second=966 amount=-1 -kerning first=164 second=275 amount=-1 -kerning first=8217 second=115 amount=-1 -kerning first=46 second=289 amount=-1 -kerning first=301 second=337 amount=-1 -kerning first=304 second=99 amount=-1 -kerning first=69 second=221 amount=-5 -kerning first=209 second=351 amount=-1 -kerning first=330 second=261 amount=-1 -kerning first=86 second=1177 amount=-1 -kerning first=89 second=363 amount=-2 -kerning first=255 second=210 amount=-2 -kerning first=372 second=1097 amount=-2 -kerning first=375 second=338 amount=-2 -kerning first=378 second=100 amount=-1 -kerning first=278 second=352 amount=-1 -kerning first=50 second=234 amount=-1 -kerning first=1064 second=187 amount=-1 -kerning first=190 second=364 amount=-2 -kerning first=302 second=968 amount=-1 -kerning first=305 second=277 amount=-1 -kerning first=70 second=376 amount=-5 -kerning first=1084 second=1079 amount=-1 -kerning first=1096 second=89 amount=-5 -kerning first=210 second=1035 amount=-2 -kerning first=905 second=1098 amount=-3 -kerning first=910 second=339 amount=-4 -kerning first=915 second=101 amount=-1 -kerning first=87 second=8212 amount=-2 -kerning first=1171 second=251 amount=-1 -kerning first=356 second=353 amount=-3 -kerning first=951 second=263 amount=-1 -kerning first=256 second=365 amount=-1 -kerning first=376 second=969 amount=-4 -kerning first=8224 second=240 amount=-1 -kerning first=8220 second=916 amount=-3 -kerning first=188 second=8216 amount=-3 -kerning first=197 second=74 amount=-1 -kerning first=311 second=224 amount=-1 -kerning first=332 second=1184 amount=-2 -kerning first=916 second=279 amount=-1 -kerning first=240 second=171 amount=-3 -kerning first=955 second=213 amount=-2 -kerning first=254 second=8217 amount=-3 -kerning first=1298 second=103 amount=-1 -kerning first=1035 second=115 amount=-1 -kerning first=177 second=87 amount=-5 -kerning first=55 second=337 amount=-1 -kerning first=58 second=99 amount=-1 -kerning first=195 second=940 amount=-1 -kerning first=198 second=249 amount=-1 -kerning first=78 second=261 amount=-1 -kerning first=333 second=8218 amount=-1 -kerning first=928 second=226 amount=-1 +kerning first=1174 second=8217 amount=-2 +kerning first=1174 second=8220 amount=-2 +kerning first=1174 second=8221 amount=-2 +kerning first=1174 second=8249 amount=-1 +kerning first=1175 second=99 amount=-1 +kerning first=1175 second=100 amount=-1 +kerning first=1175 second=101 amount=-1 +kerning first=1175 second=111 amount=-1 +kerning first=1175 second=113 amount=-1 +kerning first=1175 second=231 amount=-1 +kerning first=1175 second=232 amount=-1 +kerning first=1175 second=233 amount=-1 +kerning first=1175 second=234 amount=-1 +kerning first=1175 second=235 amount=-1 +kerning first=1175 second=240 amount=-1 +kerning first=1175 second=242 amount=-1 +kerning first=1175 second=243 amount=-1 +kerning first=1175 second=244 amount=-1 +kerning first=1175 second=245 amount=-1 +kerning first=1175 second=246 amount=-1 +kerning first=1175 second=248 amount=-1 +kerning first=1175 second=263 amount=-1 +kerning first=1175 second=267 amount=-1 +kerning first=1175 second=269 amount=-1 +kerning first=1175 second=271 amount=-1 +kerning first=1175 second=273 amount=-1 +kerning first=1175 second=275 amount=-1 +kerning first=1175 second=277 amount=-1 +kerning first=1175 second=279 amount=-1 +kerning first=1175 second=281 amount=-1 +kerning first=1175 second=283 amount=-1 +kerning first=1175 second=333 amount=-1 +kerning first=1175 second=335 amount=-1 +kerning first=1175 second=337 amount=-1 +kerning first=1175 second=339 amount=-1 +kerning first=1175 second=940 amount=-1 +kerning first=1175 second=941 amount=-1 +kerning first=1175 second=945 amount=-1 +kerning first=1175 second=949 amount=-1 +kerning first=1175 second=959 amount=-1 +kerning first=1175 second=962 amount=-1 +kerning first=1175 second=963 amount=-1 +kerning first=1175 second=964 amount=-2 +kerning first=1175 second=966 amount=-1 +kerning first=1175 second=972 amount=-1 +kerning first=1175 second=1073 amount=-1 +kerning first=1175 second=1077 amount=-1 +kerning first=1175 second=1086 amount=-1 +kerning first=1175 second=1089 amount=-1 +kerning first=1175 second=1090 amount=-2 +kerning first=1175 second=1092 amount=-1 +kerning first=1175 second=1095 amount=-2 +kerning first=1175 second=1098 amount=-2 +kerning first=1175 second=1104 amount=-1 +kerning first=1175 second=1105 amount=-1 +kerning first=1175 second=1108 amount=-1 +kerning first=1175 second=1185 amount=-2 +kerning first=1175 second=1195 amount=-1 +kerning first=1175 second=1241 amount=-1 +kerning first=1175 second=1257 amount=-1 +kerning first=1177 second=120 amount=-1 +kerning first=1177 second=964 amount=-1 +kerning first=1177 second=1078 amount=-1 +kerning first=1177 second=1090 amount=-1 +kerning first=1177 second=1093 amount=-1 +kerning first=1177 second=1098 amount=-1 +kerning first=1177 second=1175 amount=-1 +kerning first=1177 second=1185 amount=-1 +kerning first=1177 second=1203 amount=-1 +kerning first=1178 second=34 amount=-2 +kerning first=1178 second=39 amount=-2 +kerning first=1178 second=45 amount=-2 +kerning first=1178 second=63 amount=-2 +kerning first=1178 second=67 amount=-1 +kerning first=1178 second=71 amount=-1 +kerning first=1178 second=79 amount=-1 +kerning first=1178 second=81 amount=-1 +kerning first=1178 second=84 amount=-2 +kerning first=1178 second=85 amount=-1 +kerning first=1178 second=89 amount=-2 +kerning first=1178 second=99 amount=-1 +kerning first=1178 second=100 amount=-1 +kerning first=1178 second=101 amount=-1 +kerning first=1178 second=106 amount=7 +kerning first=1178 second=111 amount=-1 +kerning first=1178 second=113 amount=-1 +kerning first=1178 second=118 amount=-2 +kerning first=1178 second=119 amount=-2 +kerning first=1178 second=171 amount=-1 +kerning first=1178 second=173 amount=-2 +kerning first=1178 second=199 amount=-1 +kerning first=1178 second=210 amount=-1 +kerning first=1178 second=211 amount=-1 +kerning first=1178 second=212 amount=-1 +kerning first=1178 second=213 amount=-1 +kerning first=1178 second=214 amount=-1 +kerning first=1178 second=216 amount=-1 +kerning first=1178 second=217 amount=-1 +kerning first=1178 second=218 amount=-1 +kerning first=1178 second=219 amount=-1 +kerning first=1178 second=220 amount=-1 +kerning first=1178 second=221 amount=-2 +kerning first=1178 second=231 amount=-1 +kerning first=1178 second=232 amount=-1 +kerning first=1178 second=233 amount=-1 +kerning first=1178 second=234 amount=-1 +kerning first=1178 second=235 amount=-1 +kerning first=1178 second=240 amount=-1 +kerning first=1178 second=242 amount=-1 +kerning first=1178 second=243 amount=-1 +kerning first=1178 second=244 amount=-1 +kerning first=1178 second=245 amount=-1 +kerning first=1178 second=246 amount=-1 +kerning first=1178 second=248 amount=-1 +kerning first=1178 second=262 amount=-1 +kerning first=1178 second=263 amount=-1 +kerning first=1178 second=266 amount=-1 +kerning first=1178 second=267 amount=-1 +kerning first=1178 second=268 amount=-1 +kerning first=1178 second=269 amount=-1 +kerning first=1178 second=271 amount=-1 +kerning first=1178 second=273 amount=-1 +kerning first=1178 second=275 amount=-1 +kerning first=1178 second=277 amount=-1 +kerning first=1178 second=279 amount=-1 +kerning first=1178 second=281 amount=-1 +kerning first=1178 second=283 amount=-1 +kerning first=1178 second=286 amount=-1 +kerning first=1178 second=288 amount=-1 +kerning first=1178 second=290 amount=-1 +kerning first=1178 second=332 amount=-1 +kerning first=1178 second=333 amount=-1 +kerning first=1178 second=334 amount=-1 +kerning first=1178 second=335 amount=-1 +kerning first=1178 second=336 amount=-1 +kerning first=1178 second=337 amount=-1 +kerning first=1178 second=338 amount=-1 +kerning first=1178 second=339 amount=-1 +kerning first=1178 second=354 amount=-2 kerning first=1178 second=356 amount=-2 -kerning first=956 second=368 amount=-2 -kerning first=121 second=338 amount=-2 -kerning first=124 second=100 amount=-1 -kerning first=1299 second=281 amount=-1 -kerning first=36 second=352 amount=-1 -kerning first=178 second=262 amount=-2 -kerning first=289 second=1241 amount=-1 -kerning first=294 second=187 amount=-1 -kerning first=56 second=968 amount=-1 -kerning first=59 second=277 amount=-1 -kerning first=1074 second=227 amount=-1 -kerning first=202 second=199 amount=-2 -kerning first=314 second=1079 amount=-1 -kerning first=322 second=89 amount=-5 -kerning first=8364 second=269 amount=-1 -kerning first=102 second=353 amount=-1 -kerning first=105 second=113 amount=-1 -kerning first=242 second=955 amount=-1 -kerning first=958 second=1066 amount=-5 -kerning first=1041 second=240 amount=-1 -kerning first=183 second=212 amount=-2 -kerning first=1071 second=1256 amount=-2 -kerning first=63 second=224 amount=-1 -kerning first=203 second=354 amount=-5 -kerning first=200 second=1118 amount=-1 -kerning first=323 second=266 amount=-2 -kerning first=326 second=39 amount=-1 -kerning first=8370 second=217 amount=-2 -kerning first=80 second=1184 amount=-5 -kerning first=223 second=970 amount=-1 -kerning first=109 second=63 amount=-2 -kerning first=249 second=213 amount=-2 -kerning first=372 second=103 amount=-2 -kerning first=162 second=225 amount=-1 -kerning first=271 second=355 amount=-1 -kerning first=180 second=1185 amount=-3 -kerning first=184 second=367 amount=-1 -kerning first=204 second=1038 amount=-2 -kerning first=327 second=214 amount=-2 -kerning first=8366 second=947 amount=-4 -kerning first=8372 second=372 amount=-5 -kerning first=81 second=8218 amount=-1 -kerning first=350 second=356 amount=-1 -kerning first=944 second=268 amount=-2 -kerning first=250 second=368 amount=-2 -kerning first=373 second=281 amount=-1 -kerning first=8216 second=243 amount=-1 -kerning first=48 second=187 amount=-1 -kerning first=182 second=8220 amount=-3 -kerning first=303 second=227 amount=-1 -kerning first=65 second=1079 amount=-1 -kerning first=71 second=89 amount=-2 -kerning first=1085 second=269 amount=-1 -kerning first=903 second=973 amount=-1 -kerning first=91 second=251 amount=-1 -kerning first=251 second=1066 amount=-5 -kerning first=1223 second=106 amount=1 -kerning first=248 second=8221 amount=-1 -kerning first=280 second=240 amount=-1 -kerning first=8221 second=193 amount=-3 -kerning first=1063 second=283 amount=-1 -kerning first=189 second=943 amount=-1 -kerning first=192 second=252 amount=-1 -kerning first=301 second=1256 amount=-2 -kerning first=72 second=266 amount=-2 -kerning first=1095 second=217 amount=-2 -kerning first=912 second=229 amount=-1 -kerning first=1170 second=359 amount=-1 -kerning first=946 second=1195 amount=-1 -kerning first=950 second=371 amount=-1 -kerning first=118 second=103 amount=-1 -kerning first=1219 second=1026 amount=-5 -kerning first=1224 second=286 amount=-2 -kerning first=258 second=253 amount=-1 -kerning first=375 second=1257 amount=-1 -kerning first=1067 second=230 amount=-1 -kerning first=8361 second=45 amount=-2 -kerning first=1096 second=372 amount=-5 -kerning first=76 second=214 amount=-1 -kerning first=915 second=1240 amount=-2 -kerning first=96 second=356 amount=-5 -kerning first=239 second=268 amount=-2 -kerning first=951 second=1069 amount=-1 -kerning first=958 second=81 amount=-2 -kerning first=119 second=281 amount=-1 -kerning first=1263 second=231 amount=-1 -kerning first=8224 second=1028 amount=-2 -kerning first=8230 second=288 amount=-1 -kerning first=57 second=227 amount=-1 -kerning first=200 second=117 amount=-1 -kerning first=197 second=357 amount=-1 -kerning first=315 second=269 amount=-1 -kerning first=77 second=369 amount=-1 -kerning first=926 second=332 amount=-2 +kerning first=1178 second=360 amount=-1 +kerning first=1178 second=362 amount=-1 +kerning first=1178 second=364 amount=-1 +kerning first=1178 second=366 amount=-1 +kerning first=1178 second=368 amount=-1 +kerning first=1178 second=370 amount=-1 +kerning first=1178 second=373 amount=-2 +kerning first=1178 second=374 amount=-2 +kerning first=1178 second=376 amount=-2 +kerning first=1178 second=920 amount=-1 +kerning first=1178 second=927 amount=-1 +kerning first=1178 second=932 amount=-2 +kerning first=1178 second=933 amount=-2 +kerning first=1178 second=934 amount=-2 +kerning first=1178 second=939 amount=-2 +kerning first=1178 second=940 amount=-1 +kerning first=1178 second=941 amount=-1 +kerning first=1178 second=945 amount=-1 +kerning first=1178 second=947 amount=-2 +kerning first=1178 second=949 amount=-1 +kerning first=1178 second=957 amount=-2 +kerning first=1178 second=959 amount=-1 +kerning first=1178 second=962 amount=-1 +kerning first=1178 second=963 amount=-1 +kerning first=1178 second=964 amount=-2 +kerning first=1178 second=966 amount=-1 +kerning first=1178 second=972 amount=-1 +kerning first=1178 second=1026 amount=-2 +kerning first=1178 second=1028 amount=-1 +kerning first=1178 second=1035 amount=-2 +kerning first=1178 second=1038 amount=-1 +kerning first=1178 second=1054 amount=-1 +kerning first=1178 second=1057 amount=-1 +kerning first=1178 second=1058 amount=-2 +kerning first=1178 second=1059 amount=-1 +kerning first=1178 second=1060 amount=-2 +kerning first=1178 second=1063 amount=-2 +kerning first=1178 second=1066 amount=-2 +kerning first=1178 second=1077 amount=-1 +kerning first=1178 second=1086 amount=-1 +kerning first=1178 second=1089 amount=-1 +kerning first=1178 second=1090 amount=-2 +kerning first=1178 second=1092 amount=-1 +kerning first=1178 second=1098 amount=-2 +kerning first=1178 second=1104 amount=-1 +kerning first=1178 second=1105 amount=-1 +kerning first=1178 second=1108 amount=-1 +kerning first=1178 second=1112 amount=7 +kerning first=1178 second=1184 amount=-2 +kerning first=1178 second=1185 amount=-2 +kerning first=1178 second=1194 amount=-1 +kerning first=1178 second=1195 amount=-1 +kerning first=1178 second=1198 amount=-2 +kerning first=1178 second=1199 amount=-2 +kerning first=1178 second=1240 amount=-1 +kerning first=1178 second=1241 amount=-1 +kerning first=1178 second=1256 amount=-1 +kerning first=1178 second=1257 amount=-1 +kerning first=1178 second=1262 amount=-1 +kerning first=1178 second=8211 amount=-2 +kerning first=1178 second=8212 amount=-2 +kerning first=1178 second=8216 amount=-2 +kerning first=1178 second=8217 amount=-2 +kerning first=1178 second=8220 amount=-2 +kerning first=1178 second=8221 amount=-2 +kerning first=1178 second=8249 amount=-1 +kerning first=1179 second=99 amount=-1 +kerning first=1179 second=100 amount=-1 +kerning first=1179 second=101 amount=-1 +kerning first=1179 second=111 amount=-1 +kerning first=1179 second=113 amount=-1 +kerning first=1179 second=231 amount=-1 +kerning first=1179 second=232 amount=-1 +kerning first=1179 second=233 amount=-1 +kerning first=1179 second=234 amount=-1 +kerning first=1179 second=235 amount=-1 +kerning first=1179 second=240 amount=-1 +kerning first=1179 second=242 amount=-1 +kerning first=1179 second=243 amount=-1 +kerning first=1179 second=244 amount=-1 +kerning first=1179 second=245 amount=-1 +kerning first=1179 second=246 amount=-1 +kerning first=1179 second=248 amount=-1 +kerning first=1179 second=263 amount=-1 +kerning first=1179 second=267 amount=-1 +kerning first=1179 second=269 amount=-1 +kerning first=1179 second=271 amount=-1 +kerning first=1179 second=273 amount=-1 +kerning first=1179 second=275 amount=-1 +kerning first=1179 second=277 amount=-1 +kerning first=1179 second=279 amount=-1 +kerning first=1179 second=281 amount=-1 +kerning first=1179 second=283 amount=-1 +kerning first=1179 second=333 amount=-1 +kerning first=1179 second=335 amount=-1 +kerning first=1179 second=337 amount=-1 +kerning first=1179 second=339 amount=-1 +kerning first=1179 second=940 amount=-1 +kerning first=1179 second=941 amount=-1 +kerning first=1179 second=945 amount=-1 +kerning first=1179 second=949 amount=-1 +kerning first=1179 second=959 amount=-1 +kerning first=1179 second=962 amount=-1 +kerning first=1179 second=963 amount=-1 +kerning first=1179 second=964 amount=-2 +kerning first=1179 second=966 amount=-1 +kerning first=1179 second=972 amount=-1 +kerning first=1179 second=1073 amount=-1 +kerning first=1179 second=1077 amount=-1 +kerning first=1179 second=1086 amount=-1 +kerning first=1179 second=1089 amount=-1 +kerning first=1179 second=1090 amount=-2 +kerning first=1179 second=1092 amount=-1 +kerning first=1179 second=1095 amount=-2 +kerning first=1179 second=1098 amount=-2 +kerning first=1179 second=1104 amount=-1 +kerning first=1179 second=1105 amount=-1 +kerning first=1179 second=1108 amount=-1 +kerning first=1179 second=1185 amount=-2 +kerning first=1179 second=1195 amount=-1 +kerning first=1179 second=1241 amount=-1 +kerning first=1179 second=1257 amount=-1 +kerning first=1184 second=38 amount=-2 +kerning first=1184 second=45 amount=-4 +kerning first=1184 second=63 amount=-2 +kerning first=1184 second=67 amount=-3 +kerning first=1184 second=71 amount=-3 +kerning first=1184 second=74 amount=-1 +kerning first=1184 second=79 amount=-3 +kerning first=1184 second=81 amount=-3 +kerning first=1184 second=83 amount=-1 +kerning first=1184 second=97 amount=-1 +kerning first=1184 second=99 amount=-2 +kerning first=1184 second=100 amount=-2 +kerning first=1184 second=101 amount=-2 +kerning first=1184 second=102 amount=-2 +kerning first=1184 second=103 amount=-1 +kerning first=1184 second=111 amount=-2 +kerning first=1184 second=113 amount=-2 +kerning first=1184 second=116 amount=-1 +kerning first=1184 second=117 amount=-1 +kerning first=1184 second=118 amount=-3 +kerning first=1184 second=119 amount=-3 +kerning first=1184 second=121 amount=-2 +kerning first=1184 second=171 amount=-3 +kerning first=1184 second=173 amount=-4 +kerning first=1184 second=187 amount=-2 +kerning first=1184 second=199 amount=-3 +kerning first=1184 second=210 amount=-3 +kerning first=1184 second=211 amount=-3 +kerning first=1184 second=212 amount=-3 +kerning first=1184 second=213 amount=-3 +kerning first=1184 second=214 amount=-3 +kerning first=1184 second=216 amount=-3 +kerning first=1184 second=224 amount=-1 +kerning first=1184 second=225 amount=-1 +kerning first=1184 second=226 amount=-1 +kerning first=1184 second=227 amount=-1 +kerning first=1184 second=228 amount=-1 +kerning first=1184 second=229 amount=-1 +kerning first=1184 second=230 amount=-1 +kerning first=1184 second=231 amount=-2 +kerning first=1184 second=232 amount=-2 +kerning first=1184 second=233 amount=-2 +kerning first=1184 second=234 amount=-2 +kerning first=1184 second=235 amount=-2 +kerning first=1184 second=240 amount=-2 +kerning first=1184 second=242 amount=-2 +kerning first=1184 second=243 amount=-2 kerning first=1184 second=244 amount=-2 -kerning first=123 second=228 amount=-1 -kerning first=38 second=240 amount=-1 -kerning first=1038 second=193 amount=-2 -kerning first=174 second=1194 amount=-2 -kerning first=177 second=370 amount=-2 -kerning first=291 second=283 amount=-1 -kerning first=8260 second=233 amount=-1 -kerning first=55 second=1256 amount=-2 -kerning first=1073 second=333 amount=-1 -kerning first=204 second=67 amount=-2 -kerning first=321 second=217 amount=-2 -kerning first=8363 second=375 amount=-1 -kerning first=84 second=79 amount=-1 -kerning first=928 second=963 amount=-1 -kerning first=936 second=271 amount=-1 +kerning first=1184 second=245 amount=-2 +kerning first=1184 second=246 amount=-2 +kerning first=1184 second=248 amount=-2 +kerning first=1184 second=249 amount=-1 +kerning first=1184 second=250 amount=-1 +kerning first=1184 second=251 amount=-1 +kerning first=1184 second=252 amount=-1 +kerning first=1184 second=253 amount=-2 +kerning first=1184 second=257 amount=-1 +kerning first=1184 second=259 amount=-1 +kerning first=1184 second=261 amount=-1 +kerning first=1184 second=262 amount=-3 +kerning first=1184 second=263 amount=-2 +kerning first=1184 second=266 amount=-3 +kerning first=1184 second=267 amount=-2 +kerning first=1184 second=268 amount=-3 +kerning first=1184 second=269 amount=-2 +kerning first=1184 second=271 amount=-2 +kerning first=1184 second=273 amount=-2 +kerning first=1184 second=275 amount=-2 +kerning first=1184 second=277 amount=-2 +kerning first=1184 second=279 amount=-2 +kerning first=1184 second=281 amount=-2 +kerning first=1184 second=283 amount=-2 +kerning first=1184 second=286 amount=-3 +kerning first=1184 second=287 amount=-1 +kerning first=1184 second=288 amount=-3 +kerning first=1184 second=289 amount=-1 +kerning first=1184 second=290 amount=-3 +kerning first=1184 second=291 amount=-1 +kerning first=1184 second=332 amount=-3 +kerning first=1184 second=333 amount=-2 +kerning first=1184 second=334 amount=-3 +kerning first=1184 second=335 amount=-2 +kerning first=1184 second=336 amount=-3 +kerning first=1184 second=337 amount=-2 +kerning first=1184 second=338 amount=-3 +kerning first=1184 second=339 amount=-2 +kerning first=1184 second=346 amount=-1 +kerning first=1184 second=350 amount=-1 +kerning first=1184 second=352 amount=-1 +kerning first=1184 second=355 amount=-1 +kerning first=1184 second=357 amount=-1 +kerning first=1184 second=359 amount=-1 +kerning first=1184 second=361 amount=-1 +kerning first=1184 second=363 amount=-1 +kerning first=1184 second=365 amount=-1 +kerning first=1184 second=367 amount=-1 +kerning first=1184 second=369 amount=-1 +kerning first=1184 second=371 amount=-1 +kerning first=1184 second=373 amount=-3 +kerning first=1184 second=375 amount=-2 +kerning first=1184 second=920 amount=-3 +kerning first=1184 second=927 amount=-3 +kerning first=1184 second=940 amount=-2 +kerning first=1184 second=941 amount=-2 +kerning first=1184 second=945 amount=-2 +kerning first=1184 second=947 amount=-3 +kerning first=1184 second=949 amount=-2 +kerning first=1184 second=957 amount=-3 +kerning first=1184 second=959 amount=-2 +kerning first=1184 second=962 amount=-2 +kerning first=1184 second=963 amount=-2 +kerning first=1184 second=964 amount=-4 +kerning first=1184 second=965 amount=-1 +kerning first=1184 second=966 amount=-2 +kerning first=1184 second=968 amount=-1 +kerning first=1184 second=972 amount=-2 +kerning first=1184 second=973 amount=-1 +kerning first=1184 second=1028 amount=-3 +kerning first=1184 second=1029 amount=-1 +kerning first=1184 second=1032 amount=-1 +kerning first=1184 second=1054 amount=-3 +kerning first=1184 second=1057 amount=-3 +kerning first=1184 second=1069 amount=-2 +kerning first=1184 second=1072 amount=-1 +kerning first=1184 second=1077 amount=-2 +kerning first=1184 second=1079 amount=-1 +kerning first=1184 second=1086 amount=-2 +kerning first=1184 second=1089 amount=-2 +kerning first=1184 second=1090 amount=-4 +kerning first=1184 second=1091 amount=-2 +kerning first=1184 second=1092 amount=-2 +kerning first=1184 second=1098 amount=-4 +kerning first=1184 second=1101 amount=-1 +kerning first=1184 second=1104 amount=-2 +kerning first=1184 second=1105 amount=-2 +kerning first=1184 second=1108 amount=-2 +kerning first=1184 second=1118 amount=-2 +kerning first=1184 second=1176 amount=-2 +kerning first=1184 second=1177 amount=-1 +kerning first=1184 second=1185 amount=-4 +kerning first=1184 second=1194 amount=-3 +kerning first=1184 second=1195 amount=-2 +kerning first=1184 second=1199 amount=-3 +kerning first=1184 second=1240 amount=-3 +kerning first=1184 second=1241 amount=-2 +kerning first=1184 second=1256 amount=-3 +kerning first=1184 second=1257 amount=-2 +kerning first=1184 second=1263 amount=-2 +kerning first=1184 second=8211 amount=-4 +kerning first=1184 second=8212 amount=-4 +kerning first=1184 second=8249 amount=-3 +kerning first=1184 second=8250 amount=-2 +kerning first=1185 second=45 amount=-3 +kerning first=1185 second=97 amount=-1 +kerning first=1185 second=99 amount=-2 +kerning first=1185 second=100 amount=-2 +kerning first=1185 second=101 amount=-2 +kerning first=1185 second=103 amount=-2 +kerning first=1185 second=106 amount=1 +kerning first=1185 second=111 amount=-2 +kerning first=1185 second=113 amount=-2 +kerning first=1185 second=115 amount=-1 +kerning first=1185 second=173 amount=-3 +kerning first=1185 second=224 amount=-1 +kerning first=1185 second=225 amount=-1 +kerning first=1185 second=226 amount=-1 +kerning first=1185 second=227 amount=-1 +kerning first=1185 second=228 amount=-1 +kerning first=1185 second=229 amount=-1 +kerning first=1185 second=230 amount=-1 +kerning first=1185 second=231 amount=-2 +kerning first=1185 second=232 amount=-2 +kerning first=1185 second=233 amount=-2 +kerning first=1185 second=234 amount=-2 +kerning first=1185 second=235 amount=-2 +kerning first=1185 second=240 amount=-2 +kerning first=1185 second=242 amount=-2 +kerning first=1185 second=243 amount=-2 +kerning first=1185 second=244 amount=-2 +kerning first=1185 second=245 amount=-2 +kerning first=1185 second=246 amount=-2 +kerning first=1185 second=248 amount=-2 +kerning first=1185 second=257 amount=-1 +kerning first=1185 second=259 amount=-1 +kerning first=1185 second=261 amount=-1 +kerning first=1185 second=263 amount=-2 +kerning first=1185 second=267 amount=-2 +kerning first=1185 second=269 amount=-2 +kerning first=1185 second=271 amount=-2 +kerning first=1185 second=273 amount=-2 +kerning first=1185 second=275 amount=-2 +kerning first=1185 second=277 amount=-2 +kerning first=1185 second=279 amount=-2 +kerning first=1185 second=281 amount=-2 +kerning first=1185 second=283 amount=-2 +kerning first=1185 second=287 amount=-2 +kerning first=1185 second=289 amount=-2 +kerning first=1185 second=291 amount=-2 +kerning first=1185 second=333 amount=-2 +kerning first=1185 second=335 amount=-2 +kerning first=1185 second=337 amount=-2 +kerning first=1185 second=339 amount=-2 +kerning first=1185 second=347 amount=-1 +kerning first=1185 second=351 amount=-1 +kerning first=1185 second=353 amount=-1 +kerning first=1185 second=940 amount=-2 +kerning first=1185 second=941 amount=-2 +kerning first=1185 second=945 amount=-2 +kerning first=1185 second=949 amount=-2 +kerning first=1185 second=959 amount=-2 +kerning first=1185 second=962 amount=-2 +kerning first=1185 second=963 amount=-2 +kerning first=1185 second=966 amount=-2 +kerning first=1185 second=972 amount=-2 +kerning first=1185 second=1072 amount=-1 +kerning first=1185 second=1077 amount=-2 +kerning first=1185 second=1086 amount=-2 +kerning first=1185 second=1089 amount=-2 +kerning first=1185 second=1092 amount=-2 +kerning first=1185 second=1104 amount=-2 +kerning first=1185 second=1105 amount=-2 +kerning first=1185 second=1108 amount=-2 +kerning first=1185 second=1109 amount=-1 +kerning first=1185 second=1112 amount=1 +kerning first=1185 second=1195 amount=-2 +kerning first=1185 second=1241 amount=-2 +kerning first=1185 second=1257 amount=-2 +kerning first=1185 second=8211 amount=-3 +kerning first=1185 second=8212 amount=-3 +kerning first=1186 second=34 amount=-2 +kerning first=1186 second=39 amount=-2 +kerning first=1186 second=45 amount=-2 +kerning first=1186 second=63 amount=-2 +kerning first=1186 second=67 amount=-1 +kerning first=1186 second=71 amount=-1 +kerning first=1186 second=79 amount=-1 +kerning first=1186 second=81 amount=-1 +kerning first=1186 second=84 amount=-2 +kerning first=1186 second=85 amount=-1 +kerning first=1186 second=89 amount=-2 +kerning first=1186 second=99 amount=-1 +kerning first=1186 second=100 amount=-1 +kerning first=1186 second=101 amount=-1 +kerning first=1186 second=106 amount=7 +kerning first=1186 second=111 amount=-1 +kerning first=1186 second=113 amount=-1 +kerning first=1186 second=118 amount=-2 +kerning first=1186 second=119 amount=-2 +kerning first=1186 second=171 amount=-1 +kerning first=1186 second=173 amount=-2 +kerning first=1186 second=199 amount=-1 +kerning first=1186 second=210 amount=-1 +kerning first=1186 second=211 amount=-1 +kerning first=1186 second=212 amount=-1 +kerning first=1186 second=213 amount=-1 +kerning first=1186 second=214 amount=-1 +kerning first=1186 second=216 amount=-1 +kerning first=1186 second=217 amount=-1 +kerning first=1186 second=218 amount=-1 +kerning first=1186 second=219 amount=-1 +kerning first=1186 second=220 amount=-1 +kerning first=1186 second=221 amount=-2 +kerning first=1186 second=231 amount=-1 +kerning first=1186 second=232 amount=-1 +kerning first=1186 second=233 amount=-1 +kerning first=1186 second=234 amount=-1 +kerning first=1186 second=235 amount=-1 +kerning first=1186 second=240 amount=-1 +kerning first=1186 second=242 amount=-1 +kerning first=1186 second=243 amount=-1 +kerning first=1186 second=244 amount=-1 +kerning first=1186 second=245 amount=-1 +kerning first=1186 second=246 amount=-1 +kerning first=1186 second=248 amount=-1 +kerning first=1186 second=262 amount=-1 +kerning first=1186 second=263 amount=-1 +kerning first=1186 second=266 amount=-1 +kerning first=1186 second=267 amount=-1 +kerning first=1186 second=268 amount=-1 +kerning first=1186 second=269 amount=-1 +kerning first=1186 second=271 amount=-1 +kerning first=1186 second=273 amount=-1 +kerning first=1186 second=275 amount=-1 +kerning first=1186 second=277 amount=-1 +kerning first=1186 second=279 amount=-1 +kerning first=1186 second=281 amount=-1 +kerning first=1186 second=283 amount=-1 +kerning first=1186 second=286 amount=-1 +kerning first=1186 second=288 amount=-1 +kerning first=1186 second=290 amount=-1 +kerning first=1186 second=332 amount=-1 +kerning first=1186 second=333 amount=-1 +kerning first=1186 second=334 amount=-1 +kerning first=1186 second=335 amount=-1 +kerning first=1186 second=336 amount=-1 +kerning first=1186 second=337 amount=-1 +kerning first=1186 second=338 amount=-1 +kerning first=1186 second=339 amount=-1 +kerning first=1186 second=354 amount=-2 +kerning first=1186 second=356 amount=-2 +kerning first=1186 second=360 amount=-1 +kerning first=1186 second=362 amount=-1 +kerning first=1186 second=364 amount=-1 +kerning first=1186 second=366 amount=-1 +kerning first=1186 second=368 amount=-1 +kerning first=1186 second=370 amount=-1 +kerning first=1186 second=373 amount=-2 +kerning first=1186 second=374 amount=-2 +kerning first=1186 second=376 amount=-2 +kerning first=1186 second=920 amount=-1 +kerning first=1186 second=927 amount=-1 +kerning first=1186 second=932 amount=-2 +kerning first=1186 second=933 amount=-2 +kerning first=1186 second=934 amount=-2 +kerning first=1186 second=939 amount=-2 +kerning first=1186 second=940 amount=-1 +kerning first=1186 second=941 amount=-1 +kerning first=1186 second=945 amount=-1 +kerning first=1186 second=947 amount=-2 +kerning first=1186 second=949 amount=-1 +kerning first=1186 second=957 amount=-2 +kerning first=1186 second=959 amount=-1 +kerning first=1186 second=962 amount=-1 +kerning first=1186 second=963 amount=-1 +kerning first=1186 second=964 amount=-2 +kerning first=1186 second=966 amount=-1 +kerning first=1186 second=972 amount=-1 +kerning first=1186 second=1026 amount=-2 +kerning first=1186 second=1028 amount=-1 +kerning first=1186 second=1035 amount=-2 +kerning first=1186 second=1038 amount=-1 +kerning first=1186 second=1054 amount=-1 +kerning first=1186 second=1057 amount=-1 +kerning first=1186 second=1058 amount=-2 +kerning first=1186 second=1059 amount=-1 +kerning first=1186 second=1060 amount=-2 +kerning first=1186 second=1063 amount=-2 +kerning first=1186 second=1066 amount=-2 +kerning first=1186 second=1077 amount=-1 +kerning first=1186 second=1086 amount=-1 +kerning first=1186 second=1089 amount=-1 +kerning first=1186 second=1090 amount=-2 +kerning first=1186 second=1092 amount=-1 +kerning first=1186 second=1098 amount=-2 +kerning first=1186 second=1104 amount=-1 +kerning first=1186 second=1105 amount=-1 +kerning first=1186 second=1108 amount=-1 +kerning first=1186 second=1112 amount=7 +kerning first=1186 second=1184 amount=-2 +kerning first=1186 second=1185 amount=-2 +kerning first=1186 second=1194 amount=-1 +kerning first=1186 second=1195 amount=-1 +kerning first=1186 second=1198 amount=-2 +kerning first=1186 second=1199 amount=-2 +kerning first=1186 second=1240 amount=-1 +kerning first=1186 second=1241 amount=-1 +kerning first=1186 second=1256 amount=-1 +kerning first=1186 second=1257 amount=-1 +kerning first=1186 second=1262 amount=-1 +kerning first=1186 second=8211 amount=-2 +kerning first=1186 second=8212 amount=-2 +kerning first=1186 second=8216 amount=-2 +kerning first=1186 second=8217 amount=-2 +kerning first=1186 second=8220 amount=-2 +kerning first=1186 second=8221 amount=-2 +kerning first=1186 second=8249 amount=-1 +kerning first=1187 second=99 amount=-1 +kerning first=1187 second=100 amount=-1 +kerning first=1187 second=101 amount=-1 +kerning first=1187 second=111 amount=-1 +kerning first=1187 second=113 amount=-1 +kerning first=1187 second=231 amount=-1 +kerning first=1187 second=232 amount=-1 +kerning first=1187 second=233 amount=-1 +kerning first=1187 second=234 amount=-1 +kerning first=1187 second=235 amount=-1 +kerning first=1187 second=240 amount=-1 +kerning first=1187 second=242 amount=-1 +kerning first=1187 second=243 amount=-1 +kerning first=1187 second=244 amount=-1 +kerning first=1187 second=245 amount=-1 +kerning first=1187 second=246 amount=-1 +kerning first=1187 second=248 amount=-1 +kerning first=1187 second=263 amount=-1 +kerning first=1187 second=267 amount=-1 +kerning first=1187 second=269 amount=-1 +kerning first=1187 second=271 amount=-1 +kerning first=1187 second=273 amount=-1 +kerning first=1187 second=275 amount=-1 +kerning first=1187 second=277 amount=-1 +kerning first=1187 second=279 amount=-1 +kerning first=1187 second=281 amount=-1 +kerning first=1187 second=283 amount=-1 +kerning first=1187 second=333 amount=-1 +kerning first=1187 second=335 amount=-1 +kerning first=1187 second=337 amount=-1 +kerning first=1187 second=339 amount=-1 +kerning first=1187 second=940 amount=-1 +kerning first=1187 second=941 amount=-1 +kerning first=1187 second=945 amount=-1 +kerning first=1187 second=949 amount=-1 +kerning first=1187 second=959 amount=-1 +kerning first=1187 second=962 amount=-1 +kerning first=1187 second=963 amount=-1 +kerning first=1187 second=964 amount=-2 +kerning first=1187 second=966 amount=-1 +kerning first=1187 second=972 amount=-1 +kerning first=1187 second=1073 amount=-1 +kerning first=1187 second=1077 amount=-1 +kerning first=1187 second=1086 amount=-1 +kerning first=1187 second=1089 amount=-1 +kerning first=1187 second=1090 amount=-2 +kerning first=1187 second=1092 amount=-1 +kerning first=1187 second=1095 amount=-2 +kerning first=1187 second=1098 amount=-2 +kerning first=1187 second=1104 amount=-1 +kerning first=1187 second=1105 amount=-1 +kerning first=1187 second=1108 amount=-1 +kerning first=1187 second=1185 amount=-2 +kerning first=1187 second=1195 amount=-1 +kerning first=1187 second=1241 amount=-1 +kerning first=1187 second=1257 amount=-1 +kerning first=1194 second=44 amount=-1 +kerning first=1194 second=45 amount=-1 +kerning first=1194 second=46 amount=-1 +kerning first=1194 second=47 amount=-1 +kerning first=1194 second=65 amount=-1 +kerning first=1194 second=84 amount=-1 +kerning first=1194 second=86 amount=-1 +kerning first=1194 second=87 amount=-1 +kerning first=1194 second=88 amount=-2 +kerning first=1194 second=89 amount=-2 +kerning first=1194 second=90 amount=-1 +kerning first=1194 second=106 amount=1 +kerning first=1194 second=171 amount=-1 +kerning first=1194 second=173 amount=-1 +kerning first=1194 second=193 amount=-1 kerning first=1194 second=194 amount=-1 -kerning first=367 second=286 amount=-2 -kerning first=121 second=1257 amount=-1 -kerning first=1299 second=1090 amount=-3 -kerning first=266 second=1046 amount=-2 -kerning first=1039 second=346 amount=-1 -kerning first=297 second=230 amount=-1 -kerning first=1074 second=964 amount=-3 -kerning first=1081 second=45 amount=-2 -kerning first=1078 second=273 amount=-2 -kerning first=205 second=242 amount=-1 -kerning first=317 second=947 amount=-4 -kerning first=322 second=372 amount=-5 -kerning first=8361 second=8249 amount=-3 -kerning first=900 second=287 amount=-1 -kerning first=942 second=219 amount=-2 -kerning first=1186 second=1108 amount=-1 -kerning first=251 second=81 amount=-2 -kerning first=371 second=231 amount=-1 -kerning first=965 second=361 amount=-1 -kerning first=968 second=121 amount=-1 -kerning first=274 second=243 amount=-1 -kerning first=8211 second=196 amount=-2 -kerning first=1041 second=1028 amount=-2 -kerning first=1083 second=220 amount=-2 -kerning first=904 second=232 amount=-1 -kerning first=162 second=962 amount=-1 -kerning first=47 second=283 amount=-1 -kerning first=302 second=333 amount=-1 -kerning first=70 second=217 amount=-2 -kerning first=1084 second=375 amount=-1 -kerning first=327 second=949 amount=-1 -kerning first=93 second=119 amount=-4 -kerning first=356 second=194 amount=-6 -kerning first=951 second=84 amount=-5 -kerning first=113 second=286 amount=-2 -kerning first=1220 second=234 amount=-1 -kerning first=376 second=334 amount=-3 -kerning first=973 second=246 amount=-1 -kerning first=169 second=218 amount=-2 -kerning first=8220 second=291 amount=-1 -kerning first=51 second=230 amount=-1 -kerning first=191 second=360 amount=-2 -kerning first=306 second=273 amount=-1 -kerning first=303 second=964 amount=-3 -kerning first=311 second=45 amount=-3 -kerning first=71 second=372 amount=-1 -kerning first=1081 second=8249 amount=-3 -kerning first=214 second=287 amount=-1 -kerning first=916 second=97 amount=-1 -kerning first=237 second=219 amount=-2 -kerning first=354 second=1108 amount=-3 -kerning first=357 second=347 amount=-1 -kerning first=952 second=259 amount=-1 -kerning first=955 second=34 amount=-3 -kerning first=117 second=231 amount=-1 -kerning first=260 second=121 amount=-1 -kerning first=1028 second=196 amount=-1 -kerning first=170 second=373 amount=-4 -kerning first=280 second=1028 amount=-2 -kerning first=49 second=1263 amount=-1 -kerning first=313 second=220 amount=-1 -kerning first=339 second=122 amount=-1 -kerning first=912 second=966 amount=-1 -kerning first=235 second=1203 amount=-2 -kerning first=238 second=374 amount=-5 -kerning first=361 second=289 amount=-1 -kerning first=1299 second=99 amount=-1 -kerning first=1240 second=221 amount=-3 -kerning first=1036 second=111 amount=-2 -kerning first=178 second=83 amount=-1 -kerning first=289 second=233 amount=-1 -kerning first=56 second=333 amount=-1 -kerning first=314 second=375 amount=-1 -kerning first=76 second=949 amount=-1 -kerning first=365 second=234 amount=-1 -kerning first=958 second=364 amount=-2 -kerning first=1263 second=968 amount=-1 -kerning first=37 second=346 amount=-1 -kerning first=1037 second=291 amount=-1 -kerning first=1034 second=1035 amount=-5 -kerning first=8230 second=1098 amount=-3 -kerning first=60 second=273 amount=-1 -kerning first=63 second=45 amount=-2 -kerning first=57 second=964 amount=-3 -kerning first=323 second=85 amount=-2 -kerning first=8365 second=263 amount=-1 -kerning first=1103 second=365 amount=-1 -kerning first=223 second=335 amount=-1 -kerning first=100 second=1108 amount=-1 -kerning first=103 second=347 amount=-1 -kerning first=249 second=34 amount=-3 -kerning first=955 second=8216 amount=-3 -kerning first=123 second=965 amount=-1 -kerning first=38 second=1028 amount=-2 -kerning first=41 second=288 amount=-2 -kerning first=296 second=336 amount=-2 -kerning first=64 second=220 amount=-2 -kerning first=8260 second=970 amount=-1 -kerning first=1080 second=171 amount=-3 -kerning first=204 second=350 amount=-1 -kerning first=8372 second=213 amount=-2 -kerning first=87 second=122 amount=-1 -kerning first=1101 second=8217 amount=-1 -kerning first=230 second=47 amount=-1 -kerning first=350 second=197 amount=-1 -kerning first=944 second=87 amount=-5 -kerning first=107 second=289 amount=-2 -kerning first=373 second=99 amount=-1 -kerning first=964 second=940 amount=-1 -kerning first=967 second=249 amount=-1 -kerning first=163 second=221 amount=-5 -kerning first=276 second=111 amount=-1 -kerning first=273 second=351 amount=-1 -kerning first=185 second=363 amount=-1 -kerning first=182 second=1177 amount=-1 -kerning first=65 second=375 amount=-1 -kerning first=903 second=338 amount=-2 -kerning first=906 second=100 amount=-1 -kerning first=82 second=8211 amount=-1 -kerning first=85 second=1051 amount=-1 -kerning first=1118 second=250 amount=-1 -kerning first=354 second=112 amount=-2 -kerning first=1210 second=187 amount=-1 -kerning first=1203 second=1241 amount=-1 -kerning first=251 second=364 amount=-2 -kerning first=371 second=968 amount=-1 -kerning first=374 second=277 amount=-4 -kerning first=971 second=199 amount=-2 -kerning first=164 second=376 amount=-5 -kerning first=274 second=1035 amount=-5 -kerning first=1051 second=339 amount=-1 -kerning first=183 second=8212 amount=-2 -kerning first=186 second=1059 amount=-2 -kerning first=1063 second=101 amount=-1 -kerning first=63 second=8249 amount=-3 -kerning first=72 second=85 amount=-2 -kerning first=1087 second=263 amount=-1 -kerning first=330 second=365 amount=-1 -kerning first=8377 second=1066 amount=-5 -kerning first=8370 second=8221 amount=-3 -kerning first=950 second=212 amount=-2 -kerning first=249 second=8216 amount=-3 -kerning first=258 second=74 amount=-1 -kerning first=162 second=8250 amount=-1 -kerning first=50 second=336 amount=-2 -kerning first=1064 second=279 amount=-1 -kerning first=193 second=248 amount=-1 -kerning first=310 second=171 amount=-3 -kerning first=1096 second=213 amount=-2 -kerning first=327 second=8217 amount=-3 -kerning first=915 second=225 amount=-1 -kerning first=1171 second=355 amount=-1 -kerning first=1176 second=115 amount=-1 -kerning first=233 second=1076 amount=-1 -kerning first=239 second=87 amount=-5 -kerning first=951 second=367 amount=-1 -kerning first=948 second=1185 amount=-3 -kerning first=113 second=1096 amount=2 -kerning first=119 second=99 amount=-1 -kerning first=256 second=940 amount=-1 -kerning first=376 second=1220 amount=-3 -kerning first=379 second=379 amount=1 -kerning first=973 second=1038 amount=-2 -kerning first=34 second=111 amount=-1 -kerning first=172 second=261 amount=-1 -kerning first=169 second=953 amount=-1 -kerning first=77 second=210 amount=-2 -kerning first=338 second=250 amount=-1 -kerning first=240 second=262 amount=-2 -kerning first=363 second=187 amount=-1 -kerning first=949 second=8220 amount=-1 -kerning first=117 second=968 amount=-1 -kerning first=120 second=277 amount=-2 -kerning first=1298 second=227 amount=-1 -kerning first=35 second=291 amount=-1 -kerning first=177 second=211 amount=-2 -kerning first=283 second=1098 amount=-1 -kerning first=291 second=101 amount=-1 -kerning first=8225 second=973 amount=-1 -kerning first=1069 second=381 amount=-1 -kerning first=198 second=353 amount=-1 -kerning first=201 second=113 amount=-1 -kerning first=316 second=263 amount=-1 -kerning first=8363 second=216 amount=-2 -kerning first=78 second=365 amount=-1 -kerning first=1095 second=8221 amount=-3 -kerning first=1185 second=240 amount=-2 -kerning first=956 second=943 amount=-1 -kerning first=124 second=224 amount=-1 -kerning first=266 second=354 amount=-1 -kerning first=175 second=1184 amount=-5 -kerning first=178 second=366 amount=-2 -kerning first=294 second=279 amount=-1 -kerning first=289 second=970 amount=-1 -kerning first=62 second=171 amount=-3 -kerning first=322 second=213 amount=-2 -kerning first=8361 second=1195 amount=-1 -kerning first=8364 second=371 amount=-1 -kerning first=900 second=103 amount=-1 -kerning first=76 second=8217 amount=-3 -kerning first=242 second=1185 amount=-1 -kerning first=1037 second=1101 amount=-1 -kerning first=298 second=226 amount=-1 -kerning first=66 second=88 amount=-2 -kerning first=323 second=368 amount=-2 -kerning first=8365 second=1069 amount=-1 -kerning first=8377 second=81 amount=-2 -kerning first=86 second=250 amount=-2 -kerning first=901 second=281 amount=-1 -kerning first=352 second=65 amount=-1 -kerning first=243 second=8220 amount=-1 -kerning first=372 second=227 amount=-2 -kerning first=126 second=1079 amount=-1 -kerning first=165 second=89 amount=-5 -kerning first=41 second=1098 amount=-3 -kerning first=47 second=101 amount=-2 -kerning first=1084 second=216 amount=-2 -kerning first=321 second=8221 amount=-3 -kerning first=905 second=228 amount=-1 -kerning first=1168 second=118 amount=-4 -kerning first=350 second=916 amount=-1 -kerning first=944 second=370 amount=-2 -kerning first=113 second=102 amount=1 -kerning first=1207 second=283 amount=-1 -kerning first=250 second=943 amount=-1 -kerning first=253 second=252 amount=-1 -kerning first=973 second=67 amount=-2 -kerning first=166 second=266 amount=-2 -kerning first=169 second=39 amount=-3 -kerning first=48 second=279 amount=-1 -kerning first=1081 second=1195 amount=-1 -kerning first=1085 second=371 amount=-1 -kerning first=214 second=103 amount=-1 -kerning first=903 second=1257 amount=-1 -kerning first=94 second=115 amount=-1 -kerning first=91 second=355 amount=-1 -kerning first=1223 second=230 amount=-1 -kerning first=170 second=214 amount=-2 -kerning first=8221 second=287 amount=-1 -kerning first=52 second=226 amount=-1 -kerning first=1051 second=1262 amount=-2 -kerning first=1063 second=1240 amount=-2 -kerning first=192 second=356 amount=-5 -kerning first=195 second=116 amount=-1 -kerning first=72 second=368 amount=-2 -kerning first=1087 second=1069 amount=-1 -kerning first=215 second=281 amount=-1 -kerning first=1175 second=243 amount=-1 -kerning first=118 second=227 amount=-1 -kerning first=1219 second=1263 amount=-1 -kerning first=258 second=357 amount=-1 -kerning first=381 second=269 amount=-1 -kerning first=8226 second=232 amount=-1 -kerning first=1067 second=332 amount=-2 -kerning first=314 second=216 amount=-2 -kerning first=70 second=8221 amount=-3 -kerning first=73 second=1066 amount=-5 -kerning first=915 second=962 amount=-1 -kerning first=236 second=1194 amount=-2 -kerning first=239 second=370 amount=-2 -kerning first=1263 second=333 amount=-1 -kerning first=179 second=79 amount=-2 -kerning first=1071 second=271 amount=-1 -kerning first=197 second=920 amount=-2 -kerning first=1075 second=44 amount=-3 -kerning first=315 second=371 amount=-1 -kerning first=311 second=1195 amount=-2 -kerning first=8365 second=84 amount=-5 -kerning first=80 second=253 amount=-1 -kerning first=934 second=218 amount=-2 -kerning first=1184 second=346 amount=-1 -kerning first=960 second=360 amount=-2 -kerning first=1298 second=964 amount=-3 -kerning first=35 second=1101 amount=-1 -kerning first=177 second=945 amount=-1 -kerning first=291 second=1240 amount=-2 -kerning first=8260 second=335 amount=-1 -kerning first=61 second=268 amount=-2 -kerning first=316 second=1069 amount=-1 -kerning first=8366 second=259 amount=-1 -kerning first=8372 second=34 amount=-3 -kerning first=1101 second=1175 amount=-2 -kerning first=221 second=1084 amount=-3 -kerning first=345 second=243 amount=-1 -kerning first=936 second=373 amount=-4 -kerning first=160 second=269 amount=-1 -kerning first=1046 second=232 amount=-2 -kerning first=297 second=332 amount=-2 -kerning first=65 second=216 amount=-2 -kerning first=1074 second=1203 amount=-1 -kerning first=88 second=118 amount=-3 -kerning first=1118 second=71 amount=-2 -kerning first=108 second=283 amount=-1 -kerning first=1203 second=233 amount=-1 -kerning first=371 second=333 amount=-1 -kerning first=968 second=245 amount=-1 -kerning first=164 second=217 amount=-2 -kerning first=189 second=119 amount=-4 -kerning first=186 second=359 amount=-1 -kerning first=298 second=963 amount=-1 -kerning first=301 second=271 amount=-1 -kerning first=63 second=1195 amount=-1 -kerning first=1087 second=84 amount=-5 -kerning first=206 second=1026 amount=-5 -kerning first=209 second=286 amount=-2 -kerning first=8377 second=364 amount=-2 -kerning first=904 second=334 amount=-2 -kerning first=901 second=1090 amount=-3 -kerning first=1119 second=246 amount=-1 -kerning first=252 second=360 amount=-2 -kerning first=375 second=273 amount=-1 -kerning first=162 second=947 amount=-4 -kerning first=165 second=372 amount=-5 -kerning first=278 second=287 amount=-1 -kerning first=44 second=1262 amount=-1 -kerning first=47 second=1240 amount=-2 -kerning first=1064 second=97 amount=-1 -kerning first=305 second=219 amount=-2 -kerning first=67 second=1069 amount=1 -kerning first=73 second=81 amount=-2 -kerning first=1096 second=34 amount=-3 -kerning first=8372 second=8216 amount=-3 -kerning first=905 second=965 amount=-1 -kerning first=93 second=243 amount=-1 -kerning first=233 second=373 amount=-1 -kerning first=356 second=288 amount=-1 -kerning first=1207 second=1095 amount=-2 -kerning first=1220 second=336 amount=-2 -kerning first=973 second=350 amount=-1 -kerning first=282 second=232 amount=-1 -kerning first=51 second=332 amount=-2 -kerning first=1062 second=966 amount=-1 -kerning first=1065 second=275 amount=-1 -kerning first=194 second=244 amount=-1 -kerning first=306 second=374 amount=-5 -kerning first=74 second=256 amount=-1 -kerning first=211 second=1298 amount=-1 -kerning first=338 second=71 amount=-2 -kerning first=916 second=221 amount=-5 -kerning first=240 second=83 amount=-1 -kerning first=952 second=363 amount=-1 -kerning first=117 second=333 amount=-1 -kerning first=260 second=245 amount=-1 -kerning first=170 second=949 amount=-1 -kerning first=174 second=257 amount=-1 -kerning first=8225 second=338 amount=-2 -kerning first=8240 second=100 amount=-1 -kerning first=52 second=963 amount=-1 -kerning first=55 second=271 amount=-1 -kerning first=316 second=84 amount=-5 -kerning first=215 second=1090 amount=-3 -kerning first=920 second=376 amount=-3 -kerning first=950 second=8212 amount=-2 -kerning first=121 second=273 amount=-1 -kerning first=124 second=45 amount=-2 -kerning first=36 second=287 amount=-1 -kerning first=1036 second=235 amount=-2 -kerning first=289 second=335 amount=-1 -kerning first=294 second=97 amount=-1 -kerning first=59 second=219 amount=-2 -kerning first=1070 second=377 amount=-1 -kerning first=196 second=1108 amount=-1 -kerning first=322 second=34 amount=-3 -kerning first=317 second=259 amount=-1 -kerning first=8364 second=212 amount=-2 -kerning first=1096 second=8216 amount=-3 -kerning first=915 second=8250 amount=-1 -kerning first=365 second=336 amount=-2 -kerning first=962 second=248 amount=-1 -kerning first=125 second=220 amount=-2 -kerning first=40 second=232 amount=-1 -kerning first=176 second=1176 amount=-1 -kerning first=179 second=362 amount=-2 -kerning first=60 second=374 amount=-5 -kerning first=203 second=289 amount=-1 -kerning first=8365 second=367 amount=-1 -kerning first=901 second=99 amount=-1 -kerning first=86 second=71 amount=-2 -kerning first=1103 second=940 amount=-1 -kerning first=934 second=953 amount=-1 -kerning first=126 second=375 amount=-1 -kerning first=271 second=290 amount=-2 -kerning first=1044 second=338 amount=-1 -kerning first=177 second=8211 amount=-2 -kerning first=1048 second=100 amount=-1 -kerning first=1080 second=262 amount=-2 -kerning first=207 second=234 amount=-1 -kerning first=67 second=84 amount=-1 -kerning first=8363 second=8220 amount=-3 -kerning first=902 second=277 amount=-1 -kerning first=87 second=246 amount=-3 -kerning first=1117 second=199 amount=-2 -kerning first=944 second=211 amount=-2 -kerning first=1202 second=339 amount=-1 -kerning first=247 second=1059 amount=-2 -kerning first=1207 second=101 amount=-1 -kerning first=967 second=353 amount=-1 -kerning first=124 second=8249 amount=-3 -kerning first=166 second=85 amount=-2 -kerning first=276 second=235 amount=-1 -kerning first=48 second=97 amount=-1 -kerning first=1046 second=969 amount=-2 -kerning first=1085 second=212 amount=-2 -kerning first=322 second=8216 amount=-3 -kerning first=906 second=224 amount=-1 -kerning first=1118 second=354 amount=-5 -kerning first=942 second=1184 amount=-5 -kerning first=1210 second=279 amount=-1 -kerning first=254 second=248 amount=-1 -kerning first=374 second=378 amount=-2 -kerning first=8221 second=103 amount=-1 -kerning first=49 second=275 amount=-1 -kerning first=1063 second=225 amount=-1 -kerning first=1087 second=367 amount=-1 -kerning first=1083 second=1185 amount=-3 -kerning first=215 second=99 amount=-1 -kerning first=330 second=940 amount=-1 -kerning first=908 second=379 amount=-1 -kerning first=92 second=351 amount=-1 -kerning first=95 second=111 amount=-1 -kerning first=1119 second=1038 amount=-2 -kerning first=89 second=1114 amount=-3 -kerning first=112 second=967 amount=-2 -kerning first=1224 second=226 amount=-1 -kerning first=193 second=352 amount=-1 -kerning first=310 second=262 amount=-3 -kerning first=73 second=364 amount=-2 -kerning first=1084 second=8220 amount=-3 -kerning first=910 second=1079 amount=-4 -kerning first=923 second=89 amount=-5 -kerning first=93 second=1035 amount=-5 -kerning first=96 second=291 amount=-1 -kerning first=239 second=211 amount=-2 -kerning first=1256 second=381 amount=-1 -kerning first=382 second=263 amount=-1 -kerning first=34 second=235 amount=-1 -kerning first=172 second=365 amount=-1 -kerning first=315 second=212 amount=-1 -kerning first=80 second=74 amount=-3 -kerning first=338 second=354 amount=-5 -kerning first=926 second=266 amount=-2 -kerning first=934 second=39 amount=-3 -kerning first=237 second=1184 amount=-5 -kerning first=240 second=366 amount=-2 -kerning first=363 second=279 amount=-1 -kerning first=123 second=171 amount=-3 -kerning first=170 second=8217 amount=-3 -kerning first=291 second=225 amount=-1 -kerning first=8225 second=1257 amount=-1 -kerning first=61 second=87 amount=-5 -kerning first=1073 second=267 amount=-1 -kerning first=316 second=367 amount=-1 -kerning first=78 second=940 amount=-1 -kerning first=936 second=214 amount=-2 -kerning first=367 second=226 amount=-1 -kerning first=964 second=116 amount=-1 -kerning first=42 second=100 amount=-1 -kerning first=1039 second=281 amount=-1 -kerning first=182 second=250 amount=-1 -kerning first=178 second=941 amount=-1 -kerning first=1036 second=972 amount=-2 -kerning first=62 second=262 amount=-2 -kerning first=202 second=1241 amount=-1 -kerning first=205 second=187 amount=-1 -kerning first=314 second=8220 amount=-3 -kerning first=900 second=227 amount=-1 -kerning first=105 second=339 amount=-1 -kerning first=108 second=101 amount=-1 -kerning first=161 second=263 amount=-1 -kerning first=323 second=943 amount=-1 -kerning first=86 second=354 amount=-5 -kerning first=89 second=114 amount=-3 -kerning first=1119 second=67 amount=-2 -kerning first=232 second=39 amount=-1 -kerning first=946 second=79 amount=-2 -kerning first=372 second=328 amount=-2 -kerning first=165 second=213 amount=-2 -kerning first=278 second=103 amount=-1 -kerning first=8218 second=56 amount=-1 -kerning first=47 second=225 amount=-2 -kerning first=1044 second=1257 amount=-1 -kerning first=190 second=115 amount=-1 -kerning first=302 second=267 amount=-1 -kerning first=64 second=1185 amount=-3 -kerning first=8378 second=360 amount=-2 -kerning first=1168 second=242 amount=-1 -kerning first=944 second=945 amount=-1 -kerning first=113 second=226 amount=-1 +kerning first=1194 second=196 amount=-1 +kerning first=1194 second=197 amount=-1 +kerning first=1194 second=198 amount=-1 +kerning first=1194 second=221 amount=-2 +kerning first=1194 second=256 amount=-1 +kerning first=1194 second=258 amount=-1 +kerning first=1194 second=260 amount=-1 +kerning first=1194 second=354 amount=-1 +kerning first=1194 second=356 amount=-1 +kerning first=1194 second=372 amount=-1 +kerning first=1194 second=374 amount=-2 +kerning first=1194 second=376 amount=-2 +kerning first=1194 second=377 amount=-1 +kerning first=1194 second=379 amount=-1 +kerning first=1194 second=381 amount=-1 +kerning first=1194 second=913 amount=-1 +kerning first=1194 second=916 amount=-1 +kerning first=1194 second=918 amount=-1 +kerning first=1194 second=923 amount=-1 +kerning first=1194 second=932 amount=-1 +kerning first=1194 second=933 amount=-2 +kerning first=1194 second=935 amount=-2 +kerning first=1194 second=939 amount=-2 +kerning first=1194 second=1026 amount=-1 +kerning first=1194 second=1033 amount=-1 +kerning first=1194 second=1035 amount=-1 +kerning first=1194 second=1040 amount=-1 +kerning first=1194 second=1044 amount=-1 +kerning first=1194 second=1046 amount=-2 +kerning first=1194 second=1051 amount=-1 +kerning first=1194 second=1058 amount=-1 +kerning first=1194 second=1061 amount=-2 +kerning first=1194 second=1066 amount=-1 +kerning first=1194 second=1069 amount=1 +kerning first=1194 second=1112 amount=1 +kerning first=1194 second=1174 amount=-2 +kerning first=1194 second=1176 amount=1 +kerning first=1194 second=1184 amount=-1 +kerning first=1194 second=1198 amount=-2 +kerning first=1194 second=1202 amount=-2 +kerning first=1194 second=1298 amount=-1 +kerning first=1194 second=8211 amount=-1 +kerning first=1194 second=8212 amount=-1 +kerning first=1194 second=8218 amount=-1 +kerning first=1194 second=8222 amount=-1 +kerning first=1194 second=8230 amount=-1 +kerning first=1194 second=8249 amount=-1 +kerning first=1195 second=34 amount=-1 +kerning first=1195 second=39 amount=-1 +kerning first=1195 second=63 amount=-1 +kerning first=1195 second=118 amount=-1 +kerning first=1195 second=119 amount=-1 +kerning first=1195 second=120 amount=-1 +kerning first=1195 second=373 amount=-1 +kerning first=1195 second=947 amount=-1 +kerning first=1195 second=955 amount=-1 +kerning first=1195 second=957 amount=-1 +kerning first=1195 second=1078 amount=-1 +kerning first=1195 second=1093 amount=-1 +kerning first=1195 second=1175 amount=-1 +kerning first=1195 second=1199 amount=-1 +kerning first=1195 second=1203 amount=-1 +kerning first=1195 second=8216 amount=-1 +kerning first=1195 second=8217 amount=-1 +kerning first=1195 second=8220 amount=-1 +kerning first=1195 second=8221 amount=-1 +kerning first=1198 second=38 amount=-2 +kerning first=1198 second=44 amount=-4 +kerning first=1198 second=45 amount=-4 +kerning first=1198 second=46 amount=-4 +kerning first=1198 second=47 amount=-4 +kerning first=1198 second=110 amount=-3 +kerning first=1198 second=63 amount=-1 +kerning first=1198 second=65 amount=-5 +kerning first=1198 second=67 amount=-3 +kerning first=1198 second=114 amount=-3 +kerning first=1198 second=71 amount=-3 +kerning first=1198 second=74 amount=-6 +kerning first=1198 second=79 amount=-3 +kerning first=1198 second=81 amount=-3 +kerning first=1198 second=83 amount=-1 +kerning first=1198 second=97 amount=-4 +kerning first=1198 second=99 amount=-4 +kerning first=1198 second=100 amount=-4 +kerning first=1198 second=101 amount=-4 +kerning first=1198 second=103 amount=-4 +kerning first=1198 second=109 amount=-3 +kerning first=1198 second=111 amount=-4 +kerning first=1198 second=112 amount=-3 +kerning first=1198 second=113 amount=-4 +kerning first=1198 second=115 amount=-3 +kerning first=1198 second=117 amount=-2 +kerning first=1198 second=118 amount=-2 +kerning first=1198 second=119 amount=-2 +kerning first=1198 second=120 amount=-2 +kerning first=1198 second=121 amount=-2 +kerning first=1198 second=122 amount=-2 +kerning first=1198 second=171 amount=-3 +kerning first=1198 second=173 amount=-4 +kerning first=1198 second=187 amount=-2 +kerning first=1198 second=193 amount=-5 +kerning first=1198 second=194 amount=-5 +kerning first=1198 second=196 amount=-5 +kerning first=1198 second=197 amount=-5 +kerning first=1198 second=198 amount=-5 +kerning first=1198 second=199 amount=-3 +kerning first=1198 second=210 amount=-3 +kerning first=1198 second=211 amount=-3 +kerning first=1198 second=212 amount=-3 +kerning first=1198 second=213 amount=-3 +kerning first=1198 second=214 amount=-3 +kerning first=1198 second=216 amount=-3 +kerning first=1198 second=224 amount=-4 +kerning first=1198 second=225 amount=-4 +kerning first=1198 second=226 amount=-4 +kerning first=1198 second=227 amount=-4 +kerning first=1198 second=228 amount=-4 +kerning first=1198 second=229 amount=-4 +kerning first=1198 second=230 amount=-4 +kerning first=1198 second=231 amount=-4 +kerning first=1198 second=232 amount=-4 +kerning first=1198 second=233 amount=-4 +kerning first=1198 second=234 amount=-4 +kerning first=1198 second=235 amount=-4 +kerning first=1198 second=240 amount=-4 +kerning first=1198 second=241 amount=-3 +kerning first=1198 second=242 amount=-4 +kerning first=1198 second=243 amount=-4 +kerning first=1198 second=244 amount=-4 +kerning first=1198 second=245 amount=-4 +kerning first=1198 second=246 amount=-4 +kerning first=1198 second=248 amount=-4 +kerning first=1198 second=249 amount=-2 +kerning first=1198 second=250 amount=-2 +kerning first=1198 second=251 amount=-2 +kerning first=1198 second=252 amount=-2 +kerning first=1198 second=253 amount=-2 +kerning first=1198 second=256 amount=-5 +kerning first=1198 second=257 amount=-4 +kerning first=1198 second=258 amount=-5 +kerning first=1198 second=259 amount=-4 +kerning first=1198 second=260 amount=-5 +kerning first=1198 second=261 amount=-4 +kerning first=1198 second=262 amount=-3 +kerning first=1198 second=263 amount=-4 +kerning first=1198 second=266 amount=-3 +kerning first=1198 second=267 amount=-4 +kerning first=1198 second=268 amount=-3 +kerning first=1198 second=269 amount=-4 +kerning first=1198 second=271 amount=-4 +kerning first=1198 second=273 amount=-4 +kerning first=1198 second=275 amount=-4 +kerning first=1198 second=277 amount=-4 +kerning first=1198 second=279 amount=-4 +kerning first=1198 second=281 amount=-4 +kerning first=1198 second=283 amount=-4 +kerning first=1198 second=286 amount=-3 +kerning first=1198 second=287 amount=-4 +kerning first=1198 second=288 amount=-3 +kerning first=1198 second=289 amount=-4 +kerning first=1198 second=290 amount=-3 +kerning first=1198 second=291 amount=-4 +kerning first=1198 second=324 amount=-3 +kerning first=1198 second=326 amount=-3 +kerning first=1198 second=328 amount=-3 +kerning first=1198 second=331 amount=-3 +kerning first=1198 second=332 amount=-3 +kerning first=1198 second=333 amount=-4 +kerning first=1198 second=334 amount=-3 +kerning first=1198 second=335 amount=-4 +kerning first=1198 second=336 amount=-3 +kerning first=1198 second=337 amount=-4 +kerning first=1198 second=338 amount=-3 +kerning first=1198 second=339 amount=-4 +kerning first=1198 second=341 amount=-3 +kerning first=1198 second=343 amount=-3 +kerning first=1198 second=345 amount=-3 +kerning first=1198 second=346 amount=-1 +kerning first=1198 second=347 amount=-3 +kerning first=1198 second=350 amount=-1 +kerning first=1198 second=351 amount=-3 +kerning first=1198 second=352 amount=-1 +kerning first=1198 second=353 amount=-3 +kerning first=1198 second=361 amount=-2 +kerning first=1198 second=363 amount=-2 +kerning first=1198 second=365 amount=-2 +kerning first=1198 second=367 amount=-2 +kerning first=1198 second=369 amount=-2 +kerning first=1198 second=371 amount=-2 +kerning first=1198 second=373 amount=-2 +kerning first=1198 second=375 amount=-2 +kerning first=1198 second=378 amount=-2 +kerning first=1198 second=380 amount=-2 +kerning first=1198 second=382 amount=-2 +kerning first=1198 second=913 amount=-5 +kerning first=1198 second=916 amount=-5 +kerning first=1198 second=920 amount=-3 +kerning first=1198 second=923 amount=-5 +kerning first=1198 second=927 amount=-3 +kerning first=1198 second=937 amount=-2 +kerning first=1198 second=940 amount=-4 +kerning first=1198 second=941 amount=-4 +kerning first=1198 second=942 amount=-3 +kerning first=1198 second=943 amount=-2 +kerning first=1198 second=945 amount=-4 +kerning first=1198 second=947 amount=-2 +kerning first=1198 second=949 amount=-4 +kerning first=1198 second=950 amount=-2 +kerning first=1198 second=951 amount=-3 +kerning first=1198 second=952 amount=-2 +kerning first=1198 second=953 amount=-2 +kerning first=1198 second=954 amount=-3 +kerning first=1198 second=955 amount=-2 +kerning first=1198 second=957 amount=-2 +kerning first=1198 second=959 amount=-4 +kerning first=1198 second=961 amount=-5 +kerning first=1198 second=962 amount=-4 +kerning first=1198 second=963 amount=-4 +kerning first=1198 second=964 amount=-2 +kerning first=1198 second=965 amount=-2 +kerning first=1198 second=966 amount=-4 +kerning first=1198 second=967 amount=-2 +kerning first=1198 second=968 amount=-2 +kerning first=1198 second=969 amount=-4 +kerning first=1198 second=970 amount=-2 +kerning first=1198 second=972 amount=-4 +kerning first=1198 second=973 amount=-2 +kerning first=1198 second=974 amount=-4 +kerning first=1198 second=1028 amount=-3 +kerning first=1198 second=1029 amount=-1 +kerning first=1198 second=1032 amount=-6 +kerning first=1198 second=1033 amount=-5 +kerning first=1198 second=1040 amount=-5 +kerning first=1198 second=1044 amount=-5 +kerning first=1198 second=1051 amount=-5 +kerning first=1198 second=1054 amount=-3 +kerning first=1198 second=1057 amount=-3 +kerning first=1198 second=1069 amount=-2 +kerning first=1198 second=1071 amount=-2 +kerning first=1198 second=1072 amount=-4 +kerning first=1198 second=1074 amount=-3 +kerning first=1198 second=1075 amount=-3 +kerning first=1198 second=1077 amount=-4 +kerning first=1198 second=1078 amount=-2 +kerning first=1198 second=1079 amount=-4 +kerning first=1198 second=1080 amount=-3 +kerning first=1198 second=1081 amount=-3 +kerning first=1198 second=1082 amount=-3 +kerning first=1198 second=1084 amount=-3 +kerning first=1198 second=1085 amount=-3 +kerning first=1198 second=1086 amount=-4 +kerning first=1198 second=1087 amount=-3 +kerning first=1198 second=1088 amount=-3 +kerning first=1198 second=1089 amount=-4 +kerning first=1198 second=1090 amount=-2 +kerning first=1198 second=1091 amount=-2 +kerning first=1198 second=1092 amount=-4 +kerning first=1198 second=1093 amount=-2 +kerning first=1198 second=1094 amount=-3 +kerning first=1198 second=1096 amount=-3 +kerning first=1198 second=1097 amount=-3 +kerning first=1198 second=1098 amount=-2 +kerning first=1198 second=1099 amount=-3 +kerning first=1198 second=1100 amount=-3 +kerning first=1198 second=1101 amount=-4 +kerning first=1198 second=1102 amount=-3 +kerning first=1198 second=1104 amount=-4 +kerning first=1198 second=1105 amount=-4 +kerning first=1198 second=1107 amount=-3 +kerning first=1198 second=1108 amount=-4 +kerning first=1198 second=1109 amount=-3 +kerning first=1198 second=1114 amount=-3 +kerning first=1198 second=1116 amount=-3 +kerning first=1198 second=1117 amount=-3 +kerning first=1198 second=1118 amount=-2 +kerning first=1198 second=1119 amount=-3 +kerning first=1198 second=1169 amount=-3 +kerning first=1198 second=1175 amount=-2 +kerning first=1198 second=1176 amount=-2 +kerning first=1198 second=1177 amount=-4 +kerning first=1198 second=1179 amount=-3 +kerning first=1198 second=1185 amount=-2 +kerning first=1198 second=1187 amount=-3 +kerning first=1198 second=1194 amount=-3 +kerning first=1198 second=1195 amount=-4 +kerning first=1198 second=1199 amount=-2 +kerning first=1198 second=1203 amount=-2 +kerning first=1198 second=1220 amount=-3 +kerning first=1198 second=1224 amount=-3 +kerning first=1198 second=1240 amount=-3 +kerning first=1198 second=1241 amount=-4 +kerning first=1198 second=1256 amount=-3 +kerning first=1198 second=1257 amount=-4 +kerning first=1198 second=1263 amount=-2 +kerning first=1198 second=1298 amount=-5 +kerning first=1198 second=8211 amount=-4 +kerning first=1198 second=8212 amount=-4 +kerning first=1198 second=8218 amount=-4 +kerning first=1198 second=8222 amount=-4 +kerning first=1198 second=8230 amount=-4 +kerning first=1198 second=8249 amount=-3 +kerning first=1198 second=8250 amount=-2 +kerning first=1199 second=44 amount=-2 +kerning first=1199 second=45 amount=-1 +kerning first=1199 second=46 amount=-2 +kerning first=1199 second=47 amount=-3 +kerning first=1199 second=97 amount=-1 +kerning first=1199 second=99 amount=-1 +kerning first=1199 second=100 amount=-1 +kerning first=1199 second=101 amount=-1 +kerning first=1199 second=103 amount=-1 +kerning first=1199 second=111 amount=-1 +kerning first=1199 second=113 amount=-1 +kerning first=1199 second=115 amount=-1 +kerning first=1199 second=171 amount=-1 +kerning first=1199 second=173 amount=-1 +kerning first=1199 second=224 amount=-1 +kerning first=1199 second=225 amount=-1 +kerning first=1199 second=226 amount=-1 +kerning first=1199 second=227 amount=-1 +kerning first=1199 second=228 amount=-1 +kerning first=1199 second=229 amount=-1 +kerning first=1199 second=230 amount=-1 +kerning first=1199 second=231 amount=-1 +kerning first=1199 second=232 amount=-1 +kerning first=1199 second=233 amount=-1 +kerning first=1199 second=234 amount=-1 +kerning first=1199 second=235 amount=-1 +kerning first=1199 second=240 amount=-1 +kerning first=1199 second=242 amount=-1 +kerning first=1199 second=243 amount=-1 +kerning first=1199 second=244 amount=-1 +kerning first=1199 second=245 amount=-1 +kerning first=1199 second=246 amount=-1 +kerning first=1199 second=248 amount=-1 +kerning first=1199 second=257 amount=-1 +kerning first=1199 second=259 amount=-1 +kerning first=1199 second=261 amount=-1 +kerning first=1199 second=263 amount=-1 +kerning first=1199 second=267 amount=-1 +kerning first=1199 second=269 amount=-1 +kerning first=1199 second=271 amount=-1 +kerning first=1199 second=273 amount=-1 +kerning first=1199 second=275 amount=-1 +kerning first=1199 second=277 amount=-1 +kerning first=1199 second=279 amount=-1 +kerning first=1199 second=281 amount=-1 +kerning first=1199 second=283 amount=-1 +kerning first=1199 second=287 amount=-1 +kerning first=1199 second=289 amount=-1 +kerning first=1199 second=291 amount=-1 +kerning first=1199 second=333 amount=-1 +kerning first=1199 second=335 amount=-1 +kerning first=1199 second=337 amount=-1 +kerning first=1199 second=339 amount=-1 +kerning first=1199 second=347 amount=-1 +kerning first=1199 second=351 amount=-1 +kerning first=1199 second=353 amount=-1 +kerning first=1199 second=940 amount=-1 +kerning first=1199 second=941 amount=-1 +kerning first=1199 second=945 amount=-1 +kerning first=1199 second=949 amount=-1 +kerning first=1199 second=950 amount=-2 +kerning first=1199 second=955 amount=-4 +kerning first=1199 second=959 amount=-1 +kerning first=1199 second=961 amount=-2 +kerning first=1199 second=962 amount=-1 +kerning first=1199 second=963 amount=-1 +kerning first=1199 second=966 amount=-1 +kerning first=1199 second=969 amount=-1 +kerning first=1199 second=972 amount=-1 +kerning first=1199 second=974 amount=-1 +kerning first=1199 second=1072 amount=-1 +kerning first=1199 second=1077 amount=-1 +kerning first=1199 second=1086 amount=-1 +kerning first=1199 second=1089 amount=-1 +kerning first=1199 second=1092 amount=-1 +kerning first=1199 second=1104 amount=-1 +kerning first=1199 second=1105 amount=-1 +kerning first=1199 second=1108 amount=-1 +kerning first=1199 second=1109 amount=-1 +kerning first=1199 second=1195 amount=-1 +kerning first=1199 second=1241 amount=-1 +kerning first=1199 second=1257 amount=-1 +kerning first=1199 second=8211 amount=-1 +kerning first=1199 second=8212 amount=-1 +kerning first=1199 second=8218 amount=-2 +kerning first=1199 second=8222 amount=-2 +kerning first=1199 second=8230 amount=-2 +kerning first=1199 second=8249 amount=-1 +kerning first=1202 second=34 amount=-2 +kerning first=1202 second=39 amount=-2 +kerning first=1202 second=45 amount=-2 +kerning first=1202 second=63 amount=-2 +kerning first=1202 second=67 amount=-1 +kerning first=1202 second=71 amount=-1 +kerning first=1202 second=79 amount=-1 +kerning first=1202 second=81 amount=-1 +kerning first=1202 second=84 amount=-2 +kerning first=1202 second=85 amount=-1 +kerning first=1202 second=89 amount=-2 +kerning first=1202 second=99 amount=-1 +kerning first=1202 second=100 amount=-1 +kerning first=1202 second=101 amount=-1 +kerning first=1202 second=106 amount=7 +kerning first=1202 second=111 amount=-1 +kerning first=1202 second=113 amount=-1 +kerning first=1202 second=118 amount=-2 +kerning first=1202 second=119 amount=-2 +kerning first=1202 second=171 amount=-1 +kerning first=1202 second=173 amount=-2 +kerning first=1202 second=199 amount=-1 +kerning first=1202 second=210 amount=-1 +kerning first=1202 second=211 amount=-1 +kerning first=1202 second=212 amount=-1 +kerning first=1202 second=213 amount=-1 +kerning first=1202 second=214 amount=-1 +kerning first=1202 second=216 amount=-1 +kerning first=1202 second=217 amount=-1 +kerning first=1202 second=218 amount=-1 +kerning first=1202 second=219 amount=-1 +kerning first=1202 second=220 amount=-1 +kerning first=1202 second=221 amount=-2 +kerning first=1202 second=231 amount=-1 +kerning first=1202 second=232 amount=-1 +kerning first=1202 second=233 amount=-1 +kerning first=1202 second=234 amount=-1 +kerning first=1202 second=235 amount=-1 +kerning first=1202 second=240 amount=-1 +kerning first=1202 second=242 amount=-1 +kerning first=1202 second=243 amount=-1 +kerning first=1202 second=244 amount=-1 +kerning first=1202 second=245 amount=-1 +kerning first=1202 second=246 amount=-1 +kerning first=1202 second=248 amount=-1 +kerning first=1202 second=262 amount=-1 +kerning first=1202 second=263 amount=-1 +kerning first=1202 second=266 amount=-1 +kerning first=1202 second=267 amount=-1 +kerning first=1202 second=268 amount=-1 +kerning first=1202 second=269 amount=-1 +kerning first=1202 second=271 amount=-1 +kerning first=1202 second=273 amount=-1 +kerning first=1202 second=275 amount=-1 +kerning first=1202 second=277 amount=-1 +kerning first=1202 second=279 amount=-1 +kerning first=1202 second=281 amount=-1 +kerning first=1202 second=283 amount=-1 +kerning first=1202 second=286 amount=-1 +kerning first=1202 second=288 amount=-1 +kerning first=1202 second=290 amount=-1 +kerning first=1202 second=332 amount=-1 +kerning first=1202 second=333 amount=-1 +kerning first=1202 second=334 amount=-1 +kerning first=1202 second=335 amount=-1 +kerning first=1202 second=336 amount=-1 +kerning first=1202 second=337 amount=-1 +kerning first=1202 second=338 amount=-1 +kerning first=1202 second=339 amount=-1 +kerning first=1202 second=354 amount=-2 +kerning first=1202 second=356 amount=-2 +kerning first=1202 second=360 amount=-1 +kerning first=1202 second=362 amount=-1 +kerning first=1202 second=364 amount=-1 +kerning first=1202 second=366 amount=-1 +kerning first=1202 second=368 amount=-1 +kerning first=1202 second=370 amount=-1 +kerning first=1202 second=373 amount=-2 +kerning first=1202 second=374 amount=-2 +kerning first=1202 second=376 amount=-2 +kerning first=1202 second=920 amount=-1 +kerning first=1202 second=927 amount=-1 +kerning first=1202 second=932 amount=-2 +kerning first=1202 second=933 amount=-2 +kerning first=1202 second=934 amount=-2 +kerning first=1202 second=939 amount=-2 +kerning first=1202 second=940 amount=-1 +kerning first=1202 second=941 amount=-1 +kerning first=1202 second=945 amount=-1 +kerning first=1202 second=947 amount=-2 +kerning first=1202 second=949 amount=-1 +kerning first=1202 second=957 amount=-2 +kerning first=1202 second=959 amount=-1 +kerning first=1202 second=962 amount=-1 +kerning first=1202 second=963 amount=-1 +kerning first=1202 second=964 amount=-2 +kerning first=1202 second=966 amount=-1 +kerning first=1202 second=972 amount=-1 +kerning first=1202 second=1026 amount=-2 +kerning first=1202 second=1028 amount=-1 +kerning first=1202 second=1035 amount=-2 +kerning first=1202 second=1038 amount=-1 +kerning first=1202 second=1054 amount=-1 +kerning first=1202 second=1057 amount=-1 +kerning first=1202 second=1058 amount=-2 +kerning first=1202 second=1059 amount=-1 +kerning first=1202 second=1060 amount=-2 +kerning first=1202 second=1063 amount=-2 +kerning first=1202 second=1066 amount=-2 +kerning first=1202 second=1077 amount=-1 +kerning first=1202 second=1086 amount=-1 +kerning first=1202 second=1089 amount=-1 +kerning first=1202 second=1090 amount=-2 +kerning first=1202 second=1092 amount=-1 +kerning first=1202 second=1098 amount=-2 +kerning first=1202 second=1104 amount=-1 +kerning first=1202 second=1105 amount=-1 +kerning first=1202 second=1108 amount=-1 +kerning first=1202 second=1112 amount=7 +kerning first=1202 second=1184 amount=-2 +kerning first=1202 second=1185 amount=-2 +kerning first=1202 second=1194 amount=-1 +kerning first=1202 second=1195 amount=-1 +kerning first=1202 second=1198 amount=-2 +kerning first=1202 second=1199 amount=-2 +kerning first=1202 second=1240 amount=-1 +kerning first=1202 second=1241 amount=-1 +kerning first=1202 second=1256 amount=-1 +kerning first=1202 second=1257 amount=-1 kerning first=1202 second=1262 amount=-1 -kerning first=253 second=356 amount=-5 -kerning first=256 second=116 amount=-1 -kerning first=376 second=268 amount=-3 -kerning first=166 second=368 amount=-2 -kerning first=276 second=972 amount=-1 -kerning first=8220 second=231 amount=-1 -kerning first=65 second=8220 amount=-3 -kerning first=214 second=227 amount=-1 -kerning first=354 second=973 amount=-2 -kerning first=1223 second=332 amount=-2 -kerning first=167 second=1066 amount=-5 -kerning first=164 second=8221 amount=-3 -kerning first=1028 second=106 amount=1 -kerning first=8217 second=1298 amount=-3 -kerning first=1063 second=962 amount=-1 -kerning first=195 second=240 amount=-1 -kerning first=304 second=1194 amount=-2 -kerning first=72 second=943 amount=-1 -kerning first=75 second=252 amount=-1 -kerning first=232 second=8222 amount=-1 -kerning first=361 second=229 amount=-1 -kerning first=956 second=119 amount=-4 -kerning first=1224 second=963 amount=-1 -kerning first=258 second=920 amount=-2 -kerning first=378 second=1195 amount=-1 -kerning first=36 second=103 amount=-1 -kerning first=1026 second=1026 amount=-5 -kerning first=175 second=253 amount=-1 -kerning first=8222 second=1090 amount=-3 -kerning first=8226 second=334 amount=-2 -kerning first=56 second=267 amount=-1 -kerning first=1099 second=360 amount=-2 -kerning first=1102 second=120 amount=-2 -kerning first=915 second=947 amount=-4 -kerning first=923 second=372 amount=-5 -kerning first=96 second=1101 amount=-1 -kerning first=239 second=945 amount=-1 -kerning first=34 second=972 amount=-1 -kerning first=37 second=281 amount=-1 -kerning first=1037 second=231 amount=-1 -kerning first=8230 second=965 amount=-1 -kerning first=1068 second=1202 amount=-2 -kerning first=1071 second=373 amount=-4 -kerning first=80 second=357 amount=-1 -kerning first=223 second=269 amount=-1 -kerning first=100 second=973 amount=-1 -kerning first=1187 second=232 amount=-1 -kerning first=963 second=244 amount=-1 -kerning first=126 second=216 amount=-2 -kerning first=271 second=106 amount=1 -kerning first=41 second=228 amount=-1 -kerning first=184 second=118 amount=-4 -kerning first=291 second=962 amount=-1 -kerning first=58 second=1194 amount=-2 -kerning first=61 second=370 amount=-2 -kerning first=1069 second=8230 amount=-1 -kerning first=1080 second=83 amount=-1 -kerning first=204 second=283 amount=-1 -kerning first=8363 second=1177 amount=-1 -kerning first=8366 second=363 amount=-1 -kerning first=81 second=1044 amount=-1 -kerning first=87 second=67 amount=-2 -kerning first=936 second=949 amount=-1 -kerning first=107 second=229 amount=-1 -kerning first=247 second=359 amount=-1 -kerning first=250 second=119 amount=-4 -kerning first=367 second=963 amount=-1 -kerning first=373 second=44 amount=-2 -kerning first=124 second=1195 amount=-1 -kerning first=160 second=371 amount=-1 -kerning first=273 second=286 amount=-2 -kerning first=39 second=1257 amount=-1 -kerning first=1039 second=1090 amount=-3 -kerning first=1046 second=334 amount=-3 -kerning first=300 second=218 amount=-2 -kerning first=325 second=360 amount=-2 -kerning first=8364 second=8212 amount=-2 -kerning first=8369 second=1059 amount=-2 -kerning first=903 second=273 amount=-1 -kerning first=906 second=45 amount=-2 -kerning first=900 second=964 amount=-3 -kerning first=85 second=923 amount=-2 -kerning first=88 second=242 amount=-2 -kerning first=225 second=947 amount=-1 -kerning first=105 second=1262 amount=-2 -kerning first=108 second=1240 amount=-2 +kerning first=1202 second=8211 amount=-2 +kerning first=1202 second=8212 amount=-2 +kerning first=1202 second=8216 amount=-2 +kerning first=1202 second=8217 amount=-2 +kerning first=1202 second=8220 amount=-2 +kerning first=1202 second=8221 amount=-2 +kerning first=1202 second=8249 amount=-1 +kerning first=1203 second=99 amount=-1 +kerning first=1203 second=100 amount=-1 +kerning first=1203 second=101 amount=-1 +kerning first=1203 second=111 amount=-1 +kerning first=1203 second=113 amount=-1 +kerning first=1203 second=231 amount=-1 +kerning first=1203 second=232 amount=-1 +kerning first=1203 second=233 amount=-1 +kerning first=1203 second=234 amount=-1 +kerning first=1203 second=235 amount=-1 +kerning first=1203 second=240 amount=-1 +kerning first=1203 second=242 amount=-1 +kerning first=1203 second=243 amount=-1 +kerning first=1203 second=244 amount=-1 +kerning first=1203 second=245 amount=-1 +kerning first=1203 second=246 amount=-1 +kerning first=1203 second=248 amount=-1 +kerning first=1203 second=263 amount=-1 +kerning first=1203 second=267 amount=-1 +kerning first=1203 second=269 amount=-1 +kerning first=1203 second=271 amount=-1 +kerning first=1203 second=273 amount=-1 +kerning first=1203 second=275 amount=-1 +kerning first=1203 second=277 amount=-1 +kerning first=1203 second=279 amount=-1 +kerning first=1203 second=281 amount=-1 +kerning first=1203 second=283 amount=-1 +kerning first=1203 second=333 amount=-1 kerning first=1203 second=335 amount=-1 -kerning first=1210 second=97 amount=-1 -kerning first=965 second=1108 amount=-1 -kerning first=968 second=347 amount=-1 -kerning first=161 second=1069 amount=-1 -kerning first=167 second=81 amount=-2 -kerning first=189 second=243 amount=-1 -kerning first=301 second=373 amount=-4 -kerning first=206 second=1263 amount=-1 -kerning first=1119 second=350 amount=-1 -kerning first=946 second=362 amount=-2 -kerning first=1219 second=275 amount=-1 -kerning first=255 second=244 amount=-1 -kerning first=1206 second=966 amount=-1 -kerning first=375 second=374 amount=-5 -kerning first=372 second=1203 amount=-1 -kerning first=47 second=962 amount=-1 -kerning first=1064 second=221 amount=-5 -kerning first=310 second=83 amount=-1 -kerning first=1084 second=1177 amount=-1 -kerning first=910 second=375 amount=-2 -kerning first=1171 second=290 amount=-2 -kerning first=236 second=257 amount=-1 -kerning first=944 second=8211 amount=-2 -kerning first=113 second=963 amount=-1 -kerning first=119 second=44 amount=-2 -kerning first=34 second=56 amount=-1 -kerning first=1027 second=234 amount=-1 -kerning first=279 second=1090 amount=-1 -kerning first=282 second=334 amount=-2 -kerning first=8224 second=277 amount=-1 -kerning first=8230 second=49 amount=-4 -kerning first=54 second=218 amount=-2 -kerning first=1065 second=376 amount=-2 -kerning first=194 second=346 amount=-1 -kerning first=74 second=360 amount=-2 -kerning first=1085 second=8212 amount=-2 -kerning first=214 second=964 amount=-3 -kerning first=906 second=8249 amount=-3 -kerning first=926 second=85 amount=-2 -kerning first=363 second=97 amount=-1 -kerning first=260 second=347 amount=-1 -kerning first=35 second=231 amount=-1 -kerning first=174 second=361 amount=-1 -kerning first=177 second=121 amount=-1 -kerning first=8240 second=224 amount=-1 -kerning first=55 second=373 amount=-4 -kerning first=1063 second=8250 amount=-1 -kerning first=195 second=1028 amount=-2 -kerning first=198 second=288 amount=-2 -kerning first=238 second=1176 amount=-1 -kerning first=244 second=122 amount=-1 -kerning first=361 second=966 amount=-1 -kerning first=121 second=374 amount=-5 -kerning first=1039 second=99 amount=-1 -kerning first=1036 second=337 amount=-2 -kerning first=182 second=71 amount=-2 -kerning first=294 second=221 amount=-5 -kerning first=53 second=8230 amount=-1 -kerning first=62 second=83 amount=-1 -kerning first=1074 second=261 amount=-1 -kerning first=202 second=233 amount=-1 -kerning first=314 second=1177 amount=-1 -kerning first=317 second=363 amount=-1 -kerning first=1186 second=338 amount=-1 -kerning first=239 second=8211 amount=-2 -kerning first=962 second=352 amount=-1 -kerning first=161 second=84 amount=-5 -kerning first=40 second=334 amount=-2 -kerning first=37 second=1090 amount=-3 -kerning first=1037 second=968 amount=-1 -kerning first=183 second=246 amount=-1 -kerning first=1041 second=277 amount=-1 -kerning first=318 second=1059 amount=-2 -kerning first=315 second=8212 amount=-3 -kerning first=8370 second=251 amount=-1 -kerning first=1116 second=113 amount=-2 -kerning first=162 second=259 amount=-1 -kerning first=165 second=34 amount=-3 -kerning first=8212 second=102 amount=-2 -kerning first=41 second=965 amount=-1 -kerning first=47 second=46 amount=-4 -kerning first=1048 second=224 amount=-1 -kerning first=187 second=196 amount=-3 -kerning first=291 second=8250 amount=-1 -kerning first=1080 second=366 amount=-2 -kerning first=207 second=336 amount=-2 -kerning first=327 second=248 amount=-1 -kerning first=905 second=171 amount=-3 -kerning first=87 second=350 amount=-1 -kerning first=936 second=8217 amount=-3 -kerning first=107 second=966 amount=-2 -kerning first=276 second=337 amount=-1 -kerning first=8220 second=52 amount=-1 -kerning first=48 second=221 amount=-5 -kerning first=191 second=111 amount=-1 -kerning first=188 second=351 amount=-1 -kerning first=303 second=261 amount=-1 -kerning first=300 second=953 amount=-1 -kerning first=65 second=1177 amount=-1 -kerning first=208 second=967 amount=-1 -kerning first=332 second=198 amount=-2 -kerning first=91 second=290 amount=-2 -kerning first=354 second=338 amount=-1 -kerning first=357 second=100 amount=-1 -kerning first=254 second=352 amount=-1 -kerning first=374 second=954 amount=-3 -kerning first=377 second=262 amount=-1 -kerning first=971 second=1241 amount=-1 -kerning first=167 second=364 amount=-2 -kerning first=280 second=277 amount=-1 -kerning first=8221 second=227 amount=-1 -kerning first=49 second=376 amount=-5 -kerning first=1051 second=1079 amount=-1 -kerning first=189 second=1035 amount=-5 -kerning first=192 second=291 amount=-1 -kerning first=1066 second=89 amount=-5 -kerning first=69 second=1059 amount=-2 -kerning first=1095 second=251 amount=-1 -kerning first=908 second=955 amount=-2 -kerning first=912 second=263 amount=-1 -kerning first=95 second=235 amount=-1 -kerning first=381 second=212 amount=-1 -kerning first=165 second=8216 amount=-3 -kerning first=8218 second=1256 amount=-1 -kerning first=47 second=8250 amount=-1 -kerning first=1067 second=266 amount=-2 -kerning first=305 second=1184 amount=-5 -kerning first=8361 second=79 amount=-2 -kerning first=76 second=248 amount=-1 -kerning first=923 second=213 amount=-2 -kerning first=233 second=8217 amount=-1 -kerning first=958 second=115 amount=-1 -kerning first=1263 second=267 amount=-1 -kerning first=34 second=337 amount=-1 -kerning first=37 second=99 amount=-1 -kerning first=176 second=249 amount=-1 -kerning first=172 second=940 amount=-1 -kerning first=57 second=261 amount=-1 -kerning first=54 second=953 amount=-1 -kerning first=1071 second=214 amount=-2 -kerning first=80 second=198 amount=-4 -kerning first=1103 second=116 amount=-1 -kerning first=926 second=368 amount=-2 -kerning first=100 second=338 amount=-2 -kerning first=103 second=100 amount=-1 -kerning first=1184 second=281 amount=-2 -kerning first=240 second=941 amount=-1 -kerning first=123 second=262 amount=-2 -kerning first=35 second=968 amount=-1 -kerning first=38 second=277 amount=-1 -kerning first=180 second=199 amount=-2 -kerning first=296 second=89 amount=-5 -kerning first=8260 second=269 amount=-1 -kerning first=61 second=211 amount=-2 -kerning first=1073 second=369 amount=-1 -kerning first=201 second=339 amount=-1 -kerning first=204 second=101 amount=-1 -kerning first=198 second=1098 amount=-3 -kerning first=321 second=251 amount=-1 -kerning first=84 second=113 amount=-3 -kerning first=221 second=955 amount=-2 -kerning first=928 second=1066 amount=-5 -kerning first=964 second=240 amount=-1 -kerning first=160 second=212 amount=-2 -kerning first=1299 second=1194 amount=-2 -kerning first=42 second=224 amount=-1 -kerning first=1036 second=1256 amount=-3 -kerning first=182 second=354 amount=-5 -kerning first=178 second=1118 amount=-1 -kerning first=297 second=266 amount=-2 -kerning first=300 second=39 amount=-3 -kerning first=59 second=1184 amount=-5 -kerning first=62 second=366 amount=-2 -kerning first=1070 second=8222 amount=-1 -kerning first=1081 second=79 amount=-2 -kerning first=205 second=279 amount=-1 -kerning first=202 second=970 amount=-1 -kerning first=8369 second=359 amount=-1 -kerning first=88 second=63 amount=-2 -kerning first=942 second=253 amount=-1 -kerning first=108 second=225 amount=-1 -kerning first=1186 second=1257 amount=-1 -kerning first=251 second=115 amount=-1 -kerning first=371 second=267 amount=-1 -kerning first=161 second=367 amount=-1 -kerning first=125 second=1185 amount=-3 -kerning first=183 second=1038 amount=-2 -kerning first=301 second=214 amount=-2 -kerning first=209 second=226 amount=-1 -kerning first=330 second=116 amount=-1 -kerning first=904 second=268 amount=-2 -kerning first=126 second=8220 amount=-3 -kerning first=278 second=227 amount=-1 -kerning first=47 second=326 amount=-1 -kerning first=50 second=89 amount=-5 -kerning first=302 second=369 amount=-1 -kerning first=70 second=251 amount=-1 -kerning first=210 second=381 amount=-1 -kerning first=910 second=216 amount=-3 -kerning first=1171 second=106 amount=1 -kerning first=227 second=8221 amount=-1 -kerning first=356 second=228 amount=-2 -kerning first=951 second=118 amount=-4 +kerning first=1203 second=337 amount=-1 +kerning first=1203 second=339 amount=-1 +kerning first=1203 second=940 amount=-1 +kerning first=1203 second=941 amount=-1 +kerning first=1203 second=945 amount=-1 +kerning first=1203 second=949 amount=-1 +kerning first=1203 second=959 amount=-1 +kerning first=1203 second=962 amount=-1 +kerning first=1203 second=963 amount=-1 +kerning first=1203 second=964 amount=-2 +kerning first=1203 second=966 amount=-1 +kerning first=1203 second=972 amount=-1 +kerning first=1203 second=1073 amount=-1 +kerning first=1203 second=1077 amount=-1 +kerning first=1203 second=1086 amount=-1 +kerning first=1203 second=1089 amount=-1 +kerning first=1203 second=1090 amount=-2 +kerning first=1203 second=1092 amount=-1 +kerning first=1203 second=1095 amount=-2 +kerning first=1203 second=1098 amount=-2 +kerning first=1203 second=1104 amount=-1 +kerning first=1203 second=1105 amount=-1 +kerning first=1203 second=1108 amount=-1 +kerning first=1203 second=1185 amount=-2 +kerning first=1203 second=1195 amount=-1 +kerning first=1203 second=1241 amount=-1 +kerning first=1203 second=1257 amount=-1 +kerning first=1206 second=34 amount=-2 +kerning first=1206 second=39 amount=-2 +kerning first=1206 second=45 amount=-2 +kerning first=1206 second=63 amount=-2 +kerning first=1206 second=67 amount=-1 +kerning first=1206 second=71 amount=-1 +kerning first=1206 second=79 amount=-1 +kerning first=1206 second=81 amount=-1 +kerning first=1206 second=84 amount=-2 +kerning first=1206 second=85 amount=-1 +kerning first=1206 second=89 amount=-2 +kerning first=1206 second=99 amount=-1 +kerning first=1206 second=100 amount=-1 +kerning first=1206 second=101 amount=-1 +kerning first=1206 second=106 amount=7 +kerning first=1206 second=111 amount=-1 +kerning first=1206 second=113 amount=-1 +kerning first=1206 second=118 amount=-2 +kerning first=1206 second=119 amount=-2 +kerning first=1206 second=171 amount=-1 +kerning first=1206 second=173 amount=-2 +kerning first=1206 second=199 amount=-1 +kerning first=1206 second=210 amount=-1 +kerning first=1206 second=211 amount=-1 +kerning first=1206 second=212 amount=-1 +kerning first=1206 second=213 amount=-1 +kerning first=1206 second=214 amount=-1 +kerning first=1206 second=216 amount=-1 +kerning first=1206 second=217 amount=-1 +kerning first=1206 second=218 amount=-1 +kerning first=1206 second=219 amount=-1 +kerning first=1206 second=220 amount=-1 +kerning first=1206 second=221 amount=-2 +kerning first=1206 second=231 amount=-1 +kerning first=1206 second=232 amount=-1 +kerning first=1206 second=233 amount=-1 +kerning first=1206 second=234 amount=-1 +kerning first=1206 second=235 amount=-1 +kerning first=1206 second=240 amount=-1 +kerning first=1206 second=242 amount=-1 +kerning first=1206 second=243 amount=-1 +kerning first=1206 second=244 amount=-1 +kerning first=1206 second=245 amount=-1 +kerning first=1206 second=246 amount=-1 +kerning first=1206 second=248 amount=-1 +kerning first=1206 second=262 amount=-1 +kerning first=1206 second=263 amount=-1 +kerning first=1206 second=266 amount=-1 +kerning first=1206 second=267 amount=-1 +kerning first=1206 second=268 amount=-1 +kerning first=1206 second=269 amount=-1 +kerning first=1206 second=271 amount=-1 +kerning first=1206 second=273 amount=-1 +kerning first=1206 second=275 amount=-1 +kerning first=1206 second=277 amount=-1 +kerning first=1206 second=279 amount=-1 +kerning first=1206 second=281 amount=-1 +kerning first=1206 second=283 amount=-1 +kerning first=1206 second=286 amount=-1 +kerning first=1206 second=288 amount=-1 +kerning first=1206 second=290 amount=-1 +kerning first=1206 second=332 amount=-1 +kerning first=1206 second=333 amount=-1 +kerning first=1206 second=334 amount=-1 +kerning first=1206 second=335 amount=-1 +kerning first=1206 second=336 amount=-1 +kerning first=1206 second=337 amount=-1 +kerning first=1206 second=338 amount=-1 +kerning first=1206 second=339 amount=-1 +kerning first=1206 second=354 amount=-2 +kerning first=1206 second=356 amount=-2 +kerning first=1206 second=360 amount=-1 +kerning first=1206 second=362 amount=-1 +kerning first=1206 second=364 amount=-1 +kerning first=1206 second=366 amount=-1 +kerning first=1206 second=368 amount=-1 +kerning first=1206 second=370 amount=-1 +kerning first=1206 second=373 amount=-2 +kerning first=1206 second=374 amount=-2 +kerning first=1206 second=376 amount=-2 +kerning first=1206 second=920 amount=-1 +kerning first=1206 second=927 amount=-1 +kerning first=1206 second=932 amount=-2 +kerning first=1206 second=933 amount=-2 +kerning first=1206 second=934 amount=-2 +kerning first=1206 second=939 amount=-2 +kerning first=1206 second=940 amount=-1 +kerning first=1206 second=941 amount=-1 +kerning first=1206 second=945 amount=-1 +kerning first=1206 second=947 amount=-2 +kerning first=1206 second=949 amount=-1 +kerning first=1206 second=957 amount=-2 +kerning first=1206 second=959 amount=-1 +kerning first=1206 second=962 amount=-1 +kerning first=1206 second=963 amount=-1 +kerning first=1206 second=964 amount=-2 +kerning first=1206 second=966 amount=-1 +kerning first=1206 second=972 amount=-1 +kerning first=1206 second=1026 amount=-2 +kerning first=1206 second=1028 amount=-1 +kerning first=1206 second=1035 amount=-2 +kerning first=1206 second=1038 amount=-1 +kerning first=1206 second=1054 amount=-1 +kerning first=1206 second=1057 amount=-1 +kerning first=1206 second=1058 amount=-2 +kerning first=1206 second=1059 amount=-1 +kerning first=1206 second=1060 amount=-2 +kerning first=1206 second=1063 amount=-2 +kerning first=1206 second=1066 amount=-2 +kerning first=1206 second=1077 amount=-1 +kerning first=1206 second=1086 amount=-1 +kerning first=1206 second=1089 amount=-1 +kerning first=1206 second=1090 amount=-2 +kerning first=1206 second=1092 amount=-1 +kerning first=1206 second=1098 amount=-2 +kerning first=1206 second=1104 amount=-1 +kerning first=1206 second=1105 amount=-1 +kerning first=1206 second=1108 amount=-1 +kerning first=1206 second=1112 amount=7 +kerning first=1206 second=1184 amount=-2 +kerning first=1206 second=1185 amount=-2 +kerning first=1206 second=1194 amount=-1 +kerning first=1206 second=1195 amount=-1 +kerning first=1206 second=1198 amount=-2 +kerning first=1206 second=1199 amount=-2 +kerning first=1206 second=1240 amount=-1 +kerning first=1206 second=1241 amount=-1 +kerning first=1206 second=1256 amount=-1 +kerning first=1206 second=1257 amount=-1 +kerning first=1206 second=1262 amount=-1 +kerning first=1206 second=8211 amount=-2 +kerning first=1206 second=8212 amount=-2 +kerning first=1206 second=8216 amount=-2 +kerning first=1206 second=8217 amount=-2 +kerning first=1206 second=8220 amount=-2 +kerning first=1206 second=8221 amount=-2 +kerning first=1206 second=8249 amount=-1 +kerning first=1207 second=99 amount=-1 +kerning first=1207 second=100 amount=-1 +kerning first=1207 second=101 amount=-1 +kerning first=1207 second=111 amount=-1 +kerning first=1207 second=113 amount=-1 +kerning first=1207 second=231 amount=-1 +kerning first=1207 second=232 amount=-1 +kerning first=1207 second=233 amount=-1 +kerning first=1207 second=234 amount=-1 +kerning first=1207 second=235 amount=-1 +kerning first=1207 second=240 amount=-1 +kerning first=1207 second=242 amount=-1 +kerning first=1207 second=243 amount=-1 +kerning first=1207 second=244 amount=-1 +kerning first=1207 second=245 amount=-1 +kerning first=1207 second=246 amount=-1 +kerning first=1207 second=248 amount=-1 +kerning first=1207 second=263 amount=-1 +kerning first=1207 second=267 amount=-1 +kerning first=1207 second=269 amount=-1 +kerning first=1207 second=271 amount=-1 +kerning first=1207 second=273 amount=-1 +kerning first=1207 second=275 amount=-1 +kerning first=1207 second=277 amount=-1 +kerning first=1207 second=279 amount=-1 +kerning first=1207 second=281 amount=-1 +kerning first=1207 second=283 amount=-1 +kerning first=1207 second=333 amount=-1 +kerning first=1207 second=335 amount=-1 +kerning first=1207 second=337 amount=-1 +kerning first=1207 second=339 amount=-1 +kerning first=1207 second=940 amount=-1 +kerning first=1207 second=941 amount=-1 +kerning first=1207 second=945 amount=-1 +kerning first=1207 second=949 amount=-1 +kerning first=1207 second=959 amount=-1 kerning first=1207 second=962 amount=-1 -kerning first=256 second=240 amount=-1 -kerning first=973 second=283 amount=-1 -kerning first=166 second=943 amount=-1 -kerning first=169 second=252 amount=-1 -kerning first=276 second=1256 amount=-2 -kerning first=279 second=382 amount=-1 -kerning first=8220 second=333 amount=-1 -kerning first=51 second=266 amount=-2 -kerning first=54 second=39 amount=-3 -kerning first=1065 second=217 amount=-1 -kerning first=906 second=1195 amount=-1 -kerning first=1174 second=286 amount=-1 -kerning first=237 second=253 amount=-1 -kerning first=354 second=1257 amount=-3 -kerning first=117 second=267 amount=-1 -kerning first=8240 second=45 amount=-2 -kerning first=8225 second=273 amount=-1 -kerning first=55 second=214 amount=-2 -kerning first=1063 second=947 amount=-4 -kerning first=192 second=1101 amount=-1 -kerning first=78 second=116 amount=-1 -kerning first=912 second=1069 amount=-1 -kerning first=928 second=81 amount=-2 -kerning first=95 second=972 amount=-1 -kerning first=1178 second=231 amount=-1 -kerning first=956 second=243 amount=-1 -kerning first=1026 second=1263 amount=-1 -kerning first=36 second=227 amount=-1 -kerning first=175 second=357 amount=-1 -kerning first=178 second=117 amount=-1 -kerning first=289 second=269 amount=-1 -kerning first=56 second=369 amount=-1 -kerning first=196 second=973 amount=-1 -kerning first=8361 second=362 amount=-2 -kerning first=102 second=228 amount=-1 -kerning first=245 second=118 amount=-1 -kerning first=1256 second=8230 amount=-1 -kerning first=1037 second=333 amount=-1 -kerning first=183 second=67 amount=-2 -kerning first=54 second=8222 amount=-1 -kerning first=63 second=79 amount=-2 -kerning first=1071 second=949 amount=-1 -kerning first=203 second=229 amount=-1 -kerning first=318 second=359 amount=-1 -kerning first=323 second=119 amount=-4 -kerning first=80 second=920 amount=-2 -kerning first=223 second=371 amount=-1 -kerning first=100 second=1257 amount=-1 -kerning first=1184 second=1090 amount=-4 -kerning first=369 second=218 amount=-2 -kerning first=963 second=346 amount=-1 -kerning first=271 second=230 amount=-1 +kerning first=1207 second=963 amount=-1 +kerning first=1207 second=964 amount=-2 +kerning first=1207 second=966 amount=-1 +kerning first=1207 second=972 amount=-1 +kerning first=1207 second=1073 amount=-1 +kerning first=1207 second=1077 amount=-1 +kerning first=1207 second=1086 amount=-1 +kerning first=1207 second=1089 amount=-1 +kerning first=1207 second=1090 amount=-2 +kerning first=1207 second=1092 amount=-1 +kerning first=1207 second=1095 amount=-2 +kerning first=1207 second=1098 amount=-2 +kerning first=1207 second=1104 amount=-1 +kerning first=1207 second=1105 amount=-1 +kerning first=1207 second=1108 amount=-1 +kerning first=1207 second=1185 amount=-2 +kerning first=1207 second=1195 amount=-1 +kerning first=1207 second=1241 amount=-1 +kerning first=1207 second=1257 amount=-1 +kerning first=1211 second=34 amount=-1 +kerning first=1211 second=39 amount=-1 +kerning first=1211 second=63 amount=-2 +kerning first=1211 second=102 amount=-1 +kerning first=1211 second=106 amount=1 +kerning first=1211 second=118 amount=-1 +kerning first=1211 second=119 amount=-1 +kerning first=1211 second=373 amount=-1 +kerning first=1211 second=947 amount=-1 +kerning first=1211 second=957 amount=-1 +kerning first=1211 second=964 amount=-1 +kerning first=1211 second=1090 amount=-1 +kerning first=1211 second=1098 amount=-1 +kerning first=1211 second=1112 amount=1 +kerning first=1211 second=1185 amount=-1 +kerning first=1211 second=1199 amount=-1 +kerning first=1211 second=8216 amount=-1 +kerning first=1211 second=8217 amount=-1 +kerning first=1211 second=8220 amount=-1 +kerning first=1211 second=8221 amount=-1 +kerning first=1240 second=44 amount=-1 +kerning first=1240 second=46 amount=-1 +kerning first=1240 second=47 amount=-1 +kerning first=1240 second=65 amount=-2 +kerning first=1240 second=84 amount=-2 +kerning first=1240 second=86 amount=-2 +kerning first=1240 second=87 amount=-2 +kerning first=1240 second=88 amount=-3 +kerning first=1240 second=89 amount=-3 +kerning first=1240 second=90 amount=-1 +kerning first=1240 second=193 amount=-2 +kerning first=1240 second=194 amount=-2 +kerning first=1240 second=196 amount=-2 +kerning first=1240 second=197 amount=-2 +kerning first=1240 second=198 amount=-2 +kerning first=1240 second=221 amount=-3 +kerning first=1240 second=256 amount=-2 +kerning first=1240 second=258 amount=-2 +kerning first=1240 second=260 amount=-2 +kerning first=1240 second=354 amount=-2 +kerning first=1240 second=356 amount=-2 +kerning first=1240 second=372 amount=-2 +kerning first=1240 second=374 amount=-3 +kerning first=1240 second=376 amount=-3 +kerning first=1240 second=377 amount=-1 +kerning first=1240 second=379 amount=-1 +kerning first=1240 second=381 amount=-1 +kerning first=1240 second=913 amount=-2 +kerning first=1240 second=916 amount=-2 +kerning first=1240 second=918 amount=-1 +kerning first=1240 second=923 amount=-2 +kerning first=1240 second=932 amount=-2 +kerning first=1240 second=933 amount=-3 +kerning first=1240 second=935 amount=-3 +kerning first=1240 second=939 amount=-3 +kerning first=1240 second=955 amount=-2 +kerning first=1240 second=967 amount=-1 +kerning first=1240 second=1026 amount=-2 +kerning first=1240 second=1033 amount=-1 +kerning first=1240 second=1035 amount=-2 +kerning first=1240 second=1040 amount=-2 +kerning first=1240 second=1044 amount=-1 +kerning first=1240 second=1046 amount=-3 +kerning first=1240 second=1051 amount=-1 +kerning first=1240 second=1058 amount=-2 +kerning first=1240 second=1061 amount=-3 +kerning first=1240 second=1066 amount=-2 +kerning first=1240 second=1071 amount=-1 +kerning first=1240 second=1174 amount=-3 +kerning first=1240 second=1184 amount=-2 +kerning first=1240 second=1198 amount=-3 +kerning first=1240 second=1202 amount=-3 +kerning first=1240 second=1298 amount=-1 +kerning first=1240 second=8218 amount=-1 +kerning first=1240 second=8222 amount=-1 +kerning first=1240 second=8230 amount=-1 +kerning first=1241 second=34 amount=-1 +kerning first=1241 second=39 amount=-1 +kerning first=1241 second=44 amount=-1 +kerning first=1241 second=46 amount=-1 +kerning first=1241 second=47 amount=-1 +kerning first=1241 second=63 amount=-2 +kerning first=1241 second=102 amount=-1 +kerning first=1241 second=118 amount=-1 +kerning first=1241 second=119 amount=-1 kerning first=1241 second=120 amount=-2 -kerning first=1048 second=45 amount=-2 -kerning first=184 second=242 amount=-1 -kerning first=1044 second=273 amount=-1 -kerning first=291 second=947 amount=-4 -kerning first=296 second=372 amount=-5 -kerning first=8240 second=8249 amount=-3 -kerning first=61 second=945 amount=-1 -kerning first=204 second=1240 amount=-2 -kerning first=201 second=1262 amount=-2 -kerning first=902 second=219 amount=-2 -kerning first=944 second=121 amount=-1 -kerning first=250 second=243 amount=-1 -kerning first=964 second=1028 amount=-2 -kerning first=967 second=288 amount=-2 -kerning first=1049 second=220 amount=-2 -kerning first=1081 second=362 amount=-2 -kerning first=903 second=374 amount=-5 -kerning first=91 second=106 amount=7 -kerning first=1118 second=289 amount=-1 -kerning first=108 second=962 amount=-1 -kerning first=1210 second=221 amount=-5 -kerning first=368 second=8230 amount=-1 -kerning first=971 second=233 amount=-1 -kerning first=49 second=217 amount=-2 -kerning first=1051 second=375 amount=-1 -kerning first=301 second=949 amount=-1 -kerning first=304 second=257 amount=-1 -kerning first=72 second=119 amount=-4 -kerning first=69 second=359 amount=-1 -kerning first=209 second=963 amount=-1 -kerning first=912 second=84 amount=-5 -kerning first=92 second=286 amount=-2 -kerning first=1170 second=234 amount=-1 -kerning first=950 second=246 amount=-1 -kerning first=1219 second=376 amount=-5 -kerning first=255 second=346 amount=-1 -kerning first=168 second=360 amount=-2 -kerning first=171 second=120 amount=-1 -kerning first=278 second=964 amount=-3 -kerning first=47 second=947 amount=-4 -kerning first=50 second=372 amount=-5 -kerning first=1048 second=8249 amount=-3 -kerning first=1067 second=85 amount=-2 -kerning first=193 second=287 amount=-1 -kerning first=915 second=259 amount=-1 -kerning first=923 second=34 amount=-3 -kerning first=96 second=231 amount=-1 -kerning first=910 second=951 amount=-3 -kerning first=233 second=1175 amount=-2 -kerning first=236 second=361 amount=-1 -kerning first=239 second=121 amount=-1 -kerning first=356 second=965 amount=-2 -kerning first=362 second=46 amount=-1 -kerning first=256 second=1028 amount=-2 -kerning first=1027 second=336 amount=-2 -kerning first=287 second=220 amount=-2 -kerning first=1068 second=260 amount=-1 -kerning first=197 second=232 amount=-1 -kerning first=306 second=1176 amount=-1 -kerning first=77 second=244 amount=-1 -kerning first=338 second=289 amount=-1 -kerning first=1184 second=99 amount=-2 -kerning first=363 second=221 amount=-5 -kerning first=960 second=111 amount=-1 -kerning first=955 second=351 amount=-1 -kerning first=123 second=83 amount=-1 -kerning first=1298 second=261 amount=-1 -kerning first=114 second=8230 amount=-3 -kerning first=35 second=333 amount=-1 -kerning first=177 second=245 amount=-1 -kerning first=55 second=949 amount=-1 -kerning first=58 second=257 amount=-1 -kerning first=1073 second=210 amount=-2 -kerning first=8363 second=250 amount=-1 -kerning first=81 second=194 amount=-2 -kerning first=928 second=364 amount=-2 -kerning first=98 second=1090 amount=-1 -kerning first=1185 second=277 amount=-2 -kerning first=956 second=1035 amount=-5 -kerning first=381 second=8212 amount=-3 -kerning first=36 second=964 amount=-3 -kerning first=42 second=45 amount=-2 -kerning first=39 second=273 amount=-1 -kerning first=297 second=85 amount=-2 -kerning first=1074 second=365 amount=-1 -kerning first=202 second=335 amount=-1 -kerning first=205 second=97 amount=-1 -kerning first=228 second=34 amount=-1 -kerning first=923 second=8216 amount=-3 -kerning first=8211 second=51 amount=-2 -kerning first=43 second=220 amount=-2 -kerning first=183 second=350 amount=-1 -kerning first=63 second=362 amount=-2 -kerning first=1071 second=8217 amount=-3 -kerning first=60 second=1176 amount=-1 -kerning first=203 second=966 amount=-1 -kerning first=206 second=275 amount=-1 -kerning first=8370 second=355 amount=-1 -kerning first=8377 second=115 amount=-1 -kerning first=86 second=289 amount=-1 -kerning first=904 second=87 amount=-5 -kerning first=252 second=111 amount=-1 -kerning first=249 second=351 amount=-1 -kerning first=369 second=953 amount=-1 -kerning first=372 second=261 amount=-2 -kerning first=126 second=1177 amount=-1 -kerning first=162 second=363 amount=-1 -kerning first=44 second=375 amount=-1 -kerning first=302 second=210 amount=-2 -kerning first=61 second=8211 amount=-2 -kerning first=1084 second=250 amount=-1 -kerning first=1080 second=941 amount=-1 -kerning first=327 second=352 amount=-1 -kerning first=905 second=262 amount=-2 -kerning first=90 second=234 amount=-1 -kerning first=1117 second=1241 amount=-1 -kerning first=1168 second=187 amount=-1 -kerning first=948 second=199 amount=-2 -kerning first=1220 second=89 amount=-5 -kerning first=250 second=1035 amount=-5 -kerning first=253 second=291 amount=-1 -kerning first=376 second=211 amount=-3 -kerning first=967 second=1098 amount=-3 -kerning first=160 second=8212 amount=-2 -kerning first=163 second=1059 amount=-2 -kerning first=973 second=101 amount=-1 -kerning first=42 second=8249 amount=-3 -kerning first=51 second=85 amount=-2 -kerning first=1062 second=263 amount=-1 -kerning first=191 second=235 amount=-1 -kerning first=303 second=365 amount=-1 -kerning first=211 second=377 amount=-1 -kerning first=228 second=8216 amount=-1 -kerning first=357 second=224 amount=-1 -kerning first=108 second=8250 amount=-1 -kerning first=1223 second=266 amount=-2 +kerning first=1241 second=122 amount=-1 +kerning first=1241 second=373 amount=-1 +kerning first=1241 second=378 amount=-1 +kerning first=1241 second=380 amount=-1 +kerning first=1241 second=382 amount=-1 +kerning first=1241 second=947 amount=-1 +kerning first=1241 second=955 amount=-1 +kerning first=1241 second=957 amount=-1 +kerning first=1241 second=964 amount=-1 +kerning first=1241 second=967 amount=-2 +kerning first=1241 second=1076 amount=-1 +kerning first=1241 second=1078 amount=-2 +kerning first=1241 second=1083 amount=-1 +kerning first=1241 second=1090 amount=-1 +kerning first=1241 second=1093 amount=-2 +kerning first=1241 second=1098 amount=-1 +kerning first=1241 second=1113 amount=-1 +kerning first=1241 second=1175 amount=-2 +kerning first=1241 second=1185 amount=-1 +kerning first=1241 second=1199 amount=-1 +kerning first=1241 second=1203 amount=-2 +kerning first=1241 second=1299 amount=-1 +kerning first=1241 second=8216 amount=-1 +kerning first=1241 second=8217 amount=-1 +kerning first=1241 second=8218 amount=-1 +kerning first=1241 second=8220 amount=-1 +kerning first=1241 second=8221 amount=-1 +kerning first=1241 second=8222 amount=-1 +kerning first=1241 second=8230 amount=-1 +kerning first=1256 second=44 amount=-1 +kerning first=1256 second=46 amount=-1 +kerning first=1256 second=47 amount=-1 +kerning first=1256 second=65 amount=-2 +kerning first=1256 second=84 amount=-2 +kerning first=1256 second=86 amount=-2 +kerning first=1256 second=87 amount=-2 +kerning first=1256 second=88 amount=-3 +kerning first=1256 second=89 amount=-3 +kerning first=1256 second=90 amount=-1 +kerning first=1256 second=193 amount=-2 +kerning first=1256 second=194 amount=-2 +kerning first=1256 second=196 amount=-2 +kerning first=1256 second=197 amount=-2 +kerning first=1256 second=198 amount=-2 +kerning first=1256 second=221 amount=-3 +kerning first=1256 second=256 amount=-2 +kerning first=1256 second=258 amount=-2 +kerning first=1256 second=260 amount=-2 +kerning first=1256 second=354 amount=-2 +kerning first=1256 second=356 amount=-2 +kerning first=1256 second=372 amount=-2 +kerning first=1256 second=374 amount=-3 +kerning first=1256 second=376 amount=-3 +kerning first=1256 second=377 amount=-1 +kerning first=1256 second=379 amount=-1 +kerning first=1256 second=381 amount=-1 +kerning first=1256 second=913 amount=-2 +kerning first=1256 second=916 amount=-2 +kerning first=1256 second=918 amount=-1 +kerning first=1256 second=923 amount=-2 +kerning first=1256 second=932 amount=-2 +kerning first=1256 second=933 amount=-3 +kerning first=1256 second=935 amount=-3 +kerning first=1256 second=939 amount=-3 +kerning first=1256 second=955 amount=-2 +kerning first=1256 second=967 amount=-1 +kerning first=1256 second=1026 amount=-2 +kerning first=1256 second=1033 amount=-1 +kerning first=1256 second=1035 amount=-2 +kerning first=1256 second=1040 amount=-2 +kerning first=1256 second=1044 amount=-1 +kerning first=1256 second=1046 amount=-3 +kerning first=1256 second=1051 amount=-1 +kerning first=1256 second=1058 amount=-2 +kerning first=1256 second=1061 amount=-3 +kerning first=1256 second=1066 amount=-2 +kerning first=1256 second=1071 amount=-1 +kerning first=1256 second=1174 amount=-3 +kerning first=1256 second=1184 amount=-2 +kerning first=1256 second=1198 amount=-3 +kerning first=1256 second=1202 amount=-3 +kerning first=1256 second=1298 amount=-1 +kerning first=1256 second=8218 amount=-1 +kerning first=1256 second=8222 amount=-1 +kerning first=1256 second=8230 amount=-1 +kerning first=1257 second=34 amount=-1 kerning first=1257 second=39 amount=-1 -kerning first=971 second=970 amount=-1 -kerning first=170 second=248 amount=-1 -kerning first=301 second=8217 amount=-3 -kerning first=1095 second=355 amount=-1 -kerning first=912 second=367 amount=-1 -kerning first=95 second=337 amount=-1 -kerning first=238 second=249 amount=-1 -kerning first=950 second=1038 amount=-2 -kerning first=118 second=261 amount=-1 -kerning first=281 second=1078 amount=-2 -kerning first=8226 second=268 amount=-2 -kerning first=56 second=210 amount=-2 -kerning first=1067 second=368 amount=-2 -kerning first=196 second=338 amount=-2 -kerning first=314 second=250 amount=-1 -kerning first=310 second=941 amount=-2 -kerning first=96 second=968 amount=-1 -kerning first=365 second=89 amount=-5 -kerning first=1263 second=369 amount=-1 -kerning first=259 second=1098 amount=-1 -kerning first=176 second=353 amount=-1 -kerning first=179 second=113 amount=-1 -kerning first=57 second=365 amount=-1 -kerning first=1065 second=8221 amount=-2 -kerning first=1068 second=1066 amount=-5 -kerning first=8365 second=118 amount=-4 -kerning first=1103 second=240 amount=-1 -kerning first=223 second=212 amount=-2 -kerning first=926 second=943 amount=-1 -kerning first=934 second=252 amount=-1 -kerning first=103 second=224 amount=-1 -kerning first=240 second=1118 amount=-1 -kerning first=369 second=39 amount=-3 -kerning first=123 second=366 amount=-2 +kerning first=1257 second=44 amount=-1 +kerning first=1257 second=46 amount=-1 +kerning first=1257 second=47 amount=-1 +kerning first=1257 second=63 amount=-2 +kerning first=1257 second=102 amount=-1 +kerning first=1257 second=118 amount=-1 +kerning first=1257 second=119 amount=-1 +kerning first=1257 second=120 amount=-2 +kerning first=1257 second=122 amount=-1 +kerning first=1257 second=373 amount=-1 +kerning first=1257 second=378 amount=-1 +kerning first=1257 second=380 amount=-1 +kerning first=1257 second=382 amount=-1 +kerning first=1257 second=947 amount=-1 +kerning first=1257 second=955 amount=-1 +kerning first=1257 second=957 amount=-1 +kerning first=1257 second=964 amount=-1 +kerning first=1257 second=967 amount=-2 +kerning first=1257 second=1076 amount=-1 +kerning first=1257 second=1078 amount=-2 +kerning first=1257 second=1083 amount=-1 +kerning first=1257 second=1090 amount=-1 +kerning first=1257 second=1093 amount=-2 +kerning first=1257 second=1098 amount=-1 +kerning first=1257 second=1113 amount=-1 +kerning first=1257 second=1175 amount=-2 +kerning first=1257 second=1185 amount=-1 +kerning first=1257 second=1199 amount=-1 +kerning first=1257 second=1203 amount=-2 +kerning first=1257 second=1299 amount=-1 +kerning first=1257 second=8216 amount=-1 +kerning first=1257 second=8217 amount=-1 +kerning first=1257 second=8218 amount=-1 +kerning first=1257 second=8220 amount=-1 +kerning first=1257 second=8221 amount=-1 kerning first=1257 second=8222 amount=-1 -kerning first=41 second=171 amount=-3 -kerning first=296 second=213 amount=-2 -kerning first=8260 second=371 amount=-1 -kerning first=8240 second=1195 amount=-1 -kerning first=55 second=8217 amount=-3 -kerning first=204 second=225 amount=-1 -kerning first=321 second=355 amount=-1 -kerning first=221 second=1185 amount=-2 -kerning first=273 second=226 amount=-1 -kerning first=1046 second=268 amount=-3 -kerning first=45 second=88 amount=-3 -kerning first=297 second=368 amount=-2 -kerning first=65 second=250 amount=-1 -kerning first=62 second=941 amount=-1 -kerning first=88 second=187 amount=-1 -kerning first=942 second=357 amount=-1 -kerning first=105 second=1079 amount=-1 -kerning first=1203 second=269 amount=-1 -kerning first=371 second=369 amount=-1 -kerning first=965 second=973 amount=-1 -kerning first=164 second=251 amount=-1 -kerning first=1051 second=216 amount=-2 -kerning first=298 second=1066 amount=-5 -kerning first=295 second=8221 amount=-1 -kerning first=1087 second=118 amount=-4 -kerning first=212 second=90 amount=-1 -kerning first=330 second=240 amount=-1 -kerning first=901 second=1194 amount=-2 -kerning first=904 second=370 amount=-2 -kerning first=86 second=1099 amount=-2 -kerning first=1119 second=283 amount=-1 -kerning first=950 second=67 amount=-2 -kerning first=115 second=39 amount=-1 -kerning first=1219 second=217 amount=-2 -kerning first=50 second=213 amount=-2 -kerning first=1048 second=1195 amount=-1 -kerning first=193 second=103 amount=-1 -kerning first=305 second=253 amount=-1 -kerning first=70 second=355 amount=-1 -kerning first=73 second=115 amount=-1 -kerning first=1171 second=230 amount=-1 -kerning first=951 second=242 amount=-1 -kerning first=1220 second=372 amount=-5 -kerning first=253 second=1101 amount=-1 -kerning first=376 second=945 amount=-4 -kerning first=973 second=1240 amount=-2 -kerning first=169 second=356 amount=-5 -kerning first=172 second=116 amount=-1 -kerning first=282 second=268 amount=-2 -kerning first=8224 second=219 amount=-2 -kerning first=51 second=368 amount=-2 -kerning first=191 second=972 amount=-1 -kerning first=194 second=281 amount=-1 -kerning first=1097 second=243 amount=-1 -kerning first=237 second=357 amount=-1 -kerning first=240 second=117 amount=-1 -kerning first=117 second=369 amount=-1 -kerning first=8225 second=374 amount=-5 -kerning first=52 second=1066 amount=-5 -kerning first=49 second=8221 amount=-3 -kerning first=1069 second=256 amount=-2 -kerning first=198 second=228 amount=-1 -kerning first=316 second=118 amount=-4 -kerning first=8363 second=71 amount=-2 -kerning first=78 second=240 amount=-1 -kerning first=215 second=1194 amount=-2 -kerning first=95 second=1256 amount=-2 -kerning first=98 second=382 amount=-1 -kerning first=1178 second=333 amount=-1 -kerning first=124 second=79 amount=-2 -kerning first=1299 second=257 amount=-1 -kerning first=1036 second=271 amount=-2 -kerning first=175 second=920 amount=-2 -kerning first=289 second=371 amount=-1 -kerning first=59 second=253 amount=-1 -kerning first=196 second=1257 amount=-1 -kerning first=8364 second=246 amount=-1 -kerning first=343 second=230 amount=-1 -kerning first=931 second=360 amount=-2 -kerning first=1186 second=273 amount=-1 -kerning first=1179 second=964 amount=-2 -kerning first=365 second=372 amount=-5 -kerning first=962 second=287 amount=-1 -kerning first=122 second=945 amount=-1 -kerning first=40 second=268 amount=-2 -kerning first=1041 second=219 amount=-2 -kerning first=298 second=81 amount=-2 -kerning first=323 second=243 amount=-1 -kerning first=1103 second=1028 amount=-2 -kerning first=271 second=332 amount=-2 +kerning first=1257 second=8230 amount=-1 +kerning first=1262 second=44 amount=-1 +kerning first=1262 second=46 amount=-1 +kerning first=1262 second=65 amount=-2 +kerning first=1262 second=193 amount=-2 +kerning first=1262 second=194 amount=-2 +kerning first=1262 second=196 amount=-2 +kerning first=1262 second=197 amount=-2 +kerning first=1262 second=198 amount=-2 +kerning first=1262 second=256 amount=-2 +kerning first=1262 second=258 amount=-2 +kerning first=1262 second=260 amount=-2 +kerning first=1262 second=913 amount=-2 +kerning first=1262 second=916 amount=-2 +kerning first=1262 second=923 amount=-2 +kerning first=1262 second=1033 amount=-1 +kerning first=1262 second=1040 amount=-2 +kerning first=1262 second=1044 amount=-1 +kerning first=1262 second=1051 amount=-1 +kerning first=1262 second=1298 amount=-1 +kerning first=1262 second=8218 amount=-1 +kerning first=1262 second=8222 amount=-1 +kerning first=1262 second=8230 amount=-1 +kerning first=8211 second=44 amount=-1 +kerning first=8211 second=46 amount=-1 +kerning first=8211 second=47 amount=-1 +kerning first=8211 second=49 amount=-3 +kerning first=8211 second=50 amount=-2 +kerning first=8211 second=51 amount=-2 +kerning first=8211 second=55 amount=-3 +kerning first=8211 second=65 amount=-2 +kerning first=8211 second=83 amount=-1 +kerning first=8211 second=84 amount=-4 +kerning first=8211 second=86 amount=-3 +kerning first=8211 second=87 amount=-2 +kerning first=8211 second=88 amount=-3 +kerning first=8211 second=89 amount=-4 +kerning first=8211 second=90 amount=-2 +kerning first=8211 second=102 amount=-2 +kerning first=8211 second=118 amount=-1 +kerning first=8211 second=119 amount=-1 +kerning first=8211 second=120 amount=-2 +kerning first=8211 second=122 amount=-2 +kerning first=8211 second=193 amount=-2 +kerning first=8211 second=194 amount=-2 +kerning first=8211 second=196 amount=-2 +kerning first=8211 second=197 amount=-2 +kerning first=8211 second=198 amount=-2 +kerning first=8211 second=221 amount=-4 +kerning first=8211 second=256 amount=-2 +kerning first=8211 second=258 amount=-2 +kerning first=8211 second=260 amount=-2 +kerning first=8211 second=346 amount=-1 +kerning first=8211 second=350 amount=-1 +kerning first=8211 second=352 amount=-1 +kerning first=8211 second=354 amount=-4 +kerning first=8211 second=356 amount=-4 +kerning first=8211 second=372 amount=-2 +kerning first=8211 second=373 amount=-1 +kerning first=8211 second=374 amount=-4 +kerning first=8211 second=376 amount=-4 +kerning first=8211 second=377 amount=-2 +kerning first=8211 second=378 amount=-2 +kerning first=8211 second=379 amount=-2 +kerning first=8211 second=380 amount=-2 +kerning first=8211 second=381 amount=-2 +kerning first=8211 second=382 amount=-2 +kerning first=8211 second=913 amount=-2 +kerning first=8211 second=916 amount=-2 +kerning first=8211 second=918 amount=-2 +kerning first=8211 second=923 amount=-2 +kerning first=8211 second=932 amount=-4 +kerning first=8211 second=933 amount=-4 +kerning first=8211 second=935 amount=-3 +kerning first=8211 second=939 amount=-4 +kerning first=8211 second=947 amount=-1 +kerning first=8211 second=957 amount=-1 +kerning first=8211 second=1026 amount=-4 +kerning first=8211 second=1029 amount=-1 +kerning first=8211 second=1033 amount=-4 +kerning first=8211 second=1035 amount=-4 +kerning first=8211 second=1040 amount=-2 +kerning first=8211 second=1044 amount=-4 +kerning first=8211 second=1046 amount=-3 +kerning first=8211 second=1051 amount=-4 +kerning first=8211 second=1058 amount=-4 +kerning first=8211 second=1061 amount=-3 +kerning first=8211 second=1066 amount=-4 +kerning first=8211 second=1069 amount=-1 +kerning first=8211 second=1071 amount=-1 +kerning first=8211 second=1078 amount=-2 +kerning first=8211 second=1093 amount=-2 +kerning first=8211 second=1174 amount=-3 +kerning first=8211 second=1175 amount=-2 +kerning first=8211 second=1176 amount=-1 +kerning first=8211 second=1184 amount=-4 +kerning first=8211 second=1198 amount=-4 +kerning first=8211 second=1199 amount=-1 +kerning first=8211 second=1202 amount=-3 +kerning first=8211 second=1203 amount=-2 +kerning first=8211 second=1298 amount=-4 +kerning first=8211 second=8218 amount=-1 +kerning first=8211 second=8222 amount=-1 +kerning first=8211 second=8230 amount=-1 +kerning first=8212 second=44 amount=-1 +kerning first=8212 second=46 amount=-1 kerning first=8212 second=47 amount=-1 -kerning first=44 second=216 amount=-1 -kerning first=1044 second=374 amount=-2 -kerning first=187 second=106 amount=1 -kerning first=1084 second=71 amount=-2 -kerning first=204 second=962 amount=-1 -kerning first=8378 second=111 amount=-1 -kerning first=8372 second=351 amount=-1 -kerning first=905 second=83 amount=-1 -kerning first=87 second=283 amount=-3 -kerning first=1117 second=233 amount=-1 -kerning first=944 second=245 amount=-1 -kerning first=373 second=257 amount=-1 -kerning first=163 second=359 amount=-1 -kerning first=166 second=119 amount=-4 -kerning first=273 second=963 amount=-1 -kerning first=276 second=271 amount=-1 -kerning first=279 second=44 amount=-1 -kerning first=42 second=1195 amount=-1 -kerning first=185 second=1026 amount=-5 -kerning first=188 second=286 amount=-2 -kerning first=1062 second=84 amount=-2 -kerning first=1085 second=246 amount=-1 -kerning first=91 second=230 amount=-1 -kerning first=234 second=120 amount=-2 -kerning first=354 second=273 amount=-3 -kerning first=357 second=45 amount=-2 -kerning first=108 second=947 amount=-4 -kerning first=1223 second=85 amount=-2 -kerning first=254 second=287 amount=-1 -kerning first=971 second=335 amount=-1 -kerning first=280 second=219 amount=-2 -kerning first=46 second=1069 amount=-1 -kerning first=52 second=81 amount=-2 -kerning first=1063 second=259 amount=-1 -kerning first=1066 second=34 amount=-2 -kerning first=192 second=231 amount=-1 -kerning first=304 second=361 amount=-1 -kerning first=72 second=243 amount=-1 -kerning first=330 second=1028 amount=-2 -kerning first=89 second=1263 amount=-2 -kerning first=1170 second=336 amount=-2 -kerning first=358 second=220 amount=-2 -kerning first=950 second=350 amount=-1 -kerning first=258 second=232 amount=-1 -kerning first=375 second=1176 amount=-1 -kerning first=1026 second=275 amount=-1 -kerning first=8226 second=87 amount=-5 -kerning first=314 second=71 amount=-2 -kerning first=1096 second=351 amount=-1 -kerning first=213 second=1071 amount=-1 -kerning first=1099 second=111 amount=-1 -kerning first=210 second=8230 amount=-1 -kerning first=910 second=1177 amount=-4 -kerning first=915 second=363 amount=-1 -kerning first=96 second=333 amount=-1 -kerning first=239 second=245 amount=-1 -kerning first=119 second=257 amount=-1 -kerning first=1263 second=210 amount=-2 -kerning first=376 second=8211 amount=-4 -kerning first=34 second=271 amount=-1 -kerning first=290 second=84 amount=-1 -kerning first=8230 second=262 amount=-1 -kerning first=194 second=1090 amount=-3 -kerning first=197 second=334 amount=-2 -kerning first=315 second=246 amount=-1 -kerning first=77 second=346 amount=-1 -kerning first=220 second=258 amount=-2 -kerning first=916 second=1059 amount=-2 -kerning first=103 second=45 amount=-2 -kerning first=100 second=273 amount=-1 -kerning first=97 second=964 amount=-1 -kerning first=357 second=8249 amount=-3 -kerning first=960 second=235 amount=-1 -kerning first=1298 second=365 amount=-1 -kerning first=38 second=219 amount=-2 -kerning first=174 second=1108 amount=-1 -kerning first=177 second=347 amount=-1 -kerning first=291 second=259 amount=-1 -kerning first=296 second=34 amount=-3 -kerning first=8260 second=212 amount=-2 -kerning first=58 second=361 amount=-1 -kerning first=61 second=121 amount=-1 -kerning first=1066 second=8216 amount=-2 -kerning first=198 second=965 amount=-1 -kerning first=8363 second=354 amount=-5 -kerning first=78 second=1028 amount=-2 -kerning first=936 second=248 amount=-1 -kerning first=1194 second=171 amount=-1 -kerning first=121 second=1176 amount=-1 -kerning first=124 second=362 amount=-2 -kerning first=182 second=289 amount=-1 -kerning first=65 second=71 amount=-2 -kerning first=1074 second=940 amount=-1 -kerning first=205 second=221 amount=-5 -kerning first=322 second=351 amount=-1 -kerning first=8364 second=1038 amount=-2 -kerning first=325 second=111 amount=-1 -kerning first=900 second=261 amount=-1 -kerning first=105 second=375 amount=-1 -kerning first=371 second=210 amount=-2 -kerning first=965 second=338 amount=-2 -kerning first=968 second=100 amount=-1 -kerning first=46 second=84 amount=-5 -kerning first=186 second=234 amount=-1 -kerning first=298 second=364 amount=-2 -kerning first=1083 second=199 amount=-2 -kerning first=206 second=376 amount=-5 -kerning first=323 second=1035 amount=-5 -kerning first=904 second=211 amount=-2 -kerning first=1119 second=101 amount=-1 -kerning first=223 second=8212 amount=-2 -kerning first=1116 second=339 amount=-2 -kerning first=946 second=113 amount=-1 -kerning first=103 second=8249 amount=-3 -kerning first=947 second=955 amount=-4 -kerning first=1206 second=263 amount=-1 -kerning first=252 second=235 amount=-1 -kerning first=372 second=365 amount=-2 -kerning first=47 second=259 amount=-1 -kerning first=50 second=34 amount=-3 -kerning first=296 second=8216 amount=-3 -kerning first=70 second=196 amount=-4 -kerning first=1080 second=1118 amount=-1 -kerning first=1084 second=354 amount=-5 -kerning first=204 second=8250 amount=-1 -kerning first=213 second=86 amount=-2 -kerning first=902 second=1184 amount=-5 -kerning first=905 second=366 amount=-2 -kerning first=90 second=336 amount=-1 -kerning first=1117 second=970 amount=-1 -kerning first=1168 second=279 amount=-1 -kerning first=356 second=171 amount=-3 -kerning first=1220 second=213 amount=-2 -kerning first=973 second=225 amount=-1 -kerning first=282 second=87 amount=-5 -kerning first=8220 second=267 amount=-1 -kerning first=1049 second=1185 amount=-3 -kerning first=191 second=337 amount=-1 -kerning first=194 second=99 amount=-1 -kerning first=303 second=940 amount=-1 -kerning first=306 second=249 amount=-1 -kerning first=1085 second=1038 amount=-2 -kerning first=74 second=111 amount=-1 -kerning first=214 second=261 amount=-1 -kerning first=354 second=1078 amount=-1 -kerning first=117 second=210 amount=-2 -kerning first=1223 second=368 amount=-2 -kerning first=260 second=100 amount=-1 -kerning first=377 second=941 amount=-1 -kerning first=170 second=352 amount=-1 -kerning first=52 second=364 amount=-2 -kerning first=1051 second=8220 amount=-3 -kerning first=192 second=968 amount=-1 -kerning first=195 second=277 amount=-1 -kerning first=313 second=199 amount=-1 -kerning first=72 second=1035 amount=-5 -kerning first=75 second=291 amount=-1 -kerning first=333 second=1098 amount=-1 -kerning first=238 second=353 amount=-1 -kerning first=361 second=263 amount=-1 -kerning first=1219 second=8221 amount=-3 -kerning first=1224 second=1066 amount=-5 -kerning first=289 second=212 amount=-2 -kerning first=8226 second=370 amount=-2 -kerning first=8222 second=1194 amount=-1 -kerning first=50 second=8216 amount=-3 -kerning first=1067 second=943 amount=-1 -kerning first=310 second=1118 amount=-2 -kerning first=314 second=354 amount=-5 -kerning first=8364 second=67 amount=-2 -kerning first=216 second=1184 amount=-2 -kerning first=245 second=63 amount=-2 -kerning first=365 second=213 amount=-2 -kerning first=962 second=103 amount=-1 -kerning first=1037 second=267 amount=-1 -kerning first=40 second=87 amount=-5 -kerning first=287 second=1185 amount=-3 -kerning first=60 second=249 amount=-1 -kerning first=57 second=940 amount=-1 -kerning first=315 second=1038 amount=-1 -kerning first=8365 second=242 amount=-1 -kerning first=217 second=8218 amount=-1 -kerning first=934 second=356 amount=-5 -kerning first=960 second=972 amount=-1 -kerning first=963 second=281 amount=-1 -kerning first=126 second=250 amount=-1 -kerning first=123 second=941 amount=-1 -kerning first=41 second=262 amount=-2 -kerning first=180 second=1241 amount=-1 -kerning first=184 second=187 amount=-1 -kerning first=64 second=199 amount=-2 -kerning first=1080 second=117 amount=-1 -kerning first=201 second=1079 amount=-1 -kerning first=207 second=89 amount=-5 -kerning first=84 second=339 amount=-3 -kerning first=87 second=101 amount=-3 -kerning first=107 second=263 amount=-2 -kerning first=1202 second=216 amount=-1 -kerning first=367 second=1066 amount=-5 -kerning first=967 second=228 amount=-1 -kerning first=1039 second=1194 amount=-2 -kerning first=297 second=943 amount=-1 -kerning first=300 second=252 amount=-1 -kerning first=65 second=354 amount=-5 -kerning first=62 second=1118 amount=-1 -kerning first=1085 second=67 amount=-2 -kerning first=906 second=79 amount=-2 -kerning first=88 second=279 amount=-2 -kerning first=1118 second=229 amount=-1 -kerning first=942 second=920 amount=-2 -kerning first=254 second=103 amount=-1 -kerning first=374 second=253 amount=-2 -kerning first=965 second=1257 amount=-1 -kerning first=164 second=355 amount=-1 -kerning first=167 second=115 amount=-1 -kerning first=43 second=1185 amount=-3 -kerning first=46 second=367 amount=-1 -kerning first=1087 second=242 amount=-1 -kerning first=904 second=945 amount=-1 -kerning first=92 second=226 amount=-1 -kerning first=1119 second=1240 amount=-2 -kerning first=1224 second=81 amount=-2 -kerning first=252 second=972 amount=-1 -kerning first=255 second=281 amount=-1 -kerning first=171 second=65 amount=-1 +kerning first=8212 second=49 amount=-3 +kerning first=8212 second=50 amount=-2 +kerning first=8212 second=51 amount=-2 +kerning first=8212 second=55 amount=-3 +kerning first=8212 second=65 amount=-2 +kerning first=8212 second=83 amount=-1 +kerning first=8212 second=84 amount=-4 +kerning first=8212 second=86 amount=-3 +kerning first=8212 second=87 amount=-2 +kerning first=8212 second=88 amount=-3 +kerning first=8212 second=89 amount=-4 +kerning first=8212 second=90 amount=-2 +kerning first=8212 second=102 amount=-2 +kerning first=8212 second=118 amount=-1 +kerning first=8212 second=119 amount=-1 +kerning first=8212 second=120 amount=-2 +kerning first=8212 second=122 amount=-2 +kerning first=8212 second=193 amount=-2 +kerning first=8212 second=194 amount=-2 +kerning first=8212 second=196 amount=-2 +kerning first=8212 second=197 amount=-2 +kerning first=8212 second=198 amount=-2 +kerning first=8212 second=221 amount=-4 +kerning first=8212 second=256 amount=-2 +kerning first=8212 second=258 amount=-2 +kerning first=8212 second=260 amount=-2 +kerning first=8212 second=346 amount=-1 +kerning first=8212 second=350 amount=-1 +kerning first=8212 second=352 amount=-1 +kerning first=8212 second=354 amount=-4 +kerning first=8212 second=356 amount=-4 +kerning first=8212 second=372 amount=-2 +kerning first=8212 second=373 amount=-1 +kerning first=8212 second=374 amount=-4 +kerning first=8212 second=376 amount=-4 +kerning first=8212 second=377 amount=-2 +kerning first=8212 second=378 amount=-2 +kerning first=8212 second=379 amount=-2 +kerning first=8212 second=380 amount=-2 +kerning first=8212 second=381 amount=-2 +kerning first=8212 second=382 amount=-2 +kerning first=8212 second=913 amount=-2 +kerning first=8212 second=916 amount=-2 +kerning first=8212 second=918 amount=-2 +kerning first=8212 second=923 amount=-2 +kerning first=8212 second=932 amount=-4 +kerning first=8212 second=933 amount=-4 +kerning first=8212 second=935 amount=-3 +kerning first=8212 second=939 amount=-4 +kerning first=8212 second=947 amount=-1 +kerning first=8212 second=957 amount=-1 +kerning first=8212 second=1026 amount=-4 +kerning first=8212 second=1029 amount=-1 +kerning first=8212 second=1033 amount=-4 +kerning first=8212 second=1035 amount=-4 +kerning first=8212 second=1040 amount=-2 +kerning first=8212 second=1044 amount=-4 +kerning first=8212 second=1046 amount=-3 +kerning first=8212 second=1051 amount=-4 +kerning first=8212 second=1058 amount=-4 +kerning first=8212 second=1061 amount=-3 +kerning first=8212 second=1066 amount=-4 +kerning first=8212 second=1069 amount=-1 +kerning first=8212 second=1071 amount=-1 +kerning first=8212 second=1078 amount=-2 +kerning first=8212 second=1093 amount=-2 +kerning first=8212 second=1174 amount=-3 +kerning first=8212 second=1175 amount=-2 +kerning first=8212 second=1176 amount=-1 +kerning first=8212 second=1184 amount=-4 +kerning first=8212 second=1198 amount=-4 +kerning first=8212 second=1199 amount=-1 kerning first=8212 second=1202 amount=-3 -kerning first=8218 second=373 amount=-2 -kerning first=44 second=8220 amount=-1 -kerning first=193 second=227 amount=-1 -kerning first=305 second=357 amount=-1 -kerning first=310 second=117 amount=-1 -kerning first=1171 second=332 amount=-2 -kerning first=954 second=106 amount=1 -kerning first=113 second=1066 amount=-5 -kerning first=110 second=8221 amount=-1 -kerning first=1256 second=256 amount=-2 -kerning first=973 second=962 amount=-1 -kerning first=172 second=240 amount=-1 -kerning first=282 second=370 amount=-2 +kerning first=8212 second=1203 amount=-2 +kerning first=8212 second=1298 amount=-4 +kerning first=8212 second=8218 amount=-1 +kerning first=8212 second=8222 amount=-1 +kerning first=8212 second=8230 amount=-1 +kerning first=8216 second=44 amount=-1 +kerning first=8216 second=46 amount=-1 +kerning first=8216 second=47 amount=-2 +kerning first=8216 second=52 amount=-1 +kerning first=8216 second=56 amount=-1 +kerning first=8216 second=65 amount=-3 +kerning first=8216 second=74 amount=-4 +kerning first=8216 second=97 amount=-1 +kerning first=8216 second=99 amount=-1 +kerning first=8216 second=100 amount=-1 +kerning first=8216 second=101 amount=-1 +kerning first=8216 second=103 amount=-1 +kerning first=8216 second=111 amount=-1 +kerning first=8216 second=113 amount=-1 +kerning first=8216 second=115 amount=-1 +kerning first=8216 second=193 amount=-3 +kerning first=8216 second=194 amount=-3 +kerning first=8216 second=196 amount=-3 +kerning first=8216 second=197 amount=-3 +kerning first=8216 second=198 amount=-3 +kerning first=8216 second=224 amount=-1 +kerning first=8216 second=225 amount=-1 +kerning first=8216 second=226 amount=-1 +kerning first=8216 second=227 amount=-1 +kerning first=8216 second=228 amount=-1 +kerning first=8216 second=229 amount=-1 +kerning first=8216 second=230 amount=-1 +kerning first=8216 second=231 amount=-1 +kerning first=8216 second=232 amount=-1 +kerning first=8216 second=233 amount=-1 +kerning first=8216 second=234 amount=-1 +kerning first=8216 second=235 amount=-1 +kerning first=8216 second=240 amount=-1 +kerning first=8216 second=242 amount=-1 +kerning first=8216 second=243 amount=-1 +kerning first=8216 second=244 amount=-1 +kerning first=8216 second=245 amount=-1 +kerning first=8216 second=246 amount=-1 +kerning first=8216 second=248 amount=-1 +kerning first=8216 second=256 amount=-3 +kerning first=8216 second=257 amount=-1 +kerning first=8216 second=258 amount=-3 +kerning first=8216 second=259 amount=-1 +kerning first=8216 second=260 amount=-3 +kerning first=8216 second=261 amount=-1 +kerning first=8216 second=263 amount=-1 +kerning first=8216 second=267 amount=-1 +kerning first=8216 second=269 amount=-1 +kerning first=8216 second=271 amount=-1 +kerning first=8216 second=273 amount=-1 +kerning first=8216 second=275 amount=-1 +kerning first=8216 second=277 amount=-1 +kerning first=8216 second=279 amount=-1 +kerning first=8216 second=281 amount=-1 +kerning first=8216 second=283 amount=-1 +kerning first=8216 second=287 amount=-1 +kerning first=8216 second=289 amount=-1 +kerning first=8216 second=291 amount=-1 +kerning first=8216 second=333 amount=-1 +kerning first=8216 second=335 amount=-1 +kerning first=8216 second=337 amount=-1 +kerning first=8216 second=339 amount=-1 +kerning first=8216 second=347 amount=-1 +kerning first=8216 second=351 amount=-1 +kerning first=8216 second=353 amount=-1 +kerning first=8216 second=913 amount=-3 +kerning first=8216 second=916 amount=-3 +kerning first=8216 second=923 amount=-3 +kerning first=8216 second=940 amount=-1 +kerning first=8216 second=941 amount=-1 +kerning first=8216 second=945 amount=-1 +kerning first=8216 second=949 amount=-1 +kerning first=8216 second=959 amount=-1 +kerning first=8216 second=962 amount=-1 +kerning first=8216 second=963 amount=-1 +kerning first=8216 second=966 amount=-1 +kerning first=8216 second=972 amount=-1 +kerning first=8216 second=1032 amount=-4 +kerning first=8216 second=1033 amount=-3 +kerning first=8216 second=1040 amount=-3 +kerning first=8216 second=1044 amount=-3 +kerning first=8216 second=1051 amount=-3 +kerning first=8216 second=1072 amount=-1 +kerning first=8216 second=1077 amount=-1 +kerning first=8216 second=1086 amount=-1 +kerning first=8216 second=1089 amount=-1 +kerning first=8216 second=1092 amount=-1 +kerning first=8216 second=1104 amount=-1 +kerning first=8216 second=1105 amount=-1 +kerning first=8216 second=1108 amount=-1 +kerning first=8216 second=1109 amount=-1 +kerning first=8216 second=1195 amount=-1 +kerning first=8216 second=1241 amount=-1 +kerning first=8216 second=1257 amount=-1 +kerning first=8216 second=1298 amount=-3 +kerning first=8216 second=8218 amount=-1 +kerning first=8216 second=8222 amount=-1 kerning first=8216 second=8230 amount=-1 -kerning first=51 second=943 amount=-1 -kerning first=54 second=252 amount=-1 -kerning first=191 second=1256 amount=-2 -kerning first=315 second=67 amount=-1 -kerning first=211 second=8222 amount=-1 -kerning first=338 second=229 amount=-1 -kerning first=916 second=359 amount=-1 -kerning first=926 second=119 amount=-4 -kerning first=1174 second=963 amount=-1 -kerning first=237 second=920 amount=-2 -kerning first=357 second=1195 amount=-1 -kerning first=952 second=1026 amount=-5 -kerning first=955 second=286 amount=-2 -kerning first=35 second=267 amount=-1 -kerning first=1035 second=218 amount=-2 -kerning first=1066 second=1174 amount=-2 -kerning first=1073 second=120 amount=-2 -kerning first=316 second=242 amount=-1 -kerning first=75 second=1101 amount=-1 -kerning first=361 second=1069 amount=-1 -kerning first=367 second=81 amount=-2 -kerning first=1299 second=361 amount=-1 -kerning first=1036 second=373 amount=-3 -kerning first=1033 second=1202 amount=-2 -kerning first=59 second=357 amount=-1 -kerning first=62 second=117 amount=-1 -kerning first=202 second=269 amount=-1 -kerning first=8364 second=350 amount=-1 -kerning first=1107 second=232 amount=-1 -kerning first=105 second=216 amount=-2 -kerning first=1186 second=374 amount=-2 -kerning first=368 second=256 amount=-2 -kerning first=161 second=118 amount=-4 -kerning first=37 second=1194 amount=-2 -kerning first=40 second=370 amount=-2 -kerning first=183 second=283 amount=-1 -kerning first=206 second=217 amount=-2 -kerning first=8370 second=290 amount=-2 -kerning first=86 second=229 amount=-3 -kerning first=901 second=257 amount=-1 -kerning first=229 second=119 amount=-1 -kerning first=103 second=1195 amount=-1 -kerning first=1187 second=1073 amount=-1 -kerning first=1206 second=84 amount=-2 -kerning first=249 second=286 amount=-2 -kerning first=963 second=1090 amount=-3 -kerning first=299 second=360 amount=-2 -kerning first=8260 second=8212 amount=-2 -kerning first=204 second=947 amount=-4 -kerning first=207 second=372 amount=-5 -kerning first=327 second=287 amount=-1 -kerning first=8378 second=235 amount=-1 -kerning first=87 second=1240 amount=-2 -kerning first=1117 second=335 amount=-1 -kerning first=1168 second=97 amount=-1 -kerning first=944 second=347 amount=-1 -kerning first=113 second=81 amount=-2 -kerning first=1220 second=34 amount=-3 -kerning first=253 second=231 amount=-1 -kerning first=376 second=121 amount=-2 -kerning first=967 second=965 amount=-1 -kerning first=166 second=243 amount=-1 -kerning first=276 second=373 amount=-4 -kerning first=185 second=1263 amount=-1 -kerning first=1085 second=350 amount=-1 -kerning first=903 second=1176 amount=-1 -kerning first=906 second=362 amount=-2 -kerning first=91 second=332 amount=-2 -kerning first=1118 second=966 amount=-1 -kerning first=1169 second=275 amount=-1 -kerning first=351 second=1203 amount=-1 -kerning first=8221 second=261 amount=-1 -kerning first=1051 second=1177 amount=-1 -kerning first=1063 second=363 amount=-1 -kerning first=192 second=333 amount=-1 -kerning first=1095 second=290 amount=-2 -kerning first=215 second=257 amount=-1 -kerning first=904 second=8211 amount=-2 -kerning first=92 second=963 amount=-1 -kerning first=95 second=271 amount=-1 -kerning first=908 second=1051 amount=-1 -kerning first=98 second=44 amount=-1 -kerning first=361 second=84 amount=-5 -kerning first=1224 second=364 amount=-2 -kerning first=258 second=334 amount=-2 -kerning first=255 second=1090 amount=-3 -kerning first=381 second=246 amount=-1 -kerning first=1026 second=376 amount=-5 -kerning first=8226 second=211 amount=-2 -kerning first=53 second=360 amount=-2 -kerning first=1064 second=1059 amount=-2 -kerning first=196 second=273 amount=-1 -kerning first=193 second=964 amount=-3 -kerning first=199 second=45 amount=-1 -kerning first=8361 second=113 amount=-1 -kerning first=76 second=287 amount=-1 -kerning first=1099 second=235 amount=-1 -kerning first=236 second=1108 amount=-1 -kerning first=239 second=347 amount=-1 -kerning first=365 second=34 amount=-3 -kerning first=1220 second=8216 amount=-3 -kerning first=973 second=8250 amount=-1 -kerning first=172 second=1028 amount=-2 -kerning first=176 second=288 amount=-2 -kerning first=8224 second=1184 amount=-5 -kerning first=8230 second=366 amount=-1 -kerning first=1071 second=248 amount=-1 -kerning first=200 second=220 amount=-2 -kerning first=80 second=232 amount=-1 -kerning first=338 second=966 amount=-1 -kerning first=341 second=275 amount=-1 -kerning first=100 second=374 amount=-5 -kerning first=960 second=337 amount=-1 -kerning first=963 second=99 amount=-1 -kerning first=126 second=71 amount=-2 -kerning first=1298 second=940 amount=-1 -kerning first=268 second=221 amount=-2 -kerning first=41 second=83 amount=-1 -kerning first=1035 second=953 amount=-1 -kerning first=180 second=233 amount=-1 -kerning first=291 second=363 amount=-1 -kerning first=61 second=245 amount=-1 -kerning first=201 second=375 amount=-1 -kerning first=321 second=290 amount=-2 -kerning first=221 second=1051 amount=-5 -kerning first=936 second=352 amount=-1 -kerning first=247 second=234 amount=-1 -kerning first=367 second=364 amount=-2 -kerning first=964 second=277 amount=-1 -kerning first=160 second=246 amount=-1 -kerning first=1046 second=211 amount=-3 -kerning first=289 second=8212 amount=-2 -kerning first=294 second=1059 amount=-2 -kerning first=1081 second=113 amount=-1 -kerning first=199 second=8249 amount=-1 -kerning first=1078 second=353 amount=-1 -kerning first=325 second=235 amount=-1 -kerning first=900 second=365 amount=-1 -kerning first=88 second=97 amount=-1 -kerning first=108 second=259 amount=-1 -kerning first=111 second=34 amount=-1 -kerning first=365 second=8216 amount=-3 -kerning first=374 second=74 amount=-6 -kerning first=968 second=224 amount=-1 -kerning first=1041 second=1184 amount=-5 -kerning first=186 second=336 amount=-2 -kerning first=301 second=248 amount=-1 -kerning first=86 second=966 amount=-1 -kerning first=89 second=275 amount=-4 -kerning first=1119 second=225 amount=-1 -kerning first=252 second=337 amount=-1 -kerning first=255 second=99 amount=-1 -kerning first=375 second=249 amount=-1 -kerning first=372 second=940 amount=-3 -kerning first=168 second=111 amount=-1 -kerning first=165 second=351 amount=-1 -kerning first=278 second=261 amount=-1 -kerning first=8218 second=214 amount=-1 -kerning first=47 second=363 amount=-1 -kerning first=70 second=290 amount=-2 -kerning first=8378 second=972 amount=-1 -kerning first=905 second=941 amount=-1 -kerning first=910 second=250 amount=-2 -kerning first=356 second=262 amount=-1 -kerning first=948 second=1241 amount=-1 -kerning first=951 second=187 amount=-1 -kerning first=113 second=364 amount=-2 -kerning first=1202 second=8220 amount=-2 -kerning first=253 second=968 amount=-1 -kerning first=256 second=277 amount=-1 -kerning first=379 second=199 amount=-1 -kerning first=166 second=1035 amount=-5 -kerning first=169 second=291 amount=-1 -kerning first=1027 second=89 amount=-5 -kerning first=282 second=211 amount=-2 -kerning first=48 second=1059 amount=-2 -kerning first=306 second=353 amount=-1 -kerning first=311 second=113 amount=-2 -kerning first=74 second=235 amount=-1 -kerning first=214 second=365 amount=-1 -kerning first=111 second=8216 amount=-1 -kerning first=1223 second=943 amount=-1 -kerning first=260 second=224 amount=-1 -kerning first=1035 second=39 amount=-3 -kerning first=280 second=1184 amount=-5 +kerning first=8217 second=44 amount=-1 +kerning first=8217 second=46 amount=-1 +kerning first=8217 second=47 amount=-2 +kerning first=8217 second=52 amount=-1 +kerning first=8217 second=56 amount=-1 +kerning first=8217 second=65 amount=-3 +kerning first=8217 second=74 amount=-4 +kerning first=8217 second=97 amount=-1 +kerning first=8217 second=99 amount=-1 +kerning first=8217 second=100 amount=-1 +kerning first=8217 second=101 amount=-1 +kerning first=8217 second=103 amount=-1 +kerning first=8217 second=111 amount=-1 +kerning first=8217 second=113 amount=-1 +kerning first=8217 second=115 amount=-1 +kerning first=8217 second=193 amount=-3 +kerning first=8217 second=194 amount=-3 +kerning first=8217 second=196 amount=-3 +kerning first=8217 second=197 amount=-3 +kerning first=8217 second=198 amount=-3 +kerning first=8217 second=224 amount=-1 +kerning first=8217 second=225 amount=-1 +kerning first=8217 second=226 amount=-1 +kerning first=8217 second=227 amount=-1 +kerning first=8217 second=228 amount=-1 +kerning first=8217 second=229 amount=-1 +kerning first=8217 second=230 amount=-1 +kerning first=8217 second=231 amount=-1 +kerning first=8217 second=232 amount=-1 +kerning first=8217 second=233 amount=-1 +kerning first=8217 second=234 amount=-1 +kerning first=8217 second=235 amount=-1 +kerning first=8217 second=240 amount=-1 +kerning first=8217 second=242 amount=-1 +kerning first=8217 second=243 amount=-1 +kerning first=8217 second=244 amount=-1 +kerning first=8217 second=245 amount=-1 +kerning first=8217 second=246 amount=-1 +kerning first=8217 second=248 amount=-1 +kerning first=8217 second=256 amount=-3 +kerning first=8217 second=257 amount=-1 +kerning first=8217 second=258 amount=-3 +kerning first=8217 second=259 amount=-1 +kerning first=8217 second=260 amount=-3 +kerning first=8217 second=261 amount=-1 +kerning first=8217 second=263 amount=-1 +kerning first=8217 second=267 amount=-1 +kerning first=8217 second=269 amount=-1 +kerning first=8217 second=271 amount=-1 +kerning first=8217 second=273 amount=-1 +kerning first=8217 second=275 amount=-1 +kerning first=8217 second=277 amount=-1 +kerning first=8217 second=279 amount=-1 +kerning first=8217 second=281 amount=-1 +kerning first=8217 second=283 amount=-1 +kerning first=8217 second=287 amount=-1 +kerning first=8217 second=289 amount=-1 +kerning first=8217 second=291 amount=-1 +kerning first=8217 second=333 amount=-1 +kerning first=8217 second=335 amount=-1 +kerning first=8217 second=337 amount=-1 +kerning first=8217 second=339 amount=-1 +kerning first=8217 second=347 amount=-1 +kerning first=8217 second=351 amount=-1 +kerning first=8217 second=353 amount=-1 +kerning first=8217 second=913 amount=-3 +kerning first=8217 second=916 amount=-3 +kerning first=8217 second=923 amount=-3 +kerning first=8217 second=940 amount=-1 +kerning first=8217 second=941 amount=-1 +kerning first=8217 second=945 amount=-1 +kerning first=8217 second=949 amount=-1 +kerning first=8217 second=959 amount=-1 +kerning first=8217 second=962 amount=-1 +kerning first=8217 second=963 amount=-1 +kerning first=8217 second=966 amount=-1 +kerning first=8217 second=972 amount=-1 +kerning first=8217 second=1032 amount=-4 +kerning first=8217 second=1033 amount=-3 +kerning first=8217 second=1040 amount=-3 +kerning first=8217 second=1044 amount=-3 +kerning first=8217 second=1051 amount=-3 +kerning first=8217 second=1072 amount=-1 +kerning first=8217 second=1077 amount=-1 +kerning first=8217 second=1086 amount=-1 +kerning first=8217 second=1089 amount=-1 +kerning first=8217 second=1092 amount=-1 +kerning first=8217 second=1104 amount=-1 +kerning first=8217 second=1105 amount=-1 +kerning first=8217 second=1108 amount=-1 +kerning first=8217 second=1109 amount=-1 +kerning first=8217 second=1195 amount=-1 +kerning first=8217 second=1241 amount=-1 +kerning first=8217 second=1257 amount=-1 +kerning first=8217 second=1298 amount=-3 +kerning first=8217 second=8218 amount=-1 kerning first=8217 second=8222 amount=-1 -kerning first=8240 second=79 amount=-2 -kerning first=55 second=248 amount=-1 -kerning first=198 second=171 amount=-3 -kerning first=928 second=115 amount=-1 -kerning first=1178 second=267 amount=-1 -kerning first=361 second=367 amount=-1 -kerning first=358 second=1185 amount=-3 -kerning first=121 second=249 amount=-1 -kerning first=118 second=940 amount=-1 -kerning first=36 second=261 amount=-1 -kerning first=1036 second=214 amount=-3 -kerning first=281 second=8218 amount=-1 -kerning first=8226 second=945 amount=-1 -kerning first=1074 second=116 amount=-1 -kerning first=1070 second=356 amount=-2 -kerning first=1099 second=972 amount=-1 -kerning first=962 second=227 amount=-1 -kerning first=125 second=199 amount=-2 -kerning first=270 second=89 amount=-3 -kerning first=40 second=211 amount=-2 -kerning first=1037 second=369 amount=-1 -kerning first=176 second=1098 amount=-3 -kerning first=179 second=339 amount=-1 -kerning first=183 second=101 amount=-1 -kerning first=60 second=353 amount=-1 -kerning first=63 second=113 amount=-1 -kerning first=203 second=263 amount=-1 -kerning first=8370 second=106 amount=1 -kerning first=1184 second=1194 amount=-3 -kerning first=369 second=252 amount=-1 -kerning first=960 second=1256 amount=-2 -kerning first=123 second=1118 amount=-1 -kerning first=126 second=354 amount=-5 -kerning first=271 second=266 amount=-2 -kerning first=275 second=39 amount=-1 -kerning first=38 second=1184 amount=-5 -kerning first=41 second=366 amount=-2 -kerning first=1048 second=79 amount=-2 -kerning first=184 second=279 amount=-1 -kerning first=180 second=970 amount=-1 -kerning first=207 second=213 amount=-2 -kerning first=8366 second=1026 amount=-5 -kerning first=8372 second=286 amount=-2 -kerning first=327 second=103 amount=-1 -kerning first=902 second=253 amount=-1 -kerning first=87 second=225 amount=-2 -kerning first=104 second=1185 amount=-1 -kerning first=160 second=1038 amount=-2 -kerning first=276 second=214 amount=-2 -kerning first=39 second=8218 amount=-1 -kerning first=1046 second=945 amount=-2 -kerning first=188 second=226 amount=-1 -kerning first=300 second=356 amount=-5 -kerning first=303 second=116 amount=-1 -kerning first=325 second=972 amount=-1 -kerning first=105 second=8220 amount=-3 -kerning first=254 second=227 amount=-1 -kerning first=971 second=269 amount=-1 -kerning first=49 second=251 amount=-1 -kerning first=206 second=8221 amount=-3 -kerning first=209 second=1066 amount=-5 -kerning first=1095 second=106 amount=1 -kerning first=912 second=118 amount=-4 -kerning first=89 second=1080 amount=-3 -kerning first=1119 second=962 amount=-1 -kerning first=950 second=283 amount=-1 -kerning first=252 second=1256 amount=-2 -kerning first=381 second=67 amount=-1 -kerning first=1026 second=217 amount=-2 -kerning first=275 second=8222 amount=-1 -kerning first=1064 second=359 amount=-1 -kerning first=1067 second=119 amount=-4 -kerning first=305 second=920 amount=-2 -kerning first=70 second=1100 amount=-1 -kerning first=1096 second=286 amount=-2 -kerning first=76 second=103 amount=-1 -kerning first=96 second=267 amount=-1 -kerning first=1176 second=218 amount=-2 -kerning first=954 second=230 amount=-1 -kerning first=382 second=242 amount=-1 -kerning first=973 second=947 amount=-4 -kerning first=1027 second=372 amount=-5 -kerning first=169 second=1101 amount=-1 -kerning first=282 second=945 amount=-1 -kerning first=54 second=356 amount=-5 -kerning first=57 second=116 amount=-1 -kerning first=197 second=268 amount=-2 -kerning first=74 second=972 amount=-1 -kerning first=77 second=281 amount=-1 -kerning first=926 second=243 amount=-1 -kerning first=952 second=1263 amount=-1 -kerning first=123 second=117 amount=-1 -kerning first=35 second=369 amount=-1 -kerning first=174 second=973 amount=-1 -kerning first=8225 second=1176 amount=-1 -kerning first=8240 second=362 amount=-2 -kerning first=1073 second=244 amount=-1 -kerning first=201 second=216 amount=-2 -kerning first=321 second=106 amount=1 -kerning first=8363 second=289 amount=-1 -kerning first=224 second=118 amount=-1 -kerning first=936 second=193 amount=-3 -kerning first=160 second=67 amount=-2 -kerning first=42 second=79 amount=-2 -kerning first=1039 second=257 amount=-1 -kerning first=1036 second=949 amount=-2 -kerning first=182 second=229 amount=-1 -kerning first=297 second=119 amount=-4 -kerning first=8226 second=8211 amount=-2 -kerning first=294 second=359 amount=-1 -kerning first=59 second=920 amount=-2 -kerning first=8249 second=1051 amount=-1 -kerning first=202 second=371 amount=-1 -kerning first=317 second=1026 amount=-5 -kerning first=322 second=286 amount=-2 -kerning first=8369 second=234 amount=-1 -kerning first=1102 second=1090 amount=-1 -kerning first=222 second=1046 amount=-3 -kerning first=965 second=273 amount=-1 -kerning first=968 second=45 amount=-2 -kerning first=161 second=242 amount=-1 -kerning first=962 second=964 amount=-3 -kerning first=267 second=947 amount=-1 -kerning first=270 second=372 amount=-2 -kerning first=40 second=945 amount=-1 -kerning first=183 second=1240 amount=-2 -kerning first=179 second=1262 amount=-2 -kerning first=1075 second=1108 amount=-1 -kerning first=203 second=1069 amount=-1 -kerning first=209 second=81 amount=-2 -kerning first=901 second=361 amount=-1 -kerning first=904 second=121 amount=-1 -kerning first=86 second=331 amount=-2 -kerning first=347 second=373 amount=-1 -kerning first=8212 second=260 amount=-2 -kerning first=1048 second=362 amount=-2 -kerning first=302 second=244 amount=-1 -kerning first=70 second=106 amount=1 -kerning first=1084 second=289 amount=-1 -kerning first=210 second=256 amount=-2 -kerning first=8378 second=337 amount=-1 -kerning first=87 second=962 amount=-3 -kerning first=910 second=71 amount=-3 -kerning first=1168 second=221 amount=-5 -kerning first=345 second=8230 amount=-3 -kerning first=356 second=83 amount=-1 -kerning first=948 second=233 amount=-1 -kerning first=253 second=333 amount=-1 -kerning first=376 second=245 amount=-4 -kerning first=276 second=949 amount=-1 -kerning first=48 second=359 amount=-1 -kerning first=51 second=119 amount=-4 -kerning first=1046 second=8211 amount=-3 -kerning first=188 second=963 amount=-1 -kerning first=191 second=271 amount=-1 -kerning first=68 second=1026 amount=-2 -kerning first=1094 second=234 amount=-1 -kerning first=328 second=1090 amount=-1 -kerning first=94 second=218 amount=-2 -kerning first=1210 second=1059 amount=-2 -kerning first=254 second=964 amount=-3 -kerning first=260 second=45 amount=-2 -kerning first=968 second=8249 amount=-3 -kerning first=170 second=287 amount=-1 -kerning first=195 second=219 amount=-2 -kerning first=304 second=1108 amount=-1 -kerning first=75 second=231 amount=-2 -kerning first=215 second=361 amount=-1 -kerning first=339 second=46 amount=-1 -kerning first=920 second=196 amount=-2 -kerning first=95 second=373 amount=-4 -kerning first=1119 second=8250 amount=-1 -kerning first=238 second=288 amount=-2 -kerning first=1033 second=260 amount=-1 -kerning first=175 second=232 amount=-1 +kerning first=8217 second=8230 amount=-1 +kerning first=8218 second=34 amount=-1 +kerning first=8218 second=39 amount=-1 +kerning first=8218 second=45 amount=-1 +kerning first=8218 second=48 amount=-1 +kerning first=8218 second=49 amount=-4 +kerning first=8218 second=51 amount=-1 +kerning first=8218 second=52 amount=-1 +kerning first=8218 second=53 amount=-1 +kerning first=8218 second=54 amount=-1 +kerning first=8218 second=55 amount=-1 +kerning first=8218 second=56 amount=-1 +kerning first=8218 second=67 amount=-1 +kerning first=8218 second=71 amount=-1 +kerning first=8218 second=79 amount=-1 +kerning first=8218 second=81 amount=-1 +kerning first=8218 second=84 amount=-5 +kerning first=8218 second=85 amount=-1 +kerning first=8218 second=86 amount=-4 +kerning first=8218 second=87 amount=-3 +kerning first=8218 second=89 amount=-4 +kerning first=8218 second=102 amount=-2 +kerning first=8218 second=103 amount=-1 +kerning first=8218 second=106 amount=2 +kerning first=8218 second=116 amount=-1 +kerning first=8218 second=117 amount=-1 +kerning first=8218 second=118 amount=-2 +kerning first=8218 second=119 amount=-2 +kerning first=8218 second=121 amount=-1 +kerning first=8218 second=173 amount=-1 +kerning first=8218 second=199 amount=-1 +kerning first=8218 second=210 amount=-1 +kerning first=8218 second=211 amount=-1 +kerning first=8218 second=212 amount=-1 +kerning first=8218 second=213 amount=-1 +kerning first=8218 second=214 amount=-1 +kerning first=8218 second=216 amount=-1 +kerning first=8218 second=217 amount=-1 +kerning first=8218 second=218 amount=-1 +kerning first=8218 second=219 amount=-1 +kerning first=8218 second=220 amount=-1 +kerning first=8218 second=221 amount=-4 +kerning first=8218 second=249 amount=-1 +kerning first=8218 second=250 amount=-1 +kerning first=8218 second=251 amount=-1 +kerning first=8218 second=252 amount=-1 +kerning first=8218 second=253 amount=-1 +kerning first=8218 second=262 amount=-1 +kerning first=8218 second=266 amount=-1 +kerning first=8218 second=268 amount=-1 +kerning first=8218 second=286 amount=-1 +kerning first=8218 second=287 amount=-1 +kerning first=8218 second=288 amount=-1 +kerning first=8218 second=289 amount=-1 +kerning first=8218 second=290 amount=-1 +kerning first=8218 second=291 amount=-1 +kerning first=8218 second=332 amount=-1 +kerning first=8218 second=334 amount=-1 +kerning first=8218 second=336 amount=-1 +kerning first=8218 second=338 amount=-1 +kerning first=8218 second=354 amount=-5 +kerning first=8218 second=355 amount=-1 +kerning first=8218 second=356 amount=-5 +kerning first=8218 second=357 amount=-1 +kerning first=8218 second=359 amount=-1 +kerning first=8218 second=360 amount=-1 +kerning first=8218 second=361 amount=-1 +kerning first=8218 second=362 amount=-1 +kerning first=8218 second=363 amount=-1 +kerning first=8218 second=364 amount=-1 +kerning first=8218 second=365 amount=-1 +kerning first=8218 second=366 amount=-1 +kerning first=8218 second=367 amount=-1 +kerning first=8218 second=368 amount=-1 +kerning first=8218 second=369 amount=-1 +kerning first=8218 second=370 amount=-1 +kerning first=8218 second=371 amount=-1 +kerning first=8218 second=372 amount=-3 +kerning first=8218 second=373 amount=-2 +kerning first=8218 second=374 amount=-4 +kerning first=8218 second=375 amount=-1 +kerning first=8218 second=376 amount=-4 +kerning first=8218 second=920 amount=-1 +kerning first=8218 second=927 amount=-1 +kerning first=8218 second=932 amount=-5 +kerning first=8218 second=933 amount=-4 +kerning first=8218 second=939 amount=-4 +kerning first=8218 second=947 amount=-2 +kerning first=8218 second=957 amount=-2 +kerning first=8218 second=964 amount=-3 +kerning first=8218 second=965 amount=-1 +kerning first=8218 second=968 amount=-1 +kerning first=8218 second=973 amount=-1 +kerning first=8218 second=1026 amount=-5 +kerning first=8218 second=1028 amount=-1 +kerning first=8218 second=1035 amount=-5 +kerning first=8218 second=1038 amount=-1 +kerning first=8218 second=1054 amount=-1 +kerning first=8218 second=1057 amount=-1 +kerning first=8218 second=1058 amount=-5 +kerning first=8218 second=1059 amount=-1 +kerning first=8218 second=1063 amount=-3 +kerning first=8218 second=1066 amount=-5 +kerning first=8218 second=1069 amount=-1 +kerning first=8218 second=1090 amount=-3 +kerning first=8218 second=1091 amount=-1 +kerning first=8218 second=1098 amount=-3 +kerning first=8218 second=1112 amount=2 +kerning first=8218 second=1118 amount=-1 +kerning first=8218 second=1176 amount=-1 +kerning first=8218 second=1184 amount=-5 +kerning first=8218 second=1185 amount=-3 +kerning first=8218 second=1194 amount=-1 +kerning first=8218 second=1198 amount=-4 +kerning first=8218 second=1199 amount=-2 +kerning first=8218 second=1240 amount=-1 +kerning first=8218 second=1256 amount=-1 +kerning first=8218 second=1262 amount=-1 +kerning first=8218 second=1263 amount=-1 +kerning first=8218 second=8211 amount=-1 +kerning first=8218 second=8212 amount=-1 +kerning first=8218 second=8216 amount=-1 kerning first=8218 second=8217 amount=-1 -kerning first=8222 second=1063 amount=-3 -kerning first=56 second=244 amount=-1 -kerning first=1070 second=197 amount=-2 -kerning first=196 second=374 amount=-5 -kerning first=314 second=289 amount=-1 -kerning first=1099 second=337 amount=-1 -kerning first=340 second=221 amount=-2 -kerning first=931 second=111 amount=-1 -kerning first=923 second=351 amount=-1 -kerning first=1176 second=953 amount=-1 -kerning first=122 second=245 amount=-1 -kerning first=34 second=949 amount=-1 -kerning first=37 second=257 amount=-1 -kerning first=1037 second=210 amount=-2 -kerning first=282 second=8211 amount=-2 -kerning first=1071 second=352 amount=-1 -kerning first=203 second=84 amount=-5 -kerning first=318 second=234 amount=-1 -kerning first=8365 second=187 amount=-1 -kerning first=77 second=1090 amount=-3 -kerning first=80 second=334 amount=-2 -kerning first=1103 second=277 amount=-1 -kerning first=223 second=246 amount=-1 -kerning first=926 second=1035 amount=-5 -kerning first=934 second=291 amount=-1 -kerning first=363 second=1059 amount=-2 -kerning first=260 second=8249 amount=-3 -kerning first=271 second=85 amount=-2 -kerning first=180 second=335 amount=-1 -kerning first=184 second=97 amount=-1 -kerning first=58 second=1108 amount=-1 -kerning first=61 second=347 amount=-1 -kerning first=204 second=259 amount=-1 -kerning first=207 second=34 amount=-3 -kerning first=902 second=74 amount=-1 -kerning first=87 second=46 amount=-3 -kerning first=350 second=86 amount=-2 -kerning first=247 second=336 amount=-2 -kerning first=967 second=171 amount=-3 -kerning first=160 second=350 amount=-1 -kerning first=42 second=362 amount=-2 -kerning first=45 second=122 amount=-2 -kerning first=182 second=966 amount=-1 -kerning first=185 second=275 amount=-1 -kerning first=65 second=289 amount=-1 -kerning first=325 second=337 amount=-1 -kerning first=900 second=940 amount=-1 -kerning first=903 second=249 amount=-1 -kerning first=105 second=1177 amount=-1 -kerning first=108 second=363 amount=-1 -kerning first=248 second=967 amount=-2 -kerning first=374 second=198 amount=-5 -kerning first=164 second=290 amount=-2 -kerning first=40 second=8211 amount=-2 -kerning first=1051 second=250 amount=-1 -kerning first=301 second=352 amount=-1 -kerning first=69 second=234 amount=-1 -kerning first=1083 second=1241 amount=-1 -kerning first=1087 second=187 amount=-1 -kerning first=209 second=364 amount=-2 -kerning first=330 second=277 amount=-1 -kerning first=1170 second=89 amount=-5 -kerning first=943 second=1098 amount=-2 -kerning first=946 second=339 amount=-1 -kerning first=950 second=101 amount=-1 -kerning first=1219 second=251 amount=-1 -kerning first=375 second=353 amount=-1 -kerning first=372 second=1117 amount=-2 -kerning first=378 second=113 amount=-1 -kerning first=969 second=955 amount=-1 -kerning first=168 second=235 amount=-1 -kerning first=278 second=365 amount=-1 -kerning first=8212 second=1066 amount=-4 -kerning first=207 second=8216 amount=-3 -kerning first=8378 second=1256 amount=-2 -kerning first=905 second=1118 amount=-1 -kerning first=87 second=8250 amount=-2 -kerning first=1171 second=266 amount=-2 -kerning first=1176 second=39 amount=-3 -kerning first=948 second=970 amount=-1 -kerning first=951 second=279 amount=-1 -kerning first=1027 second=213 amount=-2 -kerning first=276 second=8217 amount=-3 -kerning first=8224 second=253 amount=-1 -kerning first=197 second=87 amount=-5 -kerning first=74 second=337 amount=-1 -kerning first=77 second=99 amount=-1 -kerning first=214 second=940 amount=-1 -kerning first=94 second=953 amount=-1 -kerning first=354 second=8218 amount=-3 -kerning first=955 second=226 amount=-1 -kerning first=1298 second=116 amount=-1 -kerning first=35 second=210 amount=-2 -kerning first=174 second=338 amount=-2 -kerning first=177 second=100 amount=-1 -kerning first=55 second=352 amount=-1 -kerning first=198 second=262 amount=-2 -kerning first=313 second=1241 amount=-1 -kerning first=316 second=187 amount=-1 -kerning first=78 second=277 amount=-1 -kerning first=75 second=968 amount=-1 -kerning first=221 second=199 amount=-3 -kerning first=342 second=89 amount=-2 -kerning first=238 second=1098 amount=-3 -kerning first=124 second=113 amount=-1 -kerning first=121 second=353 amount=-1 -kerning first=36 second=365 amount=-1 -kerning first=1026 second=8221 amount=-3 -kerning first=1033 second=1066 amount=-5 -kerning first=1070 second=916 amount=-2 -kerning first=1074 second=240 amount=-1 -kerning first=202 second=212 amount=-2 -kerning first=8364 second=283 amount=-1 -kerning first=1099 second=1256 amount=-2 -kerning first=1102 second=382 amount=-1 -kerning first=222 second=354 amount=-2 -kerning first=1041 second=253 amount=-1 -kerning first=183 second=225 amount=-1 -kerning first=298 second=115 amount=-1 -kerning first=8250 second=1046 amount=-3 -kerning first=200 second=1185 amount=-3 -kerning first=203 second=367 amount=-1 -kerning first=8370 second=230 amount=-1 -kerning first=223 second=1038 amount=-2 -kerning first=934 second=1101 amount=-1 -kerning first=1187 second=945 amount=-1 -kerning first=249 second=226 amount=-1 -kerning first=369 second=356 amount=-5 -kerning first=271 second=368 amount=-2 -kerning first=41 second=941 amount=-1 -kerning first=44 second=250 amount=-1 -kerning first=64 second=1241 amount=-1 -kerning first=201 second=8220 amount=-3 -kerning first=327 second=227 amount=-1 -kerning first=8366 second=1263 amount=-1 -kerning first=902 second=357 amount=-1 -kerning first=905 second=117 amount=-1 -kerning first=84 second=1079 amount=-2 -kerning first=87 second=326 amount=-2 -kerning first=1117 second=269 amount=-1 -kerning first=273 second=1066 amount=-5 -kerning first=269 second=8221 amount=-1 -kerning first=8216 second=256 amount=-3 -kerning first=1062 second=118 amount=-2 -kerning first=303 second=240 amount=-1 -kerning first=1085 second=283 amount=-1 -kerning first=325 second=1256 amount=-2 -kerning first=91 second=266 amount=-2 -kerning first=94 second=39 amount=-3 -kerning first=357 second=79 amount=-2 -kerning first=1223 second=119 amount=-4 -kerning first=1210 second=359 amount=-1 -kerning first=374 second=920 amount=-3 -kerning first=968 second=1195 amount=-1 -kerning first=971 second=371 amount=-1 -kerning first=170 second=103 amount=-1 -kerning first=280 second=253 amount=-1 -kerning first=49 second=355 amount=-1 -kerning first=52 second=115 amount=-1 -kerning first=192 second=267 amount=-1 -kerning first=1095 second=230 amount=-1 -kerning first=912 second=242 amount=-1 -kerning first=95 second=214 amount=-2 -kerning first=1119 second=947 amount=-4 -kerning first=1170 second=372 amount=-5 -kerning first=908 second=923 amount=-2 -kerning first=950 second=1240 amount=-2 -kerning first=946 second=1262 amount=-2 -kerning first=258 second=268 amount=-2 -kerning first=168 second=972 amount=-1 -kerning first=8222 second=361 amount=-1 -kerning first=8226 second=121 amount=-1 -kerning first=1067 second=243 amount=-1 -kerning first=96 second=369 amount=-1 -kerning first=236 second=973 amount=-1 -kerning first=1263 second=244 amount=-1 -kerning first=1034 second=256 amount=-1 -kerning first=176 second=228 amount=-1 -kerning first=57 second=240 amount=-1 -kerning first=194 second=1194 amount=-2 -kerning first=197 second=370 amount=-2 -kerning first=315 second=283 amount=-1 -kerning first=74 second=1256 amount=-2 -kerning first=217 second=1044 amount=-1 -kerning first=223 second=67 amount=-2 -kerning first=103 second=79 amount=-2 -kerning first=1184 second=257 amount=-1 -kerning first=363 second=359 amount=-1 -kerning first=955 second=963 amount=-1 -kerning first=960 second=271 amount=-1 -kerning first=260 second=1195 amount=-1 -kerning first=38 second=253 amount=-1 -kerning first=174 second=1257 amount=-1 -kerning first=8260 second=246 amount=-1 -kerning first=1073 second=346 amount=-1 -kerning first=321 second=230 amount=-1 -kerning first=1101 second=964 amount=-1 -kerning first=221 second=923 amount=-5 -kerning first=339 second=947 amount=-1 -kerning first=342 second=372 amount=-1 -kerning first=936 second=287 amount=-1 -kerning first=964 second=219 amount=-2 -kerning first=1299 second=1108 amount=-1 -kerning first=266 second=1069 amount=1 -kerning first=273 second=81 amount=-2 -kerning first=1039 second=361 amount=-1 -kerning first=1046 second=121 amount=-1 -kerning first=297 second=243 amount=-1 -kerning first=1074 second=1028 amount=-2 -kerning first=317 second=1263 amount=-1 -kerning first=8369 second=336 amount=-2 -kerning first=942 second=232 amount=-1 -kerning first=371 second=244 amount=-1 -kerning first=965 second=374 amount=-5 -kerning first=164 second=106 amount=1 -kerning first=46 second=118 amount=-2 -kerning first=1051 second=71 amount=-2 -kerning first=183 second=962 amount=-1 -kerning first=1083 second=233 amount=-1 -kerning first=904 second=245 amount=-1 -kerning first=112 second=119 amount=-1 -kerning first=249 second=963 amount=-1 -kerning first=252 second=271 amount=-1 -kerning first=162 second=1026 amount=-5 -kerning first=165 second=286 amount=-2 -kerning first=1241 second=1090 amount=-1 -kerning first=190 second=218 amount=-2 -kerning first=302 second=346 amount=-1 -kerning first=70 second=230 amount=-1 -kerning first=327 second=964 amount=-3 -kerning first=87 second=947 amount=-1 -kerning first=1171 second=85 amount=-2 -kerning first=948 second=335 amount=-1 -kerning first=951 second=97 amount=-1 -kerning first=256 second=219 amount=-2 -kerning first=373 second=1108 amount=-1 -kerning first=376 second=347 amount=-3 -kerning first=973 second=259 amount=-1 -kerning first=1027 second=34 amount=-3 -kerning first=169 second=231 amount=-1 -kerning first=282 second=121 amount=-1 -kerning first=51 second=243 amount=-1 -kerning first=191 second=373 amount=-4 -kerning first=303 second=1028 amount=-2 -kerning first=306 second=288 amount=-2 -kerning first=237 second=232 amount=-1 -kerning first=357 second=362 amount=-2 -kerning first=952 second=275 amount=-1 -kerning first=117 second=244 amount=-1 +kerning first=8218 second=8220 amount=-1 +kerning first=8218 second=8221 amount=-1 +kerning first=8220 second=44 amount=-1 +kerning first=8220 second=46 amount=-1 +kerning first=8220 second=47 amount=-2 +kerning first=8220 second=52 amount=-1 +kerning first=8220 second=56 amount=-1 +kerning first=8220 second=65 amount=-3 +kerning first=8220 second=74 amount=-4 +kerning first=8220 second=97 amount=-1 +kerning first=8220 second=99 amount=-1 +kerning first=8220 second=100 amount=-1 +kerning first=8220 second=101 amount=-1 +kerning first=8220 second=103 amount=-1 +kerning first=8220 second=111 amount=-1 +kerning first=8220 second=113 amount=-1 +kerning first=8220 second=115 amount=-1 +kerning first=8220 second=193 amount=-3 +kerning first=8220 second=194 amount=-3 +kerning first=8220 second=196 amount=-3 +kerning first=8220 second=197 amount=-3 +kerning first=8220 second=198 amount=-3 +kerning first=8220 second=224 amount=-1 +kerning first=8220 second=225 amount=-1 +kerning first=8220 second=226 amount=-1 +kerning first=8220 second=227 amount=-1 +kerning first=8220 second=228 amount=-1 +kerning first=8220 second=229 amount=-1 +kerning first=8220 second=230 amount=-1 +kerning first=8220 second=231 amount=-1 +kerning first=8220 second=232 amount=-1 +kerning first=8220 second=233 amount=-1 +kerning first=8220 second=234 amount=-1 +kerning first=8220 second=235 amount=-1 +kerning first=8220 second=240 amount=-1 +kerning first=8220 second=242 amount=-1 +kerning first=8220 second=243 amount=-1 +kerning first=8220 second=244 amount=-1 +kerning first=8220 second=245 amount=-1 +kerning first=8220 second=246 amount=-1 +kerning first=8220 second=248 amount=-1 +kerning first=8220 second=256 amount=-3 +kerning first=8220 second=257 amount=-1 +kerning first=8220 second=258 amount=-3 +kerning first=8220 second=259 amount=-1 +kerning first=8220 second=260 amount=-3 +kerning first=8220 second=261 amount=-1 +kerning first=8220 second=263 amount=-1 +kerning first=8220 second=267 amount=-1 +kerning first=8220 second=269 amount=-1 +kerning first=8220 second=271 amount=-1 +kerning first=8220 second=273 amount=-1 +kerning first=8220 second=275 amount=-1 +kerning first=8220 second=277 amount=-1 +kerning first=8220 second=279 amount=-1 +kerning first=8220 second=281 amount=-1 +kerning first=8220 second=283 amount=-1 +kerning first=8220 second=287 amount=-1 +kerning first=8220 second=289 amount=-1 +kerning first=8220 second=291 amount=-1 +kerning first=8220 second=333 amount=-1 +kerning first=8220 second=335 amount=-1 +kerning first=8220 second=337 amount=-1 +kerning first=8220 second=339 amount=-1 +kerning first=8220 second=347 amount=-1 +kerning first=8220 second=351 amount=-1 +kerning first=8220 second=353 amount=-1 +kerning first=8220 second=913 amount=-3 +kerning first=8220 second=916 amount=-3 +kerning first=8220 second=923 amount=-3 +kerning first=8220 second=940 amount=-1 +kerning first=8220 second=941 amount=-1 +kerning first=8220 second=945 amount=-1 +kerning first=8220 second=949 amount=-1 +kerning first=8220 second=959 amount=-1 +kerning first=8220 second=962 amount=-1 +kerning first=8220 second=963 amount=-1 +kerning first=8220 second=966 amount=-1 +kerning first=8220 second=972 amount=-1 +kerning first=8220 second=1032 amount=-4 +kerning first=8220 second=1033 amount=-3 +kerning first=8220 second=1040 amount=-3 +kerning first=8220 second=1044 amount=-3 +kerning first=8220 second=1051 amount=-3 +kerning first=8220 second=1072 amount=-1 +kerning first=8220 second=1077 amount=-1 +kerning first=8220 second=1086 amount=-1 +kerning first=8220 second=1089 amount=-1 +kerning first=8220 second=1092 amount=-1 +kerning first=8220 second=1104 amount=-1 +kerning first=8220 second=1105 amount=-1 +kerning first=8220 second=1108 amount=-1 +kerning first=8220 second=1109 amount=-1 +kerning first=8220 second=1195 amount=-1 +kerning first=8220 second=1241 amount=-1 +kerning first=8220 second=1257 amount=-1 +kerning first=8220 second=1298 amount=-3 +kerning first=8220 second=8218 amount=-1 +kerning first=8220 second=8222 amount=-1 +kerning first=8220 second=8230 amount=-1 +kerning first=8221 second=44 amount=-1 +kerning first=8221 second=46 amount=-1 +kerning first=8221 second=47 amount=-2 +kerning first=8221 second=52 amount=-1 +kerning first=8221 second=56 amount=-1 +kerning first=8221 second=65 amount=-3 +kerning first=8221 second=74 amount=-4 +kerning first=8221 second=97 amount=-1 +kerning first=8221 second=99 amount=-1 +kerning first=8221 second=100 amount=-1 +kerning first=8221 second=101 amount=-1 +kerning first=8221 second=103 amount=-1 +kerning first=8221 second=111 amount=-1 +kerning first=8221 second=113 amount=-1 +kerning first=8221 second=115 amount=-1 +kerning first=8221 second=193 amount=-3 +kerning first=8221 second=194 amount=-3 +kerning first=8221 second=196 amount=-3 +kerning first=8221 second=197 amount=-3 +kerning first=8221 second=198 amount=-3 +kerning first=8221 second=224 amount=-1 +kerning first=8221 second=225 amount=-1 +kerning first=8221 second=226 amount=-1 +kerning first=8221 second=227 amount=-1 +kerning first=8221 second=228 amount=-1 +kerning first=8221 second=229 amount=-1 +kerning first=8221 second=230 amount=-1 +kerning first=8221 second=231 amount=-1 +kerning first=8221 second=232 amount=-1 +kerning first=8221 second=233 amount=-1 +kerning first=8221 second=234 amount=-1 +kerning first=8221 second=235 amount=-1 +kerning first=8221 second=240 amount=-1 +kerning first=8221 second=242 amount=-1 +kerning first=8221 second=243 amount=-1 +kerning first=8221 second=244 amount=-1 +kerning first=8221 second=245 amount=-1 +kerning first=8221 second=246 amount=-1 +kerning first=8221 second=248 amount=-1 +kerning first=8221 second=256 amount=-3 +kerning first=8221 second=257 amount=-1 +kerning first=8221 second=258 amount=-3 +kerning first=8221 second=259 amount=-1 +kerning first=8221 second=260 amount=-3 +kerning first=8221 second=261 amount=-1 +kerning first=8221 second=263 amount=-1 +kerning first=8221 second=267 amount=-1 +kerning first=8221 second=269 amount=-1 +kerning first=8221 second=271 amount=-1 +kerning first=8221 second=273 amount=-1 +kerning first=8221 second=275 amount=-1 +kerning first=8221 second=277 amount=-1 +kerning first=8221 second=279 amount=-1 +kerning first=8221 second=281 amount=-1 +kerning first=8221 second=283 amount=-1 +kerning first=8221 second=287 amount=-1 +kerning first=8221 second=289 amount=-1 +kerning first=8221 second=291 amount=-1 +kerning first=8221 second=333 amount=-1 +kerning first=8221 second=335 amount=-1 +kerning first=8221 second=337 amount=-1 +kerning first=8221 second=339 amount=-1 +kerning first=8221 second=347 amount=-1 +kerning first=8221 second=351 amount=-1 +kerning first=8221 second=353 amount=-1 +kerning first=8221 second=913 amount=-3 +kerning first=8221 second=916 amount=-3 +kerning first=8221 second=923 amount=-3 kerning first=8221 second=940 amount=-1 -kerning first=8225 second=249 amount=-1 -kerning first=55 second=193 amount=-5 -kerning first=198 second=83 amount=-1 -kerning first=313 second=233 amount=-1 -kerning first=75 second=333 amount=-2 -kerning first=95 second=949 amount=-1 -kerning first=1178 second=210 amount=-1 -kerning first=235 second=1299 amount=-1 -kerning first=266 second=84 amount=-1 -kerning first=175 second=334 amount=-2 -kerning first=289 second=246 amount=-1 -kerning first=56 second=346 amount=-1 -kerning first=1067 second=1035 amount=-5 -kerning first=196 second=950 amount=-1 -kerning first=199 second=258 amount=-1 -kerning first=8361 second=339 amount=-1 -kerning first=8364 second=101 amount=-1 -kerning first=82 second=45 amount=-1 -kerning first=931 second=235 amount=-1 -kerning first=119 second=1108 amount=-1 -kerning first=37 second=361 amount=-1 -kerning first=1027 second=8216 amount=-3 -kerning first=40 second=121 amount=-1 -kerning first=176 second=965 amount=-1 -kerning first=8230 second=1118 amount=-1 -kerning first=8250 second=354 amount=-3 -kerning first=57 second=1028 amount=-2 -kerning first=60 second=288 amount=-2 -kerning first=318 second=336 amount=-2 -kerning first=8365 second=279 amount=-1 -kerning first=223 second=350 amount=-1 -kerning first=103 second=362 amount=-2 -kerning first=100 second=1176 amount=-1 -kerning first=126 second=289 amount=-1 -kerning first=44 second=71 amount=-1 -kerning first=184 second=221 amount=-5 -kerning first=296 second=351 amount=-1 -kerning first=8260 second=1038 amount=-2 -kerning first=299 second=111 amount=-1 -kerning first=64 second=233 amount=-1 -kerning first=204 second=363 amount=-1 -kerning first=201 second=1177 amount=-1 -kerning first=8372 second=226 amount=-1 -kerning first=84 second=375 amount=-2 -kerning first=944 second=100 amount=-1 -kerning first=967 second=262 amount=-2 -kerning first=163 second=234 amount=-1 -kerning first=273 second=364 amount=-2 -kerning first=1049 second=199 amount=-2 -kerning first=185 second=376 amount=-5 -kerning first=297 second=1035 amount=-5 -kerning first=300 second=291 amount=-1 -kerning first=1081 second=339 amount=-1 -kerning first=205 second=1059 amount=-2 -kerning first=202 second=8212 amount=-2 -kerning first=1085 second=101 amount=-1 -kerning first=906 second=113 amount=-1 -kerning first=903 second=353 amount=-1 -kerning first=91 second=85 amount=-2 -kerning first=82 second=8249 amount=-1 -kerning first=1118 second=263 amount=-1 -kerning first=971 second=212 amount=-2 -kerning first=1051 second=354 amount=-5 -kerning first=183 second=8250 amount=-1 -kerning first=69 second=336 amount=-2 -kerning first=1083 second=970 amount=-1 -kerning first=1087 second=279 amount=-1 -kerning first=89 second=952 amount=-2 -kerning first=1170 second=213 amount=-2 -kerning first=347 second=8217 amount=-1 -kerning first=950 second=225 amount=-1 -kerning first=1219 second=355 amount=-1 -kerning first=1224 second=115 amount=-1 -kerning first=258 second=87 amount=-5 -kerning first=168 second=337 amount=-1 -kerning first=278 second=940 amount=-1 -kerning first=47 second=1114 amount=-1 -kerning first=53 second=111 amount=-1 -kerning first=50 second=351 amount=-1 -kerning first=190 second=953 amount=-1 -kerning first=193 second=261 amount=-1 -kerning first=1096 second=226 amount=-1 -kerning first=216 second=198 amount=-2 -kerning first=96 second=210 amount=-2 -kerning first=1171 second=368 amount=-2 -kerning first=236 second=338 amount=-2 -kerning first=239 second=100 amount=-1 -kerning first=356 second=941 amount=-3 -kerning first=113 second=1116 amount=2 -kerning first=379 second=1241 amount=-1 -kerning first=169 second=968 amount=-1 -kerning first=172 second=277 amount=-1 -kerning first=287 second=199 amount=-2 -kerning first=8224 second=357 amount=-1 +kerning first=8221 second=941 amount=-1 +kerning first=8221 second=945 amount=-1 +kerning first=8221 second=949 amount=-1 +kerning first=8221 second=959 amount=-1 +kerning first=8221 second=962 amount=-1 +kerning first=8221 second=963 amount=-1 +kerning first=8221 second=966 amount=-1 +kerning first=8221 second=972 amount=-1 +kerning first=8221 second=1032 amount=-4 +kerning first=8221 second=1033 amount=-3 +kerning first=8221 second=1040 amount=-3 +kerning first=8221 second=1044 amount=-3 +kerning first=8221 second=1051 amount=-3 +kerning first=8221 second=1072 amount=-1 +kerning first=8221 second=1077 amount=-1 +kerning first=8221 second=1086 amount=-1 +kerning first=8221 second=1089 amount=-1 +kerning first=8221 second=1092 amount=-1 +kerning first=8221 second=1104 amount=-1 +kerning first=8221 second=1105 amount=-1 +kerning first=8221 second=1108 amount=-1 +kerning first=8221 second=1109 amount=-1 +kerning first=8221 second=1195 amount=-1 +kerning first=8221 second=1241 amount=-1 +kerning first=8221 second=1257 amount=-1 +kerning first=8221 second=1298 amount=-3 +kerning first=8221 second=8218 amount=-1 +kerning first=8221 second=8222 amount=-1 +kerning first=8221 second=8230 amount=-1 +kerning first=8222 second=34 amount=-1 +kerning first=8222 second=39 amount=-1 +kerning first=8222 second=45 amount=-1 +kerning first=8222 second=48 amount=-1 +kerning first=8222 second=49 amount=-4 +kerning first=8222 second=51 amount=-1 +kerning first=8222 second=52 amount=-1 +kerning first=8222 second=53 amount=-1 +kerning first=8222 second=54 amount=-1 +kerning first=8222 second=55 amount=-1 +kerning first=8222 second=56 amount=-1 +kerning first=8222 second=67 amount=-1 +kerning first=8222 second=71 amount=-1 +kerning first=8222 second=79 amount=-1 +kerning first=8222 second=81 amount=-1 +kerning first=8222 second=84 amount=-5 +kerning first=8222 second=85 amount=-1 +kerning first=8222 second=86 amount=-4 +kerning first=8222 second=87 amount=-3 +kerning first=8222 second=89 amount=-4 +kerning first=8222 second=102 amount=-2 +kerning first=8222 second=103 amount=-1 +kerning first=8222 second=106 amount=2 +kerning first=8222 second=116 amount=-1 +kerning first=8222 second=117 amount=-1 +kerning first=8222 second=118 amount=-2 +kerning first=8222 second=119 amount=-2 +kerning first=8222 second=121 amount=-1 +kerning first=8222 second=173 amount=-1 +kerning first=8222 second=199 amount=-1 +kerning first=8222 second=210 amount=-1 +kerning first=8222 second=211 amount=-1 +kerning first=8222 second=212 amount=-1 +kerning first=8222 second=213 amount=-1 +kerning first=8222 second=214 amount=-1 +kerning first=8222 second=216 amount=-1 +kerning first=8222 second=217 amount=-1 +kerning first=8222 second=218 amount=-1 +kerning first=8222 second=219 amount=-1 +kerning first=8222 second=220 amount=-1 +kerning first=8222 second=221 amount=-4 +kerning first=8222 second=249 amount=-1 +kerning first=8222 second=250 amount=-1 +kerning first=8222 second=251 amount=-1 +kerning first=8222 second=252 amount=-1 +kerning first=8222 second=253 amount=-1 +kerning first=8222 second=262 amount=-1 +kerning first=8222 second=266 amount=-1 +kerning first=8222 second=268 amount=-1 +kerning first=8222 second=286 amount=-1 +kerning first=8222 second=287 amount=-1 +kerning first=8222 second=288 amount=-1 +kerning first=8222 second=289 amount=-1 +kerning first=8222 second=290 amount=-1 +kerning first=8222 second=291 amount=-1 +kerning first=8222 second=332 amount=-1 +kerning first=8222 second=334 amount=-1 +kerning first=8222 second=336 amount=-1 +kerning first=8222 second=338 amount=-1 +kerning first=8222 second=354 amount=-5 +kerning first=8222 second=355 amount=-1 +kerning first=8222 second=356 amount=-5 +kerning first=8222 second=357 amount=-1 +kerning first=8222 second=359 amount=-1 +kerning first=8222 second=360 amount=-1 +kerning first=8222 second=361 amount=-1 +kerning first=8222 second=362 amount=-1 +kerning first=8222 second=363 amount=-1 +kerning first=8222 second=364 amount=-1 +kerning first=8222 second=365 amount=-1 +kerning first=8222 second=366 amount=-1 +kerning first=8222 second=367 amount=-1 +kerning first=8222 second=368 amount=-1 +kerning first=8222 second=369 amount=-1 +kerning first=8222 second=370 amount=-1 +kerning first=8222 second=371 amount=-1 +kerning first=8222 second=372 amount=-3 +kerning first=8222 second=373 amount=-2 +kerning first=8222 second=374 amount=-4 +kerning first=8222 second=375 amount=-1 +kerning first=8222 second=376 amount=-4 +kerning first=8222 second=920 amount=-1 +kerning first=8222 second=927 amount=-1 +kerning first=8222 second=932 amount=-5 +kerning first=8222 second=933 amount=-4 +kerning first=8222 second=939 amount=-4 +kerning first=8222 second=947 amount=-2 +kerning first=8222 second=957 amount=-2 +kerning first=8222 second=964 amount=-3 +kerning first=8222 second=965 amount=-1 +kerning first=8222 second=968 amount=-1 +kerning first=8222 second=973 amount=-1 +kerning first=8222 second=1026 amount=-5 +kerning first=8222 second=1028 amount=-1 +kerning first=8222 second=1035 amount=-5 +kerning first=8222 second=1038 amount=-1 +kerning first=8222 second=1054 amount=-1 +kerning first=8222 second=1057 amount=-1 +kerning first=8222 second=1058 amount=-5 +kerning first=8222 second=1059 amount=-1 +kerning first=8222 second=1063 amount=-3 +kerning first=8222 second=1066 amount=-5 +kerning first=8222 second=1069 amount=-1 +kerning first=8222 second=1090 amount=-3 +kerning first=8222 second=1091 amount=-1 +kerning first=8222 second=1098 amount=-3 +kerning first=8222 second=1112 amount=2 +kerning first=8222 second=1118 amount=-1 +kerning first=8222 second=1176 amount=-1 +kerning first=8222 second=1184 amount=-5 +kerning first=8222 second=1185 amount=-3 +kerning first=8222 second=1194 amount=-1 +kerning first=8222 second=1198 amount=-4 +kerning first=8222 second=1199 amount=-2 +kerning first=8222 second=1240 amount=-1 +kerning first=8222 second=1256 amount=-1 +kerning first=8222 second=1262 amount=-1 +kerning first=8222 second=1263 amount=-1 +kerning first=8222 second=8211 amount=-1 +kerning first=8222 second=8212 amount=-1 +kerning first=8222 second=8216 amount=-1 +kerning first=8222 second=8217 amount=-1 +kerning first=8222 second=8220 amount=-1 +kerning first=8222 second=8221 amount=-1 +kerning first=8230 second=34 amount=-1 +kerning first=8230 second=39 amount=-1 +kerning first=8230 second=45 amount=-1 +kerning first=8230 second=48 amount=-1 +kerning first=8230 second=49 amount=-4 +kerning first=8230 second=51 amount=-1 +kerning first=8230 second=52 amount=-1 +kerning first=8230 second=53 amount=-1 +kerning first=8230 second=54 amount=-1 +kerning first=8230 second=55 amount=-1 +kerning first=8230 second=56 amount=-1 +kerning first=8230 second=67 amount=-1 +kerning first=8230 second=71 amount=-1 +kerning first=8230 second=79 amount=-1 +kerning first=8230 second=81 amount=-1 +kerning first=8230 second=84 amount=-5 +kerning first=8230 second=85 amount=-1 +kerning first=8230 second=86 amount=-4 +kerning first=8230 second=87 amount=-3 +kerning first=8230 second=89 amount=-4 +kerning first=8230 second=102 amount=-2 +kerning first=8230 second=103 amount=-1 +kerning first=8230 second=106 amount=2 +kerning first=8230 second=116 amount=-1 kerning first=8230 second=117 amount=-1 -kerning first=51 second=1035 amount=-5 -kerning first=54 second=291 amount=-1 -kerning first=197 second=211 amount=-2 -kerning first=306 second=1098 amount=-3 -kerning first=315 second=101 amount=-1 -kerning first=311 second=339 amount=-2 -kerning first=335 second=955 amount=-1 -kerning first=338 second=263 amount=-1 -kerning first=1174 second=1066 amount=-2 -kerning first=1298 second=240 amount=-1 -kerning first=1035 second=252 amount=-1 -kerning first=177 second=224 amount=-1 -kerning first=288 second=354 amount=-1 -kerning first=8260 second=67 amount=-2 -kerning first=195 second=1184 amount=-5 -kerning first=198 second=366 amount=-2 -kerning first=316 second=279 amount=-1 -kerning first=8363 second=229 amount=-1 -kerning first=224 second=63 amount=-2 -kerning first=95 second=8217 amount=-3 -kerning first=936 second=103 amount=-1 -kerning first=367 second=115 amount=-1 -kerning first=261 second=1185 amount=-1 -kerning first=36 second=940 amount=-1 -kerning first=289 second=1038 amount=-2 +kerning first=8230 second=118 amount=-2 +kerning first=8230 second=119 amount=-2 +kerning first=8230 second=121 amount=-1 +kerning first=8230 second=173 amount=-1 +kerning first=8230 second=199 amount=-1 +kerning first=8230 second=210 amount=-1 +kerning first=8230 second=211 amount=-1 +kerning first=8230 second=212 amount=-1 +kerning first=8230 second=213 amount=-1 +kerning first=8230 second=214 amount=-1 +kerning first=8230 second=216 amount=-1 +kerning first=8230 second=217 amount=-1 +kerning first=8230 second=218 amount=-1 +kerning first=8230 second=219 amount=-1 +kerning first=8230 second=220 amount=-1 +kerning first=8230 second=221 amount=-4 +kerning first=8230 second=249 amount=-1 +kerning first=8230 second=250 amount=-1 +kerning first=8230 second=251 amount=-1 +kerning first=8230 second=252 amount=-1 +kerning first=8230 second=253 amount=-1 +kerning first=8230 second=262 amount=-1 +kerning first=8230 second=266 amount=-1 +kerning first=8230 second=268 amount=-1 +kerning first=8230 second=286 amount=-1 +kerning first=8230 second=287 amount=-1 +kerning first=8230 second=288 amount=-1 +kerning first=8230 second=289 amount=-1 +kerning first=8230 second=290 amount=-1 +kerning first=8230 second=291 amount=-1 +kerning first=8230 second=332 amount=-1 +kerning first=8230 second=334 amount=-1 +kerning first=8230 second=336 amount=-1 +kerning first=8230 second=338 amount=-1 +kerning first=8230 second=354 amount=-5 +kerning first=8230 second=355 amount=-1 +kerning first=8230 second=356 amount=-5 +kerning first=8230 second=357 amount=-1 +kerning first=8230 second=359 amount=-1 +kerning first=8230 second=360 amount=-1 +kerning first=8230 second=361 amount=-1 +kerning first=8230 second=362 amount=-1 +kerning first=8230 second=363 amount=-1 +kerning first=8230 second=364 amount=-1 +kerning first=8230 second=365 amount=-1 +kerning first=8230 second=366 amount=-1 +kerning first=8230 second=367 amount=-1 +kerning first=8230 second=368 amount=-1 +kerning first=8230 second=369 amount=-1 +kerning first=8230 second=370 amount=-1 +kerning first=8230 second=371 amount=-1 +kerning first=8230 second=372 amount=-3 +kerning first=8230 second=373 amount=-2 +kerning first=8230 second=374 amount=-4 +kerning first=8230 second=375 amount=-1 +kerning first=8230 second=376 amount=-4 +kerning first=8230 second=920 amount=-1 +kerning first=8230 second=927 amount=-1 +kerning first=8230 second=932 amount=-5 +kerning first=8230 second=933 amount=-4 +kerning first=8230 second=939 amount=-4 +kerning first=8230 second=947 amount=-2 +kerning first=8230 second=957 amount=-2 +kerning first=8230 second=964 amount=-3 +kerning first=8230 second=965 amount=-1 +kerning first=8230 second=968 amount=-1 +kerning first=8230 second=973 amount=-1 +kerning first=8230 second=1026 amount=-5 +kerning first=8230 second=1028 amount=-1 +kerning first=8230 second=1035 amount=-5 +kerning first=8230 second=1038 amount=-1 +kerning first=8230 second=1054 amount=-1 +kerning first=8230 second=1057 amount=-1 +kerning first=8230 second=1058 amount=-5 +kerning first=8230 second=1059 amount=-1 +kerning first=8230 second=1063 amount=-3 +kerning first=8230 second=1066 amount=-5 +kerning first=8230 second=1069 amount=-1 +kerning first=8230 second=1090 amount=-3 +kerning first=8230 second=1091 amount=-1 +kerning first=8230 second=1098 amount=-3 +kerning first=8230 second=1112 amount=2 +kerning first=8230 second=1118 amount=-1 +kerning first=8230 second=1176 amount=-1 +kerning first=8230 second=1184 amount=-5 +kerning first=8230 second=1185 amount=-3 +kerning first=8230 second=1194 amount=-1 +kerning first=8230 second=1198 amount=-4 +kerning first=8230 second=1199 amount=-2 +kerning first=8230 second=1240 amount=-1 +kerning first=8230 second=1256 amount=-1 +kerning first=8230 second=1262 amount=-1 +kerning first=8230 second=1263 amount=-1 +kerning first=8230 second=8211 amount=-1 +kerning first=8230 second=8212 amount=-1 +kerning first=8230 second=8216 amount=-1 +kerning first=8230 second=8217 amount=-1 +kerning first=8230 second=8220 amount=-1 +kerning first=8230 second=8221 amount=-1 +kerning first=8249 second=65 amount=-1 +kerning first=8249 second=84 amount=-1 +kerning first=8249 second=88 amount=-1 +kerning first=8249 second=89 amount=-2 +kerning first=8249 second=120 amount=-1 +kerning first=8249 second=193 amount=-1 +kerning first=8249 second=194 amount=-1 +kerning first=8249 second=196 amount=-1 +kerning first=8249 second=197 amount=-1 +kerning first=8249 second=198 amount=-1 +kerning first=8249 second=221 amount=-2 +kerning first=8249 second=256 amount=-1 +kerning first=8249 second=258 amount=-1 +kerning first=8249 second=260 amount=-1 +kerning first=8249 second=354 amount=-1 +kerning first=8249 second=356 amount=-1 +kerning first=8249 second=374 amount=-2 +kerning first=8249 second=376 amount=-2 +kerning first=8249 second=913 amount=-1 +kerning first=8249 second=916 amount=-1 kerning first=8249 second=923 amount=-1 -kerning first=8361 second=1262 amount=-2 -kerning first=8364 second=1240 amount=-2 -kerning first=322 second=226 amount=-1 -kerning first=900 second=116 amount=-1 -kerning first=931 second=972 amount=-1 -kerning first=102 second=941 amount=-1 -kerning first=105 second=250 amount=-1 -kerning first=245 second=380 amount=-1 -kerning first=125 second=1241 amount=-1 -kerning first=161 second=187 amount=-1 -kerning first=43 second=199 amount=-2 -kerning first=1041 second=357 amount=-1 -kerning first=179 second=1079 amount=-1 -kerning first=186 second=89 amount=-5 -kerning first=60 second=1098 amount=-3 -kerning first=63 second=339 amount=-1 -kerning first=206 second=251 amount=-1 -kerning first=8370 second=332 amount=-2 -kerning first=86 second=263 amount=-1 -kerning first=89 second=38 amount=-2 -kerning first=1206 second=118 amount=-2 -kerning first=372 second=240 amount=-3 -kerning first=963 second=1194 amount=-2 -kerning first=271 second=943 amount=-1 -kerning first=1241 second=382 amount=-1 -kerning first=41 second=1118 amount=-1 -kerning first=47 second=114 amount=-1 -kerning first=44 second=354 amount=-5 -kerning first=190 second=39 amount=-3 -kerning first=64 second=970 amount=-1 -kerning first=1084 second=229 amount=-1 -kerning first=8372 second=963 amount=-1 -kerning first=8378 second=271 amount=-1 -kerning first=902 second=920 amount=-2 -kerning first=90 second=213 amount=-1 -kerning first=1117 second=371 amount=-1 -kerning first=113 second=115 amount=-1 -kerning first=253 second=267 amount=-1 -kerning first=1062 second=242 amount=-1 -kerning first=191 second=214 amount=-2 -kerning first=300 second=1101 amount=-1 -kerning first=1081 second=1262 amount=-2 -kerning first=1085 second=1240 amount=-2 -kerning first=214 second=116 amount=-1 -kerning first=211 second=356 amount=-2 -kerning first=91 second=368 amount=-2 -kerning first=1118 second=1069 amount=-1 -kerning first=1174 second=81 amount=-1 -kerning first=1223 second=243 amount=-1 -kerning first=374 second=1102 amount=-3 -kerning first=170 second=227 amount=-1 -kerning first=280 second=357 amount=-1 -kerning first=192 second=369 amount=-1 -kerning first=304 second=973 amount=-1 -kerning first=1095 second=332 amount=-2 -kerning first=92 second=1066 amount=-5 -kerning first=238 second=228 amount=-1 -kerning first=361 second=118 amount=-4 -kerning first=950 second=962 amount=-1 -kerning first=118 second=240 amount=-1 -kerning first=1262 second=193 amount=-2 -kerning first=255 second=1194 amount=-2 -kerning first=258 second=370 amount=-2 -kerning first=381 second=283 amount=-1 -kerning first=168 second=1256 amount=-2 -kerning first=289 second=67 amount=-2 -kerning first=8226 second=245 amount=-1 -kerning first=314 second=229 amount=-1 -kerning first=1096 second=963 amount=-1 -kerning first=1099 second=271 amount=-1 -kerning first=1102 second=44 amount=-1 -kerning first=915 second=1026 amount=-5 -kerning first=923 second=286 amount=-2 -kerning first=236 second=1257 amount=-1 -kerning first=958 second=218 amount=-2 -kerning first=1263 second=346 amount=-1 -kerning first=54 second=1101 amount=-1 -kerning first=1071 second=287 amount=-1 -kerning first=197 second=945 amount=-1 -kerning first=315 second=1240 amount=-1 -kerning first=8365 second=97 amount=-1 -kerning first=80 second=268 amount=-2 -kerning first=1103 second=219 amount=-2 -kerning first=338 second=1069 amount=-1 -kerning first=934 second=231 amount=-1 -kerning first=1177 second=1175 amount=-1 -kerning first=1184 second=361 amount=-1 -kerning first=960 second=373 amount=-4 -kerning first=1298 second=1028 amount=-2 -kerning first=38 second=357 amount=-1 -kerning first=41 second=117 amount=-1 -kerning first=180 second=269 amount=-1 -kerning first=8260 second=350 amount=-1 -kerning first=58 second=973 amount=-1 -kerning first=1076 second=232 amount=-1 -kerning first=321 second=332 amount=-2 -kerning first=8363 second=966 amount=-1 -kerning first=8366 second=275 amount=-1 -kerning first=84 second=216 amount=-1 -kerning first=1101 second=1203 amount=-2 -kerning first=227 second=106 amount=1 -kerning first=1202 second=71 amount=-1 -kerning first=370 second=193 amount=-2 -kerning first=967 second=83 amount=-1 -kerning first=160 second=283 amount=-1 -kerning first=39 second=1044 amount=-3 -kerning first=1046 second=245 amount=-2 -kerning first=185 second=217 amount=-2 -kerning first=65 second=229 amount=-1 -kerning first=205 second=359 amount=-1 -kerning first=322 second=963 amount=-1 -kerning first=325 second=271 amount=-1 -kerning first=1118 second=84 amount=-5 -kerning first=942 second=334 amount=-2 -kerning first=1203 second=246 amount=-1 -kerning first=251 second=218 amount=-2 -kerning first=371 second=346 amount=-1 -kerning first=164 second=230 amount=-1 -kerning first=270 second=1174 amount=-3 -kerning first=274 second=360 amount=-2 -kerning first=277 second=120 amount=-2 -kerning first=183 second=947 amount=-4 -kerning first=186 second=372 amount=-5 -kerning first=301 second=287 amount=-1 -kerning first=63 second=1262 amount=-2 -kerning first=1083 second=335 amount=-1 -kerning first=1087 second=97 amount=-1 -kerning first=330 second=219 amount=-2 -kerning first=901 second=1108 amount=-1 -kerning first=904 second=347 amount=-1 -kerning first=86 second=1069 amount=-1 -kerning first=92 second=81 amount=-2 -kerning first=1119 second=259 amount=-1 -kerning first=1170 second=34 amount=-3 -kerning first=347 second=1175 amount=-1 -kerning first=252 second=373 amount=-4 -kerning first=375 second=288 amount=-2 -kerning first=372 second=1028 amount=-2 +kerning first=8249 second=932 amount=-1 +kerning first=8249 second=933 amount=-2 +kerning first=8249 second=935 amount=-1 +kerning first=8249 second=939 amount=-2 +kerning first=8249 second=1026 amount=-1 +kerning first=8249 second=1033 amount=-1 +kerning first=8249 second=1035 amount=-1 +kerning first=8249 second=1040 amount=-1 +kerning first=8249 second=1044 amount=-1 +kerning first=8249 second=1046 amount=-1 +kerning first=8249 second=1051 amount=-1 +kerning first=8249 second=1058 amount=-1 +kerning first=8249 second=1061 amount=-1 +kerning first=8249 second=1066 amount=-1 +kerning first=8249 second=1078 amount=-1 +kerning first=8249 second=1093 amount=-1 +kerning first=8249 second=1174 amount=-1 +kerning first=8249 second=1175 amount=-1 +kerning first=8249 second=1184 amount=-1 +kerning first=8249 second=1198 amount=-2 +kerning first=8249 second=1202 amount=-1 +kerning first=8249 second=1203 amount=-1 +kerning first=8249 second=1298 amount=-1 +kerning first=8250 second=65 amount=-3 +kerning first=8250 second=83 amount=-1 +kerning first=8250 second=84 amount=-3 +kerning first=8250 second=86 amount=-2 +kerning first=8250 second=87 amount=-3 +kerning first=8250 second=88 amount=-3 +kerning first=8250 second=89 amount=-3 +kerning first=8250 second=106 amount=1 +kerning first=8250 second=120 amount=-2 +kerning first=8250 second=122 amount=-1 +kerning first=8250 second=193 amount=-3 +kerning first=8250 second=194 amount=-3 +kerning first=8250 second=196 amount=-3 +kerning first=8250 second=197 amount=-3 +kerning first=8250 second=198 amount=-3 +kerning first=8250 second=221 amount=-3 +kerning first=8250 second=256 amount=-3 +kerning first=8250 second=258 amount=-3 +kerning first=8250 second=260 amount=-3 +kerning first=8250 second=346 amount=-1 +kerning first=8250 second=350 amount=-1 +kerning first=8250 second=352 amount=-1 +kerning first=8250 second=354 amount=-3 +kerning first=8250 second=356 amount=-3 +kerning first=8250 second=372 amount=-3 +kerning first=8250 second=374 amount=-3 +kerning first=8250 second=376 amount=-3 +kerning first=8250 second=378 amount=-1 +kerning first=8250 second=380 amount=-1 +kerning first=8250 second=382 amount=-1 +kerning first=8250 second=913 amount=-3 +kerning first=8250 second=916 amount=-3 +kerning first=8250 second=923 amount=-3 +kerning first=8250 second=932 amount=-3 +kerning first=8250 second=933 amount=-3 +kerning first=8250 second=935 amount=-3 +kerning first=8250 second=939 amount=-3 +kerning first=8250 second=1026 amount=-3 +kerning first=8250 second=1029 amount=-1 +kerning first=8250 second=1033 amount=-2 +kerning first=8250 second=1035 amount=-3 +kerning first=8250 second=1040 amount=-3 +kerning first=8250 second=1044 amount=-2 +kerning first=8250 second=1046 amount=-3 +kerning first=8250 second=1051 amount=-2 +kerning first=8250 second=1058 amount=-3 +kerning first=8250 second=1061 amount=-3 +kerning first=8250 second=1066 amount=-3 +kerning first=8250 second=1071 amount=-1 +kerning first=8250 second=1078 amount=-2 +kerning first=8250 second=1093 amount=-2 +kerning first=8250 second=1112 amount=1 +kerning first=8250 second=1174 amount=-3 +kerning first=8250 second=1175 amount=-2 +kerning first=8250 second=1184 amount=-3 +kerning first=8250 second=1198 amount=-3 +kerning first=8250 second=1202 amount=-3 +kerning first=8250 second=1203 amount=-2 +kerning first=8250 second=1298 amount=-2 diff --git a/wizard-client/wizard-client-libgdx/core/src/main/resources/font/coolvetica.png b/wizard-client/wizard-client-libgdx/core/src/main/resources/font/coolvetica.png index 5298f6b1a74c6789f13efc8ee787b0d5c9130742..2de5dc0bddd3f2d8d88adc4df609ed00060bb836 100644 GIT binary patch literal 156566 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 z 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 (@Z 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 diff --git a/wizard-client/wizard-client-libgdx/core/src/main/resources/uiskin.json b/wizard-client/wizard-client-libgdx/core/src/main/resources/uiskin.json index 4f8b38e..a9754b5 100644 --- a/wizard-client/wizard-client-libgdx/core/src/main/resources/uiskin.json +++ b/wizard-client/wizard-client-libgdx/core/src/main/resources/uiskin.json @@ -16,6 +16,7 @@ "red": { "a": 1.0, "b": 0.0, "g": 0.0, "r": 1.0 }, "black": { "a": 1.0, "b": 0.0, "g": 0.0, "r": 0.0 }, "gold": { "a": 1.0, "b": 0.318, "g": 0.753, "r": 0.89 }, + "darkened_gold": { "a": 1.0, "b": 0.176, "g": 0.659, "r": 0.845 }, "dark_gold": { "a": 1.0, "b": 0.034, "g": 0.565, "r": 0.80 }, "darker_gold": { "a": 1.0, "b": 0.191, "g": 0.452, "r": 0.534 }, "light_gray": { "a": 1.0, "b": 0.6, "g": 0.6, "r": 0.6} @@ -47,6 +48,7 @@ "font": "enchanted", "fontColor": "gold", "downFontColor": "dark_gold", + "overFontColor": "darkened_gold", "disabledFontColor" : "darker_gold" }, "simple": { @@ -192,7 +194,7 @@ "default": { "minus": "tree-minus", "plus": "tree-plus", - "selection": "default-select-selection" + "selection": "selection" } }, "TextTooltipStyle": {