rolodex 2.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (131) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +25 -0
  3. data/Gemfile +4 -0
  4. data/LICENSE.txt +22 -0
  5. data/README.md +25 -0
  6. data/Rakefile +1 -0
  7. data/karma.conf.js +87 -0
  8. data/lib/rolodex.rb +31 -0
  9. data/lib/rolodex/engine.rb +12 -0
  10. data/lib/rolodex/sass.rb +5 -0
  11. data/lib/rolodex/version.rb +3 -0
  12. data/package.json +33 -0
  13. data/rolodex.gemspec +29 -0
  14. data/spec/javascripts/rolodex_angular/modal.spec.coffee +13 -0
  15. data/spec/spec_helper.rb +0 -0
  16. data/spec/test_lib/angular-mocks.js +2173 -0
  17. data/spec/test_lib/angular.js +21883 -0
  18. data/spec/test_lib/jquery-2.1.1.js +9190 -0
  19. data/spec/test_lib/lodash.js +6785 -0
  20. data/vendor/assets/.keep +0 -0
  21. data/vendor/assets/images/alerts/icon-danger-dark.png +0 -0
  22. data/vendor/assets/images/alerts/icon-danger-dark.svg +9 -0
  23. data/vendor/assets/images/alerts/icon-danger-light.png +0 -0
  24. data/vendor/assets/images/alerts/icon-danger-light.svg +9 -0
  25. data/vendor/assets/images/alerts/icon-flop-dark.png +0 -0
  26. data/vendor/assets/images/alerts/icon-flop-dark.svg +11 -0
  27. data/vendor/assets/images/alerts/icon-flop-light.png +0 -0
  28. data/vendor/assets/images/alerts/icon-flop-light.svg +11 -0
  29. data/vendor/assets/images/alerts/icon-info-dark.png +0 -0
  30. data/vendor/assets/images/alerts/icon-info-dark.svg +9 -0
  31. data/vendor/assets/images/alerts/icon-info-light.png +0 -0
  32. data/vendor/assets/images/alerts/icon-info-light.svg +9 -0
  33. data/vendor/assets/images/alerts/icon-tick-dark.png +0 -0
  34. data/vendor/assets/images/alerts/icon-tick-dark.svg +9 -0
  35. data/vendor/assets/images/alerts/icon-tick-light.png +0 -0
  36. data/vendor/assets/images/alerts/icon-tick-light.svg +9 -0
  37. data/vendor/assets/images/forms/checkbox.png +0 -0
  38. data/vendor/assets/images/forms/checkbox.svg +13 -0
  39. data/vendor/assets/images/forms/icon-calendar.png +0 -0
  40. data/vendor/assets/images/forms/icon-calendar.svg +20 -0
  41. data/vendor/assets/images/forms/icon-search.png +0 -0
  42. data/vendor/assets/images/forms/icon-search.svg +13 -0
  43. data/vendor/assets/images/forms/icon-validating.gif +0 -0
  44. data/vendor/assets/images/forms/icon-validating.psd +0 -0
  45. data/vendor/assets/images/forms/radio-button.png +0 -0
  46. data/vendor/assets/images/forms/radio-button.svg +12 -0
  47. data/vendor/assets/images/icons/icon-caret.png +0 -0
  48. data/vendor/assets/images/icons/icon-caret.svg +24 -0
  49. data/vendor/assets/images/icons/icon-close-x.png +0 -0
  50. data/vendor/assets/images/icons/icon-close-x.svg +9 -0
  51. data/vendor/assets/images/icons/icon-expand-gray.png +0 -0
  52. data/vendor/assets/images/icons/icon-expand-gray.svg +11 -0
  53. data/vendor/assets/images/icons/icon-expand-white.png +0 -0
  54. data/vendor/assets/images/icons/icon-expand-white.svg +11 -0
  55. data/vendor/assets/images/icons/icon-image.png +0 -0
  56. data/vendor/assets/images/icons/icon-image.svg +12 -0
  57. data/vendor/assets/images/icons/icon-invalid.png +0 -0
  58. data/vendor/assets/images/icons/icon-invalid.svg +14 -0
  59. data/vendor/assets/images/icons/icon-plane.png +0 -0
  60. data/vendor/assets/images/icons/icon-plane.svg +15 -0
  61. data/vendor/assets/images/icons/icon-star-banner.png +0 -0
  62. data/vendor/assets/images/icons/icon-star-banner.svg +16 -0
  63. data/vendor/assets/images/icons/icon-suggest.png +0 -0
  64. data/vendor/assets/images/icons/icon-suggest.svg +15 -0
  65. data/vendor/assets/images/icons/icon-tick.png +0 -0
  66. data/vendor/assets/images/icons/icon-tick.svg +9 -0
  67. data/vendor/assets/images/icons/icon-valid.png +0 -0
  68. data/vendor/assets/images/icons/icon-valid.svg +9 -0
  69. data/vendor/assets/images/loading/loading.png +0 -0
  70. data/vendor/assets/images/loading/loading.svg +23 -0
  71. data/vendor/assets/images/logo/belly-logo.png +0 -0
  72. data/vendor/assets/images/logo/belly-logo.svg +19 -0
  73. data/vendor/assets/images/tooltips/tooltip-star.png +0 -0
  74. data/vendor/assets/images/tooltips/tooltip-star.svg +20 -0
  75. data/vendor/assets/javascripts/rolodex_angular.coffee +3 -0
  76. data/vendor/assets/javascripts/rolodex_angular/README.md +68 -0
  77. data/vendor/assets/javascripts/rolodex_angular/rolodex.coffee +11 -0
  78. data/vendor/assets/javascripts/rolodex_angular/src/accordion.coffee +100 -0
  79. data/vendor/assets/javascripts/rolodex_angular/src/alert.coffee +17 -0
  80. data/vendor/assets/javascripts/rolodex_angular/src/buttons.coffee +59 -0
  81. data/vendor/assets/javascripts/rolodex_angular/src/collapse.coffee +65 -0
  82. data/vendor/assets/javascripts/rolodex_angular/src/dateparser.coffee +125 -0
  83. data/vendor/assets/javascripts/rolodex_angular/src/datepicker.coffee +547 -0
  84. data/vendor/assets/javascripts/rolodex_angular/src/dropdown.coffee +143 -0
  85. data/vendor/assets/javascripts/rolodex_angular/src/modal.coffee +331 -0
  86. data/vendor/assets/javascripts/rolodex_angular/src/position.coffee +128 -0
  87. data/vendor/assets/javascripts/rolodex_angular/src/transition.coffee +73 -0
  88. data/vendor/assets/javascripts/rolodex_angular/template/accordion/accordion-group.ngt.haml +7 -0
  89. data/vendor/assets/javascripts/rolodex_angular/template/accordion/accordion.ngt.haml +1 -0
  90. data/vendor/assets/javascripts/rolodex_angular/template/alert/alert.ngt.haml +3 -0
  91. data/vendor/assets/javascripts/rolodex_angular/template/datepicker/datepicker.ngt.haml +4 -0
  92. data/vendor/assets/javascripts/rolodex_angular/template/datepicker/day.ngt.haml +20 -0
  93. data/vendor/assets/javascripts/rolodex_angular/template/datepicker/month.ngt.haml +17 -0
  94. data/vendor/assets/javascripts/rolodex_angular/template/datepicker/popup.ngt.haml +2 -0
  95. data/vendor/assets/javascripts/rolodex_angular/template/datepicker/year.ngt.haml +17 -0
  96. data/vendor/assets/javascripts/rolodex_angular/template/modal/window.ngt.haml +2 -0
  97. data/vendor/assets/javascripts/vendor/jquery-1.10.2.min.js +6 -0
  98. data/vendor/assets/javascripts/vendor/modernizr-2.6.2.min.js +4 -0
  99. data/vendor/assets/stylesheets/rolodex.css.sass +26 -0
  100. data/vendor/assets/stylesheets/rolodex/base/_layout.sass +58 -0
  101. data/vendor/assets/stylesheets/rolodex/base/_typography.sass +123 -0
  102. data/vendor/assets/stylesheets/rolodex/components/_alerts.sass +112 -0
  103. data/vendor/assets/stylesheets/rolodex/components/_buttons.sass +103 -0
  104. data/vendor/assets/stylesheets/rolodex/components/_dropdowns.sass +121 -0
  105. data/vendor/assets/stylesheets/rolodex/components/_forms.sass +326 -0
  106. data/vendor/assets/stylesheets/rolodex/components/_icons.sass +76 -0
  107. data/vendor/assets/stylesheets/rolodex/components/_labels.sass +29 -0
  108. data/vendor/assets/stylesheets/rolodex/components/_lists.sass +15 -0
  109. data/vendor/assets/stylesheets/rolodex/components/_loading.sass +32 -0
  110. data/vendor/assets/stylesheets/rolodex/components/_media.sass +14 -0
  111. data/vendor/assets/stylesheets/rolodex/components/_modals.sass +83 -0
  112. data/vendor/assets/stylesheets/rolodex/components/_tables.sass +9 -0
  113. data/vendor/assets/stylesheets/rolodex/components/_tooltips.sass +123 -0
  114. data/vendor/assets/stylesheets/rolodex/settings/_settings.sass +33 -0
  115. data/vendor/assets/stylesheets/rolodex/settings/mixins/_bump.sass +51 -0
  116. data/vendor/assets/stylesheets/rolodex/settings/mixins/_icons.sass +17 -0
  117. data/vendor/assets/stylesheets/rolodex/settings/mixins/_layout.sass +52 -0
  118. data/vendor/assets/stylesheets/rolodex/settings/mixins/_rems.sass +41 -0
  119. data/vendor/assets/stylesheets/rolodex/settings/mixins/_svg.sass +10 -0
  120. data/vendor/assets/stylesheets/rolodex/settings/mixins/_typography.sass +65 -0
  121. data/vendor/assets/stylesheets/rolodex/settings/utilities/_layout.sass +51 -0
  122. data/vendor/assets/stylesheets/rolodex/settings/utilities/_misc.sass +13 -0
  123. data/vendor/assets/stylesheets/rolodex/settings/utilities/_typography.sass +60 -0
  124. data/vendor/assets/stylesheets/rolodex/settings/variables/_alerts.scss +27 -0
  125. data/vendor/assets/stylesheets/rolodex/settings/variables/_buttons.scss +10 -0
  126. data/vendor/assets/stylesheets/rolodex/settings/variables/_colors.scss +46 -0
  127. data/vendor/assets/stylesheets/rolodex/settings/variables/_labels.scss +10 -0
  128. data/vendor/assets/stylesheets/rolodex/settings/variables/_layout.scss +22 -0
  129. data/vendor/assets/stylesheets/rolodex/settings/variables/_misc.scss +12 -0
  130. data/vendor/assets/stylesheets/rolodex/settings/variables/_typography.scss +34 -0
  131. metadata +263 -0
