alexandria-book-collection-manager 0.6.9.pre1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (293) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +10 -0
  3. data/.rubocop.yml +68 -0
  4. data/.rubocop_todo.yml +200 -0
  5. data/CHANGELOG.md +23 -0
  6. data/COPYING +339 -0
  7. data/ChangeLog.0 +3598 -0
  8. data/Gemfile +9 -0
  9. data/INSTALL.rdoc +156 -0
  10. data/PACKAGING +36 -0
  11. data/README.md +88 -0
  12. data/RELEASE_CHECKLIST +18 -0
  13. data/Rakefile +264 -0
  14. data/TODO +24 -0
  15. data/alexandria-book-collection-manager.gemspec +35 -0
  16. data/alexandria.desktop.in +10 -0
  17. data/bin/alexandria +82 -0
  18. data/doc/AUTHORS +60 -0
  19. data/doc/BUGS +31 -0
  20. data/doc/FAQ +369 -0
  21. data/doc/HACKING +19 -0
  22. data/doc/NEWS +341 -0
  23. data/doc/alexandria.1 +120 -0
  24. data/doc/cuecat_support.rdoc +67 -0
  25. data/lib/alexandria.rb +85 -0
  26. data/lib/alexandria/about.rb +82 -0
  27. data/lib/alexandria/book_providers.rb +411 -0
  28. data/lib/alexandria/book_providers/adlibris.rb +235 -0
  29. data/lib/alexandria/book_providers/amazon_aws.rb +261 -0
  30. data/lib/alexandria/book_providers/amazon_ecs_util.rb +405 -0
  31. data/lib/alexandria/book_providers/barnes_and_noble.rb +229 -0
  32. data/lib/alexandria/book_providers/bol_it.rb +162 -0
  33. data/lib/alexandria/book_providers/deastore.rb +277 -0
  34. data/lib/alexandria/book_providers/douban.rb +135 -0
  35. data/lib/alexandria/book_providers/ibs_it.rb +149 -0
  36. data/lib/alexandria/book_providers/mcu.rb +177 -0
  37. data/lib/alexandria/book_providers/proxis.rb +205 -0
  38. data/lib/alexandria/book_providers/pseudomarc.rb +185 -0
  39. data/lib/alexandria/book_providers/renaud.rb +142 -0
  40. data/lib/alexandria/book_providers/siciliano.rb +271 -0
  41. data/lib/alexandria/book_providers/thalia.rb +197 -0
  42. data/lib/alexandria/book_providers/web.rb +59 -0
  43. data/lib/alexandria/book_providers/webster_it.rb +173 -0
  44. data/lib/alexandria/book_providers/worldcat.rb +251 -0
  45. data/lib/alexandria/book_providers/z3950.rb +422 -0
  46. data/lib/alexandria/config.rb +8 -0
  47. data/lib/alexandria/console.rb +31 -0
  48. data/lib/alexandria/execution_queue.rb +96 -0
  49. data/lib/alexandria/export_library.rb +536 -0
  50. data/lib/alexandria/import_library.rb +316 -0
  51. data/lib/alexandria/import_library_csv.rb +270 -0
  52. data/lib/alexandria/logging.rb +159 -0
  53. data/lib/alexandria/models/book.rb +72 -0
  54. data/lib/alexandria/models/library.rb +714 -0
  55. data/lib/alexandria/net.rb +53 -0
  56. data/lib/alexandria/preferences.rb +324 -0
  57. data/lib/alexandria/scanners.rb +42 -0
  58. data/lib/alexandria/scanners/cuecat.rb +118 -0
  59. data/lib/alexandria/scanners/keyboard.rb +57 -0
  60. data/lib/alexandria/smart_library.rb +525 -0
  61. data/lib/alexandria/ui.rb +53 -0
  62. data/lib/alexandria/ui/builder_base.rb +43 -0
  63. data/lib/alexandria/ui/callbacks.rb +389 -0
  64. data/lib/alexandria/ui/completion_models.rb +228 -0
  65. data/lib/alexandria/ui/dialogs/about_dialog.rb +59 -0
  66. data/lib/alexandria/ui/dialogs/acquire_dialog.rb +640 -0
  67. data/lib/alexandria/ui/dialogs/alert_dialog.rb +68 -0
  68. data/lib/alexandria/ui/dialogs/bad_isbns_dialog.rb +43 -0
  69. data/lib/alexandria/ui/dialogs/barcode_animation.rb +159 -0
  70. data/lib/alexandria/ui/dialogs/book_properties_dialog.rb +210 -0
  71. data/lib/alexandria/ui/dialogs/book_properties_dialog_base.rb +432 -0
  72. data/lib/alexandria/ui/dialogs/export_dialog.rb +172 -0
  73. data/lib/alexandria/ui/dialogs/import_dialog.rb +205 -0
  74. data/lib/alexandria/ui/dialogs/misc_dialogs.rb +85 -0
  75. data/lib/alexandria/ui/dialogs/new_book_dialog.rb +639 -0
  76. data/lib/alexandria/ui/dialogs/new_book_dialog_manual.rb +153 -0
  77. data/lib/alexandria/ui/dialogs/new_smart_library_dialog.rb +67 -0
  78. data/lib/alexandria/ui/dialogs/preferences_dialog.rb +587 -0
  79. data/lib/alexandria/ui/dialogs/smart_library_properties_dialog.rb +56 -0
  80. data/lib/alexandria/ui/dialogs/smart_library_properties_dialog_base.rb +432 -0
  81. data/lib/alexandria/ui/dndable.rb +81 -0
  82. data/lib/alexandria/ui/gtk_thread_help.rb +88 -0
  83. data/lib/alexandria/ui/icons.rb +100 -0
  84. data/lib/alexandria/ui/iconview.rb +91 -0
  85. data/lib/alexandria/ui/iconview_tooltips.rb +162 -0
  86. data/lib/alexandria/ui/init.rb +93 -0
  87. data/lib/alexandria/ui/libraries_combo.rb +75 -0
  88. data/lib/alexandria/ui/listview.rb +310 -0
  89. data/lib/alexandria/ui/main_app.rb +67 -0
  90. data/lib/alexandria/ui/multi_drag_treeview.rb +150 -0
  91. data/lib/alexandria/ui/sidepane.rb +194 -0
  92. data/lib/alexandria/ui/sound.rb +107 -0
  93. data/lib/alexandria/ui/ui_manager.rb +1308 -0
  94. data/lib/alexandria/undo_manager.rb +78 -0
  95. data/lib/alexandria/utils.rb +30 -0
  96. data/lib/alexandria/version.rb +24 -0
  97. data/lib/alexandria/web_themes.rb +75 -0
  98. data/misc/sounds/README +15 -0
  99. data/misc/sounds/bad_scan.csd +62 -0
  100. data/misc/sounds/good_scan.csd +61 -0
  101. data/misc/sounds/scanning.csd +46 -0
  102. data/po/ChangeLog +488 -0
  103. data/po/Makefile +44 -0
  104. data/po/README +29 -0
  105. data/po/commit-po +72 -0
  106. data/po/cs.po +1437 -0
  107. data/po/cy.po +1521 -0
  108. data/po/de.po +1400 -0
  109. data/po/el.po +1379 -0
  110. data/po/es.po +1376 -0
  111. data/po/fr.po +1420 -0
  112. data/po/ga.po +1359 -0
  113. data/po/gl.po +1397 -0
  114. data/po/it.po +1406 -0
  115. data/po/ja.po +1355 -0
  116. data/po/mk.po +1373 -0
  117. data/po/nb.po +1386 -0
  118. data/po/nl.po +1405 -0
  119. data/po/pl.po +1373 -0
  120. data/po/pt.po +1398 -0
  121. data/po/pt_BR.po +1409 -0
  122. data/po/ru.po +1372 -0
  123. data/po/sk.po +1380 -0
  124. data/po/sv.po +1402 -0
  125. data/po/uk.po +1423 -0
  126. data/po/zh_TW.po +1394 -0
  127. data/schemas/alexandria.schemas +300 -0
  128. data/share/alexandria/glade/acquire_dialog__builder.glade +201 -0
  129. data/share/alexandria/glade/book_properties_dialog__builder.glade +910 -0
  130. data/share/alexandria/glade/main_app__builder.glade +229 -0
  131. data/share/alexandria/glade/new_book_dialog__builder.glade +379 -0
  132. data/share/alexandria/glade/preferences_dialog__builder.glade +733 -0
  133. data/share/alexandria/icons/alexandria.png +0 -0
  134. data/share/alexandria/icons/alexandria_small.png +0 -0
  135. data/share/alexandria/icons/book.png +0 -0
  136. data/share/alexandria/icons/book_icon.png +0 -0
  137. data/share/alexandria/icons/book_small.png +0 -0
  138. data/share/alexandria/icons/cuecat.png +0 -0
  139. data/share/alexandria/icons/cuecat_inactive.png +0 -0
  140. data/share/alexandria/icons/favorite_tag.png +0 -0
  141. data/share/alexandria/icons/less.png +0 -0
  142. data/share/alexandria/icons/library.png +0 -0
  143. data/share/alexandria/icons/library_small.png +0 -0
  144. data/share/alexandria/icons/lookup.png +0 -0
  145. data/share/alexandria/icons/more.png +0 -0
  146. data/share/alexandria/icons/no_cover.png +0 -0
  147. data/share/alexandria/icons/smart_library.png +0 -0
  148. data/share/alexandria/icons/smart_library_small.png +0 -0
  149. data/share/alexandria/icons/star_set.png +0 -0
  150. data/share/alexandria/icons/star_unset.png +0 -0
  151. data/share/alexandria/icons/view_as_icons.png +0 -0
  152. data/share/alexandria/icons/view_as_list.png +0 -0
  153. data/share/alexandria/ui/menus.xml +91 -0
  154. data/share/alexandria/ui/popups.xml +91 -0
  155. data/share/alexandria/web-themes/clean/clean.css +85 -0
  156. data/share/alexandria/web-themes/clean/preview.jpg +0 -0
  157. data/share/alexandria/web-themes/list/list.css +105 -0
  158. data/share/alexandria/web-themes/list/preview.jpg +0 -0
  159. data/share/app-icon/16x16/alexandria.png +0 -0
  160. data/share/app-icon/16x16/alexandria.svg +263 -0
  161. data/share/app-icon/22x22/alexandria.png +0 -0
  162. data/share/app-icon/22x22/alexandria.svg +465 -0
  163. data/share/app-icon/24x24/alexandria.png +0 -0
  164. data/share/app-icon/32x32/alexandria.png +0 -0
  165. data/share/app-icon/32x32/alexandria.svg +813 -0
  166. data/share/app-icon/32x32/alexandria.xpm +241 -0
  167. data/share/app-icon/48x48/alexandria.png +0 -0
  168. data/share/app-icon/scalable/alexandria.svg +700 -0
  169. data/share/gnome/help/alexandria/C/about.xml +44 -0
  170. data/share/gnome/help/alexandria/C/adding-books.xml +339 -0
  171. data/share/gnome/help/alexandria/C/alexandria.xml +185 -0
  172. data/share/gnome/help/alexandria/C/bugs.xml +18 -0
  173. data/share/gnome/help/alexandria/C/editing-book-properties.xml +124 -0
  174. data/share/gnome/help/alexandria/C/exporting.xml +81 -0
  175. data/share/gnome/help/alexandria/C/figures/adding_books_acquire_from_scanner_process.png +0 -0
  176. data/share/gnome/help/alexandria/C/figures/adding_books_add_by_isbn.png +0 -0
  177. data/share/gnome/help/alexandria/C/figures/adding_books_isbn_import.png +0 -0
  178. data/share/gnome/help/alexandria/C/figures/adding_books_manual_details.png +0 -0
  179. data/share/gnome/help/alexandria/C/figures/adding_books_rename_library_after_import.png +0 -0
  180. data/share/gnome/help/alexandria/C/figures/adding_books_search_results.png +0 -0
  181. data/share/gnome/help/alexandria/C/figures/editing_book_properties_info.png +0 -0
  182. data/share/gnome/help/alexandria/C/figures/editing_book_properties_loaning.png +0 -0
  183. data/share/gnome/help/alexandria/C/figures/exporting_information_html.png +0 -0
  184. data/share/gnome/help/alexandria/C/figures/getting_started_first_launched.png +0 -0
  185. data/share/gnome/help/alexandria/C/figures/searching_filtering_views_list_view.png +0 -0
  186. data/share/gnome/help/alexandria/C/figures/searching_filtering_views_list_view_search.png +0 -0
  187. data/share/gnome/help/alexandria/C/figures/settings_providers_new_z3950.png +0 -0
  188. data/share/gnome/help/alexandria/C/figures/smart_libraries_new_smart_library.png +0 -0
  189. data/share/gnome/help/alexandria/C/figures/working_with_libraries_library_pane.png +0 -0
  190. data/share/gnome/help/alexandria/C/getting-started.xml +154 -0
  191. data/share/gnome/help/alexandria/C/gnu-fdl-1.2.xml +543 -0
  192. data/share/gnome/help/alexandria/C/introduction.xml +142 -0
  193. data/share/gnome/help/alexandria/C/searching.xml +90 -0
  194. data/share/gnome/help/alexandria/C/settings.xml +140 -0
  195. data/share/gnome/help/alexandria/C/smart-libraries.xml +160 -0
  196. data/share/gnome/help/alexandria/C/working-with-libraries.xml +76 -0
  197. data/share/gnome/help/alexandria/ChangeLog +99 -0
  198. data/share/gnome/help/alexandria/fr/alexandria.xml +2292 -0
  199. data/share/gnome/help/alexandria/fr/figures/alexandria_add_button.png +0 -0
  200. data/share/gnome/help/alexandria/fr/figures/alexandria_add_by_isbn_1.png +0 -0
  201. data/share/gnome/help/alexandria/fr/figures/alexandria_add_by_search_1.png +0 -0
  202. data/share/gnome/help/alexandria/fr/figures/alexandria_add_manually.png +0 -0
  203. data/share/gnome/help/alexandria/fr/figures/alexandria_add_z3950.png +0 -0
  204. data/share/gnome/help/alexandria/fr/figures/alexandria_close_button.png +0 -0
  205. data/share/gnome/help/alexandria/fr/figures/alexandria_edit_info.png +0 -0
  206. data/share/gnome/help/alexandria/fr/figures/alexandria_export_web_page.png +0 -0
  207. data/share/gnome/help/alexandria/fr/figures/alexandria_importing.png +0 -0
  208. data/share/gnome/help/alexandria/fr/figures/alexandria_library_pane.png +0 -0
  209. data/share/gnome/help/alexandria/fr/figures/alexandria_list_view.png +0 -0
  210. data/share/gnome/help/alexandria/fr/figures/alexandria_list_view_search.png +0 -0
  211. data/share/gnome/help/alexandria/fr/figures/alexandria_loaning.png +0 -0
  212. data/share/gnome/help/alexandria/fr/figures/alexandria_main_window.png +0 -0
  213. data/share/gnome/help/alexandria/fr/figures/alexandria_remove_button.png +0 -0
  214. data/share/gnome/help/alexandria/ja/about.xml +33 -0
  215. data/share/gnome/help/alexandria/ja/adding-books.xml +314 -0
  216. data/share/gnome/help/alexandria/ja/alexandria.xml +172 -0
  217. data/share/gnome/help/alexandria/ja/bugs.xml +11 -0
  218. data/share/gnome/help/alexandria/ja/editing-book-properties.xml +100 -0
  219. data/share/gnome/help/alexandria/ja/exporting.xml +98 -0
  220. data/share/gnome/help/alexandria/ja/figures/adding_books_acquire_from_scanner_process.png +0 -0
  221. data/share/gnome/help/alexandria/ja/figures/adding_books_add_by_isbn.png +0 -0
  222. data/share/gnome/help/alexandria/ja/figures/adding_books_isbn_import.png +0 -0
  223. data/share/gnome/help/alexandria/ja/figures/adding_books_manual_details.png +0 -0
  224. data/share/gnome/help/alexandria/ja/figures/adding_books_rename_library_after_import.png +0 -0
  225. data/share/gnome/help/alexandria/ja/figures/adding_books_search_results.png +0 -0
  226. data/share/gnome/help/alexandria/ja/figures/editing_book_properties_info.png +0 -0
  227. data/share/gnome/help/alexandria/ja/figures/editing_book_properties_loaning.png +0 -0
  228. data/share/gnome/help/alexandria/ja/figures/exporting_information_html.png +0 -0
  229. data/share/gnome/help/alexandria/ja/figures/getting_started_first_launched.png +0 -0
  230. data/share/gnome/help/alexandria/ja/figures/searching_filtering_views_list_view.png +0 -0
  231. data/share/gnome/help/alexandria/ja/figures/searching_filtering_views_list_view_search.png +0 -0
  232. data/share/gnome/help/alexandria/ja/figures/settings_providers_new_z3950.png +0 -0
  233. data/share/gnome/help/alexandria/ja/figures/smart_libraries_new_smart_library.png +0 -0
  234. data/share/gnome/help/alexandria/ja/figures/working_with_libraries_library_pane.png +0 -0
  235. data/share/gnome/help/alexandria/ja/getting-started.xml +144 -0
  236. data/share/gnome/help/alexandria/ja/gnu-fdl-1.2.xml +541 -0
  237. data/share/gnome/help/alexandria/ja/introduction.xml +134 -0
  238. data/share/gnome/help/alexandria/ja/searching.xml +104 -0
  239. data/share/gnome/help/alexandria/ja/settings.xml +129 -0
  240. data/share/gnome/help/alexandria/ja/smart-libraries.xml +140 -0
  241. data/share/gnome/help/alexandria/ja/working-with-libraries.xml +88 -0
  242. data/share/menu/alexandria +7 -0
  243. data/share/omf/alexandria/alexandria-C.omf.in +27 -0
  244. data/share/omf/alexandria/alexandria-fr.omf.in +30 -0
  245. data/share/sounds/alexandria/bad_scan.ogg +0 -0
  246. data/share/sounds/alexandria/bad_scan.wav +0 -0
  247. data/share/sounds/alexandria/good_scan.ogg +0 -0
  248. data/share/sounds/alexandria/good_scan.wav +0 -0
  249. data/share/sounds/alexandria/scanning.ogg +0 -0
  250. data/share/sounds/alexandria/scanning.wav +0 -0
  251. data/spec/alexandria/library_spec.rb +205 -0
  252. data/spec/alexandria/preferences_spec.rb +22 -0
  253. data/spec/alexandria/scanners/cuecat_spec.rb +68 -0
  254. data/spec/alexandria/smart_library_spec.rb +22 -0
  255. data/spec/alexandria/ui/dialogs_spec.rb +90 -0
  256. data/spec/alexandria/ui/iconview_spec.rb +27 -0
  257. data/spec/alexandria/ui/listview_spec.rb +28 -0
  258. data/spec/alexandria/ui/main_app_spec.rb +48 -0
  259. data/spec/alexandria/ui/sidepane_spec.rb +27 -0
  260. data/spec/alexandria/ui/ui_manager_spec.rb +26 -0
  261. data/spec/alexandria/ui/ui_utilities_spec.rb +60 -0
  262. data/spec/alexandria/utilities_spec.rb +50 -0
  263. data/spec/data/libraries/0.6.1-noisbn/My Library/0201398257.yaml +10 -0
  264. data/spec/data/libraries/0.6.1-noisbn/My Library/1565920007.yaml +10 -0
  265. data/spec/data/libraries/0.6.1/My Library/0192812173.yaml +9 -0
  266. data/spec/data/libraries/0.6.1/My Library/0201398257.cover +0 -0
  267. data/spec/data/libraries/0.6.1/My Library/0201398257.yaml +10 -0
  268. data/spec/data/libraries/0.6.1/My Library/1565920007.yaml +10 -0
  269. data/spec/data/libraries/0.6.2/My Library/9780140266146.cover +0 -0
  270. data/spec/data/libraries/0.6.2/My Library/9780140266146.yaml +16 -0
  271. data/spec/data/libraries/0.6.2/My Library/9780140278781.cover +0 -0
  272. data/spec/data/libraries/0.6.2/My Library/9780140278781.yaml +21 -0
  273. data/spec/data/libraries/0.6.2/My Library/9780571147168.cover +0 -0
  274. data/spec/data/libraries/0.6.2/My Library/9780571147168.yaml +20 -0
  275. data/spec/data/libraries/0.6.2/My Library/9780575079038.cover +0 -0
  276. data/spec/data/libraries/0.6.2/My Library/9780575079038.yaml +20 -0
  277. data/spec/data/libraries/0.6.2/My Library/9780755322800.cover +0 -0
  278. data/spec/data/libraries/0.6.2/My Library/9780755322800.yaml +20 -0
  279. data/spec/spec_helper.rb +46 -0
  280. data/tasks/rdoc.rake +6 -0
  281. data/tasks/setup.rb +30 -0
  282. data/tasks/spec.rake +29 -0
  283. data/tasks/test.rake +38 -0
  284. data/test/application_test.rb +39 -0
  285. data/test/book_test.rb +34 -0
  286. data/test/data/isbns.txt +3 -0
  287. data/test/isbn_test.rb +68 -0
  288. data/test/providers_test.rb +254 -0
  289. data/test/test_helper.rb +42 -0
  290. data/util/rake/fileinstall.rb +313 -0
  291. data/util/rake/gettextgenerate.rb +158 -0
  292. data/util/rake/omfgenerate.rb +79 -0
  293. metadata +452 -0
