chrome-devtools-frontend 1.0.1675430 → 1.0.1676824

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 (225) hide show
  1. package/WATCHLISTS +0 -4
  2. package/front_end/core/common/Settings.ts +0 -66
  3. package/front_end/core/root/Runtime.ts +0 -5
  4. package/front_end/core/sdk/CSSMetadata.ts +5 -9
  5. package/front_end/core/sdk/CSSPropertyParserMatchers.ts +8 -28
  6. package/front_end/core/sdk/DebuggerModel.ts +50 -30
  7. package/front_end/core/sdk/ResourceTreeModel.ts +20 -1
  8. package/front_end/core/sdk/Script.ts +9 -53
  9. package/front_end/entrypoints/heap_snapshot_worker/HeapSnapshot.ts +213 -23
  10. package/front_end/entrypoints/main/MainImpl.ts +31 -0
  11. package/front_end/generated/InspectorBackendCommands.ts +3 -1
  12. package/front_end/generated/SupportedCSSProperties.ts +21 -4
  13. package/front_end/generated/protocol-mapping.d.ts +14 -0
  14. package/front_end/generated/protocol-proxy-api.d.ts +10 -0
  15. package/front_end/generated/protocol.ts +35 -0
  16. package/front_end/models/ai_assistance/AiAgent2.ts +11 -0
  17. package/front_end/models/ai_assistance/AiConversation.ts +22 -5
  18. package/front_end/models/ai_assistance/README.md +52 -26
  19. package/front_end/models/ai_assistance/agents/AiAgent.ts +54 -8
  20. package/front_end/models/ai_assistance/agents/ContextSelectionAgent.ts +1 -1
  21. package/front_end/models/ai_assistance/agents/PerformanceAgent.ts +7 -194
  22. package/front_end/models/ai_assistance/agents/StorageAgent.ts +8 -87
  23. package/front_end/models/ai_assistance/agents/StylingAgent.snapshot.txt +2 -1
  24. package/front_end/models/ai_assistance/ai_assistance.ts +16 -0
  25. package/front_end/models/ai_assistance/contexts/PerformanceTraceContext.ts +124 -0
  26. package/front_end/models/ai_assistance/contexts/StorageContext.ts +111 -0
  27. package/front_end/models/ai_assistance/data_formatters/PerformanceTraceFormatter.ts +69 -1
  28. package/front_end/models/ai_assistance/skills/README.md +63 -1
  29. package/front_end/models/ai_assistance/skills/Skill.ts +1 -1
  30. package/front_end/models/ai_assistance/skills/SkillRegistry.ts +4 -0
  31. package/front_end/models/ai_assistance/skills/performance.md +8 -0
  32. package/front_end/models/ai_assistance/skills/sources.md +16 -0
  33. package/front_end/models/ai_assistance/skills/storage.md +31 -0
  34. package/front_end/models/ai_assistance/tools/GetSourceContent.ts +101 -0
  35. package/front_end/models/ai_assistance/tools/GetTraceEventByKey.ts +83 -0
  36. package/front_end/models/ai_assistance/tools/GetTraceMainThreadSummary.ts +106 -0
  37. package/front_end/models/ai_assistance/tools/GetTraceNetworkSummary.ts +104 -0
  38. package/front_end/models/ai_assistance/tools/ListPageOrigins.ts +81 -0
  39. package/front_end/models/ai_assistance/tools/ListSources.ts +116 -0
  40. package/front_end/models/ai_assistance/tools/SelectTraceEventByKey.ts +90 -0
  41. package/front_end/models/ai_assistance/tools/Tool.ts +22 -1
  42. package/front_end/models/ai_assistance/tools/ToolRegistry.ts +14 -0
  43. package/front_end/models/bindings/CSSWorkspaceBinding.ts +4 -0
  44. package/front_end/models/bindings/CompilerScriptMapping.ts +4 -0
  45. package/front_end/models/bindings/DebuggerWorkspaceBinding.ts +8 -0
  46. package/front_end/models/bindings/ResourceScriptMapping.ts +3 -201
  47. package/front_end/models/bindings/SASSSourceMapping.ts +6 -0
  48. package/front_end/models/breakpoints/BreakpointManager.ts +2 -49
  49. package/front_end/models/heap_snapshot/HeapSnapshotModel.ts +27 -0
  50. package/front_end/models/heap_snapshot/HeapSnapshotProxy.ts +10 -2
  51. package/front_end/models/issues_manager/descriptions/connectionAllowlistEmbeddingRequirementNotSatisfied.md +26 -0
  52. package/front_end/models/issues_manager/descriptions/connectionAllowlistIFrameAttributeLoosensEmbeddingRequirement.md +19 -0
  53. package/front_end/models/issues_manager/descriptions/connectionAllowlistInvalidAllowConnectionAllowlistFrom.md +21 -0
  54. package/front_end/models/javascript_metadata/NativeFunctions.js +1 -1
  55. package/front_end/models/persistence/IsolatedFileSystem.ts +7 -8
  56. package/front_end/models/persistence/IsolatedFileSystemManager.ts +2 -2
  57. package/front_end/models/persistence/PlatformFileSystem.ts +1 -1
  58. package/front_end/models/persistence/persistence-meta.ts +9 -9
  59. package/front_end/models/trace/types/TraceEvents.ts +36 -0
  60. package/front_end/panels/accessibility/ARIAAttributesView.ts +3 -3
  61. package/front_end/panels/accessibility/AccessibilityNodeView.ts +36 -36
  62. package/front_end/panels/accessibility/AccessibilityStrings.ts +168 -168
  63. package/front_end/panels/accessibility/SourceOrderView.ts +7 -7
  64. package/front_end/panels/accessibility/accessibility-meta.ts +2 -2
  65. package/front_end/panels/ai_assistance/AiAssistancePanel.ts +5 -5
  66. package/front_end/panels/ai_assistance/components/AIv2MarkdownRenderer.ts +2 -3
  67. package/front_end/panels/ai_assistance/components/ChatInput.ts +2 -2
  68. package/front_end/panels/ai_assistance/components/ChatMessage.ts +27 -2
  69. package/front_end/panels/application/IndexedDBViews.ts +65 -63
  70. package/front_end/panels/application/WebMCPView.ts +16 -7
  71. package/front_end/panels/common/AiCodeCompletionSummaryToolbar.ts +5 -5
  72. package/front_end/panels/common/BadgeNotification.ts +8 -8
  73. package/front_end/panels/common/ExtensionServer.ts +21 -1
  74. package/front_end/panels/common/GdpSignUpDialog.ts +16 -16
  75. package/front_end/panels/common/GeminiRebrandPromoDialog.ts +5 -6
  76. package/front_end/panels/common/PersistenceUtils.ts +2 -2
  77. package/front_end/panels/common/common.ts +0 -97
  78. package/front_end/panels/console/ConsoleInsightTeaser.ts +2 -2
  79. package/front_end/panels/console/ConsolePinPane.ts +2 -2
  80. package/front_end/panels/console/ConsoleView.ts +20 -19
  81. package/front_end/panels/elements/LayoutPane.ts +2 -8
  82. package/front_end/panels/event_listeners/EventListenersView.ts +8 -4
  83. package/front_end/panels/issues/AffectedTrackingSitesView.ts +25 -14
  84. package/front_end/panels/media/PlayerMessagesView.ts +149 -68
  85. package/front_end/panels/network/NetworkPanel.ts +1 -1
  86. package/front_end/panels/network/RequestPayloadView.ts +1 -0
  87. package/front_end/panels/profiler/HeapSnapshotView.ts +0 -2
  88. package/front_end/panels/profiler/heapProfiler.css +0 -9
  89. package/front_end/panels/recorder/RecorderPanel.ts +2 -3
  90. package/front_end/panels/screencast/ScreencastView.ts +148 -138
  91. package/front_end/panels/sources/AiCodeCompletionPlugin.ts +2 -2
  92. package/front_end/panels/sources/DebuggerPlugin.ts +9 -58
  93. package/front_end/panels/sources/ScopeChainSidebarPane.ts +1 -1
  94. package/front_end/panels/sources/UISourceCodeFrame.ts +3 -8
  95. package/front_end/panels/sources/WatchExpressionsSidebarPane.ts +4 -2
  96. package/front_end/panels/timeline/TimelineController.ts +36 -64
  97. package/front_end/panels/timeline/TimelinePanel.ts +11 -8
  98. package/front_end/panels/timeline/TimelineUIUtils.ts +5 -2
  99. package/front_end/panels/timeline/overlays/components/EntryLabelOverlay.ts +2 -2
  100. package/front_end/panels/timeline/timelinePanel.css +0 -10
  101. package/front_end/panels/utils/utils.ts +7 -7
  102. package/front_end/services/tracing/PerformanceTracing.ts +5 -17
  103. package/front_end/third_party/chromium/README.chromium +1 -1
  104. package/front_end/third_party/codemirror.next/chunk/codemirror.js +1 -1
  105. package/front_end/third_party/codemirror.next/chunk/codemirror.js.map +1 -1
  106. package/front_end/third_party/codemirror.next/package.json +2 -2
  107. package/front_end/third_party/codemirror.next/rebuild.sh +4 -1
  108. package/front_end/ui/comments/CommentAnchorResolver.ts +436 -10
  109. package/front_end/ui/comments/CommentManager.ts +640 -0
  110. package/front_end/ui/comments/CommentsOverlayWidget.ts +121 -0
  111. package/front_end/ui/comments/comments.ts +4 -0
  112. package/front_end/ui/comments/commentsOverlay.css +49 -0
  113. package/front_end/{panels/common → ui/components/dialogs}/FreDialog.ts +6 -6
  114. package/front_end/ui/components/dialogs/TypeToAllowDialog.ts +96 -0
  115. package/front_end/ui/components/dialogs/dialogs.ts +4 -0
  116. package/front_end/ui/components/settings/SettingCheckbox.ts +3 -3
  117. package/front_end/{panels/common → ui/components/text_editor}/AiCodeCompletionDisclaimer.ts +13 -13
  118. package/front_end/ui/components/text_editor/AiCodeCompletionProvider.ts +7 -6
  119. package/front_end/{panels/common → ui/components/text_editor}/AiCodeCompletionTeaser.ts +43 -46
  120. package/front_end/ui/components/text_editor/AiCodeGenerationProvider.ts +22 -26
  121. package/front_end/{panels/common → ui/components/text_editor}/AiCodeGenerationTeaser.ts +10 -10
  122. package/front_end/{panels/common → ui/components/text_editor}/AiCodeGenerationUpgradeDialog.ts +5 -5
  123. package/front_end/ui/components/text_editor/text_editor.ts +4 -0
  124. package/front_end/ui/legacy/Toolbar.ts +1 -1
  125. package/front_end/ui/legacy/components/object_ui/CustomPreviewComponent.ts +11 -3
  126. package/front_end/ui/legacy/components/object_ui/ObjectPropertiesSection.ts +270 -162
  127. package/front_end/ui/legacy/components/object_ui/objectPropertiesSection.css +5 -0
  128. package/front_end/ui/legacy/components/quick_open/CommandMenu.ts +11 -16
  129. package/front_end/ui/legacy/components/settings_ui/SettingsUI.ts +5 -12
  130. package/front_end/ui/legacy/components/source_frame/JSONView.ts +8 -1
  131. package/front_end/ui/legacy/components/source_frame/SourceFrame.ts +2 -2
  132. package/front_end/ui/settings/SettingUIRegistration.ts +55 -6
  133. package/front_end/ui/visual_logging/KnownContextValues.ts +1 -0
  134. package/mcp/mcp.ts +6 -1
  135. package/package.json +1 -1
  136. package/front_end/Images/toolbarResizerVertical.png +0 -0
  137. package/front_end/emulated_devices/MotoG4-landscape.svg +0 -155
  138. package/front_end/emulated_devices/MotoG4-portrait.svg +0 -155
  139. package/front_end/emulated_devices/Nexus5X-landscape.svg +0 -19
  140. package/front_end/emulated_devices/Nexus5X-portrait.svg +0 -19
  141. package/front_end/emulated_devices/Nexus6P-landscape.svg +0 -50
  142. package/front_end/emulated_devices/Nexus6P-portrait.svg +0 -54
  143. package/front_end/emulated_devices/google-nest-hub-horizontal.png +0 -0
  144. package/front_end/emulated_devices/google-nest-hub-max-horizontal.png +0 -0
  145. package/front_end/emulated_devices/google-nexus-5-horizontal-default-1x.png +0 -0
  146. package/front_end/emulated_devices/google-nexus-5-horizontal-default-2x.png +0 -0
  147. package/front_end/emulated_devices/google-nexus-5-horizontal-keyboard-1x.png +0 -0
  148. package/front_end/emulated_devices/google-nexus-5-horizontal-keyboard-2x.png +0 -0
  149. package/front_end/emulated_devices/google-nexus-5-horizontal-navigation-1x.png +0 -0
  150. package/front_end/emulated_devices/google-nexus-5-horizontal-navigation-2x.png +0 -0
  151. package/front_end/emulated_devices/google-nexus-5-vertical-default-1x.png +0 -0
  152. package/front_end/emulated_devices/google-nexus-5-vertical-default-2x.png +0 -0
  153. package/front_end/emulated_devices/google-nexus-5-vertical-keyboard-1x.png +0 -0
  154. package/front_end/emulated_devices/google-nexus-5-vertical-keyboard-2x.png +0 -0
  155. package/front_end/emulated_devices/google-nexus-5-vertical-navigation-1x.png +0 -0
  156. package/front_end/emulated_devices/google-nexus-5-vertical-navigation-2x.png +0 -0
  157. package/front_end/emulated_devices/google-nexus-5x-horizontal-default-1x.png +0 -0
  158. package/front_end/emulated_devices/google-nexus-5x-horizontal-default-2x.png +0 -0
  159. package/front_end/emulated_devices/google-nexus-5x-horizontal-keyboard-1x.png +0 -0
  160. package/front_end/emulated_devices/google-nexus-5x-horizontal-keyboard-2x.png +0 -0
  161. package/front_end/emulated_devices/google-nexus-5x-horizontal-navigation-1x.png +0 -0
  162. package/front_end/emulated_devices/google-nexus-5x-horizontal-navigation-2x.png +0 -0
  163. package/front_end/emulated_devices/google-nexus-5x-vertical-default-1x.png +0 -0
  164. package/front_end/emulated_devices/google-nexus-5x-vertical-default-2x.png +0 -0
  165. package/front_end/emulated_devices/google-nexus-5x-vertical-keyboard-1x.png +0 -0
  166. package/front_end/emulated_devices/google-nexus-5x-vertical-keyboard-2x.png +0 -0
  167. package/front_end/emulated_devices/google-nexus-5x-vertical-navigation-1x.png +0 -0
  168. package/front_end/emulated_devices/google-nexus-5x-vertical-navigation-2x.png +0 -0
  169. package/front_end/emulated_devices/iPad-landscape.svg +0 -73
  170. package/front_end/emulated_devices/iPad-portrait.svg +0 -76
  171. package/front_end/emulated_devices/iPhone5-landscape.svg +0 -99
  172. package/front_end/emulated_devices/iPhone5-portrait.svg +0 -83
  173. package/front_end/emulated_devices/iPhone6-landscape.svg +0 -111
  174. package/front_end/emulated_devices/iPhone6-portrait.svg +0 -116
  175. package/front_end/emulated_devices/iPhone6Plus-landscape.svg +0 -118
  176. package/front_end/emulated_devices/iPhone6Plus-portrait.svg +0 -116
  177. package/front_end/emulated_devices/optimized/MotoG4-landscape.avif +0 -0
  178. package/front_end/emulated_devices/optimized/MotoG4-portrait.avif +0 -0
  179. package/front_end/emulated_devices/optimized/Nexus5X-landscape.avif +0 -0
  180. package/front_end/emulated_devices/optimized/Nexus5X-portrait.avif +0 -0
  181. package/front_end/emulated_devices/optimized/Nexus6P-landscape.avif +0 -0
  182. package/front_end/emulated_devices/optimized/Nexus6P-portrait.avif +0 -0
  183. package/front_end/emulated_devices/optimized/README.md +0 -9
  184. package/front_end/emulated_devices/optimized/google-nest-hub-horizontal.avif +0 -0
  185. package/front_end/emulated_devices/optimized/google-nest-hub-max-horizontal.avif +0 -0
  186. package/front_end/emulated_devices/optimized/google-nexus-5-horizontal-default-1x.avif +0 -0
  187. package/front_end/emulated_devices/optimized/google-nexus-5-horizontal-default-2x.avif +0 -0
  188. package/front_end/emulated_devices/optimized/google-nexus-5-horizontal-keyboard-1x.avif +0 -0
  189. package/front_end/emulated_devices/optimized/google-nexus-5-horizontal-keyboard-2x.avif +0 -0
  190. package/front_end/emulated_devices/optimized/google-nexus-5-horizontal-navigation-1x.avif +0 -0
  191. package/front_end/emulated_devices/optimized/google-nexus-5-horizontal-navigation-2x.avif +0 -0
  192. package/front_end/emulated_devices/optimized/google-nexus-5-vertical-default-1x.avif +0 -0
  193. package/front_end/emulated_devices/optimized/google-nexus-5-vertical-default-2x.avif +0 -0
  194. package/front_end/emulated_devices/optimized/google-nexus-5-vertical-keyboard-1x.avif +0 -0
  195. package/front_end/emulated_devices/optimized/google-nexus-5-vertical-keyboard-2x.avif +0 -0
  196. package/front_end/emulated_devices/optimized/google-nexus-5-vertical-navigation-1x.avif +0 -0
  197. package/front_end/emulated_devices/optimized/google-nexus-5-vertical-navigation-2x.avif +0 -0
  198. package/front_end/emulated_devices/optimized/google-nexus-5x-horizontal-default-1x.avif +0 -0
  199. package/front_end/emulated_devices/optimized/google-nexus-5x-horizontal-default-2x.avif +0 -0
  200. package/front_end/emulated_devices/optimized/google-nexus-5x-horizontal-keyboard-1x.avif +0 -0
  201. package/front_end/emulated_devices/optimized/google-nexus-5x-horizontal-keyboard-2x.avif +0 -0
  202. package/front_end/emulated_devices/optimized/google-nexus-5x-horizontal-navigation-1x.avif +0 -0
  203. package/front_end/emulated_devices/optimized/google-nexus-5x-horizontal-navigation-2x.avif +0 -0
  204. package/front_end/emulated_devices/optimized/google-nexus-5x-vertical-default-1x.avif +0 -0
  205. package/front_end/emulated_devices/optimized/google-nexus-5x-vertical-default-2x.avif +0 -0
  206. package/front_end/emulated_devices/optimized/google-nexus-5x-vertical-keyboard-1x.avif +0 -0
  207. package/front_end/emulated_devices/optimized/google-nexus-5x-vertical-keyboard-2x.avif +0 -0
  208. package/front_end/emulated_devices/optimized/google-nexus-5x-vertical-navigation-1x.avif +0 -0
  209. package/front_end/emulated_devices/optimized/google-nexus-5x-vertical-navigation-2x.avif +0 -0
  210. package/front_end/emulated_devices/optimized/iPad-landscape.avif +0 -0
  211. package/front_end/emulated_devices/optimized/iPad-portrait.avif +0 -0
  212. package/front_end/emulated_devices/optimized/iPhone5-landscape.avif +0 -0
  213. package/front_end/emulated_devices/optimized/iPhone5-portrait.avif +0 -0
  214. package/front_end/emulated_devices/optimized/iPhone6-landscape.avif +0 -0
  215. package/front_end/emulated_devices/optimized/iPhone6-portrait.avif +0 -0
  216. package/front_end/emulated_devices/optimized/iPhone6Plus-landscape.avif +0 -0
  217. package/front_end/emulated_devices/optimized/iPhone6Plus-portrait.avif +0 -0
  218. package/front_end/emulated_devices/optimized/optimized_images.gni +0 -53
  219. package/front_end/models/ai_assistance/agents/README.md +0 -136
  220. /package/front_end/{panels/common → ui/components/dialogs}/freDialog.css +0 -0
  221. /package/front_end/{panels/common/common.css → ui/components/dialogs/typeToAllowDialog.css} +0 -0
  222. /package/front_end/{panels/common → ui/components/text_editor}/aiCodeCompletionDisclaimer.css +0 -0
  223. /package/front_end/{panels/common → ui/components/text_editor}/aiCodeCompletionTeaser.css +0 -0
  224. /package/front_end/{panels/common → ui/components/text_editor}/aiCodeGenerationTeaser.css +0 -0
  225. /package/front_end/{panels/common → ui/components/text_editor}/aiCodeGenerationUpgradeDialog.css +0 -0
