itsi 0.1.18 → 0.1.20
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +15 -0
- data/Cargo.lock +924 -385
- data/README.md +67 -55
- data/crates/itsi_server/Cargo.toml +7 -4
- data/crates/itsi_server/src/ruby_types/itsi_http_request.rs +2 -2
- data/crates/itsi_server/src/ruby_types/itsi_server/itsi_server_config.rs +150 -19
- data/crates/itsi_server/src/ruby_types/itsi_server.rs +1 -0
- data/crates/itsi_server/src/server/binds/listener.rs +34 -29
- data/crates/itsi_server/src/server/binds/tls/locked_dir_cache.rs +2 -2
- data/crates/itsi_server/src/server/binds/tls.rs +1 -1
- data/crates/itsi_server/src/server/middleware_stack/middleware.rs +33 -28
- data/crates/itsi_server/src/server/middleware_stack/middlewares/auth_jwt.rs +56 -3
- data/crates/itsi_server/src/server/middleware_stack/middlewares/csp.rs +179 -0
- data/crates/itsi_server/src/server/middleware_stack/middlewares/mod.rs +25 -2
- data/crates/itsi_server/src/server/middleware_stack/middlewares/ruby_app.rs +3 -3
- data/crates/itsi_server/src/server/middleware_stack/middlewares/static_assets.rs +2 -1
- data/crates/itsi_server/src/server/middleware_stack/mod.rs +32 -34
- data/crates/itsi_server/src/server/serve_strategy/cluster_mode.rs +10 -4
- data/crates/itsi_server/src/server/serve_strategy/single_mode.rs +30 -7
- data/crates/itsi_server/src/server/thread_worker.rs +2 -2
- data/crates/itsi_server/src/services/static_file_server.rs +30 -28
- data/crates/itsi_tracing/src/lib.rs +39 -8
- data/docker/Dockerfile +12 -0
- data/docs/content/_index.md +18 -10
- data/docs/content/acknowledgements/_index.md +43 -0
- data/docs/content/configuration/_index.md +98 -0
- data/docs/content/contact/_index.md +7 -0
- data/docs/content/faqs/_index.md +27 -0
- data/docs/content/features/_index.md +285 -0
- data/docs/content/getting_started/_index.md +70 -0
- data/docs/content/getting_started/local_development.md +40 -0
- data/docs/content/getting_started/logging.md +16 -0
- data/docs/content/getting_started/running_itsi_in_production.md +24 -0
- data/docs/content/itsi-server-100.png +0 -0
- data/docs/content/itsi_scheduler/_index.md +105 -0
- data/docs/content/itsi_scheduler/itsi-scheduler-100.png +0 -0
- data/docs/content/ruby-lsp.png +0 -0
- data/docs/content/ruby.svg +948 -0
- data/docs/data/icons.yaml +949 -0
- data/docs/hugo.yaml +27 -28
- data/fairytale.txt +34 -0
- data/gems/scheduler/Cargo.lock +46 -46
- data/gems/scheduler/README.md +53 -24
- data/gems/scheduler/itsi-scheduler-100.png +0 -0
- data/gems/scheduler/lib/itsi/scheduler/version.rb +1 -1
- data/gems/server/Cargo.lock +932 -382
- data/gems/server/README.md +2 -0
- data/gems/server/exe/itsi +5 -5
- data/gems/server/lib/itsi/http_request.rb +1 -0
- data/gems/server/lib/itsi/server/config/config_helpers.rb +93 -0
- data/gems/server/lib/itsi/server/config/dsl.rb +98 -37
- data/gems/server/lib/itsi/server/config/known_paths/KitchensinkDirectories.txt +2346 -0
- data/gems/server/lib/itsi/server/config/known_paths/Randomfiles.txt +24 -0
- data/gems/server/lib/itsi/server/config/known_paths/UnixDotfiles.txt +52 -0
- data/gems/server/lib/itsi/server/config/known_paths/backdoors/ASP_CommonBackdoors.txt +29 -0
- data/gems/server/lib/itsi/server/config/known_paths/backdoors/bot_control_panels.txt +1668 -0
- data/gems/server/lib/itsi/server/config/known_paths/backdoors/shells.txt +1167 -0
- data/gems/server/lib/itsi/server/config/known_paths/cgi/CGI_HTTP_POST.txt +7 -0
- data/gems/server/lib/itsi/server/config/known_paths/cgi/CGI_HTTP_POST_Windows.txt +6 -0
- data/gems/server/lib/itsi/server/config/known_paths/cgi/CGI_Microsoft.txt +79 -0
- data/gems/server/lib/itsi/server/config/known_paths/cgi/CGI_XPlatform.txt +3948 -0
- data/gems/server/lib/itsi/server/config/known_paths/cms/README.md +5 -0
- data/gems/server/lib/itsi/server/config/known_paths/cms/drupal_plugins.txt +6320 -0
- data/gems/server/lib/itsi/server/config/known_paths/cms/drupal_themes.txt +828 -0
- data/gems/server/lib/itsi/server/config/known_paths/cms/joomla_plugins.txt +224 -0
- data/gems/server/lib/itsi/server/config/known_paths/cms/joomla_themes.txt +30 -0
- data/gems/server/lib/itsi/server/config/known_paths/cms/php-nuke.txt +2142 -0
- data/gems/server/lib/itsi/server/config/known_paths/cms/wordpress.txt +1566 -0
- data/gems/server/lib/itsi/server/config/known_paths/cms/wp_common_theme_files.txt +46 -0
- data/gems/server/lib/itsi/server/config/known_paths/cms/wp_plugins.txt +13366 -0
- data/gems/server/lib/itsi/server/config/known_paths/cms/wp_plugins_full.txt +68662 -0
- data/gems/server/lib/itsi/server/config/known_paths/cms/wp_plugins_top225.txt +225 -0
- data/gems/server/lib/itsi/server/config/known_paths/cms/wp_themes.readme +12 -0
- data/gems/server/lib/itsi/server/config/known_paths/cms/wp_themes.txt +7336 -0
- data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/3CharExtBrute.txt +17576 -0
- data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/CommonWebExtensions.txt +80 -0
- data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/Extensions.Backup.txt +14 -0
- data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/Extensions.Common.txt +865 -0
- data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/Extensions.Compressed.txt +186 -0
- data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/Extensions.Mostcommon.txt +30 -0
- data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/Extensions.Skipfish.txt +93 -0
- data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/WordlistSkipfish.txt +1918 -0
- data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/copy_of.txt +8 -0
- data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/raft-large-directories-lowercase.txt +56180 -0
- data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/raft-large-directories.txt +62290 -0
- data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/raft-large-extensions-lowercase.txt +2367 -0
- data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/raft-large-extensions.txt +2450 -0
- data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/raft-large-files-lowercase.txt +35323 -0
- data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/raft-large-files.txt +37037 -0
- data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/raft-large-words-lowercase.txt +107982 -0
- data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/raft-large-words.txt +119600 -0
- data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/raft-medium-directories-lowercase.txt +26593 -0
- data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/raft-medium-directories.txt +30009 -0
- data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/raft-medium-extensions-lowercase.txt +1233 -0
- data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/raft-medium-extensions.txt +1289 -0
- data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/raft-medium-files-lowercase.txt +16243 -0
- data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/raft-medium-files.txt +17128 -0
- data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/raft-medium-words-lowercase.txt +56293 -0
- data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/raft-medium-words.txt +63087 -0
- data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/raft-small-directories-lowercase.txt +17776 -0
- data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/raft-small-directories.txt +20122 -0
- data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/raft-small-extensions-lowercase.txt +914 -0
- data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/raft-small-extensions.txt +963 -0
- data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/raft-small-files-lowercase.txt +10848 -0
- data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/raft-small-files.txt +11424 -0
- data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/raft-small-words-lowercase.txt +38267 -0
- data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/raft-small-words.txt +43003 -0
- data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/spanish.txt +445 -0
- data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/test_demo.txt +36 -0
- data/gems/server/lib/itsi/server/config/known_paths/filename-dirname-bruteforce/upload_variants.txt +44 -0
- data/gems/server/lib/itsi/server/config/known_paths/login-file-locations/Logins.txt +71 -0
- data/gems/server/lib/itsi/server/config/known_paths/login-file-locations/cfm.txt +294 -0
- data/gems/server/lib/itsi/server/config/known_paths/login-file-locations/html.txt +295 -0
- data/gems/server/lib/itsi/server/config/known_paths/login-file-locations/jsp.txt +294 -0
- data/gems/server/lib/itsi/server/config/known_paths/login-file-locations/php.txt +294 -0
- data/gems/server/lib/itsi/server/config/known_paths/login-file-locations/windows-asp.txt +294 -0
- data/gems/server/lib/itsi/server/config/known_paths/login-file-locations/windows-aspx.txt +294 -0
- data/gems/server/lib/itsi/server/config/known_paths/password-file-locations/Passwords.txt +47 -0
- data/gems/server/lib/itsi/server/config/known_paths/php/PHP.txt +30 -0
- data/gems/server/lib/itsi/server/config/known_paths/php/PHP_CommonBackdoors.txt +5 -0
- data/gems/server/lib/itsi/server/config/known_paths/proxy-conf.txt +31 -0
- data/gems/server/lib/itsi/server/config/known_paths/tftp.txt +79 -0
- data/gems/server/lib/itsi/server/config/known_paths/webservers-appservers/ADFS.txt +86 -0
- data/gems/server/lib/itsi/server/config/known_paths/webservers-appservers/AdobeXML.txt +16 -0
- data/gems/server/lib/itsi/server/config/known_paths/webservers-appservers/Apache.txt +101 -0
- data/gems/server/lib/itsi/server/config/known_paths/webservers-appservers/ApacheTomcat.txt +47 -0
- data/gems/server/lib/itsi/server/config/known_paths/webservers-appservers/Apache_Axis.txt +16 -0
- data/gems/server/lib/itsi/server/config/known_paths/webservers-appservers/ColdFusion.txt +111 -0
- data/gems/server/lib/itsi/server/config/known_paths/webservers-appservers/FatwireCMS.txt +390 -0
- data/gems/server/lib/itsi/server/config/known_paths/webservers-appservers/Frontpage.txt +38 -0
- data/gems/server/lib/itsi/server/config/known_paths/webservers-appservers/HP_System_Mgmt_Homepage.txt +239 -0
- data/gems/server/lib/itsi/server/config/known_paths/webservers-appservers/HTTP_POST_Microsoft.txt +2 -0
- data/gems/server/lib/itsi/server/config/known_paths/webservers-appservers/Hyperion.txt +578 -0
- data/gems/server/lib/itsi/server/config/known_paths/webservers-appservers/IIS.txt +187 -0
- data/gems/server/lib/itsi/server/config/known_paths/webservers-appservers/JBoss.txt +5 -0
- data/gems/server/lib/itsi/server/config/known_paths/webservers-appservers/JRun.txt +13 -0
- data/gems/server/lib/itsi/server/config/known_paths/webservers-appservers/JavaServlets_Common.txt +3 -0
- data/gems/server/lib/itsi/server/config/known_paths/webservers-appservers/Joomla_exploitable.txt +1937 -0
- data/gems/server/lib/itsi/server/config/known_paths/webservers-appservers/LotusNotes.txt +206 -0
- data/gems/server/lib/itsi/server/config/known_paths/webservers-appservers/Netware.txt +18 -0
- data/gems/server/lib/itsi/server/config/known_paths/webservers-appservers/Oracle9i.txt +60 -0
- data/gems/server/lib/itsi/server/config/known_paths/webservers-appservers/OracleAppServer.txt +192 -0
- data/gems/server/lib/itsi/server/config/known_paths/webservers-appservers/README.md +6 -0
- data/gems/server/lib/itsi/server/config/known_paths/webservers-appservers/Ruby_Rails.txt +121 -0
- data/gems/server/lib/itsi/server/config/known_paths/webservers-appservers/SAP.txt +463 -0
- data/gems/server/lib/itsi/server/config/known_paths/webservers-appservers/Sharepoint.txt +1707 -0
- data/gems/server/lib/itsi/server/config/known_paths/webservers-appservers/SiteMinder.txt +19 -0
- data/gems/server/lib/itsi/server/config/known_paths/webservers-appservers/SunAppServerGlassfish.txt +51 -0
- data/gems/server/lib/itsi/server/config/known_paths/webservers-appservers/SuniPlanet.txt +35 -0
- data/gems/server/lib/itsi/server/config/known_paths/webservers-appservers/Vignette.txt +73 -0
- data/gems/server/lib/itsi/server/config/known_paths/webservers-appservers/Weblogic.txt +160 -0
- data/gems/server/lib/itsi/server/config/known_paths/webservers-appservers/Websphere.txt +366 -0
- data/gems/server/lib/itsi/server/config/known_paths/wellknown-rfc5785.txt +30 -0
- data/gems/server/lib/itsi/server/config/known_paths.rb +17 -0
- data/gems/server/lib/itsi/server/config/middleware/_index.md +54 -0
- data/gems/server/lib/itsi/server/config/middleware/log_requests.md +63 -0
- data/gems/server/lib/itsi/server/config/middleware/log_requests.rb +33 -0
- data/gems/server/lib/itsi/server/config/middleware.rb +9 -0
- data/gems/server/lib/itsi/server/config/option.rb +9 -0
- data/gems/server/lib/itsi/server/config/options/_index.md +36 -0
- data/gems/server/lib/itsi/server/config/options/fiber_scheduler.md +35 -0
- data/gems/server/lib/itsi/server/config/options/fiber_scheduler.rb +18 -0
- data/gems/server/lib/itsi/server/config/options/threads.md +39 -0
- data/gems/server/lib/itsi/server/config/options/threads.rb +17 -0
- data/gems/server/lib/itsi/server/config/options/workers.md +43 -0
- data/gems/server/lib/itsi/server/config/options/workers.rb +17 -0
- data/gems/server/lib/itsi/server/config/typed_struct.rb +203 -0
- data/gems/server/lib/itsi/server/config.rb +124 -30
- data/gems/server/lib/itsi/server/signal_trap.rb +5 -1
- data/gems/server/lib/itsi/server/typed_handlers/source_parser.rb +1 -1
- data/gems/server/lib/itsi/server/version.rb +1 -1
- data/gems/server/lib/itsi/server.rb +27 -6
- data/gems/server/lib/ruby_lsp/itsi/addon.rb +64 -48
- data/gems/server/test/helpers/test_helper.rb +64 -5
- data/gems/server/test/middleware/test_log_requests.rb +17 -0
- data/gems/server/test/options/test_threads.rb +15 -0
- data/gems/server/test/options/test_workers.rb +18 -0
- data/gems/server/test/test_itsi_server.rb +81 -94
- data/itsi-scheduler-100.png +0 -0
- data/itsi-server-100.png +0 -0
- data/lib/itsi/version.rb +1 -1
- data/tasks.txt +36 -28
- metadata +147 -215
- data/crates/_index.md +0 -0
- data/crates/itsi_server/src/ruby_types/README.md +0 -21
- data/crates/itsi_server/test.md +0 -14
- data/docs/Itsi.rb +0 -17
- data/docs/content/about.md +0 -6
- data/docs/content/docs/_index.md +0 -18
- data/docs/content/docs/first-page.md +0 -9
- data/docs/content/docs/folder/_index.md +0 -10
- data/docs/content/docs/folder/leaf.md +0 -7
- data/foo/Itsi.rb +0 -122
- data/gems/_index.md +0 -18
- data/gems/scheduler/CHANGELOG.md +0 -5
- data/gems/scheduler/CODE_OF_CONDUCT.md +0 -139
- data/gems/scheduler/LICENSE.txt +0 -21
- data/gems/scheduler/_index.md +0 -7
- data/gems/server/CHANGELOG.md +0 -10
- data/gems/server/CODE_OF_CONDUCT.md +0 -139
- data/gems/server/LICENSE.txt +0 -21
- data/gems/server/_index.md +0 -6
- data/sandbox/README.md +0 -5
- data/sandbox/deploy/main.tf +0 -238
- data/sandbox/deploy/outputs.tf +0 -4
- data/sandbox/deploy/vars.tf +0 -11
- data/sandbox/falcon_benchmark/Gemfile +0 -10
- data/sandbox/falcon_benchmark/Gemfile.lock +0 -140
- data/sandbox/falcon_benchmark/config.ru +0 -54
- data/sandbox/itsi_file/Gemfile +0 -13
- data/sandbox/itsi_file/Gemfile.lock +0 -111
- data/sandbox/itsi_file/Itsi.rb +0 -473
- data/sandbox/itsi_file/call.json +0 -1
- data/sandbox/itsi_file/echo_client/Gemfile +0 -10
- data/sandbox/itsi_file/echo_client/Gemfile.lock +0 -27
- data/sandbox/itsi_file/echo_client/README.md +0 -95
- data/sandbox/itsi_file/echo_client/echo_client.rb +0 -164
- data/sandbox/itsi_file/echo_client/gen_proto.sh +0 -17
- data/sandbox/itsi_file/echo_client/lib/echo_pb.rb +0 -16
- data/sandbox/itsi_file/echo_client/lib/echo_services_pb.rb +0 -29
- data/sandbox/itsi_file/echo_client/run_client.rb +0 -64
- data/sandbox/itsi_file/echo_client/test_compressions.sh +0 -20
- data/sandbox/itsi_file/echo_service_nonitsi/Gemfile +0 -10
- data/sandbox/itsi_file/echo_service_nonitsi/Gemfile.lock +0 -79
- data/sandbox/itsi_file/echo_service_nonitsi/echo.proto +0 -26
- data/sandbox/itsi_file/echo_service_nonitsi/echo_pb.rb +0 -16
- data/sandbox/itsi_file/echo_service_nonitsi/echo_services_pb.rb +0 -29
- data/sandbox/itsi_file/echo_service_nonitsi/server.rb +0 -52
- data/sandbox/itsi_file/error.html +0 -2
- data/sandbox/itsi_file/organisations_controller.rb +0 -20
- data/sandbox/itsi_file/public/assets/image.png +0 -0
- data/sandbox/itsi_sandbox_async/Gemfile +0 -10
- data/sandbox/itsi_sandbox_async/Gemfile.lock +0 -69
- data/sandbox/itsi_sandbox_async/config.ru +0 -9
- data/sandbox/itsi_sandbox_hanami/.env +0 -2
- data/sandbox/itsi_sandbox_hanami/.gitignore +0 -6
- data/sandbox/itsi_sandbox_hanami/.rspec +0 -1
- data/sandbox/itsi_sandbox_hanami/Gemfile +0 -49
- data/sandbox/itsi_sandbox_hanami/Gemfile.lock +0 -440
- data/sandbox/itsi_sandbox_hanami/Guardfile +0 -9
- data/sandbox/itsi_sandbox_hanami/Procfile.dev +0 -2
- data/sandbox/itsi_sandbox_hanami/README.md +0 -1
- data/sandbox/itsi_sandbox_hanami/Rakefile +0 -3
- data/sandbox/itsi_sandbox_hanami/app/action.rb +0 -12
- data/sandbox/itsi_sandbox_hanami/app/actions/.keep +0 -0
- data/sandbox/itsi_sandbox_hanami/app/assets/css/app.css +0 -5
- data/sandbox/itsi_sandbox_hanami/app/assets/images/favicon.ico +0 -0
- data/sandbox/itsi_sandbox_hanami/app/assets/js/app.js +0 -1
- data/sandbox/itsi_sandbox_hanami/app/db/relation.rb +0 -10
- data/sandbox/itsi_sandbox_hanami/app/db/repo.rb +0 -10
- data/sandbox/itsi_sandbox_hanami/app/db/struct.rb +0 -10
- data/sandbox/itsi_sandbox_hanami/app/operation.rb +0 -9
- data/sandbox/itsi_sandbox_hanami/app/relations/.keep +0 -0
- data/sandbox/itsi_sandbox_hanami/app/repos/.keep +0 -0
- data/sandbox/itsi_sandbox_hanami/app/structs/.keep +0 -0
- data/sandbox/itsi_sandbox_hanami/app/templates/layouts/app.html.erb +0 -14
- data/sandbox/itsi_sandbox_hanami/app/view.rb +0 -9
- data/sandbox/itsi_sandbox_hanami/app/views/helpers.rb +0 -10
- data/sandbox/itsi_sandbox_hanami/bin/dev +0 -8
- data/sandbox/itsi_sandbox_hanami/config/app.rb +0 -8
- data/sandbox/itsi_sandbox_hanami/config/assets.js +0 -16
- data/sandbox/itsi_sandbox_hanami/config/db/migrate/.keep +0 -0
- data/sandbox/itsi_sandbox_hanami/config/db/seeds.rb +0 -15
- data/sandbox/itsi_sandbox_hanami/config/puma.rb +0 -47
- data/sandbox/itsi_sandbox_hanami/config/routes.rb +0 -7
- data/sandbox/itsi_sandbox_hanami/config/settings.rb +0 -9
- data/sandbox/itsi_sandbox_hanami/config.ru +0 -5
- data/sandbox/itsi_sandbox_hanami/db/.keep +0 -0
- data/sandbox/itsi_sandbox_hanami/lib/itsi_hanami/types.rb +0 -11
- data/sandbox/itsi_sandbox_hanami/lib/tasks/.keep +0 -0
- data/sandbox/itsi_sandbox_hanami/package-lock.json +0 -946
- data/sandbox/itsi_sandbox_hanami/package.json +0 -8
- data/sandbox/itsi_sandbox_hanami/spec/requests/root_spec.rb +0 -11
- data/sandbox/itsi_sandbox_hanami/spec/spec_helper.rb +0 -9
- data/sandbox/itsi_sandbox_hanami/spec/support/db/cleaning.rb +0 -42
- data/sandbox/itsi_sandbox_hanami/spec/support/db.rb +0 -10
- data/sandbox/itsi_sandbox_hanami/spec/support/features.rb +0 -5
- data/sandbox/itsi_sandbox_hanami/spec/support/operations.rb +0 -8
- data/sandbox/itsi_sandbox_hanami/spec/support/requests.rb +0 -13
- data/sandbox/itsi_sandbox_hanami/spec/support/rspec.rb +0 -61
- data/sandbox/itsi_sandbox_rack/Gemfile +0 -17
- data/sandbox/itsi_sandbox_rack/Gemfile.lock +0 -153
- data/sandbox/itsi_sandbox_rack/config.ru +0 -5
- data/sandbox/itsi_sandbox_rack_lint/Gemfile +0 -7
- data/sandbox/itsi_sandbox_rack_lint/Gemfile.lock +0 -27
- data/sandbox/itsi_sandbox_rack_lint/config.ru +0 -3
- data/sandbox/itsi_sandbox_rails/.dockerignore +0 -48
- data/sandbox/itsi_sandbox_rails/.gitattributes +0 -9
- data/sandbox/itsi_sandbox_rails/.github/dependabot.yml +0 -12
- data/sandbox/itsi_sandbox_rails/.github/workflows/ci.yml +0 -90
- data/sandbox/itsi_sandbox_rails/.gitignore +0 -35
- data/sandbox/itsi_sandbox_rails/.rubocop.yml +0 -8
- data/sandbox/itsi_sandbox_rails/.ruby-version +0 -1
- data/sandbox/itsi_sandbox_rails/Dockerfile +0 -69
- data/sandbox/itsi_sandbox_rails/Gemfile +0 -66
- data/sandbox/itsi_sandbox_rails/Gemfile.lock +0 -429
- data/sandbox/itsi_sandbox_rails/README.md +0 -24
- data/sandbox/itsi_sandbox_rails/Rakefile +0 -6
- data/sandbox/itsi_sandbox_rails/app/assets/config/manifest.js +0 -4
- data/sandbox/itsi_sandbox_rails/app/assets/images/.keep +0 -0
- data/sandbox/itsi_sandbox_rails/app/assets/stylesheets/application.css +0 -15
- data/sandbox/itsi_sandbox_rails/app/channels/application_cable/channel.rb +0 -4
- data/sandbox/itsi_sandbox_rails/app/channels/application_cable/connection.rb +0 -4
- data/sandbox/itsi_sandbox_rails/app/controllers/application_controller.rb +0 -4
- data/sandbox/itsi_sandbox_rails/app/controllers/concerns/.keep +0 -0
- data/sandbox/itsi_sandbox_rails/app/controllers/home_controller.rb +0 -66
- data/sandbox/itsi_sandbox_rails/app/controllers/live_controller.rb +0 -40
- data/sandbox/itsi_sandbox_rails/app/controllers/uploads_controller.rb +0 -29
- data/sandbox/itsi_sandbox_rails/app/helpers/application_helper.rb +0 -2
- data/sandbox/itsi_sandbox_rails/app/javascript/application.js +0 -3
- data/sandbox/itsi_sandbox_rails/app/javascript/controllers/application.js +0 -9
- data/sandbox/itsi_sandbox_rails/app/javascript/controllers/hello_controller.js +0 -7
- data/sandbox/itsi_sandbox_rails/app/javascript/controllers/index.js +0 -4
- data/sandbox/itsi_sandbox_rails/app/jobs/application_job.rb +0 -7
- data/sandbox/itsi_sandbox_rails/app/mailers/application_mailer.rb +0 -4
- data/sandbox/itsi_sandbox_rails/app/models/application_record.rb +0 -3
- data/sandbox/itsi_sandbox_rails/app/models/concerns/.keep +0 -0
- data/sandbox/itsi_sandbox_rails/app/models/post.rb +0 -2
- data/sandbox/itsi_sandbox_rails/app/views/layouts/application.html.erb +0 -23
- data/sandbox/itsi_sandbox_rails/app/views/layouts/mailer.html.erb +0 -13
- data/sandbox/itsi_sandbox_rails/app/views/layouts/mailer.text.erb +0 -1
- data/sandbox/itsi_sandbox_rails/app/views/pwa/manifest.json.erb +0 -22
- data/sandbox/itsi_sandbox_rails/app/views/pwa/service-worker.js +0 -26
- data/sandbox/itsi_sandbox_rails/bin/brakeman +0 -7
- data/sandbox/itsi_sandbox_rails/bin/bundle +0 -109
- data/sandbox/itsi_sandbox_rails/bin/docker-entrypoint +0 -13
- data/sandbox/itsi_sandbox_rails/bin/importmap +0 -4
- data/sandbox/itsi_sandbox_rails/bin/rails +0 -4
- data/sandbox/itsi_sandbox_rails/bin/rake +0 -4
- data/sandbox/itsi_sandbox_rails/bin/rubocop +0 -8
- data/sandbox/itsi_sandbox_rails/bin/setup +0 -37
- data/sandbox/itsi_sandbox_rails/config/application.rb +0 -27
- data/sandbox/itsi_sandbox_rails/config/boot.rb +0 -4
- data/sandbox/itsi_sandbox_rails/config/cable.yml +0 -10
- data/sandbox/itsi_sandbox_rails/config/credentials.yml.enc +0 -1
- data/sandbox/itsi_sandbox_rails/config/database.yml +0 -30
- data/sandbox/itsi_sandbox_rails/config/environment.rb +0 -5
- data/sandbox/itsi_sandbox_rails/config/environments/development.rb +0 -82
- data/sandbox/itsi_sandbox_rails/config/environments/production.rb +0 -106
- data/sandbox/itsi_sandbox_rails/config/environments/test.rb +0 -67
- data/sandbox/itsi_sandbox_rails/config/importmap.rb +0 -7
- data/sandbox/itsi_sandbox_rails/config/initializers/assets.rb +0 -12
- data/sandbox/itsi_sandbox_rails/config/initializers/content_security_policy.rb +0 -25
- data/sandbox/itsi_sandbox_rails/config/initializers/filter_parameter_logging.rb +0 -8
- data/sandbox/itsi_sandbox_rails/config/initializers/inflections.rb +0 -16
- data/sandbox/itsi_sandbox_rails/config/initializers/permissions_policy.rb +0 -13
- data/sandbox/itsi_sandbox_rails/config/locales/en.yml +0 -31
- data/sandbox/itsi_sandbox_rails/config/puma.rb +0 -34
- data/sandbox/itsi_sandbox_rails/config/routes.rb +0 -23
- data/sandbox/itsi_sandbox_rails/config/storage.yml +0 -34
- data/sandbox/itsi_sandbox_rails/config.ru +0 -6
- data/sandbox/itsi_sandbox_rails/db/migrate/20250301041554_create_posts.rb +0 -10
- data/sandbox/itsi_sandbox_rails/db/schema.rb +0 -23
- data/sandbox/itsi_sandbox_rails/db/seeds.rb +0 -9
- data/sandbox/itsi_sandbox_rails/lib/assets/.keep +0 -0
- data/sandbox/itsi_sandbox_rails/lib/tasks/.keep +0 -0
- data/sandbox/itsi_sandbox_rails/log/.keep +0 -0
- data/sandbox/itsi_sandbox_rails/public/404.html +0 -67
- data/sandbox/itsi_sandbox_rails/public/406-unsupported-browser.html +0 -66
- data/sandbox/itsi_sandbox_rails/public/422.html +0 -67
- data/sandbox/itsi_sandbox_rails/public/500.html +0 -66
- data/sandbox/itsi_sandbox_rails/public/icon.png +0 -0
- data/sandbox/itsi_sandbox_rails/public/icon.svg +0 -3
- data/sandbox/itsi_sandbox_rails/public/robots.txt +0 -1
- data/sandbox/itsi_sandbox_rails/storage/.keep +0 -0
- data/sandbox/itsi_sandbox_rails/test/application_system_test_case.rb +0 -5
- data/sandbox/itsi_sandbox_rails/test/channels/application_cable/connection_test.rb +0 -13
- data/sandbox/itsi_sandbox_rails/test/controllers/.keep +0 -0
- data/sandbox/itsi_sandbox_rails/test/fixtures/files/.keep +0 -0
- data/sandbox/itsi_sandbox_rails/test/helpers/.keep +0 -0
- data/sandbox/itsi_sandbox_rails/test/integration/.keep +0 -0
- data/sandbox/itsi_sandbox_rails/test/mailers/.keep +0 -0
- data/sandbox/itsi_sandbox_rails/test/models/.keep +0 -0
- data/sandbox/itsi_sandbox_rails/test/system/.keep +0 -0
- data/sandbox/itsi_sandbox_rails/test/test_helper.rb +0 -15
- data/sandbox/itsi_sandbox_rails/tmp/.keep +0 -0
- data/sandbox/itsi_sandbox_rails/tmp/pids/.keep +0 -0
- data/sandbox/itsi_sandbox_rails/tmp/storage/.keep +0 -0
- data/sandbox/itsi_sandbox_rails/vendor/.keep +0 -0
- data/sandbox/itsi_sandbox_rails/vendor/javascript/.keep +0 -0
- data/sandbox/itsi_sandbox_roda/Gemfile +0 -5
- data/sandbox/itsi_sandbox_roda/Gemfile.lock +0 -37
- data/sandbox/itsi_sandbox_roda/config.ru +0 -39
- data/sandbox/itsi_sinatra/Gemfile +0 -9
- data/sandbox/itsi_sinatra/Gemfile.lock +0 -81
- data/sandbox/itsi_sinatra/app.rb +0 -8
- data/sandbox/pebble/docker-compose.yml +0 -11
- data/sandbox/static_files/.env +0 -1
- data/sandbox/static_files/404.html +0 -25
- data/sandbox/static_files/_DSC0102.NEF.jpg +0 -0
- data/sandbox/static_files/about.html +0 -68
- data/sandbox/static_files/tiny.html +0 -1
- data/sandbox/static_files/writebook.zip +0 -0
@@ -0,0 +1,949 @@
|
|
1
|
+
ruby: |
|
2
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
3
|
+
<!-- Generator: Adobe Illustrator 12.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 51448) -->
|
4
|
+
|
5
|
+
<svg
|
6
|
+
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
7
|
+
xmlns:cc="http://creativecommons.org/ns#"
|
8
|
+
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
9
|
+
xmlns:svg="http://www.w3.org/2000/svg"
|
10
|
+
xmlns="http://www.w3.org/2000/svg"
|
11
|
+
xmlns:xlink="http://www.w3.org/1999/xlink"
|
12
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
13
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
14
|
+
version="1.1"
|
15
|
+
id="Layer_1"
|
16
|
+
width="25"
|
17
|
+
height="25"
|
18
|
+
viewBox="-5 5 205 205"
|
19
|
+
overflow="visible"
|
20
|
+
enable-background="new -5 5 205 205"
|
21
|
+
xml:space="preserve"
|
22
|
+
inkscape:version="0.48.0 r9654"
|
23
|
+
sodipodi:docname="Logo-Ruby.svg"><metadata
|
24
|
+
id="metadata3320"><rdf:RDF><cc:Work
|
25
|
+
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
26
|
+
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><defs
|
27
|
+
id="defs3489"><linearGradient
|
28
|
+
id="XMLID_17_-9"
|
29
|
+
gradientUnits="userSpaceOnUse"
|
30
|
+
x1="174.0737"
|
31
|
+
y1="215.5488"
|
32
|
+
x2="132.27631"
|
33
|
+
y2="141.7533"><stop
|
34
|
+
offset="0"
|
35
|
+
style="stop-color:#FB7655"
|
36
|
+
id="stop3272-4" /><stop
|
37
|
+
offset="0"
|
38
|
+
style="stop-color:#FB7655"
|
39
|
+
id="stop3274-5" /><stop
|
40
|
+
offset="0.41"
|
41
|
+
style="stop-color:#E42B1E"
|
42
|
+
id="stop3276-1" /><stop
|
43
|
+
offset="0.99"
|
44
|
+
style="stop-color:#990000"
|
45
|
+
id="stop3278-0" /><stop
|
46
|
+
offset="1"
|
47
|
+
style="stop-color:#990000"
|
48
|
+
id="stop3280-3" /></linearGradient><linearGradient
|
49
|
+
id="XMLID_18_-7"
|
50
|
+
gradientUnits="userSpaceOnUse"
|
51
|
+
x1="194.895"
|
52
|
+
y1="153.5576"
|
53
|
+
x2="141.0276"
|
54
|
+
y2="117.4093"><stop
|
55
|
+
offset="0"
|
56
|
+
style="stop-color:#871101"
|
57
|
+
id="stop3285-8" /><stop
|
58
|
+
offset="0"
|
59
|
+
style="stop-color:#871101"
|
60
|
+
id="stop3287-8" /><stop
|
61
|
+
offset="0.99"
|
62
|
+
style="stop-color:#911209"
|
63
|
+
id="stop3289-6" /><stop
|
64
|
+
offset="1"
|
65
|
+
style="stop-color:#911209"
|
66
|
+
id="stop3291-0" /></linearGradient><linearGradient
|
67
|
+
id="XMLID_19_-4"
|
68
|
+
gradientUnits="userSpaceOnUse"
|
69
|
+
x1="151.79539"
|
70
|
+
y1="217.7852"
|
71
|
+
x2="97.929703"
|
72
|
+
y2="181.638"><stop
|
73
|
+
offset="0"
|
74
|
+
style="stop-color:#871101"
|
75
|
+
id="stop3296-6" /><stop
|
76
|
+
offset="0"
|
77
|
+
style="stop-color:#871101"
|
78
|
+
id="stop3298-7" /><stop
|
79
|
+
offset="0.99"
|
80
|
+
style="stop-color:#911209"
|
81
|
+
id="stop3300-6" /><stop
|
82
|
+
offset="1"
|
83
|
+
style="stop-color:#911209"
|
84
|
+
id="stop3302-0" /></linearGradient><linearGradient
|
85
|
+
id="XMLID_20_-9"
|
86
|
+
gradientUnits="userSpaceOnUse"
|
87
|
+
x1="38.696301"
|
88
|
+
y1="127.3906"
|
89
|
+
x2="47.046902"
|
90
|
+
y2="181.66141"><stop
|
91
|
+
offset="0"
|
92
|
+
style="stop-color:#FFFFFF"
|
93
|
+
id="stop3307-7" /><stop
|
94
|
+
offset="0"
|
95
|
+
style="stop-color:#FFFFFF"
|
96
|
+
id="stop3309-5" /><stop
|
97
|
+
offset="0.23"
|
98
|
+
style="stop-color:#E57252"
|
99
|
+
id="stop3311-9" /><stop
|
100
|
+
offset="0.46"
|
101
|
+
style="stop-color:#DE3B20"
|
102
|
+
id="stop3313-7" /><stop
|
103
|
+
offset="0.99"
|
104
|
+
style="stop-color:#A60003"
|
105
|
+
id="stop3315-8" /><stop
|
106
|
+
offset="1"
|
107
|
+
style="stop-color:#A60003"
|
108
|
+
id="stop3317-5" /></linearGradient><linearGradient
|
109
|
+
id="XMLID_21_-3"
|
110
|
+
gradientUnits="userSpaceOnUse"
|
111
|
+
x1="96.132797"
|
112
|
+
y1="76.715302"
|
113
|
+
x2="99.209602"
|
114
|
+
y2="132.1021"><stop
|
115
|
+
offset="0"
|
116
|
+
style="stop-color:#FFFFFF"
|
117
|
+
id="stop3322-3" /><stop
|
118
|
+
offset="0"
|
119
|
+
style="stop-color:#FFFFFF"
|
120
|
+
id="stop3324-8" /><stop
|
121
|
+
offset="0.23"
|
122
|
+
style="stop-color:#E4714E"
|
123
|
+
id="stop3326-3" /><stop
|
124
|
+
offset="0.56"
|
125
|
+
style="stop-color:#BE1A0D"
|
126
|
+
id="stop3328-7" /><stop
|
127
|
+
offset="0.99"
|
128
|
+
style="stop-color:#A80D00"
|
129
|
+
id="stop3330-9" /><stop
|
130
|
+
offset="1"
|
131
|
+
style="stop-color:#A80D00"
|
132
|
+
id="stop3332-3" /></linearGradient><linearGradient
|
133
|
+
id="XMLID_22_-7"
|
134
|
+
gradientUnits="userSpaceOnUse"
|
135
|
+
x1="147.103"
|
136
|
+
y1="25.521"
|
137
|
+
x2="156.3141"
|
138
|
+
y2="65.216202"><stop
|
139
|
+
offset="0"
|
140
|
+
style="stop-color:#FFFFFF"
|
141
|
+
id="stop3337-8" /><stop
|
142
|
+
offset="0"
|
143
|
+
style="stop-color:#FFFFFF"
|
144
|
+
id="stop3339-7" /><stop
|
145
|
+
offset="0.18"
|
146
|
+
style="stop-color:#E46342"
|
147
|
+
id="stop3341-4" /><stop
|
148
|
+
offset="0.4"
|
149
|
+
style="stop-color:#C82410"
|
150
|
+
id="stop3343-1" /><stop
|
151
|
+
offset="0.99"
|
152
|
+
style="stop-color:#A80D00"
|
153
|
+
id="stop3345-9" /><stop
|
154
|
+
offset="1"
|
155
|
+
style="stop-color:#A80D00"
|
156
|
+
id="stop3347-0" /></linearGradient><linearGradient
|
157
|
+
id="XMLID_23_-9"
|
158
|
+
gradientUnits="userSpaceOnUse"
|
159
|
+
x1="118.9761"
|
160
|
+
y1="11.5415"
|
161
|
+
x2="158.66859"
|
162
|
+
y2="-8.3048"><stop
|
163
|
+
offset="0"
|
164
|
+
style="stop-color:#FFFFFF"
|
165
|
+
id="stop3352-8" /><stop
|
166
|
+
offset="0"
|
167
|
+
style="stop-color:#FFFFFF"
|
168
|
+
id="stop3354-8" /><stop
|
169
|
+
offset="0.54"
|
170
|
+
style="stop-color:#C81F11"
|
171
|
+
id="stop3356-5" /><stop
|
172
|
+
offset="0.99"
|
173
|
+
style="stop-color:#BF0905"
|
174
|
+
id="stop3358-8" /><stop
|
175
|
+
offset="1"
|
176
|
+
style="stop-color:#BF0905"
|
177
|
+
id="stop3360-4" /></linearGradient><linearGradient
|
178
|
+
id="XMLID_24_-3"
|
179
|
+
gradientUnits="userSpaceOnUse"
|
180
|
+
x1="3.9033"
|
181
|
+
y1="113.5547"
|
182
|
+
x2="7.1701999"
|
183
|
+
y2="146.2628"><stop
|
184
|
+
offset="0"
|
185
|
+
style="stop-color:#FFFFFF"
|
186
|
+
id="stop3365-7" /><stop
|
187
|
+
offset="0"
|
188
|
+
style="stop-color:#FFFFFF"
|
189
|
+
id="stop3367-1" /><stop
|
190
|
+
offset="0.31"
|
191
|
+
style="stop-color:#DE4024"
|
192
|
+
id="stop3369-3" /><stop
|
193
|
+
offset="0.99"
|
194
|
+
style="stop-color:#BF190B"
|
195
|
+
id="stop3371-8" /><stop
|
196
|
+
offset="1"
|
197
|
+
style="stop-color:#BF190B"
|
198
|
+
id="stop3373-0" /></linearGradient><linearGradient
|
199
|
+
id="XMLID_25_-9"
|
200
|
+
gradientUnits="userSpaceOnUse"
|
201
|
+
x1="-18.5557"
|
202
|
+
y1="155.10451"
|
203
|
+
x2="135.0152"
|
204
|
+
y2="-2.8092999"><stop
|
205
|
+
offset="0"
|
206
|
+
style="stop-color:#BD0012"
|
207
|
+
id="stop3380-7" /><stop
|
208
|
+
offset="0"
|
209
|
+
style="stop-color:#BD0012"
|
210
|
+
id="stop3382-9" /><stop
|
211
|
+
offset="0.07"
|
212
|
+
style="stop-color:#FFFFFF"
|
213
|
+
id="stop3384-9" /><stop
|
214
|
+
offset="0.17"
|
215
|
+
style="stop-color:#FFFFFF"
|
216
|
+
id="stop3386-3" /><stop
|
217
|
+
offset="0.27"
|
218
|
+
style="stop-color:#C82F1C"
|
219
|
+
id="stop3388-2" /><stop
|
220
|
+
offset="0.33"
|
221
|
+
style="stop-color:#820C01"
|
222
|
+
id="stop3390-4" /><stop
|
223
|
+
offset="0.46"
|
224
|
+
style="stop-color:#A31601"
|
225
|
+
id="stop3392-3" /><stop
|
226
|
+
offset="0.72"
|
227
|
+
style="stop-color:#B31301"
|
228
|
+
id="stop3394-7" /><stop
|
229
|
+
offset="0.99"
|
230
|
+
style="stop-color:#E82609"
|
231
|
+
id="stop3396-1" /><stop
|
232
|
+
offset="1"
|
233
|
+
style="stop-color:#E82609"
|
234
|
+
id="stop3398-2" /></linearGradient><linearGradient
|
235
|
+
id="XMLID_26_-2"
|
236
|
+
gradientUnits="userSpaceOnUse"
|
237
|
+
x1="99.074699"
|
238
|
+
y1="171.0332"
|
239
|
+
x2="52.817699"
|
240
|
+
y2="159.61659"><stop
|
241
|
+
offset="0"
|
242
|
+
style="stop-color:#8C0C01"
|
243
|
+
id="stop3403-0" /><stop
|
244
|
+
offset="0"
|
245
|
+
style="stop-color:#8C0C01"
|
246
|
+
id="stop3405-2" /><stop
|
247
|
+
offset="0.54"
|
248
|
+
style="stop-color:#990C00"
|
249
|
+
id="stop3407-1" /><stop
|
250
|
+
offset="0.99"
|
251
|
+
style="stop-color:#A80D0E"
|
252
|
+
id="stop3409-7" /><stop
|
253
|
+
offset="1"
|
254
|
+
style="stop-color:#A80D0E"
|
255
|
+
id="stop3411-5" /></linearGradient><linearGradient
|
256
|
+
id="XMLID_27_-1"
|
257
|
+
gradientUnits="userSpaceOnUse"
|
258
|
+
x1="178.52589"
|
259
|
+
y1="115.5146"
|
260
|
+
x2="137.43269"
|
261
|
+
y2="78.683998"><stop
|
262
|
+
offset="0"
|
263
|
+
style="stop-color:#7E110B"
|
264
|
+
id="stop3416-7" /><stop
|
265
|
+
offset="0"
|
266
|
+
style="stop-color:#7E110B"
|
267
|
+
id="stop3418-4" /><stop
|
268
|
+
offset="0.99"
|
269
|
+
style="stop-color:#9E0C00"
|
270
|
+
id="stop3420-1" /><stop
|
271
|
+
offset="1"
|
272
|
+
style="stop-color:#9E0C00"
|
273
|
+
id="stop3422-7" /></linearGradient><linearGradient
|
274
|
+
id="XMLID_28_-1"
|
275
|
+
gradientUnits="userSpaceOnUse"
|
276
|
+
x1="193.6235"
|
277
|
+
y1="47.937"
|
278
|
+
x2="173.15421"
|
279
|
+
y2="26.053801"><stop
|
280
|
+
offset="0"
|
281
|
+
style="stop-color:#79130D"
|
282
|
+
id="stop3427-1" /><stop
|
283
|
+
offset="0"
|
284
|
+
style="stop-color:#79130D"
|
285
|
+
id="stop3429-1" /><stop
|
286
|
+
offset="0.99"
|
287
|
+
style="stop-color:#9E120B"
|
288
|
+
id="stop3431-7" /><stop
|
289
|
+
offset="1"
|
290
|
+
style="stop-color:#9E120B"
|
291
|
+
id="stop3433-0" /></linearGradient><radialGradient
|
292
|
+
id="XMLID_29_-4"
|
293
|
+
cx="143.8315"
|
294
|
+
cy="79.388199"
|
295
|
+
r="50.357601"
|
296
|
+
gradientUnits="userSpaceOnUse"><stop
|
297
|
+
offset="0"
|
298
|
+
style="stop-color:#A80D00"
|
299
|
+
id="stop3440-0" /><stop
|
300
|
+
offset="0"
|
301
|
+
style="stop-color:#A80D00"
|
302
|
+
id="stop3442-8" /><stop
|
303
|
+
offset="0.99"
|
304
|
+
style="stop-color:#7E0E08"
|
305
|
+
id="stop3444-5" /><stop
|
306
|
+
offset="1"
|
307
|
+
style="stop-color:#7E0E08"
|
308
|
+
id="stop3446-1" /></radialGradient><radialGradient
|
309
|
+
id="XMLID_30_-6"
|
310
|
+
cx="74.0923"
|
311
|
+
cy="145.75101"
|
312
|
+
r="66.943703"
|
313
|
+
gradientUnits="userSpaceOnUse"><stop
|
314
|
+
offset="0"
|
315
|
+
style="stop-color:#A30C00"
|
316
|
+
id="stop3451-6" /><stop
|
317
|
+
offset="0"
|
318
|
+
style="stop-color:#A30C00"
|
319
|
+
id="stop3453-2" /><stop
|
320
|
+
offset="0.99"
|
321
|
+
style="stop-color:#800E08"
|
322
|
+
id="stop3455-1" /><stop
|
323
|
+
offset="1"
|
324
|
+
style="stop-color:#800E08"
|
325
|
+
id="stop3457-9" /></radialGradient><linearGradient
|
326
|
+
id="XMLID_31_-6"
|
327
|
+
gradientUnits="userSpaceOnUse"
|
328
|
+
x1="26.669901"
|
329
|
+
y1="197.33591"
|
330
|
+
x2="9.9886999"
|
331
|
+
y2="140.742"><stop
|
332
|
+
offset="0"
|
333
|
+
style="stop-color:#8B2114"
|
334
|
+
id="stop3462-4" /><stop
|
335
|
+
offset="0"
|
336
|
+
style="stop-color:#8B2114"
|
337
|
+
id="stop3464-8" /><stop
|
338
|
+
offset="0.43"
|
339
|
+
style="stop-color:#9E100A"
|
340
|
+
id="stop3466-0" /><stop
|
341
|
+
offset="0.99"
|
342
|
+
style="stop-color:#B3100C"
|
343
|
+
id="stop3468-8" /><stop
|
344
|
+
offset="1"
|
345
|
+
style="stop-color:#B3100C"
|
346
|
+
id="stop3470-1" /></linearGradient><linearGradient
|
347
|
+
id="XMLID_32_-0"
|
348
|
+
gradientUnits="userSpaceOnUse"
|
349
|
+
x1="154.6411"
|
350
|
+
y1="9.7979002"
|
351
|
+
x2="192.039"
|
352
|
+
y2="26.305901"><stop
|
353
|
+
offset="0"
|
354
|
+
style="stop-color:#B31000"
|
355
|
+
id="stop3475-2" /><stop
|
356
|
+
offset="0"
|
357
|
+
style="stop-color:#B31000"
|
358
|
+
id="stop3477-2" /><stop
|
359
|
+
offset="0.44"
|
360
|
+
style="stop-color:#910F08"
|
361
|
+
id="stop3479-9" /><stop
|
362
|
+
offset="0.99"
|
363
|
+
style="stop-color:#791C12"
|
364
|
+
id="stop3481-7" /><stop
|
365
|
+
offset="1"
|
366
|
+
style="stop-color:#791C12"
|
367
|
+
id="stop3483-5" /></linearGradient><linearGradient
|
368
|
+
y2="141.7533"
|
369
|
+
x2="132.27631"
|
370
|
+
y1="215.5488"
|
371
|
+
x1="174.0737"
|
372
|
+
gradientUnits="userSpaceOnUse"
|
373
|
+
id="linearGradient3448"
|
374
|
+
xlink:href="#XMLID_17_-9"
|
375
|
+
inkscape:collect="always" /></defs><sodipodi:namedview
|
376
|
+
pagecolor="#ffffff"
|
377
|
+
bordercolor="#666666"
|
378
|
+
borderopacity="1"
|
379
|
+
objecttolerance="10"
|
380
|
+
gridtolerance="10"
|
381
|
+
guidetolerance="10"
|
382
|
+
inkscape:pageopacity="0"
|
383
|
+
inkscape:pageshadow="2"
|
384
|
+
inkscape:window-width="1036"
|
385
|
+
inkscape:window-height="1124"
|
386
|
+
id="namedview3487"
|
387
|
+
showgrid="false"
|
388
|
+
inkscape:zoom="1.3412289"
|
389
|
+
inkscape:cx="99.065005"
|
390
|
+
inkscape:cy="98.790004"
|
391
|
+
inkscape:window-x="882"
|
392
|
+
inkscape:window-y="24"
|
393
|
+
inkscape:window-maximized="0"
|
394
|
+
inkscape:current-layer="Layer_1" />
|
395
|
+
<linearGradient
|
396
|
+
id="XMLID_17_"
|
397
|
+
gradientUnits="userSpaceOnUse"
|
398
|
+
x1="174.0737"
|
399
|
+
y1="215.5488"
|
400
|
+
x2="132.2763"
|
401
|
+
y2="141.7533">
|
402
|
+
<stop
|
403
|
+
offset="0"
|
404
|
+
style="stop-color:#FB7655"
|
405
|
+
id="stop3272" />
|
406
|
+
<stop
|
407
|
+
offset="0"
|
408
|
+
style="stop-color:#FB7655"
|
409
|
+
id="stop3274" />
|
410
|
+
<stop
|
411
|
+
offset="0.41"
|
412
|
+
style="stop-color:#E42B1E"
|
413
|
+
id="stop3276" />
|
414
|
+
<stop
|
415
|
+
offset="0.99"
|
416
|
+
style="stop-color:#990000"
|
417
|
+
id="stop3278" />
|
418
|
+
<stop
|
419
|
+
offset="1"
|
420
|
+
style="stop-color:#990000"
|
421
|
+
id="stop3280" />
|
422
|
+
</linearGradient>
|
423
|
+
|
424
|
+
<linearGradient
|
425
|
+
id="XMLID_18_"
|
426
|
+
gradientUnits="userSpaceOnUse"
|
427
|
+
x1="194.895"
|
428
|
+
y1="153.5576"
|
429
|
+
x2="141.0276"
|
430
|
+
y2="117.4093">
|
431
|
+
<stop
|
432
|
+
offset="0"
|
433
|
+
style="stop-color:#871101"
|
434
|
+
id="stop3285" />
|
435
|
+
<stop
|
436
|
+
offset="0"
|
437
|
+
style="stop-color:#871101"
|
438
|
+
id="stop3287" />
|
439
|
+
<stop
|
440
|
+
offset="0.99"
|
441
|
+
style="stop-color:#911209"
|
442
|
+
id="stop3289" />
|
443
|
+
<stop
|
444
|
+
offset="1"
|
445
|
+
style="stop-color:#911209"
|
446
|
+
id="stop3291" />
|
447
|
+
</linearGradient>
|
448
|
+
|
449
|
+
<linearGradient
|
450
|
+
id="XMLID_19_"
|
451
|
+
gradientUnits="userSpaceOnUse"
|
452
|
+
x1="151.7954"
|
453
|
+
y1="217.7852"
|
454
|
+
x2="97.9297"
|
455
|
+
y2="181.638">
|
456
|
+
<stop
|
457
|
+
offset="0"
|
458
|
+
style="stop-color:#871101"
|
459
|
+
id="stop3296" />
|
460
|
+
<stop
|
461
|
+
offset="0"
|
462
|
+
style="stop-color:#871101"
|
463
|
+
id="stop3298" />
|
464
|
+
<stop
|
465
|
+
offset="0.99"
|
466
|
+
style="stop-color:#911209"
|
467
|
+
id="stop3300" />
|
468
|
+
<stop
|
469
|
+
offset="1"
|
470
|
+
style="stop-color:#911209"
|
471
|
+
id="stop3302" />
|
472
|
+
</linearGradient>
|
473
|
+
|
474
|
+
<linearGradient
|
475
|
+
id="XMLID_20_"
|
476
|
+
gradientUnits="userSpaceOnUse"
|
477
|
+
x1="38.6963"
|
478
|
+
y1="127.3906"
|
479
|
+
x2="47.0469"
|
480
|
+
y2="181.6614">
|
481
|
+
<stop
|
482
|
+
offset="0"
|
483
|
+
style="stop-color:#FFFFFF"
|
484
|
+
id="stop3307" />
|
485
|
+
<stop
|
486
|
+
offset="0"
|
487
|
+
style="stop-color:#FFFFFF"
|
488
|
+
id="stop3309" />
|
489
|
+
<stop
|
490
|
+
offset="0.23"
|
491
|
+
style="stop-color:#E57252"
|
492
|
+
id="stop3311" />
|
493
|
+
<stop
|
494
|
+
offset="0.46"
|
495
|
+
style="stop-color:#DE3B20"
|
496
|
+
id="stop3313" />
|
497
|
+
<stop
|
498
|
+
offset="0.99"
|
499
|
+
style="stop-color:#A60003"
|
500
|
+
id="stop3315" />
|
501
|
+
<stop
|
502
|
+
offset="1"
|
503
|
+
style="stop-color:#A60003"
|
504
|
+
id="stop3317" />
|
505
|
+
</linearGradient>
|
506
|
+
|
507
|
+
<linearGradient
|
508
|
+
id="XMLID_21_"
|
509
|
+
gradientUnits="userSpaceOnUse"
|
510
|
+
x1="96.1328"
|
511
|
+
y1="76.7153"
|
512
|
+
x2="99.2096"
|
513
|
+
y2="132.1021">
|
514
|
+
<stop
|
515
|
+
offset="0"
|
516
|
+
style="stop-color:#FFFFFF"
|
517
|
+
id="stop3322" />
|
518
|
+
<stop
|
519
|
+
offset="0"
|
520
|
+
style="stop-color:#FFFFFF"
|
521
|
+
id="stop3324" />
|
522
|
+
<stop
|
523
|
+
offset="0.23"
|
524
|
+
style="stop-color:#E4714E"
|
525
|
+
id="stop3326" />
|
526
|
+
<stop
|
527
|
+
offset="0.56"
|
528
|
+
style="stop-color:#BE1A0D"
|
529
|
+
id="stop3328" />
|
530
|
+
<stop
|
531
|
+
offset="0.99"
|
532
|
+
style="stop-color:#A80D00"
|
533
|
+
id="stop3330" />
|
534
|
+
<stop
|
535
|
+
offset="1"
|
536
|
+
style="stop-color:#A80D00"
|
537
|
+
id="stop3332" />
|
538
|
+
</linearGradient>
|
539
|
+
|
540
|
+
<linearGradient
|
541
|
+
id="XMLID_22_"
|
542
|
+
gradientUnits="userSpaceOnUse"
|
543
|
+
x1="147.103"
|
544
|
+
y1="25.521"
|
545
|
+
x2="156.3141"
|
546
|
+
y2="65.2162">
|
547
|
+
<stop
|
548
|
+
offset="0"
|
549
|
+
style="stop-color:#FFFFFF"
|
550
|
+
id="stop3337" />
|
551
|
+
<stop
|
552
|
+
offset="0"
|
553
|
+
style="stop-color:#FFFFFF"
|
554
|
+
id="stop3339" />
|
555
|
+
<stop
|
556
|
+
offset="0.18"
|
557
|
+
style="stop-color:#E46342"
|
558
|
+
id="stop3341" />
|
559
|
+
<stop
|
560
|
+
offset="0.4"
|
561
|
+
style="stop-color:#C82410"
|
562
|
+
id="stop3343" />
|
563
|
+
<stop
|
564
|
+
offset="0.99"
|
565
|
+
style="stop-color:#A80D00"
|
566
|
+
id="stop3345" />
|
567
|
+
<stop
|
568
|
+
offset="1"
|
569
|
+
style="stop-color:#A80D00"
|
570
|
+
id="stop3347" />
|
571
|
+
</linearGradient>
|
572
|
+
|
573
|
+
<linearGradient
|
574
|
+
id="XMLID_23_"
|
575
|
+
gradientUnits="userSpaceOnUse"
|
576
|
+
x1="118.9761"
|
577
|
+
y1="11.5415"
|
578
|
+
x2="158.6686"
|
579
|
+
y2="-8.3048">
|
580
|
+
<stop
|
581
|
+
offset="0"
|
582
|
+
style="stop-color:#FFFFFF"
|
583
|
+
id="stop3352" />
|
584
|
+
<stop
|
585
|
+
offset="0"
|
586
|
+
style="stop-color:#FFFFFF"
|
587
|
+
id="stop3354" />
|
588
|
+
<stop
|
589
|
+
offset="0.54"
|
590
|
+
style="stop-color:#C81F11"
|
591
|
+
id="stop3356" />
|
592
|
+
<stop
|
593
|
+
offset="0.99"
|
594
|
+
style="stop-color:#BF0905"
|
595
|
+
id="stop3358" />
|
596
|
+
<stop
|
597
|
+
offset="1"
|
598
|
+
style="stop-color:#BF0905"
|
599
|
+
id="stop3360" />
|
600
|
+
</linearGradient>
|
601
|
+
|
602
|
+
<linearGradient
|
603
|
+
id="XMLID_24_"
|
604
|
+
gradientUnits="userSpaceOnUse"
|
605
|
+
x1="3.9033"
|
606
|
+
y1="113.5547"
|
607
|
+
x2="7.1702"
|
608
|
+
y2="146.2628">
|
609
|
+
<stop
|
610
|
+
offset="0"
|
611
|
+
style="stop-color:#FFFFFF"
|
612
|
+
id="stop3365" />
|
613
|
+
<stop
|
614
|
+
offset="0"
|
615
|
+
style="stop-color:#FFFFFF"
|
616
|
+
id="stop3367" />
|
617
|
+
<stop
|
618
|
+
offset="0.31"
|
619
|
+
style="stop-color:#DE4024"
|
620
|
+
id="stop3369" />
|
621
|
+
<stop
|
622
|
+
offset="0.99"
|
623
|
+
style="stop-color:#BF190B"
|
624
|
+
id="stop3371" />
|
625
|
+
<stop
|
626
|
+
offset="1"
|
627
|
+
style="stop-color:#BF190B"
|
628
|
+
id="stop3373" />
|
629
|
+
</linearGradient>
|
630
|
+
|
631
|
+
|
632
|
+
<linearGradient
|
633
|
+
id="XMLID_25_"
|
634
|
+
gradientUnits="userSpaceOnUse"
|
635
|
+
x1="-18.5557"
|
636
|
+
y1="155.1045"
|
637
|
+
x2="135.0152"
|
638
|
+
y2="-2.8093">
|
639
|
+
<stop
|
640
|
+
offset="0"
|
641
|
+
style="stop-color:#BD0012"
|
642
|
+
id="stop3380" />
|
643
|
+
<stop
|
644
|
+
offset="0"
|
645
|
+
style="stop-color:#BD0012"
|
646
|
+
id="stop3382" />
|
647
|
+
<stop
|
648
|
+
offset="0.07"
|
649
|
+
style="stop-color:#FFFFFF"
|
650
|
+
id="stop3384" />
|
651
|
+
<stop
|
652
|
+
offset="0.17"
|
653
|
+
style="stop-color:#FFFFFF"
|
654
|
+
id="stop3386" />
|
655
|
+
<stop
|
656
|
+
offset="0.27"
|
657
|
+
style="stop-color:#C82F1C"
|
658
|
+
id="stop3388" />
|
659
|
+
<stop
|
660
|
+
offset="0.33"
|
661
|
+
style="stop-color:#820C01"
|
662
|
+
id="stop3390" />
|
663
|
+
<stop
|
664
|
+
offset="0.46"
|
665
|
+
style="stop-color:#A31601"
|
666
|
+
id="stop3392" />
|
667
|
+
<stop
|
668
|
+
offset="0.72"
|
669
|
+
style="stop-color:#B31301"
|
670
|
+
id="stop3394" />
|
671
|
+
<stop
|
672
|
+
offset="0.99"
|
673
|
+
style="stop-color:#E82609"
|
674
|
+
id="stop3396" />
|
675
|
+
<stop
|
676
|
+
offset="1"
|
677
|
+
style="stop-color:#E82609"
|
678
|
+
id="stop3398" />
|
679
|
+
</linearGradient>
|
680
|
+
|
681
|
+
<linearGradient
|
682
|
+
id="XMLID_26_"
|
683
|
+
gradientUnits="userSpaceOnUse"
|
684
|
+
x1="99.0747"
|
685
|
+
y1="171.0332"
|
686
|
+
x2="52.8177"
|
687
|
+
y2="159.6166">
|
688
|
+
<stop
|
689
|
+
offset="0"
|
690
|
+
style="stop-color:#8C0C01"
|
691
|
+
id="stop3403" />
|
692
|
+
<stop
|
693
|
+
offset="0"
|
694
|
+
style="stop-color:#8C0C01"
|
695
|
+
id="stop3405" />
|
696
|
+
<stop
|
697
|
+
offset="0.54"
|
698
|
+
style="stop-color:#990C00"
|
699
|
+
id="stop3407" />
|
700
|
+
<stop
|
701
|
+
offset="0.99"
|
702
|
+
style="stop-color:#A80D0E"
|
703
|
+
id="stop3409" />
|
704
|
+
<stop
|
705
|
+
offset="1"
|
706
|
+
style="stop-color:#A80D0E"
|
707
|
+
id="stop3411" />
|
708
|
+
</linearGradient>
|
709
|
+
|
710
|
+
<linearGradient
|
711
|
+
id="XMLID_27_"
|
712
|
+
gradientUnits="userSpaceOnUse"
|
713
|
+
x1="178.5259"
|
714
|
+
y1="115.5146"
|
715
|
+
x2="137.4327"
|
716
|
+
y2="78.684">
|
717
|
+
<stop
|
718
|
+
offset="0"
|
719
|
+
style="stop-color:#7E110B"
|
720
|
+
id="stop3416" />
|
721
|
+
<stop
|
722
|
+
offset="0"
|
723
|
+
style="stop-color:#7E110B"
|
724
|
+
id="stop3418" />
|
725
|
+
<stop
|
726
|
+
offset="0.99"
|
727
|
+
style="stop-color:#9E0C00"
|
728
|
+
id="stop3420" />
|
729
|
+
<stop
|
730
|
+
offset="1"
|
731
|
+
style="stop-color:#9E0C00"
|
732
|
+
id="stop3422" />
|
733
|
+
</linearGradient>
|
734
|
+
|
735
|
+
<linearGradient
|
736
|
+
id="XMLID_28_"
|
737
|
+
gradientUnits="userSpaceOnUse"
|
738
|
+
x1="193.6235"
|
739
|
+
y1="47.937"
|
740
|
+
x2="173.1542"
|
741
|
+
y2="26.0538">
|
742
|
+
<stop
|
743
|
+
offset="0"
|
744
|
+
style="stop-color:#79130D"
|
745
|
+
id="stop3427" />
|
746
|
+
<stop
|
747
|
+
offset="0"
|
748
|
+
style="stop-color:#79130D"
|
749
|
+
id="stop3429" />
|
750
|
+
<stop
|
751
|
+
offset="0.99"
|
752
|
+
style="stop-color:#9E120B"
|
753
|
+
id="stop3431" />
|
754
|
+
<stop
|
755
|
+
offset="1"
|
756
|
+
style="stop-color:#9E120B"
|
757
|
+
id="stop3433" />
|
758
|
+
</linearGradient>
|
759
|
+
|
760
|
+
|
761
|
+
<radialGradient
|
762
|
+
id="XMLID_29_"
|
763
|
+
cx="143.8315"
|
764
|
+
cy="79.3882"
|
765
|
+
r="50.3576"
|
766
|
+
gradientUnits="userSpaceOnUse">
|
767
|
+
<stop
|
768
|
+
offset="0"
|
769
|
+
style="stop-color:#A80D00"
|
770
|
+
id="stop3440" />
|
771
|
+
<stop
|
772
|
+
offset="0"
|
773
|
+
style="stop-color:#A80D00"
|
774
|
+
id="stop3442" />
|
775
|
+
<stop
|
776
|
+
offset="0.99"
|
777
|
+
style="stop-color:#7E0E08"
|
778
|
+
id="stop3444" />
|
779
|
+
<stop
|
780
|
+
offset="1"
|
781
|
+
style="stop-color:#7E0E08"
|
782
|
+
id="stop3446" />
|
783
|
+
</radialGradient>
|
784
|
+
|
785
|
+
<radialGradient
|
786
|
+
id="XMLID_30_"
|
787
|
+
cx="74.0923"
|
788
|
+
cy="145.751"
|
789
|
+
r="66.9437"
|
790
|
+
gradientUnits="userSpaceOnUse">
|
791
|
+
<stop
|
792
|
+
offset="0"
|
793
|
+
style="stop-color:#A30C00"
|
794
|
+
id="stop3451" />
|
795
|
+
<stop
|
796
|
+
offset="0"
|
797
|
+
style="stop-color:#A30C00"
|
798
|
+
id="stop3453" />
|
799
|
+
<stop
|
800
|
+
offset="0.99"
|
801
|
+
style="stop-color:#800E08"
|
802
|
+
id="stop3455" />
|
803
|
+
<stop
|
804
|
+
offset="1"
|
805
|
+
style="stop-color:#800E08"
|
806
|
+
id="stop3457" />
|
807
|
+
</radialGradient>
|
808
|
+
|
809
|
+
<linearGradient
|
810
|
+
id="XMLID_31_"
|
811
|
+
gradientUnits="userSpaceOnUse"
|
812
|
+
x1="26.6699"
|
813
|
+
y1="197.3359"
|
814
|
+
x2="9.9887"
|
815
|
+
y2="140.742">
|
816
|
+
<stop
|
817
|
+
offset="0"
|
818
|
+
style="stop-color:#8B2114"
|
819
|
+
id="stop3462" />
|
820
|
+
<stop
|
821
|
+
offset="0"
|
822
|
+
style="stop-color:#8B2114"
|
823
|
+
id="stop3464" />
|
824
|
+
<stop
|
825
|
+
offset="0.43"
|
826
|
+
style="stop-color:#9E100A"
|
827
|
+
id="stop3466" />
|
828
|
+
<stop
|
829
|
+
offset="0.99"
|
830
|
+
style="stop-color:#B3100C"
|
831
|
+
id="stop3468" />
|
832
|
+
<stop
|
833
|
+
offset="1"
|
834
|
+
style="stop-color:#B3100C"
|
835
|
+
id="stop3470" />
|
836
|
+
</linearGradient>
|
837
|
+
|
838
|
+
<linearGradient
|
839
|
+
id="XMLID_32_"
|
840
|
+
gradientUnits="userSpaceOnUse"
|
841
|
+
x1="154.6411"
|
842
|
+
y1="9.7979"
|
843
|
+
x2="192.039"
|
844
|
+
y2="26.3059">
|
845
|
+
<stop
|
846
|
+
offset="0"
|
847
|
+
style="stop-color:#B31000"
|
848
|
+
id="stop3475" />
|
849
|
+
<stop
|
850
|
+
offset="0"
|
851
|
+
style="stop-color:#B31000"
|
852
|
+
id="stop3477" />
|
853
|
+
<stop
|
854
|
+
offset="0.44"
|
855
|
+
style="stop-color:#910F08"
|
856
|
+
id="stop3479" />
|
857
|
+
<stop
|
858
|
+
offset="0.99"
|
859
|
+
style="stop-color:#791C12"
|
860
|
+
id="stop3481" />
|
861
|
+
<stop
|
862
|
+
offset="1"
|
863
|
+
style="stop-color:#791C12"
|
864
|
+
id="stop3483" />
|
865
|
+
</linearGradient>
|
866
|
+
|
867
|
+
<polygon
|
868
|
+
style="fill:url(#linearGradient3448);fill-rule:evenodd"
|
869
|
+
clip-rule="evenodd"
|
870
|
+
points="153.5,130.41 40.38,197.58 186.849,187.641 198.13,39.95 "
|
871
|
+
id="polygon3282" /><polygon
|
872
|
+
style="fill:url(#XMLID_18_-7);fill-rule:evenodd"
|
873
|
+
clip-rule="evenodd"
|
874
|
+
points="187.089,187.54 174.5,100.65 140.209,145.93 "
|
875
|
+
id="polygon3293" /><polygon
|
876
|
+
style="fill:url(#XMLID_19_-4);fill-rule:evenodd"
|
877
|
+
clip-rule="evenodd"
|
878
|
+
points="187.259,187.54 95.03,180.3 40.87,197.391 "
|
879
|
+
id="polygon3304" /><polygon
|
880
|
+
style="fill:url(#XMLID_20_-9);fill-rule:evenodd"
|
881
|
+
clip-rule="evenodd"
|
882
|
+
points="41,197.41 64.04,121.93 13.34,132.771 "
|
883
|
+
id="polygon3319" /><polygon
|
884
|
+
style="fill:url(#XMLID_21_-3);fill-rule:evenodd"
|
885
|
+
clip-rule="evenodd"
|
886
|
+
points="140.2,146.18 119,63.14 58.33,120.01 "
|
887
|
+
id="polygon3334" /><polygon
|
888
|
+
style="fill:url(#XMLID_22_-7);fill-rule:evenodd"
|
889
|
+
clip-rule="evenodd"
|
890
|
+
points="193.32,64.31 135.97,17.47 120,69.1 "
|
891
|
+
id="polygon3349" /><polygon
|
892
|
+
style="fill:url(#XMLID_23_-9);fill-rule:evenodd"
|
893
|
+
clip-rule="evenodd"
|
894
|
+
points="166.5,0.77 132.77,19.41 111.49,0.52 "
|
895
|
+
id="polygon3362" /><polygon
|
896
|
+
style="fill:url(#XMLID_24_-3);fill-rule:evenodd"
|
897
|
+
clip-rule="evenodd"
|
898
|
+
points="0,158.09 14.13,132.32 2.7,101.62 "
|
899
|
+
id="polygon3375" /><path
|
900
|
+
style="fill:#ffffff;fill-rule:evenodd"
|
901
|
+
inkscape:connector-curvature="0"
|
902
|
+
clip-rule="evenodd"
|
903
|
+
d="m 1.94,100.65 11.5,32.62 49.97,-11.211 57.05,-53.02 L 136.56,17.9 111.209,0 68.109,16.13 C 54.53,28.76 28.18,53.75 27.23,54.22 26.29,54.7 9.83,85.81 1.94,100.65 z"
|
904
|
+
id="path3377" /><path
|
905
|
+
style="fill:url(#XMLID_25_-9);fill-rule:evenodd"
|
906
|
+
inkscape:connector-curvature="0"
|
907
|
+
clip-rule="evenodd"
|
908
|
+
d="m 42.32,42.05 c 29.43,-29.18 67.37,-46.42 81.93,-31.73 14.551,14.69 -0.88,50.39 -30.31,79.56 -29.43,29.17 -66.9,47.36 -81.45,32.67 -14.56,-14.68 0.4,-51.33 29.83,-80.5 z"
|
909
|
+
id="path3400" /><path
|
910
|
+
style="fill:url(#XMLID_26_-2);fill-rule:evenodd"
|
911
|
+
inkscape:connector-curvature="0"
|
912
|
+
clip-rule="evenodd"
|
913
|
+
d="m 41,197.38 22.86,-75.72 75.92,24.39 C 112.33,171.79 81.8,193.55 41,197.38 z"
|
914
|
+
id="path3413" /><path
|
915
|
+
style="fill:url(#XMLID_27_-1);fill-rule:evenodd"
|
916
|
+
inkscape:connector-curvature="0"
|
917
|
+
clip-rule="evenodd"
|
918
|
+
d="m 120.56,68.89 19.49,77.2 C 162.98,121.98 183.56,96.06 193.639,64 l -73.079,4.89 z"
|
919
|
+
id="path3424" /><path
|
920
|
+
style="fill:url(#XMLID_28_-1);fill-rule:evenodd"
|
921
|
+
inkscape:connector-curvature="0"
|
922
|
+
clip-rule="evenodd"
|
923
|
+
d="m 193.44,64.39 c 7.8,-23.54 9.6,-57.31 -27.181,-63.58 l -30.18,16.67 57.361,46.91 z"
|
924
|
+
id="path3435" /><path
|
925
|
+
style="fill:#9e1209;fill-rule:evenodd"
|
926
|
+
inkscape:connector-curvature="0"
|
927
|
+
clip-rule="evenodd"
|
928
|
+
d="m 0,157.75 c 1.08,38.851 29.11,39.43 41.05,39.771 L 13.47,133.11 0,157.75 z"
|
929
|
+
id="path3437" /><path
|
930
|
+
style="fill:url(#XMLID_29_-4);fill-rule:evenodd"
|
931
|
+
inkscape:connector-curvature="0"
|
932
|
+
clip-rule="evenodd"
|
933
|
+
d="m 120.669,69.01 c 17.62,10.83 53.131,32.58 53.851,32.98 1.119,0.63 15.31,-23.93 18.53,-37.81 l -72.381,4.83 z"
|
934
|
+
id="path3448" /><path
|
935
|
+
style="fill:url(#XMLID_30_-6);fill-rule:evenodd"
|
936
|
+
inkscape:connector-curvature="0"
|
937
|
+
clip-rule="evenodd"
|
938
|
+
d="m 63.83,121.66 30.56,58.96 c 18.07,-9.8 32.22,-21.74 45.18,-34.53 L 63.83,121.66 z"
|
939
|
+
id="path3459" /><path
|
940
|
+
style="fill:url(#XMLID_31_-6);fill-rule:evenodd"
|
941
|
+
inkscape:connector-curvature="0"
|
942
|
+
clip-rule="evenodd"
|
943
|
+
d="m 13.35,133.19 -4.33,51.56 c 8.17,11.16 19.41,12.13 31.2,11.26 -8.53,-21.23 -25.57,-63.68 -26.87,-62.82 z"
|
944
|
+
id="path3472" /><path
|
945
|
+
style="fill:url(#XMLID_32_-0);fill-rule:evenodd"
|
946
|
+
inkscape:connector-curvature="0"
|
947
|
+
clip-rule="evenodd"
|
948
|
+
d="m 135.9,17.61 60.71,8.52 C 193.37,12.4 183.42,3.54 166.46,0.77 L 135.9,17.61 z"
|
949
|
+
id="path3485" /></svg>
|