File without changes
@@ -0,0 +1,9 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 18.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
4
+ <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
5
+ viewBox="0 0 16 15" enable-background="new 0 0 16 15" xml:space="preserve">
6
+ <path fill="#CC4E53" d="M15.6,12L9.7,1.3c-0.9-1.7-2.4-1.7-3.4,0L0.4,12c-0.9,1.7-0.2,3,1.7,3h11.9C15.8,15,16.5,13.6,15.6,12z
7
+ M8.1,13.1c-0.6,0-1-0.5-1-1.1c0-0.6,0.5-1.1,1-1.1c0.6,0,1,0.5,1,1.1C9.1,12.6,8.6,13.1,8.1,13.1z M8.8,10.3H7.3L6.9,4.1h2.4
8
+ L8.8,10.3z"/>
9
+ </svg>
@@ -0,0 +1,9 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 18.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
4
+ <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
5
+ viewBox="0 0 22 20" enable-background="new 0 0 22 20" xml:space="preserve">
6
+ <path fill="#F6E1E1" d="M21.5,16L13.3,1.7c-1.3-2.2-3.3-2.2-4.6,0L0.5,16c-1.3,2.2-0.2,4,2.3,4h16.3C21.7,20,22.7,18.2,21.5,16z
7
+ M11.1,17.5c-0.8,0-1.4-0.6-1.4-1.4c0-0.8,0.6-1.4,1.4-1.4c0.8,0,1.4,0.6,1.4,1.4C12.5,16.9,11.9,17.5,11.1,17.5z M12.1,13.7h-2
8
+ L9.4,5.5h3.3L12.1,13.7z"/>
9
+ </svg>
@@ -0,0 +1,11 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 18.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
4
+ <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
5
+ viewBox="0 0 20 18" enable-background="new 0 0 20 18" xml:space="preserve">
6
+ <path fill="#33A8E0" d="M17.3,7.8c-2.1,0.9-2.4,2.2-2.5,3.7c-0.1,0.8-0.2,1.6,0.1,4.2C15.6,15.9,16,17,16,17h-2.5
7
+ c-0.3,0-0.5,0.1-0.5-0.2c0,0,0,0.2,0,0.2h-0.2c0,0,0-2.5,0-2.9c0,0.1-1.2,3.6-5,3.9c-3.6,0.2-5.3-2.7-5.5-3.1c-0.4,0.2-0.3,1-0.3,1
8
+ c0.7,0.1,1.1,0.7,1.1,1.5l-2.5,0c-0.3,0-0.5-0.3-0.5-0.6c0,0-0.2-3.5-0.1-6.8C0.2,6.5,1,5.6,1.2,5.4c0.2,2.9,2.3,4.2,4.4,4.2
9
+ c2.7,0,5-2.4,5-5.3c0-1.6-0.7-3.1-1.7-4c0,0,0,0,0,0c2.1-0.6,2.8,0.9,2.8,0.9c0.7-1.4,2-1.1,2-1.1c-0.5,1.9-0.4,1.8-0.4,1.8
10
+ c1.4-0.1,2.3,1.1,2.3,1.1c3.2-1,4.3-1.4,4.3-1.4C20.7,4.5,19,7.1,17.3,7.8z"/>
11
+ </svg>
@@ -0,0 +1,11 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 18.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
4
+ <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
5
+ viewBox="0 0 24 21" enable-background="new 0 0 24 21" xml:space="preserve">
6
+ <path fill="#E1F3FA" d="M20.8,9.1c-2.5,1-2.8,2.5-3,4.4c-0.1,0.9-0.2,1.9,0.1,4.9c0.9,0.2,1.3,1.5,1.3,1.5h-3
7
+ c-0.3,0-0.6,0.1-0.6-0.2c0,0,0,0.2,0,0.2h-0.2c0,0,0-3-0.1-3.4c0,0.2-1.4,4.2-6,4.5c-4.3,0.2-6.4-3.1-6.6-3.6
8
+ c-0.4,0.3-0.4,1.2-0.4,1.2c0.8,0.2,1.3,0.8,1.4,1.7l-3,0c-0.3,0-0.6-0.3-0.6-0.7c0,0-0.2-4.1-0.1-7.9c0.2-4.2,1.1-5.1,1.3-5.4
9
+ c0.3,3.4,2.7,4.8,5.3,4.8c3.3,0,5.9-2.8,5.9-6.2c0-1.9-0.8-3.6-2.1-4.7c0,0,0,0,0,0c2.5-0.7,3.4,1.1,3.4,1.1C14.8-0.3,16.2,0,16.2,0
10
+ c-0.6,2.2-0.5,2.1-0.5,2.1c1.7-0.1,2.8,1.3,2.8,1.3c3.9-1.2,5.2-1.6,5.2-1.6C24.8,5.2,22.8,8.2,20.8,9.1z"/>
11
+ </svg>
@@ -0,0 +1,9 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 18.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
4
+ <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
5
+ viewBox="0 0 16 16" enable-background="new 0 0 16 16" xml:space="preserve">
6
+ <path fill="#F2AE4D" d="M8,0C3.6,0,0,3.6,0,8c0,4.4,3.6,8,8,8c4.4,0,8-3.6,8-8C16,3.6,12.4,0,8,0z M7.9,2.7c0.6,0,1.1,0.5,1.1,1.1
7
+ c0,0.6-0.5,1.1-1.2,1.1c-0.6,0-1.1-0.5-1.1-1.1C6.8,3.1,7.3,2.7,7.9,2.7z M10.1,13.4H6v-0.7c0.9-0.1,1-0.2,1-1.3V8.2
8
+ C7,7.1,6.9,7.1,6.1,7V6.3c1-0.1,2-0.3,2.9-0.6v5.7c0,1.1,0.1,1.2,1,1.3V13.4z"/>
9
+ </svg>
@@ -0,0 +1,9 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 18.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
4
+ <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
5
+ viewBox="0 0 22 22" enable-background="new 0 0 22 22" xml:space="preserve">
6
+ <path fill="#FCEDDF" d="M11,0C4.9,0,0,4.9,0,11c0,6.1,4.9,11,11,11c6.1,0,11-4.9,11-11C22,4.9,17.1,0,11,0z M10.9,3.7
7
+ c0.9,0,1.6,0.7,1.6,1.5c0,0.8-0.7,1.5-1.6,1.5C10,6.8,9.3,6,9.3,5.2C9.3,4.3,10,3.7,10.9,3.7z M13.9,18.5H8.2v-1
8
+ c1.3-0.2,1.4-0.2,1.4-1.8v-4.4c0-1.5-0.2-1.5-1.2-1.7V8.6c1.3-0.2,2.8-0.4,4-0.8v7.8c0,1.5,0.1,1.6,1.4,1.8V18.5z"/>
9
+ </svg>
@@ -0,0 +1,9 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 18.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
4
+ <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
5
+ viewBox="0 0 16 16" enable-background="new 0 0 16 16" xml:space="preserve">
6
+ <path fill="#44AD5F" d="M8,0C3.6,0,0,3.6,0,8c0,4.4,3.6,8,8,8c4.4,0,8-3.6,8-8C16,3.6,12.4,0,8,0z M12.3,5.9L7.2,11
7
+ c-0.2,0.2-0.4,0.2-0.6,0.2c-0.2,0-0.4-0.1-0.6-0.2L3.7,8.7c-0.3-0.3-0.3-0.8,0-1.1c0.3-0.3,0.8-0.3,1.1,0l1.8,1.8l4.5-4.5
8
+ c0.3-0.3,0.8-0.3,1.1,0C12.6,5.1,12.6,5.6,12.3,5.9z"/>
9
+ </svg>
@@ -0,0 +1,9 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 18.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
4
+ <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
5
+ viewBox="0 0 22 22" enable-background="new 0 0 22 22" xml:space="preserve">
6
+ <path fill="#C9E5CB" d="M11,0C4.9,0,0,4.9,0,11c0,6.1,4.9,11,11,11c6.1,0,11-4.9,11-11C22,4.9,17.1,0,11,0z M16.9,8.2l-7,7
7
+ c-0.2,0.2-0.5,0.3-0.8,0.3c-0.3,0-0.6-0.1-0.8-0.3l-3.3-3.3c-0.4-0.4-0.4-1.1,0-1.6c0.4-0.4,1.1-0.4,1.6,0l2.5,2.5l6.2-6.2
8
+ c0.4-0.4,1.1-0.4,1.6,0C17.4,7.1,17.4,7.8,16.9,8.2z"/>
9
+ </svg>
@@ -0,0 +1,13 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 18.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
4
+ <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
5
+ viewBox="0 0 20 40" enable-background="new 0 0 20 40" xml:space="preserve">
6
+ <path fill="#CCCCCC" d="M14.5,20h-9c-3,0-5.5-2.5-5.5-5.5v-9C0,2.5,2.5,0,5.5,0h9c3,0,5.5,2.5,5.5,5.5v9C20,17.5,17.5,20,14.5,20z
7
+ M5.5,2C3.6,2,2,3.6,2,5.5v9C2,16.4,3.6,18,5.5,18h9c1.9,0,3.5-1.6,3.5-3.5v-9C18,3.6,16.4,2,14.5,2H5.5z"/>
8
+ <path fill="#CCCCCC" d="M18,29.1v5.4c0,1.9-1.6,3.5-3.5,3.5h-9C3.6,38,2,36.4,2,34.5v-9C2,23.6,3.6,22,5.5,22h8.3l1.6-1.9
9
+ c-0.3,0-0.6-0.1-0.9-0.1h-9c-3,0-5.5,2.5-5.5,5.5v9c0,3,2.5,5.5,5.5,5.5h9c3,0,5.5-2.5,5.5-5.5v-7.8L18,29.1z"/>
10
+ <path fill="#33A8E0" d="M19.4,21.2c-0.6-0.5-1.6-0.3-2.1,0.3L10,30.3l-2.4-2.6c-0.5-0.6-1.5-0.6-2.1-0.2c-0.3,0.3-0.5,0.6-0.5,1
11
+ c0,0.4,0.1,0.8,0.4,1.1L9,33.5c0.3,0.3,0.7,0.5,1.1,0.5c0,0,0,0,0,0c0.5,0,0.9-0.2,1.2-0.6l8.4-10.2c0.3-0.3,0.4-0.7,0.3-1.1
12
+ C19.9,21.8,19.7,21.5,19.4,21.2z"/>
13
+ </svg>
@@ -0,0 +1,20 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 18.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
4
+ <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
5
+ viewBox="0 0 20 21" enable-background="new 0 0 20 21" xml:space="preserve">
6
+ <g>
7
+ <g>
8
+ <path fill="#999999" d="M17.7,1.4h-1.8v1.7c0,0.6-0.5,1.2-1.2,1.2c-0.6,0-1.2-0.5-1.2-1.2V1.4H6.4v1.7c0,0.6-0.5,1.2-1.2,1.2
9
+ c-0.6,0-1.2-0.5-1.2-1.2V1.4H2.3C1,1.4,0,2.5,0,3.7v15C0,20,1,21,2.3,21h15.5c1.2,0,2.3-1,2.3-2.3v-15C20,2.5,19,1.4,17.7,1.4z
10
+ M18.5,18.7c0,0.4-0.4,0.8-0.8,0.8H2.3c-0.4,0-0.8-0.4-0.8-0.8V7.1h17.1V18.7z M5.3,3.6c0.2,0,0.4-0.2,0.4-0.4V0.4
11
+ C5.7,0.2,5.5,0,5.3,0C5,0,4.8,0.2,4.8,0.4v2.7C4.8,3.4,5,3.6,5.3,3.6z M14.7,3.6c0.2,0,0.4-0.2,0.4-0.4V0.4C15.2,0.2,15,0,14.7,0
12
+ c-0.2,0-0.4,0.2-0.4,0.4v2.7C14.3,3.4,14.5,3.6,14.7,3.6z M9.2,16.4c0.5-0.4,0.8-0.9,0.8-1.6c0-0.5-0.2-0.9-0.5-1.2
13
+ c-0.3-0.3-0.7-0.5-1.3-0.5v0c0.5-0.1,0.9-0.3,1.2-0.7c0.3-0.3,0.4-0.7,0.4-1.2c0-0.5-0.2-1-0.7-1.3c-0.4-0.3-1-0.5-1.8-0.5
14
+ c-0.9,0-1.7,0.2-2.4,0.7l0.7,1.1c0.3-0.2,0.6-0.3,0.8-0.4c0.2-0.1,0.5-0.1,0.7-0.1c0.7,0,1,0.3,1,0.8c0,0.4-0.1,0.6-0.4,0.8
15
+ c-0.3,0.1-0.7,0.2-1.2,0.2H6.1v1.2h0.5c0.6,0,1.1,0.1,1.3,0.2c0.3,0.1,0.4,0.4,0.4,0.7c0,0.4-0.1,0.7-0.4,0.8
16
+ c-0.2,0.2-0.6,0.3-1.1,0.3c-0.3,0-0.7,0-1-0.1c-0.3-0.1-0.6-0.2-0.9-0.4v1.3C5.6,16.9,6.2,17,7,17C8,17,8.7,16.8,9.2,16.4z
17
+ M12.5,11.7c0.1-0.1,0.3-0.2,0.5-0.5l0,0.8l0,0.7v4.2h1.5V9.6h-1.3l-2.3,1.9l0.7,0.9L12.5,11.7z"/>
18
+ </g>
19
+ </g>
20
+ </svg>
@@ -0,0 +1,13 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 18.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
4
+ <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
5
+ viewBox="0 0 15 15" enable-background="new 0 0 15 15" xml:space="preserve">
6
+ <g>
7
+ <g>
8
+ <path fill="#999999" d="M11.5,5.8C11.5,2.6,8.9,0,5.8,0C2.6,0,0,2.6,0,5.8c0,3.2,2.6,5.8,5.8,5.8C8.9,11.6,11.5,9,11.5,5.8z
9
+ M5.8,9.7c-2.1,0-3.8-1.7-3.8-3.9c0-2.1,1.7-3.9,3.8-3.9s3.8,1.7,3.8,3.9C9.6,7.9,7.9,9.7,5.8,9.7z M14.6,12.5l-2.8-2.9
10
+ c-0.5,0.9-1.2,1.6-2.1,2.2l2.8,2.9c0.5,0.5,1.3,0.5,1.8,0l0.4-0.4C15.1,13.8,15.1,13,14.6,12.5z"/>
11
+ </g>
12
+ </g>
13
+ </svg>
@@ -0,0 +1,12 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 18.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
4
+ <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
5
+ viewBox="0 0 20 40" enable-background="new 0 0 20 40" xml:space="preserve">
6
+ <path fill="#CCCCCC" d="M10,20C4.5,20,0,15.5,0,10C0,4.5,4.5,0,10,0c5.5,0,10,4.5,10,10C20,15.5,15.5,20,10,20z M10,2
7
+ c-4.4,0-8,3.6-8,8c0,4.4,3.6,8,8,8s8-3.6,8-8C18,5.6,14.4,2,10,2z"/>
8
+ <path fill="#CCCCCC" d="M10,40C4.5,40,0,35.5,0,30c0-5.5,4.5-10,10-10c5.5,0,10,4.5,10,10C20,35.5,15.5,40,10,40z M10,22
9
+ c-4.4,0-8,3.6-8,8c0,4.4,3.6,8,8,8s8-3.6,8-8C18,25.6,14.4,22,10,22z"/>
10
+ <path fill-rule="evenodd" clip-rule="evenodd" fill="#33A8E0" d="M10,25c2.8,0,5,2.2,5,5c0,2.8-2.2,5-5,5c-2.8,0-5-2.2-5-5
11
+ C5,27.2,7.2,25,10,25z"/>
12
+ </svg>
@@ -0,0 +1,24 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 18.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
4
+ <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
5
+ viewBox="0 0 12 23" enable-background="new 0 0 12 23" xml:space="preserve">
6
+ <g>
7
+ <g>
8
+ <path fill="#666766" d="M11.8,0.2c-0.3-0.3-0.8-0.3-1.1,0L5.9,5L1.3,0.2C1-0.1,0.5-0.1,0.2,0.2s-0.3,0.8,0,1.2l5.2,5.3
9
+ C5.5,6.9,5.7,7,5.9,7c0.2,0,0.4-0.1,0.6-0.2l5.2-5.3C12.1,1.1,12.1,0.6,11.8,0.2z"/>
10
+ </g>
11
+ </g>
12
+ <g>
13
+ <g>
14
+ <path fill="#33A9E0" d="M11.8,8.2c-0.3-0.3-0.8-0.3-1.1,0L5.9,13L1.3,8.2C1,7.9,0.5,7.9,0.2,8.2c-0.3,0.3-0.3,0.8,0,1.2l5.2,5.3
15
+ C5.5,14.9,5.7,15,5.9,15c0.2,0,0.4-0.1,0.6-0.2l5.2-5.3C12.1,9.1,12.1,8.6,11.8,8.2z"/>
16
+ </g>
17
+ </g>
18
+ <g>
19
+ <g>
20
+ <path fill="#FFFFFF" d="M11.8,16.2c-0.3-0.3-0.8-0.3-1.1,0L5.9,21l-4.6-4.8c-0.3-0.3-0.8-0.3-1.1,0c-0.3,0.3-0.3,0.8,0,1.2
21
+ l5.2,5.3C5.5,22.9,5.7,23,5.9,23c0.2,0,0.4-0.1,0.6-0.2l5.2-5.3C12.1,17.1,12.1,16.6,11.8,16.2z"/>
22
+ </g>
23
+ </g>
24
+ </svg>
@@ -0,0 +1,9 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 18.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
4
+ <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
5
+ viewBox="301 391 10 10" enable-background="new 301 391 10 10" xml:space="preserve">
6
+ <path enable-background="new " d="M307.3,396l3.4-3.4c0.4-0.4,0.4-0.9,0-1.3c-0.4-0.4-0.9-0.4-1.3,0l-3.4,3.4l-3.4-3.4
7
+ c-0.4-0.4-0.9-0.4-1.3,0s-0.4,0.9,0,1.3l3.4,3.4l-3.4,3.4c-0.4,0.4-0.4,0.9,0,1.3s0.9,0.4,1.3,0l3.4-3.4l3.4,3.4
8
+ c0.4,0.4,0.9,0.4,1.3,0s0.4-0.9,0-1.3L307.3,396z"/>
9
+ </svg>
@@ -0,0 +1,11 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 18.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
4
+ <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
5
+ viewBox="0 0 25 20" enable-background="new 0 0 25 20" xml:space="preserve">
6
+ <g>
7
+ <g>
8
+ <path fill="#999999" d="M20,5.1V0H0v14.9h5V20h20V5.1H20z M5,12.5H2.5v-10h15v2.6H5V12.5z M22.5,17.5h-15v-10h15V17.5z"/>
9
+ </g>
10
+ </g>
11
+ </svg>
@@ -0,0 +1,11 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 18.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
4
+ <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
5
+ viewBox="0 0 25 20" enable-background="new 0 0 25 20" xml:space="preserve">
6
+ <g>
7
+ <g>
8
+ <path fill="#FFFFFF" d="M20,5.1V0H0v14.9h5V20h20V5.1H20z M5,13H2V2h16v3L5,5.1L5,13z M23,18H7V7h16V18z"/>
9
+ </g>
10
+ </g>
11
+ </svg>
@@ -0,0 +1,12 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 18.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
4
+ <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
5
+ viewBox="0 0 25 20" enable-background="new 0 0 25 20" xml:space="preserve">
6
+ <g>
7
+ <g>
8
+ <path fill="#999999" d="M0,0v20h25V0H0z M22.9,17.8H2.1V2.2h20.8V17.8z M18.8,8.2l-1.7,0.6l-1.4-2.9L11,13.1l-2.5-1.7l-3.9,4.5H21
9
+ L18.8,8.2z M6.7,8.9c1.1,0,2-0.9,2-2.1c0-1.2-0.9-2.1-2-2.1c-1.1,0-2,0.9-2,2.1C4.7,8,5.6,8.9,6.7,8.9z"/>
10
+ </g>
11
+ </g>
12
+ </svg>
@@ -0,0 +1,14 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 18.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
4
+ <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
5
+ viewBox="0 0 24 24" enable-background="new 0 0 24 24" xml:space="preserve">
6
+ <circle fill="#CC4E53" cx="12" cy="12" r="12"/>
7
+ <g>
8
+ <g>
9
+ <path fill="#FFFFFF" d="M13.5,12l2.7-2.7c0.4-0.4,0.4-1.1,0-1.5c-0.4-0.4-1.1-0.4-1.5,0L12,10.5L9.3,7.8c-0.4-0.4-1.1-0.4-1.5,0
10
+ c-0.4,0.4-0.4,1.1,0,1.5l2.7,2.7l-2.7,2.7c-0.4,0.4-0.4,1.1,0,1.5c0.2,0.2,0.5,0.3,0.8,0.3c0.3,0,0.6-0.1,0.8-0.3l2.7-2.7l2.7,2.7
11
+ c0.2,0.2,0.5,0.3,0.8,0.3c0.3,0,0.6-0.1,0.8-0.3c0.4-0.4,0.4-1.1,0-1.5L13.5,12z"/>
12
+ </g>
13
+ </g>
14
+ </svg>
@@ -0,0 +1,15 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 18.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
4
+ <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
5
+ viewBox="0 0 32 24" enable-background="new 0 0 32 24" xml:space="preserve">
6
+ <g>
7
+ <g>
8
+ <path fill="#FFFFFF" d="M31.9,0.1C31.8,0,31.7,0,31.6,0L0.2,9.5C0.1,9.5,0,9.6,0,9.7C0,9.8,0.1,10,0.2,10l9.1,4.8
9
+ c0.1,0.1,0.2,0,0.3,0L25,5.3L12.1,15.9C12.1,16,12,16.1,12,16.2c0,0.1,0.1,0.2,0.2,0.2l10.1,5.2c0,0,0.1,0,0.1,0
10
+ c0.1,0,0.1,0,0.2,0c0.1,0,0.1-0.1,0.2-0.2l9.2-21C32,0.3,32,0.2,31.9,0.1z M14.9,19.3l-2.8-1.4c-0.1,0-0.2,0-0.3,0
11
+ c-0.1,0-0.1,0.1-0.2,0.2l-1,5.6c0,0.1,0,0.3,0.2,0.3c0,0,0.1,0,0.1,0c0.1,0,0.2,0,0.3-0.1l3.8-4.1c0.1-0.1,0.1-0.2,0.1-0.3
12
+ C15.1,19.4,15,19.4,14.9,19.3z"/>
13
+ </g>
14
+ </g>
15
+ </svg>
@@ -0,0 +1,16 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 18.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
4
+ <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
5
+ viewBox="0 0 21 30" enable-background="new 0 0 21 30" xml:space="preserve">
6
+ <g>
7
+ <g>
8
+ <path fill="#FFFFFF" d="M6.1,15l0.2-0.5l1.6-4.7C8.3,8.7,9.3,8,10.5,8s2.2,0.7,2.6,1.8l1.6,4.7l0.2,0.5l0.9,0l1.1,0v-14
9
+ c0-0.3-0.1-0.5-0.3-0.7C16.3,0.1,16,0,15.8,0H5.2C4.7,0,4.2,0.5,4.2,1.1v14l1.1,0L6.1,15z M21,17.6c-0.1-0.3-0.3-0.4-0.6-0.4
10
+ l-3.6-0.1l-1.1,0l-1.1,0l-0.9,0l-0.4,0l-0.2-0.6l-2.1-5.9c-0.1-0.3-0.3-0.4-0.6-0.4c-0.3,0-0.5,0.2-0.6,0.4l-2.1,5.9l-0.2,0.6
11
+ l-0.4,0l-0.9,0l-1.1,0l-1.1,0l-3.6,0.1c-0.3,0-0.5,0.2-0.6,0.4c-0.1,0.3,0,0.5,0.2,0.7l5.6,4.2l-2,6.6c-0.1,0.3,0,0.5,0.2,0.7
12
+ c0.1,0,0.1,0.1,0.2,0.1c0,0,0,0,0.1,0c0,0,0.1,0,0.1,0c0,0,0,0,0,0c0,0,0.1,0,0.1,0c0,0,0,0,0.1,0c0.1,0,0.1,0,0.2-0.1l5.7-4
13
+ l5.7,4c0.1,0.1,0.2,0.1,0.4,0.1c0.1,0,0.3,0,0.4-0.1c0.2-0.2,0.3-0.4,0.2-0.7l-2-6.6l5.6-4.2C21,18.2,21.1,17.9,21,17.6z"/>
14
+ </g>
15
+ </g>
16
+ </svg>
@@ -0,0 +1,15 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 18.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
4
+ <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
5
+ viewBox="0 0 12 18" enable-background="new 0 0 12 18" xml:space="preserve">
6
+ <g>
7
+ <g>
8
+ <path fill="#9C2A2D" d="M7.5,13.5l2.7-2.7c0.4-0.4,0.4-1.1,0-1.5c-0.4-0.4-1.1-0.4-1.5,0L6,12L3.3,9.3c-0.4-0.4-1.1-0.4-1.5,0
9
+ c-0.4,0.4-0.4,1.1,0,1.5l2.7,2.7l-2.7,2.7c-0.4,0.4-0.4,1.1,0,1.5C2,17.9,2.3,18,2.6,18c0.3,0,0.5-0.1,0.8-0.3L6,15l2.7,2.7
10
+ C8.9,17.9,9.2,18,9.4,18c0.3,0,0.6-0.1,0.8-0.3c0.4-0.4,0.4-1.1,0-1.5L7.5,13.5z"/>
11
+ </g>
12
+ </g>
13
+ <path fill="#44AD5F" d="M4.2,9L4.2,9C3.9,9,3.7,8.9,3.5,8.7L0.3,5.5c-0.4-0.4-0.4-1.1,0-1.5c0.4-0.4,1.1-0.4,1.5,0l2.4,2.4l6-6.1
14
+ c0.4-0.4,1.1-0.4,1.5,0c0.4,0.4,0.4,1.1,0,1.5L5,8.7C4.8,8.9,4.5,9,4.2,9z"/>
15
+ </svg>
@@ -0,0 +1,9 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 18.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
4
+ <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
5
+ viewBox="0 0 22 19" enable-background="new 0 0 22 19" xml:space="preserve">
6
+ <path fill="#FFFFFF" d="M21.1,0.4c-0.9-0.7-2.4-0.5-3.1,0.4L7.4,13.6L3.9,9.8C3.2,9,1.7,8.9,0.8,9.6C0.3,9.9,0.1,10.4,0,11
7
+ c0,0.6,0.1,1.1,0.5,1.5l5.3,5.7c0.4,0.5,1,0.7,1.7,0.7c0,0,0,0,0.1,0c0.7,0,1.3-0.3,1.7-0.8L21.5,3.4c0.4-0.4,0.5-1,0.5-1.6
8
+ C21.9,1.2,21.6,0.7,21.1,0.4z"/>
9
+ </svg>
@@ -0,0 +1,9 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 18.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
4
+ <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
5
+ viewBox="0 0 24 24" enable-background="new 0 0 24 24" xml:space="preserve">
6
+ <circle fill="#44AD5F" cx="12" cy="12" r="12"/>
7
+ <path fill="#FFFFFF" d="M10.2,16.5L10.2,16.5c-0.3,0-0.6-0.1-0.8-0.3L6.2,13c-0.4-0.4-0.4-1.1,0-1.5c0.4-0.4,1.1-0.4,1.5,0l2.4,2.4
8
+ l6.1-6.1c0.4-0.4,1.1-0.4,1.5,0c0.4,0.4,0.4,1.1,0,1.5l-6.9,6.9C10.7,16.4,10.5,16.5,10.2,16.5z"/>
9
+ </svg>
@@ -0,0 +1,23 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 18.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
4
+ <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
5
+ viewBox="289 0 34 68" enable-background="new 289 0 34 68" xml:space="preserve">
6
+ <linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="16.9957" y1="789.0808" x2="16.9957" y2="792" gradientTransform="matrix(11.6471 0 0 -11.6471 108 9224.4707)">
7
+ <stop offset="0" style="stop-color:#FFFFFF;stop-opacity:0"/>
8
+ <stop offset="0.8402" style="stop-color:#34A6DE"/>
9
+ </linearGradient>
10
+ <path fill="url(#SVGID_1_)" d="M305.6,0C296.4,0,289,7.6,289,17c0,6.4,3.4,11.9,8.5,14.8l0.7-1.2c-4.7-2.7-7.8-7.8-7.8-13.6
11
+ c0-8.6,6.8-15.6,15.2-15.6c8.4,0,15.9,7,15.9,15.6S314,32.5,307,32.6V34c7-0.1,15.9-7.6,15.9-17S314.8,0,305.6,0z"/>
12
+ <path fill="#34A6DE" d="M307,0v1.4c7,0.1,14.5,7,14.5,15.6s-7.1,15.5-15.4,15.6c-0.4,0-0.8,0.3-0.8,0.7s0.2,0.7,0.6,0.7
13
+ c9.1-0.1,17.1-7.6,17.1-17C322.9,7.7,314,0.1,307,0z"/>
14
+ <path fill="#CCCCCC" d="M315.5,44.8l-0.2-0.6l-0.6,0.2c-0.1,0.1-1.9,0.7-6.6,2.5c-0.5-0.5-1.5-1.3-3-1.4c-0.1,0-0.2,0-0.3,0
15
+ c0.1-0.5,0.2-1.2,0.4-2.1l0.1-0.6l-0.6-0.1c0,0,0,0-0.1,0c-0.1,0-0.2,0-0.3,0c-0.7,0-1.9,0.2-2.9,1.5c-0.5-0.4-1.2-0.9-2.3-1
16
+ c-0.8-0.1-1.6,0-2.5,0.3l-1.1,0.4l0.5,0.3l0.4,0.3c1.8,1.4,2.8,3.5,3,5.8c0.1,2.1-0.6,4.1-1.9,5.6c-0.5,0.5-1,0.9-1.5,1.3l-0.2,0.1
17
+ l-0.2,0.1l-0.8,0.5c0.1,0.2,0.2,0.3,0.3,0.5c0.1,0.2,0.2,0.3,0.4,0.5V59h0.1c0.3-0.2,0.7-0.4,1-0.6c0.6-0.4,1.2-1,1.7-1.5
18
+ c1.6-1.8,2.4-4.1,2.2-6.6c-0.1-2.2-1-4.3-2.5-5.9c0.3,0,0.6,0,0.8,0c1.4,0.2,2,1.1,2,1.2l0.6,1.1l0.5-1.1c0.5-1.1,1.2-1.4,1.8-1.5
19
+ c-0.5,2.4-0.4,2.4-0.2,2.7l0.2,0.2h0.6c0.2,0,0.4,0,0.6,0c1.5,0.2,2.4,1.3,2.5,1.3l0.3,0.3l0.4-0.2c3.5-1.3,5.5-2.1,6.3-2.4
20
+ c1.3,4.3-1.2,7.8-3.3,8.8c-3.7,1.8-4,4.1-4.2,6.8c0,0.3,0,0.6,0,1s0,0.8,0,1.2v0.1h0.1c0.2,0,0.4,0,0.5-0.1c0.2,0,0.5-0.1,0.7-0.1
21
+ c0-0.3,0-0.7,0-0.7c0-0.1,0-0.2,0-0.2c0-0.1,0-0.2,0-0.3c0-0.3,0-0.5,0-0.8c0.1-2.4,0.4-4.2,3.4-5.6
22
+ C314.6,54.5,317.4,49.9,315.5,44.8z"/>
23
+ </svg>
@@ -0,0 +1,19 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 18.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
4
+ <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
5
+ viewBox="0 0 44 44" enable-background="new 0 0 44 44" xml:space="preserve">
6
+ <g>
7
+ <path fill="#FFFFFF" d="M29.6,14.5c0,0-1.1-1.5-2.9-1.3c0,0-0.1,0.1,0.5-2.2c0,0-1.6-0.4-2.5,1.3c0,0-0.9-1.9-3.6-1.1c0,0,0,0,0,0
8
+ c1.4,1.2,2.2,2.9,2.2,4.9c0,3.6-2.8,6.4-6.3,6.4c-2.8,0-5.3-1.5-5.6-5.1c-0.2,0.3-1.2,1.3-1.4,5.7c-0.2,4,0.1,8.3,0.1,8.3
9
+ c0,0.4,0.3,0.7,0.7,0.7l3.2,0c-0.1-0.9-0.6-1.7-1.5-1.8c0,0-0.1-0.9,0.4-1.2c0.2,0.5,2.5,4,7.1,3.7c4.9-0.3,6.4-4.6,6.4-4.8
10
+ c0,0.5,0.1,3.4,0.1,3.4h0c0,0,0,0,0,0c0,0.4,0.3,0.7,0.7,0.7h3.2c0-1-0.5-1.6-1.4-1.8c-0.3-3.1-0.2-4.3-0.1-5.3
11
+ c0.2-1.9,0.5-3.5,3.2-4.6c2.2-0.9,4.2-4,3.1-7.6C35.1,12.8,33.7,13.2,29.6,14.5z"/>
12
+ <path fill="#33A8E0" d="M39,0H5C2.2,0,0,2.2,0,5V39c0,2.7,2.2,5,5,5H39c2.7,0,5-2.2,5-5V5C44,2.2,41.8,0,39,0z M32,20.4
13
+ c-2.6,1.1-3,2.6-3.2,4.6c-0.1,1-0.2,2.2,0.1,5.3c0.9,0.2,1.3,0.9,1.4,1.8h-3.2c-0.4,0-0.7-0.3-0.7-0.7c0,0,0,0,0,0h0
14
+ c0,0-0.1-3-0.1-3.4c0,0.2-1.5,4.4-6.4,4.8C15.3,33,13,29.5,12.8,29c-0.5,0.3-0.4,1.2-0.4,1.2c0.9,0.2,1.3,0.9,1.5,1.8l-3.2,0
15
+ c-0.4,0-0.7-0.3-0.7-0.7c0,0-0.3-4.3-0.1-8.3c0.2-4.4,1.2-5.4,1.4-5.7c0.3,3.6,2.9,5.1,5.6,5.1c3.5,0,6.3-2.9,6.3-6.4
16
+ c0-2-0.9-3.7-2.2-4.9c0,0,0,0,0,0c2.7-0.7,3.6,1.1,3.6,1.1c0.9-1.7,2.5-1.3,2.5-1.3c-0.6,2.3-0.5,2.2-0.5,2.2
17
+ c1.8-0.1,2.9,1.3,2.9,1.3c4.1-1.3,5.5-1.7,5.5-1.7C36.3,16.4,34.2,19.5,32,20.4z"/>
18
+ </g>
19
+ </svg>
@@ -0,0 +1,20 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 18.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
4
+ <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
5
+ viewBox="0 0 10 20" enable-background="new 0 0 10 20" xml:space="preserve">
6
+ <g>
7
+ <g>
8
+ <path fill="#33A8E0" d="M10,13.8c0-0.1-0.2-0.2-0.3-0.2l-3.3-0.1l-1.1-3.3C5.2,10.1,5.1,10,5,10c-0.1,0-0.2,0.1-0.3,0.2l-1.1,3.3
9
+ l-3.3,0.1c-0.1,0-0.2,0.1-0.3,0.2c0,0.1,0,0.3,0.1,0.4l2.7,2.1l-1,3.3c0,0.1,0,0.3,0.1,0.3C2,20,2.2,20,2.3,19.9L5,18l2.7,2
10
+ c0,0,0.1,0.1,0.2,0.1C8,20,8,20,8.1,19.9c0.1-0.1,0.1-0.2,0.1-0.3l-1-3.3l2.7-2.1C10,14.1,10,13.9,10,13.8z"/>
11
+ </g>
12
+ </g>
13
+ <g>
14
+ <g>
15
+ <path fill="#CCCCCC" d="M10,3.8c0-0.1-0.2-0.2-0.3-0.2L6.4,3.5L5.3,0.2C5.2,0.1,5.1,0,5,0C4.9,0,4.8,0.1,4.7,0.2L3.6,3.5L0.3,3.6
16
+ C0.2,3.6,0.1,3.7,0,3.8c0,0.1,0,0.3,0.1,0.4l2.7,2.1l-1,3.3c0,0.1,0,0.3,0.1,0.3C2,10,2.2,10,2.3,9.9L5,8l2.7,2
17
+ c0,0,0.1,0.1,0.2,0.1C8,10,8,10,8.1,9.9c0.1-0.1,0.1-0.2,0.1-0.3l-1-3.3l2.7-2.1C10,4.1,10,3.9,10,3.8z"/>
18
+ </g>
19
+ </g>
20
+ </svg>