From 2b4f629094f06b7fc4cf248f3860d02b76e3705b Mon Sep 17 00:00:00 2001 From: Jonah Bauer Date: Tue, 14 Dec 2021 14:00:59 +0100 Subject: [PATCH] visual improvements --- .../libgdx/listeners/ResetErrorListener.java | 35 +- .../libgdx/screens/CreateGameScreen.java | 7 +- .../client/libgdx/screens/LobbyScreen.java | 51 +- .../src/main/resources/font/coolvetica.fnt | 55895 +++++++++++++++- .../src/main/resources/font/coolvetica.png | Bin 92390 -> 106546 bytes .../core/src/main/resources/uiskin.json | 6 +- .../textures/uiskin/default-pane-error.9.png | Bin 0 -> 223 bytes .../main/textures/uiskin/default-pane.9.png | Bin 311 -> 225 bytes .../uiskin/default-select-selection.9.png | Bin 85 -> 0 bytes .../src/main/textures/uiskin/selection.9.png | Bin 0 -> 185 bytes .../src/main/textures/uiskin/selection.png | Bin 119 -> 0 bytes .../textures/uiskin/textfield-error.9.png | Bin 236 -> 248 bytes .../src/main/textures/uiskin/textfield.9.png | Bin 241 -> 253 bytes 13 files changed, 55481 insertions(+), 513 deletions(-) create mode 100644 wizard-client/wizard-client-libgdx/core/src/main/textures/uiskin/default-pane-error.9.png delete mode 100644 wizard-client/wizard-client-libgdx/core/src/main/textures/uiskin/default-select-selection.9.png create mode 100644 wizard-client/wizard-client-libgdx/core/src/main/textures/uiskin/selection.9.png delete mode 100644 wizard-client/wizard-client-libgdx/core/src/main/textures/uiskin/selection.png diff --git a/wizard-client/wizard-client-libgdx/core/src/main/java/eu/jonahbauer/wizard/client/libgdx/listeners/ResetErrorListener.java b/wizard-client/wizard-client-libgdx/core/src/main/java/eu/jonahbauer/wizard/client/libgdx/listeners/ResetErrorListener.java index 57c9086..904ab9c 100644 --- a/wizard-client/wizard-client-libgdx/core/src/main/java/eu/jonahbauer/wizard/client/libgdx/listeners/ResetErrorListener.java +++ b/wizard-client/wizard-client-libgdx/core/src/main/java/eu/jonahbauer/wizard/client/libgdx/listeners/ResetErrorListener.java @@ -1,22 +1,39 @@ package eu.jonahbauer.wizard.client.libgdx.listeners; import com.badlogic.gdx.scenes.scene2d.Actor; -import com.badlogic.gdx.scenes.scene2d.ui.SelectBox; -import com.badlogic.gdx.scenes.scene2d.ui.Skin; -import com.badlogic.gdx.scenes.scene2d.ui.TextField; +import com.badlogic.gdx.scenes.scene2d.ui.*; import com.badlogic.gdx.scenes.scene2d.utils.ChangeListener; -import lombok.RequiredArgsConstructor; -@RequiredArgsConstructor public class ResetErrorListener extends ChangeListener { private final Skin skin; + private final Actor target; + private final String style; + + public ResetErrorListener(Skin skin) { + this(skin, null); + } + + public ResetErrorListener(Skin skin, Actor target) { + this(skin, target, "default"); + } + + public ResetErrorListener(Skin skin, Actor target, String style) { + this.skin = skin; + this.target = target; + this.style = style; + } @Override public void changed(ChangeEvent event, Actor actor) { - if (event.getTarget() instanceof TextField textField) { - textField.setStyle(skin.get(TextField.TextFieldStyle.class)); - } else if (event.getTarget() instanceof SelectBox box) { - box.setStyle(skin.get(SelectBox.SelectBoxStyle.class)); + var target = this.target != null ? this.target : event.getTarget(); + if (target instanceof TextField textField) { + textField.setStyle(skin.get(style, TextField.TextFieldStyle.class)); + } else if (target instanceof SelectBox box) { + box.setStyle(skin.get(style, SelectBox.SelectBoxStyle.class)); + } else if (target instanceof List list) { + list.setStyle(skin.get(style, List.ListStyle.class)); + } else if (target instanceof ScrollPane scrollPane) { + scrollPane.setStyle(skin.get(style, ScrollPane.ScrollPaneStyle.class)); } } } 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 fbef258..823cabc 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 @@ -29,6 +29,7 @@ public class CreateGameScreen extends MenuScreen { sfxClick(); } else if (actor == buttonContinue) { create(); + sfxClick(); } } }; @@ -125,14 +126,14 @@ public class CreateGameScreen extends MenuScreen { String sessionName = this.sessionName.getText(); if (sessionName.isBlank()) { - System.out.println("Please select a session name."); + System.out.println("Please choose a session name."); this.sessionName.setStyle(game.data.skin.get("error", TextField.TextFieldStyle.class)); error = true; } String playerName = this.playerName.getText(); if (playerName.isBlank()) { - System.out.println("Please select a name."); + System.out.println("Please choose a name."); this.playerName.setStyle(game.data.skin.get("error", TextField.TextFieldStyle.class)); error = true; } @@ -141,7 +142,7 @@ public class CreateGameScreen extends MenuScreen { try { timeout = Long.parseLong(this.timeOut.getText()); } catch (NumberFormatException e) { - System.out.println("Please select a valid timeout."); + System.out.println("Please choose a valid timeout."); this.timeOut.setStyle(game.data.skin.get("error", TextField.TextFieldStyle.class)); error = true; } 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 8b82517..a6d475f 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 @@ -6,6 +6,7 @@ import com.badlogic.gdx.scenes.scene2d.ui.*; import com.badlogic.gdx.scenes.scene2d.utils.ChangeListener; 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.Menu; import eu.jonahbauer.wizard.common.messages.client.JoinSessionMessage; @@ -30,6 +31,7 @@ public class LobbyScreen extends MenuScreen { private UUID selectedSession; private List sessions; + private ScrollPane sessionListContainer; private final Map sessionData = new HashMap<>(); private final ChangeListener listener = new ChangeListener() { @@ -39,16 +41,7 @@ public class LobbyScreen extends MenuScreen { game.getClient().transition(new Menu()); sfxClick(); } else if (actor == buttonJoin) { - if(playerName.getText().isEmpty()) { - System.out.println("Please choose a player name"); - game.getClient().transition(new Menu()); - } - if (selectedSession != null) { - var name = playerName.getText(); - var session = sessionData.get(selectedSession); - game.getClient().transition(new AwaitingJoinSession(session.getUuid(), session.getName(), session.getConfiguration(), name)); - game.getClient().send(new JoinSessionMessage(selectedSession, name)); - } + join(); sfxClick(); } else if (actor == buttonCreate) { game.setScreen(new CreateGameScreen(game)); @@ -83,14 +76,16 @@ public class LobbyScreen extends MenuScreen { updateData(selected); } }); - - var listContainer = new AutoFocusScrollPane(sessions, game.data.skin); - listContainer.layout(); - + + sessionListContainer = new AutoFocusScrollPane(sessions, game.data.skin); + sessionListContainer.layout(); + + sessions.addListener(new ResetErrorListener(game.data.skin, sessionListContainer)); + var content = new HorizontalGroup().grow().space(20); content.setPosition(0.25f * WizardGame.WIDTH, 0.3f * WizardGame.HEIGHT); content.setSize(0.5f * WizardGame.WIDTH, 400); - content.addActor(new Container<>(listContainer).width(0.2f * WizardGame.WIDTH).height(400)); + content.addActor(new Container<>(sessionListContainer).width(0.2f * WizardGame.WIDTH).height(400)); content.addActor(createInfoTable()); content.layout(); @@ -177,6 +172,8 @@ public class LobbyScreen extends MenuScreen { float infoTableWidth = 0.3f * WizardGame.WIDTH - 20; playerName = new TextField("", game.data.skin); + playerName.addListener(new ResetErrorListener(game.data.skin)); + labelSessionName = new Label("", game.data.skin, "textfield"); labelSessionConfiguration = new Label("", game.data.skin, "textfield"); labelSessionPlayerCount = new Label("", game.data.skin, "textfield"); @@ -200,4 +197,28 @@ public class LobbyScreen extends MenuScreen { return infoTable; } + + private void join() { + boolean error = false; + + String playerName = this.playerName.getText(); + if (playerName.isBlank()) { + System.out.println("Please choose a player name"); + this.playerName.setStyle(game.data.skin.get("error", TextField.TextFieldStyle.class)); + error = true; + } + + SessionData session = sessionData.get(selectedSession); + if (session == null) { + System.out.println("Please select a session."); + this.sessionListContainer.setStyle(game.data.skin.get("error", ScrollPane.ScrollPaneStyle.class)); + error = true; + } + + if (!error) { + var client = game.getClient(); + client.transition(new AwaitingJoinSession(session.getUuid(), session.getName(), session.getConfiguration(), playerName)); + client.send(new JoinSessionMessage(selectedSession, playerName)); + } + } } 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 f4cd6c3..e3321d7 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,485 +1,55410 @@ -info face="CoolveticaRg-Regular" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=1,1,1,0 spacing=0,0 -common lineHeight=41 base=31 scaleW=512 scaleH=512 pages=1 packed=0 -page id=0 file="coolvetica.png" -chars count=481 -char id=0 x=19 y=233 width=14 height=24 xoffset=1 yoffset=8 xadvance=15 page=0 chnl=0 -char id=13 x=19 y=233 width=14 height=24 xoffset=1 yoffset=8 xadvance=15 page=0 chnl=0 -char id=33 x=501 y=208 width=6 height=23 xoffset=2 yoffset=9 xadvance=9 page=0 chnl=0 -char id=34 x=188 y=388 width=9 height=10 xoffset=1 yoffset=9 xadvance=11 page=0 chnl=0 -char id=35 x=103 y=258 width=17 height=23 xoffset=0 yoffset=9 xadvance=17 page=0 chnl=0 -char id=36 x=476 y=127 width=17 height=26 xoffset=0 yoffset=7 xadvance=17 page=0 chnl=0 -char id=37 x=33 y=233 width=22 height=24 xoffset=1 yoffset=9 xadvance=23 page=0 chnl=0 -char id=38 x=55 y=233 width=16 height=24 xoffset=1 yoffset=9 xadvance=18 page=0 chnl=0 -char id=39 x=507 y=208 width=4 height=10 xoffset=1 yoffset=9 xadvance=6 page=0 chnl=0 -char id=40 x=423 y=66 width=10 height=30 xoffset=2 yoffset=7 xadvance=11 page=0 chnl=0 -char id=41 x=433 y=66 width=10 height=30 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 -char id=42 x=447 y=370 width=17 height=17 xoffset=1 yoffset=9 xadvance=19 page=0 chnl=0 -char id=43 x=464 y=370 width=16 height=17 xoffset=1 yoffset=12 xadvance=18 page=0 chnl=0 -char id=44 x=110 y=388 width=6 height=11 xoffset=1 yoffset=26 xadvance=7 page=0 chnl=0 -char id=45 x=276 y=388 width=9 height=6 xoffset=1 yoffset=18 xadvance=11 page=0 chnl=0 -char id=46 x=285 y=388 width=6 height=6 xoffset=1 yoffset=26 xadvance=7 page=0 chnl=0 -char id=47 x=120 y=258 width=12 height=23 xoffset=-1 yoffset=9 xadvance=11 page=0 chnl=0 -char id=48 x=71 y=233 width=16 height=24 xoffset=1 yoffset=9 xadvance=17 page=0 chnl=0 -char id=49 x=132 y=258 width=11 height=23 xoffset=0 yoffset=9 xadvance=11 page=0 chnl=0 -char id=50 x=143 y=258 width=16 height=23 xoffset=1 yoffset=9 xadvance=17 page=0 chnl=0 -char id=51 x=87 y=233 width=16 height=24 xoffset=1 yoffset=9 xadvance=17 page=0 chnl=0 -char id=52 x=159 y=258 width=17 height=23 xoffset=0 yoffset=9 xadvance=17 page=0 chnl=0 -char id=53 x=103 y=233 width=17 height=24 xoffset=0 yoffset=9 xadvance=17 page=0 chnl=0 -char id=54 x=120 y=233 width=16 height=24 xoffset=1 yoffset=9 xadvance=17 page=0 chnl=0 -char id=55 x=176 y=258 width=16 height=23 xoffset=1 yoffset=9 xadvance=18 page=0 chnl=0 -char id=56 x=136 y=233 width=16 height=24 xoffset=1 yoffset=9 xadvance=18 page=0 chnl=0 -char id=57 x=152 y=233 width=16 height=24 xoffset=1 yoffset=9 xadvance=17 page=0 chnl=0 -char id=58 x=502 y=351 width=6 height=17 xoffset=1 yoffset=15 xadvance=7 page=0 chnl=0 -char id=59 x=505 y=282 width=6 height=22 xoffset=1 yoffset=15 xadvance=7 page=0 chnl=0 -char id=60 x=495 y=328 width=16 height=18 xoffset=1 yoffset=11 xadvance=18 page=0 chnl=0 -char id=61 x=71 y=388 width=16 height=12 xoffset=1 yoffset=14 xadvance=18 page=0 chnl=0 -char id=62 x=19 y=351 width=16 height=18 xoffset=1 yoffset=11 xadvance=18 page=0 chnl=0 -char id=63 x=192 y=258 width=16 height=23 xoffset=1 yoffset=9 xadvance=17 page=0 chnl=0 -char id=64 x=176 y=182 width=23 height=25 xoffset=1 yoffset=10 xadvance=25 page=0 chnl=0 -char id=65 x=208 y=258 width=22 height=23 xoffset=0 yoffset=9 xadvance=22 page=0 chnl=0 -char id=66 x=230 y=258 width=19 height=23 xoffset=1 yoffset=9 xadvance=20 page=0 chnl=0 -char id=67 x=199 y=182 width=20 height=25 xoffset=1 yoffset=8 xadvance=21 page=0 chnl=0 -char id=68 x=249 y=258 width=19 height=23 xoffset=1 yoffset=9 xadvance=21 page=0 chnl=0 -char id=69 x=268 y=258 width=17 height=23 xoffset=1 yoffset=9 xadvance=19 page=0 chnl=0 -char id=70 x=285 y=258 width=16 height=23 xoffset=1 yoffset=9 xadvance=18 page=0 chnl=0 -char id=71 x=168 y=233 width=21 height=24 xoffset=1 yoffset=9 xadvance=23 page=0 chnl=0 -char id=72 x=301 y=258 width=18 height=23 xoffset=1 yoffset=9 xadvance=20 page=0 chnl=0 -char id=73 x=504 y=97 width=6 height=23 xoffset=1 yoffset=9 xadvance=7 page=0 chnl=0 -char id=74 x=189 y=233 width=15 height=24 xoffset=1 yoffset=9 xadvance=16 page=0 chnl=0 -char id=75 x=319 y=258 width=20 height=23 xoffset=1 yoffset=9 xadvance=20 page=0 chnl=0 -char id=76 x=339 y=258 width=16 height=23 xoffset=1 yoffset=9 xadvance=18 page=0 chnl=0 -char id=77 x=355 y=258 width=22 height=23 xoffset=1 yoffset=9 xadvance=24 page=0 chnl=0 -char id=78 x=377 y=258 width=19 height=23 xoffset=1 yoffset=9 xadvance=20 page=0 chnl=0 -char id=79 x=219 y=182 width=22 height=25 xoffset=1 yoffset=8 xadvance=23 page=0 chnl=0 -char id=80 x=396 y=258 width=18 height=23 xoffset=1 yoffset=9 xadvance=19 page=0 chnl=0 -char id=81 x=443 y=66 width=22 height=30 xoffset=1 yoffset=9 xadvance=24 page=0 chnl=0 -char id=82 x=414 y=258 width=19 height=23 xoffset=1 yoffset=9 xadvance=20 page=0 chnl=0 -char id=83 x=241 y=182 width=19 height=25 xoffset=1 yoffset=8 xadvance=20 page=0 chnl=0 -char id=84 x=433 y=258 width=18 height=23 xoffset=1 yoffset=9 xadvance=20 page=0 chnl=0 -char id=85 x=204 y=233 width=18 height=24 xoffset=1 yoffset=9 xadvance=20 page=0 chnl=0 -char id=86 x=451 y=258 width=20 height=23 xoffset=0 yoffset=9 xadvance=20 page=0 chnl=0 -char id=87 x=471 y=258 width=29 height=23 xoffset=0 yoffset=9 xadvance=28 page=0 chnl=0 -char id=88 x=0 y=282 width=21 height=23 xoffset=0 yoffset=9 xadvance=20 page=0 chnl=0 -char id=89 x=21 y=282 width=21 height=23 xoffset=-1 yoffset=9 xadvance=20 page=0 chnl=0 -char id=90 x=42 y=282 width=17 height=23 xoffset=1 yoffset=9 xadvance=19 page=0 chnl=0 -char id=91 x=456 y=97 width=9 height=29 xoffset=2 yoffset=7 xadvance=11 page=0 chnl=0 -char id=92 x=59 y=282 width=12 height=23 xoffset=-1 yoffset=9 xadvance=10 page=0 chnl=0 -char id=93 x=465 y=97 width=10 height=29 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=0 -char id=94 x=260 y=388 width=16 height=8 xoffset=0 yoffset=9 xadvance=16 page=0 chnl=0 -char id=95 x=380 y=388 width=17 height=4 xoffset=0 yoffset=32 xadvance=17 page=0 chnl=0 -char id=96 x=217 y=388 width=10 height=9 xoffset=1 yoffset=6 xadvance=12 page=0 chnl=0 -char id=97 x=35 y=351 width=16 height=18 xoffset=1 yoffset=14 xadvance=17 page=0 chnl=0 -char id=98 x=71 y=282 width=17 height=23 xoffset=1 yoffset=9 xadvance=18 page=0 chnl=0 -char id=99 x=51 y=351 width=16 height=18 xoffset=1 yoffset=14 xadvance=17 page=0 chnl=0 -char id=100 x=88 y=282 width=17 height=23 xoffset=1 yoffset=9 xadvance=18 page=0 chnl=0 -char id=101 x=67 y=351 width=16 height=18 xoffset=1 yoffset=14 xadvance=18 page=0 chnl=0 -char id=102 x=500 y=258 width=10 height=23 xoffset=1 yoffset=9 xadvance=12 page=0 chnl=0 -char id=103 x=260 y=182 width=17 height=25 xoffset=1 yoffset=14 xadvance=18 page=0 chnl=0 -char id=104 x=105 y=282 width=16 height=23 xoffset=1 yoffset=9 xadvance=17 page=0 chnl=0 -char id=105 x=121 y=282 width=6 height=23 xoffset=1 yoffset=9 xadvance=7 page=0 chnl=0 -char id=106 x=465 y=66 width=14 height=30 xoffset=-7 yoffset=9 xadvance=7 page=0 chnl=0 -char id=107 x=127 y=282 width=16 height=23 xoffset=1 yoffset=9 xadvance=17 page=0 chnl=0 -char id=108 x=504 y=97 width=6 height=23 xoffset=1 yoffset=9 xadvance=7 page=0 chnl=0 -char id=109 x=83 y=351 width=24 height=18 xoffset=1 yoffset=14 xadvance=26 page=0 chnl=0 -char id=110 x=107 y=351 width=16 height=18 xoffset=1 yoffset=14 xadvance=17 page=0 chnl=0 -char id=111 x=123 y=351 width=17 height=18 xoffset=1 yoffset=14 xadvance=19 page=0 chnl=0 -char id=112 x=277 y=182 width=17 height=25 xoffset=1 yoffset=14 xadvance=18 page=0 chnl=0 -char id=113 x=294 y=182 width=25 height=25 xoffset=1 yoffset=14 xadvance=18 page=0 chnl=0 -char id=114 x=140 y=351 width=10 height=18 xoffset=1 yoffset=14 xadvance=12 page=0 chnl=0 -char id=115 x=150 y=351 width=16 height=18 xoffset=1 yoffset=14 xadvance=17 page=0 chnl=0 -char id=116 x=418 y=328 width=14 height=22 xoffset=1 yoffset=10 xadvance=16 page=0 chnl=0 -char id=117 x=166 y=351 width=16 height=18 xoffset=1 yoffset=14 xadvance=17 page=0 chnl=0 -char id=118 x=182 y=351 width=17 height=18 xoffset=0 yoffset=14 xadvance=17 page=0 chnl=0 -char id=119 x=199 y=351 width=24 height=18 xoffset=0 yoffset=14 xadvance=24 page=0 chnl=0 -char id=120 x=223 y=351 width=17 height=18 xoffset=0 yoffset=14 xadvance=17 page=0 chnl=0 -char id=121 x=319 y=182 width=16 height=25 xoffset=1 yoffset=14 xadvance=17 page=0 chnl=0 -char id=122 x=240 y=351 width=14 height=18 xoffset=1 yoffset=14 xadvance=16 page=0 chnl=0 -char id=123 x=475 y=97 width=11 height=29 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 -char id=124 x=486 y=97 width=4 height=29 xoffset=4 yoffset=7 xadvance=12 page=0 chnl=0 -char id=125 x=490 y=97 width=10 height=29 xoffset=1 yoffset=7 xadvance=12 page=0 chnl=0 -char id=126 x=227 y=388 width=17 height=9 xoffset=1 yoffset=16 xadvance=19 page=0 chnl=0 -char id=160 x=0 y=0 width=0 height=0 xoffset=0 yoffset=30 xadvance=9 page=0 chnl=0 -char id=161 x=143 y=282 width=7 height=23 xoffset=1 yoffset=9 xadvance=9 page=0 chnl=0 -char id=162 x=150 y=282 width=16 height=23 xoffset=1 yoffset=9 xadvance=17 page=0 chnl=0 -char id=163 x=166 y=282 width=15 height=23 xoffset=1 yoffset=9 xadvance=17 page=0 chnl=0 -char id=164 x=0 y=351 width=19 height=19 xoffset=0 yoffset=11 xadvance=19 page=0 chnl=0 -char id=165 x=181 y=282 width=18 height=23 xoffset=0 yoffset=9 xadvance=18 page=0 chnl=0 -char id=166 x=500 y=97 width=4 height=29 xoffset=4 yoffset=7 xadvance=12 page=0 chnl=0 -char id=167 x=232 y=127 width=17 height=28 xoffset=1 yoffset=9 xadvance=19 page=0 chnl=0 -char id=168 x=291 y=388 width=12 height=6 xoffset=2 yoffset=8 xadvance=15 page=0 chnl=0 -char id=169 x=222 y=233 width=22 height=24 xoffset=1 yoffset=8 xadvance=24 page=0 chnl=0 -char id=170 x=116 y=388 width=9 height=11 xoffset=1 yoffset=12 xadvance=12 page=0 chnl=0 -char id=171 x=495 y=370 width=16 height=14 xoffset=0 yoffset=14 xadvance=16 page=0 chnl=0 -char id=172 x=254 y=351 width=20 height=18 xoffset=0 yoffset=14 xadvance=20 page=0 chnl=0 -char id=173 x=276 y=388 width=9 height=6 xoffset=1 yoffset=18 xadvance=11 page=0 chnl=0 -char id=174 x=0 y=388 width=13 height=14 xoffset=1 yoffset=8 xadvance=15 page=0 chnl=0 -char id=175 x=303 y=388 width=13 height=6 xoffset=2 yoffset=7 xadvance=17 page=0 chnl=0 -char id=176 x=87 y=388 width=11 height=12 xoffset=1 yoffset=9 xadvance=13 page=0 chnl=0 -char id=177 x=463 y=328 width=16 height=21 xoffset=1 yoffset=12 xadvance=18 page=0 chnl=0 -char id=178 x=47 y=388 width=9 height=13 xoffset=1 yoffset=8 xadvance=10 page=0 chnl=0 -char id=179 x=56 y=388 width=8 height=13 xoffset=1 yoffset=8 xadvance=10 page=0 chnl=0 -char id=180 x=244 y=388 width=10 height=9 xoffset=1 yoffset=6 xadvance=12 page=0 chnl=0 -char id=182 x=249 y=127 width=19 height=28 xoffset=0 yoffset=9 xadvance=19 page=0 chnl=0 -char id=183 x=285 y=388 width=6 height=6 xoffset=1 yoffset=18 xadvance=7 page=0 chnl=0 -char id=184 x=254 y=388 width=6 height=9 xoffset=2 yoffset=31 xadvance=9 page=0 chnl=0 -char id=185 x=64 y=388 width=7 height=13 xoffset=0 yoffset=8 xadvance=7 page=0 chnl=0 -char id=186 x=125 y=388 width=10 height=11 xoffset=1 yoffset=12 xadvance=12 page=0 chnl=0 -char id=187 x=13 y=388 width=16 height=14 xoffset=0 yoffset=14 xadvance=16 page=0 chnl=0 -char id=188 x=335 y=182 width=20 height=25 xoffset=0 yoffset=8 xadvance=21 page=0 chnl=0 -char id=189 x=355 y=182 width=21 height=25 xoffset=0 yoffset=8 xadvance=22 page=0 chnl=0 -char id=190 x=376 y=182 width=20 height=25 xoffset=1 yoffset=8 xadvance=22 page=0 chnl=0 -char id=191 x=244 y=233 width=16 height=24 xoffset=1 yoffset=9 xadvance=17 page=0 chnl=0 -char id=192 x=399 y=0 width=22 height=31 xoffset=0 yoffset=1 xadvance=22 page=0 chnl=0 -char id=193 x=421 y=0 width=22 height=31 xoffset=0 yoffset=1 xadvance=22 page=0 chnl=0 -char id=194 x=443 y=0 width=22 height=31 xoffset=0 yoffset=1 xadvance=22 page=0 chnl=0 -char id=195 x=479 y=66 width=22 height=30 xoffset=0 yoffset=2 xadvance=22 page=0 chnl=0 -char id=196 x=0 y=97 width=22 height=30 xoffset=-1 yoffset=2 xadvance=21 page=0 chnl=0 -char id=197 x=465 y=0 width=22 height=31 xoffset=0 yoffset=1 xadvance=22 page=0 chnl=0 -char id=198 x=199 y=282 width=29 height=23 xoffset=0 yoffset=9 xadvance=30 page=0 chnl=0 -char id=199 x=487 y=0 width=21 height=31 xoffset=1 yoffset=9 xadvance=21 page=0 chnl=0 -char id=200 x=0 y=35 width=17 height=31 xoffset=1 yoffset=1 xadvance=19 page=0 chnl=0 -char id=201 x=17 y=35 width=17 height=31 xoffset=1 yoffset=1 xadvance=19 page=0 chnl=0 -char id=202 x=34 y=35 width=17 height=31 xoffset=1 yoffset=1 xadvance=19 page=0 chnl=0 -char id=203 x=22 y=97 width=17 height=30 xoffset=1 yoffset=2 xadvance=19 page=0 chnl=0 -char id=204 x=51 y=35 width=10 height=31 xoffset=-2 yoffset=1 xadvance=7 page=0 chnl=0 -char id=205 x=61 y=35 width=10 height=31 xoffset=0 yoffset=1 xadvance=7 page=0 chnl=0 -char id=206 x=71 y=35 width=13 height=31 xoffset=-3 yoffset=1 xadvance=7 page=0 chnl=0 -char id=207 x=39 y=97 width=12 height=30 xoffset=-2 yoffset=2 xadvance=7 page=0 chnl=0 -char id=208 x=228 y=282 width=20 height=23 xoffset=0 yoffset=9 xadvance=21 page=0 chnl=0 -char id=209 x=51 y=97 width=19 height=30 xoffset=1 yoffset=2 xadvance=20 page=0 chnl=0 -char id=210 x=84 y=35 width=22 height=31 xoffset=1 yoffset=2 xadvance=23 page=0 chnl=0 -char id=211 x=106 y=35 width=22 height=31 xoffset=1 yoffset=2 xadvance=23 page=0 chnl=0 -char id=212 x=33 y=0 width=22 height=33 xoffset=1 yoffset=0 xadvance=23 page=0 chnl=0 -char id=213 x=128 y=35 width=22 height=31 xoffset=1 yoffset=2 xadvance=23 page=0 chnl=0 -char id=214 x=150 y=35 width=22 height=31 xoffset=1 yoffset=2 xadvance=23 page=0 chnl=0 -char id=215 x=480 y=370 width=15 height=16 xoffset=1 yoffset=12 xadvance=18 page=0 chnl=0 -char id=216 x=0 y=156 width=22 height=26 xoffset=1 yoffset=8 xadvance=23 page=0 chnl=0 -char id=217 x=274 y=0 width=18 height=32 xoffset=1 yoffset=1 xadvance=20 page=0 chnl=0 -char id=218 x=292 y=0 width=18 height=32 xoffset=1 yoffset=1 xadvance=20 page=0 chnl=0 -char id=219 x=55 y=0 width=18 height=33 xoffset=1 yoffset=0 xadvance=20 page=0 chnl=0 -char id=220 x=172 y=35 width=18 height=31 xoffset=1 yoffset=2 xadvance=20 page=0 chnl=0 -char id=221 x=190 y=35 width=21 height=31 xoffset=-1 yoffset=1 xadvance=20 page=0 chnl=0 -char id=222 x=248 y=282 width=18 height=23 xoffset=1 yoffset=9 xadvance=19 page=0 chnl=0 -char id=223 x=266 y=282 width=17 height=23 xoffset=1 yoffset=9 xadvance=18 page=0 chnl=0 -char id=224 x=493 y=127 width=16 height=26 xoffset=1 yoffset=6 xadvance=17 page=0 chnl=0 -char id=225 x=22 y=156 width=16 height=26 xoffset=1 yoffset=6 xadvance=17 page=0 chnl=0 -char id=226 x=38 y=156 width=16 height=26 xoffset=1 yoffset=6 xadvance=17 page=0 chnl=0 -char id=227 x=396 y=182 width=16 height=25 xoffset=1 yoffset=7 xadvance=17 page=0 chnl=0 -char id=228 x=412 y=182 width=16 height=25 xoffset=1 yoffset=7 xadvance=17 page=0 chnl=0 -char id=229 x=54 y=156 width=16 height=26 xoffset=1 yoffset=6 xadvance=17 page=0 chnl=0 -char id=230 x=274 y=351 width=26 height=18 xoffset=1 yoffset=14 xadvance=28 page=0 chnl=0 -char id=231 x=70 y=156 width=16 height=26 xoffset=1 yoffset=14 xadvance=17 page=0 chnl=0 -char id=232 x=86 y=156 width=16 height=26 xoffset=1 yoffset=6 xadvance=18 page=0 chnl=0 -char id=233 x=102 y=156 width=16 height=26 xoffset=1 yoffset=6 xadvance=18 page=0 chnl=0 -char id=234 x=118 y=156 width=16 height=26 xoffset=1 yoffset=6 xadvance=18 page=0 chnl=0 -char id=235 x=428 y=182 width=16 height=25 xoffset=1 yoffset=7 xadvance=18 page=0 chnl=0 -char id=236 x=134 y=156 width=10 height=26 xoffset=-1 yoffset=6 xadvance=10 page=0 chnl=0 -char id=237 x=144 y=156 width=10 height=26 xoffset=1 yoffset=6 xadvance=10 page=0 chnl=0 -char id=238 x=154 y=156 width=14 height=26 xoffset=-2 yoffset=6 xadvance=10 page=0 chnl=0 -char id=239 x=260 y=233 width=12 height=24 xoffset=-1 yoffset=8 xadvance=9 page=0 chnl=0 -char id=240 x=272 y=233 width=17 height=24 xoffset=1 yoffset=8 xadvance=18 page=0 chnl=0 -char id=241 x=289 y=233 width=16 height=24 xoffset=1 yoffset=8 xadvance=17 page=0 chnl=0 -char id=242 x=168 y=156 width=17 height=26 xoffset=1 yoffset=6 xadvance=19 page=0 chnl=0 -char id=243 x=185 y=156 width=17 height=26 xoffset=1 yoffset=6 xadvance=19 page=0 chnl=0 -char id=244 x=202 y=156 width=17 height=26 xoffset=1 yoffset=6 xadvance=19 page=0 chnl=0 -char id=245 x=444 y=182 width=17 height=25 xoffset=1 yoffset=7 xadvance=19 page=0 chnl=0 -char id=246 x=461 y=182 width=17 height=25 xoffset=1 yoffset=7 xadvance=19 page=0 chnl=0 -char id=247 x=479 y=328 width=16 height=20 xoffset=1 yoffset=10 xadvance=18 page=0 chnl=0 -char id=248 x=432 y=328 width=17 height=22 xoffset=1 yoffset=12 xadvance=19 page=0 chnl=0 -char id=249 x=219 y=156 width=16 height=26 xoffset=1 yoffset=6 xadvance=17 page=0 chnl=0 -char id=250 x=235 y=156 width=16 height=26 xoffset=1 yoffset=6 xadvance=17 page=0 chnl=0 -char id=251 x=251 y=156 width=16 height=26 xoffset=1 yoffset=6 xadvance=17 page=0 chnl=0 -char id=252 x=478 y=182 width=16 height=25 xoffset=1 yoffset=7 xadvance=17 page=0 chnl=0 -char id=253 x=73 y=0 width=16 height=33 xoffset=1 yoffset=6 xadvance=17 page=0 chnl=0 -char id=254 x=70 y=97 width=17 height=30 xoffset=1 yoffset=9 xadvance=18 page=0 chnl=0 -char id=255 x=310 y=0 width=16 height=32 xoffset=1 yoffset=7 xadvance=17 page=0 chnl=0 -char id=256 x=0 y=127 width=22 height=29 xoffset=-1 yoffset=3 xadvance=21 page=0 chnl=0 -char id=257 x=494 y=182 width=16 height=25 xoffset=1 yoffset=7 xadvance=17 page=0 chnl=0 -char id=258 x=211 y=35 width=23 height=31 xoffset=-1 yoffset=1 xadvance=22 page=0 chnl=0 -char id=259 x=267 y=156 width=16 height=26 xoffset=1 yoffset=6 xadvance=17 page=0 chnl=0 -char id=260 x=87 y=97 width=22 height=30 xoffset=-1 yoffset=9 xadvance=22 page=0 chnl=0 -char id=261 x=0 y=208 width=15 height=25 xoffset=1 yoffset=14 xadvance=17 page=0 chnl=0 -char id=262 x=234 y=35 width=20 height=31 xoffset=1 yoffset=2 xadvance=21 page=0 chnl=0 -char id=263 x=283 y=156 width=16 height=26 xoffset=1 yoffset=6 xadvance=17 page=0 chnl=0 -char id=264 x=19 y=233 width=14 height=24 xoffset=1 yoffset=8 xadvance=15 page=0 chnl=0 -char id=266 x=254 y=35 width=20 height=31 xoffset=1 yoffset=2 xadvance=21 page=0 chnl=0 -char id=267 x=15 y=208 width=16 height=25 xoffset=1 yoffset=7 xadvance=17 page=0 chnl=0 -char id=268 x=89 y=0 width=20 height=33 xoffset=1 yoffset=0 xadvance=21 page=0 chnl=0 -char id=269 x=299 y=156 width=16 height=26 xoffset=1 yoffset=6 xadvance=17 page=0 chnl=0 -char id=270 x=274 y=35 width=19 height=31 xoffset=1 yoffset=1 xadvance=21 page=0 chnl=0 -char id=271 x=305 y=233 width=22 height=24 xoffset=1 yoffset=8 xadvance=22 page=0 chnl=0 -char id=273 x=283 y=282 width=17 height=23 xoffset=1 yoffset=9 xadvance=19 page=0 chnl=0 -char id=274 x=22 y=127 width=17 height=29 xoffset=1 yoffset=3 xadvance=19 page=0 chnl=0 -char id=275 x=31 y=208 width=16 height=25 xoffset=1 yoffset=7 xadvance=18 page=0 chnl=0 -char id=276 x=293 y=35 width=17 height=31 xoffset=1 yoffset=1 xadvance=19 page=0 chnl=0 -char id=277 x=315 y=156 width=16 height=26 xoffset=1 yoffset=6 xadvance=18 page=0 chnl=0 -char id=278 x=109 y=97 width=17 height=30 xoffset=1 yoffset=2 xadvance=19 page=0 chnl=0 -char id=279 x=47 y=208 width=16 height=25 xoffset=1 yoffset=7 xadvance=18 page=0 chnl=0 -char id=280 x=126 y=97 width=17 height=30 xoffset=1 yoffset=9 xadvance=19 page=0 chnl=0 -char id=281 x=63 y=208 width=16 height=25 xoffset=1 yoffset=14 xadvance=18 page=0 chnl=0 -char id=282 x=310 y=35 width=17 height=31 xoffset=1 yoffset=1 xadvance=19 page=0 chnl=0 -char id=283 x=331 y=156 width=16 height=26 xoffset=1 yoffset=6 xadvance=18 page=0 chnl=0 -char id=286 x=109 y=0 width=21 height=33 xoffset=1 yoffset=0 xadvance=23 page=0 chnl=0 -char id=287 x=130 y=0 width=17 height=33 xoffset=1 yoffset=6 xadvance=18 page=0 chnl=0 -char id=288 x=327 y=35 width=21 height=31 xoffset=1 yoffset=2 xadvance=23 page=0 chnl=0 -char id=289 x=326 y=0 width=17 height=32 xoffset=1 yoffset=7 xadvance=18 page=0 chnl=0 -char id=290 x=348 y=35 width=21 height=31 xoffset=1 yoffset=9 xadvance=23 page=0 chnl=0 -char id=291 x=16 y=0 width=17 height=34 xoffset=1 yoffset=5 xadvance=18 page=0 chnl=0 -char id=294 x=300 y=282 width=18 height=23 xoffset=1 yoffset=9 xadvance=20 page=0 chnl=0 -char id=295 x=318 y=282 width=16 height=23 xoffset=0 yoffset=9 xadvance=17 page=0 chnl=0 -char id=296 x=143 y=97 width=13 height=30 xoffset=-3 yoffset=2 xadvance=7 page=0 chnl=0 -char id=297 x=327 y=233 width=13 height=24 xoffset=-2 yoffset=8 xadvance=10 page=0 chnl=0 -char id=298 x=39 y=127 width=13 height=29 xoffset=-3 yoffset=3 xadvance=7 page=0 chnl=0 -char id=299 x=79 y=208 width=13 height=25 xoffset=-2 yoffset=7 xadvance=9 page=0 chnl=0 -char id=300 x=369 y=35 width=12 height=31 xoffset=-2 yoffset=1 xadvance=8 page=0 chnl=0 -char id=301 x=347 y=156 width=12 height=26 xoffset=-1 yoffset=6 xadvance=10 page=0 chnl=0 -char id=302 x=501 y=66 width=8 height=30 xoffset=-2 yoffset=9 xadvance=7 page=0 chnl=0 -char id=303 x=156 y=97 width=8 height=30 xoffset=-2 yoffset=9 xadvance=7 page=0 chnl=0 -char id=304 x=504 y=35 width=6 height=30 xoffset=1 yoffset=2 xadvance=7 page=0 chnl=0 -char id=305 x=300 y=351 width=6 height=18 xoffset=1 yoffset=14 xadvance=7 page=0 chnl=0 -char id=306 x=340 y=233 width=20 height=24 xoffset=1 yoffset=9 xadvance=22 page=0 chnl=0 -char id=307 x=164 y=97 width=14 height=30 xoffset=-1 yoffset=9 xadvance=13 page=0 chnl=0 -char id=310 x=381 y=35 width=20 height=31 xoffset=1 yoffset=9 xadvance=21 page=0 chnl=0 -char id=311 x=401 y=35 width=16 height=31 xoffset=1 yoffset=9 xadvance=17 page=0 chnl=0 -char id=313 x=417 y=35 width=17 height=31 xoffset=0 yoffset=1 xadvance=18 page=0 chnl=0 -char id=314 x=434 y=35 width=10 height=31 xoffset=0 yoffset=1 xadvance=7 page=0 chnl=0 -char id=315 x=444 y=35 width=16 height=31 xoffset=1 yoffset=9 xadvance=18 page=0 chnl=0 -char id=316 x=460 y=35 width=6 height=31 xoffset=1 yoffset=9 xadvance=7 page=0 chnl=0 -char id=317 x=360 y=233 width=16 height=24 xoffset=1 yoffset=8 xadvance=18 page=0 chnl=0 -char id=318 x=376 y=233 width=11 height=24 xoffset=1 yoffset=8 xadvance=11 page=0 chnl=0 -char id=321 x=334 y=282 width=16 height=23 xoffset=1 yoffset=9 xadvance=18 page=0 chnl=0 -char id=322 x=350 y=282 width=9 height=23 xoffset=0 yoffset=9 xadvance=10 page=0 chnl=0 -char id=323 x=466 y=35 width=19 height=31 xoffset=1 yoffset=1 xadvance=20 page=0 chnl=0 -char id=324 x=359 y=156 width=16 height=26 xoffset=1 yoffset=6 xadvance=17 page=0 chnl=0 -char id=325 x=485 y=35 width=19 height=31 xoffset=1 yoffset=9 xadvance=20 page=0 chnl=0 -char id=326 x=375 y=156 width=16 height=26 xoffset=1 yoffset=14 xadvance=17 page=0 chnl=0 -char id=327 x=0 y=66 width=19 height=31 xoffset=1 yoffset=1 xadvance=20 page=0 chnl=0 -char id=328 x=391 y=156 width=16 height=26 xoffset=1 yoffset=6 xadvance=17 page=0 chnl=0 -char id=330 x=178 y=97 width=19 height=30 xoffset=1 yoffset=9 xadvance=20 page=0 chnl=0 -char id=331 x=92 y=208 width=16 height=25 xoffset=1 yoffset=14 xadvance=17 page=0 chnl=0 -char id=332 x=19 y=66 width=22 height=31 xoffset=1 yoffset=2 xadvance=23 page=0 chnl=0 -char id=333 x=108 y=208 width=17 height=25 xoffset=1 yoffset=7 xadvance=19 page=0 chnl=0 -char id=334 x=147 y=0 width=22 height=33 xoffset=1 yoffset=0 xadvance=23 page=0 chnl=0 -char id=335 x=407 y=156 width=17 height=26 xoffset=1 yoffset=6 xadvance=19 page=0 chnl=0 -char id=336 x=343 y=0 width=22 height=32 xoffset=1 yoffset=1 xadvance=23 page=0 chnl=0 -char id=337 x=424 y=156 width=17 height=26 xoffset=1 yoffset=6 xadvance=19 page=0 chnl=0 -char id=338 x=387 y=233 width=33 height=24 xoffset=1 yoffset=9 xadvance=32 page=0 chnl=0 -char id=339 x=306 y=351 width=28 height=18 xoffset=1 yoffset=14 xadvance=29 page=0 chnl=0 -char id=340 x=41 y=66 width=19 height=31 xoffset=1 yoffset=1 xadvance=20 page=0 chnl=0 -char id=341 x=441 y=156 width=11 height=26 xoffset=1 yoffset=6 xadvance=12 page=0 chnl=0 -char id=342 x=60 y=66 width=19 height=31 xoffset=1 yoffset=9 xadvance=20 page=0 chnl=0 -char id=343 x=452 y=156 width=10 height=26 xoffset=1 yoffset=14 xadvance=12 page=0 chnl=0 -char id=344 x=79 y=66 width=19 height=31 xoffset=1 yoffset=1 xadvance=20 page=0 chnl=0 -char id=345 x=462 y=156 width=14 height=26 xoffset=-1 yoffset=6 xadvance=12 page=0 chnl=0 -char id=346 x=98 y=66 width=19 height=31 xoffset=1 yoffset=2 xadvance=20 page=0 chnl=0 -char id=347 x=476 y=156 width=16 height=26 xoffset=1 yoffset=6 xadvance=17 page=0 chnl=0 -char id=350 x=117 y=66 width=19 height=31 xoffset=1 yoffset=9 xadvance=20 page=0 chnl=0 -char id=351 x=492 y=156 width=16 height=26 xoffset=1 yoffset=14 xadvance=17 page=0 chnl=0 -char id=352 x=169 y=0 width=19 height=33 xoffset=1 yoffset=0 xadvance=20 page=0 chnl=0 -char id=353 x=0 y=182 width=16 height=26 xoffset=1 yoffset=6 xadvance=17 page=0 chnl=0 -char id=354 x=136 y=66 width=18 height=31 xoffset=1 yoffset=9 xadvance=20 page=0 chnl=0 -char id=355 x=197 y=97 width=14 height=30 xoffset=1 yoffset=10 xadvance=16 page=0 chnl=0 -char id=356 x=154 y=66 width=18 height=31 xoffset=1 yoffset=1 xadvance=20 page=0 chnl=0 -char id=357 x=420 y=233 width=19 height=24 xoffset=1 yoffset=8 xadvance=20 page=0 chnl=0 -char id=358 x=359 y=282 width=18 height=23 xoffset=1 yoffset=9 xadvance=20 page=0 chnl=0 -char id=359 x=449 y=328 width=14 height=22 xoffset=1 yoffset=10 xadvance=16 page=0 chnl=0 -char id=360 x=172 y=66 width=18 height=31 xoffset=1 yoffset=2 xadvance=20 page=0 chnl=0 -char id=361 x=125 y=208 width=16 height=25 xoffset=1 yoffset=7 xadvance=17 page=0 chnl=0 -char id=362 x=190 y=66 width=18 height=31 xoffset=1 yoffset=2 xadvance=20 page=0 chnl=0 -char id=363 x=141 y=208 width=16 height=25 xoffset=1 yoffset=7 xadvance=17 page=0 chnl=0 -char id=364 x=188 y=0 width=18 height=33 xoffset=1 yoffset=0 xadvance=20 page=0 chnl=0 -char id=365 x=16 y=182 width=16 height=26 xoffset=1 yoffset=6 xadvance=17 page=0 chnl=0 -char id=366 x=365 y=0 width=18 height=32 xoffset=1 yoffset=1 xadvance=20 page=0 chnl=0 -char id=367 x=32 y=182 width=16 height=26 xoffset=1 yoffset=6 xadvance=17 page=0 chnl=0 -char id=368 x=206 y=0 width=18 height=33 xoffset=1 yoffset=0 xadvance=20 page=0 chnl=0 -char id=369 x=437 y=127 width=16 height=27 xoffset=1 yoffset=5 xadvance=17 page=0 chnl=0 -char id=370 x=211 y=97 width=18 height=30 xoffset=1 yoffset=9 xadvance=20 page=0 chnl=0 -char id=371 x=157 y=208 width=15 height=25 xoffset=1 yoffset=14 xadvance=17 page=0 chnl=0 -char id=372 x=208 y=66 width=29 height=31 xoffset=0 yoffset=1 xadvance=28 page=0 chnl=0 -char id=373 x=48 y=182 width=24 height=26 xoffset=0 yoffset=6 xadvance=24 page=0 chnl=0 -char id=374 x=237 y=66 width=21 height=31 xoffset=-1 yoffset=1 xadvance=20 page=0 chnl=0 -char id=375 x=224 y=0 width=16 height=33 xoffset=1 yoffset=6 xadvance=17 page=0 chnl=0 -char id=376 x=229 y=97 width=21 height=30 xoffset=-1 yoffset=2 xadvance=19 page=0 chnl=0 -char id=377 x=258 y=66 width=17 height=31 xoffset=1 yoffset=1 xadvance=19 page=0 chnl=0 -char id=378 x=72 y=182 width=14 height=26 xoffset=1 yoffset=6 xadvance=16 page=0 chnl=0 -char id=379 x=250 y=97 width=17 height=30 xoffset=1 yoffset=2 xadvance=19 page=0 chnl=0 -char id=380 x=439 y=233 width=14 height=24 xoffset=1 yoffset=8 xadvance=16 page=0 chnl=0 -char id=381 x=275 y=66 width=17 height=31 xoffset=1 yoffset=1 xadvance=19 page=0 chnl=0 -char id=382 x=86 y=182 width=14 height=26 xoffset=1 yoffset=6 xadvance=16 page=0 chnl=0 -char id=900 x=197 y=388 width=5 height=10 xoffset=1 yoffset=9 xadvance=6 page=0 chnl=0 -char id=901 x=202 y=388 width=15 height=10 xoffset=-14 yoffset=5 xadvance=1 page=0 chnl=0 -char id=902 x=377 y=282 width=22 height=23 xoffset=1 yoffset=9 xadvance=23 page=0 chnl=0 -char id=903 x=285 y=388 width=6 height=6 xoffset=1 yoffset=14 xadvance=7 page=0 chnl=0 -char id=904 x=399 y=282 width=22 height=23 xoffset=0 yoffset=9 xadvance=23 page=0 chnl=0 -char id=905 x=421 y=282 width=23 height=23 xoffset=0 yoffset=9 xadvance=24 page=0 chnl=0 -char id=906 x=444 y=282 width=11 height=23 xoffset=0 yoffset=9 xadvance=11 page=0 chnl=0 -char id=908 x=453 y=233 width=25 height=24 xoffset=1 yoffset=9 xadvance=26 page=0 chnl=0 -char id=910 x=455 y=282 width=25 height=23 xoffset=0 yoffset=9 xadvance=25 page=0 chnl=0 -char id=911 x=480 y=282 width=25 height=23 xoffset=0 yoffset=9 xadvance=26 page=0 chnl=0 -char id=912 x=453 y=127 width=15 height=27 xoffset=0 yoffset=5 xadvance=14 page=0 chnl=0 -char id=915 x=0 y=305 width=16 height=23 xoffset=1 yoffset=9 xadvance=18 page=0 chnl=0 -char id=916 x=16 y=305 width=22 height=23 xoffset=0 yoffset=9 xadvance=22 page=0 chnl=0 -char id=920 x=478 y=233 width=22 height=24 xoffset=1 yoffset=9 xadvance=23 page=0 chnl=0 -char id=923 x=38 y=305 width=20 height=23 xoffset=0 yoffset=9 xadvance=20 page=0 chnl=0 -char id=926 x=58 y=305 width=18 height=23 xoffset=1 yoffset=9 xadvance=20 page=0 chnl=0 -char id=928 x=76 y=305 width=18 height=23 xoffset=1 yoffset=9 xadvance=20 page=0 chnl=0 -char id=931 x=94 y=305 width=18 height=23 xoffset=1 yoffset=9 xadvance=20 page=0 chnl=0 -char id=934 x=112 y=305 width=23 height=23 xoffset=1 yoffset=9 xadvance=24 page=0 chnl=0 -char id=936 x=135 y=305 width=21 height=23 xoffset=1 yoffset=9 xadvance=23 page=0 chnl=0 -char id=937 x=156 y=305 width=21 height=23 xoffset=1 yoffset=9 xadvance=22 page=0 chnl=0 -char id=940 x=268 y=127 width=19 height=28 xoffset=1 yoffset=4 xadvance=21 page=0 chnl=0 -char id=941 x=287 y=127 width=16 height=28 xoffset=1 yoffset=4 xadvance=17 page=0 chnl=0 -char id=942 x=0 y=0 width=16 height=35 xoffset=1 yoffset=4 xadvance=17 page=0 chnl=0 -char id=943 x=468 y=127 width=8 height=27 xoffset=1 yoffset=5 xadvance=9 page=0 chnl=0 -char id=944 x=303 y=127 width=16 height=28 xoffset=1 yoffset=4 xadvance=17 page=0 chnl=0 -char id=945 x=334 y=351 width=19 height=18 xoffset=1 yoffset=14 xadvance=21 page=0 chnl=0 -char id=946 x=267 y=97 width=17 height=30 xoffset=1 yoffset=9 xadvance=18 page=0 chnl=0 -char id=947 x=172 y=208 width=18 height=25 xoffset=0 yoffset=14 xadvance=17 page=0 chnl=0 -char id=948 x=177 y=305 width=17 height=23 xoffset=1 yoffset=9 xadvance=19 page=0 chnl=0 -char id=949 x=353 y=351 width=16 height=18 xoffset=1 yoffset=14 xadvance=17 page=0 chnl=0 -char id=950 x=284 y=97 width=14 height=30 xoffset=1 yoffset=9 xadvance=16 page=0 chnl=0 -char id=951 x=190 y=208 width=16 height=25 xoffset=1 yoffset=14 xadvance=17 page=0 chnl=0 -char id=952 x=194 y=305 width=17 height=23 xoffset=1 yoffset=9 xadvance=19 page=0 chnl=0 -char id=953 x=369 y=351 width=8 height=18 xoffset=1 yoffset=14 xadvance=9 page=0 chnl=0 -char id=954 x=377 y=351 width=16 height=18 xoffset=1 yoffset=14 xadvance=17 page=0 chnl=0 -char id=955 x=211 y=305 width=19 height=23 xoffset=0 yoffset=9 xadvance=19 page=0 chnl=0 -char id=956 x=206 y=208 width=16 height=25 xoffset=1 yoffset=14 xadvance=17 page=0 chnl=0 -char id=958 x=298 y=97 width=16 height=30 xoffset=1 yoffset=9 xadvance=17 page=0 chnl=0 -char id=960 x=393 y=351 width=19 height=18 xoffset=1 yoffset=14 xadvance=21 page=0 chnl=0 -char id=961 x=222 y=208 width=17 height=25 xoffset=1 yoffset=14 xadvance=18 page=0 chnl=0 -char id=962 x=239 y=208 width=16 height=25 xoffset=1 yoffset=14 xadvance=17 page=0 chnl=0 -char id=963 x=412 y=351 width=19 height=18 xoffset=1 yoffset=14 xadvance=20 page=0 chnl=0 -char id=964 x=431 y=351 width=16 height=18 xoffset=1 yoffset=14 xadvance=18 page=0 chnl=0 -char id=965 x=447 y=351 width=16 height=18 xoffset=1 yoffset=14 xadvance=17 page=0 chnl=0 -char id=966 x=314 y=97 width=23 height=30 xoffset=1 yoffset=9 xadvance=24 page=0 chnl=0 -char id=967 x=255 y=208 width=17 height=25 xoffset=0 yoffset=14 xadvance=17 page=0 chnl=0 -char id=968 x=337 y=97 width=21 height=30 xoffset=1 yoffset=9 xadvance=23 page=0 chnl=0 -char id=969 x=463 y=351 width=23 height=18 xoffset=1 yoffset=14 xadvance=24 page=0 chnl=0 -char id=970 x=500 y=233 width=11 height=24 xoffset=0 yoffset=8 xadvance=11 page=0 chnl=0 -char id=971 x=272 y=208 width=16 height=25 xoffset=1 yoffset=7 xadvance=17 page=0 chnl=0 -char id=972 x=319 y=127 width=17 height=28 xoffset=1 yoffset=4 xadvance=19 page=0 chnl=0 -char id=973 x=336 y=127 width=16 height=28 xoffset=1 yoffset=4 xadvance=17 page=0 chnl=0 -char id=974 x=352 y=127 width=23 height=28 xoffset=1 yoffset=4 xadvance=24 page=0 chnl=0 -char id=1026 x=358 y=97 width=24 height=30 xoffset=1 yoffset=9 xadvance=26 page=0 chnl=0 -char id=1027 x=292 y=66 width=16 height=31 xoffset=1 yoffset=1 xadvance=18 page=0 chnl=0 -char id=1028 x=288 y=208 width=21 height=25 xoffset=1 yoffset=8 xadvance=21 page=0 chnl=0 -char id=1033 x=230 y=305 width=32 height=23 xoffset=1 yoffset=9 xadvance=34 page=0 chnl=0 -char id=1034 x=262 y=305 width=27 height=23 xoffset=1 yoffset=9 xadvance=29 page=0 chnl=0 -char id=1035 x=289 y=305 width=24 height=23 xoffset=1 yoffset=9 xadvance=26 page=0 chnl=0 -char id=1036 x=308 y=66 width=20 height=31 xoffset=1 yoffset=1 xadvance=20 page=0 chnl=0 -char id=1037 x=328 y=66 width=19 height=31 xoffset=1 yoffset=1 xadvance=20 page=0 chnl=0 -char id=1038 x=240 y=0 width=18 height=33 xoffset=1 yoffset=0 xadvance=20 page=0 chnl=0 -char id=1039 x=52 y=127 width=18 height=29 xoffset=1 yoffset=9 xadvance=20 page=0 chnl=0 -char id=1041 x=313 y=305 width=18 height=23 xoffset=1 yoffset=9 xadvance=19 page=0 chnl=0 -char id=1044 x=70 y=127 width=23 height=29 xoffset=1 yoffset=9 xadvance=25 page=0 chnl=0 -char id=1046 x=331 y=305 width=30 height=23 xoffset=0 yoffset=9 xadvance=29 page=0 chnl=0 -char id=1047 x=309 y=208 width=19 height=25 xoffset=1 yoffset=8 xadvance=21 page=0 chnl=0 -char id=1048 x=361 y=305 width=19 height=23 xoffset=1 yoffset=9 xadvance=20 page=0 chnl=0 -char id=1049 x=347 y=66 width=19 height=31 xoffset=1 yoffset=1 xadvance=20 page=0 chnl=0 -char id=1051 x=380 y=305 width=20 height=23 xoffset=1 yoffset=9 xadvance=22 page=0 chnl=0 -char id=1059 x=0 y=258 width=18 height=24 xoffset=1 yoffset=9 xadvance=20 page=0 chnl=0 -char id=1062 x=93 y=127 width=21 height=29 xoffset=1 yoffset=9 xadvance=23 page=0 chnl=0 -char id=1063 x=400 y=305 width=18 height=23 xoffset=1 yoffset=9 xadvance=20 page=0 chnl=0 -char id=1064 x=418 y=305 width=26 height=23 xoffset=1 yoffset=9 xadvance=27 page=0 chnl=0 -char id=1065 x=114 y=127 width=28 height=29 xoffset=1 yoffset=9 xadvance=30 page=0 chnl=0 -char id=1066 x=444 y=305 width=25 height=23 xoffset=0 yoffset=9 xadvance=25 page=0 chnl=0 -char id=1067 x=469 y=305 width=23 height=23 xoffset=1 yoffset=9 xadvance=24 page=0 chnl=0 -char id=1068 x=492 y=305 width=18 height=23 xoffset=1 yoffset=9 xadvance=19 page=0 chnl=0 -char id=1069 x=328 y=208 width=21 height=25 xoffset=-1 yoffset=8 xadvance=21 page=0 chnl=0 -char id=1070 x=349 y=208 width=27 height=25 xoffset=1 yoffset=8 xadvance=29 page=0 chnl=0 -char id=1071 x=0 y=328 width=19 height=23 xoffset=0 yoffset=9 xadvance=20 page=0 chnl=0 -char id=1073 x=100 y=182 width=17 height=26 xoffset=1 yoffset=6 xadvance=19 page=0 chnl=0 -char id=1074 x=486 y=351 width=16 height=18 xoffset=1 yoffset=14 xadvance=18 page=0 chnl=0 -char id=1075 x=0 y=370 width=11 height=18 xoffset=1 yoffset=14 xadvance=13 page=0 chnl=0 -char id=1076 x=19 y=328 width=19 height=23 xoffset=1 yoffset=14 xadvance=21 page=0 chnl=0 -char id=1078 x=11 y=370 width=24 height=18 xoffset=0 yoffset=14 xadvance=23 page=0 chnl=0 -char id=1079 x=35 y=370 width=16 height=18 xoffset=0 yoffset=14 xadvance=16 page=0 chnl=0 -char id=1080 x=51 y=370 width=16 height=18 xoffset=1 yoffset=14 xadvance=17 page=0 chnl=0 -char id=1081 x=117 y=182 width=16 height=26 xoffset=1 yoffset=6 xadvance=17 page=0 chnl=0 -char id=1083 x=67 y=370 width=17 height=18 xoffset=1 yoffset=14 xadvance=19 page=0 chnl=0 -char id=1084 x=84 y=370 width=20 height=18 xoffset=1 yoffset=14 xadvance=21 page=0 chnl=0 -char id=1085 x=104 y=370 width=16 height=18 xoffset=1 yoffset=14 xadvance=17 page=0 chnl=0 -char id=1087 x=120 y=370 width=16 height=18 xoffset=1 yoffset=14 xadvance=17 page=0 chnl=0 -char id=1090 x=136 y=370 width=16 height=18 xoffset=1 yoffset=14 xadvance=18 page=0 chnl=0 -char id=1094 x=38 y=328 width=18 height=23 xoffset=1 yoffset=14 xadvance=20 page=0 chnl=0 -char id=1095 x=152 y=370 width=16 height=18 xoffset=1 yoffset=14 xadvance=17 page=0 chnl=0 -char id=1096 x=168 y=370 width=24 height=18 xoffset=1 yoffset=14 xadvance=25 page=0 chnl=0 -char id=1097 x=56 y=328 width=25 height=23 xoffset=1 yoffset=14 xadvance=27 page=0 chnl=0 -char id=1098 x=192 y=370 width=22 height=18 xoffset=1 yoffset=14 xadvance=24 page=0 chnl=0 -char id=1099 x=214 y=370 width=22 height=18 xoffset=1 yoffset=14 xadvance=24 page=0 chnl=0 -char id=1100 x=236 y=370 width=16 height=18 xoffset=1 yoffset=14 xadvance=18 page=0 chnl=0 -char id=1101 x=252 y=370 width=17 height=18 xoffset=0 yoffset=14 xadvance=17 page=0 chnl=0 -char id=1102 x=269 y=370 width=23 height=18 xoffset=1 yoffset=14 xadvance=25 page=0 chnl=0 -char id=1103 x=292 y=370 width=17 height=18 xoffset=0 yoffset=14 xadvance=17 page=0 chnl=0 -char id=1106 x=382 y=97 width=16 height=30 xoffset=0 yoffset=9 xadvance=17 page=0 chnl=0 -char id=1107 x=133 y=182 width=11 height=26 xoffset=1 yoffset=6 xadvance=13 page=0 chnl=0 -char id=1108 x=309 y=370 width=16 height=18 xoffset=1 yoffset=14 xadvance=17 page=0 chnl=0 -char id=1113 x=325 y=370 width=28 height=18 xoffset=1 yoffset=14 xadvance=30 page=0 chnl=0 -char id=1114 x=353 y=370 width=25 height=18 xoffset=1 yoffset=14 xadvance=27 page=0 chnl=0 -char id=1116 x=144 y=182 width=16 height=26 xoffset=1 yoffset=6 xadvance=17 page=0 chnl=0 -char id=1117 x=160 y=182 width=16 height=26 xoffset=1 yoffset=6 xadvance=17 page=0 chnl=0 -char id=1118 x=258 y=0 width=16 height=33 xoffset=1 yoffset=6 xadvance=17 page=0 chnl=0 -char id=1119 x=81 y=328 width=16 height=23 xoffset=1 yoffset=14 xadvance=17 page=0 chnl=0 -char id=1168 x=142 y=127 width=16 height=29 xoffset=1 yoffset=3 xadvance=18 page=0 chnl=0 -char id=1169 x=97 y=328 width=11 height=23 xoffset=1 yoffset=9 xadvance=13 page=0 chnl=0 -char id=1170 x=108 y=328 width=19 height=23 xoffset=1 yoffset=9 xadvance=20 page=0 chnl=0 -char id=1171 x=378 y=370 width=14 height=18 xoffset=0 yoffset=14 xadvance=14 page=0 chnl=0 -char id=1174 x=158 y=127 width=31 height=29 xoffset=0 yoffset=9 xadvance=32 page=0 chnl=0 -char id=1175 x=127 y=328 width=25 height=23 xoffset=0 yoffset=14 xadvance=26 page=0 chnl=0 -char id=1176 x=366 y=66 width=19 height=31 xoffset=1 yoffset=8 xadvance=21 page=0 chnl=0 -char id=1177 x=376 y=208 width=16 height=25 xoffset=1 yoffset=14 xadvance=17 page=0 chnl=0 -char id=1178 x=189 y=127 width=21 height=29 xoffset=1 yoffset=9 xadvance=23 page=0 chnl=0 -char id=1179 x=152 y=328 width=17 height=23 xoffset=1 yoffset=14 xadvance=19 page=0 chnl=0 -char id=1184 x=169 y=328 width=27 height=23 xoffset=0 yoffset=9 xadvance=26 page=0 chnl=0 -char id=1185 x=392 y=370 width=22 height=18 xoffset=1 yoffset=14 xadvance=23 page=0 chnl=0 -char id=1186 x=375 y=127 width=21 height=28 xoffset=1 yoffset=9 xadvance=23 page=0 chnl=0 -char id=1187 x=196 y=328 width=18 height=23 xoffset=1 yoffset=14 xadvance=20 page=0 chnl=0 -char id=1194 x=385 y=66 width=20 height=31 xoffset=1 yoffset=8 xadvance=21 page=0 chnl=0 -char id=1195 x=392 y=208 width=16 height=25 xoffset=1 yoffset=14 xadvance=17 page=0 chnl=0 -char id=1202 x=210 y=127 width=22 height=29 xoffset=0 yoffset=9 xadvance=23 page=0 chnl=0 -char id=1203 x=214 y=328 width=19 height=23 xoffset=-1 yoffset=14 xadvance=19 page=0 chnl=0 -char id=1206 x=396 y=127 width=20 height=28 xoffset=1 yoffset=9 xadvance=22 page=0 chnl=0 -char id=1207 x=233 y=328 width=18 height=23 xoffset=1 yoffset=14 xadvance=20 page=0 chnl=0 -char id=1210 x=251 y=328 width=18 height=23 xoffset=1 yoffset=9 xadvance=20 page=0 chnl=0 -char id=1217 x=19 y=233 width=14 height=24 xoffset=1 yoffset=8 xadvance=15 page=0 chnl=0 -char id=1219 x=398 y=97 width=20 height=30 xoffset=1 yoffset=9 xadvance=21 page=0 chnl=0 -char id=1220 x=408 y=208 width=16 height=25 xoffset=1 yoffset=14 xadvance=17 page=0 chnl=0 -char id=1223 x=418 y=97 width=18 height=30 xoffset=1 yoffset=9 xadvance=20 page=0 chnl=0 -char id=1224 x=424 y=208 width=16 height=25 xoffset=1 yoffset=14 xadvance=17 page=0 chnl=0 -char id=1234 x=19 y=233 width=14 height=24 xoffset=1 yoffset=8 xadvance=15 page=0 chnl=0 -char id=1240 x=440 y=208 width=22 height=25 xoffset=0 yoffset=8 xadvance=22 page=0 chnl=0 -char id=1241 x=414 y=370 width=16 height=18 xoffset=1 yoffset=14 xadvance=18 page=0 chnl=0 -char id=1250 x=19 y=233 width=14 height=24 xoffset=1 yoffset=8 xadvance=15 page=0 chnl=0 -char id=1256 x=462 y=208 width=21 height=25 xoffset=1 yoffset=8 xadvance=23 page=0 chnl=0 -char id=1257 x=430 y=370 width=17 height=18 xoffset=1 yoffset=14 xadvance=19 page=0 chnl=0 -char id=1262 x=405 y=66 width=18 height=31 xoffset=1 yoffset=2 xadvance=20 page=0 chnl=0 -char id=1263 x=383 y=0 width=16 height=32 xoffset=1 yoffset=7 xadvance=17 page=0 chnl=0 -char id=1266 x=19 y=233 width=14 height=24 xoffset=1 yoffset=8 xadvance=15 page=0 chnl=0 -char id=1298 x=436 y=97 width=20 height=30 xoffset=1 yoffset=9 xadvance=22 page=0 chnl=0 -char id=1299 x=483 y=208 width=18 height=25 xoffset=0 yoffset=14 xadvance=18 page=0 chnl=0 -char id=8211 x=316 y=388 width=14 height=6 xoffset=1 yoffset=18 xadvance=16 page=0 chnl=0 -char id=8212 x=330 y=388 width=20 height=6 xoffset=1 yoffset=18 xadvance=22 page=0 chnl=0 -char id=8216 x=135 y=388 width=6 height=11 xoffset=1 yoffset=7 xadvance=7 page=0 chnl=0 -char id=8217 x=141 y=388 width=6 height=11 xoffset=1 yoffset=8 xadvance=7 page=0 chnl=0 -char id=8218 x=147 y=388 width=6 height=11 xoffset=1 yoffset=26 xadvance=7 page=0 chnl=0 -char id=8220 x=153 y=388 width=12 height=11 xoffset=1 yoffset=7 xadvance=13 page=0 chnl=0 -char id=8221 x=98 y=388 width=12 height=12 xoffset=1 yoffset=8 xadvance=13 page=0 chnl=0 -char id=8222 x=165 y=388 width=12 height=11 xoffset=1 yoffset=26 xadvance=14 page=0 chnl=0 -char id=8224 x=269 y=328 width=16 height=23 xoffset=1 yoffset=9 xadvance=18 page=0 chnl=0 -char id=8225 x=285 y=328 width=16 height=23 xoffset=1 yoffset=9 xadvance=18 page=0 chnl=0 -char id=8226 x=177 y=388 width=11 height=11 xoffset=1 yoffset=14 xadvance=14 page=0 chnl=0 -char id=8230 x=350 y=388 width=30 height=6 xoffset=1 yoffset=26 xadvance=31 page=0 chnl=0 -char id=8240 x=18 y=258 width=28 height=24 xoffset=1 yoffset=9 xadvance=29 page=0 chnl=0 -char id=8249 x=29 y=388 width=9 height=14 xoffset=0 yoffset=14 xadvance=8 page=0 chnl=0 -char id=8250 x=38 y=388 width=9 height=14 xoffset=0 yoffset=14 xadvance=8 page=0 chnl=0 -char id=8260 x=0 y=233 width=19 height=25 xoffset=-7 yoffset=9 xadvance=5 page=0 chnl=0 -char id=8361 x=301 y=328 width=24 height=23 xoffset=1 yoffset=9 xadvance=26 page=0 chnl=0 -char id=8363 x=325 y=328 width=16 height=23 xoffset=1 yoffset=9 xadvance=18 page=0 chnl=0 -char id=8364 x=46 y=258 width=21 height=24 xoffset=0 yoffset=9 xadvance=21 page=0 chnl=0 -char id=8365 x=341 y=328 width=20 height=23 xoffset=1 yoffset=9 xadvance=21 page=0 chnl=0 -char id=8366 x=361 y=328 width=18 height=23 xoffset=1 yoffset=9 xadvance=20 page=0 chnl=0 -char id=8369 x=379 y=328 width=19 height=23 xoffset=1 yoffset=9 xadvance=21 page=0 chnl=0 -char id=8370 x=416 y=127 width=21 height=28 xoffset=1 yoffset=6 xadvance=23 page=0 chnl=0 -char id=8372 x=67 y=258 width=18 height=24 xoffset=1 yoffset=9 xadvance=20 page=0 chnl=0 -char id=8377 x=85 y=258 width=18 height=24 xoffset=1 yoffset=8 xadvance=19 page=0 chnl=0 -char id=8378 x=398 y=328 width=20 height=23 xoffset=1 yoffset=9 xadvance=21 page=0 chnl=0 \ No newline at end of file +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 +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=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=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=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=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=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=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=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=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=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=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=1263 amount=-1 +kerning first=1085 second=336 amount=-2 +kerning first=906 second=350 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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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 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 1dd989953b869fd31a1a3b16ba945178092dcd50..5298f6b1a74c6789f13efc8ee787b0d5c9130742 100644 GIT binary patch literal 106546 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 literal 92390 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 Vs{D`xegOJoa^3t|#TEO=e*utf?8N{8 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 3790e16..4f8b38e 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 @@ -1,7 +1,7 @@ { "BitmapFont": { "default-font": { - "file": "font/coolvetica.fnt", + "file": "font/coolvetica.fnt" }, "enchanted": { "file": "font/enchanted.fnt" @@ -71,6 +71,10 @@ "background": "default-pane", "hScroll": "default-scroll", "vScrollKnob": "default-round-large" + }, + "error": { + "parent": "default", + "background": "default-pane-error" } }, "SelectBoxStyle": { diff --git a/wizard-client/wizard-client-libgdx/core/src/main/textures/uiskin/default-pane-error.9.png b/wizard-client/wizard-client-libgdx/core/src/main/textures/uiskin/default-pane-error.9.png new file mode 100644 index 0000000000000000000000000000000000000000..dffd5d9ad0dcc46eb585909246818dbc0bb1fd65 GIT binary patch literal 223 zcmeAS@N?(olHy`uVBq!ia0vp^q9Dw{1|(OCFP#RY7>k44ofy`glX(f`u%tWsIx;Y9 z?C1WI$O`0h7I;J!GcfQS0%1l`4X*~EV2P)TV~B-+@}K|z?U{`dQc_$*6_^;#CbSqG zWJp@k%zTpVAqzVn!(3L=FHirn2Lyg<+_8vh*}?=zBgPo}69EeU|JPSn?^y8b^K*ev zm4?}qCTX-8IUZff<;J_zPQrA`uY?w9uh~Ie%bse6%qe0ppR%fq&=+autDVfp7E zsz?BVpw(C~Zn9nwF O0000Nq@rt01m?e$8V@)0002YNklrVFsY5Xo6mNUjFfza<55mX*ltcbs z*d7744J3&zHVFYxP{8yPl}=#*WEsA2L^hOQn1V1ez$OpE$bev&VgrQKVI(Q!FvaIx weClYD_-SG&O-d=+mZwm0iUHhE>H-D^0H>hD=8o%7L;wH)07*qoM6N<$f|6BU@c;k- diff --git a/wizard-client/wizard-client-libgdx/core/src/main/textures/uiskin/default-select-selection.9.png b/wizard-client/wizard-client-libgdx/core/src/main/textures/uiskin/default-select-selection.9.png deleted file mode 100644 index 464941220ad62eec671f4669e1d4c831d4d4953a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 85 zcmeAS@N?(olHy`uVBq!ia0vp^tRT$61|)m))t&+=8BZ6-kcwN$2@Vbac{CR6`)4n6 hI5a^p<$zuX8-tmk@DtP2$Cf~K44$rjF6*2UngAk|7D)gA diff --git a/wizard-client/wizard-client-libgdx/core/src/main/textures/uiskin/selection.9.png b/wizard-client/wizard-client-libgdx/core/src/main/textures/uiskin/selection.9.png new file mode 100644 index 0000000000000000000000000000000000000000..9e71b6f862f391335fe1297ccafc48b8bf1a92ba GIT binary patch literal 185 zcmeAS@N?(olHy`uVBq!ia0vp^qCm{g!3HF`qgt|o6k~CayA#8@b22Z19F}xPUq=Rp zjs4tz5?O(K&H|6fVg?4jLmbP0l+XkKevdU4 literal 0 HcmV?d00001 diff --git a/wizard-client/wizard-client-libgdx/core/src/main/textures/uiskin/selection.png b/wizard-client/wizard-client-libgdx/core/src/main/textures/uiskin/selection.png deleted file mode 100644 index af9977d23f05fc97c883fc3d953ea5d6f03795de..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 119 zcmeAS@N?(olHy`uVBq!ia0vp^j3CUx1SBVv2j2s6ii6yp7}lMWc?smOq&xaLGB9lH z=l+w(3gmMZctjR6Fz_7)VaDV6D^h@hJf1F&Arj%q6(x6M7+CTd9|nmm_X3JDc)I$z JtaD0e0syqT8_fU! diff --git a/wizard-client/wizard-client-libgdx/core/src/main/textures/uiskin/textfield-error.9.png b/wizard-client/wizard-client-libgdx/core/src/main/textures/uiskin/textfield-error.9.png index 1264633f80d4c867808adda10b881be5250624e8..e030aab1f70a7878c1370cb6dc37d31acf8cbdad 100644 GIT binary patch delta 183 zcmV;o07(Dr0r&xsNq@iq01m(bYSxJf0001uNklQX9Btp- zB_S+C>^mfWk2sDo9Gp8(WiV?U`@mXgDF2lzVNoS4BqS&ysW6X`N0qP;k;qI&(HT#9 ld7^~D@h|fv|EhPC+5xr~QW72xpE3Xd002ovPDHLkV1gTdM&1Ab delta 171 zcmV;c0960@0qg;gNq@lr01m+cxRGn^0001iNklhr!LdrGve-{D-1K#X8%K9ojSG{R!@Sw!n$EcdYMp&y<_BP1+SBJ=-@(wYd(<<-bg Z#ynMrQxcV2m|Fk<002ovPDHLkV1jR*N~-_> diff --git a/wizard-client/wizard-client-libgdx/core/src/main/textures/uiskin/textfield.9.png b/wizard-client/wizard-client-libgdx/core/src/main/textures/uiskin/textfield.9.png index 2e871f9acdf12be9f64d89722086d4a820d74cfc..d99016edcf7f85f64908ed27ec9ff78842d07da9 100644 GIT binary patch delta 188 zcmV;t07L)r0sR4xNq@lr01m+cxRGn^0001zNkl0rLM}*d75F49hf!DT?Paw?JE3$fdK$KcUTg;o@S5$0000O*6nmYGFqX7>#(6z^El80V%pzLjRhP+5p26s5sRD e+!ERX1_l5iUs@8>R4gI@0000|J