@@ -1,54 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
- <svg xmlns="http://www.w3.org/2000/svg" height="914.47" width="445.17" version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 445.17206 914.46722">
3
- <title id="title4">Nexus 6P</title>
4
- <defs id="defs6">
5
- <linearGradient id="linearGradient-2" y1="0.38635" x2="0.966" x1="0.042" y2="0.61863">
6
- <stop id="stop14" stop-color="#3A3A3A" offset="0"/>
7
- <stop id="stop16" stop-color="#181818" offset="1"/>
8
- </linearGradient>
9
- <linearGradient id="linearGradient3050" y2="418.38" xlink:href="#linearGradient-2" gradientUnits="userSpaceOnUse" x2="653.3" gradientTransform="scale(0.69792557,1.4328175)" y1="261.28" x1="28.404"/>
10
- </defs>
11
- <g id="Page-1" fill="none" transform="translate(-0.01713988,-62.547364)">
12
- <g id="Nexus6P" transform="translate(4,4)">
13
- <g id="g3088">
14
- <g id="g3052">
15
- <g id="b-link" fill="url(#linearGradient3050)" transform="matrix(0.92840894,0,0,0.93695416,-0.71850895,61.841656)">
16
- <rect id="b" rx="60" height="969" width="472" y="0" x="0" fill="url(#linearGradient3050)"/>
17
- </g>
18
- <g id="g22" transform="matrix(0.92840894,0,0,0.93695416,-0.71850895,61.841656)">
19
- <rect id="rect24" rx="60" height="969" width="472" y="0" x="0"/>
20
- </g>
21
- <g id="g26" transform="matrix(0.92840894,0,0,0.93695416,-0.71850895,61.841656)">
22
- <rect id="rect28" rx="60" height="969" width="472" y="0" x="0"/>
23
- </g>
24
- <g id="g30" stroke-width="7" stroke="#1e1e1e" transform="matrix(0.92840894,0,0,0.93695416,-0.71850895,61.841656)">
25
- <rect id="rect32" rx="60" height="969" width="472" y="0" x="0"/>
26
- </g>
27
- <g id="g34" stroke-width="5" stroke="#616161" transform="matrix(0.92840894,0,0,0.93695416,-0.71850895,61.841656)">
28
- <rect id="rect36" rx="60" height="969" width="472" y="0" x="0"/>
29
- </g>
30
- <g id="g38" stroke-width="3" stroke="#1e1e1e" transform="matrix(0.92840894,0,0,0.93695416,-0.71850895,61.841656)">
31
- <rect id="rect40" rx="60" height="969" width="472" y="0" x="0"/>
32
- </g>
33
- <g id="g42" stroke-width="2" stroke="#b4b4b4" transform="matrix(0.92840894,0,0,0.93695416,-0.71850895,61.841656)">
34
- <rect id="rect44" rx="60" height="969" width="472" y="0" x="0"/>
35
- </g>
36
- <g id="g46" stroke="#8a8a8a" transform="matrix(0.92840894,0,0,0.93695416,-0.71850895,61.841656)">
37
- <rect id="rect48" rx="60" height="969" width="472" y="0" x="0"/>
38
- </g>
39
- <g id="Group" fill="#444445" transform="matrix(0.92840894,0,0,0.93695416,437.4905,360.73005)">
40
- <path id="Shape" d="m0,0,2,0c1,0,2,1,2,2v56c0,1-1,2-2,2h-2v-60z"/>
41
- <path id="path52" d="m0,97,2,0c1,0,2,1,2,2v116c0,1-1,2-2,2h-2v-120z"/>
42
- </g>
43
- <path id="path54" fill="#171717" d="m12.632,152.66,412,0,0,732-412,0,0-732z"/>
44
- <rect id="Rectangle-path" opacity="0.4" rx="7.4273" height="13.117" width="156.9" stroke="#141414" y="99.32" x="138.54" stroke-width="2.798" fill="#1e1e1e"/>
45
- <rect id="rect57" rx="7.4273" height="13.117" width="156.9" stroke="#141414" y="924.78" x="138.54" stroke-width="2.798" fill="#101010"/>
46
- <g id="g59" transform="matrix(0.92840894,0,0,0.93695416,78.196251,96.50896)">
47
- <path id="path61" opacity="0.6" d="m9.2,18c5,0,8.8-3.8,8.8-8.7,0-4.8-4-8.7-8.8-8.7s-8.7,4-8.7,8.7c0,5,4,8.8,8.7,8.8v-0.1z" stroke="#2f2f2f" fill="#323232"/>
48
- <circle id="Oval" d="M 14.2,9.3000002 C 14.2,12.061424 11.961424,14.3 9.1999998,14.3 c -2.7614237,0 -5,-2.238576 -5,-4.9999998 0,-2.7614238 2.2385763,-5 5,-5 2.7614242,0 5.0000002,2.2385762 5.0000002,5 z" cx="9.2" cy="9.3" r="5" fill="#160f26"/>
49
- </g>
50
- </g>
51
- </g>
52
- </g>
53
- </g>
54
- </svg>
@@ -1,73 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
- <svg width="1252px" height="876px" viewBox="0 0 1252 876" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
- <title>iPad</title>
4
- <defs>
5
- <linearGradient x1="53.4074186%" y1="42.8551228%" x2="44.5013504%" y2="61.5298471%" id="linearGradient-1">
6
- <stop stop-color="#3A3E3A" offset="8.86%"></stop>
7
- <stop stop-color="#2E332E" offset="34.31%"></stop>
8
- <stop stop-color="#C0C1C2" offset="36%"></stop>
9
- <stop stop-color="#3C3F3E" offset="51.34%"></stop>
10
- <stop stop-color="#4B4E4B" offset="64.16%"></stop>
11
- </linearGradient>
12
- <radialGradient cx="49.7525149%" cy="45.0260324%" fx="49.7525149%" fy="45.0260324%" r="43.1038484%" id="radialGradient-2">
13
- <stop stop-color="#FFFFFF" stop-opacity="0.6" offset="82.84%"></stop>
14
- <stop stop-color="#FFFFFF" stop-opacity="0" offset="97.66%"></stop>
15
- </radialGradient>
16
- <linearGradient x1="1.85026396%" y1="102.188703%" x2="61.1786193%" y2="37.8836394%" id="linearGradient-3">
17
- <stop stop-color="#595C64" offset="0%"></stop>
18
- <stop stop-color="#3C414A" offset="64.45%"></stop>
19
- </linearGradient>
20
- <linearGradient x1="86.3892857%" y1="91.8876786%" x2="14.0435714%" y2="8.62178571%" id="linearGradient-4">
21
- <stop stop-color="#FFFFFF" stop-opacity="0.3" offset="14.7%"></stop>
22
- <stop stop-color="#FFFFFF" stop-opacity="0" offset="40.73%"></stop>
23
- <stop stop-color="#FFFFFF" stop-opacity="0.00509108" offset="74.45%"></stop>
24
- <stop stop-color="#FFFFFF" stop-opacity="0.2" offset="100%"></stop>
25
- </linearGradient>
26
- <radialGradient cx="50.4141972%" cy="57.1536365%" fx="50.4141972%" fy="57.1536365%" r="32.0253807%" id="radialGradient-5">
27
- <stop stop-color="#000000" stop-opacity="0" offset="0%"></stop>
28
- <stop stop-color="#020202" stop-opacity="0.4119" offset="51.49%"></stop>
29
- <stop stop-color="#090909" stop-opacity="0.5603" offset="70.03%"></stop>
30
- <stop stop-color="#141414" stop-opacity="0.666" offset="83.25%"></stop>
31
- <stop stop-color="#252525" stop-opacity="0.7509" offset="93.87%"></stop>
32
- <stop stop-color="#333333" stop-opacity="0.8" offset="100%"></stop>
33
- </radialGradient>
34
- <radialGradient cx="47.7237505%" cy="96.413995%" fx="47.7237505%" fy="96.413995%" r="61.371517%" id="radialGradient-6">
35
- <stop stop-color="#FFFFFF" stop-opacity="0.3" offset="0%"></stop>
36
- <stop stop-color="#000000" stop-opacity="0" offset="100%"></stop>
37
- </radialGradient>
38
- <radialGradient cx="50.7767573%" cy="24.0727573%" fx="50.7767573%" fy="24.0727573%" r="36.758427%" id="radialGradient-7">
39
- <stop stop-color="#FFFFFF" stop-opacity="0.3" offset="0%"></stop>
40
- <stop stop-color="#000000" stop-opacity="0" offset="100%"></stop>
41
- </radialGradient>
42
- <linearGradient x1="49.241206%" y1="6.83%" x2="49.241206%" y2="97.95%" id="linearGradient-8">
43
- <stop stop-color="#FFFFFF" stop-opacity="0.6" offset="0%"></stop>
44
- <stop stop-color="#FFFFFF" stop-opacity="0.1" offset="100%"></stop>
45
- </linearGradient>
46
- </defs>
47
- <g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
48
- <g id="ipad-landscape">
49
- <g id="Group">
50
- <g>
51
- <path d="M1251.72,61.92 L1251.72,814.08 C1251.72,847.76 1224.42,875.06 1190.74,875.06 L61.26,875.06 C27.58,875.06 0.28,847.76 0.28,814.08 L0.28,61.92 C0.28,28.24 27.58,0.94 61.26,0.94 L1190.74,0.94 C1224.42,0.94 1251.72,28.24 1251.72,61.92 L1251.72,61.92 Z" id="Shape" fill="url(#linearGradient-1)"></path>
52
- <path d="M1251.72,61.92 L1251.72,814.08 C1251.72,847.76 1224.42,875.06 1190.74,875.06 L61.26,875.06 C27.58,875.06 0.28,847.76 0.28,814.08 L0.28,61.92 C0.28,28.24 27.58,0.94 61.26,0.94 L1190.74,0.94 C1224.42,0.94 1251.72,28.24 1251.72,61.92 L1251.72,61.92 Z" id="Shape" fill="url(#radialGradient-2)"></path>
53
- <path d="M1245.39,814.08 C1245.39,844.22 1220.87,868.73 1190.74,868.73 L61.26,868.73 C31.12,868.73 6.61,844.21 6.61,814.08 L6.61,61.92 C6.61,31.78 31.13,7.27 61.26,7.27 L1190.74,7.27 C1220.88,7.27 1245.39,31.79 1245.39,61.92 L1245.39,814.08 L1245.39,814.08 Z" id="Shape" fill="url(#linearGradient-3)"></path>
54
- <path d="M1242.74,814.08 C1242.74,842.75 1219.41,866.08 1190.74,866.08 L61.26,866.08 C32.59,866.08 9.26,842.75 9.26,814.08 L9.26,61.92 C9.26,33.25 32.59,9.92 61.26,9.92 L1190.74,9.92 C1219.41,9.92 1242.74,33.25 1242.74,61.92 L1242.74,814.08 L1242.74,814.08 Z" id="Shape" fill="#232323"></path>
55
- <path d="M1194.12,409.1 C1178.66,409.1 1166.12,421.64 1166.12,437.1 C1166.12,452.56 1178.66,465.1 1194.12,465.1 C1209.58,465.1 1222.12,452.56 1222.12,437.1 C1222.12,421.64 1209.58,409.1 1194.12,409.1 L1194.12,409.1 Z M1194.12,462.54 C1180.07,462.54 1168.68,451.15 1168.68,437.1 C1168.68,423.05 1180.07,411.66 1194.12,411.66 C1208.17,411.66 1219.56,423.05 1219.56,437.1 C1219.56,451.15 1208.17,462.54 1194.12,462.54 L1194.12,462.54 Z" id="Shape" fill="url(#linearGradient-4)"></path>
56
- <g transform="translate(61.000000, 429.000000)">
57
- <circle id="Oval" fill="#5D5D5F" cx="8.21" cy="8.29" r="7.88"></circle>
58
- <circle id="Oval" fill="url(#radialGradient-5)" cx="8.21" cy="8.29" r="7.88"></circle>
59
- <circle id="Oval" fill="#1B1A1F" cx="8.21" cy="8.29" r="4.42"></circle>
60
- <circle id="Oval" fill="#36284C" cx="8.21" cy="8.29" r="3.23"></circle>
61
- <circle id="Oval" fill="url(#radialGradient-6)" cx="8.21" cy="8.29" r="3.23"></circle>
62
- <g transform="translate(6.000000, 6.000000)" id="Oval">
63
- <circle fill="#141414" opacity="0.5" cx="2.21" cy="2.29" r="1.78"></circle>
64
- <circle fill="url(#radialGradient-7)" cx="2.21" cy="2.29" r="1.78"></circle>
65
- </g>
66
- <path d="M8.21,6.96 C7.82,6.96 7.47,7.14 7.23,7.41 L7.65,7.83 C7.79,7.66 7.99,7.55 8.22,7.55 C8.46,7.55 8.66,7.67 8.8,7.84 L9.22,7.42 C8.96,7.15 8.61,6.96 8.21,6.96 L8.21,6.96 Z" id="Shape" fill="url(#linearGradient-8)"></path>
67
- </g>
68
- </g>
69
- <rect id="Rectangle-path" fill="#000000" x="111.65" y="55.54" width="1024" height="768"></rect>
70
- </g>
71
- </g>
72
- </g>
73
- </svg>
@@ -1,76 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
- <svg width="875px" height="1253px" viewBox="0 0 875 1253" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
- <title>iPad</title>
4
- <defs>
5
- <linearGradient x1="56.85224%" y1="46.7616506%" x2="38.1241363%" y2="55.612846%" id="linearGradient-1">
6
- <stop stop-color="#3A3E3A" offset="8.86%"></stop>
7
- <stop stop-color="#2E332E" offset="34.31%"></stop>
8
- <stop stop-color="#C0C1C2" offset="36%"></stop>
9
- <stop stop-color="#3C3F3E" offset="51.34%"></stop>
10
- <stop stop-color="#4B4E4B" offset="64.16%"></stop>
11
- </linearGradient>
12
- <radialGradient cx="50.1721031%" cy="47.1220327%" fx="50.1721031%" fy="47.1220327%" r="68.0316204%" id="radialGradient-2">
13
- <stop stop-color="#FFFFFF" stop-opacity="0.6" offset="82.84%"></stop>
14
- <stop stop-color="#FFFFFF" stop-opacity="0" offset="97.66%"></stop>
15
- </radialGradient>
16
- <linearGradient x1="-2.18858682%" y1="1.85033783%" x2="62.1164651%" y2="61.1782223%" id="linearGradient-3">
17
- <stop stop-color="#595C64" offset="0%"></stop>
18
- <stop stop-color="#3C414A" offset="64.45%"></stop>
19
- </linearGradient>
20
- <linearGradient x1="86.395%" y1="91.8842857%" x2="14.0494643%" y2="8.61857143%" id="linearGradient-4">
21
- <stop stop-color="#FFFFFF" stop-opacity="0.3" offset="14.7%"></stop>
22
- <stop stop-color="#FFFFFF" stop-opacity="0" offset="40.73%"></stop>
23
- <stop stop-color="#FFFFFF" stop-opacity="0.00509108" offset="74.45%"></stop>
24
- <stop stop-color="#FFFFFF" stop-opacity="0.2" offset="100%"></stop>
25
- </linearGradient>
26
- <linearGradient x1="-22.8991955%" y1="27.2682893%" x2="39.640603%" y2="46.0089814%" id="linearGradient-5">
27
- <stop stop-color="#FFFFFF" stop-opacity="0.15" offset="0%"></stop>
28
- <stop stop-color="#FFFFFF" stop-opacity="0" offset="100%"></stop>
29
- </linearGradient>
30
- <radialGradient cx="50.4203886%" cy="57.0974914%" fx="50.4203886%" fy="57.0974914%" r="32.0253807%" id="radialGradient-6">
31
- <stop stop-color="#000000" stop-opacity="0" offset="0%"></stop>
32
- <stop stop-color="#020202" stop-opacity="0.4119" offset="51.49%"></stop>
33
- <stop stop-color="#090909" stop-opacity="0.5603" offset="70.03%"></stop>
34
- <stop stop-color="#141414" stop-opacity="0.666" offset="83.25%"></stop>
35
- <stop stop-color="#252525" stop-opacity="0.7509" offset="93.87%"></stop>
36
- <stop stop-color="#333333" stop-opacity="0.8" offset="100%"></stop>
37
- </radialGradient>
38
- <radialGradient cx="47.731605%" cy="96.2770217%" fx="47.731605%" fy="96.2770217%" r="61.371517%" id="radialGradient-7">
39
- <stop stop-color="#FFFFFF" stop-opacity="0.3" offset="0%"></stop>
40
- <stop stop-color="#000000" stop-opacity="0" offset="100%"></stop>
41
- </radialGradient>
42
- <radialGradient cx="50.7910101%" cy="23.832973%" fx="50.7910101%" fy="23.832973%" r="36.758427%" id="radialGradient-8">
43
- <stop stop-color="#FFFFFF" stop-opacity="0.3" offset="0%"></stop>
44
- <stop stop-color="#000000" stop-opacity="0" offset="100%"></stop>
45
- </radialGradient>
46
- <linearGradient x1="49.281407%" y1="6.96%" x2="49.281407%" y2="98.07%" id="linearGradient-9">
47
- <stop stop-color="#FFFFFF" stop-opacity="0.6" offset="0%"></stop>
48
- <stop stop-color="#FFFFFF" stop-opacity="0.1" offset="100%"></stop>
49
- </linearGradient>
50
- </defs>
51
- <g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
52
- <g id="ipad-portrait">
53
- <g id="Group">
54
- <path d="M813.32,1252.09 L61.16,1252.09 C27.48,1252.09 0.18,1224.79 0.18,1191.11 L0.18,61.63 C0.18,27.95 27.48,0.65 61.16,0.65 L813.32,0.65 C847,0.65 874.3,27.95 874.3,61.63 L874.3,1191.11 C874.3,1224.79 847,1252.09 813.32,1252.09 L813.32,1252.09 Z" id="Shape" fill="url(#linearGradient-1)"></path>
55
- <path d="M61.16,1252.09 C27.48,1252.09 0.18,1224.79 0.18,1191.11 L0.18,61.63 C0.18,27.95 27.48,0.65 61.16,0.65 L813.32,0.65 C847,0.65 874.3,27.95 874.3,61.63 L874.3,1191.11 C874.3,1224.79 847,1252.09 813.32,1252.09 L61.16,1252.09 Z" id="Shape" fill="url(#radialGradient-2)"></path>
56
- <path d="M61.16,1245.77 C31.02,1245.77 6.51,1221.25 6.51,1191.12 L6.51,61.63 C6.51,31.49 31.03,6.98 61.16,6.98 L813.32,6.98 C843.46,6.98 867.97,31.5 867.97,61.63 L867.97,1191.11 C867.97,1221.25 843.45,1245.76 813.32,1245.76 L61.16,1245.76 L61.16,1245.77 Z" id="Shape" fill="url(#linearGradient-3)"></path>
57
- <path d="M61.16,1243.11 C32.49,1243.11 9.16,1219.78 9.16,1191.11 L9.16,61.63 C9.16,32.96 32.49,9.63 61.16,9.63 L813.32,9.63 C841.99,9.63 865.32,32.96 865.32,61.63 L865.32,1191.11 C865.32,1219.78 841.99,1243.11 813.32,1243.11 L61.16,1243.11 L61.16,1243.11 Z" id="Shape" fill="#232323"></path>
58
- <path d="M438.14,1166.49 C422.68,1166.49 410.14,1179.03 410.14,1194.49 C410.14,1209.95 422.68,1222.49 438.14,1222.49 C453.6,1222.49 466.14,1209.95 466.14,1194.49 C466.14,1179.03 453.6,1166.49 438.14,1166.49 L438.14,1166.49 Z M438.14,1219.93 C424.09,1219.93 412.7,1208.54 412.7,1194.49 C412.7,1180.44 424.09,1169.05 438.14,1169.05 C452.19,1169.05 463.58,1180.44 463.58,1194.49 C463.58,1208.54 452.19,1219.93 438.14,1219.93 L438.14,1219.93 Z" id="Shape" fill="url(#linearGradient-4)"></path>
59
- <path d="M59.24,8.19 C31.62,8.19 9.15,30.66 9.15,58.28 L9.15,1190.65 C9.15,1218.27 31.62,1240.74 59.24,1240.74 L105.77,1240.74 L620.73,8.19 L59.24,8.19 L59.24,8.19 Z" id="Shape" fill="url(#linearGradient-5)"></path>
60
- <g transform="translate(430.000000, 61.000000)">
61
- <circle id="Oval" fill="#5D5D5F" cx="7.95" cy="8.58" r="7.88"></circle>
62
- <circle id="Oval" fill="url(#radialGradient-6)" cx="7.95" cy="8.58" r="7.88"></circle>
63
- <circle id="Oval" fill="#1B1A1F" cx="7.95" cy="8.58" r="4.42"></circle>
64
- <circle id="Oval" fill="#36284C" cx="7.95" cy="8.58" r="3.23"></circle>
65
- <circle id="Oval" fill="url(#radialGradient-7)" cx="7.95" cy="8.58" r="3.23"></circle>
66
- <g transform="translate(6.000000, 6.000000)" id="Oval">
67
- <circle fill="#141414" opacity="0.5" cx="1.95" cy="2.58" r="1.78"></circle>
68
- <circle fill="url(#radialGradient-8)" cx="1.95" cy="2.58" r="1.78"></circle>
69
- </g>
70
- <path d="M7.95,7.24 C7.56,7.24 7.21,7.42 6.97,7.69 L7.39,8.11 C7.53,7.94 7.73,7.83 7.96,7.83 C8.2,7.83 8.4,7.95 8.54,8.12 L8.96,7.7 C8.7,7.43 8.35,7.24 7.95,7.24 L7.95,7.24 Z" id="Shape" fill="url(#linearGradient-9)"></path>
71
- </g>
72
- </g>
73
- <rect id="Rectangle-path" fill="#000000" x="52" y="114" width="768" height="1024"></rect>
74
- </g>
75
- </g>
76
- </svg>
@@ -1,99 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
- <svg width="796px" height="374px" viewBox="0 0 796 374" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
- <title>iPhone 5</title>
4
- <defs>
5
- <linearGradient x1="8.33127764%" y1="117.999363%" x2="59.674224%" y2="34.2134349%" id="linearGradient-2">
6
- <stop stop-color="#787A81" offset="0%"></stop>
7
- <stop stop-color="#50555D" offset="63.53%"></stop>
8
- </linearGradient>
9
- <linearGradient x1="86.386465%" y1="91.8797771%" x2="14.0433121%" y2="8.61671975%" id="linearGradient-3">
10
- <stop stop-color="#FFFFFF" stop-opacity="0.3" offset="14.7%"></stop>
11
- <stop stop-color="#FFFFFF" stop-opacity="0" offset="40.73%"></stop>
12
- <stop stop-color="#FFFFFF" stop-opacity="0.00509108" offset="74.45%"></stop>
13
- <stop stop-color="#FFFFFF" stop-opacity="0.2" offset="100%"></stop>
14
- </linearGradient>
15
- <radialGradient cx="50.420845%" cy="57.0979235%" fx="50.420845%" fy="57.0979235%" r="32.026875%" id="radialGradient-4">
16
- <stop stop-color="#000000" stop-opacity="0" offset="0%"></stop>
17
- <stop stop-color="#020202" stop-opacity="0.4119" offset="51.49%"></stop>
18
- <stop stop-color="#090909" stop-opacity="0.5603" offset="70.03%"></stop>
19
- <stop stop-color="#141414" stop-opacity="0.666" offset="83.25%"></stop>
20
- <stop stop-color="#252525" stop-opacity="0.7509" offset="93.87%"></stop>
21
- <stop stop-color="#333333" stop-opacity="0.8" offset="100%"></stop>
22
- </radialGradient>
23
- <radialGradient cx="47.7374598%" cy="96.2677037%" fx="47.7374598%" fy="96.2677037%" r="61.3597561%" id="radialGradient-5">
24
- <stop stop-color="#FFFFFF" stop-opacity="0.3" offset="0%"></stop>
25
- <stop stop-color="#000000" stop-opacity="0" offset="100%"></stop>
26
- </radialGradient>
27
- <radialGradient cx="50.7992656%" cy="23.7186867%" fx="50.7992656%" fy="23.7186867%" r="36.9055556%" id="radialGradient-6">
28
- <stop stop-color="#FFFFFF" stop-opacity="0.3" offset="0%"></stop>
29
- <stop stop-color="#000000" stop-opacity="0" offset="100%"></stop>
30
- </radialGradient>
31
- <linearGradient x1="50.3015075%" y1="7%" x2="50.3015075%" y2="99.53%" id="linearGradient-7">
32
- <stop stop-color="#FFFFFF" stop-opacity="0.6" offset="0%"></stop>
33
- <stop stop-color="#FFFFFF" stop-opacity="0.1" offset="100%"></stop>
34
- </linearGradient>
35
- <path id="path-8" d="M8.84,4.95 L8.84,59.57 C8.84,61.94 6.92,63.86 4.55,63.86 L4.55,63.86 C2.18,63.86 0.26,61.94 0.26,59.57 L0.26,4.95 C0.26,2.58 2.18,0.66 4.55,0.66 L4.55,0.66 C6.92,0.67 8.84,2.59 8.84,4.95 L8.84,4.95 Z"></path>
36
- <linearGradient x1="100.590671%" y1="50.3945599%" x2="0.664279091%" y2="50.3945599%" id="linearGradient-10">
37
- <stop stop-color="#2E2E31" offset="0%"></stop>
38
- <stop stop-color="#616161" offset="24.48%"></stop>
39
- <stop stop-color="#858585" offset="81.37%"></stop>
40
- <stop stop-color="#2E2E31" offset="100%"></stop>
41
- </linearGradient>
42
- <path id="path-11" d="M8.84,4.95 L8.84,59.57 C8.84,61.94 6.92,63.86 4.55,63.86 L4.55,63.86 C2.18,63.86 0.26,61.94 0.26,59.57 L0.26,4.95 C0.26,2.58 2.18,0.66 4.55,0.66 L4.55,0.66 C6.92,0.67 8.84,2.59 8.84,4.95 L8.84,4.95 Z"></path>
43
- <path id="path-13" d="M8.84,4.95 L8.84,59.57 C8.84,61.94 6.92,63.86 4.55,63.86 L4.55,63.86 C2.18,63.86 0.26,61.94 0.26,59.57 L0.26,4.95 C0.26,2.58 2.18,0.66 4.55,0.66 L4.55,0.66 C6.92,0.67 8.84,2.59 8.84,4.95 L8.84,4.95 Z"></path>
44
- </defs>
45
- <g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
46
- <g id="iphone5-landscape">
47
- <g id="Group">
48
- <path d="M141.69,367.74 L141.69,371.47 C141.69,372.49 140.86,373.31 139.85,373.31 L109.29,373.31 C108.27,373.31 107.45,372.48 107.45,371.47 L107.45,367.74 L141.69,367.74 L141.69,367.74 Z" id="Shape" fill="#808086"></path>
49
- <path d="M6.33,129.47 L2.6,129.47 C1.58,129.47 0.76,128.64 0.76,127.63 L0.76,72.05 C0.76,71.03 1.59,70.21 2.6,70.21 L6.33,70.21 L6.33,129.47 L6.33,129.47 Z" id="Shape" fill="#808086"></path>
50
- <path d="M183.02,373.12 C181.99,373.12 181.16,372.29 181.16,371.26 L181.16,367.54 L209.26,367.54 L209.26,371.26 C209.26,372.29 208.43,373.12 207.4,373.12 L183.02,373.12 L183.02,373.12 Z" id="Shape" fill="#808086"></path>
51
- <path d="M249.35,373.12 C248.32,373.12 247.49,372.29 247.49,371.26 L247.49,367.54 L275.59,367.54 L275.59,371.26 C275.59,372.29 274.76,373.12 273.73,373.12 L249.35,373.12 L249.35,373.12 Z" id="Shape" fill="#808086"></path>
52
- <path d="M795.24,313.26 C795.24,344.45 769.86,369.83 738.67,369.83 L62.09,369.83 C30.9,369.83 5.52,344.45 5.52,313.26 L5.52,57.26 C5.52,26.07 30.9,0.69 62.09,0.69 L738.67,0.69 C769.86,0.69 795.24,26.07 795.24,57.26 L795.24,313.26 L795.24,313.26 Z" id="Shape" fill="#3A3E3A"></path>
53
- <path d="M791.17,313.26 C791.17,342.21 767.62,365.76 738.67,365.76 L62.09,365.76 C33.14,365.76 9.59,342.21 9.59,313.26 L9.59,57.26 C9.59,28.31 33.14,4.76 62.09,4.76 L738.67,4.76 C767.62,4.76 791.17,28.31 791.17,57.26 L791.17,313.26 L791.17,313.26 Z" id="Shape" fill="url(#linearGradient-2)"></path>
54
- <rect id="Rectangle-path" fill="#2E2E2E" x="72.56" y="363.15" width="6" height="6.69"></rect>
55
- <rect id="Rectangle-path" fill="#1F1F1F" x="72.56" y="0.69" width="6" height="6.74"></rect>
56
- <rect id="Rectangle-path" fill="#2E2E2E" x="721.76" y="363.15" width="6" height="6.69"></rect>
57
- <rect id="Rectangle-path" fill="#1F1F1F" x="721.76" y="0.69" width="6" height="6.74"></rect>
58
- <path d="M788.62,313.26 C788.62,340.8 766.21,363.21 738.67,363.21 L62.09,363.21 C34.55,363.21 12.14,340.8 12.14,313.26 L12.14,57.26 C12.14,29.72 34.55,7.31 62.09,7.31 L738.67,7.31 C766.21,7.31 788.62,29.72 788.62,57.26 L788.62,313.26 L788.62,313.26 Z" id="Shape" fill="#232323"></path>
59
- <path d="M739.1,153.87 C721.76,153.87 707.7,167.93 707.7,185.27 C707.7,202.61 721.76,216.67 739.1,216.67 C756.44,216.67 770.5,202.61 770.5,185.27 C770.5,167.93 756.44,153.87 739.1,153.87 L739.1,153.87 Z M739.1,213.79 C723.35,213.79 710.57,201.02 710.57,185.26 C710.57,169.5 723.34,156.73 739.1,156.73 C754.86,156.73 767.63,169.5 767.63,185.26 C767.63,201.02 754.85,213.79 739.1,213.79 L739.1,213.79 Z" id="Shape" fill="url(#linearGradient-3)"></path>
60
- <g transform="translate(37.000000, 177.000000)">
61
- <circle id="Oval" fill="#5D5D5F" cx="8.04" cy="8.27" r="8"></circle>
62
- <circle id="Oval" fill="url(#radialGradient-4)" cx="8.04" cy="8.27" r="8"></circle>
63
- <circle id="Oval" fill="#1B1A1F" cx="8.04" cy="8.27" r="4.48"></circle>
64
- <circle id="Oval" fill="#36284C" cx="8.04" cy="8.27" r="3.28"></circle>
65
- <circle id="Oval" fill="url(#radialGradient-5)" cx="8.04" cy="8.27" r="3.28"></circle>
66
- <g transform="translate(6.000000, 6.000000)" id="Oval">
67
- <circle fill="#141414" opacity="0.5" cx="2.04" cy="2.27" r="1.8"></circle>
68
- <circle fill="url(#radialGradient-6)" cx="2.04" cy="2.27" r="1.8"></circle>
69
- </g>
70
- <path d="M8.04,6.91 C7.64,6.91 7.29,7.09 7.04,7.37 L7.46,7.79 C7.6,7.62 7.8,7.51 8.03,7.51 C8.27,7.51 8.47,7.63 8.61,7.81 L9.03,7.39 C8.8,7.1 8.44,6.91 8.04,6.91 L8.04,6.91 Z" id="Shape" fill="url(#linearGradient-7)"></path>
71
- </g>
72
- <g transform="translate(69.000000, 153.000000)" id="Clipped">
73
- <g>
74
- <mask id="mask-9" fill="white">
75
- <use xlink:href="#path-8"></use>
76
- </mask>
77
- <g id="SVGID_8_"></g>
78
- <path d="M8.84,2.95 L8.84,61.57 C8.84,63.94 6.92,65.86 4.55,65.86 L4.55,65.86 C2.18,65.86 0.26,63.94 0.26,61.57 L0.26,2.95 C0.26,0.58 2.18,-1.34 4.55,-1.34 L4.55,-1.34 C6.92,-1.34 8.84,0.58 8.84,2.95 L8.84,2.95 Z" id="Shape" fill="url(#linearGradient-10)" opacity="0.8" mask="url(#mask-9)"></path>
79
- </g>
80
- <g>
81
- <mask id="mask-12" fill="white">
82
- <use xlink:href="#path-11"></use>
83
- </mask>
84
- <g id="SVGID_8_"></g>
85
- <path d="M0.15,64.45 L0.15,65.92 L1.62,65.92 L1.62,64.45 L0.15,64.45 L0.15,64.45 Z M0.15,61.52 L0.15,62.99 L1.62,62.99 L1.62,61.52 L0.15,61.52 L0.15,61.52 Z M0.15,58.58 L0.15,60.05 L1.62,60.05 L1.62,58.58 L0.15,58.58 L0.15,58.58 Z M0.15,55.65 L0.15,57.12 L1.62,57.12 L1.62,55.65 L0.15,55.65 L0.15,55.65 Z M0.15,52.71 L0.15,54.18 L1.62,54.18 L1.62,52.71 L0.15,52.71 L0.15,52.71 Z M0.15,49.78 L0.15,51.25 L1.62,51.25 L1.62,49.78 L0.15,49.78 L0.15,49.78 Z M0.15,46.84 L0.15,48.31 L1.62,48.31 L1.62,46.84 L0.15,46.84 L0.15,46.84 Z M0.15,43.91 L0.15,45.38 L1.62,45.38 L1.62,43.91 L0.15,43.91 L0.15,43.91 Z M0.15,40.97 L0.15,42.44 L1.62,42.44 L1.62,40.97 L0.15,40.97 L0.15,40.97 Z M0.15,38.04 L0.15,39.51 L1.62,39.51 L1.62,38.04 L0.15,38.04 L0.15,38.04 Z M0.15,35.1 L0.15,36.57 L1.62,36.57 L1.62,35.1 L0.15,35.1 L0.15,35.1 Z M0.15,32.17 L0.15,33.64 L1.62,33.64 L1.62,32.17 L0.15,32.17 L0.15,32.17 Z M0.15,29.23 L0.15,30.7 L1.62,30.7 L1.62,29.23 L0.15,29.23 L0.15,29.23 Z M0.15,26.3 L0.15,27.77 L1.62,27.77 L1.62,26.3 L0.15,26.3 L0.15,26.3 Z M0.15,23.36 L0.15,24.83 L1.62,24.83 L1.62,23.36 L0.15,23.36 L0.15,23.36 Z M0.15,20.43 L0.15,21.9 L1.62,21.9 L1.62,20.43 L0.15,20.43 L0.15,20.43 Z M0.15,17.49 L0.15,18.96 L1.62,18.96 L1.62,17.49 L0.15,17.49 L0.15,17.49 Z M0.15,14.56 L0.15,16.03 L1.62,16.03 L1.62,14.56 L0.15,14.56 L0.15,14.56 Z M0.15,11.62 L0.15,13.09 L1.62,13.09 L1.62,11.62 L0.15,11.62 L0.15,11.62 Z M0.15,8.69 L0.15,10.16 L1.62,10.16 L1.62,8.69 L0.15,8.69 L0.15,8.69 Z M0.15,5.75 L0.15,7.22 L1.62,7.22 L1.62,5.75 L0.15,5.75 L0.15,5.75 Z M0.15,2.82 L0.15,4.29 L1.62,4.29 L1.62,2.82 L0.15,2.82 L0.15,2.82 Z M0.15,-0.12 L0.15,1.35 L1.62,1.35 L1.62,-0.12 L0.15,-0.12 L0.15,-0.12 Z M1.62,62.98 L1.62,64.45 L3.09,64.45 L3.09,62.98 L1.62,62.98 L1.62,62.98 Z M1.62,60.05 L1.62,61.52 L3.09,61.52 L3.09,60.05 L1.62,60.05 L1.62,60.05 Z M1.62,57.11 L1.62,58.58 L3.09,58.58 L3.09,57.11 L1.62,57.11 L1.62,57.11 Z M1.62,54.18 L1.62,55.65 L3.09,55.65 L3.09,54.18 L1.62,54.18 L1.62,54.18 Z M1.62,51.24 L1.62,52.71 L3.09,52.71 L3.09,51.24 L1.62,51.24 L1.62,51.24 Z M1.62,48.31 L1.62,49.78 L3.09,49.78 L3.09,48.31 L1.62,48.31 L1.62,48.31 Z M1.62,45.37 L1.62,46.84 L3.09,46.84 L3.09,45.37 L1.62,45.37 L1.62,45.37 Z M1.62,42.44 L1.62,43.91 L3.09,43.91 L3.09,42.44 L1.62,42.44 L1.62,42.44 Z M1.62,39.5 L1.62,40.97 L3.09,40.97 L3.09,39.5 L1.62,39.5 L1.62,39.5 Z M1.62,36.57 L1.62,38.04 L3.09,38.04 L3.09,36.57 L1.62,36.57 L1.62,36.57 Z M1.62,33.63 L1.62,35.1 L3.09,35.1 L3.09,33.63 L1.62,33.63 L1.62,33.63 Z M1.62,30.7 L1.62,32.17 L3.09,32.17 L3.09,30.7 L1.62,30.7 L1.62,30.7 Z M1.62,27.76 L1.62,29.23 L3.09,29.23 L3.09,27.76 L1.62,27.76 L1.62,27.76 Z M1.62,24.83 L1.62,26.3 L3.09,26.3 L3.09,24.83 L1.62,24.83 L1.62,24.83 Z M1.62,21.89 L1.62,23.36 L3.09,23.36 L3.09,21.89 L1.62,21.89 L1.62,21.89 Z M1.62,18.96 L1.62,20.43 L3.09,20.43 L3.09,18.96 L1.62,18.96 L1.62,18.96 Z M1.62,16.02 L1.62,17.49 L3.09,17.49 L3.09,16.02 L1.62,16.02 L1.62,16.02 Z M1.62,13.09 L1.62,14.56 L3.09,14.56 L3.09,13.09 L1.62,13.09 L1.62,13.09 Z M1.62,10.15 L1.62,11.62 L3.09,11.62 L3.09,10.15 L1.62,10.15 L1.62,10.15 Z M1.62,7.22 L1.62,8.69 L3.09,8.69 L3.09,7.22 L1.62,7.22 L1.62,7.22 Z M1.62,4.28 L1.62,5.75 L3.09,5.75 L3.09,4.28 L1.62,4.28 L1.62,4.28 Z M1.62,1.35 L1.62,2.82 L3.09,2.82 L3.09,1.35 L1.62,1.35 L1.62,1.35 Z M1.62,-1.59 L1.62,-0.12 L3.09,-0.12 L3.09,-1.59 L1.62,-1.59 L1.62,-1.59 Z M3.09,64.45 L3.09,65.92 L4.56,65.92 L4.56,64.45 L3.09,64.45 L3.09,64.45 Z M3.09,61.52 L3.09,62.99 L4.56,62.99 L4.56,61.52 L3.09,61.52 L3.09,61.52 Z M3.09,58.58 L3.09,60.05 L4.56,60.05 L4.56,58.58 L3.09,58.58 L3.09,58.58 Z M3.09,55.65 L3.09,57.12 L4.56,57.12 L4.56,55.65 L3.09,55.65 L3.09,55.65 Z M3.09,52.71 L3.09,54.18 L4.56,54.18 L4.56,52.71 L3.09,52.71 L3.09,52.71 Z M3.09,49.78 L3.09,51.25 L4.56,51.25 L4.56,49.78 L3.09,49.78 L3.09,49.78 Z M3.09,46.84 L3.09,48.31 L4.56,48.31 L4.56,46.84 L3.09,46.84 L3.09,46.84 Z M3.09,43.91 L3.09,45.38 L4.56,45.38 L4.56,43.91 L3.09,43.91 L3.09,43.91 Z M3.09,40.97 L3.09,42.44 L4.56,42.44 L4.56,40.97 L3.09,40.97 L3.09,40.97 Z M3.09,38.04 L3.09,39.51 L4.56,39.51 L4.56,38.04 L3.09,38.04 L3.09,38.04 Z M3.09,35.1 L3.09,36.57 L4.56,36.57 L4.56,35.1 L3.09,35.1 L3.09,35.1 Z M3.09,32.17 L3.09,33.64 L4.56,33.64 L4.56,32.17 L3.09,32.17 L3.09,32.17 Z M3.09,29.23 L3.09,30.7 L4.56,30.7 L4.56,29.23 L3.09,29.23 L3.09,29.23 Z M3.09,26.3 L3.09,27.77 L4.56,27.77 L4.56,26.3 L3.09,26.3 L3.09,26.3 Z M3.09,23.36 L3.09,24.83 L4.56,24.83 L4.56,23.36 L3.09,23.36 L3.09,23.36 Z M3.09,20.43 L3.09,21.9 L4.56,21.9 L4.56,20.43 L3.09,20.43 L3.09,20.43 Z M3.09,17.49 L3.09,18.96 L4.56,18.96 L4.56,17.49 L3.09,17.49 L3.09,17.49 Z M3.09,14.56 L3.09,16.03 L4.56,16.03 L4.56,14.56 L3.09,14.56 L3.09,14.56 Z M3.09,11.62 L3.09,13.09 L4.56,13.09 L4.56,11.62 L3.09,11.62 L3.09,11.62 Z M3.09,8.69 L3.09,10.16 L4.56,10.16 L4.56,8.69 L3.09,8.69 L3.09,8.69 Z M3.09,5.75 L3.09,7.22 L4.56,7.22 L4.56,5.75 L3.09,5.75 L3.09,5.75 Z M3.09,2.82 L3.09,4.29 L4.56,4.29 L4.56,2.82 L3.09,2.82 L3.09,2.82 Z M3.09,-0.12 L3.09,1.35 L4.56,1.35 L4.56,-0.12 L3.09,-0.12 L3.09,-0.12 Z M4.56,62.98 L4.56,64.45 L6.03,64.45 L6.03,62.98 L4.56,62.98 L4.56,62.98 Z M4.56,60.05 L4.56,61.52 L6.03,61.52 L6.03,60.05 L4.56,60.05 L4.56,60.05 Z M4.56,57.11 L4.56,58.58 L6.03,58.58 L6.03,57.11 L4.56,57.11 L4.56,57.11 Z M4.56,54.18 L4.56,55.65 L6.03,55.65 L6.03,54.18 L4.56,54.18 L4.56,54.18 Z M4.56,51.24 L4.56,52.71 L6.03,52.71 L6.03,51.24 L4.56,51.24 L4.56,51.24 Z M4.56,48.31 L4.56,49.78 L6.03,49.78 L6.03,48.31 L4.56,48.31 L4.56,48.31 Z M4.56,45.37 L4.56,46.84 L6.03,46.84 L6.03,45.37 L4.56,45.37 L4.56,45.37 Z M4.56,42.44 L4.56,43.91 L6.03,43.91 L6.03,42.44 L4.56,42.44 L4.56,42.44 Z M4.56,39.5 L4.56,40.97 L6.03,40.97 L6.03,39.5 L4.56,39.5 L4.56,39.5 Z M4.56,36.57 L4.56,38.04 L6.03,38.04 L6.03,36.57 L4.56,36.57 L4.56,36.57 Z M4.56,33.63 L4.56,35.1 L6.03,35.1 L6.03,33.63 L4.56,33.63 L4.56,33.63 Z M4.56,30.7 L4.56,32.17 L6.03,32.17 L6.03,30.7 L4.56,30.7 L4.56,30.7 Z M4.56,27.76 L4.56,29.23 L6.03,29.23 L6.03,27.76 L4.56,27.76 L4.56,27.76 Z M4.56,24.83 L4.56,26.3 L6.03,26.3 L6.03,24.83 L4.56,24.83 L4.56,24.83 Z M4.56,21.89 L4.56,23.36 L6.03,23.36 L6.03,21.89 L4.56,21.89 L4.56,21.89 Z M4.56,18.96 L4.56,20.43 L6.03,20.43 L6.03,18.96 L4.56,18.96 L4.56,18.96 Z M4.56,16.02 L4.56,17.49 L6.03,17.49 L6.03,16.02 L4.56,16.02 L4.56,16.02 Z M4.56,13.09 L4.56,14.56 L6.03,14.56 L6.03,13.09 L4.56,13.09 L4.56,13.09 Z M4.56,10.15 L4.56,11.62 L6.03,11.62 L6.03,10.15 L4.56,10.15 L4.56,10.15 Z M4.56,7.22 L4.56,8.69 L6.03,8.69 L6.03,7.22 L4.56,7.22 L4.56,7.22 Z M4.56,4.28 L4.56,5.75 L6.03,5.75 L6.03,4.28 L4.56,4.28 L4.56,4.28 Z M4.56,1.35 L4.56,2.82 L6.03,2.82 L6.03,1.35 L4.56,1.35 L4.56,1.35 Z M4.56,-1.59 L4.56,-0.12 L6.03,-0.12 L6.03,-1.59 L4.56,-1.59 L4.56,-1.59 Z M6.02,64.45 L6.02,65.92 L7.49,65.92 L7.49,64.45 L6.02,64.45 L6.02,64.45 Z M6.02,61.52 L6.02,62.99 L7.49,62.99 L7.49,61.52 L6.02,61.52 L6.02,61.52 Z M6.02,58.58 L6.02,60.05 L7.49,60.05 L7.49,58.58 L6.02,58.58 L6.02,58.58 Z M6.02,55.65 L6.02,57.12 L7.49,57.12 L7.49,55.65 L6.02,55.65 L6.02,55.65 Z M6.02,52.71 L6.02,54.18 L7.49,54.18 L7.49,52.71 L6.02,52.71 L6.02,52.71 Z M6.02,49.78 L6.02,51.25 L7.49,51.25 L7.49,49.78 L6.02,49.78 L6.02,49.78 Z M6.02,46.84 L6.02,48.31 L7.49,48.31 L7.49,46.84 L6.02,46.84 L6.02,46.84 Z M6.02,43.91 L6.02,45.38 L7.49,45.38 L7.49,43.91 L6.02,43.91 L6.02,43.91 Z M6.02,40.97 L6.02,42.44 L7.49,42.44 L7.49,40.97 L6.02,40.97 L6.02,40.97 Z M6.02,38.04 L6.02,39.51 L7.49,39.51 L7.49,38.04 L6.02,38.04 L6.02,38.04 Z M6.02,35.1 L6.02,36.57 L7.49,36.57 L7.49,35.1 L6.02,35.1 L6.02,35.1 Z M6.02,32.17 L6.02,33.64 L7.49,33.64 L7.49,32.17 L6.02,32.17 L6.02,32.17 Z M6.02,29.23 L6.02,30.7 L7.49,30.7 L7.49,29.23 L6.02,29.23 L6.02,29.23 Z M6.02,26.3 L6.02,27.77 L7.49,27.77 L7.49,26.3 L6.02,26.3 L6.02,26.3 Z M6.02,23.36 L6.02,24.83 L7.49,24.83 L7.49,23.36 L6.02,23.36 L6.02,23.36 Z M6.02,20.43 L6.02,21.9 L7.49,21.9 L7.49,20.43 L6.02,20.43 L6.02,20.43 Z M6.02,17.49 L6.02,18.96 L7.49,18.96 L7.49,17.49 L6.02,17.49 L6.02,17.49 Z M6.02,14.56 L6.02,16.03 L7.49,16.03 L7.49,14.56 L6.02,14.56 L6.02,14.56 Z M6.02,11.62 L6.02,13.09 L7.49,13.09 L7.49,11.62 L6.02,11.62 L6.02,11.62 Z M6.02,8.69 L6.02,10.16 L7.49,10.16 L7.49,8.69 L6.02,8.69 L6.02,8.69 Z M6.02,5.75 L6.02,7.22 L7.49,7.22 L7.49,5.75 L6.02,5.75 L6.02,5.75 Z M6.02,2.82 L6.02,4.29 L7.49,4.29 L7.49,2.82 L6.02,2.82 L6.02,2.82 Z M6.02,-0.12 L6.02,1.35 L7.49,1.35 L7.49,-0.12 L6.02,-0.12 L6.02,-0.12 Z M7.49,62.98 L7.49,64.45 L8.96,64.45 L8.96,62.98 L7.49,62.98 L7.49,62.98 Z M7.49,60.05 L7.49,61.52 L8.96,61.52 L8.96,60.05 L7.49,60.05 L7.49,60.05 Z M7.49,57.11 L7.49,58.58 L8.96,58.58 L8.96,57.11 L7.49,57.11 L7.49,57.11 Z M7.49,54.18 L7.49,55.65 L8.96,55.65 L8.96,54.18 L7.49,54.18 L7.49,54.18 Z M7.49,51.24 L7.49,52.71 L8.96,52.71 L8.96,51.24 L7.49,51.24 L7.49,51.24 Z M7.49,48.31 L7.49,49.78 L8.96,49.78 L8.96,48.31 L7.49,48.31 L7.49,48.31 Z M7.49,45.37 L7.49,46.84 L8.96,46.84 L8.96,45.37 L7.49,45.37 L7.49,45.37 Z M7.49,42.44 L7.49,43.91 L8.96,43.91 L8.96,42.44 L7.49,42.44 L7.49,42.44 Z M7.49,39.5 L7.49,40.97 L8.96,40.97 L8.96,39.5 L7.49,39.5 L7.49,39.5 Z M7.49,36.57 L7.49,38.04 L8.96,38.04 L8.96,36.57 L7.49,36.57 L7.49,36.57 Z M7.49,33.63 L7.49,35.1 L8.96,35.1 L8.96,33.63 L7.49,33.63 L7.49,33.63 Z M7.49,30.7 L7.49,32.17 L8.96,32.17 L8.96,30.7 L7.49,30.7 L7.49,30.7 Z M7.49,27.76 L7.49,29.23 L8.96,29.23 L8.96,27.76 L7.49,27.76 L7.49,27.76 Z M7.49,24.83 L7.49,26.3 L8.96,26.3 L8.96,24.83 L7.49,24.83 L7.49,24.83 Z M7.49,21.89 L7.49,23.36 L8.96,23.36 L8.96,21.89 L7.49,21.89 L7.49,21.89 Z M7.49,18.96 L7.49,20.43 L8.96,20.43 L8.96,18.96 L7.49,18.96 L7.49,18.96 Z M7.49,16.02 L7.49,17.49 L8.96,17.49 L8.96,16.02 L7.49,16.02 L7.49,16.02 Z M7.49,13.09 L7.49,14.56 L8.96,14.56 L8.96,13.09 L7.49,13.09 L7.49,13.09 Z M7.49,10.15 L7.49,11.62 L8.96,11.62 L8.96,10.15 L7.49,10.15 L7.49,10.15 Z M7.49,7.22 L7.49,8.69 L8.96,8.69 L8.96,7.22 L7.49,7.22 L7.49,7.22 Z M7.49,4.28 L7.49,5.75 L8.96,5.75 L8.96,4.28 L7.49,4.28 L7.49,4.28 Z M7.49,1.35 L7.49,2.82 L8.96,2.82 L8.96,1.35 L7.49,1.35 L7.49,1.35 Z M7.49,-1.59 L7.49,-0.12 L8.96,-0.12 L8.96,-1.59 L7.49,-1.59 L7.49,-1.59 Z" id="Shape" fill="#2E2E2E" mask="url(#mask-12)"></path>
86
- </g>
87
- <g>
88
- <mask id="mask-14" fill="white">
89
- <use xlink:href="#path-13"></use>
90
- </mask>
91
- <g id="SVGID_8_"></g>
92
- <path d="M-0.09,2.54 L-0.09,61.98 C-0.09,64.38 1.99,66.33 4.56,66.33 C7.13,66.33 9.21,64.38 9.21,61.98 L9.21,2.54 C9.21,0.14 7.13,-1.81 4.56,-1.81 C1.99,-1.81 -0.09,0.14 -0.09,2.54 L-0.09,2.54 Z M7.75,2.95 L7.75,61.57 C7.75,63.33 6.32,64.77 4.55,64.77 C2.78,64.77 1.35,63.34 1.35,61.57 L1.35,2.95 C1.35,1.19 2.78,-0.25 4.55,-0.25 C6.32,-0.25 7.75,1.19 7.75,2.95 L7.75,2.95 Z" id="Shape" fill="#000000" opacity="0.2" mask="url(#mask-14)"></path>
93
- </g>
94
- </g>
95
- <rect id="Rectangle-path" fill="#000000" x="114.62" y="25.28" width="568" height="320"></rect>
96
- </g>
97
- </g>
98
- </g>
99
- </svg>
@@ -1,83 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
- <svg width="374px" height="795px" viewBox="0 0 374 795" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
- <title>iPhone 5</title>
4
- <defs>
5
- <linearGradient x1="-17.9960388%" y1="8.33030962%" x2="65.7898338%" y2="59.671955%" id="linearGradient-2">
6
- <stop stop-color="#787A81" offset="0%"></stop>
7
- <stop stop-color="#50555D" offset="63.53%"></stop>
8
- </linearGradient>
9
- <linearGradient x1="86.4058917%" y1="91.8829618%" x2="14.0627389%" y2="8.61990446%" id="linearGradient-3">
10
- <stop stop-color="#FFFFFF" stop-opacity="0.3" offset="14.7%"></stop>
11
- <stop stop-color="#FFFFFF" stop-opacity="0" offset="40.73%"></stop>
12
- <stop stop-color="#FFFFFF" stop-opacity="0.00509108" offset="74.45%"></stop>
13
- <stop stop-color="#FFFFFF" stop-opacity="0.2" offset="100%"></stop>
14
- </linearGradient>
15
- <radialGradient cx="50.490424%" cy="57.371957%" fx="50.490424%" fy="57.371957%" r="32.026875%" id="radialGradient-4">
16
- <stop stop-color="#000000" stop-opacity="0" offset="0%"></stop>
17
- <stop stop-color="#020202" stop-opacity="0.4119" offset="51.49%"></stop>
18
- <stop stop-color="#090909" stop-opacity="0.5603" offset="70.03%"></stop>
19
- <stop stop-color="#141414" stop-opacity="0.666" offset="83.25%"></stop>
20
- <stop stop-color="#252525" stop-opacity="0.7509" offset="93.87%"></stop>
21
- <stop stop-color="#333333" stop-opacity="0.8" offset="100%"></stop>
22
- </radialGradient>
23
- <radialGradient cx="47.9198485%" cy="96.651617%" fx="47.9198485%" fy="96.651617%" r="60.9878788%" id="radialGradient-5">
24
- <stop stop-color="#FFFFFF" stop-opacity="0.3" offset="0%"></stop>
25
- <stop stop-color="#000000" stop-opacity="0" offset="100%"></stop>
26
- </radialGradient>
27
- <radialGradient cx="51.1128422%" cy="24.9366133%" fx="51.1128422%" fy="24.9366133%" r="36.9055556%" id="radialGradient-6">
28
- <stop stop-color="#FFFFFF" stop-opacity="0.3" offset="0%"></stop>
29
- <stop stop-color="#000000" stop-opacity="0" offset="100%"></stop>
30
- </radialGradient>
31
- <linearGradient x1="50.25%" y1="5.34%" x2="50.25%" y2="97.86%" id="linearGradient-7">
32
- <stop stop-color="#FFFFFF" stop-opacity="0.6" offset="0%"></stop>
33
- <stop stop-color="#FFFFFF" stop-opacity="0.1" offset="100%"></stop>
34
- </linearGradient>
35
- <linearGradient x1="-13.4283698%" y1="16.8838122%" x2="28.9472124%" y2="39.0002762%" id="linearGradient-8">
36
- <stop stop-color="#FFFFFF" stop-opacity="0.15" offset="0%"></stop>
37
- <stop stop-color="#FFFFFF" stop-opacity="0" offset="100%"></stop>
38
- </linearGradient>
39
- <linearGradient x1="50.0148322%" y1="100.475178%" x2="50.0148322%" y2="0.707893372%" id="linearGradient-9">
40
- <stop stop-color="#2E2E31" offset="0%"></stop>
41
- <stop stop-color="#616161" offset="24.48%"></stop>
42
- <stop stop-color="#858585" offset="81.37%"></stop>
43
- <stop stop-color="#2E2E31" offset="100%"></stop>
44
- </linearGradient>
45
- </defs>
46
- <g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
47
- <g id="iphone5-portrait">
48
- <g id="Group">
49
- <path d="M6.1,141.1 L2.4,141.1 C1.4,141.1 0.6,140.3 0.6,139.3 L0.6,108.7 C0.6,107.7 1.4,106.9 2.4,106.9 L6.1,106.9 L6.1,141.1 L6.1,141.1 L6.1,141.1 Z" id="Shape" fill="#808086"></path>
50
- <path d="M244.4,5.7 L244.4,2 C244.4,1 245.2,0.2 246.2,0.2 L301.8,0.2 C302.8,0.2 303.6,1 303.6,2 L303.6,5.7 L244.4,5.7 L244.4,5.7 Z" id="Shape" fill="#808086"></path>
51
- <path d="M0.8,182.4 C0.8,181.4 1.6,180.5 2.7,180.5 L6.4,180.5 L6.4,208.6 L2.7,208.6 C1.7,208.6 0.8,207.8 0.8,206.7 L0.8,182.4 L0.8,182.4 L0.8,182.4 Z" id="Shape" fill="#808086"></path>
52
- <path d="M0.8,248.8 C0.8,247.8 1.6,246.9 2.7,246.9 L6.4,246.9 L6.4,275 L2.7,275 C1.7,275 0.8,274.2 0.8,273.1 L0.8,248.8 L0.8,248.8 L0.8,248.8 Z" id="Shape" fill="#808086"></path>
53
- <path d="M60.6,794.7 C29.4,794.7 4,769.3 4,738.1 L4,61.5 C4,30.3 29.4,4.9 60.6,4.9 L316.6,4.9 C347.8,4.9 373.2,30.3 373.2,61.5 L373.2,738.1 C373.2,769.3 347.8,794.7 316.6,794.7 L60.6,794.7 L60.6,794.7 Z" id="Shape" fill="#3A3E3A"></path>
54
- <path d="M60.6,790.6 C31.7,790.6 8.1,767.1 8.1,738.1 L8.1,61.5 C8.1,32.5 31.7,9 60.6,9 L316.6,9 C345.6,9 369.1,32.5 369.1,61.5 L369.1,738.1 C369.1,767.1 345.6,790.6 316.6,790.6 L60.6,790.6 L60.6,790.6 L60.6,790.6 Z" id="Shape" fill="url(#linearGradient-2)"></path>
55
- <rect id="Rectangle-path" fill="#2E2E2E" x="4" y="72" width="6.7" height="6"></rect>
56
- <rect id="Rectangle-path" fill="#1F1F1F" x="366.5" y="72" width="6.7" height="6"></rect>
57
- <rect id="Rectangle-path" fill="#2E2E2E" x="4" y="721.2" width="6.7" height="6"></rect>
58
- <rect id="Rectangle-path" fill="#1F1F1F" x="366.5" y="721.2" width="6.7" height="6"></rect>
59
- <path d="M60.6,788 C33.1,788 10.7,765.6 10.7,738 L10.7,61.5 C10.7,34 33.1,11.5 60.6,11.5 L316.6,11.5 C344.1,11.5 366.6,33.9 366.6,61.5 L366.6,738.1 C366.6,765.6 344.2,788.1 316.6,788.1 L60.6,788 L60.6,788 L60.6,788 Z" id="Shape" fill="#232323"></path>
60
- <path d="M188.6,707.1 C171.3,707.1 157.2,721.2 157.2,738.5 C157.2,755.8 171.3,769.9 188.6,769.9 C205.9,769.9 220,755.8 220,738.5 C220,721.2 205.9,707.1 188.6,707.1 L188.6,707.1 Z M188.6,767 C172.8,767 160.1,754.2 160.1,738.5 C160.1,722.7 172.9,710 188.6,710 C204.3,710 217.1,722.8 217.1,738.5 C217.1,754.2 204.4,767 188.6,767 L188.6,767 Z" id="Shape" fill="url(#linearGradient-3)"></path>
61
- <g transform="translate(180.000000, 36.000000)">
62
- <circle id="Oval" fill="#5D5D5F" cx="8.6" cy="8.4" r="8"></circle>
63
- <circle id="Oval" fill="url(#radialGradient-4)" cx="8.6" cy="8.4" r="8"></circle>
64
- <circle id="Oval" fill="#1B1A1F" cx="8.6" cy="8.4" r="4.5"></circle>
65
- <circle id="Oval" fill="#36284C" cx="8.6" cy="8.4" r="3.3"></circle>
66
- <circle id="Oval" fill="url(#radialGradient-5)" cx="8.6" cy="8.4" r="3.3"></circle>
67
- <g transform="translate(6.000000, 6.000000)" id="Oval">
68
- <circle fill="#141414" opacity="0.5" cx="2.6" cy="2.4" r="1.8"></circle>
69
- <circle fill="url(#radialGradient-6)" cx="2.6" cy="2.4" r="1.8"></circle>
70
- </g>
71
- <path d="M8.6,7.1 C8.2,7.1 7.8,7.3 7.6,7.6 L8,8 C8.1,7.8 8.3,7.7 8.6,7.7 C8.8,7.7 9,7.8 9.2,8 L9.6,7.6 C9.4,7.3 9,7.1 8.6,7.1 L8.6,7.1 Z" id="Shape" fill="url(#linearGradient-7)"></path>
72
- </g>
73
- <path d="M60.6,11.6 C33.1,11.6 10.7,34 10.7,61.6 L10.7,554.6 L294.1,11.6 L60.6,11.6 L60.6,11.6 Z" id="Shape" fill="url(#linearGradient-8)"></path>
74
- <g transform="translate(154.000000, 68.000000)" id="Shape">
75
- <path d="M63.9,9.2 L5.3,9.2 C2.9,9.2 1,7.3 1,4.9 L1,4.9 C1,2.5 2.9,0.6 5.3,0.6 L63.9,0.6 C66.3,0.6 68.2,2.5 68.2,4.9 L68.2,4.9 C68.2,7.3 66.3,9.2 63.9,9.2 L63.9,9.2 Z" fill="url(#linearGradient-9)" opacity="0.8"></path>
76
- <path d="M2.4,0.6 L0.9,0.6 L0.9,2 L2.4,2 L2.4,0.6 L2.4,0.6 Z M5.4,0.6 L3.9,0.6 L3.9,2 L5.4,2 L5.4,0.6 L5.4,0.6 Z M8.3,0.6 L6.8,0.6 L6.8,2 L8.3,2 L8.3,0.6 L8.3,0.6 Z M11.2,0.6 L9.7,0.6 L9.7,2 L11.2,2 L11.2,0.6 L11.2,0.6 Z M14.2,0.6 L12.7,0.6 L12.7,2 L14.2,2 L14.2,0.6 L14.2,0.6 Z M17.1,0.6 L15.6,0.6 L15.6,2 L17.1,2 L17.1,0.6 L17.1,0.6 Z M20,0.6 L18.5,0.6 L18.5,2 L20,2 L20,0.6 L20,0.6 Z M23,0.6 L21.5,0.6 L21.5,2 L23,2 L23,0.6 L23,0.6 Z M25.9,0.6 L24.4,0.6 L24.4,2 L25.9,2 L25.9,0.6 L25.9,0.6 Z M28.8,0.6 L27.3,0.6 L27.3,2 L28.8,2 L28.8,0.6 L28.8,0.6 Z M31.8,0.6 L30.3,0.6 L30.3,2 L31.8,2 L31.8,0.6 L31.8,0.6 Z M34.7,0.6 L33.2,0.6 L33.2,2 L34.7,2 L34.7,0.6 L34.7,0.6 Z M37.6,0.6 L36.1,0.6 L36.1,2 L37.6,2 L37.6,0.6 L37.6,0.6 Z M40.6,0.6 L39.1,0.6 L39.1,2 L40.6,2 L40.6,0.6 L40.6,0.6 Z M43.5,0.6 L42,0.6 L42,2 L43.5,2 L43.5,0.6 L43.5,0.6 Z M46.4,0.6 L45,0.6 L45,2 L46.5,2 L46.5,0.6 L46.4,0.6 Z M49.4,0.6 L47.9,0.6 L47.9,2 L49.4,2 L49.4,0.6 L49.4,0.6 Z M52.3,0.6 L50.8,0.6 L50.8,2 L52.3,2 L52.3,0.6 L52.3,0.6 Z M55.2,0.6 L53.7,0.6 L53.7,2 L55.2,2 L55.2,0.6 L55.2,0.6 Z M58.2,0.6 L56.7,0.6 L56.7,2 L58.2,2 L58.2,0.6 L58.2,0.6 Z M61.1,0.6 L59.6,0.6 L59.6,2 L61.1,2 L61.1,0.6 L61.1,0.6 Z M64.1,0.6 L62.6,0.6 L62.6,2 L64.1,2 L64.1,0.6 L64.1,0.6 Z M67,0.6 L65.5,0.6 L65.5,2 L67,2 L67,0.6 L67,0.6 Z M3.9,2 L2.4,2 L2.4,3.5 L3.9,3.5 L3.9,2 L3.9,2 Z M6.8,2 L5.3,2 L5.3,3.5 L6.8,3.5 L6.8,2 L6.8,2 Z M9.8,2 L8.3,2 L8.3,3.5 L9.8,3.5 L9.8,2 L9.8,2 Z M12.7,2 L11.2,2 L11.2,3.5 L12.7,3.5 L12.7,2 L12.7,2 Z M15.6,2 L14.1,2 L14.1,3.5 L15.6,3.5 L15.6,2 L15.6,2 Z M18.6,2 L17.1,2 L17.1,3.5 L18.6,3.5 L18.6,2 L18.6,2 Z M21.5,2 L20,2 L20,3.5 L21.5,3.5 L21.5,2 L21.5,2 Z M24.4,2 L23,2 L23,3.5 L24.5,3.5 L24.5,2 L24.4,2 Z M27.4,2 L25.9,2 L25.9,3.5 L27.4,3.5 L27.4,2 L27.4,2 Z M30.3,2 L28.8,2 L28.8,3.5 L30.3,3.5 L30.3,2 L30.3,2 Z M33.2,2 L31.7,2 L31.7,3.5 L33.2,3.5 L33.2,2 L33.2,2 Z M36.2,2 L34.7,2 L34.7,3.5 L36.2,3.5 L36.2,2 L36.2,2 Z M39.1,2 L37.6,2 L37.6,3.5 L39.1,3.5 L39.1,2 L39.1,2 Z M42,2 L40.5,2 L40.5,3.5 L42,3.5 L42,2 L42,2 Z M45,2 L43.5,2 L43.5,3.5 L45,3.5 L45,2 L45,2 Z M47.9,2 L46.4,2 L46.4,3.5 L47.9,3.5 L47.9,2 L47.9,2 Z M50.9,2 L49.4,2 L49.4,3.5 L50.9,3.5 L50.9,2 L50.9,2 Z M53.8,2 L52.3,2 L52.3,3.5 L53.8,3.5 L53.8,2 L53.8,2 Z M56.7,2 L55.2,2 L55.2,3.5 L56.7,3.5 L56.7,2 L56.7,2 Z M59.6,2 L58.1,2 L58.1,3.5 L59.6,3.5 L59.6,2 L59.6,2 Z M62.6,2 L61.1,2 L61.1,3.5 L62.6,3.5 L62.6,2 L62.6,2 Z M65.5,2 L64,2 L64,3.5 L65.5,3.5 L65.5,2 L65.5,2 Z M68.5,2 L67,2 L67,3.5 L68.5,3.5 L68.5,2 L68.5,2 Z M2.4,3.5 L0.9,3.5 L0.9,5 L2.4,5 L2.4,3.5 L2.4,3.5 Z M5.4,3.5 L3.9,3.5 L3.9,5 L5.4,5 L5.4,3.5 L5.4,3.5 Z M8.3,3.5 L6.8,3.5 L6.8,5 L8.3,5 L8.3,3.5 L8.3,3.5 Z M11.2,3.5 L9.7,3.5 L9.7,5 L11.2,5 L11.2,3.5 L11.2,3.5 Z M14.2,3.5 L12.7,3.5 L12.7,5 L14.2,5 L14.2,3.5 L14.2,3.5 Z M17.1,3.5 L15.6,3.5 L15.6,5 L17.1,5 L17.1,3.5 L17.1,3.5 Z M20,3.5 L18.5,3.5 L18.5,5 L20,5 L20,3.5 L20,3.5 Z M23,3.5 L21.5,3.5 L21.5,5 L23,5 L23,3.5 L23,3.5 Z M25.9,3.5 L24.4,3.5 L24.4,5 L25.9,5 L25.9,3.5 L25.9,3.5 Z M28.8,3.5 L27.3,3.5 L27.3,5 L28.8,5 L28.8,3.5 L28.8,3.5 Z M31.8,3.5 L30.3,3.5 L30.3,5 L31.8,5 L31.8,3.5 L31.8,3.5 Z M34.7,3.5 L33.2,3.5 L33.2,5 L34.7,5 L34.7,3.5 L34.7,3.5 Z M37.6,3.5 L36.1,3.5 L36.1,5 L37.6,5 L37.6,3.5 L37.6,3.5 Z M40.6,3.5 L39.1,3.5 L39.1,5 L40.6,5 L40.6,3.5 L40.6,3.5 Z M43.5,3.5 L42,3.5 L42,5 L43.5,5 L43.5,3.5 L43.5,3.5 Z M46.4,3.5 L45,3.5 L45,5 L46.5,5 L46.5,3.5 L46.4,3.5 Z M49.4,3.5 L47.9,3.5 L47.9,5 L49.4,5 L49.4,3.5 L49.4,3.5 Z M52.3,3.5 L50.8,3.5 L50.8,5 L52.3,5 L52.3,3.5 L52.3,3.5 Z M55.2,3.5 L53.7,3.5 L53.7,5 L55.2,5 L55.2,3.5 L55.2,3.5 Z M58.2,3.5 L56.7,3.5 L56.7,5 L58.2,5 L58.2,3.5 L58.2,3.5 Z M61.1,3.5 L59.6,3.5 L59.6,5 L61.1,5 L61.1,3.5 L61.1,3.5 Z M64.1,3.5 L62.6,3.5 L62.6,5 L64.1,5 L64.1,3.5 L64.1,3.5 Z M67,3.5 L65.5,3.5 L65.5,5 L67,5 L67,3.5 L67,3.5 Z M3.9,5 L2.4,5 L2.4,6.5 L3.9,6.5 L3.9,5 L3.9,5 Z M6.8,5 L5.3,5 L5.3,6.5 L6.8,6.5 L6.8,5 L6.8,5 Z M9.8,5 L8.3,5 L8.3,6.5 L9.8,6.5 L9.8,5 L9.8,5 Z M12.7,5 L11.2,5 L11.2,6.5 L12.7,6.5 L12.7,5 L12.7,5 Z M15.6,5 L14.1,5 L14.1,6.5 L15.6,6.5 L15.6,5 L15.6,5 Z M18.6,5 L17.1,5 L17.1,6.5 L18.6,6.5 L18.6,5 L18.6,5 Z M21.5,5 L20,5 L20,6.5 L21.5,6.5 L21.5,5 L21.5,5 Z M24.4,5 L23,5 L23,6.5 L24.5,6.5 L24.5,5 L24.4,5 Z M27.4,5 L25.9,5 L25.9,6.5 L27.4,6.5 L27.4,5 L27.4,5 Z M30.3,5 L28.8,5 L28.8,6.5 L30.3,6.5 L30.3,5 L30.3,5 Z M33.2,5 L31.7,5 L31.7,6.5 L33.2,6.5 L33.2,5 L33.2,5 Z M36.2,5 L34.7,5 L34.7,6.5 L36.2,6.5 L36.2,5 L36.2,5 Z M39.1,5 L37.6,5 L37.6,6.5 L39.1,6.5 L39.1,5 L39.1,5 Z M42,5 L40.5,5 L40.5,6.5 L42,6.5 L42,5 L42,5 Z M45,5 L43.5,5 L43.5,6.5 L45,6.5 L45,5 L45,5 Z M47.9,5 L46.4,5 L46.4,6.5 L47.9,6.5 L47.9,5 L47.9,5 Z M50.9,5 L49.4,5 L49.4,6.5 L50.9,6.5 L50.9,5 L50.9,5 Z M53.8,5 L52.3,5 L52.3,6.5 L53.8,6.5 L53.8,5 L53.8,5 Z M56.7,5 L55.2,5 L55.2,6.5 L56.7,6.5 L56.7,5 L56.7,5 Z M59.6,5 L58.1,5 L58.1,6.5 L59.6,6.5 L59.6,5 L59.6,5 Z M62.6,5 L61.1,5 L61.1,6.5 L62.6,6.5 L62.6,5 L62.6,5 Z M65.5,5 L64,5 L64,6.5 L65.5,6.5 L65.5,5 L65.5,5 Z M68.5,5 L67,5 L67,6.5 L68.5,6.5 L68.5,5 L68.5,5 Z M2.4,6.4 L0.9,6.4 L0.9,7.9 L2.4,7.9 L2.4,6.4 L2.4,6.4 Z M5.4,6.4 L3.9,6.4 L3.9,7.9 L5.4,7.9 L5.4,6.4 L5.4,6.4 Z M8.3,6.4 L6.8,6.4 L6.8,7.9 L8.3,7.9 L8.3,6.4 L8.3,6.4 Z M11.2,6.4 L9.7,6.4 L9.7,7.9 L11.2,7.9 L11.2,6.4 L11.2,6.4 Z M14.2,6.4 L12.7,6.4 L12.7,7.9 L14.2,7.9 L14.2,6.4 L14.2,6.4 Z M17.1,6.4 L15.6,6.4 L15.6,7.9 L17.1,7.9 L17.1,6.4 L17.1,6.4 Z M20,6.4 L18.5,6.4 L18.5,7.9 L20,7.9 L20,6.4 L20,6.4 Z M23,6.4 L21.5,6.4 L21.5,7.9 L23,7.9 L23,6.4 L23,6.4 Z M25.9,6.4 L24.4,6.4 L24.4,7.9 L25.9,7.9 L25.9,6.4 L25.9,6.4 Z M28.8,6.4 L27.3,6.4 L27.3,7.9 L28.8,7.9 L28.8,6.4 L28.8,6.4 Z M31.8,6.4 L30.3,6.4 L30.3,7.9 L31.8,7.9 L31.8,6.4 L31.8,6.4 Z M34.7,6.4 L33.2,6.4 L33.2,7.9 L34.7,7.9 L34.7,6.4 L34.7,6.4 Z M37.6,6.4 L36.1,6.4 L36.1,7.9 L37.6,7.9 L37.6,6.4 L37.6,6.4 Z M40.6,6.4 L39.1,6.4 L39.1,7.9 L40.6,7.9 L40.6,6.4 L40.6,6.4 Z M43.5,6.4 L42,6.4 L42,7.9 L43.5,7.9 L43.5,6.4 L43.5,6.4 Z M46.4,6.4 L45,6.4 L45,7.9 L46.5,7.9 L46.5,6.4 L46.4,6.4 Z M49.4,6.4 L47.9,6.4 L47.9,7.9 L49.4,7.9 L49.4,6.4 L49.4,6.4 Z M52.3,6.4 L50.8,6.4 L50.8,7.9 L52.3,7.9 L52.3,6.4 L52.3,6.4 Z M55.2,6.4 L53.7,6.4 L53.7,7.9 L55.2,7.9 L55.2,6.4 L55.2,6.4 Z M58.2,6.4 L56.7,6.4 L56.7,7.9 L58.2,7.9 L58.2,6.4 L58.2,6.4 Z M61.1,6.4 L59.6,6.4 L59.6,7.9 L61.1,7.9 L61.1,6.4 L61.1,6.4 Z M64.1,6.4 L62.6,6.4 L62.6,7.9 L64.1,7.9 L64.1,6.4 L64.1,6.4 Z M67,6.4 L65.5,6.4 L65.5,7.9 L67,7.9 L67,6.4 L67,6.4 Z M3.9,7.9 L2.4,7.9 L2.4,9.4 L3.9,9.4 L3.9,7.9 L3.9,7.9 Z M6.8,7.9 L5.3,7.9 L5.3,9.4 L6.8,9.4 L6.8,7.9 L6.8,7.9 Z M9.8,7.9 L8.3,7.9 L8.3,9.4 L9.8,9.4 L9.8,7.9 L9.8,7.9 Z M12.7,7.9 L11.2,7.9 L11.2,9.4 L12.7,9.4 L12.7,7.9 L12.7,7.9 Z M15.6,7.9 L14.1,7.9 L14.1,9.4 L15.6,9.4 L15.6,7.9 L15.6,7.9 Z M18.6,7.9 L17.1,7.9 L17.1,9.4 L18.6,9.4 L18.6,7.9 L18.6,7.9 Z M21.5,7.9 L20,7.9 L20,9.4 L21.5,9.4 L21.5,7.9 L21.5,7.9 Z M24.4,7.9 L23,7.9 L23,9.4 L24.5,9.4 L24.5,7.9 L24.4,7.9 Z M27.4,7.9 L25.9,7.9 L25.9,9.4 L27.4,9.4 L27.4,7.9 L27.4,7.9 Z M30.3,7.9 L28.8,7.9 L28.8,9.4 L30.3,9.4 L30.3,7.9 L30.3,7.9 Z M33.2,7.9 L31.7,7.9 L31.7,9.4 L33.2,9.4 L33.2,7.9 L33.2,7.9 Z M36.2,7.9 L34.7,7.9 L34.7,9.4 L36.2,9.4 L36.2,7.9 L36.2,7.9 Z M39.1,7.9 L37.6,7.9 L37.6,9.4 L39.1,9.4 L39.1,7.9 L39.1,7.9 Z M42,7.9 L40.5,7.9 L40.5,9.4 L42,9.4 L42,7.9 L42,7.9 Z M45,7.9 L43.5,7.9 L43.5,9.4 L45,9.4 L45,7.9 L45,7.9 Z M47.9,7.9 L46.4,7.9 L46.4,9.4 L47.9,9.4 L47.9,7.9 L47.9,7.9 Z M50.9,7.9 L49.4,7.9 L49.4,9.4 L50.9,9.4 L50.9,7.9 L50.9,7.9 Z M53.8,7.9 L52.3,7.9 L52.3,9.4 L53.8,9.4 L53.8,7.9 L53.8,7.9 Z M56.7,7.9 L55.2,7.9 L55.2,9.4 L56.7,9.4 L56.7,7.9 L56.7,7.9 Z M59.6,7.9 L58.1,7.9 L58.1,9.4 L59.6,9.4 L59.6,7.9 L59.6,7.9 Z M62.6,7.9 L61.1,7.9 L61.1,9.4 L62.6,9.4 L62.6,7.9 L62.6,7.9 Z M65.5,7.9 L64,7.9 L64,9.4 L65.5,9.4 L65.5,7.9 L65.5,7.9 Z M68.5,7.9 L67,7.9 L67,9.4 L68.5,9.4 L68.5,7.9 L68.5,7.9 Z" fill="#2E2E2E"></path>
77
- <path d="M64.3,0.3 L4.9,0.3 C2.5,0.3 0.5,2.4 0.5,5 C0.5,7.6 2.4,9.7 4.9,9.7 L64.3,9.7 C66.7,9.7 68.7,7.6 68.7,5 C68.7,2.4 66.7,0.3 64.3,0.3 L64.3,0.3 Z M63.9,8.2 L5.3,8.2 C3.5,8.2 2.1,6.8 2.1,5 C2.1,3.2 3.5,1.8 5.3,1.8 L63.9,1.8 C65.7,1.8 67.1,3.2 67.1,5 C67.1,6.8 65.7,8.2 63.9,8.2 L63.9,8.2 Z" fill="#000000" opacity="0.2"></path>
78
- </g>
79
- </g>
80
- <rect id="Rectangle-path" x="28.5" y="114.7" width="320" height="568"></rect>
81
- </g>
82
- </g>
83
- </svg>