graphiti 2.0.0.beta.7 → 2.0.0.beta.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (251) hide show
  1. checksums.yaml +4 -4
  2. data/.git-blame-ignore-revs +2 -0
  3. data/.github/workflows/ci.yml +56 -4
  4. data/.github/workflows/docs.yml +10 -7
  5. data/.github/workflows/notify-example-app.yml +18 -0
  6. data/.github/workflows/release.yml +1 -1
  7. data/.gitignore +2 -0
  8. data/.standard.yml +6 -0
  9. data/CHANGELOG.md +66 -0
  10. data/CONTRIBUTING.md +3 -1
  11. data/README.md +13 -206
  12. data/Rakefile +34 -3
  13. data/UPGRADING.md +2 -2
  14. data/graphiti.gemspec +8 -4
  15. data/lib/generators/graphiti/generator_mixin.rb +1 -1
  16. data/lib/generators/graphiti/install_generator.rb +1 -1
  17. data/lib/generators/graphiti/resource_generator.rb +6 -3
  18. data/lib/generators/graphiti/templates/application_resource.rb.erb +19 -0
  19. data/lib/generators/graphiti/templates/controller.rb.erb +26 -8
  20. data/lib/graphiti/audit/report.rb +6 -6
  21. data/lib/graphiti/audit.rb +3 -4
  22. data/lib/graphiti/configuration.rb +11 -4
  23. data/lib/graphiti/debugger.rb +18 -6
  24. data/lib/graphiti/delegates/pagination.rb +2 -2
  25. data/lib/graphiti/deserializer.rb +3 -3
  26. data/lib/graphiti/error_serializers/deprecated_constants.rb +23 -0
  27. data/lib/graphiti/error_serializers/invalid_request.rb +6 -0
  28. data/lib/graphiti/errors.rb +22 -6
  29. data/lib/graphiti/extensions/temp_id.rb +1 -1
  30. data/lib/graphiti/query.rb +5 -4
  31. data/lib/graphiti/rails/context.rb +2 -1
  32. data/lib/graphiti/rails/controller.rb +3 -0
  33. data/lib/graphiti/rails/debugging.rb +1 -1
  34. data/lib/graphiti/rails/responders.rb +2 -1
  35. data/lib/graphiti/rails.rb +14 -0
  36. data/lib/graphiti/railtie.rb +8 -0
  37. data/lib/graphiti/resource/configuration.rb +1 -0
  38. data/lib/graphiti/resource/dsl.rb +2 -2
  39. data/lib/graphiti/resource/links.rb +1 -1
  40. data/lib/graphiti/resource/persistence.rb +1 -1
  41. data/lib/graphiti/resource/polymorphism.rb +1 -1
  42. data/lib/graphiti/resource.rb +2 -2
  43. data/lib/graphiti/resource_proxy.rb +0 -1
  44. data/lib/graphiti/scope.rb +68 -21
  45. data/lib/graphiti/scoping/filter.rb +5 -3
  46. data/lib/graphiti/scoping/paginate.rb +1 -1
  47. data/lib/graphiti/scoping/sort.rb +1 -1
  48. data/lib/graphiti/sideload/has_many.rb +1 -1
  49. data/lib/graphiti/sideload/polymorphic_belongs_to.rb +11 -4
  50. data/lib/graphiti/sideload.rb +8 -6
  51. data/lib/graphiti/spec_helpers/errors_proxy.rb +1 -1
  52. data/lib/graphiti/spec_helpers/matchers.rb +1 -1
  53. data/lib/graphiti/types.rb +5 -1
  54. data/lib/graphiti/util/cache_debug.rb +3 -3
  55. data/lib/graphiti/util/hash.rb +1 -1
  56. data/lib/graphiti/util/persistence.rb +6 -6
  57. data/lib/graphiti/util/serializer_relationships.rb +11 -2
  58. data/lib/graphiti/version.rb +1 -1
  59. data/lib/graphiti.rb +1 -1
  60. data/lib/tasks/graphiti.rake +1 -1
  61. data/package-lock.json +114 -0
  62. data/package.json +16 -3
  63. metadata +33 -198
  64. data/docs/concepts/backends-and-models.md +0 -122
  65. data/docs/concepts/endpoints.md +0 -183
  66. data/docs/concepts/links.md +0 -212
  67. data/docs/concepts/overview.md +0 -80
  68. data/docs/concepts/persisting.md +0 -376
  69. data/docs/concepts/relationships.md +0 -627
  70. data/docs/concepts/resources.md +0 -677
  71. data/docs/getting-started/first-api.md +0 -289
  72. data/docs/getting-started/installation.md +0 -185
  73. data/docs/intro.md +0 -307
  74. data/docs/js/authentication.md +0 -63
  75. data/docs/js/ddau.md +0 -20
  76. data/docs/js/extra-params.md +0 -41
  77. data/docs/js/index.md +0 -112
  78. data/docs/js/installation.md +0 -120
  79. data/docs/js/middleware.md +0 -72
  80. data/docs/js/models.md +0 -202
  81. data/docs/js/reads.md +0 -494
  82. data/docs/js/state-syncing.md +0 -100
  83. data/docs/js/writes.md +0 -373
  84. data/docs/reference/vandal.md +0 -63
  85. data/docs/reference/why.md +0 -13
  86. data/docs/topics/authorization.md +0 -155
  87. data/docs/topics/caching.md +0 -55
  88. data/docs/topics/customizing-sideloads.md +0 -156
  89. data/docs/topics/debugging.md +0 -242
  90. data/docs/topics/error-handling.md +0 -210
  91. data/docs/topics/etags.md +0 -46
  92. data/docs/topics/hopping-relationships.md +0 -149
  93. data/docs/topics/json-attributes.md +0 -77
  94. data/docs/topics/openstruct-models.md +0 -50
  95. data/docs/topics/remote-resources.md +0 -291
  96. data/docs/topics/testing.md +0 -916
  97. data/docs/topics/without-activerecord.md +0 -324
  98. data/docs/tutorial/index.md +0 -58
  99. data/docs/tutorial/step_0.md +0 -107
  100. data/docs/tutorial/step_1.md +0 -199
  101. data/docs/tutorial/step_2.md +0 -312
  102. data/docs/tutorial/step_3.md +0 -142
  103. data/docs/tutorial/step_4.md +0 -135
  104. data/docs/tutorial/step_5.md +0 -69
  105. data/docs/tutorial/step_6.md +0 -82
  106. data/docs/tutorial/step_7.md +0 -205
  107. data/docs/tutorial/step_8.md +0 -128
  108. data/docs/tutorial/step_9.md +0 -171
  109. data/docs/upgrading.md +0 -267
  110. data/website/.gitignore +0 -20
  111. data/website/README.md +0 -43
  112. data/website/docusaurus.config.js +0 -197
  113. data/website/package-lock.json +0 -19474
  114. data/website/package.json +0 -46
  115. data/website/sidebars.js +0 -82
  116. data/website/src/css/custom.css +0 -85
  117. data/website/src/pages/markdown-page.mdx +0 -7
  118. data/website/static/.nojekyll +0 -0
  119. data/website/static/1.13/2019/03/31/graphiti-1-0.html +0 -205
  120. data/website/static/1.13/2019/05/08/graphiti-1-1.html +0 -212
  121. data/website/static/1.13/2019/05/20/graphiti-1-2.html +0 -214
  122. data/website/static/1.13/2019/10/14/tutorial.html +0 -198
  123. data/website/static/1.13/CNAME +0 -1
  124. data/website/static/1.13/README.md +0 -16
  125. data/website/static/1.13/assets/css/syntax.css +0 -60
  126. data/website/static/1.13/assets/favicons/android-chrome-192x192.png +0 -0
  127. data/website/static/1.13/assets/favicons/android-chrome-256x256.png +0 -0
  128. data/website/static/1.13/assets/favicons/apple-touch-icon.png +0 -0
  129. data/website/static/1.13/assets/favicons/browserconfig.xml +0 -9
  130. data/website/static/1.13/assets/favicons/favicon-16x16.png +0 -0
  131. data/website/static/1.13/assets/favicons/favicon-32x32.png +0 -0
  132. data/website/static/1.13/assets/favicons/favicon.ico +0 -0
  133. data/website/static/1.13/assets/favicons/mstile-150x150.png +0 -0
  134. data/website/static/1.13/assets/favicons/safari-pinned-tab.svg +0 -1
  135. data/website/static/1.13/assets/favicons/site.webmanifest +0 -19
  136. data/website/static/1.13/assets/img/backend.gif +0 -0
  137. data/website/static/1.13/assets/img/conformity.png +0 -0
  138. data/website/static/1.13/assets/img/error_payload.png +0 -0
  139. data/website/static/1.13/assets/img/fancy-cushion.png +0 -0
  140. data/website/static/1.13/assets/img/gh.png +0 -0
  141. data/website/static/1.13/assets/img/home-bg.jpg +0 -0
  142. data/website/static/1.13/assets/img/lifecycle.gif +0 -0
  143. data/website/static/1.13/assets/img/logo-500.png +0 -0
  144. data/website/static/1.13/assets/img/logo.png +0 -0
  145. data/website/static/1.13/assets/img/love-graffiti.jpg +0 -0
  146. data/website/static/1.13/assets/img/meta_total_count.png +0 -0
  147. data/website/static/1.13/assets/img/persist.jpg +0 -0
  148. data/website/static/1.13/assets/img/resource.gif +0 -0
  149. data/website/static/1.13/assets/img/rest-graffiti.jpg +0 -0
  150. data/website/static/1.13/assets/img/rest1.gif +0 -0
  151. data/website/static/1.13/assets/img/rest2.gif +0 -0
  152. data/website/static/1.13/assets/img/rest3.gif +0 -0
  153. data/website/static/1.13/assets/img/rethink-rest-graffiti.jpg +0 -0
  154. data/website/static/1.13/assets/img/sunrise.png +0 -0
  155. data/website/static/1.13/assets/img/why.png +0 -0
  156. data/website/static/1.13/assets/js/highlight.pack.js +0 -2
  157. data/website/static/1.13/assets/main.css +0 -15518
  158. data/website/static/1.13/assets/main.css.map +0 -1
  159. data/website/static/1.13/bin/bundle +0 -109
  160. data/website/static/1.13/bin/jekyll +0 -27
  161. data/website/static/1.13/bin/kramdown +0 -27
  162. data/website/static/1.13/bin/listen +0 -27
  163. data/website/static/1.13/bin/rake +0 -27
  164. data/website/static/1.13/bin/rougify +0 -27
  165. data/website/static/1.13/bin/safe_yaml +0 -27
  166. data/website/static/1.13/bin/sass +0 -27
  167. data/website/static/1.13/bin/sass-convert +0 -27
  168. data/website/static/1.13/bin/scss +0 -27
  169. data/website/static/1.13/blog.html +0 -259
  170. data/website/static/1.13/cheatsheet.html +0 -316
  171. data/website/static/1.13/cookbooks/authorization.md +0 -0
  172. data/website/static/1.13/cookbooks/caching.md +0 -0
  173. data/website/static/1.13/cookbooks/customizing-sideloads.html +0 -325
  174. data/website/static/1.13/cookbooks/etags.md +0 -0
  175. data/website/static/1.13/cookbooks/hopping-relationships.html +0 -324
  176. data/website/static/1.13/cookbooks/json_attributes.md +0 -0
  177. data/website/static/1.13/cookbooks/openstruct-models.md +0 -0
  178. data/website/static/1.13/cookbooks/remote-resources.md +0 -0
  179. data/website/static/1.13/cookbooks/without-activerecord.html +0 -510
  180. data/website/static/1.13/features.html +0 -249
  181. data/website/static/1.13/feed.xml +0 -106
  182. data/website/static/1.13/guides/concepts/backends-and-models.html +0 -467
  183. data/website/static/1.13/guides/concepts/debugging.html +0 -440
  184. data/website/static/1.13/guides/concepts/endpoints.html +0 -432
  185. data/website/static/1.13/guides/concepts/error-handling.html +0 -396
  186. data/website/static/1.13/guides/concepts/links.html +0 -501
  187. data/website/static/1.13/guides/concepts/remote-resources.html +0 -536
  188. data/website/static/1.13/guides/concepts/resources.html +0 -2176
  189. data/website/static/1.13/guides/concepts/testing.html +0 -1469
  190. data/website/static/1.13/guides/getting-started/installation.html +0 -420
  191. data/website/static/1.13/guides/graphiti-rails-migration.html +0 -242
  192. data/website/static/1.13/guides/index.html +0 -269
  193. data/website/static/1.13/guides/overview.html +0 -325
  194. data/website/static/1.13/guides/upgrading-2-0.html +0 -193
  195. data/website/static/1.13/guides/upgrading.html +0 -314
  196. data/website/static/1.13/guides/vandal.html +0 -282
  197. data/website/static/1.13/guides/why.html +0 -1121
  198. data/website/static/1.13/index.html +0 -72
  199. data/website/static/1.13/js/authentication.html +0 -295
  200. data/website/static/1.13/js/ddau.html +0 -238
  201. data/website/static/1.13/js/extra-params.html +0 -270
  202. data/website/static/1.13/js/index.html +0 -321
  203. data/website/static/1.13/js/installation.html +0 -637
  204. data/website/static/1.13/js/introduction.html +0 -257
  205. data/website/static/1.13/js/middleware.html +0 -318
  206. data/website/static/1.13/js/reads/fieldsets.html +0 -271
  207. data/website/static/1.13/js/reads/filtering.html +0 -289
  208. data/website/static/1.13/js/reads/includes.html +0 -260
  209. data/website/static/1.13/js/reads/index.html +0 -497
  210. data/website/static/1.13/js/reads/nested-queries.html +0 -353
  211. data/website/static/1.13/js/reads/pagination.html +0 -260
  212. data/website/static/1.13/js/reads/sorting.html +0 -265
  213. data/website/static/1.13/js/reads/statistics.html +0 -289
  214. data/website/static/1.13/js/state-syncing.html +0 -340
  215. data/website/static/1.13/js/writes/deferred.html +0 -296
  216. data/website/static/1.13/js/writes/dirty-tracking.html +0 -399
  217. data/website/static/1.13/js/writes/index.html +0 -391
  218. data/website/static/1.13/js/writes/nested.html +0 -330
  219. data/website/static/1.13/js/writes/validations.html +0 -272
  220. data/website/static/1.13/quickstart.html +0 -660
  221. data/website/static/1.13/template +0 -161
  222. data/website/static/1.13/tutorial/index.html +0 -250
  223. data/website/static/1.13/tutorial/step_0.html +0 -292
  224. data/website/static/1.13/tutorial/step_1.html +0 -517
  225. data/website/static/1.13/tutorial/step_2.html +0 -481
  226. data/website/static/1.13/tutorial/step_3.html +0 -323
  227. data/website/static/1.13/tutorial/step_4.html +0 -318
  228. data/website/static/1.13/tutorial/step_5.html +0 -265
  229. data/website/static/1.13/tutorial/step_6.html +0 -276
  230. data/website/static/1.13/tutorial/step_7.html +0 -390
  231. data/website/static/1.13/tutorial/step_8.html +0 -316
  232. data/website/static/1.13/tutorial/step_9.html +0 -365
  233. data/website/static/CNAME +0 -1
  234. data/website/static/assets/img/error_payload.png +0 -0
  235. data/website/static/assets/img/legacy/legacy-0378a3bb39.png +0 -0
  236. data/website/static/assets/img/legacy/legacy-05bbd3e5fd.png +0 -0
  237. data/website/static/assets/img/legacy/legacy-07aa104495.png +0 -0
  238. data/website/static/assets/img/legacy/legacy-0c75a16b3a.gif +0 -0
  239. data/website/static/assets/img/legacy/legacy-3076df6209.png +0 -0
  240. data/website/static/assets/img/legacy/legacy-7f6889bc89.png +0 -0
  241. data/website/static/assets/img/legacy/legacy-a2cc4363c3.png +0 -0
  242. data/website/static/assets/img/legacy/legacy-f67cfa89ab.png +0 -0
  243. data/website/static/assets/img/meta_total_count.png +0 -0
  244. data/website/static/img/docusaurus-social-card.jpg +0 -0
  245. data/website/static/img/docusaurus.png +0 -0
  246. data/website/static/img/favicon.ico +0 -0
  247. data/website/static/img/logo.png +0 -0
  248. data/website/static/img/logo.svg +0 -1
  249. data/website/static/img/undraw_docusaurus_mountain.svg +0 -171
  250. data/website/static/img/undraw_docusaurus_react.svg +0 -170
  251. data/website/static/img/undraw_docusaurus_tree.svg +0 -40
