ufo 5.0.7 → 6.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (457) hide show
  1. checksums.yaml +4 -4
  2. data/.cody/README.md +19 -0
  3. data/.cody/acceptance/bin/build.sh +90 -0
  4. data/.cody/acceptance/buildspec.yml +10 -0
  5. data/.cody/acceptance/project.rb +11 -0
  6. data/.cody/acceptance/role.rb +28 -0
  7. data/.cody/shared/script/install/ufo.sh +40 -0
  8. data/.cody/shared/script/install.sh +5 -0
  9. data/.github/workflows/main.yml +28 -0
  10. data/CHANGELOG.md +4 -1
  11. data/Gemfile +0 -2
  12. data/README.md +1 -32
  13. data/lib/templates/docker/Dockerfile +4 -0
  14. data/lib/templates/helper/%underscore_name%_helper.rb.tt +6 -0
  15. data/lib/templates/init/.ufo/config/web/base.rb +6 -0
  16. data/lib/templates/init/.ufo/config/web/dev.rb +6 -0
  17. data/lib/templates/init/.ufo/config/web/prod.rb +6 -0
  18. data/lib/templates/init/.ufo/config.rb.tt +39 -0
  19. data/lib/templates/init/.ufo/resources/iam_roles/execution_role.rb +23 -0
  20. data/lib/templates/init/.ufo/resources/iam_roles/task_role.rb +20 -0
  21. data/lib/templates/init/.ufo/resources/task_definitions/web.yml +29 -0
  22. data/lib/templates/init/.ufo/vars/base.rb +20 -0
  23. data/lib/templates/init/.ufo/vars/dev.rb +4 -0
  24. data/lib/templates/init/.ufo/vars/prod.rb +4 -0
  25. data/lib/ufo/aws_services.rb +118 -0
  26. data/lib/ufo/booter.rb +27 -0
  27. data/lib/ufo/cfn/base.rb +7 -0
  28. data/lib/ufo/cfn/deploy.rb +54 -0
  29. data/lib/ufo/{stack → cfn/stack}/builder/base.rb +12 -23
  30. data/lib/ufo/cfn/stack/builder/conditions.rb +25 -0
  31. data/lib/ufo/{stack → cfn/stack}/builder/outputs.rb +2 -2
  32. data/lib/ufo/cfn/stack/builder/parameters.rb +34 -0
  33. data/lib/ufo/cfn/stack/builder/resources/base.rb +4 -0
  34. data/lib/ufo/cfn/stack/builder/resources/dns.rb +47 -0
  35. data/lib/ufo/{stack/builder/resources/ecs.rb → cfn/stack/builder/resources/ecs_service.rb} +11 -10
  36. data/lib/ufo/cfn/stack/builder/resources/elb.rb +35 -0
  37. data/lib/ufo/cfn/stack/builder/resources/iam_roles/base.rb +32 -0
  38. data/lib/ufo/cfn/stack/builder/resources/iam_roles/execution_role.rb +4 -0
  39. data/lib/ufo/cfn/stack/builder/resources/iam_roles/task_role.rb +4 -0
  40. data/lib/ufo/cfn/stack/builder/resources/listener.rb +65 -0
  41. data/lib/ufo/cfn/stack/builder/resources/listener_ssl.rb +44 -0
  42. data/lib/ufo/cfn/stack/builder/resources/scaling/base.rb +5 -0
  43. data/lib/ufo/cfn/stack/builder/resources/scaling/policy.rb +27 -0
  44. data/lib/ufo/cfn/stack/builder/resources/scaling/role.rb +33 -0
  45. data/lib/ufo/cfn/stack/builder/resources/scaling/target.rb +22 -0
  46. data/lib/ufo/cfn/stack/builder/resources/security_group/base.rb +4 -0
  47. data/lib/ufo/{stack → cfn/stack}/builder/resources/security_group/ecs.rb +4 -4
  48. data/lib/ufo/{stack → cfn/stack}/builder/resources/security_group/ecs_rule.rb +2 -2
  49. data/lib/ufo/{stack → cfn/stack}/builder/resources/security_group/elb.rb +5 -6
  50. data/lib/ufo/{stack → cfn/stack}/builder/resources/target_group.rb +4 -4
  51. data/lib/ufo/{stack → cfn/stack}/builder/resources/task_definition/reconstructor.rb +4 -4
  52. data/lib/ufo/{stack → cfn/stack}/builder/resources/task_definition.rb +4 -4
  53. data/lib/ufo/cfn/stack/builder/resources.rb +24 -0
  54. data/lib/ufo/cfn/stack/builder.rb +30 -0
  55. data/lib/ufo/{stack → cfn/stack}/custom_properties.rb +21 -5
  56. data/lib/ufo/cfn/stack/params.rb +51 -0
  57. data/lib/ufo/{stack → cfn/stack}/status.rb +2 -2
  58. data/lib/ufo/cfn/stack/template.rb +8 -0
  59. data/lib/ufo/cfn/stack/vars.rb +110 -0
  60. data/lib/ufo/cfn/stack/vpc.rb +31 -0
  61. data/lib/ufo/cfn/stack.rb +175 -0
  62. data/lib/ufo/cli/base.rb +18 -0
  63. data/lib/ufo/cli/build.rb +30 -0
  64. data/lib/ufo/cli/cancel.rb +18 -0
  65. data/lib/ufo/cli/central/update.rb +80 -0
  66. data/lib/ufo/cli/central.rb +12 -0
  67. data/lib/ufo/cli/clean.rb +17 -0
  68. data/lib/ufo/cli/destroy.rb +31 -0
  69. data/lib/ufo/{docker.rb → cli/docker.rb} +18 -18
  70. data/lib/ufo/cli/exec.rb +82 -0
  71. data/lib/ufo/cli/help/central/update.md +20 -0
  72. data/lib/ufo/{help → cli/help}/completion.md +0 -0
  73. data/lib/ufo/{help → cli/help}/completion_script.md +0 -0
  74. data/lib/ufo/cli/help/destroy.md +9 -0
  75. data/lib/ufo/cli/help/docker/base.md +39 -0
  76. data/lib/ufo/{help → cli/help}/docker/build.md +9 -9
  77. data/lib/ufo/{help → cli/help}/docker/clean.md +8 -8
  78. data/lib/ufo/{help → cli/help}/docker/compile.md +0 -0
  79. data/lib/ufo/cli/help/docker/name.md +16 -0
  80. data/lib/ufo/{help → cli/help}/docker/push.md +0 -0
  81. data/lib/ufo/cli/help/docker.md +6 -0
  82. data/lib/ufo/{help → cli/help}/help.md +1 -1
  83. data/lib/ufo/cli/help/init.md +27 -0
  84. data/lib/ufo/{help → cli/help}/logs.md +5 -4
  85. data/lib/ufo/cli/help/ps.md +12 -0
  86. data/lib/ufo/cli/help/releases.md +15 -0
  87. data/lib/ufo/cli/help/rollback.md +40 -0
  88. data/lib/ufo/cli/help/scale.md +7 -0
  89. data/lib/ufo/cli/help/ship.md +41 -0
  90. data/lib/ufo/cli/help/stop.md +3 -0
  91. data/lib/ufo/cli/help.rb +62 -0
  92. data/lib/ufo/{logs.rb → cli/logs.rb} +13 -6
  93. data/lib/ufo/cli/new/concerns.rb +16 -0
  94. data/lib/ufo/cli/new/helper.rb +24 -0
  95. data/lib/ufo/cli/new/init.rb +68 -0
  96. data/lib/ufo/{sequence.rb → cli/new/sequence.rb} +26 -4
  97. data/lib/ufo/cli/new.rb +10 -0
  98. data/lib/ufo/cli/opts.rb +35 -0
  99. data/lib/ufo/{ps → cli/ps}/task.rb +22 -29
  100. data/lib/ufo/cli/ps.rb +190 -0
  101. data/lib/ufo/{releases.rb → cli/releases.rb} +4 -4
  102. data/lib/ufo/{rollback.rb → cli/rollback.rb} +24 -12
  103. data/lib/ufo/cli/scale.rb +76 -0
  104. data/lib/ufo/cli/ship.rb +28 -0
  105. data/lib/ufo/cli/status.rb +8 -0
  106. data/lib/ufo/cli/stop.rb +49 -0
  107. data/lib/ufo/{tasks.rb → cli/tasks.rb} +2 -2
  108. data/lib/ufo/{upgrade.rb → cli/upgrade.rb} +2 -2
  109. data/lib/ufo/cli.rb +82 -172
  110. data/lib/ufo/command.rb +56 -1
  111. data/lib/ufo/concerns/autoscaling.rb +11 -0
  112. data/lib/ufo/concerns/names.rb +9 -0
  113. data/lib/ufo/concerns.rb +26 -0
  114. data/lib/ufo/config/inits.rb +13 -0
  115. data/lib/ufo/config.rb +187 -0
  116. data/lib/ufo/core.rb +32 -44
  117. data/lib/ufo/docker/builder.rb +44 -40
  118. data/lib/ufo/docker/cleaner.rb +9 -12
  119. data/lib/ufo/docker/compiler.rb +10 -4
  120. data/lib/ufo/docker/concerns.rb +7 -0
  121. data/lib/ufo/docker/dockerfile.rb +13 -9
  122. data/lib/ufo/docker/pusher.rb +13 -25
  123. data/lib/ufo/docker/state.rb +63 -0
  124. data/lib/ufo/ecr/auth.rb +8 -7
  125. data/lib/ufo/ecr/cleaner.rb +10 -14
  126. data/lib/ufo/ext/core/module.rb +31 -0
  127. data/lib/ufo/ext/core/nil_class.rb +11 -0
  128. data/lib/ufo/ext.rb +2 -0
  129. data/lib/ufo/{role → iam_role}/builder.rb +1 -1
  130. data/lib/ufo/{role → iam_role}/dsl.rb +8 -2
  131. data/lib/ufo/{role → iam_role}/registry.rb +1 -1
  132. data/lib/ufo/info.rb +22 -4
  133. data/lib/ufo/layering/layer.rb +95 -0
  134. data/lib/ufo/layering.rb +23 -0
  135. data/lib/ufo/log_group.rb +18 -10
  136. data/lib/ufo/logger/formatter.rb +13 -0
  137. data/lib/ufo/logger.rb +32 -0
  138. data/lib/ufo/names.rb +69 -0
  139. data/lib/ufo/param.rb +2 -1
  140. data/lib/ufo/task_definition/builder.rb +7 -0
  141. data/lib/ufo/task_definition/context.rb +45 -0
  142. data/lib/ufo/task_definition/erb/base.rb +18 -0
  143. data/lib/ufo/task_definition/erb/json.rb +28 -0
  144. data/lib/ufo/task_definition/erb/yaml.rb +18 -0
  145. data/lib/ufo/task_definition/erb.rb +78 -0
  146. data/lib/ufo/task_definition/helpers/aws_data_helper.rb +18 -0
  147. data/lib/ufo/task_definition/helpers/core.rb +50 -0
  148. data/lib/ufo/task_definition/helpers/ssm/fetcher.rb +39 -0
  149. data/lib/ufo/task_definition/helpers/ssm.rb +8 -0
  150. data/lib/ufo/task_definition/helpers/stack_output.rb +23 -0
  151. data/lib/ufo/{dsl/helper → task_definition/helpers}/vars.rb +40 -19
  152. data/lib/ufo/task_definition/helpers/vpc.rb +48 -0
  153. data/lib/ufo/task_definition/helpers.rb +5 -0
  154. data/lib/ufo/task_definition.rb +19 -0
  155. data/lib/ufo/upgrade/upgrade3.rb +1 -1
  156. data/lib/ufo/upgrade/upgrade4.rb +3 -3
  157. data/lib/ufo/utils/execute.rb +30 -0
  158. data/lib/ufo/utils/logging.rb +7 -0
  159. data/lib/ufo/utils/pretty.rb +18 -0
  160. data/lib/ufo/utils/squeezer.rb +1 -1
  161. data/lib/ufo/utils/sure.rb +23 -0
  162. data/lib/ufo/version.rb +1 -1
  163. data/lib/ufo/yaml/loader.rb +48 -0
  164. data/lib/ufo/yaml/validator.rb +51 -0
  165. data/lib/ufo/yaml.rb +13 -0
  166. data/lib/ufo.rb +12 -2
  167. data/spec/spec_helper.rb +4 -26
  168. data/spec/{lib → ufo}/ecr_auth_spec.rb +0 -0
  169. data/spec/{lib → ufo}/ecr_cleaner_spec.rb +0 -2
  170. data/spec/{lib/role → ufo/iam_role}/builder_spec.rb +5 -5
  171. data/spec/{lib/role → ufo/iam_role}/dsl_spec.rb +3 -3
  172. data/spec/{lib → ufo}/logs_spec.rb +2 -2
  173. data/ufo.gemspec +9 -3
  174. metadata +244 -341
  175. data/.circleci/bin/commit_docs.sh +0 -26
  176. data/.circleci/config.yml +0 -78
  177. data/.gitmodules +0 -0
  178. data/docs/.gitignore +0 -5
  179. data/docs/CNAME +0 -1
  180. data/docs/Gemfile +0 -4
  181. data/docs/LICENSE +0 -21
  182. data/docs/README.md +0 -20
  183. data/docs/_config.yml +0 -75
  184. data/docs/_docs/aws-ecs-task-execution-role.md +0 -28
  185. data/docs/_docs/conventions.md +0 -47
  186. data/docs/_docs/extras/codebuild-iam-role.md +0 -46
  187. data/docs/_docs/extras/dockerfile-erb.md +0 -60
  188. data/docs/_docs/extras/ecs-network-mode.md +0 -37
  189. data/docs/_docs/extras/load-balancer.md +0 -83
  190. data/docs/_docs/extras/minimal-deploy-iam.md +0 -79
  191. data/docs/_docs/extras/notification-arns.md +0 -21
  192. data/docs/_docs/extras/redirection-support.md +0 -27
  193. data/docs/_docs/extras/route53-support.md +0 -27
  194. data/docs/_docs/extras/security-groups.md +0 -36
  195. data/docs/_docs/extras/ssl-support.md +0 -20
  196. data/docs/_docs/faq.md +0 -100
  197. data/docs/_docs/fargate.md +0 -5
  198. data/docs/_docs/helpers.md +0 -24
  199. data/docs/_docs/iam-roles.md +0 -112
  200. data/docs/_docs/install.md +0 -25
  201. data/docs/_docs/more/auto-completion.md +0 -24
  202. data/docs/_docs/more/automated-cleanup.md +0 -14
  203. data/docs/_docs/more/customize-cloudformation.md +0 -35
  204. data/docs/_docs/more/migrations.md +0 -25
  205. data/docs/_docs/more/run-in-pieces.md +0 -30
  206. data/docs/_docs/more/single-task.md +0 -25
  207. data/docs/_docs/more/stuck-cloudformation.md +0 -29
  208. data/docs/_docs/more/why-cloudformation.md +0 -21
  209. data/docs/_docs/next-steps.md +0 -16
  210. data/docs/_docs/quick-start-ec2.md +0 -86
  211. data/docs/_docs/secrets.md +0 -135
  212. data/docs/_docs/settings/aws_profile.md +0 -36
  213. data/docs/_docs/settings/cfn.md +0 -12
  214. data/docs/_docs/settings/cluster.md +0 -66
  215. data/docs/_docs/settings/manage-security-groups.md +0 -24
  216. data/docs/_docs/settings/network.md +0 -45
  217. data/docs/_docs/settings.md +0 -55
  218. data/docs/_docs/ssl_errors.md +0 -40
  219. data/docs/_docs/structure.md +0 -41
  220. data/docs/_docs/tutorial-ufo-docker-build.md +0 -61
  221. data/docs/_docs/tutorial-ufo-init.md +0 -86
  222. data/docs/_docs/tutorial-ufo-ship.md +0 -95
  223. data/docs/_docs/tutorial-ufo-ships.md +0 -38
  224. data/docs/_docs/tutorial-ufo-tasks-build.md +0 -177
  225. data/docs/_docs/tutorial.md +0 -14
  226. data/docs/_docs/ufo-current.md +0 -49
  227. data/docs/_docs/ufo-env-extra.md +0 -22
  228. data/docs/_docs/ufo-env.md +0 -46
  229. data/docs/_docs/ufo-logs.md +0 -49
  230. data/docs/_docs/ufo-task-params.md +0 -43
  231. data/docs/_docs/ufo-tasks-register.md +0 -21
  232. data/docs/_docs/upgrading/upgrade4.5.md +0 -52
  233. data/docs/_docs/upgrading/upgrade4.md +0 -48
  234. data/docs/_docs/upgrading/upgrade5.md +0 -19
  235. data/docs/_docs/upgrading.md +0 -13
  236. data/docs/_docs/variables.md +0 -55
  237. data/docs/_includes/about.html +0 -19
  238. data/docs/_includes/banner/foot.html +0 -2
  239. data/docs/_includes/banner/head.html +0 -5
  240. data/docs/_includes/cfn-customize.md +0 -53
  241. data/docs/_includes/commands.html +0 -80
  242. data/docs/_includes/contact.html +0 -17
  243. data/docs/_includes/contact_disqus.html +0 -16
  244. data/docs/_includes/contact_static.html +0 -17
  245. data/docs/_includes/content.html +0 -26
  246. data/docs/_includes/css/bootstrap.min.css +0 -7
  247. data/docs/_includes/css/main.css +0 -501
  248. data/docs/_includes/css/quotes.css +0 -102
  249. data/docs/_includes/css/syntax.css +0 -65
  250. data/docs/_includes/css/table.css +0 -53
  251. data/docs/_includes/css/timeline.css +0 -201
  252. data/docs/_includes/css/ufo.css +0 -218
  253. data/docs/_includes/edit-on-github.html +0 -11
  254. data/docs/_includes/example.html +0 -63
  255. data/docs/_includes/footer.html +0 -44
  256. data/docs/_includes/google_analytics.html +0 -10
  257. data/docs/_includes/head.html +0 -32
  258. data/docs/_includes/header.html +0 -15
  259. data/docs/_includes/js.html +0 -32
  260. data/docs/_includes/js_disqus.html +0 -21
  261. data/docs/_includes/modals.html +0 -40
  262. data/docs/_includes/nav.html +0 -27
  263. data/docs/_includes/prev_next.md +0 -19
  264. data/docs/_includes/quotes.html +0 -19
  265. data/docs/_includes/reference.md +0 -5
  266. data/docs/_includes/repo_push_access.md +0 -11
  267. data/docs/_includes/subnav.html +0 -78
  268. data/docs/_includes/summary.html +0 -22
  269. data/docs/_includes/ufo-ship-options.md +0 -12
  270. data/docs/_includes/uses.html +0 -19
  271. data/docs/_layouts/default.html +0 -13
  272. data/docs/_layouts/style.css +0 -6
  273. data/docs/_reference/ufo-apps.md +0 -37
  274. data/docs/_reference/ufo-cancel.md +0 -24
  275. data/docs/_reference/ufo-completion.md +0 -46
  276. data/docs/_reference/ufo-completion_script.md +0 -27
  277. data/docs/_reference/ufo-current.md +0 -93
  278. data/docs/_reference/ufo-deploy.md +0 -76
  279. data/docs/_reference/ufo-destroy.md +0 -36
  280. data/docs/_reference/ufo-docker-base.md +0 -71
  281. data/docs/_reference/ufo-docker-build.md +0 -91
  282. data/docs/_reference/ufo-docker-clean.md +0 -44
  283. data/docs/_reference/ufo-docker-compile.md +0 -19
  284. data/docs/_reference/ufo-docker-help.md +0 -15
  285. data/docs/_reference/ufo-docker-name.md +0 -37
  286. data/docs/_reference/ufo-docker-push.md +0 -49
  287. data/docs/_reference/ufo-docker.md +0 -38
  288. data/docs/_reference/ufo-init.md +0 -125
  289. data/docs/_reference/ufo-logs.md +0 -40
  290. data/docs/_reference/ufo-network-help.md +0 -15
  291. data/docs/_reference/ufo-network-init.md +0 -39
  292. data/docs/_reference/ufo-network.md +0 -26
  293. data/docs/_reference/ufo-ps.md +0 -56
  294. data/docs/_reference/ufo-releases.md +0 -40
  295. data/docs/_reference/ufo-resources.md +0 -44
  296. data/docs/_reference/ufo-rollback.md +0 -61
  297. data/docs/_reference/ufo-scale.md +0 -50
  298. data/docs/_reference/ufo-ship.md +0 -129
  299. data/docs/_reference/ufo-ships.md +0 -68
  300. data/docs/_reference/ufo-status.md +0 -23
  301. data/docs/_reference/ufo-stop.md +0 -31
  302. data/docs/_reference/ufo-task.md +0 -56
  303. data/docs/_reference/ufo-tasks-build.md +0 -178
  304. data/docs/_reference/ufo-tasks-help.md +0 -15
  305. data/docs/_reference/ufo-tasks-register.md +0 -29
  306. data/docs/_reference/ufo-tasks.md +0 -35
  307. data/docs/_reference/ufo-upgrade-help.md +0 -15
  308. data/docs/_reference/ufo-upgrade-v2to3.md +0 -15
  309. data/docs/_reference/ufo-upgrade-v33to34.md +0 -15
  310. data/docs/_reference/ufo-upgrade-v3to4.md +0 -27
  311. data/docs/_reference/ufo-upgrade-v43to45.md +0 -15
  312. data/docs/_reference/ufo-upgrade.md +0 -29
  313. data/docs/_reference/ufo-version.md +0 -23
  314. data/docs/articles.md +0 -14
  315. data/docs/bin/web +0 -4
  316. data/docs/css/font-awesome/css/font-awesome.css +0 -1566
  317. data/docs/css/font-awesome/css/font-awesome.min.css +0 -4
  318. data/docs/css/font-awesome/fonts/FontAwesome.otf +0 -0
  319. data/docs/css/font-awesome/fonts/fontawesome-webfont.eot +0 -0
  320. data/docs/css/font-awesome/fonts/fontawesome-webfont.svg +0 -504
  321. data/docs/css/font-awesome/fonts/fontawesome-webfont.ttf +0 -0
  322. data/docs/css/font-awesome/fonts/fontawesome-webfont.woff +0 -0
  323. data/docs/docs.md +0 -29
  324. data/docs/img/docs/cloudformation-resources.png +0 -0
  325. data/docs/img/logos/boltops-logo-full.png +0 -0
  326. data/docs/img/logos/boltops-logo.png +0 -0
  327. data/docs/img/logos/ufo-logo-2.png +0 -0
  328. data/docs/img/logos/ufo-logo.png +0 -0
  329. data/docs/img/logos/ufo-site-header.png +0 -0
  330. data/docs/img/logos/ufo.jpg +0 -0
  331. data/docs/img/tutorials/ecs-console-task-definitions.png +0 -0
  332. data/docs/img/tutorials/ecs-console-ufo-ship.png +0 -0
  333. data/docs/img/tutorials/ecs-console-ufo-ships.png +0 -0
  334. data/docs/index.html +0 -10
  335. data/docs/js/bootstrap.js +0 -2114
  336. data/docs/js/bootstrap.min.js +0 -6
  337. data/docs/js/cbpAnimatedHeader.js +0 -44
  338. data/docs/js/cbpAnimatedHeader.min.js +0 -11
  339. data/docs/js/classie.js +0 -80
  340. data/docs/js/contact_me.js +0 -70
  341. data/docs/js/contact_me_static.js +0 -23
  342. data/docs/js/freelancer.js +0 -37
  343. data/docs/js/jqBootstrapValidation.js +0 -912
  344. data/docs/js/jquery-1.11.0.js +0 -4
  345. data/docs/js/jquery.easing.min.js +0 -44
  346. data/docs/js/nav.js +0 -53
  347. data/docs/quick-start.md +0 -133
  348. data/docs/reference.md +0 -29
  349. data/docs/style.css +0 -3
  350. data/docs/utils/ssl-doctor.rb +0 -89
  351. data/docs/utils/test-aws-api-access.rb +0 -11
  352. data/docs/utils/update-cert-chains.sh +0 -11
  353. data/lib/template/.env +0 -3
  354. data/lib/template/.secrets +0 -5
  355. data/lib/template/.ufo/iam_roles/execution_role.rb +0 -7
  356. data/lib/template/.ufo/iam_roles/task_role.rb +0 -21
  357. data/lib/template/.ufo/params.yml.tt +0 -27
  358. data/lib/template/.ufo/settings/cfn/default.yml.tt +0 -72
  359. data/lib/template/.ufo/settings/network/default.yml.tt +0 -26
  360. data/lib/template/.ufo/settings.yml.tt +0 -26
  361. data/lib/template/.ufo/task_definitions.rb.tt +0 -61
  362. data/lib/template/.ufo/templates/fargate.json.erb +0 -39
  363. data/lib/template/.ufo/templates/main.json.erb +0 -43
  364. data/lib/template/.ufo/variables/base.rb.tt +0 -19
  365. data/lib/template/.ufo/variables/development.rb +0 -8
  366. data/lib/template/.ufo/variables/production.rb +0 -7
  367. data/lib/template/Dockerfile +0 -15
  368. data/lib/template/bin/deploy.tt +0 -7
  369. data/lib/ufo/apps/cfn_map.rb +0 -70
  370. data/lib/ufo/apps/cluster.rb +0 -24
  371. data/lib/ufo/apps/service.rb +0 -56
  372. data/lib/ufo/apps.rb +0 -56
  373. data/lib/ufo/aws_service.rb +0 -36
  374. data/lib/ufo/base.rb +0 -35
  375. data/lib/ufo/cancel.rb +0 -23
  376. data/lib/ufo/current.rb +0 -104
  377. data/lib/ufo/default/settings.yml +0 -24
  378. data/lib/ufo/default/templates/main.json.erb +0 -39
  379. data/lib/ufo/destroy.rb +0 -41
  380. data/lib/ufo/docker/variables.rb +0 -26
  381. data/lib/ufo/dsl/helper.rb +0 -79
  382. data/lib/ufo/dsl/outputter.rb +0 -43
  383. data/lib/ufo/dsl/task_definition.rb +0 -108
  384. data/lib/ufo/dsl.rb +0 -96
  385. data/lib/ufo/help/apps.md +0 -12
  386. data/lib/ufo/help/balancer.md +0 -3
  387. data/lib/ufo/help/completions.md +0 -16
  388. data/lib/ufo/help/completions_script.md +0 -1
  389. data/lib/ufo/help/current.md +0 -65
  390. data/lib/ufo/help/deploy.md +0 -38
  391. data/lib/ufo/help/destroy.md +0 -9
  392. data/lib/ufo/help/docker/base.md +0 -49
  393. data/lib/ufo/help/docker/name.md +0 -16
  394. data/lib/ufo/help/docker.md +0 -6
  395. data/lib/ufo/help/init.md +0 -91
  396. data/lib/ufo/help/network/init.md +0 -13
  397. data/lib/ufo/help/ps.md +0 -27
  398. data/lib/ufo/help/releases.md +0 -16
  399. data/lib/ufo/help/resources.md +0 -20
  400. data/lib/ufo/help/rollback.md +0 -35
  401. data/lib/ufo/help/scale.md +0 -26
  402. data/lib/ufo/help/ship.md +0 -95
  403. data/lib/ufo/help/ships.md +0 -35
  404. data/lib/ufo/help/stop.md +0 -7
  405. data/lib/ufo/help/task.md +0 -27
  406. data/lib/ufo/help/tasks/build.md +0 -158
  407. data/lib/ufo/help/tasks/register.md +0 -14
  408. data/lib/ufo/help/tasks.md +0 -7
  409. data/lib/ufo/help/upgrade/v3to4.md +0 -3
  410. data/lib/ufo/help.rb +0 -9
  411. data/lib/ufo/init.rb +0 -119
  412. data/lib/ufo/network/fetch.rb +0 -48
  413. data/lib/ufo/network/helper.rb +0 -23
  414. data/lib/ufo/network/init.rb +0 -26
  415. data/lib/ufo/network.rb +0 -21
  416. data/lib/ufo/ps.rb +0 -129
  417. data/lib/ufo/scale.rb +0 -28
  418. data/lib/ufo/setting/profile.rb +0 -44
  419. data/lib/ufo/setting/security_groups.rb +0 -22
  420. data/lib/ufo/setting.rb +0 -75
  421. data/lib/ufo/settings.rb +0 -20
  422. data/lib/ufo/ship.rb +0 -103
  423. data/lib/ufo/stack/builder/conditions.rb +0 -23
  424. data/lib/ufo/stack/builder/parameters.rb +0 -45
  425. data/lib/ufo/stack/builder/resources/base.rb +0 -4
  426. data/lib/ufo/stack/builder/resources/dns.rb +0 -17
  427. data/lib/ufo/stack/builder/resources/elb.rb +0 -45
  428. data/lib/ufo/stack/builder/resources/listener.rb +0 -42
  429. data/lib/ufo/stack/builder/resources/listener_ssl.rb +0 -16
  430. data/lib/ufo/stack/builder/resources/roles/base.rb +0 -22
  431. data/lib/ufo/stack/builder/resources/roles/execution_role.rb +0 -4
  432. data/lib/ufo/stack/builder/resources/roles/task_role.rb +0 -4
  433. data/lib/ufo/stack/builder/resources/security_group/base.rb +0 -4
  434. data/lib/ufo/stack/builder/resources.rb +0 -20
  435. data/lib/ufo/stack/builder.rb +0 -26
  436. data/lib/ufo/stack/context.rb +0 -253
  437. data/lib/ufo/stack/helper.rb +0 -55
  438. data/lib/ufo/stack/template_body.rb +0 -13
  439. data/lib/ufo/stack.rb +0 -213
  440. data/lib/ufo/status.rb +0 -56
  441. data/lib/ufo/stop.rb +0 -49
  442. data/lib/ufo/task.rb +0 -225
  443. data/lib/ufo/tasks/builder.rb +0 -40
  444. data/lib/ufo/tasks/register.rb +0 -90
  445. data/lib/ufo/template_scope.rb +0 -57
  446. data/lib/ufo/util.rb +0 -69
  447. data/spec/lib/apps_spec.rb +0 -20
  448. data/spec/lib/builder_spec.rb +0 -23
  449. data/spec/lib/cli_spec.rb +0 -73
  450. data/spec/lib/completion_spec.rb +0 -18
  451. data/spec/lib/ps_spec.rb +0 -14
  452. data/spec/lib/register_spec.rb +0 -49
  453. data/spec/lib/setting_spec.rb +0 -18
  454. data/spec/lib/ship_spec.rb +0 -46
  455. data/spec/lib/stack/status_spec.rb +0 -76
  456. data/spec/lib/stop_spec.rb +0 -13
  457. data/spec/lib/task_spec.rb +0 -54