@@ -0,0 +1,241 @@
1
+ /* XPM */
2
+ static char * alexandria_xpm[] = {
3
+ "32 32 206 2",
4
+ " c None",
5
+ ". c #A66601",
6
+ "+ c #A76702",
7
+ "@ c #A96C0C",
8
+ "# c #D2A763",
9
+ "$ c #DEB980",
10
+ "% c #CEA15B",
11
+ "& c #A66908",
12
+ "* c #A16401",
13
+ "= c #AF7720",
14
+ "- c #D8B172",
15
+ "; c #D5A65E",
16
+ "> c #CB9237",
17
+ ", c #CB9136",
18
+ "' c #CC9339",
19
+ ") c #D7AB64",
20
+ "! c #D6AE6E",
21
+ "~ c #AA7116",
22
+ "{ c #A26402",
23
+ "] c #A06201",
24
+ "^ c #BD8A3C",
25
+ "/ c #DBB578",
26
+ "( c #D19E4D",
27
+ "_ c #D2A154",
28
+ ": c #DBB478",
29
+ "< c #B5802F",
30
+ "[ c #9B5F01",
31
+ "} c #D8AC68",
32
+ "| c #C4841D",
33
+ "1 c #C17D11",
34
+ "2 c #C68825",
35
+ "3 c #9B6001",
36
+ "4 c #985E01",
37
+ "5 c #8F5902",
38
+ "6 c #955C01",
39
+ "7 c #3E2600",
40
+ "8 c #959792",
41
+ "9 c #444642",
42
+ "0 c #4D2F00",
43
+ "a c #965C01",
44
+ "b c #925A01",
45
+ "c c #4E2F00",
46
+ "d c #BABDB6",
47
+ "e c #555753",
48
+ "f c #603B00",
49
+ "g c #935B01",
50
+ "h c #905901",
51
+ "i c #8D5701",
52
+ "j c #8A5501",
53
+ "k c #553400",
54
+ "l c #6C4301",
55
+ "m c #643E01",
56
+ "n c #573500",
57
+ "o c #8A5601",
58
+ "p c #875401",
59
+ "q c #885401",
60
+ "r c #845201",
61
+ "s c #855201",
62
+ "t c #825001",
63
+ "u c #825101",
64
+ "v c #7F4F01",
65
+ "w c #7D4E01",
66
+ "x c #B7BAB4",
67
+ "y c #62635F",
68
+ "z c #868682",
69
+ "A c #797A76",
70
+ "B c #7A7469",
71
+ "C c #5B4727",
72
+ "D c #5B4826",
73
+ "E c #837A68",
74
+ "F c #848075",
75
+ "G c #918A7B",
76
+ "H c #7C602E",
77
+ "I c #6A6C67",
78
+ "J c #7C7D79",
79
+ "K c #959693",
80
+ "L c #D7D8D7",
81
+ "M c #F1F1F1",
82
+ "N c #D3D4D1",
83
+ "O c #989791",
84
+ "P c #918F8A",
85
+ "Q c #CBCCCA",
86
+ "R c #DEDEDD",
87
+ "S c #C8C8C7",
88
+ "T c #989790",
89
+ "U c #858682",
90
+ "V c #878784",
91
+ "W c #3B3A31",
92
+ "X c #757672",
93
+ "Y c #ECECEC",
94
+ "Z c #FFFFFF",
95
+ "` c #FDFDFD",
96
+ " . c #E6E7E4",
97
+ ".. c #CBCDC8",
98
+ "+. c #BCBEB9",
99
+ "@. c #E2E3E1",
100
+ "#. c #E8E8E8",
101
+ "$. c #E4E4E4",
102
+ "%. c #E3E3E3",
103
+ "&. c #D6D6D6",
104
+ "*. c #878884",
105
+ "=. c #303537",
106
+ "-. c #2E3436",
107
+ ";. c #777874",
108
+ ">. c #FCFCFC",
109
+ ",. c #CBCDC7",
110
+ "'. c #BBBDB8",
111
+ "). c #E1E1DF",
112
+ "!. c #E7E7E7",
113
+ "~. c #8A8B87",
114
+ "{. c #7A7B77",
115
+ "]. c #FAFBFA",
116
+ "^. c #E4E6E2",
117
+ "/. c #CACDC7",
118
+ "(. c #B9BCB6",
119
+ "_. c #DFE0DE",
120
+ ":. c #E6E6E6",
121
+ "<. c #8E8F8B",
122
+ "[. c #4E3000",
123
+ "}. c #7E7F7B",
124
+ "|. c #FEFEFE",
125
+ "1. c #F9F9F9",
126
+ "2. c #E4E5E2",
127
+ "3. c #C9CBC6",
128
+ "4. c #B9BAB6",
129
+ "5. c #DDDEDC",
130
+ "6. c #E5E5E5",
131
+ "7. c #91928E",
132
+ "8. c #613C00",
133
+ "9. c #81827E",
134
+ "0. c #F8F8F8",
135
+ "a. c #E2E4E1",
136
+ "b. c #C8CBC5",
137
+ "c. c #B7B9B4",
138
+ "d. c #DCDDDB",
139
+ "e. c #959692",
140
+ "f. c #F7F7F7",
141
+ "g. c #E2E4E0",
142
+ "h. c #B5B7B2",
143
+ "i. c #DBDCDA",
144
+ "j. c #989995",
145
+ "k. c #623C01",
146
+ "l. c #6B4301",
147
+ "m. c #888985",
148
+ "n. c #FBFBFB",
149
+ "o. c #F6F6F6",
150
+ "p. c #E1E3DF",
151
+ "q. c #C7CAC4",
152
+ "r. c #B3B5B0",
153
+ "s. c #D9DAD8",
154
+ "t. c #9C9D99",
155
+ "u. c #8C8D89",
156
+ "v. c #FAFAFA",
157
+ "w. c #F6F6F5",
158
+ "x. c #E6E7E5",
159
+ "y. c #B3B6B0",
160
+ "z. c #DCDDDC",
161
+ "A. c #90918D",
162
+ "B. c #F4F4F4",
163
+ "C. c #BEBFBC",
164
+ "D. c #999A96",
165
+ "E. c #A3A4A0",
166
+ "F. c #CECFCD",
167
+ "G. c #C8C9C6",
168
+ "H. c #A5A6A1",
169
+ "I. c #9E9F9B",
170
+ "J. c #9FA19D",
171
+ "K. c #BABBB9",
172
+ "L. c #DCDCDC",
173
+ "M. c #C17E12",
174
+ "N. c #C17E13",
175
+ "O. c #C27F14",
176
+ "P. c #C27F15",
177
+ "Q. c #939490",
178
+ "R. c #9A9B98",
179
+ "S. c #B1B3AE",
180
+ "T. c #C5C8C1",
181
+ "U. c #C6C9C2",
182
+ "V. c #BABCB6",
183
+ "W. c #A5A7A3",
184
+ "X. c #A5A6A2",
185
+ "Y. c #B8BBB5",
186
+ "Z. c #A8AAA5",
187
+ "`. c #9FA09C",
188
+ " + c #D7AC67",
189
+ ".+ c #D7AB66",
190
+ "++ c #D7AB65",
191
+ "@+ c #D7AA64",
192
+ "#+ c #AEB1AC",
193
+ "$+ c #CED1CA",
194
+ "%+ c #D3D7CF",
195
+ "&+ c #D1D5CD",
196
+ "*+ c #CED2CA",
197
+ "=+ c #CBCFC7",
198
+ "-+ c #C8CCC4",
199
+ ";+ c #C5C9C2",
200
+ ">+ c #C2C5BF",
201
+ ",+ c #BCBFB9",
202
+ "'+ c #50524F",
203
+ ")+ c #3A3D3A",
204
+ "!+ c #3E403D",
205
+ "~+ c #545653",
206
+ "{+ c #2F3536",
207
+ "]+ c #292E2F",
208
+ "^+ c #2E3335",
209
+ "/+ c #2F3537",
210
+ " ",
211
+ " . . . . . . . . . . . . . . . . . + ",
212
+ " @ # $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ % & ",
213
+ " * = - ; > , , , , , , , , , , , , , , ' ) ! ~ { ",
214
+ " ] ^ / ( , , , , , , , , , , , , , , , , , , _ : < ] ",
215
+ " [ } | 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 } 3 ",
216
+ " 4 } 1 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 1 } 4 ",
217
+ " 6 } 1 5 7 8 9 8 9 8 9 8 9 8 9 8 9 8 9 0 7 7 5 1 } a ",
218
+ " b } 1 5 c d e d e d e d e d e d e d e f c c 5 1 } g ",
219
+ " h } 1 5 c d e d e d e d e d e d e d e f c c 5 1 } h ",
220
+ " i } 1 5 c d e d e d e d e d e d e d e f c c 5 1 } i ",
221
+ " j } 1 5 k d e d e d e d e d e d e d e l m n 5 1 } o ",
222
+ " p } 1 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 1 } q ",
223
+ " r } 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 } s ",
224
+ " t } 1 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 1 } u ",
225
+ " v } 1 5 7 8 9 8 9 8 9 8 9 8 9 8 9 8 9 0 7 7 5 1 } v ",
226
+ " w } 1 5 c d e d e d e d e d e d e d e f c c 5 1 } w ",
227
+ " w } 1 5 c d e d e d e d e d e x y z A B C D E F G H ",
228
+ " w } 1 5 k d e d e d e d e d I J K L M N O P Q R S T U V ",
229
+ " w } 1 5 5 5 5 5 5 5 5 5 5 W X Y Z Z ` ...+.@.#.$.%.&.*.=.",
230
+ " w } 1 1 1 1 1 1 1 1 1 1 1 -.;.Z Z Z >. .,.'.).!.%.%.%.~.-.",
231
+ " w } 1 5 5 5 5 5 5 5 5 5 5 -.{.Z Z Z ].^./.(._.:.%.%.%.<.-.",
232
+ " w } 1 5 7 7 [.8 9 8 9 8 9 -.}.Z Z |.1.2.3.4.5.6.%.%.%.7.-.",
233
+ " w } 1 5 c c 8.d e d e d e -.9.Z Z ` 0.a.b.c.d.$.%.%.%.e.-.",
234
+ " w } 1 5 c c 8.d e d e d e -.U Z Z >.f.g.b.h.i.%.%.%.%.j.-.",
235
+ " w } 1 5 k k.l.d e d e d e -.m.Z Z n.o.p.q.r.s.%.%.%.%.t.-.",
236
+ " w } 1 5 5 5 5 5 5 5 5 5 5 -.u.Z |.v.w.x.q.y.z.%.%.%.%.t.-.",
237
+ " w } 1 1 1 1 1 1 1 1 1 1 1 -.A.B.C.D.D.E.F.G.H.I.J.K.L.t.-.",
238
+ " w } 1 1 M.M.M.N.O.O.O.P.P.-.Q.R.S.T.U.V.W.X.y.Y.y.Z.`.t.-.",
239
+ " w } } + + +.+.+++++++@+@+-.#+$+%+%+%+%+&+*+=+-+;+>+,+Z.-.",
240
+ " w w w w w w w w w w w w w -.e e e '+)+!+~+~+!+)+'+e e e -.",
241
+ " {+-.-.-.{+]+^+-.-.^+]+{+-.-.-./+"};
@@ -0,0 +1,700 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <!-- Created with Inkscape (http://www.inkscape.org/) -->
3
+ <svg
4
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
5
+ xmlns:cc="http://web.resource.org/cc/"
6
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
7
+ xmlns:svg="http://www.w3.org/2000/svg"
8
+ xmlns="http://www.w3.org/2000/svg"
9
+ xmlns:xlink="http://www.w3.org/1999/xlink"
10
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
11
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
12
+ width="48"
13
+ height="48"
14
+ id="svg4908"
15
+ sodipodi:version="0.32"
16
+ inkscape:version="0.44+devel"
17
+ version="1.0"
18
+ sodipodi:docbase="/home/andreas/project/application icons/48x48"
19
+ sodipodi:docname="alexandria.svg"
20
+ inkscape:output_extension="org.inkscape.output.svg.inkscape"
21
+ inkscape:export-filename="/home/andreas/project/application icons/48x48/alexandria.png"
22
+ inkscape:export-xdpi="90"
23
+ inkscape:export-ydpi="90"
24
+ sodipodi:modified="true">
25
+ <defs
26
+ id="defs4910">
27
+ <linearGradient
28
+ inkscape:collect="always"
29
+ id="linearGradient2286">
30
+ <stop
31
+ style="stop-color:#555753"
32
+ offset="0"
33
+ id="stop6502" />
34
+ <stop
35
+ style="stop-color:#555753;stop-opacity:0"
36
+ offset="1"
37
+ id="stop2290" />
38
+ </linearGradient>
39
+ <radialGradient
40
+ inkscape:collect="always"
41
+ xlink:href="#linearGradient2286"
42
+ id="radialGradient2292"
43
+ cx="24"
44
+ cy="36.75"
45
+ fx="24"
46
+ fy="36.75"
47
+ r="22.5"
48
+ gradientTransform="matrix(1,0,0,0.3,0,25.725)"
49
+ gradientUnits="userSpaceOnUse" />
50
+ <linearGradient
51
+ inkscape:collect="always"
52
+ id="linearGradient2258">
53
+ <stop
54
+ style="stop-color:#ff8686;stop-opacity:1"
55
+ offset="0"
56
+ id="stop2260" />
57
+ <stop
58
+ style="stop-color:#a40000"
59
+ offset="1"
60
+ id="stop2262" />
61
+ </linearGradient>
62
+ <linearGradient
63
+ inkscape:collect="always"
64
+ xlink:href="#linearGradient2258"
65
+ id="linearGradient1411"
66
+ gradientUnits="userSpaceOnUse"
67
+ x1="38.783661"
68
+ y1="25.046175"
69
+ x2="35.02327"
70
+ y2="25.509642" />
71
+ <linearGradient
72
+ inkscape:collect="always"
73
+ id="linearGradient2229">
74
+ <stop
75
+ style="stop-color:#999b95;stop-opacity:1"
76
+ offset="0"
77
+ id="stop2231" />
78
+ <stop
79
+ style="stop-color:#d3d7cf;stop-opacity:0;"
80
+ offset="1"
81
+ id="stop2233" />
82
+ </linearGradient>
83
+ <linearGradient
84
+ inkscape:collect="always"
85
+ xlink:href="#linearGradient2229"
86
+ id="linearGradient1409"
87
+ gradientUnits="userSpaceOnUse"
88
+ gradientTransform="matrix(-1,0,0,1,48,0)"
89
+ x1="24"
90
+ y1="19.505583"
91
+ x2="17.223783"
92
+ y2="19.353201" />
93
+ <linearGradient
94
+ id="linearGradient2221"
95
+ inkscape:collect="always">
96
+ <stop
97
+ id="stop2223"
98
+ offset="0"
99
+ style="stop-color:#babdb6" />
100
+ <stop
101
+ id="stop2225"
102
+ offset="1"
103
+ style="stop-color:#d3d7cf;stop-opacity:0;" />
104
+ </linearGradient>
105
+ <linearGradient
106
+ inkscape:collect="always"
107
+ xlink:href="#linearGradient2221"
108
+ id="linearGradient2219"
109
+ x1="24"
110
+ y1="19.996655"
111
+ x2="32"
112
+ y2="19.90625"
113
+ gradientUnits="userSpaceOnUse"
114
+ gradientTransform="matrix(-1,0,0,1,48,0)" />
115
+ <linearGradient
116
+ inkscape:collect="always"
117
+ id="linearGradient2184">
118
+ <stop
119
+ style="stop-color:#ffffff;stop-opacity:1;"
120
+ offset="0"
121
+ id="stop2186" />
122
+ <stop
123
+ style="stop-color:#e3e3e3;stop-opacity:1"
124
+ offset="1"
125
+ id="stop2188" />
126
+ </linearGradient>
127
+ <linearGradient
128
+ inkscape:collect="always"
129
+ xlink:href="#linearGradient2184"
130
+ id="linearGradient2245"
131
+ gradientUnits="userSpaceOnUse"
132
+ x1="13.054439"
133
+ y1="15.055288"
134
+ x2="32.640141"
135
+ y2="19.978216" />
136
+ <linearGradient
137
+ inkscape:collect="always"
138
+ id="linearGradient5980">
139
+ <stop
140
+ style="stop-color:#000000;stop-opacity:1;"
141
+ offset="0"
142
+ id="stop5982" />
143
+ <stop
144
+ style="stop-color:#000000;stop-opacity:0;"
145
+ offset="1"
146
+ id="stop5984" />
147
+ </linearGradient>
148
+ <linearGradient
149
+ inkscape:collect="always"
150
+ id="linearGradient5958">
151
+ <stop
152
+ style="stop-color:#ff0707;stop-opacity:1"
153
+ offset="0"
154
+ id="stop5960" />
155
+ <stop
156
+ style="stop-color:#8a0000;stop-opacity:1"
157
+ offset="1"
158
+ id="stop5962" />
159
+ </linearGradient>
160
+ <linearGradient
161
+ inkscape:collect="always"
162
+ id="linearGradient5941">
163
+ <stop
164
+ style="stop-color:#7d4e01;stop-opacity:1"
165
+ offset="0"
166
+ id="stop5943" />
167
+ <stop
168
+ style="stop-color:#a96801;stop-opacity:1"
169
+ offset="1"
170
+ id="stop5945" />
171
+ </linearGradient>
172
+ <linearGradient
173
+ inkscape:collect="always"
174
+ xlink:href="#linearGradient5941"
175
+ id="linearGradient5947"
176
+ x1="9.9384851"
177
+ y1="11.43926"
178
+ x2="9.9843884"
179
+ y2="1.4955717"
180
+ gradientUnits="userSpaceOnUse"
181
+ gradientTransform="matrix(2.0641242,0,0,2.0631194,1.3137009,0.3994704)" />
182
+ <filter
183
+ inkscape:collect="always"
184
+ x="-0.043365035"
185
+ width="1.0867301"
186
+ y="-0.13146453"
187
+ height="1.2629291"
188
+ id="filter6022">
189
+ <feGaussianBlur
190
+ inkscape:collect="always"
191
+ stdDeviation="0.41139686"
192
+ id="feGaussianBlur6024" />
193
+ </filter>
194
+ <radialGradient
195
+ inkscape:collect="always"
196
+ xlink:href="#linearGradient5958"
197
+ id="radialGradient5964"
198
+ cx="16.362822"
199
+ cy="24.300686"
200
+ fx="16.362822"
201
+ fy="24.300686"
202
+ r="2.5908539"
203
+ gradientTransform="matrix(0.8503472,-1.7338529e-2,2.0918462e-2,0.982729,1.9404092,0.711889)"
204
+ gradientUnits="userSpaceOnUse" />
205
+ <linearGradient
206
+ inkscape:collect="always"
207
+ xlink:href="#linearGradient5980"
208
+ id="linearGradient5986"
209
+ x1="20.63868"
210
+ y1="11.186254"
211
+ x2="20.63868"
212
+ y2="12.779696"
213
+ gradientUnits="userSpaceOnUse"
214
+ gradientTransform="matrix(1.6000001,0,0,1,-8.8000001,0)" />
215
+ <linearGradient
216
+ inkscape:collect="always"
217
+ xlink:href="#linearGradient5980"
218
+ id="linearGradient5990"
219
+ gradientUnits="userSpaceOnUse"
220
+ x1="20.63868"
221
+ y1="11.186254"
222
+ x2="20.63868"
223
+ y2="12.779696"
224
+ gradientTransform="matrix(1.6,0,0,1,-8.8000002,9.9999994)" />
225
+ <linearGradient
226
+ inkscape:collect="always"
227
+ xlink:href="#linearGradient5980"
228
+ id="linearGradient5994"
229
+ gradientUnits="userSpaceOnUse"
230
+ gradientTransform="matrix(1.6000001,0,0,1,-8.7999998,19.999998)"
231
+ x1="20.63868"
232
+ y1="11.186254"
233
+ x2="20.63868"
234
+ y2="12.779696" />
235
+ <linearGradient
236
+ inkscape:collect="always"
237
+ xlink:href="#linearGradient2184"
238
+ id="linearGradient6551"
239
+ gradientUnits="userSpaceOnUse"
240
+ x1="13.054439"
241
+ y1="15.055288"
242
+ x2="32.640141"
243
+ y2="19.978216" />
244
+ <linearGradient
245
+ inkscape:collect="always"
246
+ xlink:href="#linearGradient2221"
247
+ id="linearGradient6553"
248
+ gradientUnits="userSpaceOnUse"
249
+ gradientTransform="matrix(-1,0,0,1,48,0)"
250
+ x1="24"
251
+ y1="19.996655"
252
+ x2="32"
253
+ y2="19.90625" />
254
+ <linearGradient
255
+ inkscape:collect="always"
256
+ xlink:href="#linearGradient2229"
257
+ id="linearGradient6555"
258
+ gradientUnits="userSpaceOnUse"
259
+ gradientTransform="matrix(-1,0,0,1,48,0)"
260
+ x1="24"
261
+ y1="19.505583"
262
+ x2="17.223783"
263
+ y2="19.353201" />
264
+ <linearGradient
265
+ inkscape:collect="always"
266
+ xlink:href="#linearGradient2229"
267
+ id="linearGradient6558"
268
+ gradientUnits="userSpaceOnUse"
269
+ gradientTransform="matrix(-1,0,0,1,48,0)"
270
+ x1="24"
271
+ y1="19.505583"
272
+ x2="17.223783"
273
+ y2="19.353201" />
274
+ <linearGradient
275
+ inkscape:collect="always"
276
+ xlink:href="#linearGradient2221"
277
+ id="linearGradient6561"
278
+ gradientUnits="userSpaceOnUse"
279
+ gradientTransform="matrix(-1,0,0,1,48,0)"
280
+ x1="24"
281
+ y1="19.996655"
282
+ x2="32"
283
+ y2="19.90625" />
284
+ <linearGradient
285
+ inkscape:collect="always"
286
+ xlink:href="#linearGradient2184"
287
+ id="linearGradient6564"
288
+ gradientUnits="userSpaceOnUse"
289
+ x1="13.054439"
290
+ y1="15.055288"
291
+ x2="32.640141"
292
+ y2="19.978216" />
293
+ </defs>
294
+ <sodipodi:namedview
295
+ id="base"
296
+ pagecolor="#ffffff"
297
+ bordercolor="#666666"
298
+ borderopacity="1.0"
299
+ inkscape:pageopacity="0.0"
300
+ inkscape:pageshadow="2"
301
+ inkscape:zoom="22.627417"
302
+ inkscape:cx="26.806795"
303
+ inkscape:cy="16.640689"
304
+ inkscape:current-layer="layer1"
305
+ showgrid="false"
306
+ inkscape:grid-bbox="true"
307
+ inkscape:document-units="px"
308
+ width="48px"
309
+ height="48px"
310
+ inkscape:window-width="1680"
311
+ inkscape:window-height="973"
312
+ inkscape:window-x="3"
313
+ inkscape:window-y="51"
314
+ showguides="true"
315
+ inkscape:guide-bbox="true" />
316
+ <metadata
317
+ id="metadata4913">
318
+ <rdf:RDF>
319
+ <cc:Work
320
+ rdf:about="">
321
+ <dc:format>image/svg+xml</dc:format>
322
+ <dc:type
323
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
324
+ <dc:title>Alexandria application icon</dc:title>
325
+ <dc:date>May 2007</dc:date>
326
+ <dc:creator>
327
+ <cc:Agent>
328
+ <dc:title>Andreas Nilsson</dc:title>
329
+ </cc:Agent>
330
+ </dc:creator>
331
+ <dc:source>http://www.andreasn.se</dc:source>
332
+ <cc:license
333
+ rdf:resource="http://creativecommons.org/licenses/GPL/2.0/" />
334
+ </cc:Work>
335
+ <cc:License
336
+ rdf:about="http://creativecommons.org/licenses/GPL/2.0/">
337
+ <cc:permits
338
+ rdf:resource="http://web.resource.org/cc/Reproduction" />
339
+ <cc:permits
340
+ rdf:resource="http://web.resource.org/cc/Distribution" />
341
+ <cc:requires
342
+ rdf:resource="http://web.resource.org/cc/Notice" />
343
+ <cc:permits
344
+ rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
345
+ <cc:requires
346
+ rdf:resource="http://web.resource.org/cc/ShareAlike" />
347
+ <cc:requires
348
+ rdf:resource="http://web.resource.org/cc/SourceCode" />
349
+ </cc:License>
350
+ </rdf:RDF>
351
+ </metadata>
352
+ <g
353
+ id="layer1"
354
+ inkscape:label="Layer 1"
355
+ inkscape:groupmode="layer">
356
+ <path
357
+ style="opacity:0.26630435;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;filter:url(#filter6022)"
358
+ d="M 1,19.1875 L 2.9375,16.0625 L 19.1875,16.0625 L 21,19.1875 L 21,22 L 1,22 L 1,19.1875 z "
359
+ id="rect5955"
360
+ sodipodi:nodetypes="ccccccc"
361
+ transform="matrix(1.7,0,0,1.6842107,5.3,6.9473663)" />
362
+ <path
363
+ style="opacity:1;fill:#c17d11;fill-opacity:1;stroke:url(#linearGradient5947);stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
364
+ d="M 13.698446,4.5624999 L 8.5381355,8.8820359 L 8.5381355,42.5 L 39.499998,42.5 L 39.499998,9.010981 L 34.210681,4.5624999 L 13.698446,4.5624999 z "
365
+ id="rect4937"
366
+ sodipodi:nodetypes="ccccccc" />
367
+ <rect
368
+ style="opacity:1;fill:#4e2f00;fill-opacity:1;stroke:#8f5902;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
369
+ id="rect5908"
370
+ width="25.000002"
371
+ height="8"
372
+ x="11.500002"
373
+ y="10.5" />
374
+ <path
375
+ style="opacity:0.36413043;fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.00000012px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
376
+ d="M 9.5000001,41.5 L 9.5000001,9.1793131 L 13.94136,5.5624998 L 33.970116,5.5624998 L 38.500001,9.3561041 L 38.500001,41.376147 L 9.5000001,41.5 z "
377
+ id="path5914"
378
+ sodipodi:nodetypes="ccccccc" />
379
+ <path
380
+ style="opacity:1;fill:#6c4301;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
381
+ d="M 15.00202,16 L 32.979049,16 L 36.000001,18 L 12.000001,18 L 15.00202,16 z "
382
+ id="rect5916"
383
+ sodipodi:nodetypes="ccccc" />
384
+ <path
385
+ style="opacity:0.15760869;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
386
+ d="M 9,9 L 39,9 L 34.111607,5 L 13.754464,5 L 9,9 z "
387
+ id="path5927"
388
+ sodipodi:nodetypes="ccccc" />
389
+ <rect
390
+ style="opacity:1;fill:#613c00;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
391
+ id="rect5929"
392
+ width="18"
393
+ height="5"
394
+ x="15.000001"
395
+ y="11" />
396
+ <rect
397
+ style="opacity:1;fill:#4e2f00;fill-opacity:1;stroke:#8f5902;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
398
+ id="rect4957"
399
+ width="25.000002"
400
+ height="8"
401
+ x="11.500002"
402
+ y="20.5" />
403
+ <path
404
+ style="opacity:1;fill:#6c4301;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
405
+ d="M 15.002019,26 L 32.979048,26 L 36,28 L 12,28 L 15.002019,26 z "
406
+ id="path4959"
407
+ sodipodi:nodetypes="ccccc" />
408
+ <rect
409
+ style="opacity:1;fill:#613c00;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
410
+ id="rect4961"
411
+ width="18"
412
+ height="5"
413
+ x="15"
414
+ y="21" />
415
+ <rect
416
+ style="opacity:1;fill:#4e2f00;fill-opacity:1;stroke:#8f5902;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
417
+ id="rect4963"
418
+ width="25.000002"
419
+ height="8"
420
+ x="11.5"
421
+ y="30.5" />
422
+ <path
423
+ style="opacity:1;fill:#6c4301;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
424
+ d="M 15.002018,36 L 32.979047,36 L 35.999999,38 L 11.999999,38 L 15.002018,36 z "
425
+ id="path4965"
426
+ sodipodi:nodetypes="ccccc" />
427
+ <rect
428
+ style="opacity:1;fill:#613c00;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
429
+ id="rect4967"
430
+ width="18"
431
+ height="5"
432
+ x="14.999999"
433
+ y="31" />
434
+ <rect
435
+ style="opacity:1;fill:#bdc3b7;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
436
+ id="rect6015"
437
+ width="12"
438
+ height="6"
439
+ x="15"
440
+ y="32" />
441
+ <rect
442
+ style="opacity:1;fill:#6b6d68;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
443
+ id="rect6103"
444
+ width="1"
445
+ height="6"
446
+ x="24"
447
+ y="32" />
448
+ <rect
449
+ style="opacity:1;fill:#3465a4;fill-opacity:1;stroke:#204a87;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
450
+ id="rect5970"
451
+ width="2.000001"
452
+ height="5.9999986"
453
+ x="28.5"
454
+ y="31.5" />
455
+ <rect
456
+ style="opacity:1;fill:#73d216;fill-opacity:1;stroke:#4e9a06;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
457
+ id="rect5972"
458
+ width="2.000001"
459
+ height="5.9999986"
460
+ x="31.5"
461
+ y="31.5" />
462
+ <rect
463
+ style="opacity:0.41304345;fill:url(#linearGradient5994);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
464
+ id="rect5992"
465
+ width="24"
466
+ height="2"
467
+ x="12"
468
+ y="31" />
469
+ <g
470
+ id="g1397"
471
+ transform="matrix(0.448582,0,0,0.448582,25.233601,27.718352)">
472
+ <path
473
+ transform="matrix(1.089854,0,0,0.825648,-2.155535,9.297111)"
474
+ d="M 46.5 36.75 A 22.5 6.75 0 1 1 1.5,36.75 A 22.5 6.75 0 1 1 46.5 36.75 z"
475
+ sodipodi:ry="6.75"
476
+ sodipodi:rx="22.5"
477
+ sodipodi:cy="36.75"
478
+ sodipodi:cx="24"
479
+ id="path2284"
480
+ style="opacity:0.51764706;color:#000000;fill:url(#radialGradient2292);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:17.85;stroke-opacity:1;visibility:visible;display:block;overflow:visible"
481
+ sodipodi:type="arc" />
482
+ <path
483
+ sodipodi:nodetypes="ccccccccc"
484
+ id="rect1304"
485
+ d="M 2.823116,8.4466675 L 45.178806,8.4466675 L 47.408052,39.656123 L 30.688701,39.656123 L 28.459454,38.5415 C 26.230208,40.770746 21.771714,40.770746 19.542467,38.5415 L 17.31322,39.656123 L 0.59386913,39.656123 L 2.823116,8.4466675 z "
486
+ style="color:#000000;fill:#555753;fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:2.22924781;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:17.85;stroke-opacity:1;visibility:visible;display:block;overflow:visible" />
487
+ <path
488
+ sodipodi:nodetypes="ccccccc"
489
+ id="path2180"
490
+ d="M 2.823116,36.312253 C 9.5108564,35.197629 13.96935,34.083006 18.427844,36.312253 C 21.427844,33.812253 26.574078,33.812253 29.574078,36.312253 C 34.032572,34.083006 39.605689,35.197629 45.178806,36.312253 L 44.064182,30.739136 C 37.064182,28.239136 10.937739,28.239136 3.9377394,30.739136 L 2.823116,36.312253 z "
491
+ style="fill:#d3d7cf;fill-opacity:1;fill-rule:evenodd;stroke:#757672;stroke-width:2.22924781;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
492
+ <path
493
+ sodipodi:nodetypes="ccccccc"
494
+ id="path2182"
495
+ d="M 2.823116,35.197629 C 9.323116,32.697629 18.427844,26.280643 24.000961,32.968383 C 29.574078,26.280643 38.678806,32.697629 45.178806,35.197629 L 42.949559,8.4466675 C 37.376442,3.9881742 28.459454,2.1811543 24.000961,6.2174207 C 19.472096,2.2515256 11.740103,3.9881742 5.0523628,8.4466675 L 2.823116,35.197629 z "
496
+ style="fill:url(#linearGradient6564);fill-opacity:1;fill-rule:evenodd;stroke:#939490;stroke-width:2.22924685;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
497
+ <path
498
+ sodipodi:nodetypes="ccccc"
499
+ id="rect2192"
500
+ d="M 23.929629,7.6839002 C 21.929629,6.1839002 18.583973,4.6027973 15.083973,5.1027973 L 15.083973,28.509889 C 17.083973,27.509889 22.000961,28.739136 24.000961,30.739136 L 23.929629,7.6839002 z "
501
+ style="color:#000000;fill:url(#linearGradient6561);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:17.85;stroke-opacity:1;visibility:visible;display:block;overflow:visible" />
502
+ <path
503
+ sodipodi:nodetypes="ccccc"
504
+ id="path2195"
505
+ d="M 24,9.5 C 25.221264,8.803878 26.787225,7.2389763 28.459454,7.3320441 L 28.459454,28.509889 C 26.959454,28.009889 25.500961,29.978271 24.000961,30.978271 L 24,9.5 z "
506
+ style="color:#000000;fill:url(#linearGradient6558);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:17.85;stroke-opacity:1;visibility:visible;display:block;overflow:visible" />
507
+ <path
508
+ d="M 32.75,6.34375 C 29.692457,5.9008718 27.057812,6.4647161 25.5,7.875 C 24.656159,8.6345382 23.375091,8.6345382 22.53125,7.875 C 20.856929,6.4088091 18.553255,5.9463021 15.65625,6.375 C 13.034861,6.7629124 10.049009,8.0145472 7.1875,9.78125 L 5.34375,31.625 C 7.7351637,30.511569 10.33799,29.3022 13.15625,28.5 C 15.243886,27.905767 17.418036,27.58718 19.625,27.96875 C 21.170087,28.235886 22.640842,29.025875 24,30.09375 C 25.359158,29.025874 26.829912,28.235886 28.375,27.96875 C 30.581964,27.58718 32.756114,27.905767 34.84375,28.5 C 37.66201,29.3022 40.264836,30.511569 42.65625,31.625 L 40.8125,9.71875 C 38.452323,8.0262192 35.53781,6.747558 32.75,6.34375 z "
509
+ inkscape:href="#path2182"
510
+ id="path2243"
511
+ style="opacity:0.87843137;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:2.22924781;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
512
+ xlink:href="#path2182"
513
+ inkscape:original="M 33.0625 4.15625 C 29.579302 3.6517166 26.229247 4.2006168 24 6.21875 C 19.471135 2.252855 11.75024 3.9790067 5.0625 8.4375 L 2.8125 35.1875 C 9.3124999 32.687501 18.426883 26.28101 24 32.96875 C 29.573117 26.281009 38.6875 32.6875 45.1875 35.1875 L 42.9375 8.4375 C 40.150942 6.2082533 36.545698 4.6607834 33.0625 4.15625 z "
514
+ inkscape:radius="-2.21856"
515
+ sodipodi:type="inkscape:offset" />
516
+ </g>
517
+ <rect
518
+ style="opacity:1;fill:#bdc3b7;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
519
+ id="rect5060"
520
+ width="18"
521
+ height="6"
522
+ x="15"
523
+ y="12" />
524
+ <rect
525
+ style="opacity:1;fill:#6b6d68;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
526
+ id="rect5011"
527
+ width="1"
528
+ height="6"
529
+ x="20"
530
+ y="12" />
531
+ <rect
532
+ style="opacity:1;fill:#6b6d68;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
533
+ id="rect5982"
534
+ width="1"
535
+ height="6"
536
+ x="22"
537
+ y="12" />
538
+ <rect
539
+ style="opacity:1;fill:#6b6d68;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
540
+ id="rect6008"
541
+ width="1"
542
+ height="6"
543
+ x="24"
544
+ y="12" />
545
+ <rect
546
+ style="opacity:1;fill:#6b6d68;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
547
+ id="rect6010"
548
+ width="1"
549
+ height="6"
550
+ x="26"
551
+ y="12" />
552
+ <rect
553
+ style="opacity:1;fill:#6b6d68;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
554
+ id="rect6018"
555
+ width="1"
556
+ height="6"
557
+ x="28"
558
+ y="12" />
559
+ <rect
560
+ style="opacity:1;fill:#6b6d68;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
561
+ id="rect6020"
562
+ width="1"
563
+ height="6"
564
+ x="30"
565
+ y="12" />
566
+ <rect
567
+ style="opacity:1;fill:#6b6d68;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
568
+ id="rect6030"
569
+ width="1"
570
+ height="6"
571
+ x="32"
572
+ y="12" />
573
+ <rect
574
+ style="opacity:0.41304345;fill:url(#linearGradient5986);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
575
+ id="rect5978"
576
+ width="24"
577
+ height="2"
578
+ x="12"
579
+ y="11" />
580
+ <rect
581
+ style="opacity:1;fill:#bdc3b7;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
582
+ id="rect6013"
583
+ width="18"
584
+ height="6"
585
+ x="14"
586
+ y="22" />
587
+ <rect
588
+ style="opacity:0.41304345;fill:url(#linearGradient5990);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
589
+ id="rect5988"
590
+ width="24"
591
+ height="2"
592
+ x="12"
593
+ y="21" />
594
+ <rect
595
+ style="opacity:1;fill:#6b6d68;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
596
+ id="rect5058"
597
+ width="1"
598
+ height="6"
599
+ x="18"
600
+ y="12" />
601
+ <rect
602
+ style="opacity:1;fill:#6b6d68;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
603
+ id="rect5062"
604
+ width="1"
605
+ height="6"
606
+ x="16"
607
+ y="12" />
608
+ <rect
609
+ style="opacity:1;fill:#6b6d68;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
610
+ id="rect6039"
611
+ width="1"
612
+ height="6"
613
+ x="19"
614
+ y="22" />
615
+ <rect
616
+ style="opacity:1;fill:#6b6d68;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
617
+ id="rect6041"
618
+ width="1"
619
+ height="6"
620
+ x="21"
621
+ y="22" />
622
+ <rect
623
+ style="opacity:1;fill:#6b6d68;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
624
+ id="rect6047"
625
+ width="1"
626
+ height="6"
627
+ x="23"
628
+ y="22" />
629
+ <rect
630
+ style="opacity:1;fill:#6b6d68;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
631
+ id="rect6049"
632
+ width="1"
633
+ height="6"
634
+ x="25"
635
+ y="22" />
636
+ <rect
637
+ style="opacity:1;fill:#6b6d68;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
638
+ id="rect6055"
639
+ width="1"
640
+ height="6"
641
+ x="27"
642
+ y="22" />
643
+ <rect
644
+ style="opacity:1;fill:#6b6d68;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
645
+ id="rect6057"
646
+ width="1"
647
+ height="6"
648
+ x="29"
649
+ y="22" />
650
+ <rect
651
+ style="opacity:1;fill:#6b6d68;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
652
+ id="rect6061"
653
+ width="1"
654
+ height="6"
655
+ x="31"
656
+ y="22" />
657
+ <rect
658
+ style="opacity:1;fill:#6b6d68;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
659
+ id="rect6065"
660
+ width="1"
661
+ height="6"
662
+ x="17"
663
+ y="22" />
664
+ <rect
665
+ style="opacity:1;fill:#6b6d68;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
666
+ id="rect6069"
667
+ width="1"
668
+ height="6"
669
+ x="15"
670
+ y="22" />
671
+ <rect
672
+ style="opacity:1;fill:#6b6d68;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
673
+ id="rect6075"
674
+ width="1"
675
+ height="6"
676
+ x="20"
677
+ y="32" />
678
+ <rect
679
+ style="opacity:1;fill:#6b6d68;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
680
+ id="rect6077"
681
+ width="1"
682
+ height="6"
683
+ x="22"
684
+ y="32" />
685
+ <rect
686
+ style="opacity:1;fill:#6b6d68;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
687
+ id="rect6081"
688
+ width="1"
689
+ height="6"
690
+ x="18"
691
+ y="32" />
692
+ <rect
693
+ style="opacity:1;fill:#6b6d68;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
694
+ id="rect6085"
695
+ width="1"
696
+ height="6"
697
+ x="16"
698
+ y="32" />
699
+ </g>
700
+ </svg>