@@ -1,214 +0,0 @@
1
- <!DOCTYPE html>
2
- <html lang="en">
3
-
4
- <head>
5
- <meta charset="utf-8">
6
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
7
- <meta name="viewport" content="width=device-width, initial-scale=1">
8
- <link href="https://fonts.googleapis.com/css?family=Roboto+Mono" rel="stylesheet">
9
- <link href="https://fonts.googleapis.com/css?family=Boogaloo" rel="stylesheet">
10
-
11
- <link rel="apple-touch-icon" sizes="180x180" href="/1.13/assets/favicons/apple-touch-icon.png">
12
- <link rel="icon" type="image/png" sizes="32x32" href="/1.13/assets/favicons/favicon-32x32.png">
13
- <link rel="icon" type="image/png" sizes="16x16" href="/1.13/assets/favicons/favicon-16x16.png">
14
- <link rel="manifest" href="/1.13/assets/favicons/site.webmanifest">
15
- <link rel="mask-icon" href="/1.13/assets/favicons/safari-pinned-tab.svg" color="#F86DA7">
16
- <link rel="shortcut icon" href="/1.13/assets/favicons/favicon.ico">
17
- <meta name="msapplication-TileColor" content="#F86DA7">
18
- <meta name="msapplication-config" content="/1.13/assets/favicons/browserconfig.xml">
19
- <meta name="theme-color" content="#F86DA7">
20
-
21
- <title>Graphiti 1.2 Released</title>
22
- <meta name="description" content="I’m thrilled to announce much-needed, much-improved Rails integration, courtesy of the amazing Peter Wagenet and the new graphiti-rails gem. This gives us be...">
23
-
24
- <link rel="stylesheet" href="/1.13/assets/main.css?ref=wh4t3v45">
25
- <link rel="alternate" type="application/rss+xml" title="Graphiti" href="/1.13/feed.xml">
26
-
27
- <!-- Global site tag (gtag.js) - Google Analytics -->
28
- <script async src="https://www.googletagmanager.com/gtag/js?id=UA-127904727-1"></script>
29
- <script>
30
- window.dataLayer = window.dataLayer || [];
31
- function gtag(){dataLayer.push(arguments);}
32
- gtag('js', new Date());
33
-
34
- gtag('config', 'UA-127904727-1');
35
- </script>
36
-
37
- <!-- javascript -->
38
- <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
39
- <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
40
-
41
-
42
- </head>
43
-
44
-
45
- <body>
46
- <main class="page-content" aria-label="Content">
47
- <div class="wrapper">
48
- <header class="navbar navbar-inverse normal" role="banner">
49
- <div class="container">
50
- <div class="navbar-header">
51
- <a href="/1.13/1.13" class="navbar-brand">
52
- <img alt="logo" src="/1.13/assets/img/logo.png">
53
- </a>
54
- </div>
55
- <nav class="" role="navigation">
56
- <ul class="nav navbar-nav nav-links">
57
- <li>
58
- <a class="quickstart nav-link" href="/1.13/quickstart">Quickstart</a>
59
- </li>
60
- <li>
61
- <a class="guides nav-link" href="/1.13/guides">Guides</a>
62
- </li>
63
- <li>
64
- <a class="tutorial nav-link" href="/1.13/tutorial">Tutorial</a>
65
- </li>
66
- <li>
67
- <a class="spraypaint nav-link" href="/1.13/js">Spraypaint</a>
68
- </li>
69
- </ul>
70
- <ul class="nav gh navbar-nav navbar-right visible-lg visible-md">
71
- <li>
72
- <span class="star">⭐</span>
73
- <a href="https://github.com/graphiti-api/graphiti">
74
- <img alt="github-star" style="margin-right: 65px;margin-top: -20px" src="/1.13/assets/img/gh.png">
75
- </a>
76
- </li>
77
- </ul>
78
- </nav>
79
- </div>
80
- </header>
81
-
82
- <div class="container">
83
- <h1>Graphiti 1.2 Released</h1>
84
- <p>I’m thrilled to announce much-needed, much-improved Rails integration,
85
- courtesy of the amazing <a href="https://github.com/wagenet">Peter Wagenet</a> and
86
- the new <a href="https://github.com/graphiti-api/graphiti-rails">graphiti-rails</a> gem.
87
- This gives us better error handling, tighter controllers, and a solid
88
- foundation for the codebase moving forward.</p>
89
-
90
- <p>You’ll be especially happy about this release if you’ve ever tried to
91
- add error-handling middleware. Because prior versions of Graphiti used
92
- <code class="language-plaintext highlighter-rouge">rescue_from</code> in <code class="language-plaintext highlighter-rouge">ApplicationController</code>, we intercepted errors before
93
- other middleware had access to them. Now everything just works.</p>
94
-
95
- <p>As part of this upgrade, we’re switching from <code class="language-plaintext highlighter-rouge">GraphitiErrors</code> to
96
- <a href="https://github.com/wagenet/rescue_registry">RescueRegistry</a>. Think of
97
- <code class="language-plaintext highlighter-rouge">RescueRegistry</code> as a well-refactored version of <code class="language-plaintext highlighter-rouge">GraphitiErrors</code>, available to
98
- even non-Graphiti developers.</p>
99
-
100
- <p>Though you don’t have to do anything to upgrade to Graphiti 1.2, this release will start throwing deprecation notices around <code class="language-plaintext highlighter-rouge">ApplicationController</code>. Don’t worry, the required changes are quite minor and spelled out in the <a href="/1.13/guides/graphiti-rails-migration">graphiti-rails migration guide</a>.</p>
101
-
102
- <p>I’m quite happy with how this effort turned out. This release dramatically improves our integration with Rails internals, and I think everyone involved learned a lot. I’m honored to work with such talented developers in our open-source community ❤️</p>
103
-
104
- <p>If you have any further questions, check out the <code class="language-plaintext highlighter-rouge">#dev</code> or <code class="language-plaintext highlighter-rouge">#rails</code>
105
- channels in our <a href="https://discord.gg/wgqkMBsSRV">Discord Chat</a></p>
106
-
107
- <p><br />
108
- <br />
109
- <br />
110
- <br />
111
- <br />
112
- <br />
113
- <br />
114
- <br />
115
- <br />
116
- <br />
117
- <br /></p>
118
-
119
- </div>
120
- </div>
121
- </main>
122
- <div class="main-footer main-footer--dark">
123
- <div class="container">
124
- <div class="row">
125
- <div class="col-sm-4 menu">
126
- <h3>Overview</h3>
127
- <ul>
128
- <li>
129
- <a href="/1.13/quickstart">Quickstart</a>
130
- </li>
131
- <li>
132
- <a href="/1.13/tutorial">Tutorial</a>
133
- </li>
134
- <li>
135
- <a href="/1.13/guides">Guides</a>
136
- </li>
137
- </ul>
138
- </div>
139
- <div class="col-sm-4 menu">
140
- <h3>Contact</h3>
141
- <ul>
142
- <li>
143
- <a target="_blank" href="https://discord.gg/wgqkMBsSRV">Discord Chat</a>
144
- </li>
145
- <li>
146
- <a href="mailto:richmolj@gmail.com">Email</a>
147
- </li>
148
- </ul>
149
- </div>
150
- <div class="col-sm-4 menu">
151
- <h3>Related</h3>
152
- <ul>
153
- <li>
154
- <a target="_blank" href="http://jsonapi.org">JSONAPI Spec</a>
155
- </li>
156
- <li>
157
- <a target="_blank" href="http://jsonapi-rb.org">jsonapi-rb</a>
158
- </li>
159
- <li>
160
- <a target="_blank" href="https://vuejs.org/">VueJS</a>
161
- </li>
162
- </ul>
163
- </div>
164
- </div>
165
- </div>
166
- </div>
167
-
168
- <script type="text/javascript">
169
- $(function () {
170
-
171
- var flipTabs = function() {
172
- var isTS = true;
173
- if (localStorage.getItem('js-lang') === 'javascript') {
174
- isTS = false;
175
- }
176
-
177
- $('.code-tabs').each(function(index, el) {
178
- if (isTS) {
179
- console.log('hiding js');
180
- $($(el).children()[1]).hide();
181
- $($(el).children()[0]).show();
182
- } else {
183
- console.log('hiding ts');
184
- $($(el).children()[0]).hide();
185
- $($(el).children()[1]).show();
186
- }
187
- });
188
-
189
- if (isTS) {
190
- $('.tab.typescript').addClass('active');
191
- $('.tab.javascript').removeClass('active');
192
- } else {
193
- $('.tab.typescript').removeClass('active');
194
- $('.tab.javascript').addClass('active');
195
- }
196
- }
197
-
198
- $('.tab').click(function() {
199
- if ($(this).hasClass('typescript')) {
200
- localStorage.setItem('js-lang', 'typescript');
201
- } else {
202
- localStorage.setItem('js-lang', 'javascript');
203
- }
204
-
205
- flipTabs();
206
- });
207
-
208
- flipTabs();
209
- })
210
- </script>
211
-
212
- </body>
213
- </html>
214
-
@@ -1,198 +0,0 @@
1
- <!DOCTYPE html>
2
- <html lang="en">
3
-
4
- <head>
5
- <meta charset="utf-8">
6
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
7
- <meta name="viewport" content="width=device-width, initial-scale=1">
8
- <link href="https://fonts.googleapis.com/css?family=Roboto+Mono" rel="stylesheet">
9
- <link href="https://fonts.googleapis.com/css?family=Boogaloo" rel="stylesheet">
10
-
11
- <link rel="apple-touch-icon" sizes="180x180" href="/1.13/assets/favicons/apple-touch-icon.png">
12
- <link rel="icon" type="image/png" sizes="32x32" href="/1.13/assets/favicons/favicon-32x32.png">
13
- <link rel="icon" type="image/png" sizes="16x16" href="/1.13/assets/favicons/favicon-16x16.png">
14
- <link rel="manifest" href="/1.13/assets/favicons/site.webmanifest">
15
- <link rel="mask-icon" href="/1.13/assets/favicons/safari-pinned-tab.svg" color="#F86DA7">
16
- <link rel="shortcut icon" href="/1.13/assets/favicons/favicon.ico">
17
- <meta name="msapplication-TileColor" content="#F86DA7">
18
- <meta name="msapplication-config" content="/1.13/assets/favicons/browserconfig.xml">
19
- <meta name="theme-color" content="#F86DA7">
20
-
21
- <title>Tutorial Write-Ups Are Out!</title>
22
- <meta name="description" content="Though we’ve long had a sample application with step-by-step diffs, we’ve been missing a full walkthrough. That now exists! Start with Step 0: Bootstrapping.">
23
-
24
- <link rel="stylesheet" href="/1.13/assets/main.css?ref=wh4t3v45">
25
- <link rel="alternate" type="application/rss+xml" title="Graphiti" href="/1.13/feed.xml">
26
-
27
- <!-- Global site tag (gtag.js) - Google Analytics -->
28
- <script async src="https://www.googletagmanager.com/gtag/js?id=UA-127904727-1"></script>
29
- <script>
30
- window.dataLayer = window.dataLayer || [];
31
- function gtag(){dataLayer.push(arguments);}
32
- gtag('js', new Date());
33
-
34
- gtag('config', 'UA-127904727-1');
35
- </script>
36
-
37
- <!-- javascript -->
38
- <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
39
- <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
40
-
41
-
42
- </head>
43
-
44
-
45
- <body>
46
- <main class="page-content" aria-label="Content">
47
- <div class="wrapper">
48
- <header class="navbar navbar-inverse normal" role="banner">
49
- <div class="container">
50
- <div class="navbar-header">
51
- <a href="/1.13/1.13" class="navbar-brand">
52
- <img alt="logo" src="/1.13/assets/img/logo.png">
53
- </a>
54
- </div>
55
- <nav class="" role="navigation">
56
- <ul class="nav navbar-nav nav-links">
57
- <li>
58
- <a class="quickstart nav-link" href="/1.13/quickstart">Quickstart</a>
59
- </li>
60
- <li>
61
- <a class="guides nav-link" href="/1.13/guides">Guides</a>
62
- </li>
63
- <li>
64
- <a class="tutorial nav-link" href="/1.13/tutorial">Tutorial</a>
65
- </li>
66
- <li>
67
- <a class="spraypaint nav-link" href="/1.13/js">Spraypaint</a>
68
- </li>
69
- </ul>
70
- <ul class="nav gh navbar-nav navbar-right visible-lg visible-md">
71
- <li>
72
- <span class="star">⭐</span>
73
- <a href="https://github.com/graphiti-api/graphiti">
74
- <img alt="github-star" style="margin-right: 65px;margin-top: -20px" src="/1.13/assets/img/gh.png">
75
- </a>
76
- </li>
77
- </ul>
78
- </nav>
79
- </div>
80
- </header>
81
-
82
- <div class="container">
83
- <h1>Tutorial Write-Ups Are Out!</h1>
84
- <p>Though we’ve long had a <a href="https://github.com/graphiti-api/employee_directory">sample application</a> with step-by-step diffs, we’ve been missing a full walkthrough. That now exists! Start with <a href="/1.13/tutorial/step_0">Step 0: Bootstrapping</a>.</p>
85
-
86
- <p>These write-ups will tell you the relevant code and commands, but
87
- they’ll also give helpful context around the decisions Graphiti makes.
88
- Even if you’re already a Graphiti user, I suggest checking it out!</p>
89
-
90
- <p><br />
91
- <br />
92
- <br />
93
- <br />
94
- <br />
95
- <br />
96
- <br />
97
- <br />
98
- <br />
99
- <br />
100
- <br /></p>
101
-
102
-
103
- </div>
104
- </div>
105
- </main>
106
- <div class="main-footer main-footer--dark">
107
- <div class="container">
108
- <div class="row">
109
- <div class="col-sm-4 menu">
110
- <h3>Overview</h3>
111
- <ul>
112
- <li>
113
- <a href="/1.13/quickstart">Quickstart</a>
114
- </li>
115
- <li>
116
- <a href="/1.13/tutorial">Tutorial</a>
117
- </li>
118
- <li>
119
- <a href="/1.13/guides">Guides</a>
120
- </li>
121
- </ul>
122
- </div>
123
- <div class="col-sm-4 menu">
124
- <h3>Contact</h3>
125
- <ul>
126
- <li>
127
- <a target="_blank" href="https://discord.gg/wgqkMBsSRV">Discord Chat</a>
128
- </li>
129
- <li>
130
- <a href="mailto:richmolj@gmail.com">Email</a>
131
- </li>
132
- </ul>
133
- </div>
134
- <div class="col-sm-4 menu">
135
- <h3>Related</h3>
136
- <ul>
137
- <li>
138
- <a target="_blank" href="http://jsonapi.org">JSONAPI Spec</a>
139
- </li>
140
- <li>
141
- <a target="_blank" href="http://jsonapi-rb.org">jsonapi-rb</a>
142
- </li>
143
- <li>
144
- <a target="_blank" href="https://vuejs.org/">VueJS</a>
145
- </li>
146
- </ul>
147
- </div>
148
- </div>
149
- </div>
150
- </div>
151
-
152
- <script type="text/javascript">
153
- $(function () {
154
-
155
- var flipTabs = function() {
156
- var isTS = true;
157
- if (localStorage.getItem('js-lang') === 'javascript') {
158
- isTS = false;
159
- }
160
-
161
- $('.code-tabs').each(function(index, el) {
162
- if (isTS) {
163
- console.log('hiding js');
164
- $($(el).children()[1]).hide();
165
- $($(el).children()[0]).show();
166
- } else {
167
- console.log('hiding ts');
168
- $($(el).children()[0]).hide();
169
- $($(el).children()[1]).show();
170
- }
171
- });
172
-
173
- if (isTS) {
174
- $('.tab.typescript').addClass('active');
175
- $('.tab.javascript').removeClass('active');
176
- } else {
177
- $('.tab.typescript').removeClass('active');
178
- $('.tab.javascript').addClass('active');
179
- }
180
- }
181
-
182
- $('.tab').click(function() {
183
- if ($(this).hasClass('typescript')) {
184
- localStorage.setItem('js-lang', 'typescript');
185
- } else {
186
- localStorage.setItem('js-lang', 'javascript');
187
- }
188
-
189
- flipTabs();
190
- });
191
-
192
- flipTabs();
193
- })
194
- </script>
195
-
196
- </body>
197
- </html>
198
-
@@ -1 +0,0 @@
1
- www.graphiti.dev
@@ -1,16 +0,0 @@
1
- Graphiti Documentation
2
- ==========
3
-
4
- This is a static website generated by [jekyll](https://jekyllrb.com). To
5
- contribute:
6
-
7
- ```bash
8
- $ git checkout gh-pages
9
- $ bundle install --binstubs
10
- $ bin/jekyll serve
11
- ```
12
-
13
- Comment/Uncomment `github.url` in `_config.yml`
14
-
15
- Always make sure files are compiled before pushing. You can do this with
16
- `jekyll serve` or `jekyll build`
@@ -1,60 +0,0 @@
1
- .highlight { background: #ffffff; }
2
- .highlight .c { color: #999988; font-style: italic } /* Comment */
3
- .highlight .err { color: #a61717; background-color: #e3d2d2 } /* Error */
4
- .highlight .k { font-weight: bold } /* Keyword */
5
- .highlight .o { font-weight: bold } /* Operator */
6
- .highlight .cm { color: #999988; font-style: italic } /* Comment.Multiline */
7
- .highlight .cp { color: #999999; font-weight: bold } /* Comment.Preproc */
8
- .highlight .c1 { color: #999988; font-style: italic } /* Comment.Single */
9
- .highlight .cs { color: #999999; font-weight: bold; font-style: italic } /* Comment.Special */
10
- .highlight .gd { color: #000000; background-color: #ffdddd } /* Generic.Deleted */
11
- .highlight .gd .x { color: #000000; background-color: #ffaaaa } /* Generic.Deleted.Specific */
12
- .highlight .ge { font-style: italic } /* Generic.Emph */
13
- .highlight .gr { color: #aa0000 } /* Generic.Error */
14
- .highlight .gh { color: #999999 } /* Generic.Heading */
15
- .highlight .gi { color: #000000; background-color: #ddffdd } /* Generic.Inserted */
16
- .highlight .gi .x { color: #000000; background-color: #aaffaa } /* Generic.Inserted.Specific */
17
- .highlight .go { color: #888888 } /* Generic.Output */
18
- .highlight .gp { color: #555555 } /* Generic.Prompt */
19
- .highlight .gs { font-weight: bold } /* Generic.Strong */
20
- .highlight .gu { color: #aaaaaa } /* Generic.Subheading */
21
- .highlight .gt { color: #aa0000 } /* Generic.Traceback */
22
- .highlight .kc { font-weight: bold } /* Keyword.Constant */
23
- .highlight .kd { font-weight: bold } /* Keyword.Declaration */
24
- .highlight .kp { font-weight: bold } /* Keyword.Pseudo */
25
- .highlight .kr { font-weight: bold } /* Keyword.Reserved */
26
- .highlight .kt { color: #445588; font-weight: bold } /* Keyword.Type */
27
- .highlight .m { color: #009999 } /* Literal.Number */
28
- .highlight .s { color: #d14 } /* Literal.String */
29
- .highlight .na { color: #008080 } /* Name.Attribute */
30
- .highlight .nb { color: #0086B3 } /* Name.Builtin */
31
- .highlight .nc { color: #445588; font-weight: bold } /* Name.Class */
32
- .highlight .no { color: #008080 } /* Name.Constant */
33
- .highlight .ni { color: #800080 } /* Name.Entity */
34
- .highlight .ne { color: #990000; font-weight: bold } /* Name.Exception */
35
- .highlight .nf { color: #990000; font-weight: bold } /* Name.Function */
36
- .highlight .nn { color: #555555 } /* Name.Namespace */
37
- .highlight .nt { color: #000080 } /* Name.Tag */
38
- .highlight .nv { color: #008080 } /* Name.Variable */
39
- .highlight .ow { font-weight: bold } /* Operator.Word */
40
- .highlight .w { color: #bbbbbb } /* Text.Whitespace */
41
- .highlight .mf { color: #009999 } /* Literal.Number.Float */
42
- .highlight .mh { color: #009999 } /* Literal.Number.Hex */
43
- .highlight .mi { color: #009999 } /* Literal.Number.Integer */
44
- .highlight .mo { color: #009999 } /* Literal.Number.Oct */
45
- .highlight .sb { color: #d14 } /* Literal.String.Backtick */
46
- .highlight .sc { color: #d14 } /* Literal.String.Char */
47
- .highlight .sd { color: #d14 } /* Literal.String.Doc */
48
- .highlight .s2 { color: #d14 } /* Literal.String.Double */
49
- .highlight .se { color: #d14 } /* Literal.String.Escape */
50
- .highlight .sh { color: #d14 } /* Literal.String.Heredoc */
51
- .highlight .si { color: #d14 } /* Literal.String.Interpol */
52
- .highlight .sx { color: #d14 } /* Literal.String.Other */
53
- .highlight .sr { color: #009926 } /* Literal.String.Regex */
54
- .highlight .s1 { color: #d14 } /* Literal.String.Single */
55
- .highlight .ss { color: #990073 } /* Literal.String.Symbol */
56
- .highlight .bp { color: #999999 } /* Name.Builtin.Pseudo */
57
- .highlight .vc { color: #008080 } /* Name.Variable.Class */
58
- .highlight .vg { color: #008080 } /* Name.Variable.Global */
59
- .highlight .vi { color: #008080 } /* Name.Variable.Instance */
60
- .highlight .il { color: #009999 } /* Literal.Number.Integer.Long */
@@ -1,9 +0,0 @@
1
- <?xml version="1.0" encoding="utf-8"?>
2
- <browserconfig>
3
- <msapplication>
4
- <tile>
5
- <square150x150logo src="/mstile-150x150.png"/>
6
- <TileColor>#f86da7</TileColor>
7
- </tile>
8
- </msapplication>
9
- </browserconfig>
@@ -1 +0,0 @@
1
- <svg version="1" xmlns="http://www.w3.org/2000/svg" width="506.667" height="506.667" viewBox="0 0 380.000000 380.000000"><path d="M166 27.5C106 35.8 53.9 78.6 35.3 135c-6.2 18.8-7.7 28.4-7.7 50.5 0 17 .3 21.6 2.3 30.5C43.8 280.8 91.5 328.1 157 342.1c8.9 1.9 13.6 2.3 31 2.3 17.5.1 22.2-.3 31.7-2.2 18.1-3.6 39.4-11.9 53.5-20.8 2-1.3 3.9-2.4 4.2-2.4.2 0 .9 2.2 1.6 5 1.4 5.8 1.7 6.1 9.8 9 5.6 2.1 7.4 2.2 17 1.7 12.8-.8 22.8-3.3 37.2-9.5 4.3-1.9 7.2-4.8 7.2-7.3 0-3.9-2.1-20.8-3.4-27.8l-1.2-6.4 3.4-2.6c1.9-1.4 5-4.3 7-6.5 16.6-18.2 16.8-18.7 15.1-28.2-.5-2.7-.5-7.4-.1-10.4.9-6.6-.3-17.4-2.5-22.7-2.3-5.5-9-11.9-14-13.4l-4.2-1.3-.6-17c-.4-10.7-1.4-20.7-2.6-26.7-16.9-83.3-96.2-139-181.1-127.4zm2.1 15.9c-2.4 2.4-3.8 4.6-3.3 5 .5.3 1.7 2.1 2.5 3.9l1.6 3.3 14.8-1.8c19.2-2.4 19.3-2.4 19.3-5.1 0-1.2.9-3.7 2-5.5 2.4-3.9 4.5-4 16.9-1.3 9.1 2 11.1 3.5 11.1 8.3 0 3.5-2.2 8.9-4.3 10.6-1.5 1.2-1.2 2 2.8 8 3.6 5.3 5.1 6.7 7.3 6.9 7.2.5 7.5.7 7.9 5.2.3 2.8-.1 5.2-1.2 6.9l-1.6 2.7L246 88c1.5-1.7 2.1-3.4 1.8-5.6-.2-1.8 0-3 .4-2.8.4.3.8 1.2.8 2 0 1.2 2.9 1.4 17.5 1.4 10.1 0 17.5-.4 17.5-.9s-1-1.2-2.2-1.4c-2-.4-2-.4.4-.6 2.2-.1 2.8.4 3.3 2.8.7 3.4 7.6 10.1 10.3 10 1.2 0 .9-.3-.8-1-3.9-1.6-7.9-6-8.6-9.4l-.6-3.2-12.1-1.7c-12.2-1.7-22.4-1.4-19.5.6 1 .8 1 .9-.2.5-1-.2-1.5-1.6-1.5-4.3 0-3.4.3-3.9 2.4-4.2 1.4-.2 3 .3 3.6 1.1 1.1 1.5 23.3 5.2 27.3 4.5 1.5-.2 4.2 1.8 9.7 7.2 4.1 4.1 7.5 7.8 7.5 8.2 0 .3-.6.8-1.2 1.1-.7.2-.6.3.4.2 2.9-.4 16.3 19.4 22.5 33.3 3.5 8 6.9 18 9.9 29.7 2.1 7.8 2.7 13.3 3.1 25.2l.6 15.3h-3.5c-4.6 0-9.8-1.8-12.5-4.4-1.1-1.2-2.8-2.7-3.7-3.4-1.1-.9-1.6-3-1.6-7 0-6.9-2.1-11.5-7.1-15.5-5-3.9-13.3-4.7-20.5-1.9l-5.2 1.9-6.9-6.6-7-6.6 2.6-2.2 2.6-2.2-2.3-.1c-1.3 0-4.5-.7-7.2-1.6l-4.8-1.6 1.5-3.6c.8-2.1 1.9-4.1 2.4-4.7 1.7-1.8.9-8-1.7-12.5-1.4-2.5-2.7-5.6-2.9-6.8-.3-2.6-8.8-11.3-13.4-13.7-1.7-.8-4.6-1.5-6.6-1.5s-3.5-.5-3.5-1.2c0-1.8-3.1-4.8-4.9-4.7-1 0-.8.4.7.9 2.7 1.1 3.8 3.6 2.4 5.3-.6.7-3.3 2.1-6.1 3.1-5.4 1.9-7.1 4.6-7.1 11.2 0 3.4-.8 4.1-2.5 2.6-.6-.5-3.6-1.9-6.7-3.1-5.6-2.2-5.6-2.3-5.1-5.7.6-3.9.4-4-3.7-1.9-2.9 1.5-3 1.5-3.1-.7-.1-3.4-.9-7.1-1.6-7.7-.3-.3-.3.4 0 1.7.5 2.3-.4 3.1-5.7 5.2-2.6.9-2.6.9-2.1-2.8.7-4.8-.5-6.8-3.2-5.3-1.1.5-2.3.7-2.7.3-.4-.3-.5 0-.1.8.4 1.1-1.5 2.8-6.2 5.7-8.8 5.3-16.8 9.3-18.8 9.3-.9 0-2.9.7-4.5 1.5-2.9 1.5-3 1.5-3-1 0-1.6.6-2.5 1.6-2.5 1.4 0 1.4-.1 0-1.6-.9-.8-1.6-2.5-1.6-3.6 0-2.7-7.2-9.8-9.9-9.8-1.1 0-2.1.4-2.1.9 0 .4-1.7 1.1-3.8 1.3-6.4.9-14.2 4.8-14.8 7.4-.3 1.3-2.2 4.1-4 6.1-1.9 2.1-3.7 4.9-4 6.3-.3 1.4-1.2 3.9-1.9 5.5-2.2 5-2.9 13-1.5 18 1.6 5.6 1.6 5.5-10.2 13.6-6.2 4.2-8.6 6.4-7.7 6.9.9.6-.4 2.6-4.6 7.2-9 9.6-14.8 24.4-11.1 28.1.9.8 1.9 4.1 2.2 7.2.8 6.4 3.7 11.4 7.7 13.3 1.5.7 2.7 1.9 2.7 2.7 0 .7-3.7 5.3-8.2 10.2-11.3 12-14.8 16.6-18.4 24.2l-3.1 6.6-5.6-11.7c-6-12.5-8.5-20-12.3-36.7-2-9-2.4-13.2-2.4-28.2 0-15.1.4-19.2 2.5-29 4.5-20.4 11.7-37.8 22.1-53.4 5.6-8.5 13.4-17.8 14.2-17 .3.3 1.7-.6 3.1-1.9 2.2-2 3.7-2.5 9.3-2.7 3.8-.1 7.1.1 7.5.4.9.9-2.9 7.7-4.3 7.7-.6 0-1.7.7-2.4 1.5-1.1 1.3-.9 1.4 1.5.1 1.5-.8 3.6-2.9 4.6-4.6 1.7-2.8 1.8-3.6.7-6.1-2.5-5.8-10.9-5.1-15.9 1.2-1.7 2.2-3.4 3.7-3.7 3.4-.3-.3 1.9-3 4.9-6.1 5.2-5.3 5.6-5.5 9.5-5 3.5.4 4.5.1 6.4-1.9 2.7-2.9 7.4-3.3 10.1-.9 1.7 1.6 2.6 1.3 13.4-3.1 10.3-4.3 11.6-5.1 11.1-6.9-.3-1.2-.6-2.8-.6-3.7 0-1.2-1.8-1.9-7.2-2.9-6.1-1.1-6.9-1.4-5.1-2.3 1.4-.6 4.1-.6 7.8 0 5.5 1 5.6.9 7-1.6 2.4-4.7 5.9-7 12.9-8.6 3.8-.9 7.2-1.3 7.5-.8.3.4 1.7 1.4 3 2.2 2.2 1.2 2.7 1.1 5.8-2.3 1.9-2 4.2-3.6 5.1-3.6 1.1 0 .3 1.4-2.7 4.4zM258.5 78c-.3.5-1.2 1-1.8 1-.7 0-.6-.4.3-1 1.9-1.2 2.3-1.2 1.5 0zm4.8-.3c-.7.2-1.9.2-2.5 0-.7-.3-.2-.5 1.2-.5s1.9.2 1.3.5zm7.5 1c-1 .2-2.6.2-3.5 0-1-.3-.2-.5 1.7-.5s2.7.2 1.8.5zm-176.5 1c-.7.2-2.1.2-3 0-1-.3-.4-.5 1.2-.5 1.7 0 2.4.2 1.8.5zm183.5 0c-1 .2-2.6.2-3.5 0-1-.3-.2-.5 1.7-.5s2.7.2 1.8.5zm-133 29.5c1.5 1.5 1.5 6.5.1 10.7-.9 2.4-1.4 2.9-2 1.9-.7-.9-.8-.8-.7.7.4 3.6-1.4 9.5-2.8 9.5-.8 0-1.4.9-1.4 2s.7 2 1.5 2 1.5-.9 1.5-2 .5-2 1.1-2c.6 0 3.8-1.8 7.1-4 11.5-7.7 33.2-12.4 46-10 3.7.7 6.5 1.6 6.3 2.1-.3.4.3.5 1.3.2 2.6-.6 13.3 3.9 20.7 8.7 3.4 2.2 6.6 4 7.3 4 2 0 2.3-1.9.6-4.5-2.1-3.2-1.5-12.1.9-15.9 3.5-5.3 14-1.4 20.7 7.7 5.6 7.7 5.8 15.3.5 19.7-1.6 1.3-2 1.1-4.5-1.9-4.9-5.8-4.7-9.7.3-11.4 1.8-.6-.3-2.7-2.7-2.7-2.3 0-4.8 2.2-5.9 5.2-1.8 5.1 4.3 13.8 15.1 21.4 8.1 5.7 15.2 12.3 19.6 18.4 3.3 4.4 3.3 4.6 2.9 13.7-.5 11.5-1.8 15.3-6.4 19-5.4 4.3-14.5 14.9-18 21-1.8 3.1-3.4 7.7-3.8 10.6l-.6 5.1-8.2 5.2-8.1 5.3 1-3.5c1.9-7-1.5-14.8-10.5-24.1l-6-6.3h5.5c4.1 0 7-.8 11.5-3 7.4-3.7 10.5-7.8 14.3-19.5 1.6-4.7 3.8-9.9 5-11.5 1.1-1.5 2.3-4.2 2.6-5.8.9-4.6-2.1-5.9-16.3-7.3-14.1-1.3-29.2-.2-42 3.2-11.5 3.1-20.7 3-32.8-.4-8-2.3-12.8-2.9-24.5-3.4-14.4-.6-28.1.7-30.6 2.8-1.4 1.2 0 8.5 2.1 10.9.7.8 2.8 5.9 4.6 11.4 5.1 15.6 10.7 20.5 24.3 21.3l8.1.6-6.4 6.4c-8 8.3-11.4 15.3-10.9 22.7l.3 5.4-2.8-1.6c-13-7.7-34.9-28.4-40-37.9-3.7-6.9-4.4-13.6-2.3-20.4 2.1-6.4 8.5-16.4 10.6-16.4.8 0 1.5-.7 1.5-1.5 0-1.8 5.1-7 15.5-15.9 17.9-15.4 22-20.6 22-27.6 0-3.8-2.8-7.5-5.7-7.5-2.3 0-6.3 3.9-6.3 6.2 0 2.2 2.3 2.4 4 .3 1.9-2.3 3-1.8 3 1.6 0 3.9-3.1 9.2-7.2 12-2.7 2-3.1 2-4.6.6-2.7-2.8-1.9-10.7 1.8-17.1 1.7-3.1 3.4-5.6 3.6-5.6.3 0 .2.6-.2 1.2-.5.9-.2.9.9-.1 1.8-1.5 2.3-2.6.7-1.6-.5.3-1 .2-1-.4 0-1.2 7-6.8 10.1-8 3.4-1.4 7.3-1.3 8.7.1zM301.6 171c1.2 0 3.3 1.1 4.8 2.5 2.3 2.2 2.6 3.1 2.5 9.2-.1 5.1-.3 6-.9 3.8-.4-1.7-.5-4.4-.2-6l.5-3-3.2 3.1c-6.8 6.9-18.1 5.2-18.1-2.6 0-4.4 5.6-8.4 10.5-7.4 1.1.2 2.9.4 4.1.4zm-64.1 2.4c5.4 2.3 6.8 5.4 6.3 14.1-.4 5.5-1.2 8.9-3.4 13.2-2.5 5-3.5 6-7.4 7.5-4.9 1.8-18.5 2.4-20.9.9-1.2-.8.7-4.5 9.4-19 5.9-10 11.2-18.1 11.7-18.1s2.4.6 4.3 1.4zm-75.2 1.1c1.9.8 4.5 2.7 5.7 4.2 1.9 2.4 2.1 3.6 1.5 7.8-1.9 14.8-10 22.5-23.5 22.4-11.1-.1-11.1.5-.9-16.4 11.9-19.6 11.8-19.5 12.8-19.5.5 0 2.4.7 4.4 1.5zm26.5 16.2c1.7 4.2 3 7.8 2.9 7.9-.1.1-2.4-.3-5.2-.8-4.2-.9-5.8-.7-10.1.9l-5.2 2 2.8-6.1c1.5-3.4 3.2-7.3 3.8-8.9.9-2.2 1.8-2.7 4.5-2.7 3.3 0 3.5.2 6.5 7.7zm101.3-1.8c0-.8.2-.9.5-.3.3.7-.9 2.5-2.6 4.2-2.6 2.7-2.9 2.8-2.5.9.3-1.2.7-3.2.8-4.4.1-2.1.2-2.1 1.9-.6 1.5 1.3 1.8 1.3 1.9.2zm10.9 1.5c0 2.3-2.2 3.6-4.2 2.5-2.3-1.2-2.3-3.5-.1-4.8 1.9-1 4.3.2 4.3 2.3zm7 4.2c0 1.3-7.4 3.4-11.7 3.3-4.6-.1-4.5-.1 3.2-1.8 4.4-1 8.1-1.9 8.3-2 .1 0 .2.1.2.5zm7.4 5.1c-.7 2.7-8.5 5.3-17.9 6-8.7.6-12.5-.6-12.5-4.2 0-3 1.5-3.3 2.3-.5.4 1.8 1.4 2 7.5 2 7.5 0 20.2-3.3 20.2-5.2 0-.6.2-.9.5-.7.2.3.2 1.4-.1 2.6zM192.8 205c6.8 3.2 9.8 5.2 21 14.4 4.3 3.5 7.1 6.5 7 7.5-.2.9.3 1.5.9 1.4 1.6-.4 5.9 6.3 6.8 10.4.9 4.3-2 9.6-8.7 15.9-5.7 5.4-10.6 8.7-9.3 6.2.4-.7-.2-.3-1.2 1-1 1.2-6.1 3.9-11.3 5.9-14.8 5.7-24.7 4.7-40.5-4.2-13.1-7.3-21.2-17.1-20.2-24.6 1.3-9.6 18.9-26 36.9-34.4 6.9-3.2 11-3.1 18.6.5zm135.8 1.2l2.9 3.3-3.2-2.9c-3.1-2.8-3.8-3.6-3-3.6.2 0 1.6 1.5 3.3 3.2zm6.9 2.1c2 3.6 2 3.6-.1 6.4-3 4.2-13.6 9.1-24.9 11.4-18.6 3.9-38.9 1.2-41.4-5.3-1.2-3.3-.6-3.4 2.8-.5 4.5 3.8 11.6 5 25 4.4 17.3-.8 31.9-5.6 36.5-11.9l2-2.8-2.3-3.1c-1.4-1.9-1.8-3-1-2.7.8.2 2.3 2.1 3.4 4.1zm13.2-1.7c2.8.8 6.5 2.5 8.1 3.9 3.3 2.8 6.6 9.8 5.7 12.4-.5 1.8-18.6 15.6-24.2 18.4-3.4 1.8-7.1 2.2-8.9.9-2.4-1.6-4.9-9.2-2.5-7.8.5.4.7-.3.4-1.3-.4-1.4 1-3.1 5.4-6.5 5.7-4.5 8.1-5.8 6.7-3.4-.4.7-.3.8.5.4.6-.4.9-1.1.6-1.6-.7-1.2 2.6-2.9 9.5-5l5.5-1.7-2.7-1.3c-1.5-.7-2.5-1.6-2.3-2 .2-.4-.7-.5-2-.2-1.7.3-2.7-.1-3.1-1.2-.7-1.7-3.4-2.2-3.4-.6 0 2.3-2.6.7-4.1-2.6l-1.7-3.4 3.7.6c2 .3 5.9 1.2 8.8 2zm-26.7 2.1c0 .7-3.9-1.7-4.6-2.8-.3-.6.5-.3 2 .6 1.4 1 2.6 1.9 2.6 2.2zm-25.3.3c3.6 0 8.4-.5 10.6-1.2 3.9-1.2 4-1.1 7 2.3 1.7 1.8 3.4 3.4 3.8 3.4.4 0 1.1.4 1.6.9s.2.6-.6.1c-.9-.5-1.2-.3-.9.6.3.8 1 1.4 1.6 1.4.5 0 1.4.4 1.9.9.4.5.3.6-.3.3-.7-.4-1.4-.1-1.7.6-1 2.7-24.2 6.1-33.5 5l-5.4-.6.5-4.1c.3-2.3 1.2-5.8 2.1-7.8 1.5-3.4 1.8-3.7 4.2-2.8 1.4.6 5.5 1 9.1 1zm-18.7-.7c0 .2-1 1.2-2.2 2.3l-2.3 1.9 1.9-2.3c1.8-2.1 2.6-2.7 2.6-1.9zm46.5 2.6c.3.5.2 1.2-.3 1.5-.5.3-.9-.1-.9-.9 0-1.7.3-1.9 1.2-.6zm1.2 3.6c0 .8-.4 1.2-.9.9-.5-.3-.6-1-.3-1.5.9-1.3 1.2-1.1 1.2.6zm-59.6 11.7c-1.5 2.5-1.5 2.5 2.3 3.2 7.7 1.5 15.5 10.4 15.6 17.9 0 2.8-3.8 7.7-6 7.7-.5 0-3.6-2.4-6.8-5.3-3.2-3-7.3-6.2-9-7.3-5.5-3.2-5.5-8.9 0-18.4l3.1-5.5 1 2.9c.7 2 .6 3.5-.2 4.8zm62.9-2.7c0 .2-1 .9-2.2 1.5-2.2 1.1-2.2 1-.4-.4 2.1-1.7 2.6-1.9 2.6-1.1zm-11.9 6.1c-2.7 3.4-2.7 8.8 0 14.9 2 4.5 2 4.8.3 6.4-1.7 1.5-1.7 1.5-.5-.2 2.8-3.6.3-2.6-3.3 1.3-2.9 3.2-3.6 4.8-3.6 8 0 4.5 3.7 9.4 6.3 8.5 1.9-.8 4.3 2.4 5.1 6.6.3 2 1.4 4.3 2.4 5.2 5.2 5 7.7 6.7 9.7 6.7 3.3 0 4.1 1.6 5.9 12.3 2.7 16.2 2.7 15.9-5.1 19.5-15.3 6.9-33.9 9.5-42.1 5.8-2.4-1.1-3.8-2.2-3.3-2.5.6-.4.4-5.5-.5-14.1-.8-7.4-1.7-17.7-2.1-22.8-.5-8.1-.4-9.2 1.1-9.2.9 0 1.6-.8 1.6-2 0-1.3-.7-2-1.9-2-1.9 0-2.3-.6-3.6-6.4-.5-2.4 0-3.3 3.5-6.3 7.3-6.3 9.3-16.4 4.4-22.2-2.4-2.8-5.3-4.4-3.9-2.1 1 1.6-.1 1.1-1.6-.7-1.2-1.4-1.2-1.5 0-.9 1 .7 1.2.3.6-1.3-.6-2-.3-2.1 8.7-2.2 5.1 0 11.8-.7 14.8-1.4 9.1-2 9.5-2 7.1 1.1zm-217.7 2.6c1 1.3 3.5 4.1 5.5 6.3l3.6 4-3.5-3.2-3.4-3.3-4.6 4.3-4.5 4.2 4.5-5 4.5-5-5.8 5.5c-5.3 5.1-7.9 8.9-3.9 5.9.9-.7.4.1-1.2 1.9-3.4 3.6-4.9 4.4-2 .9 1.7-2 1.6-2-.9.2-2.6 2.3-3.8 4.9-1.7 3.6 1.6-1 1.1.1-.7 1.6-1.4 1.2-1.6 1.2-.9-.1.4-.8-.2-.4-1.5 1-4.4 5-7.1 12.6-6.7 19 .1 3.2 0 6.2-.5 6.6-.4.4-2.1-.8-3.7-2.7-5.3-6.1-3.6-15.7 4.7-26.4 6-7.8 18.5-21.3 19.8-21.4.6-.1 1.9.9 2.9 2.1zM362 242.6l-2.2 9.5-7.6 3.8c-4.2 2.2-11.3 6-15.7 8.5-4.4 2.5-8.9 4.6-10.1 4.6-5 0-7.6-8.6-4.4-14.5 2.5-4.6 6.1-5.7 15.9-5 6.4.4 8.2.3 6.9-.5-1-.6-1.8-1.5-1.8-2s4.6-4.5 10.3-8.9c7.3-5.7 10.3-7.5 10.5-6.4.2.8-.6 5.8-1.8 10.9zm-249.9 2.1c1.3 1.6 1.2 1.7-.3.4-1-.7-1.8-1.5-1.8-1.7 0-.8.8-.3 2.1 1.3zm125.4 15.8c-.4 3.6-.4 6.5-.1 6.5.4 0 2.3-.7 4.4-1.6 4.4-1.9 22.2-3.2 22.2-1.6 0 .5-1.6 1.3-3.6 1.7-6.1 1.1-17.4 5.3-20.9 7.6l-3.3 2.3-.7 15.3c-.6 12.7-.4 16.9 1 24.3 1 5 1.6 9.2 1.4 9.5-.2.2-1.6.6-3 1l-2.5.6-1.3-11.8c-1-9.2-1.1-15.4-.2-28.3.6-9.1 1.5-18.1 2-20 .6-1.9 1.5-5.4 2.1-7.8 1.7-6.6 3.3-5.2 2.5 2.3zm118.6 1.3c-3.4 3.3-6.1 6.5-6.1 7 0 1.5-11.9 9.2-15.2 9.9-1.5.3-3.4 0-4.1-.6-.8-.6-1.6-.8-2-.5-.3.3-1-.3-1.6-1.4-.9-1.7-.5-2.1 3.1-3.1 2.2-.7 8.8-4.2 14.5-7.7 5.7-3.5 10.7-6.4 11.1-6.4.4 0 1.8-.9 3.2-2 4.6-3.5 3.2-1.2-2.9 4.8zM84 256.4c0 .2-.8 1-1.7 1.7-1.6 1.3-1.7 1.2-.4-.4 1.3-1.6 2.1-2.1 2.1-1.3zm149.7 1.8c.2 1.7 0 1.9-.7.8-.5-.8-.6-1.8-.4-2.2.8-1.2 1-1 1.1 1.4zm55.3-1.8c0 .2-.8 1-1.7 1.7-1.6 1.3-1.7 1.2-.4-.4 1.3-1.6 2.1-2.1 2.1-1.3zm-168.1 9.2c1.2 4.8 2.8 9.9 3.6 11.5 1.9 3.5 4.1 30.6 3.1 37.1-.7 5-1.9 5.8-5 3.5-1.5-1.1-1.6-1.5-.2-4.9 1.2-2.8 1.3-4.8.6-9.4-.6-3.3-1-9.6-1-14.1 0-10.4-1.2-13.1-5.9-13.8-2-.3-5.8-1.2-8.6-2-2.7-.8-7.2-2-10-2.6-8-1.9-7.6-2.9 1.3-2.9 5.6 0 10 .6 13.9 2l5.6 1.9-.5-7.4c-.3-4.1-.2-7.5.2-7.5s1.7 3.9 2.9 8.6zm192.8-4.4c-.3.7-.5.2-.5-1.2s.2-1.9.5-1.3c.2.7.2 1.9 0 2.5zm-81 2c-.3.8-.6.5-.6-.6-.1-1.1.2-1.7.5-1.3.3.3.4 1.2.1 1.9zm27-1.5c-2 .2-5.2.2-7 0-1.7-.2 0-.4 3.8-.4 3.9 0 5.3.2 3.2.4zm-12 .9c-.3.3-1.2.4-1.9.1-.8-.3-.5-.6.6-.6 1.1-.1 1.7.2 1.3.5zM117 266.5c0 1.9-.4 3.5-.8 3.5s-.6-1.6-.4-3.5c.2-1.9.6-3.5.8-3.5.2 0 .4 1.6.4 3.5zm105-3.1c0 .2-.8 1-1.7 1.7-1.6 1.3-1.7 1.2-.4-.4 1.3-1.6 2.1-2.1 2.1-1.3zm-115.7 3.3c-.7.2-1.9.2-2.5 0-.7-.3-.2-.5 1.2-.5s1.9.2 1.3.5zm-28.6 7.5c-.2 1.3-.4.3-.4-2.2s.2-3.5.4-2.3c.2 1.3.2 3.3 0 4.5zm194 3c-.3.7-.5.2-.5-1.2s.2-1.9.5-1.3c.2.7.2 1.9 0 2.5zm10 0c-.3.8-.6.5-.6-.6-.1-1.1.2-1.7.5-1.3.3.3.4 1.2.1 1.9zm-95.9 2.5c-1.6.2-4 .2-5.5 0-1.6-.2-.3-.4 2.7-.4s4.3.2 2.8.4z"/><path d="M184.3 56.3L169 58.4V65.7l11.4 5.3c6.7 3 11.9 4.9 12.7 4.5.8-.5 1-.4.5.3-.4.7-.1 1.2.9 1.2.9 0 1.4-.4 1.1-.8-.2-.4.4-.8 1.5-.9 6.8-.6 7.4-.5 9.9 2.5 3 3.6 8.2 5 11.7 3.1 3.3-1.8 5.9-.1 5.6 3.7-.2 2.4 0 2.6.8 1.1.6-.9.7-2.7.4-4-.5-1.9-.4-2 .5-.5 1.6 2.6 3.7 2.2 4.6-1 .4-1.5.6-3.1.5-3.5-.1-.5.3-.6.9-.2.7.4.7 1.2 0 2.5-1.6 3-1.2 6.6 1.1 9.1l2.1 2.4-1.6-2.5c-1.8-2.7-2.1-6.7-.7-8.9 1.1-1.7-.5-5.5-1.8-4.6-.5.2-.8-.3-.7-1.3 0-.9-.5-1.6-1.2-1.4-.8.1-1.1-.2-.7-.8.3-.5-.3-2.3-1.4-3.9-1.9-2.7-2.3-2.8-6-1.8-6 1.6-12.5-1.2-16-6.9-1.4-2.4-3.3-4.3-4.1-4.2-.8 0-8.4 1-16.7 2.1zM212 79.6c0 .2-.7.4-1.5.4s-1.5-.4-1.5-1c0-.5.7-.7 1.5-.4.8.4 1.5.8 1.5 1zm9.5-.9c-1.1.3-2.4.9-2.9 1.4-.6.5-1.7.9-2.5.9-1 0-.6-.6.9-1.4 1.4-.8 3.4-1.4 4.5-1.4h2l-2 .5zM127.3 70.8c-4.6 1.9-8 3.8-7.7 4.3.3.5-.2.6-1 .3-2.2-.8-5.6 1.4-5.6 3.7 0 3-4.4 6.9-7.8 6.9-2.2 0-3.3.8-4.9 3.7-1.5 2.8-1.8 4.4-1.2 5.8.9 1.9.9 1.9.5-.2-.6-3.4 2.9-8.3 6-8.3s8.4-5 8.4-7.9c0-1.2.4-2.1 1-2.1s.6.9 0 2.6c-.6 1.4-1 2.7-1 3 0 .2 4.5.4 9.9.4 9.6 0 10-.1 12.1-2.8 1.6-2 1.5-1.5-.5 2-1.5 2.7-2.5 4.8-2.2 4.8 1.1 0 5.8-9.1 5.2-10-.4-.6-.1-.9.6-.8 2.4.5 1.9-2.7-.9-5.8l-2.7-3-8.2 3.4zM164.2 72l-3.2 3.8 4.9 10.6c2.8 5.8 5.6 10.6 6.3 10.6.9 0 1-.3.2-.8-1.2-.8-4.7-7.4-5.8-11l-.7-2.2h13c7.2 0 13.1-.4 13.1-.9s-1.4-1.4-3-2.1c-1.7-.7-2.9-1.5-2.6-1.7.2-.2 1.8.3 3.5 1.2 2.1 1 3.1 2.3 3.1 3.9 0 2.1 3.7 6.6 5.4 6.6.5 0-.3-.9-1.8-2.1-1.7-1.3-2.6-3-2.6-4.8 0-2.4-.8-3.1-5.9-5.5-3.4-1.7-6.4-2.5-7.1-2.1-.8.5-1.1.4-.7-.2.8-1.3-2-2.6-3.5-1.6-.6.3-.8.1-.5-.4.4-.6.1-1.3-.6-1.6-8.9-3.7-7.9-3.8-11.5.3zm1.7 10.5c0 .5-.6-.1-1.4-1.5-.8-1.4-1.4-3-1.4-3.5 0-.6.6.1 1.4 1.5.8 1.4 1.4 2.9 1.4 3.5zM143 77c0 .6.5.8 1.2.4s.8-.3.4.5c-.4.6-1.1.9-1.6.6-.4-.3-2.3 2.1-4 5.2-1.8 3.2-4 6.8-4.8 8-.8 1.3-1.2 2.3-.9 2.3.4 0 2.5-3.2 4.8-7 4-6.8 5.5-8.7 4.2-5.4-.5 1.3.6 1.5 8.5 1.2l9.1-.3 4 8.5c2.3 4.6 4.1 8 4.1 7.5 0-.6-2.1-5.6-4.7-11.2l-4.8-10.2-4.5.2c-2.5.1-6-.2-7.7-.6-2.3-.6-3.3-.5-3.3.3zm5.7 1.6c-.3.3-1.2.4-1.9.1-.8-.3-.5-.6.6-.6 1.1-.1 1.7.2 1.3.5zm9 0c-.3.3-1.2.4-1.9.1-.8-.3-.5-.6.6-.6 1.1-.1 1.7.2 1.3.5zM207.6 86.7l-1.7 2.8 2-2.3c1.8-2 2.6-2.3 6.1-1.7 2.2.4 4.2 1.1 4.6 1.6.3.5 1.5.8 2.7.8 2-.1 2.1-.2.2-.6-1.1-.3-2.5-.9-3-1.4-.6-.4-2.9-1.1-5.1-1.5-3.7-.5-4.2-.3-5.8 2.3zM131 90c-.6 1.1-.8 2-.6 2 .3 0 1-.9 1.6-2 .6-1.1.8-2 .6-2-.3 0-1 .9-1.6 2zM204.2 92c0 1.9.2 2.7.5 1.7.2-.9.2-2.5 0-3.5-.3-.9-.5-.1-.5 1.8zM200.2 92c0 1.4.2 1.9.5 1.2.2-.6.2-1.8 0-2.5-.3-.6-.5-.1-.5 1.3zM239.5 91c-1.3.6-1.5.9-.5.9.8 0 2.2-.4 3-.9 1.8-1.2.2-1.2-2.5 0zM262.4 92.6c-1.9 1.5-1.9 1.5.1.6 1.1-.5 2.7-1.2 3.5-1.5 1.3-.5 1.3-.6-.1-.6-.8-.1-2.4.6-3.5 1.5zM268.1 92.3c.2.1 1.5 1.1 2.9 2.2l2.5 2-1.9-2.3c-1.1-1.2-2.4-2.2-2.9-2.2-.6 0-.8.1-.6.3zM127.7 95c-.9 1.1-1.3 2-.7 2 .5 0 1.4-.9 2-2 .6-1.1.9-2 .8-2-.2 0-1.1.9-2.1 2zM118.8 95.7c1.2.2 3.2.2 4.5 0 1.2-.2.2-.4-2.3-.4s-3.5.2-2.2.4zM131 96.9c-.7 1.5-.7 2.2.2 2.7.7.4 1 .4.6-.1-.4-.4-.3-1.6.3-2.6.5-1.1.7-1.9.5-1.9-.3 0-1 .9-1.6 1.9zM200.7 96.9c-.4 1.7-.3 2.1.5 1.3.5-.5.8-1.6.6-2.3-.3-.8-.7-.3-1.1 1zM110.7 99.2c-1.8 1.8-2.1 2.3-.7 1.2 1.4-1.2 3.4-2.6 4.5-3.2 1.1-.6 1.4-1.2.7-1.2s-2.7 1.5-4.5 3.2zM179 96.7c.8.3 2.4 1 3.5 1.5 2 .9 2 .9.1-.6-1.1-.9-2.7-1.6-3.5-1.5-1.4 0-1.4.1-.1.6zM205 97.4c0 .2.8 1 1.8 1.7 1.5 1.3 1.6 1.2.3-.4s-2.1-2.1-2.1-1.3zM228.5 98.1c-.4.6-.5 1.2-.2 1.5.2.3.7-.2 1-1.1.7-1.7.1-2-.8-.4zM257.2 100c0 1.4.2 1.9.5 1.2.2-.6.2-1.8 0-2.5-.3-.6-.5-.1-.5 1.3zM206.6 103.7c-.6 1.4-.5 1.5.5.6.7-.7 1-1.5.7-1.8-.3-.3-.9.2-1.2 1.2zM161.5 104.1c-.4.6-.5 1.2-.2 1.5.2.3.7-.2 1-1.1.7-1.7.1-2-.8-.4zM202.8 105.7c.7.3 1.6.2 1.9-.1.4-.3-.2-.6-1.3-.5-1.1 0-1.4.3-.6.6zM261.7 107.1c.7.7 1.5 1 1.8.7.3-.3-.2-.9-1.2-1.2-1.4-.6-1.5-.5-.6.5zM216.3 107.7c.9.2 2.3.2 3 0 .6-.3-.1-.5-1.8-.5-1.6 0-2.2.2-1.2.5zM209 112c-.9.6-1 1-.3 1 .6 0 1.5-.5 1.8-1 .8-1.2.4-1.2-1.5 0zM283.8 111.7c.6.2 1.8.2 2.5 0 .6-.3.1-.5-1.3-.5-1.4 0-1.9.2-1.2.5zM100.8 112.7c.6.2 1.8.2 2.5 0 .6-.3.1-.5-1.3-.5-1.4 0-1.9.2-1.2.5zM79.8 113.7c.7.3 1.6.2 1.9-.1.4-.3-.2-.6-1.3-.5-1.1 0-1.4.3-.6.6zM94.8 113.7c.7.3 1.6.2 1.9-.1.4-.3-.2-.6-1.3-.5-1.1 0-1.4.3-.6.6zM88.8 114.7c.7.3 1.6.2 1.9-.1.4-.3-.2-.6-1.3-.5-1.1 0-1.4.3-.6.6zM76.1 117.6c0 1.1.3 1.4.6.6.3-.7.2-1.6-.1-1.9-.3-.4-.6.2-.5 1.3zM99.8 116.7c.7.3 1.6.2 1.9-.1.4-.3-.2-.6-1.3-.5-1.1 0-1.4.3-.6.6zM158.3 130.7c.9.2 2.5.2 3.5 0 .9-.3.1-.5-1.8-.5-1.9 0-2.7.2-1.7.5zM195.8 130.7c.7.3 1.6.2 1.9-.1.4-.3-.2-.6-1.3-.5-1.1 0-1.4.3-.6.6zM166 131.4c0 .3.9 1 2 1.6 1.1.6 2 .8 2 .6 0-.3-.9-1-2-1.6-1.1-.6-2-.8-2-.6zM191.5 132c-.3.6.1.7.9.4 1.8-.7 2.1-1.4.7-1.4-.6 0-1.3.4-1.6 1zM139.5 143.6l-3 2.6 3.3-2.2c1.7-1.2 3.2-2.3 3.2-2.6 0-.7-.4-.5-3.5 2.2zM193.9 146.7c-1.3 1.6-1.2 1.7.4.4 1.6-1.3 2.1-2.1 1.3-2.1-.2 0-1 .8-1.7 1.7zM193.1 157.3c-1.3 2.1-1.2 2.1.5.5 1-1 1.6-2 1.3-2.2-.3-.3-1.1.5-1.8 1.7zM187.3 163.5c0 3.3.2 4.5.4 2.7.2-1.8.2-4.5 0-6s-.4 0-.4 3.3zM259 161.5c1.9 1.9 3.6 3.5 3.9 3.5.3 0-1-1.6-2.9-3.5s-3.6-3.5-3.9-3.5c-.3 0 1 1.6 2.9 3.5zM181.1 168.6c0 1.1.3 1.4.6.6.3-.7.2-1.6-.1-1.9-.3-.4-.6.2-.5 1.3zM91.2 194.5c0 1.6.2 2.2.5 1.2.2-.9.2-2.3 0-3-.3-.6-.5.1-.5 1.8zM99.2 205.5c0 1.6.2 2.2.5 1.2.2-.9.2-2.3 0-3-.3-.6-.5.1-.5 1.8zM136.4 217.2l-1.9 2.3 2.3-1.9c2.1-1.8 2.7-2.6 1.9-2.6-.2 0-1.2 1-2.3 2.2zM111.5 228c2.1 2.2 4.1 4 4.4 4 .3 0-1.3-1.8-3.4-4-2.1-2.2-4.1-4-4.4-4-.3 0 1.3 1.8 3.4 4zM126.5 242c2.1 2.2 4.1 4 4.4 4 .3 0-1.3-1.8-3.4-4-2.1-2.2-4.1-4-4.4-4-.3 0 1.3 1.8 3.4 4zM174.9 216c-9.4 1.7-12.8 5.2-12.7 13 .1 1.9.3 3 .5 2.4.2-.5 2.5 1.1 5.2 3.7s6.4 5.2 8.3 5.8c3.2 1.1 3.6 1.6 4.2 5.8.3 2.5.6 6.1.6 7.9v3.4l-5.2.1-5.3.1 4 1c9.4 2.3 24.9-.9 33.8-7.1 5.3-3.6 5.4-3.6 6-1.4.3 1 .5.4.6-1.4.1-4-2.1-6.3-6.2-6.3-2.9.1-3 .2-1.4 1.4 1.6 1.3 1.5 1.6-1.5 4.1-4.2 3.6-13 7.5-16.8 7.5h-3v-6.9c0-6.5.2-6.9 2.4-7.5 1.4-.3 4.5-2.1 6.9-4 2.5-1.9 4.9-3.1 5.3-2.8.4.4.4.2.1-.5-.4-.6-.2-1.3.3-1.5 1.4-.4 2.4-7.1 1.6-10.3-1.3-5.1-16.2-8.6-27.7-6.5zm23.1 4.5c2.5 2.3 2.5 4.1 0 8.2-2.5 4.2-4 4.2-3.3 0 .3-2.3 0-3.9-1.1-5-1.6-1.6-7.6-3.7-10.6-3.7-.8 0-2.2-.5-3-1.1-1.1-.7.9-.9 7.2-.6 6.7.2 9.2.8 10.8 2.2zM223.1 232.5c.1 1.9 1.8 5.1 1.8 3.5 0-.8-.4-2.2-.9-3-.5-.8-.9-1.1-.9-.5z"/><path d="M163 233.9c0 .6.4 1.3 1 1.6.6.3.7-.1.4-.9-.7-1.8-1.4-2.1-1.4-.7zM195 240.2c-2.5 2.2-3.6 3.6-2.5 3 1.9-1 8.4-7.2 7.4-7.2-.2.1-2.4 1.9-4.9 4.2zM167 239.5c1.3 1.4 2.6 2.5 2.8 2.5.3 0-.5-1.1-1.8-2.5s-2.6-2.5-2.8-2.5c-.3 0 .5 1.1 1.8 2.5zM225.3 242.5c0 2.7.2 3.8.4 2.2.2-1.5.2-3.7 0-5-.2-1.2-.4 0-.4 2.8zM171 242.4c0 .3.9 1 2 1.6 1.1.6 2 .8 2 .6 0-.3-.9-1-2-1.6-1.1-.6-2-.8-2-.6zM187.3 250.5c0 2.7.2 3.8.4 2.2.2-1.5.2-3.7 0-5-.2-1.2-.4 0-.4 2.8zM215.5 256.2l-4 4.3 4.3-4c3.9-3.6 4.7-4.5 3.9-4.5-.2 0-2.1 1.9-4.2 4.2zM190.5 263c-.3.6.1.7.9.4 1.8-.7 2.1-1.4.7-1.4-.6 0-1.3.4-1.6 1zM179 264c2 1.3 10.3 1.3 9.5 0-.3-.6-3-1-5.8-1-3.7 0-4.8.3-3.7 1zM289 268.5c0 .9.5 1.5 1.1 1.3.6-.2 1.1-.8 1.1-1.3s-.5-1.1-1.1-1.3c-.6-.2-1.1.4-1.1 1.3zM358.9 236.7c-1.3 1.6-1.2 1.7.4.4.9-.7 1.7-1.5 1.7-1.7 0-.8-.8-.3-2.1 1.3zM350.9 243.7c-1.3 1.6-1.2 1.7.4.4 1.6-1.3 2.1-2.1 1.3-2.1-.2 0-1 .8-1.7 1.7zM353.4 262.2l-1.9 2.3 2.3-1.9c2.1-1.8 2.7-2.6 1.9-2.6-.2 0-1.2 1-2.3 2.2z"/></svg>
@@ -1,19 +0,0 @@
1
- {
2
- "name": "Graphiti",
3
- "short_name": "Graphiti",
4
- "icons": [
5
- {
6
- "src": "/android-chrome-192x192.png",
7
- "sizes": "192x192",
8
- "type": "image/png"
9
- },
10
- {
11
- "src": "/android-chrome-256x256.png",
12
- "sizes": "256x256",
13
- "type": "image/png"
14
- }
15
- ],
16
- "theme_color": "#f86da7",
17
- "background_color": "#f86da7",
18
- "display": "standalone"
19
- }
Binary file
Binary file