@@ -1,1566 +0,0 @@
1
- /*!
2
- * Font Awesome 4.1.0 by @davegandy - http://fontawesome.io - @fontawesome
3
- * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
4
- */
5
- /* FONT PATH
6
- * -------------------------- */
7
- @font-face {
8
- font-family: 'FontAwesome';
9
- src: url('../fonts/fontawesome-webfont.eot?v=4.1.0');
10
- src: url('../fonts/fontawesome-webfont.eot?#iefix&v=4.1.0') format('embedded-opentype'), url('../fonts/fontawesome-webfont.woff?v=4.1.0') format('woff'), url('../fonts/fontawesome-webfont.ttf?v=4.1.0') format('truetype'), url('../fonts/fontawesome-webfont.svg?v=4.1.0#fontawesomeregular') format('svg');
11
- font-weight: normal;
12
- font-style: normal;
13
- }
14
- .fa {
15
- display: inline-block;
16
- font-family: FontAwesome;
17
- font-style: normal;
18
- font-weight: normal;
19
- line-height: 1;
20
- -webkit-font-smoothing: antialiased;
21
- -moz-osx-font-smoothing: grayscale;
22
- }
23
- /* makes the font 33% larger relative to the icon container */
24
- .fa-lg {
25
- font-size: 1.33333333em;
26
- line-height: 0.75em;
27
- vertical-align: -15%;
28
- }
29
- .fa-2x {
30
- font-size: 2em;
31
- }
32
- .fa-3x {
33
- font-size: 3em;
34
- }
35
- .fa-4x {
36
- font-size: 4em;
37
- }
38
- .fa-5x {
39
- font-size: 5em;
40
- }
41
- .fa-fw {
42
- width: 1.28571429em;
43
- text-align: center;
44
- }
45
- .fa-ul {
46
- padding-left: 0;
47
- margin-left: 2.14285714em;
48
- list-style-type: none;
49
- }
50
- .fa-ul > li {
51
- position: relative;
52
- }
53
- .fa-li {
54
- position: absolute;
55
- left: -2.14285714em;
56
- width: 2.14285714em;
57
- top: 0.14285714em;
58
- text-align: center;
59
- }
60
- .fa-li.fa-lg {
61
- left: -1.85714286em;
62
- }
63
- .fa-border {
64
- padding: .2em .25em .15em;
65
- border: solid 0.08em #eeeeee;
66
- border-radius: .1em;
67
- }
68
- .pull-right {
69
- float: right;
70
- }
71
- .pull-left {
72
- float: left;
73
- }
74
- .fa.pull-left {
75
- margin-right: .3em;
76
- }
77
- .fa.pull-right {
78
- margin-left: .3em;
79
- }
80
- .fa-spin {
81
- -webkit-animation: spin 2s infinite linear;
82
- -moz-animation: spin 2s infinite linear;
83
- -o-animation: spin 2s infinite linear;
84
- animation: spin 2s infinite linear;
85
- }
86
- @-moz-keyframes spin {
87
- 0% {
88
- -moz-transform: rotate(0deg);
89
- }
90
- 100% {
91
- -moz-transform: rotate(359deg);
92
- }
93
- }
94
- @-webkit-keyframes spin {
95
- 0% {
96
- -webkit-transform: rotate(0deg);
97
- }
98
- 100% {
99
- -webkit-transform: rotate(359deg);
100
- }
101
- }
102
- @-o-keyframes spin {
103
- 0% {
104
- -o-transform: rotate(0deg);
105
- }
106
- 100% {
107
- -o-transform: rotate(359deg);
108
- }
109
- }
110
- @keyframes spin {
111
- 0% {
112
- -webkit-transform: rotate(0deg);
113
- transform: rotate(0deg);
114
- }
115
- 100% {
116
- -webkit-transform: rotate(359deg);
117
- transform: rotate(359deg);
118
- }
119
- }
120
- .fa-rotate-90 {
121
- filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
122
- -webkit-transform: rotate(90deg);
123
- -moz-transform: rotate(90deg);
124
- -ms-transform: rotate(90deg);
125
- -o-transform: rotate(90deg);
126
- transform: rotate(90deg);
127
- }
128
- .fa-rotate-180 {
129
- filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
130
- -webkit-transform: rotate(180deg);
131
- -moz-transform: rotate(180deg);
132
- -ms-transform: rotate(180deg);
133
- -o-transform: rotate(180deg);
134
- transform: rotate(180deg);
135
- }
136
- .fa-rotate-270 {
137
- filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
138
- -webkit-transform: rotate(270deg);
139
- -moz-transform: rotate(270deg);
140
- -ms-transform: rotate(270deg);
141
- -o-transform: rotate(270deg);
142
- transform: rotate(270deg);
143
- }
144
- .fa-flip-horizontal {
145
- filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);
146
- -webkit-transform: scale(-1, 1);
147
- -moz-transform: scale(-1, 1);
148
- -ms-transform: scale(-1, 1);
149
- -o-transform: scale(-1, 1);
150
- transform: scale(-1, 1);
151
- }
152
- .fa-flip-vertical {
153
- filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);
154
- -webkit-transform: scale(1, -1);
155
- -moz-transform: scale(1, -1);
156
- -ms-transform: scale(1, -1);
157
- -o-transform: scale(1, -1);
158
- transform: scale(1, -1);
159
- }
160
- .fa-stack {
161
- position: relative;
162
- display: inline-block;
163
- width: 2em;
164
- height: 2em;
165
- line-height: 2em;
166
- vertical-align: middle;
167
- }
168
- .fa-stack-1x,
169
- .fa-stack-2x {
170
- position: absolute;
171
- left: 0;
172
- width: 100%;
173
- text-align: center;
174
- }
175
- .fa-stack-1x {
176
- line-height: inherit;
177
- }
178
- .fa-stack-2x {
179
- font-size: 2em;
180
- }
181
- .fa-inverse {
182
- color: #ffffff;
183
- }
184
- /* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
185
- readers do not read off random characters that represent icons */
186
- .fa-glass:before {
187
- content: "\f000";
188
- }
189
- .fa-music:before {
190
- content: "\f001";
191
- }
192
- .fa-search:before {
193
- content: "\f002";
194
- }
195
- .fa-envelope-o:before {
196
- content: "\f003";
197
- }
198
- .fa-heart:before {
199
- content: "\f004";
200
- }
201
- .fa-star:before {
202
- content: "\f005";
203
- }
204
- .fa-star-o:before {
205
- content: "\f006";
206
- }
207
- .fa-user:before {
208
- content: "\f007";
209
- }
210
- .fa-film:before {
211
- content: "\f008";
212
- }
213
- .fa-th-large:before {
214
- content: "\f009";
215
- }
216
- .fa-th:before {
217
- content: "\f00a";
218
- }
219
- .fa-th-list:before {
220
- content: "\f00b";
221
- }
222
- .fa-check:before {
223
- content: "\f00c";
224
- }
225
- .fa-times:before {
226
- content: "\f00d";
227
- }
228
- .fa-search-plus:before {
229
- content: "\f00e";
230
- }
231
- .fa-search-minus:before {
232
- content: "\f010";
233
- }
234
- .fa-power-off:before {
235
- content: "\f011";
236
- }
237
- .fa-signal:before {
238
- content: "\f012";
239
- }
240
- .fa-gear:before,
241
- .fa-cog:before {
242
- content: "\f013";
243
- }
244
- .fa-trash-o:before {
245
- content: "\f014";
246
- }
247
- .fa-home:before {
248
- content: "\f015";
249
- }
250
- .fa-file-o:before {
251
- content: "\f016";
252
- }
253
- .fa-clock-o:before {
254
- content: "\f017";
255
- }
256
- .fa-road:before {
257
- content: "\f018";
258
- }
259
- .fa-download:before {
260
- content: "\f019";
261
- }
262
- .fa-arrow-circle-o-down:before {
263
- content: "\f01a";
264
- }
265
- .fa-arrow-circle-o-up:before {
266
- content: "\f01b";
267
- }
268
- .fa-inbox:before {
269
- content: "\f01c";
270
- }
271
- .fa-play-circle-o:before {
272
- content: "\f01d";
273
- }
274
- .fa-rotate-right:before,
275
- .fa-repeat:before {
276
- content: "\f01e";
277
- }
278
- .fa-refresh:before {
279
- content: "\f021";
280
- }
281
- .fa-list-alt:before {
282
- content: "\f022";
283
- }
284
- .fa-lock:before {
285
- content: "\f023";
286
- }
287
- .fa-flag:before {
288
- content: "\f024";
289
- }
290
- .fa-headphones:before {
291
- content: "\f025";
292
- }
293
- .fa-volume-off:before {
294
- content: "\f026";
295
- }
296
- .fa-volume-down:before {
297
- content: "\f027";
298
- }
299
- .fa-volume-up:before {
300
- content: "\f028";
301
- }
302
- .fa-qrcode:before {
303
- content: "\f029";
304
- }
305
- .fa-barcode:before {
306
- content: "\f02a";
307
- }
308
- .fa-tag:before {
309
- content: "\f02b";
310
- }
311
- .fa-tags:before {
312
- content: "\f02c";
313
- }
314
- .fa-book:before {
315
- content: "\f02d";
316
- }
317
- .fa-bookmark:before {
318
- content: "\f02e";
319
- }
320
- .fa-print:before {
321
- content: "\f02f";
322
- }
323
- .fa-camera:before {
324
- content: "\f030";
325
- }
326
- .fa-font:before {
327
- content: "\f031";
328
- }
329
- .fa-bold:before {
330
- content: "\f032";
331
- }
332
- .fa-italic:before {
333
- content: "\f033";
334
- }
335
- .fa-text-height:before {
336
- content: "\f034";
337
- }
338
- .fa-text-width:before {
339
- content: "\f035";
340
- }
341
- .fa-align-left:before {
342
- content: "\f036";
343
- }
344
- .fa-align-center:before {
345
- content: "\f037";
346
- }
347
- .fa-align-right:before {
348
- content: "\f038";
349
- }
350
- .fa-align-justify:before {
351
- content: "\f039";
352
- }
353
- .fa-list:before {
354
- content: "\f03a";
355
- }
356
- .fa-dedent:before,
357
- .fa-outdent:before {
358
- content: "\f03b";
359
- }
360
- .fa-indent:before {
361
- content: "\f03c";
362
- }
363
- .fa-video-camera:before {
364
- content: "\f03d";
365
- }
366
- .fa-photo:before,
367
- .fa-image:before,
368
- .fa-picture-o:before {
369
- content: "\f03e";
370
- }
371
- .fa-pencil:before {
372
- content: "\f040";
373
- }
374
- .fa-map-marker:before {
375
- content: "\f041";
376
- }
377
- .fa-adjust:before {
378
- content: "\f042";
379
- }
380
- .fa-tint:before {
381
- content: "\f043";
382
- }
383
- .fa-edit:before,
384
- .fa-pencil-square-o:before {
385
- content: "\f044";
386
- }
387
- .fa-share-square-o:before {
388
- content: "\f045";
389
- }
390
- .fa-check-square-o:before {
391
- content: "\f046";
392
- }
393
- .fa-arrows:before {
394
- content: "\f047";
395
- }
396
- .fa-step-backward:before {
397
- content: "\f048";
398
- }
399
- .fa-fast-backward:before {
400
- content: "\f049";
401
- }
402
- .fa-backward:before {
403
- content: "\f04a";
404
- }
405
- .fa-play:before {
406
- content: "\f04b";
407
- }
408
- .fa-pause:before {
409
- content: "\f04c";
410
- }
411
- .fa-stop:before {
412
- content: "\f04d";
413
- }
414
- .fa-forward:before {
415
- content: "\f04e";
416
- }
417
- .fa-fast-forward:before {
418
- content: "\f050";
419
- }
420
- .fa-step-forward:before {
421
- content: "\f051";
422
- }
423
- .fa-eject:before {
424
- content: "\f052";
425
- }
426
- .fa-chevron-left:before {
427
- content: "\f053";
428
- }
429
- .fa-chevron-right:before {
430
- content: "\f054";
431
- }
432
- .fa-plus-circle:before {
433
- content: "\f055";
434
- }
435
- .fa-minus-circle:before {
436
- content: "\f056";
437
- }
438
- .fa-times-circle:before {
439
- content: "\f057";
440
- }
441
- .fa-check-circle:before {
442
- content: "\f058";
443
- }
444
- .fa-question-circle:before {
445
- content: "\f059";
446
- }
447
- .fa-info-circle:before {
448
- content: "\f05a";
449
- }
450
- .fa-crosshairs:before {
451
- content: "\f05b";
452
- }
453
- .fa-times-circle-o:before {
454
- content: "\f05c";
455
- }
456
- .fa-check-circle-o:before {
457
- content: "\f05d";
458
- }
459
- .fa-ban:before {
460
- content: "\f05e";
461
- }
462
- .fa-arrow-left:before {
463
- content: "\f060";
464
- }
465
- .fa-arrow-right:before {
466
- content: "\f061";
467
- }
468
- .fa-arrow-up:before {
469
- content: "\f062";
470
- }
471
- .fa-arrow-down:before {
472
- content: "\f063";
473
- }
474
- .fa-mail-forward:before,
475
- .fa-share:before {
476
- content: "\f064";
477
- }
478
- .fa-expand:before {
479
- content: "\f065";
480
- }
481
- .fa-compress:before {
482
- content: "\f066";
483
- }
484
- .fa-plus:before {
485
- content: "\f067";
486
- }
487
- .fa-minus:before {
488
- content: "\f068";
489
- }
490
- .fa-asterisk:before {
491
- content: "\f069";
492
- }
493
- .fa-exclamation-circle:before {
494
- content: "\f06a";
495
- }
496
- .fa-gift:before {
497
- content: "\f06b";
498
- }
499
- .fa-leaf:before {
500
- content: "\f06c";
501
- }
502
- .fa-fire:before {
503
- content: "\f06d";
504
- }
505
- .fa-eye:before {
506
- content: "\f06e";
507
- }
508
- .fa-eye-slash:before {
509
- content: "\f070";
510
- }
511
- .fa-warning:before,
512
- .fa-exclamation-triangle:before {
513
- content: "\f071";
514
- }
515
- .fa-plane:before {
516
- content: "\f072";
517
- }
518
- .fa-calendar:before {
519
- content: "\f073";
520
- }
521
- .fa-random:before {
522
- content: "\f074";
523
- }
524
- .fa-comment:before {
525
- content: "\f075";
526
- }
527
- .fa-magnet:before {
528
- content: "\f076";
529
- }
530
- .fa-chevron-up:before {
531
- content: "\f077";
532
- }
533
- .fa-chevron-down:before {
534
- content: "\f078";
535
- }
536
- .fa-retweet:before {
537
- content: "\f079";
538
- }
539
- .fa-shopping-cart:before {
540
- content: "\f07a";
541
- }
542
- .fa-folder:before {
543
- content: "\f07b";
544
- }
545
- .fa-folder-open:before {
546
- content: "\f07c";
547
- }
548
- .fa-arrows-v:before {
549
- content: "\f07d";
550
- }
551
- .fa-arrows-h:before {
552
- content: "\f07e";
553
- }
554
- .fa-bar-chart-o:before {
555
- content: "\f080";
556
- }
557
- .fa-twitter-square:before {
558
- content: "\f081";
559
- }
560
- .fa-facebook-square:before {
561
- content: "\f082";
562
- }
563
- .fa-camera-retro:before {
564
- content: "\f083";
565
- }
566
- .fa-key:before {
567
- content: "\f084";
568
- }
569
- .fa-gears:before,
570
- .fa-cogs:before {
571
- content: "\f085";
572
- }
573
- .fa-comments:before {
574
- content: "\f086";
575
- }
576
- .fa-thumbs-o-up:before {
577
- content: "\f087";
578
- }
579
- .fa-thumbs-o-down:before {
580
- content: "\f088";
581
- }
582
- .fa-star-half:before {
583
- content: "\f089";
584
- }
585
- .fa-heart-o:before {
586
- content: "\f08a";
587
- }
588
- .fa-sign-out:before {
589
- content: "\f08b";
590
- }
591
- .fa-linkedin-square:before {
592
- content: "\f08c";
593
- }
594
- .fa-thumb-tack:before {
595
- content: "\f08d";
596
- }
597
- .fa-external-link:before {
598
- content: "\f08e";
599
- }
600
- .fa-sign-in:before {
601
- content: "\f090";
602
- }
603
- .fa-trophy:before {
604
- content: "\f091";
605
- }
606
- .fa-github-square:before {
607
- content: "\f092";
608
- }
609
- .fa-upload:before {
610
- content: "\f093";
611
- }
612
- .fa-lemon-o:before {
613
- content: "\f094";
614
- }
615
- .fa-phone:before {
616
- content: "\f095";
617
- }
618
- .fa-square-o:before {
619
- content: "\f096";
620
- }
621
- .fa-bookmark-o:before {
622
- content: "\f097";
623
- }
624
- .fa-phone-square:before {
625
- content: "\f098";
626
- }
627
- .fa-twitter:before {
628
- content: "\f099";
629
- }
630
- .fa-facebook:before {
631
- content: "\f09a";
632
- }
633
- .fa-github:before {
634
- content: "\f09b";
635
- }
636
- .fa-unlock:before {
637
- content: "\f09c";
638
- }
639
- .fa-credit-card:before {
640
- content: "\f09d";
641
- }
642
- .fa-rss:before {
643
- content: "\f09e";
644
- }
645
- .fa-hdd-o:before {
646
- content: "\f0a0";
647
- }
648
- .fa-bullhorn:before {
649
- content: "\f0a1";
650
- }
651
- .fa-bell:before {
652
- content: "\f0f3";
653
- }
654
- .fa-certificate:before {
655
- content: "\f0a3";
656
- }
657
- .fa-hand-o-right:before {
658
- content: "\f0a4";
659
- }
660
- .fa-hand-o-left:before {
661
- content: "\f0a5";
662
- }
663
- .fa-hand-o-up:before {
664
- content: "\f0a6";
665
- }
666
- .fa-hand-o-down:before {
667
- content: "\f0a7";
668
- }
669
- .fa-arrow-circle-left:before {
670
- content: "\f0a8";
671
- }
672
- .fa-arrow-circle-right:before {
673
- content: "\f0a9";
674
- }
675
- .fa-arrow-circle-up:before {
676
- content: "\f0aa";
677
- }
678
- .fa-arrow-circle-down:before {
679
- content: "\f0ab";
680
- }
681
- .fa-globe:before {
682
- content: "\f0ac";
683
- }
684
- .fa-wrench:before {
685
- content: "\f0ad";
686
- }
687
- .fa-tasks:before {
688
- content: "\f0ae";
689
- }
690
- .fa-filter:before {
691
- content: "\f0b0";
692
- }
693
- .fa-briefcase:before {
694
- content: "\f0b1";
695
- }
696
- .fa-arrows-alt:before {
697
- content: "\f0b2";
698
- }
699
- .fa-group:before,
700
- .fa-users:before {
701
- content: "\f0c0";
702
- }
703
- .fa-chain:before,
704
- .fa-link:before {
705
- content: "\f0c1";
706
- }
707
- .fa-cloud:before {
708
- content: "\f0c2";
709
- }
710
- .fa-flask:before {
711
- content: "\f0c3";
712
- }
713
- .fa-cut:before,
714
- .fa-scissors:before {
715
- content: "\f0c4";
716
- }
717
- .fa-copy:before,
718
- .fa-files-o:before {
719
- content: "\f0c5";
720
- }
721
- .fa-paperclip:before {
722
- content: "\f0c6";
723
- }
724
- .fa-save:before,
725
- .fa-floppy-o:before {
726
- content: "\f0c7";
727
- }
728
- .fa-square:before {
729
- content: "\f0c8";
730
- }
731
- .fa-navicon:before,
732
- .fa-reorder:before,
733
- .fa-bars:before {
734
- content: "\f0c9";
735
- }
736
- .fa-list-ul:before {
737
- content: "\f0ca";
738
- }
739
- .fa-list-ol:before {
740
- content: "\f0cb";
741
- }
742
- .fa-strikethrough:before {
743
- content: "\f0cc";
744
- }
745
- .fa-underline:before {
746
- content: "\f0cd";
747
- }
748
- .fa-table:before {
749
- content: "\f0ce";
750
- }
751
- .fa-magic:before {
752
- content: "\f0d0";
753
- }
754
- .fa-truck:before {
755
- content: "\f0d1";
756
- }
757
- .fa-pinterest:before {
758
- content: "\f0d2";
759
- }
760
- .fa-pinterest-square:before {
761
- content: "\f0d3";
762
- }
763
- .fa-google-plus-square:before {
764
- content: "\f0d4";
765
- }
766
- .fa-google-plus:before {
767
- content: "\f0d5";
768
- }
769
- .fa-money:before {
770
- content: "\f0d6";
771
- }
772
- .fa-caret-down:before {
773
- content: "\f0d7";
774
- }
775
- .fa-caret-up:before {
776
- content: "\f0d8";
777
- }
778
- .fa-caret-left:before {
779
- content: "\f0d9";
780
- }
781
- .fa-caret-right:before {
782
- content: "\f0da";
783
- }
784
- .fa-columns:before {
785
- content: "\f0db";
786
- }
787
- .fa-unsorted:before,
788
- .fa-sort:before {
789
- content: "\f0dc";
790
- }
791
- .fa-sort-down:before,
792
- .fa-sort-desc:before {
793
- content: "\f0dd";
794
- }
795
- .fa-sort-up:before,
796
- .fa-sort-asc:before {
797
- content: "\f0de";
798
- }
799
- .fa-envelope:before {
800
- content: "\f0e0";
801
- }
802
- .fa-linkedin:before {
803
- content: "\f0e1";
804
- }
805
- .fa-rotate-left:before,
806
- .fa-undo:before {
807
- content: "\f0e2";
808
- }
809
- .fa-legal:before,
810
- .fa-gavel:before {
811
- content: "\f0e3";
812
- }
813
- .fa-dashboard:before,
814
- .fa-tachometer:before {
815
- content: "\f0e4";
816
- }
817
- .fa-comment-o:before {
818
- content: "\f0e5";
819
- }
820
- .fa-comments-o:before {
821
- content: "\f0e6";
822
- }
823
- .fa-flash:before,
824
- .fa-bolt:before {
825
- content: "\f0e7";
826
- }
827
- .fa-sitemap:before {
828
- content: "\f0e8";
829
- }
830
- .fa-umbrella:before {
831
- content: "\f0e9";
832
- }
833
- .fa-paste:before,
834
- .fa-clipboard:before {
835
- content: "\f0ea";
836
- }
837
- .fa-lightbulb-o:before {
838
- content: "\f0eb";
839
- }
840
- .fa-exchange:before {
841
- content: "\f0ec";
842
- }
843
- .fa-cloud-download:before {
844
- content: "\f0ed";
845
- }
846
- .fa-cloud-upload:before {
847
- content: "\f0ee";
848
- }
849
- .fa-user-md:before {
850
- content: "\f0f0";
851
- }
852
- .fa-stethoscope:before {
853
- content: "\f0f1";
854
- }
855
- .fa-suitcase:before {
856
- content: "\f0f2";
857
- }
858
- .fa-bell-o:before {
859
- content: "\f0a2";
860
- }
861
- .fa-coffee:before {
862
- content: "\f0f4";
863
- }
864
- .fa-cutlery:before {
865
- content: "\f0f5";
866
- }
867
- .fa-file-text-o:before {
868
- content: "\f0f6";
869
- }
870
- .fa-building-o:before {
871
- content: "\f0f7";
872
- }
873
- .fa-hospital-o:before {
874
- content: "\f0f8";
875
- }
876
- .fa-ambulance:before {
877
- content: "\f0f9";
878
- }
879
- .fa-medkit:before {
880
- content: "\f0fa";
881
- }
882
- .fa-fighter-jet:before {
883
- content: "\f0fb";
884
- }
885
- .fa-beer:before {
886
- content: "\f0fc";
887
- }
888
- .fa-h-square:before {
889
- content: "\f0fd";
890
- }
891
- .fa-plus-square:before {
892
- content: "\f0fe";
893
- }
894
- .fa-angle-double-left:before {
895
- content: "\f100";
896
- }
897
- .fa-angle-double-right:before {
898
- content: "\f101";
899
- }
900
- .fa-angle-double-up:before {
901
- content: "\f102";
902
- }
903
- .fa-angle-double-down:before {
904
- content: "\f103";
905
- }
906
- .fa-angle-left:before {
907
- content: "\f104";
908
- }
909
- .fa-angle-right:before {
910
- content: "\f105";
911
- }
912
- .fa-angle-up:before {
913
- content: "\f106";
914
- }
915
- .fa-angle-down:before {
916
- content: "\f107";
917
- }
918
- .fa-desktop:before {
919
- content: "\f108";
920
- }
921
- .fa-laptop:before {
922
- content: "\f109";
923
- }
924
- .fa-tablet:before {
925
- content: "\f10a";
926
- }
927
- .fa-mobile-phone:before,
928
- .fa-mobile:before {
929
- content: "\f10b";
930
- }
931
- .fa-circle-o:before {
932
- content: "\f10c";
933
- }
934
- .fa-quote-left:before {
935
- content: "\f10d";
936
- }
937
- .fa-quote-right:before {
938
- content: "\f10e";
939
- }
940
- .fa-spinner:before {
941
- content: "\f110";
942
- }
943
- .fa-circle:before {
944
- content: "\f111";
945
- }
946
- .fa-mail-reply:before,
947
- .fa-reply:before {
948
- content: "\f112";
949
- }
950
- .fa-github-alt:before {
951
- content: "\f113";
952
- }
953
- .fa-folder-o:before {
954
- content: "\f114";
955
- }
956
- .fa-folder-open-o:before {
957
- content: "\f115";
958
- }
959
- .fa-smile-o:before {
960
- content: "\f118";
961
- }
962
- .fa-frown-o:before {
963
- content: "\f119";
964
- }
965
- .fa-meh-o:before {
966
- content: "\f11a";
967
- }
968
- .fa-gamepad:before {
969
- content: "\f11b";
970
- }
971
- .fa-keyboard-o:before {
972
- content: "\f11c";
973
- }
974
- .fa-flag-o:before {
975
- content: "\f11d";
976
- }
977
- .fa-flag-checkered:before {
978
- content: "\f11e";
979
- }
980
- .fa-terminal:before {
981
- content: "\f120";
982
- }
983
- .fa-code:before {
984
- content: "\f121";
985
- }
986
- .fa-mail-reply-all:before,
987
- .fa-reply-all:before {
988
- content: "\f122";
989
- }
990
- .fa-star-half-empty:before,
991
- .fa-star-half-full:before,
992
- .fa-star-half-o:before {
993
- content: "\f123";
994
- }
995
- .fa-location-arrow:before {
996
- content: "\f124";
997
- }
998
- .fa-crop:before {
999
- content: "\f125";
1000
- }
1001
- .fa-code-fork:before {
1002
- content: "\f126";
1003
- }
1004
- .fa-unlink:before,
1005
- .fa-chain-broken:before {
1006
- content: "\f127";
1007
- }
1008
- .fa-question:before {
1009
- content: "\f128";
1010
- }
1011
- .fa-info:before {
1012
- content: "\f129";
1013
- }
1014
- .fa-exclamation:before {
1015
- content: "\f12a";
1016
- }
1017
- .fa-superscript:before {
1018
- content: "\f12b";
1019
- }
1020
- .fa-subscript:before {
1021
- content: "\f12c";
1022
- }
1023
- .fa-eraser:before {
1024
- content: "\f12d";
1025
- }
1026
- .fa-puzzle-piece:before {
1027
- content: "\f12e";
1028
- }
1029
- .fa-microphone:before {
1030
- content: "\f130";
1031
- }
1032
- .fa-microphone-slash:before {
1033
- content: "\f131";
1034
- }
1035
- .fa-shield:before {
1036
- content: "\f132";
1037
- }
1038
- .fa-calendar-o:before {
1039
- content: "\f133";
1040
- }
1041
- .fa-fire-extinguisher:before {
1042
- content: "\f134";
1043
- }
1044
- .fa-rocket:before {
1045
- content: "\f135";
1046
- }
1047
- .fa-maxcdn:before {
1048
- content: "\f136";
1049
- }
1050
- .fa-chevron-circle-left:before {
1051
- content: "\f137";
1052
- }
1053
- .fa-chevron-circle-right:before {
1054
- content: "\f138";
1055
- }
1056
- .fa-chevron-circle-up:before {
1057
- content: "\f139";
1058
- }
1059
- .fa-chevron-circle-down:before {
1060
- content: "\f13a";
1061
- }
1062
- .fa-html5:before {
1063
- content: "\f13b";
1064
- }
1065
- .fa-css3:before {
1066
- content: "\f13c";
1067
- }
1068
- .fa-anchor:before {
1069
- content: "\f13d";
1070
- }
1071
- .fa-unlock-alt:before {
1072
- content: "\f13e";
1073
- }
1074
- .fa-bullseye:before {
1075
- content: "\f140";
1076
- }
1077
- .fa-ellipsis-h:before {
1078
- content: "\f141";
1079
- }
1080
- .fa-ellipsis-v:before {
1081
- content: "\f142";
1082
- }
1083
- .fa-rss-square:before {
1084
- content: "\f143";
1085
- }
1086
- .fa-play-circle:before {
1087
- content: "\f144";
1088
- }
1089
- .fa-ticket:before {
1090
- content: "\f145";
1091
- }
1092
- .fa-minus-square:before {
1093
- content: "\f146";
1094
- }
1095
- .fa-minus-square-o:before {
1096
- content: "\f147";
1097
- }
1098
- .fa-level-up:before {
1099
- content: "\f148";
1100
- }
1101
- .fa-level-down:before {
1102
- content: "\f149";
1103
- }
1104
- .fa-check-square:before {
1105
- content: "\f14a";
1106
- }
1107
- .fa-pencil-square:before {
1108
- content: "\f14b";
1109
- }
1110
- .fa-external-link-square:before {
1111
- content: "\f14c";
1112
- }
1113
- .fa-share-square:before {
1114
- content: "\f14d";
1115
- }
1116
- .fa-compass:before {
1117
- content: "\f14e";
1118
- }
1119
- .fa-toggle-down:before,
1120
- .fa-caret-square-o-down:before {
1121
- content: "\f150";
1122
- }
1123
- .fa-toggle-up:before,
1124
- .fa-caret-square-o-up:before {
1125
- content: "\f151";
1126
- }
1127
- .fa-toggle-right:before,
1128
- .fa-caret-square-o-right:before {
1129
- content: "\f152";
1130
- }
1131
- .fa-euro:before,
1132
- .fa-eur:before {
1133
- content: "\f153";
1134
- }
1135
- .fa-gbp:before {
1136
- content: "\f154";
1137
- }
1138
- .fa-dollar:before,
1139
- .fa-usd:before {
1140
- content: "\f155";
1141
- }
1142
- .fa-rupee:before,
1143
- .fa-inr:before {
1144
- content: "\f156";
1145
- }
1146
- .fa-cny:before,
1147
- .fa-rmb:before,
1148
- .fa-yen:before,
1149
- .fa-jpy:before {
1150
- content: "\f157";
1151
- }
1152
- .fa-ruble:before,
1153
- .fa-rouble:before,
1154
- .fa-rub:before {
1155
- content: "\f158";
1156
- }
1157
- .fa-won:before,
1158
- .fa-krw:before {
1159
- content: "\f159";
1160
- }
1161
- .fa-bitcoin:before,
1162
- .fa-btc:before {
1163
- content: "\f15a";
1164
- }
1165
- .fa-file:before {
1166
- content: "\f15b";
1167
- }
1168
- .fa-file-text:before {
1169
- content: "\f15c";
1170
- }
1171
- .fa-sort-alpha-asc:before {
1172
- content: "\f15d";
1173
- }
1174
- .fa-sort-alpha-desc:before {
1175
- content: "\f15e";
1176
- }
1177
- .fa-sort-amount-asc:before {
1178
- content: "\f160";
1179
- }
1180
- .fa-sort-amount-desc:before {
1181
- content: "\f161";
1182
- }
1183
- .fa-sort-numeric-asc:before {
1184
- content: "\f162";
1185
- }
1186
- .fa-sort-numeric-desc:before {
1187
- content: "\f163";
1188
- }
1189
- .fa-thumbs-up:before {
1190
- content: "\f164";
1191
- }
1192
- .fa-thumbs-down:before {
1193
- content: "\f165";
1194
- }
1195
- .fa-youtube-square:before {
1196
- content: "\f166";
1197
- }
1198
- .fa-youtube:before {
1199
- content: "\f167";
1200
- }
1201
- .fa-xing:before {
1202
- content: "\f168";
1203
- }
1204
- .fa-xing-square:before {
1205
- content: "\f169";
1206
- }
1207
- .fa-youtube-play:before {
1208
- content: "\f16a";
1209
- }
1210
- .fa-dropbox:before {
1211
- content: "\f16b";
1212
- }
1213
- .fa-stack-overflow:before {
1214
- content: "\f16c";
1215
- }
1216
- .fa-instagram:before {
1217
- content: "\f16d";
1218
- }
1219
- .fa-flickr:before {
1220
- content: "\f16e";
1221
- }
1222
- .fa-adn:before {
1223
- content: "\f170";
1224
- }
1225
- .fa-bitbucket:before {
1226
- content: "\f171";
1227
- }
1228
- .fa-bitbucket-square:before {
1229
- content: "\f172";
1230
- }
1231
- .fa-tumblr:before {
1232
- content: "\f173";
1233
- }
1234
- .fa-tumblr-square:before {
1235
- content: "\f174";
1236
- }
1237
- .fa-long-arrow-down:before {
1238
- content: "\f175";
1239
- }
1240
- .fa-long-arrow-up:before {
1241
- content: "\f176";
1242
- }
1243
- .fa-long-arrow-left:before {
1244
- content: "\f177";
1245
- }
1246
- .fa-long-arrow-right:before {
1247
- content: "\f178";
1248
- }
1249
- .fa-apple:before {
1250
- content: "\f179";
1251
- }
1252
- .fa-windows:before {
1253
- content: "\f17a";
1254
- }
1255
- .fa-android:before {
1256
- content: "\f17b";
1257
- }
1258
- .fa-linux:before {
1259
- content: "\f17c";
1260
- }
1261
- .fa-dribbble:before {
1262
- content: "\f17d";
1263
- }
1264
- .fa-skype:before {
1265
- content: "\f17e";
1266
- }
1267
- .fa-foursquare:before {
1268
- content: "\f180";
1269
- }
1270
- .fa-trello:before {
1271
- content: "\f181";
1272
- }
1273
- .fa-female:before {
1274
- content: "\f182";
1275
- }
1276
- .fa-male:before {
1277
- content: "\f183";
1278
- }
1279
- .fa-gittip:before {
1280
- content: "\f184";
1281
- }
1282
- .fa-sun-o:before {
1283
- content: "\f185";
1284
- }
1285
- .fa-moon-o:before {
1286
- content: "\f186";
1287
- }
1288
- .fa-archive:before {
1289
- content: "\f187";
1290
- }
1291
- .fa-bug:before {
1292
- content: "\f188";
1293
- }
1294
- .fa-vk:before {
1295
- content: "\f189";
1296
- }
1297
- .fa-weibo:before {
1298
- content: "\f18a";
1299
- }
1300
- .fa-renren:before {
1301
- content: "\f18b";
1302
- }
1303
- .fa-pagelines:before {
1304
- content: "\f18c";
1305
- }
1306
- .fa-stack-exchange:before {
1307
- content: "\f18d";
1308
- }
1309
- .fa-arrow-circle-o-right:before {
1310
- content: "\f18e";
1311
- }
1312
- .fa-arrow-circle-o-left:before {
1313
- content: "\f190";
1314
- }
1315
- .fa-toggle-left:before,
1316
- .fa-caret-square-o-left:before {
1317
- content: "\f191";
1318
- }
1319
- .fa-dot-circle-o:before {
1320
- content: "\f192";
1321
- }
1322
- .fa-wheelchair:before {
1323
- content: "\f193";
1324
- }
1325
- .fa-vimeo-square:before {
1326
- content: "\f194";
1327
- }
1328
- .fa-turkish-lira:before,
1329
- .fa-try:before {
1330
- content: "\f195";
1331
- }
1332
- .fa-plus-square-o:before {
1333
- content: "\f196";
1334
- }
1335
- .fa-space-shuttle:before {
1336
- content: "\f197";
1337
- }
1338
- .fa-slack:before {
1339
- content: "\f198";
1340
- }
1341
- .fa-envelope-square:before {
1342
- content: "\f199";
1343
- }
1344
- .fa-wordpress:before {
1345
- content: "\f19a";
1346
- }
1347
- .fa-openid:before {
1348
- content: "\f19b";
1349
- }
1350
- .fa-institution:before,
1351
- .fa-bank:before,
1352
- .fa-university:before {
1353
- content: "\f19c";
1354
- }
1355
- .fa-mortar-board:before,
1356
- .fa-graduation-cap:before {
1357
- content: "\f19d";
1358
- }
1359
- .fa-yahoo:before {
1360
- content: "\f19e";
1361
- }
1362
- .fa-google:before {
1363
- content: "\f1a0";
1364
- }
1365
- .fa-reddit:before {
1366
- content: "\f1a1";
1367
- }
1368
- .fa-reddit-square:before {
1369
- content: "\f1a2";
1370
- }
1371
- .fa-stumbleupon-circle:before {
1372
- content: "\f1a3";
1373
- }
1374
- .fa-stumbleupon:before {
1375
- content: "\f1a4";
1376
- }
1377
- .fa-delicious:before {
1378
- content: "\f1a5";
1379
- }
1380
- .fa-digg:before {
1381
- content: "\f1a6";
1382
- }
1383
- .fa-pied-piper-square:before,
1384
- .fa-pied-piper:before {
1385
- content: "\f1a7";
1386
- }
1387
- .fa-pied-piper-alt:before {
1388
- content: "\f1a8";
1389
- }
1390
- .fa-drupal:before {
1391
- content: "\f1a9";
1392
- }
1393
- .fa-joomla:before {
1394
- content: "\f1aa";
1395
- }
1396
- .fa-language:before {
1397
- content: "\f1ab";
1398
- }
1399
- .fa-fax:before {
1400
- content: "\f1ac";
1401
- }
1402
- .fa-building:before {
1403
- content: "\f1ad";
1404
- }
1405
- .fa-child:before {
1406
- content: "\f1ae";
1407
- }
1408
- .fa-paw:before {
1409
- content: "\f1b0";
1410
- }
1411
- .fa-spoon:before {
1412
- content: "\f1b1";
1413
- }
1414
- .fa-cube:before {
1415
- content: "\f1b2";
1416
- }
1417
- .fa-cubes:before {
1418
- content: "\f1b3";
1419
- }
1420
- .fa-behance:before {
1421
- content: "\f1b4";
1422
- }
1423
- .fa-behance-square:before {
1424
- content: "\f1b5";
1425
- }
1426
- .fa-steam:before {
1427
- content: "\f1b6";
1428
- }
1429
- .fa-steam-square:before {
1430
- content: "\f1b7";
1431
- }
1432
- .fa-recycle:before {
1433
- content: "\f1b8";
1434
- }
1435
- .fa-automobile:before,
1436
- .fa-car:before {
1437
- content: "\f1b9";
1438
- }
1439
- .fa-cab:before,
1440
- .fa-taxi:before {
1441
- content: "\f1ba";
1442
- }
1443
- .fa-tree:before {
1444
- content: "\f1bb";
1445
- }
1446
- .fa-spotify:before {
1447
- content: "\f1bc";
1448
- }
1449
- .fa-deviantart:before {
1450
- content: "\f1bd";
1451
- }
1452
- .fa-soundcloud:before {
1453
- content: "\f1be";
1454
- }
1455
- .fa-database:before {
1456
- content: "\f1c0";
1457
- }
1458
- .fa-file-pdf-o:before {
1459
- content: "\f1c1";
1460
- }
1461
- .fa-file-word-o:before {
1462
- content: "\f1c2";
1463
- }
1464
- .fa-file-excel-o:before {
1465
- content: "\f1c3";
1466
- }
1467
- .fa-file-powerpoint-o:before {
1468
- content: "\f1c4";
1469
- }
1470
- .fa-file-photo-o:before,
1471
- .fa-file-picture-o:before,
1472
- .fa-file-image-o:before {
1473
- content: "\f1c5";
1474
- }
1475
- .fa-file-zip-o:before,
1476
- .fa-file-archive-o:before {
1477
- content: "\f1c6";
1478
- }
1479
- .fa-file-sound-o:before,
1480
- .fa-file-audio-o:before {
1481
- content: "\f1c7";
1482
- }
1483
- .fa-file-movie-o:before,
1484
- .fa-file-video-o:before {
1485
- content: "\f1c8";
1486
- }
1487
- .fa-file-code-o:before {
1488
- content: "\f1c9";
1489
- }
1490
- .fa-vine:before {
1491
- content: "\f1ca";
1492
- }
1493
- .fa-codepen:before {
1494
- content: "\f1cb";
1495
- }
1496
- .fa-jsfiddle:before {
1497
- content: "\f1cc";
1498
- }
1499
- .fa-life-bouy:before,
1500
- .fa-life-saver:before,
1501
- .fa-support:before,
1502
- .fa-life-ring:before {
1503
- content: "\f1cd";
1504
- }
1505
- .fa-circle-o-notch:before {
1506
- content: "\f1ce";
1507
- }
1508
- .fa-ra:before,
1509
- .fa-rebel:before {
1510
- content: "\f1d0";
1511
- }
1512
- .fa-ge:before,
1513
- .fa-empire:before {
1514
- content: "\f1d1";
1515
- }
1516
- .fa-git-square:before {
1517
- content: "\f1d2";
1518
- }
1519
- .fa-git:before {
1520
- content: "\f1d3";
1521
- }
1522
- .fa-hacker-news:before {
1523
- content: "\f1d4";
1524
- }
1525
- .fa-tencent-weibo:before {
1526
- content: "\f1d5";
1527
- }
1528
- .fa-qq:before {
1529
- content: "\f1d6";
1530
- }
1531
- .fa-wechat:before,
1532
- .fa-weixin:before {
1533
- content: "\f1d7";
1534
- }
1535
- .fa-send:before,
1536
- .fa-paper-plane:before {
1537
- content: "\f1d8";
1538
- }
1539
- .fa-send-o:before,
1540
- .fa-paper-plane-o:before {
1541
- content: "\f1d9";
1542
- }
1543
- .fa-history:before {
1544
- content: "\f1da";
1545
- }
1546
- .fa-circle-thin:before {
1547
- content: "\f1db";
1548
- }
1549
- .fa-header:before {
1550
- content: "\f1dc";
1551
- }
1552
- .fa-paragraph:before {
1553
- content: "\f1dd";
1554
- }
1555
- .fa-sliders:before {
1556
- content: "\f1de";
1557
- }
1558
- .fa-share-alt:before {
1559
- content: "\f1e0";
1560
- }
1561
- .fa-share-alt-square:before {
1562
- content: "\f1e1";
1563
- }
1564
- .fa-bomb:before {
1565
- content: "\f1e2";
1566
- }