updates and plugin
27
wp-content/plugins/advanced-custom-fields/README.md
Normal file
|
@ -0,0 +1,27 @@
|
|||
# Advanced Custom Fields
|
||||
|
||||
Welcome to the official Advanced Custom Fields repository on GitHub. ACF is a WordPress plugin used to take full control of your edit screens & custom field data.
|
||||
|
||||
## Documentation
|
||||
|
||||
Do you need help getting started with ACF, or do you have questions about one of the ACF features? You can [search through our documentation here](https://www.advancedcustomfields.com/resources/). If you don't find the answers you're looking for, you can start a new forum thread in the [support forum](https://support.advancedcustomfields.com/) or contact our [support team](https://www.advancedcustomfields.com/contact/)
|
||||
|
||||
If you've got feedback or a feature suggestion for ACF, please use our [feedback board](https://www.advancedcustomfields.com/feedback/)
|
||||
|
||||
## Support
|
||||
|
||||
This repository is not suitable for support. Please don't use our issue tracker for support requests, but for core issues only.
|
||||
Support can take place in the appropriate channels:
|
||||
|
||||
* Community forum
|
||||
* Email based ticket system
|
||||
|
||||
These channels can be accessed from our [support website](https://support.advancedcustomfields.com/).
|
||||
|
||||
## Contributing
|
||||
|
||||
If you have a patch, or stumbled upon an issue with ACF core, you can contribute this back to the code. Please create a new github issue with as much information as possible, and a PR if appropriate.
|
||||
|
||||
## Translations
|
||||
|
||||
If you're looking to translate ACF, you can submit new PRO translations via a PR on this repo. Any strings from the free version are imported from [translate.wordpress.org](https://translate.wordpress.org/projects/wp-plugins/advanced-custom-fields/stable/). For more information, please view our [translation guide](https://www.advancedcustomfields.com/resources/how-to-help-translate-acf-into-other-languages/)
|
859
wp-content/plugins/advanced-custom-fields/acf.php
Normal file
|
@ -0,0 +1,859 @@
|
|||
<?php
|
||||
/**
|
||||
* Advanced Custom Fields
|
||||
*
|
||||
* @package ACF
|
||||
* @author WP Engine
|
||||
*
|
||||
* @wordpress-plugin
|
||||
* Plugin Name: Advanced Custom Fields
|
||||
* Plugin URI: https://www.advancedcustomfields.com
|
||||
* Description: Customize WordPress with powerful, professional and intuitive fields.
|
||||
* Version: 6.4.0.1
|
||||
* Author: WP Engine
|
||||
* Author URI: https://wpengine.com/?utm_source=wordpress.org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields
|
||||
* Text Domain: acf
|
||||
* Domain Path: /lang
|
||||
* Requires PHP: 7.4
|
||||
* Requires at least: 6.0
|
||||
*/
|
||||
|
||||
if ( ! defined( 'ABSPATH' ) ) {
|
||||
exit; // Exit if accessed directly.
|
||||
}
|
||||
|
||||
if ( ! class_exists( 'ACF' ) ) {
|
||||
|
||||
/**
|
||||
* The main ACF class
|
||||
*/
|
||||
#[AllowDynamicProperties]
|
||||
class ACF {
|
||||
|
||||
/**
|
||||
* The plugin version number.
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
public $version = '6.4.0.1';
|
||||
|
||||
/**
|
||||
* The plugin settings array.
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
public $settings = array();
|
||||
|
||||
/**
|
||||
* The plugin data array.
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
public $data = array();
|
||||
|
||||
/**
|
||||
* Storage for class instances.
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
public $instances = array();
|
||||
|
||||
/**
|
||||
* A dummy constructor to ensure ACF is only setup once.
|
||||
*
|
||||
* @date 23/06/12
|
||||
* @since 5.0.0
|
||||
*/
|
||||
public function __construct() {
|
||||
// Do nothing.
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets up the ACF plugin.
|
||||
*
|
||||
* @date 28/09/13
|
||||
* @since 5.0.0
|
||||
*/
|
||||
public function initialize() {
|
||||
|
||||
// Define constants.
|
||||
$this->define( 'ACF', true );
|
||||
$this->define( 'ACF_PATH', plugin_dir_path( __FILE__ ) );
|
||||
$this->define( 'ACF_BASENAME', plugin_basename( __FILE__ ) );
|
||||
$this->define( 'ACF_VERSION', $this->version );
|
||||
$this->define( 'ACF_MAJOR_VERSION', 6 );
|
||||
$this->define( 'ACF_FIELD_API_VERSION', 5 );
|
||||
$this->define( 'ACF_UPGRADE_VERSION', '5.5.0' ); // Highest version with an upgrade routine. See upgrades.php.
|
||||
|
||||
// Register activation hook.
|
||||
register_activation_hook( __FILE__, array( $this, 'acf_plugin_activated' ) );
|
||||
|
||||
// Define settings.
|
||||
$this->settings = array(
|
||||
'name' => 'Advanced Custom Fields',
|
||||
'slug' => dirname( ACF_BASENAME ),
|
||||
'version' => ACF_VERSION,
|
||||
'basename' => ACF_BASENAME,
|
||||
'path' => ACF_PATH,
|
||||
'file' => __FILE__,
|
||||
'url' => plugin_dir_url( __FILE__ ),
|
||||
'show_admin' => true,
|
||||
'show_updates' => true,
|
||||
'enable_post_types' => true,
|
||||
'enable_options_pages_ui' => true,
|
||||
'stripslashes' => false,
|
||||
'local' => true,
|
||||
'json' => true,
|
||||
'save_json' => '',
|
||||
'load_json' => array(),
|
||||
'default_language' => '',
|
||||
'current_language' => '',
|
||||
'capability' => 'manage_options',
|
||||
'uploader' => 'wp',
|
||||
'autoload' => false,
|
||||
'l10n' => true,
|
||||
'l10n_textdomain' => '',
|
||||
'google_api_key' => '',
|
||||
'google_api_client' => '',
|
||||
'enqueue_google_maps' => true,
|
||||
'enqueue_select2' => true,
|
||||
'enqueue_datepicker' => true,
|
||||
'enqueue_datetimepicker' => true,
|
||||
'select2_version' => 4,
|
||||
'row_index_offset' => 1,
|
||||
'remove_wp_meta_box' => true,
|
||||
'rest_api_enabled' => true,
|
||||
'rest_api_format' => 'light',
|
||||
'rest_api_embed_links' => true,
|
||||
'preload_blocks' => true,
|
||||
'enable_shortcode' => true,
|
||||
'enable_bidirection' => true,
|
||||
'enable_block_bindings' => true,
|
||||
'enable_meta_box_cb_edit' => true,
|
||||
);
|
||||
|
||||
// Include autoloader.
|
||||
include_once __DIR__ . '/vendor/autoload.php';
|
||||
|
||||
// Include utility functions.
|
||||
include_once ACF_PATH . 'includes/acf-utility-functions.php';
|
||||
|
||||
// Include previous API functions.
|
||||
acf_include( 'includes/api/api-helpers.php' );
|
||||
acf_include( 'includes/api/api-template.php' );
|
||||
acf_include( 'includes/api/api-term.php' );
|
||||
|
||||
// Include classes.
|
||||
acf_include( 'includes/class-acf-data.php' );
|
||||
acf_include( 'includes/class-acf-internal-post-type.php' );
|
||||
acf_include( 'includes/fields/class-acf-field.php' );
|
||||
acf_include( 'includes/locations/abstract-acf-legacy-location.php' );
|
||||
acf_include( 'includes/locations/abstract-acf-location.php' );
|
||||
|
||||
// Initialise autoloaded classes.
|
||||
new ACF\Site_Health\Site_Health();
|
||||
|
||||
// Include functions.
|
||||
acf_include( 'includes/acf-helper-functions.php' );
|
||||
|
||||
acf_new_instance( 'ACF\Meta\Comment' );
|
||||
acf_new_instance( 'ACF\Meta\Post' );
|
||||
acf_new_instance( 'ACF\Meta\Term' );
|
||||
acf_new_instance( 'ACF\Meta\User' );
|
||||
|
||||
acf_include( 'includes/acf-hook-functions.php' );
|
||||
acf_include( 'includes/acf-field-functions.php' );
|
||||
acf_include( 'includes/acf-bidirectional-functions.php' );
|
||||
acf_include( 'includes/acf-internal-post-type-functions.php' );
|
||||
acf_include( 'includes/acf-post-type-functions.php' );
|
||||
acf_include( 'includes/acf-taxonomy-functions.php' );
|
||||
acf_include( 'includes/acf-field-group-functions.php' );
|
||||
acf_include( 'includes/acf-form-functions.php' );
|
||||
acf_include( 'includes/acf-meta-functions.php' );
|
||||
acf_include( 'includes/acf-post-functions.php' );
|
||||
acf_include( 'includes/acf-user-functions.php' );
|
||||
acf_include( 'includes/acf-value-functions.php' );
|
||||
acf_include( 'includes/acf-input-functions.php' );
|
||||
acf_include( 'includes/acf-wp-functions.php' );
|
||||
|
||||
// Override the shortcode default value based on the version when installed.
|
||||
$first_activated_version = acf_get_version_when_first_activated();
|
||||
|
||||
// Only enable shortcode by default for versions prior to 6.3
|
||||
if ( $first_activated_version && version_compare( $first_activated_version, '6.3', '>=' ) ) {
|
||||
$this->settings['enable_shortcode'] = false;
|
||||
}
|
||||
|
||||
// Include core.
|
||||
acf_include( 'includes/fields.php' );
|
||||
acf_include( 'includes/locations.php' );
|
||||
acf_include( 'includes/assets.php' );
|
||||
acf_include( 'includes/compatibility.php' );
|
||||
acf_include( 'includes/deprecated.php' );
|
||||
acf_include( 'includes/l10n.php' );
|
||||
acf_include( 'includes/local-fields.php' );
|
||||
acf_include( 'includes/local-meta.php' );
|
||||
acf_include( 'includes/local-json.php' );
|
||||
acf_include( 'includes/loop.php' );
|
||||
acf_include( 'includes/media.php' );
|
||||
acf_include( 'includes/revisions.php' );
|
||||
acf_include( 'includes/upgrades.php' );
|
||||
acf_include( 'includes/validation.php' );
|
||||
acf_include( 'includes/rest-api.php' );
|
||||
|
||||
// Include field group class.
|
||||
acf_include( 'includes/post-types/class-acf-field-group.php' );
|
||||
|
||||
// Include ajax.
|
||||
acf_include( 'includes/ajax/class-acf-ajax.php' );
|
||||
acf_include( 'includes/ajax/class-acf-ajax-check-screen.php' );
|
||||
acf_include( 'includes/ajax/class-acf-ajax-user-setting.php' );
|
||||
acf_include( 'includes/ajax/class-acf-ajax-upgrade.php' );
|
||||
acf_include( 'includes/ajax/class-acf-ajax-query.php' );
|
||||
acf_include( 'includes/ajax/class-acf-ajax-query-users.php' );
|
||||
acf_include( 'includes/ajax/class-acf-ajax-local-json-diff.php' );
|
||||
|
||||
// Include forms.
|
||||
acf_include( 'includes/forms/form-attachment.php' );
|
||||
acf_include( 'includes/forms/form-comment.php' );
|
||||
acf_include( 'includes/forms/form-customizer.php' );
|
||||
acf_include( 'includes/forms/form-front.php' );
|
||||
acf_include( 'includes/forms/form-nav-menu.php' );
|
||||
acf_include( 'includes/forms/form-post.php' );
|
||||
acf_include( 'includes/forms/form-gutenberg.php' );
|
||||
acf_include( 'includes/forms/form-taxonomy.php' );
|
||||
acf_include( 'includes/forms/form-user.php' );
|
||||
acf_include( 'includes/forms/form-widget.php' );
|
||||
|
||||
// Include admin.
|
||||
if ( is_admin() ) {
|
||||
acf_include( 'includes/admin/admin.php' );
|
||||
acf_include( 'includes/admin/admin-internal-post-type-list.php' );
|
||||
acf_include( 'includes/admin/admin-internal-post-type.php' );
|
||||
acf_include( 'includes/admin/admin-notices.php' );
|
||||
acf_include( 'includes/admin/admin-tools.php' );
|
||||
acf_include( 'includes/admin/admin-upgrade.php' );
|
||||
}
|
||||
|
||||
// Include legacy.
|
||||
acf_include( 'includes/legacy/legacy-locations.php' );
|
||||
|
||||
// Include updater if included with this build.
|
||||
acf_include( 'includes/Updater/init.php' );
|
||||
|
||||
// Include PRO if included with this build.
|
||||
if ( ! defined( 'ACF_PREVENT_PRO_LOAD' ) || ( defined( 'ACF_PREVENT_PRO_LOAD' ) && ! ACF_PREVENT_PRO_LOAD ) ) {
|
||||
acf_include( 'pro/acf-pro.php' );
|
||||
}
|
||||
|
||||
if ( is_admin() && function_exists( 'acf_is_pro' ) && ! acf_is_pro() ) {
|
||||
acf_include( 'includes/admin/admin-options-pages-preview.php' );
|
||||
}
|
||||
|
||||
// Add actions.
|
||||
add_action( 'init', array( $this, 'register_post_status' ), 4 );
|
||||
add_action( 'init', array( $this, 'init' ), 5 );
|
||||
add_action( 'init', array( $this, 'register_post_types' ), 5 );
|
||||
add_action( 'activated_plugin', array( $this, 'deactivate_other_instances' ) );
|
||||
add_action( 'pre_current_active_plugins', array( $this, 'plugin_deactivated_notice' ) );
|
||||
|
||||
// Add filters.
|
||||
add_filter( 'posts_where', array( $this, 'posts_where' ), 10, 2 );
|
||||
}
|
||||
|
||||
/**
|
||||
* Completes the setup process on "init" of earlier.
|
||||
*
|
||||
* @date 28/09/13
|
||||
* @since 5.0.0
|
||||
*/
|
||||
public function init() {
|
||||
|
||||
// Bail early if called directly from functions.php or plugin file.
|
||||
if ( ! did_action( 'plugins_loaded' ) ) {
|
||||
return;
|
||||
}
|
||||
|
||||
// This function may be called directly from template functions. Bail early if already did this.
|
||||
if ( acf_did( 'init' ) ) {
|
||||
return;
|
||||
}
|
||||
|
||||
// Update url setting. Allows other plugins to modify the URL (force SSL).
|
||||
acf_update_setting( 'url', plugin_dir_url( __FILE__ ) );
|
||||
|
||||
// Load textdomain file.
|
||||
acf_load_textdomain();
|
||||
|
||||
// Make plugin name translatable.
|
||||
acf_update_setting( 'name', __( 'Advanced Custom Fields', 'acf' ) );
|
||||
|
||||
// Include 3rd party compatiblity.
|
||||
acf_include( 'includes/third-party.php' );
|
||||
|
||||
// Include wpml support.
|
||||
if ( defined( 'ICL_SITEPRESS_VERSION' ) ) {
|
||||
acf_include( 'includes/wpml.php' );
|
||||
}
|
||||
|
||||
// Add post types and taxonomies.
|
||||
if ( acf_get_setting( 'enable_post_types' ) ) {
|
||||
acf_include( 'includes/post-types/class-acf-taxonomy.php' );
|
||||
acf_include( 'includes/post-types/class-acf-post-type.php' );
|
||||
}
|
||||
|
||||
// Add other ACF internal post types.
|
||||
do_action( 'acf/init_internal_post_types' );
|
||||
|
||||
// Include fields.
|
||||
acf_include( 'includes/fields/class-acf-field-text.php' );
|
||||
acf_include( 'includes/fields/class-acf-field-textarea.php' );
|
||||
acf_include( 'includes/fields/class-acf-field-number.php' );
|
||||
acf_include( 'includes/fields/class-acf-field-range.php' );
|
||||
acf_include( 'includes/fields/class-acf-field-email.php' );
|
||||
acf_include( 'includes/fields/class-acf-field-url.php' );
|
||||
acf_include( 'includes/fields/class-acf-field-password.php' );
|
||||
acf_include( 'includes/fields/class-acf-field-image.php' );
|
||||
acf_include( 'includes/fields/class-acf-field-file.php' );
|
||||
acf_include( 'includes/fields/class-acf-field-wysiwyg.php' );
|
||||
acf_include( 'includes/fields/class-acf-field-oembed.php' );
|
||||
acf_include( 'includes/fields/class-acf-field-select.php' );
|
||||
acf_include( 'includes/fields/class-acf-field-checkbox.php' );
|
||||
acf_include( 'includes/fields/class-acf-field-radio.php' );
|
||||
acf_include( 'includes/fields/class-acf-field-button-group.php' );
|
||||
acf_include( 'includes/fields/class-acf-field-true_false.php' );
|
||||
acf_include( 'includes/fields/class-acf-field-link.php' );
|
||||
acf_include( 'includes/fields/class-acf-field-post_object.php' );
|
||||
acf_include( 'includes/fields/class-acf-field-page_link.php' );
|
||||
acf_include( 'includes/fields/class-acf-field-relationship.php' );
|
||||
acf_include( 'includes/fields/class-acf-field-taxonomy.php' );
|
||||
acf_include( 'includes/fields/class-acf-field-user.php' );
|
||||
acf_include( 'includes/fields/class-acf-field-google-map.php' );
|
||||
acf_include( 'includes/fields/class-acf-field-date_picker.php' );
|
||||
acf_include( 'includes/fields/class-acf-field-date_time_picker.php' );
|
||||
acf_include( 'includes/fields/class-acf-field-time_picker.php' );
|
||||
acf_include( 'includes/fields/class-acf-field-color_picker.php' );
|
||||
acf_include( 'includes/fields/class-acf-field-icon_picker.php' );
|
||||
acf_include( 'includes/fields/class-acf-field-message.php' );
|
||||
acf_include( 'includes/fields/class-acf-field-accordion.php' );
|
||||
acf_include( 'includes/fields/class-acf-field-tab.php' );
|
||||
acf_include( 'includes/fields/class-acf-field-group.php' );
|
||||
|
||||
/**
|
||||
* Fires after field types have been included.
|
||||
*
|
||||
* @date 28/09/13
|
||||
* @since 5.0.0
|
||||
*
|
||||
* @param int ACF_FIELD_API_VERSION The field API version.
|
||||
*/
|
||||
do_action( 'acf/include_field_types', ACF_FIELD_API_VERSION );
|
||||
|
||||
// Include locations.
|
||||
acf_include( 'includes/locations/class-acf-location-post-type.php' );
|
||||
acf_include( 'includes/locations/class-acf-location-post-template.php' );
|
||||
acf_include( 'includes/locations/class-acf-location-post-status.php' );
|
||||
acf_include( 'includes/locations/class-acf-location-post-format.php' );
|
||||
acf_include( 'includes/locations/class-acf-location-post-category.php' );
|
||||
acf_include( 'includes/locations/class-acf-location-post-taxonomy.php' );
|
||||
acf_include( 'includes/locations/class-acf-location-post.php' );
|
||||
acf_include( 'includes/locations/class-acf-location-page-template.php' );
|
||||
acf_include( 'includes/locations/class-acf-location-page-type.php' );
|
||||
acf_include( 'includes/locations/class-acf-location-page-parent.php' );
|
||||
acf_include( 'includes/locations/class-acf-location-page.php' );
|
||||
acf_include( 'includes/locations/class-acf-location-current-user.php' );
|
||||
acf_include( 'includes/locations/class-acf-location-current-user-role.php' );
|
||||
acf_include( 'includes/locations/class-acf-location-user-form.php' );
|
||||
acf_include( 'includes/locations/class-acf-location-user-role.php' );
|
||||
acf_include( 'includes/locations/class-acf-location-taxonomy.php' );
|
||||
acf_include( 'includes/locations/class-acf-location-attachment.php' );
|
||||
acf_include( 'includes/locations/class-acf-location-comment.php' );
|
||||
acf_include( 'includes/locations/class-acf-location-widget.php' );
|
||||
acf_include( 'includes/locations/class-acf-location-nav-menu.php' );
|
||||
acf_include( 'includes/locations/class-acf-location-nav-menu-item.php' );
|
||||
|
||||
/**
|
||||
* Fires after location types have been included.
|
||||
*
|
||||
* @date 28/09/13
|
||||
* @since 5.0.0
|
||||
*
|
||||
* @param int ACF_FIELD_API_VERSION The field API version.
|
||||
*/
|
||||
do_action( 'acf/include_location_rules', ACF_FIELD_API_VERSION );
|
||||
|
||||
/**
|
||||
* Fires during initialization. Used to add local fields.
|
||||
*
|
||||
* @date 28/09/13
|
||||
* @since 5.0.0
|
||||
*
|
||||
* @param int ACF_FIELD_API_VERSION The field API version.
|
||||
*/
|
||||
do_action( 'acf/include_fields', ACF_FIELD_API_VERSION );
|
||||
|
||||
/**
|
||||
* Fires during initialization. Used to add local post types.
|
||||
*
|
||||
* @since 6.1
|
||||
*
|
||||
* @param int ACF_MAJOR_VERSION The major version of ACF.
|
||||
*/
|
||||
do_action( 'acf/include_post_types', ACF_MAJOR_VERSION );
|
||||
|
||||
/**
|
||||
* Fires during initialization. Used to add local taxonomies.
|
||||
*
|
||||
* @since 6.1
|
||||
*
|
||||
* @param int ACF_MAJOR_VERSION The major version of ACF.
|
||||
*/
|
||||
do_action( 'acf/include_taxonomies', ACF_MAJOR_VERSION );
|
||||
|
||||
// If we're on 6.5 or newer, load block bindings.
|
||||
if ( version_compare( get_bloginfo( 'version' ), '6.5', '>=' ) ) {
|
||||
new ACF\Blocks\Bindings();
|
||||
}
|
||||
|
||||
/**
|
||||
* Fires after ACF is completely "initialized".
|
||||
*
|
||||
* @date 28/09/13
|
||||
* @since 5.0.0
|
||||
*
|
||||
* @param int ACF_MAJOR_VERSION The major version of ACF.
|
||||
*/
|
||||
do_action( 'acf/init', ACF_MAJOR_VERSION );
|
||||
}
|
||||
|
||||
/**
|
||||
* Registers the ACF post types.
|
||||
*
|
||||
* @date 22/10/2015
|
||||
* @since 5.3.2
|
||||
*/
|
||||
public function register_post_types() {
|
||||
$cap = acf_get_setting( 'capability' );
|
||||
|
||||
// Register the Field Group post type.
|
||||
register_post_type(
|
||||
'acf-field-group',
|
||||
array(
|
||||
'labels' => array(
|
||||
'name' => __( 'Field Groups', 'acf' ),
|
||||
'singular_name' => __( 'Field Group', 'acf' ),
|
||||
'add_new' => __( 'Add New', 'acf' ),
|
||||
'add_new_item' => __( 'Add New Field Group', 'acf' ),
|
||||
'edit_item' => __( 'Edit Field Group', 'acf' ),
|
||||
'new_item' => __( 'New Field Group', 'acf' ),
|
||||
'view_item' => __( 'View Field Group', 'acf' ),
|
||||
'search_items' => __( 'Search Field Groups', 'acf' ),
|
||||
'not_found' => __( 'No Field Groups found', 'acf' ),
|
||||
'not_found_in_trash' => __( 'No Field Groups found in Trash', 'acf' ),
|
||||
),
|
||||
'public' => false,
|
||||
'hierarchical' => true,
|
||||
'show_ui' => true,
|
||||
'show_in_menu' => false,
|
||||
'_builtin' => false,
|
||||
'capability_type' => 'post',
|
||||
'capabilities' => array(
|
||||
'edit_post' => $cap,
|
||||
'delete_post' => $cap,
|
||||
'edit_posts' => $cap,
|
||||
'delete_posts' => $cap,
|
||||
),
|
||||
'supports' => false,
|
||||
'rewrite' => false,
|
||||
'query_var' => false,
|
||||
)
|
||||
);
|
||||
|
||||
// Register the Field post type.
|
||||
register_post_type(
|
||||
'acf-field',
|
||||
array(
|
||||
'labels' => array(
|
||||
'name' => __( 'Fields', 'acf' ),
|
||||
'singular_name' => __( 'Field', 'acf' ),
|
||||
'add_new' => __( 'Add New', 'acf' ),
|
||||
'add_new_item' => __( 'Add New Field', 'acf' ),
|
||||
'edit_item' => __( 'Edit Field', 'acf' ),
|
||||
'new_item' => __( 'New Field', 'acf' ),
|
||||
'view_item' => __( 'View Field', 'acf' ),
|
||||
'search_items' => __( 'Search Fields', 'acf' ),
|
||||
'not_found' => __( 'No Fields found', 'acf' ),
|
||||
'not_found_in_trash' => __( 'No Fields found in Trash', 'acf' ),
|
||||
),
|
||||
'public' => false,
|
||||
'hierarchical' => true,
|
||||
'show_ui' => false,
|
||||
'show_in_menu' => false,
|
||||
'_builtin' => false,
|
||||
'capability_type' => 'post',
|
||||
'capabilities' => array(
|
||||
'edit_post' => $cap,
|
||||
'delete_post' => $cap,
|
||||
'edit_posts' => $cap,
|
||||
'delete_posts' => $cap,
|
||||
),
|
||||
'supports' => array( 'title' ),
|
||||
'rewrite' => false,
|
||||
'query_var' => false,
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* Registers the ACF post statuses.
|
||||
*
|
||||
* @date 22/10/2015
|
||||
* @since 5.3.2
|
||||
*/
|
||||
public function register_post_status() {
|
||||
|
||||
// Register the Inactive post status.
|
||||
register_post_status(
|
||||
'acf-disabled',
|
||||
array(
|
||||
'label' => _x( 'Inactive', 'post status', 'acf' ),
|
||||
'public' => true,
|
||||
'exclude_from_search' => false,
|
||||
'show_in_admin_all_list' => true,
|
||||
'show_in_admin_status_list' => true,
|
||||
/* translators: counts for inactive field groups */
|
||||
'label_count' => _n_noop( 'Inactive <span class="count">(%s)</span>', 'Inactive <span class="count">(%s)</span>', 'acf' ),
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* Checks if another version of ACF/ACF PRO is active and deactivates it.
|
||||
* Hooked on `activated_plugin` so other plugin is deactivated when current plugin is activated.
|
||||
*
|
||||
* @param string $plugin The plugin being activated.
|
||||
*/
|
||||
public function deactivate_other_instances( $plugin ) {
|
||||
if ( ! in_array( $plugin, array( 'advanced-custom-fields/acf.php', 'advanced-custom-fields-pro/acf.php' ), true ) ) {
|
||||
return;
|
||||
}
|
||||
|
||||
$plugin_to_deactivate = 'advanced-custom-fields/acf.php';
|
||||
$deactivated_notice_id = '1';
|
||||
|
||||
// If we just activated the free version, deactivate the pro version.
|
||||
if ( $plugin === $plugin_to_deactivate ) {
|
||||
$plugin_to_deactivate = 'advanced-custom-fields-pro/acf.php';
|
||||
$deactivated_notice_id = '2';
|
||||
}
|
||||
|
||||
if ( is_multisite() && is_network_admin() ) {
|
||||
$active_plugins = (array) get_site_option( 'active_sitewide_plugins', array() );
|
||||
$active_plugins = array_keys( $active_plugins );
|
||||
} else {
|
||||
$active_plugins = (array) get_option( 'active_plugins', array() );
|
||||
}
|
||||
|
||||
foreach ( $active_plugins as $plugin_basename ) {
|
||||
if ( $plugin_to_deactivate === $plugin_basename ) {
|
||||
set_transient( 'acf_deactivated_notice_id', $deactivated_notice_id, 1 * HOUR_IN_SECONDS );
|
||||
deactivate_plugins( $plugin_basename );
|
||||
return;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Displays a notice when either ACF or ACF PRO is automatically deactivated.
|
||||
*/
|
||||
public function plugin_deactivated_notice() {
|
||||
$deactivated_notice_id = (int) get_transient( 'acf_deactivated_notice_id' );
|
||||
if ( ! in_array( $deactivated_notice_id, array( 1, 2 ), true ) ) {
|
||||
return;
|
||||
}
|
||||
|
||||
$message = __( "Advanced Custom Fields and Advanced Custom Fields PRO should not be active at the same time. We've automatically deactivated Advanced Custom Fields.", 'acf' );
|
||||
if ( 2 === $deactivated_notice_id ) {
|
||||
$message = __( "Advanced Custom Fields and Advanced Custom Fields PRO should not be active at the same time. We've automatically deactivated Advanced Custom Fields PRO.", 'acf' );
|
||||
}
|
||||
|
||||
?>
|
||||
<div class="updated" style="border-left: 4px solid #ffba00;">
|
||||
<p><?php echo esc_html( $message ); ?></p>
|
||||
</div>
|
||||
<?php
|
||||
|
||||
delete_transient( 'acf_deactivated_notice_id' );
|
||||
}
|
||||
|
||||
/**
|
||||
* Filters the $where clause allowing for custom WP_Query args.
|
||||
*
|
||||
* @date 31/8/19
|
||||
* @since 5.8.1
|
||||
*
|
||||
* @param string $where The WHERE clause.
|
||||
* @param WP_Query $wp_query The query object.
|
||||
* @return string
|
||||
*/
|
||||
public function posts_where( $where, $wp_query ) {
|
||||
global $wpdb;
|
||||
|
||||
$field_key = $wp_query->get( 'acf_field_key' );
|
||||
$field_name = $wp_query->get( 'acf_field_name' );
|
||||
$group_key = $wp_query->get( 'acf_group_key' );
|
||||
$post_type_key = $wp_query->get( 'acf_post_type_key' );
|
||||
$taxonomy_key = $wp_query->get( 'acf_taxonomy_key' );
|
||||
|
||||
// Add custom "acf_field_key" arg.
|
||||
if ( $field_key ) {
|
||||
$where .= $wpdb->prepare( " AND {$wpdb->posts}.post_name = %s", $field_key );
|
||||
}
|
||||
|
||||
// Add custom "acf_field_name" arg.
|
||||
if ( $field_name ) {
|
||||
$where .= $wpdb->prepare( " AND {$wpdb->posts}.post_excerpt = %s", $field_name );
|
||||
}
|
||||
|
||||
// Add custom "acf_group_key" arg.
|
||||
if ( $group_key ) {
|
||||
$where .= $wpdb->prepare( " AND {$wpdb->posts}.post_name = %s", $group_key );
|
||||
}
|
||||
|
||||
// Add custom "acf_post_type_key" arg.
|
||||
if ( $post_type_key ) {
|
||||
$where .= $wpdb->prepare( " AND {$wpdb->posts}.post_name = %s", $post_type_key );
|
||||
}
|
||||
|
||||
// Add custom "acf_taxonomy_key" arg.
|
||||
if ( $taxonomy_key ) {
|
||||
$where .= $wpdb->prepare( " AND {$wpdb->posts}.post_name = %s", $taxonomy_key );
|
||||
}
|
||||
|
||||
return $where;
|
||||
}
|
||||
|
||||
/**
|
||||
* Defines a constant if doesnt already exist.
|
||||
*
|
||||
* @date 3/5/17
|
||||
* @since 5.5.13
|
||||
*
|
||||
* @param string $name The constant name.
|
||||
* @param mixed $value The constant value.
|
||||
* @return void
|
||||
*/
|
||||
public function define( $name, $value = true ) {
|
||||
if ( ! defined( $name ) ) {
|
||||
define( $name, $value );
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns true if a setting exists for this name.
|
||||
*
|
||||
* @date 2/2/18
|
||||
* @since 5.6.5
|
||||
*
|
||||
* @param string $name The setting name.
|
||||
* @return boolean
|
||||
*/
|
||||
public function has_setting( $name ) {
|
||||
return isset( $this->settings[ $name ] );
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns a setting or null if doesn't exist.
|
||||
*
|
||||
* @date 28/09/13
|
||||
* @since 5.0.0
|
||||
*
|
||||
* @param string $name The setting name.
|
||||
* @return mixed
|
||||
*/
|
||||
public function get_setting( $name ) {
|
||||
return isset( $this->settings[ $name ] ) ? $this->settings[ $name ] : null;
|
||||
}
|
||||
|
||||
/**
|
||||
* Updates a setting for the given name and value.
|
||||
*
|
||||
* @date 28/09/13
|
||||
* @since 5.0.0
|
||||
*
|
||||
* @param string $name The setting name.
|
||||
* @param mixed $value The setting value.
|
||||
* @return true
|
||||
*/
|
||||
public function update_setting( $name, $value ) {
|
||||
$this->settings[ $name ] = $value;
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns data or null if doesn't exist.
|
||||
*
|
||||
* @date 28/09/13
|
||||
* @since 5.0.0
|
||||
*
|
||||
* @param string $name The data name.
|
||||
* @return mixed
|
||||
*/
|
||||
public function get_data( $name ) {
|
||||
return isset( $this->data[ $name ] ) ? $this->data[ $name ] : null;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets data for the given name and value.
|
||||
*
|
||||
* @date 28/09/13
|
||||
* @since 5.0.0
|
||||
*
|
||||
* @param string $name The data name.
|
||||
* @param mixed $value The data value.
|
||||
* @return void
|
||||
*/
|
||||
public function set_data( $name, $value ) {
|
||||
$this->data[ $name ] = $value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns an instance or null if doesn't exist.
|
||||
*
|
||||
* @date 13/2/18
|
||||
* @since 5.6.9
|
||||
*
|
||||
* @param string $class The instance class name.
|
||||
* @return object
|
||||
*/
|
||||
public function get_instance( $class ) {
|
||||
$name = strtolower( $class );
|
||||
return isset( $this->instances[ $name ] ) ? $this->instances[ $name ] : null;
|
||||
}
|
||||
|
||||
/**
|
||||
* Creates and stores an instance of the given class.
|
||||
*
|
||||
* @date 13/2/18
|
||||
* @since 5.6.9
|
||||
*
|
||||
* @param string $class The instance class name.
|
||||
* @return object
|
||||
*/
|
||||
public function new_instance( $class ) {
|
||||
$instance = new $class();
|
||||
$name = strtolower( $class );
|
||||
$this->instances[ $name ] = $instance;
|
||||
return $instance;
|
||||
}
|
||||
|
||||
/**
|
||||
* Magic __isset method for backwards compatibility.
|
||||
*
|
||||
* @date 24/4/20
|
||||
* @since 5.9.0
|
||||
*
|
||||
* @param string $key Key name.
|
||||
* @return boolean
|
||||
*/
|
||||
public function __isset( $key ) {
|
||||
return in_array( $key, array( 'locations', 'json' ), true );
|
||||
}
|
||||
|
||||
/**
|
||||
* Magic __get method for backwards compatibility.
|
||||
*
|
||||
* @date 24/4/20
|
||||
* @since 5.9.0
|
||||
*
|
||||
* @param string $key Key name.
|
||||
* @return mixed
|
||||
*/
|
||||
public function __get( $key ) {
|
||||
switch ( $key ) {
|
||||
case 'locations':
|
||||
return acf_get_instance( 'ACF_Legacy_Locations' );
|
||||
case 'json':
|
||||
return acf_get_instance( 'ACF_Local_JSON' );
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
/**
|
||||
* Plugin Activation Hook
|
||||
*
|
||||
* @since 6.2.6
|
||||
*/
|
||||
public function acf_plugin_activated() {
|
||||
// Set the first activated version of ACF.
|
||||
if ( null === get_option( 'acf_first_activated_version', null ) ) {
|
||||
// If acf_version is set, this isn't the first activated version, so leave it unset so it's legacy.
|
||||
if ( null === get_option( 'acf_version', null ) ) {
|
||||
update_option( 'acf_first_activated_version', ACF_VERSION, true );
|
||||
|
||||
do_action( 'acf/first_activated' );
|
||||
}
|
||||
}
|
||||
|
||||
if ( acf_is_pro() ) {
|
||||
do_action( 'acf/activated_pro' );
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* An ACF specific getter to replace `home_url` in our license checks to ensure we can avoid third party filters.
|
||||
*
|
||||
* @since 6.0.1
|
||||
* @since 6.2.8 - Renamed to acf_pro_get_home_url to match pro exclusive function naming.
|
||||
* @since 6.3.10 - Renamed to acf_get_home_url now updater logic applies to free.
|
||||
*
|
||||
* @return string $home_url The output from home_url, sans known third party filters which cause license activation issues.
|
||||
*/
|
||||
function acf_get_home_url() {
|
||||
if ( acf_is_pro() ) {
|
||||
// Disable WPML and TranslatePress's home url overrides for our license check.
|
||||
add_filter( 'wpml_get_home_url', 'acf_pro_license_ml_intercept', 99, 2 );
|
||||
add_filter( 'trp_home_url', 'acf_pro_license_ml_intercept', 99, 2 );
|
||||
|
||||
if ( acf_pro_is_legacy_multisite() && acf_is_multisite_sub_site() ) {
|
||||
$home_url = get_home_url( get_main_site_id() );
|
||||
} else {
|
||||
$home_url = home_url();
|
||||
}
|
||||
|
||||
// Re-enable WPML and TranslatePress's home url overrides.
|
||||
remove_filter( 'wpml_get_home_url', 'acf_pro_license_ml_intercept', 99 );
|
||||
remove_filter( 'trp_home_url', 'acf_pro_license_ml_intercept', 99 );
|
||||
} else {
|
||||
$home_url = home_url();
|
||||
}
|
||||
|
||||
return $home_url;
|
||||
}
|
||||
|
||||
/**
|
||||
* The main function responsible for returning the one true acf Instance to functions everywhere.
|
||||
* Use this function like you would a global variable, except without needing to declare the global.
|
||||
*
|
||||
* Example: <?php $acf = acf(); ?>
|
||||
*
|
||||
* @date 4/09/13
|
||||
* @since 4.3.0
|
||||
*
|
||||
* @return ACF
|
||||
*/
|
||||
function acf() {
|
||||
global $acf;
|
||||
|
||||
// Instantiate only once.
|
||||
if ( ! isset( $acf ) ) {
|
||||
$acf = new ACF();
|
||||
$acf->initialize();
|
||||
}
|
||||
return $acf;
|
||||
}
|
||||
|
||||
// Instantiate.
|
||||
acf();
|
||||
} // class_exists check
|
1
wp-content/plugins/advanced-custom-fields/assets/build/css/acf-dark.min.css
vendored
Normal file
1
wp-content/plugins/advanced-custom-fields/assets/build/css/acf-field-group.min.css
vendored
Normal file
1
wp-content/plugins/advanced-custom-fields/assets/build/css/acf-global.min.css
vendored
Normal file
1
wp-content/plugins/advanced-custom-fields/assets/build/css/acf-input.min.css
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
<?php
|
||||
// There are many ways to WordPress.
|
|
@ -0,0 +1,2 @@
|
|||
<?php
|
||||
// There are many ways to WordPress.
|
1
wp-content/plugins/advanced-custom-fields/assets/build/js/acf-escaped-html-notice.min.js
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
(()=>{var e;(e=jQuery)(".acf-escaped-html-notice").on("click",".acf-show-more-details",(function(t){t.preventDefault();const c=e(t.target),a=c.closest(".acf-escaped-html-notice").find(".acf-error-details");a.is(":hidden")?(a.slideDown(100),c.text(acf_escaped_html_notice.hide_details)):(a.slideUp(100),c.text(acf_escaped_html_notice.show_details))}))})();
|
1
wp-content/plugins/advanced-custom-fields/assets/build/js/acf-field-group.min.js
vendored
Normal file
1
wp-content/plugins/advanced-custom-fields/assets/build/js/acf-input.min.js
vendored
Normal file
1
wp-content/plugins/advanced-custom-fields/assets/build/js/acf-internal-post-type.min.js
vendored
Normal file
1
wp-content/plugins/advanced-custom-fields/assets/build/js/acf.min.js
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
<?php
|
||||
// There are many ways to WordPress.
|
|
@ -0,0 +1,15 @@
|
|||
<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M8.9 1.10017L1.1 8.90139C0.39375 9.60775 0 10.5579 0 11.5518V38.1247C0 39.1624 0.8375 40 1.875 40H38.125C39.1625 40 40 39.1624 40 38.1247V1.87529C40 0.837631 39.1625 0 38.125 0H11.5562C10.5625 0 9.60625 0.393812 8.90625 1.10017H8.9Z" fill="url(#paint0_radial_117_9708)"/>
|
||||
<path d="M9.10713 1.60017H9.11468L9.2614 1.45212C9.86638 0.84164 10.6943 0.5 11.5562 0.5H38.125C38.8863 0.5 39.5 1.1137 39.5 1.87529V38.1247C39.5 38.8863 38.8863 39.5 38.125 39.5H1.875C1.11372 39.5 0.5 38.8863 0.5 38.1247V11.5518C0.5 10.6909 0.840778 9.86781 1.45358 9.25492L9.10713 1.60017Z" stroke="white" stroke-opacity="0.25"/>
|
||||
<path d="M28.3014 26.3536H25.4056V14.7H33.1249V17.4137H28.3014V19.4932H32.8476V22.1394H28.3014V26.3541V26.3536Z" fill="white"/>
|
||||
<path opacity="0.05" d="M24.6417 21.4627H27.512C27.0873 24.4289 24.5938 26.3905 21.5728 26.3905C18.2646 26.3905 15.5712 23.9107 15.5712 20.5713C15.5642 19.7947 15.7148 19.0248 16.0136 18.3084C16.3125 17.5919 16.7534 16.9439 17.3096 16.4037C18.4513 15.2947 19.9837 14.6834 21.5728 14.7031C24.5659 14.7031 27.129 16.6799 27.4935 19.5986H24.6261C23.7639 16.2925 18.3917 16.6157 18.3917 20.5713C18.3917 24.5273 23.8312 24.8187 24.6417 21.4637V21.4627Z" fill="#002447"/>
|
||||
<path d="M24.0543 21.4627C23.5619 23.1315 21.8092 24.1237 20.084 23.7082C18.3579 23.2912 17.2763 21.6177 17.6346 19.9167C17.9925 18.2151 19.6617 17.094 21.4154 17.3779C22.1338 17.4755 22.7962 17.8199 23.2899 18.3525C23.631 18.7048 23.8871 19.1309 24.0382 19.5981H26.8218C26.4573 16.6728 23.887 14.7031 20.9011 14.7031C19.3118 14.6828 17.779 15.2938 16.637 16.4028C16.0804 16.9431 15.6392 17.5914 15.3402 18.3082C15.0413 19.025 14.8908 19.7953 14.898 20.5723C14.898 23.9117 17.5759 26.3905 20.9021 26.3905C23.9207 26.3905 26.4071 24.4289 26.8393 21.4627H24.0539H24.0543Z" fill="white"/>
|
||||
<path opacity="0.05" d="M15.4044 24.6581H11.3744L10.7156 26.3516H7.63153L12.3512 14.6875H14.4081L19.3155 26.3554H16.0594L15.4034 24.6581H15.4044ZM12.5199 21.7709L12.4189 22.0343H14.3754L14.3077 21.8365L13.3967 19.3353L12.5199 21.7709Z" fill="#002447"/>
|
||||
<path d="M14.6412 24.6581H10.6178L9.9595 26.3516H6.875L11.5951 14.6875H13.6521L18.5594 26.3554H15.3048L14.6412 24.6581ZM11.7634 21.7709L11.6629 22.0343H13.6194L13.5511 21.8365L12.6407 19.3353L11.7638 21.7709H11.7634Z" fill="white"/>
|
||||
<defs>
|
||||
<radialGradient id="paint0_radial_117_9708" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="rotate(45) scale(56.5685)">
|
||||
<stop stop-color="#0ECAD4"/>
|
||||
<stop offset="1" stop-color="#006BD6"/>
|
||||
</radialGradient>
|
||||
</defs>
|
||||
</svg>
|
After Width: | Height: | Size: 2.6 KiB |
|
@ -0,0 +1,27 @@
|
|||
<svg width="41" height="40" viewBox="0 0 41 40" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_120_9753)">
|
||||
<path d="M7.54459 0.932623L0.932477 7.54576C0.333784 8.14455 0 8.95 0 9.79254V32.3186C0 33.1982 0.709954 33.9083 1.58945 33.9083H32.3188C33.1983 33.9083 33.9083 33.1982 33.9083 32.3186V1.5897C33.9083 0.710065 33.1983 0 32.3188 0H9.79631C8.9539 0 8.14328 0.333837 7.54988 0.932623H7.54459Z" fill="url(#paint0_radial_120_9753)"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M7.54988 0.932623C8.14328 0.333837 8.9539 0 9.79631 0H32.3188C33.1983 0 33.9083 0.710065 33.9083 1.5897V32.3186C33.9083 33.1982 33.1983 33.9083 32.3188 33.9083H1.58945C0.709954 33.9083 0 33.1982 0 32.3186V9.79254C0 8.95 0.333784 8.14455 0.932477 7.54576L7.54459 0.932623H7.54988ZM7.95885 1.93262L1.63964 8.25282C1.22784 8.66468 1 9.21605 1 9.79254V32.3186C1 32.646 1.26239 32.9083 1.58945 32.9083H32.3188C32.6459 32.9083 32.9083 32.646 32.9083 32.3186V1.5897C32.9083 1.2622 32.6459 1 32.3188 1H9.79631C9.21748 1 8.66355 1.22949 8.26018 1.63652L7.96675 1.93262H7.95885Z" fill="white" fill-opacity="0.25"/>
|
||||
<path d="M23.9913 22.3401H21.5365V12.4612H28.0802V14.7616H23.9913V16.5245H27.8452V18.7677H23.9913V22.3405V22.3401Z" fill="white"/>
|
||||
<path opacity="0.05" d="M20.8889 18.1942H23.3221C22.9621 20.7086 20.8484 22.3715 18.2874 22.3715C15.4831 22.3715 13.1998 20.2693 13.1998 17.4385C13.1939 16.7802 13.3215 16.1276 13.5749 15.5202C13.8282 14.9129 14.202 14.3636 14.6735 13.9056C15.6413 12.9655 16.9403 12.4473 18.2874 12.464C20.8247 12.464 22.9975 14.1398 23.3064 16.6139H20.8757C20.1449 13.8113 15.5907 14.0854 15.5907 17.4385C15.5907 20.7921 20.2019 21.0391 20.8889 18.195V18.1942Z" fill="#002447"/>
|
||||
<path d="M20.3911 18.1942C19.9736 19.6088 18.4879 20.4499 17.0254 20.0977C15.5621 19.7442 14.6453 18.3256 14.949 16.8836C15.2524 15.4412 16.6674 14.4908 18.154 14.7314C18.763 14.8142 19.3245 15.1062 19.743 15.5576C20.0322 15.8563 20.2492 16.2175 20.3774 16.6136H22.737C22.4281 14.1338 20.2492 12.464 17.7181 12.464C16.3708 12.4468 15.0714 12.9648 14.1033 13.9048C13.6315 14.3629 13.2575 14.9125 13.004 15.5201C12.7506 16.1277 12.6231 16.7807 12.6292 17.4393C12.6292 20.2702 14.8992 22.3715 17.7189 22.3715C20.2778 22.3715 22.3855 20.7087 22.7519 18.1942H20.3907H20.3911Z" fill="white"/>
|
||||
<path opacity="0.05" d="M13.0584 20.9029H9.64211L9.08365 22.3384H6.4693L10.4702 12.4507H12.2139L16.3738 22.3417H13.6137L13.0576 20.9029H13.0584ZM10.6132 18.4553L10.5276 18.6786H12.1861L12.1287 18.5109L11.3565 16.3906L10.6132 18.4553Z" fill="#002447"/>
|
||||
<path d="M12.4115 20.9029H9.00082L8.44275 22.3384H5.828L9.82928 12.4507H11.573L15.733 22.3417H12.974L12.4115 20.9029ZM9.97191 18.4553L9.88673 18.6786H11.5453L11.4874 18.5109L10.7156 16.3906L9.97231 18.4553H9.97191Z" fill="white"/>
|
||||
<rect x="18" y="26" width="22.29" height="13.1994" rx="6.59972" fill="url(#paint1_radial_120_9753)"/>
|
||||
<rect x="18.5" y="26.5" width="21.29" height="12.1994" rx="6.09972" stroke="white" stroke-opacity="0.4"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M33.1989 35.2127C32.7879 35.2127 32.4199 35.1185 32.0948 34.9299C31.7698 34.7414 31.5129 34.47 31.3242 34.1157C31.1376 33.7615 31.0442 33.3357 31.0442 32.8385C31.0442 32.3392 31.1376 31.9124 31.3242 31.5581C31.5129 31.2018 31.7698 30.9293 32.0948 30.7408C32.4199 30.5523 32.7879 30.458 33.1989 30.458C33.6078 30.458 33.9737 30.5523 34.2967 30.7408C34.6217 30.9293 34.8775 31.2018 35.0642 31.5581C35.2529 31.9124 35.3473 32.3392 35.3473 32.8385C35.3473 33.3357 35.2529 33.7625 35.0642 34.1188C34.8775 34.4731 34.6217 34.7445 34.2967 34.9331C33.9737 35.1195 33.6078 35.2127 33.1989 35.2127ZM33.1989 34.47C33.4526 34.47 33.677 34.4079 33.872 34.2836C34.0692 34.1572 34.2233 33.9728 34.3344 33.7304C34.4456 33.4859 34.5011 33.1886 34.5011 32.8385C34.5011 32.4842 34.4456 32.1859 34.3344 31.9435C34.2233 31.699 34.0692 31.5146 33.872 31.3903C33.677 31.2639 33.4526 31.2007 33.1989 31.2007C32.9431 31.2007 32.7166 31.2639 32.5195 31.3903C32.3224 31.5167 32.1672 31.7021 32.0539 31.9466C31.9428 32.189 31.8872 32.4863 31.8872 32.8385C31.8872 33.1886 31.9428 33.4849 32.0539 33.7273C32.1672 33.9697 32.3224 34.1541 32.5195 34.2804C32.7166 34.4068 32.9431 34.47 33.1989 34.47ZM27.3415 35.1506C27.2035 35.1506 27.0915 35.0387 27.0915 34.9006V30.7702C27.0915 30.6321 27.2035 30.5202 27.3415 30.5202H28.8436C29.2022 30.5202 29.5041 30.5823 29.7495 30.7066C29.9948 30.8309 30.1804 31.005 30.3062 31.2287C30.4321 31.4504 30.495 31.7083 30.495 32.0025C30.495 32.2967 30.431 32.5526 30.3031 32.7701C30.1773 32.9876 29.9906 33.1555 29.7432 33.2736C29.7138 33.2876 29.6837 33.3007 29.6527 33.3131L30.463 34.7797C30.5551 34.9463 30.4346 35.1506 30.2442 35.1506H29.8763C29.7846 35.1506 29.7002 35.1004 29.6565 35.0197L28.8061 33.4507H27.9314V34.9006C27.9314 35.0387 27.8195 35.1506 27.6814 35.1506H27.3415ZM28.7209 32.7639H27.9314V31.4663C27.9314 31.3282 28.0433 31.2163 28.1814 31.2163H28.7146C28.9285 31.2163 29.1026 31.2474 29.2368 31.3095C29.3731 31.3717 29.4737 31.4618 29.5387 31.5799C29.6037 31.6959 29.6362 31.8368 29.6362 32.0025C29.6362 32.1641 29.6037 32.3019 29.5387 32.4158C29.4737 32.5298 29.3741 32.6168 29.2399 32.6769C29.1057 32.7349 28.9327 32.7639 28.7209 32.7639ZM23.0153 34.9006C23.0153 35.0387 23.1272 35.1506 23.2653 35.1506H23.6051C23.7432 35.1506 23.8551 35.0387 23.8551 34.9006V33.5843H24.7547C25.1154 33.5843 25.4195 33.518 25.6669 33.3854C25.9144 33.2528 26.101 33.0716 26.2268 32.8416C26.3547 32.6116 26.4187 32.3485 26.4187 32.0522C26.4187 31.758 26.3558 31.496 26.23 31.266C26.1041 31.034 25.9185 30.8516 25.6732 30.719C25.4279 30.5865 25.1259 30.5202 24.7673 30.5202H23.2653C23.1272 30.5202 23.0153 30.6321 23.0153 30.7702V34.9006ZM23.8551 32.9006H24.6446C24.8564 32.9006 25.0294 32.8644 25.1636 32.7919C25.2999 32.7194 25.3995 32.6189 25.4625 32.4904C25.5275 32.362 25.56 32.2159 25.56 32.0522C25.56 31.8886 25.5275 31.7435 25.4625 31.6172C25.3995 31.4908 25.2999 31.3924 25.1636 31.3219C25.0273 31.2515 24.8522 31.2163 24.6383 31.2163H24.1051C23.967 31.2163 23.8551 31.3282 23.8551 31.4663V32.9006Z" fill="white"/>
|
||||
</g>
|
||||
<defs>
|
||||
<radialGradient id="paint0_radial_120_9753" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="rotate(45) scale(47.9535)">
|
||||
<stop stop-color="#0ECAD4"/>
|
||||
<stop offset="1" stop-color="#006BD6"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="paint1_radial_120_9753" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(40.3484 39.1008) rotate(-149.621) scale(25.9053 22.7152)">
|
||||
<stop stop-color="#0ECAD4"/>
|
||||
<stop offset="1" stop-color="#7A45E5"/>
|
||||
</radialGradient>
|
||||
<clipPath id="clip0_120_9753">
|
||||
<rect width="40.2902" height="39.1996" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
After Width: | Height: | Size: 6.5 KiB |
|
@ -0,0 +1,10 @@
|
|||
<svg width="284" height="44" viewBox="0 0 284 44" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M29.8067 14.5H38.1933C38.5589 14.5 38.8743 14.5 39.1353 14.5178C39.4102 14.5365 39.6851 14.5778 39.9567 14.6903C40.5693 14.944 41.056 15.4307 41.3097 16.0433C41.4222 16.3149 41.4635 16.5898 41.4822 16.8647C41.5 17.1257 41.5 17.4411 41.5 17.8067V17.8333C41.5 18.2936 41.1269 18.6667 40.6667 18.6667C40.2064 18.6667 39.8333 18.2936 39.8333 17.8333C39.8333 17.4336 39.8329 17.1756 39.8194 16.9781C39.8064 16.7881 39.7843 16.7158 39.7699 16.6811C39.6853 16.4769 39.5231 16.3147 39.3189 16.2301C39.2842 16.2157 39.2119 16.1936 39.0219 16.1806C38.8244 16.1671 38.5664 16.1667 38.1667 16.1667H34.8333V27.8333H36.5C36.9602 27.8333 37.3333 28.2064 37.3333 28.6667C37.3333 29.1269 36.9602 29.5 36.5 29.5H31.5C31.0398 29.5 30.6667 29.1269 30.6667 28.6667C30.6667 28.2064 31.0398 27.8333 31.5 27.8333H33.1667V16.1667H29.8333C29.4336 16.1667 29.1756 16.1671 28.9781 16.1806C28.7881 16.1936 28.7158 16.2157 28.6811 16.2301C28.4769 16.3147 28.3147 16.4769 28.2301 16.6811C28.2157 16.7158 28.1936 16.7881 28.1806 16.9781C28.1671 17.1756 28.1667 17.4336 28.1667 17.8333C28.1667 18.2936 27.7936 18.6667 27.3333 18.6667C26.8731 18.6667 26.5 18.2936 26.5 17.8333L26.5 17.8067C26.5 17.4411 26.5 17.1257 26.5178 16.8647C26.5365 16.5898 26.5778 16.3149 26.6903 16.0433C26.944 15.4307 27.4307 14.944 28.0433 14.6903C28.3149 14.5778 28.5898 14.5365 28.8647 14.5178C29.1257 14.5 29.4411 14.5 29.8067 14.5Z" fill="#98A2B3"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M65.0699 17.001C65.1014 16.9994 65.1333 16.9997 65.1653 17.0018C66.7255 17.105 68.168 17.8824 69.1119 19.1113C69.3923 19.4763 69.3237 19.9994 68.9587 20.2798C68.5937 20.5601 68.0705 20.4915 67.7902 20.1265C67.1445 19.286 66.1582 18.7488 65.0926 18.6675C63.1778 18.6772 61.6667 20.1857 61.6667 22.0004C61.6667 23.814 63.1885 25.3333 65.1111 25.3333C66.2491 25.3333 67.2569 24.5468 68.0528 23.5603C68.436 23.0853 68.7354 22.6058 68.9394 22.243C69.0409 22.0625 69.1174 21.9133 69.1676 21.8113C69.1927 21.7603 69.2112 21.7213 69.2229 21.6961L69.2352 21.6692L69.2374 21.6644C69.2373 21.6646 69.2372 21.6648 70 22.0004C70.7628 22.3361 70.7626 22.3363 70.7625 22.3366L70.7624 22.3367L70.7624 22.3368L70.7623 22.3371L70.7623 22.3372L70.7616 22.3387L70.7598 22.3428L70.754 22.3555C70.7493 22.366 70.7428 22.3803 70.7344 22.3982C70.7178 22.4342 70.6939 22.4846 70.6629 22.5476C70.6009 22.6734 70.5103 22.8497 70.3922 23.0598C70.157 23.4781 69.8071 24.0402 69.35 24.6068C68.4653 25.7034 67.0287 27 65.1111 27C62.3078 27 60 24.7737 60 22.0004C60 19.2318 62.2862 17.0226 65.0699 17.001ZM74.9162 25.3332C76.8189 25.3189 78.3333 23.8044 78.3333 22.0004C78.3333 20.1809 76.8054 18.6675 74.8889 18.6675C73.7509 18.6675 72.7431 19.454 71.9472 20.4405C71.564 20.9155 71.2646 21.395 71.0606 21.7579C70.9591 21.9383 70.8826 22.0875 70.8323 22.1895C70.8073 22.2405 70.7888 22.2795 70.7771 22.3047L70.7648 22.3316L70.7628 22.3361L70.7626 22.3365C70.7627 22.3363 70.7628 22.3361 70 22.0004C69.2372 21.6648 69.2374 21.6645 69.2375 21.6643L69.2376 21.6641L69.2376 21.664L69.2377 21.6637L69.2377 21.6637L69.2384 21.6622L69.2402 21.658L69.246 21.6453C69.2507 21.6349 69.2572 21.6205 69.2656 21.6026C69.2822 21.5667 69.3061 21.5162 69.3371 21.4532C69.3991 21.3275 69.4897 21.1511 69.6078 20.941C69.843 20.5227 70.1929 19.9606 70.65 19.394C71.5347 18.2974 72.9713 17.0008 74.8889 17.0008C77.682 17.0008 80 19.2172 80 22.0004C80 24.7747 77.6831 27 74.8889 27C74.8707 27 74.8524 26.9994 74.8342 26.9982C73.2704 26.8954 71.8242 26.129 70.8848 24.8934C70.6062 24.527 70.6774 24.0042 71.0438 23.7257C71.4102 23.4471 71.933 23.5183 72.2115 23.8847C72.8475 24.7212 73.8344 25.2544 74.9162 25.3332Z" fill="#98A2B3"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M102.466 13.6667H109.534C110.205 13.6667 110.759 13.6667 111.21 13.7035C111.678 13.7418 112.109 13.8239 112.513 14.03C113.141 14.3496 113.65 14.8595 113.97 15.4867C114.176 15.8912 114.258 16.3217 114.297 16.7902C114.333 17.2411 114.333 17.7948 114.333 18.4656V25.5344C114.333 26.2052 114.333 26.7589 114.297 27.2099C114.258 27.6783 114.176 28.1089 113.97 28.5133C113.65 29.1405 113.141 29.6504 112.513 29.97C112.109 30.1761 111.678 30.2582 111.21 30.2965C110.759 30.3334 110.205 30.3334 109.534 30.3333H102.466C102.445 30.3333 102.425 30.3333 102.406 30.3333L101.745 30.3333C101.52 30.3334 101.298 30.3334 101.12 30.3176C101.113 30.317 101.106 30.3164 101.099 30.3157C100.991 30.3108 100.888 30.3045 100.79 30.2965C100.322 30.2582 99.8912 30.1761 99.4867 29.97C98.8595 29.6504 98.3496 29.1405 98.03 28.5133C97.8239 28.1089 97.7418 27.6783 97.7035 27.2099C97.6667 26.7589 97.6667 26.2052 97.6667 25.5344V18.4656C97.6667 17.7948 97.6667 17.2411 97.7035 16.7902C97.7418 16.3217 97.8239 15.8912 98.03 15.4867C98.3496 14.8595 98.8595 14.3496 99.4867 14.03C99.8912 13.8239 100.322 13.7418 100.79 13.7035C101.241 13.6667 101.795 13.6667 102.466 13.6667ZM102.5 28.6667C102.387 28.6667 102.28 28.6667 102.179 28.6665L108.98 21.8654C109.155 21.6907 109.251 21.5955 109.325 21.5324C109.328 21.5299 109.331 21.5276 109.333 21.5253C109.336 21.5276 109.339 21.5299 109.342 21.5324C109.416 21.5955 109.512 21.6907 109.687 21.8654L112.667 24.8452V25.5C112.667 26.2138 112.666 26.6991 112.635 27.0741C112.606 27.4395 112.551 27.6263 112.485 27.7567C112.325 28.0703 112.07 28.3252 111.757 28.485C111.626 28.5514 111.439 28.6055 111.074 28.6354C110.699 28.666 110.214 28.6667 109.5 28.6667H102.5ZM112.667 22.4882L110.847 20.6681C110.698 20.5194 110.553 20.3745 110.42 20.2619C110.275 20.1382 110.09 20.0052 109.848 19.9268C109.514 19.818 109.153 19.818 108.818 19.9268C108.577 20.0052 108.392 20.1382 108.246 20.2619C108.114 20.3745 107.969 20.5194 107.82 20.6681L100.694 27.7946C100.534 27.9539 100.378 28.1105 100.263 28.2477C100.227 28.2901 100.179 28.3487 100.131 28.4221C99.8687 28.2619 99.6552 28.0318 99.515 27.7567C99.4486 27.6263 99.3945 27.4395 99.3646 27.0741C99.334 26.6991 99.3333 26.2138 99.3333 25.5V18.5C99.3333 17.7862 99.334 17.3009 99.3646 16.9259C99.3945 16.5605 99.4486 16.3737 99.515 16.2434C99.6748 15.9298 99.9298 15.6748 100.243 15.515C100.374 15.4486 100.561 15.3945 100.926 15.3646C101.301 15.334 101.786 15.3333 102.5 15.3333H109.5C110.214 15.3333 110.699 15.334 111.074 15.3646C111.439 15.3945 111.626 15.4486 111.757 15.515C112.07 15.6748 112.325 15.9298 112.485 16.2434C112.551 16.3737 112.606 16.5605 112.635 16.9259C112.666 17.3009 112.667 17.7862 112.667 18.5V22.4882ZM103.083 18.25C102.623 18.25 102.25 18.6231 102.25 19.0833C102.25 19.5436 102.623 19.9167 103.083 19.9167C103.544 19.9167 103.917 19.5436 103.917 19.0833C103.917 18.6231 103.544 18.25 103.083 18.25ZM100.583 19.0833C100.583 17.7026 101.703 16.5833 103.083 16.5833C104.464 16.5833 105.583 17.7026 105.583 19.0833C105.583 20.4641 104.464 21.5833 103.083 21.5833C101.703 21.5833 100.583 20.4641 100.583 19.0833Z" fill="#98A2B3"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M150.727 12.9319C150.998 13.0769 151.167 13.3593 151.167 13.6667V27C151.167 27.2786 151.027 27.5388 150.796 27.6934L145.796 31.0267C145.533 31.2018 145.194 31.2135 144.92 31.0569L139.5 27.9598L134.08 31.0569C133.822 31.2042 133.505 31.2032 133.248 31.0541C132.991 30.905 132.833 30.6304 132.833 30.3333V17C132.833 16.7009 132.994 16.4248 133.253 16.2765L139.087 12.9431C139.343 12.7967 139.657 12.7967 139.913 12.9431L145.3 16.0209L149.871 12.9733C150.127 12.8028 150.456 12.7869 150.727 12.9319ZM144.5 17.4836L140.333 15.1026V26.5164L144.5 28.8973V17.4836ZM146.167 28.7762L149.5 26.554V15.2238L146.167 17.446V28.7762ZM138.667 26.5164V15.1026L134.5 17.4836V28.8973L138.667 26.5164Z" fill="#98A2B3"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M174.667 12.8333C175.127 12.8333 175.5 13.2064 175.5 13.6667V14.5H180.5V13.6667C180.5 13.2064 180.873 12.8333 181.333 12.8333C181.794 12.8333 182.167 13.2064 182.167 13.6667V14.5013C182.563 14.5041 182.909 14.5123 183.21 14.5368C183.678 14.5751 184.109 14.6572 184.513 14.8633C185.141 15.1829 185.65 15.6928 185.97 16.32C186.176 16.7245 186.258 17.1551 186.297 17.6235C186.333 18.0745 186.333 18.6281 186.333 19.2989V26.3678C186.333 27.0386 186.333 27.5922 186.297 28.0432C186.258 28.5116 186.176 28.9422 185.97 29.3466C185.65 29.9738 185.141 30.4838 184.513 30.8033C184.109 31.0094 183.678 31.0916 183.21 31.1298C182.759 31.1667 182.205 31.1667 181.534 31.1667H174.466C173.795 31.1667 173.241 31.1667 172.79 31.1298C172.322 31.0916 171.891 31.0094 171.487 30.8033C170.859 30.4838 170.35 29.9738 170.03 29.3466C169.824 28.9422 169.742 28.5116 169.704 28.0432C169.667 27.5922 169.667 27.0386 169.667 26.3677V19.2989C169.667 18.6281 169.667 18.0745 169.704 17.6235C169.742 17.1551 169.824 16.7245 170.03 16.32C170.35 15.6928 170.859 15.1829 171.487 14.8633C171.891 14.6572 172.322 14.5751 172.79 14.5368C173.091 14.5123 173.437 14.5041 173.833 14.5013V13.6667C173.833 13.2064 174.206 12.8333 174.667 12.8333ZM173.833 16.1681C173.462 16.1707 173.171 16.178 172.926 16.198C172.561 16.2278 172.374 16.2819 172.243 16.3483C171.93 16.5081 171.675 16.7631 171.515 17.0767C171.449 17.207 171.394 17.3938 171.365 17.7592C171.334 18.1343 171.333 18.6195 171.333 19.3333V19.5H184.667V19.3333C184.667 18.6195 184.666 18.1343 184.635 17.7592C184.606 17.3938 184.551 17.207 184.485 17.0767C184.325 16.7631 184.07 16.5081 183.757 16.3483C183.626 16.2819 183.439 16.2278 183.074 16.198C182.829 16.178 182.538 16.1707 182.167 16.1681V17C182.167 17.4602 181.794 17.8333 181.333 17.8333C180.873 17.8333 180.5 17.4602 180.5 17V16.1667H175.5V17C175.5 17.4602 175.127 17.8333 174.667 17.8333C174.206 17.8333 173.833 17.4602 173.833 17V16.1681ZM184.667 21.1667H171.333V26.3333C171.333 27.0471 171.334 27.5324 171.365 27.9075C171.394 28.2728 171.449 28.4596 171.515 28.59C171.675 28.9036 171.93 29.1585 172.243 29.3183C172.374 29.3847 172.561 29.4389 172.926 29.4687C173.301 29.4993 173.786 29.5 174.5 29.5H181.5C182.214 29.5 182.699 29.4993 183.074 29.4687C183.439 29.4389 183.626 29.3847 183.757 29.3183C184.07 29.1585 184.325 28.9036 184.485 28.59C184.551 28.4596 184.606 28.2728 184.635 27.9075C184.666 27.5324 184.667 27.0471 184.667 26.3333V21.1667Z" fill="#98A2B3"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M214.581 13.0696L214 13.6667L213.419 13.0696C213.742 12.7546 214.258 12.7546 214.581 13.0696ZM214 14.843C213.928 14.9158 213.851 14.9944 213.768 15.0784C213.271 15.5854 212.599 16.2856 211.897 17.0599C211.195 17.8358 210.469 18.6782 209.863 19.4706C209.244 20.2786 208.793 20.9785 208.59 21.4793C208.317 22.1537 208.167 22.8916 208.167 23.6667C208.167 26.8883 210.778 29.5 214 29.5C217.222 29.5 219.833 26.8883 219.833 23.6667C219.833 22.8916 219.683 22.1537 219.41 21.4793C219.207 20.9785 218.756 20.2786 218.137 19.4706C217.531 18.6782 216.805 17.8358 216.103 17.0599C215.401 16.2856 214.729 15.5854 214.232 15.0784C214.149 14.9944 214.072 14.9158 214 14.843ZM213.419 13.0696C213.419 13.0695 213.419 13.0696 214 13.6667C214.581 13.0696 214.581 13.0695 214.581 13.0696L214.586 13.074L214.598 13.0856L214.643 13.1298C214.682 13.1684 214.739 13.225 214.813 13.2976C214.959 13.4429 215.168 13.6525 215.422 13.9115C215.929 14.4291 216.617 15.1458 217.338 15.941C218.057 16.7348 218.815 17.6147 219.461 18.4575C220.094 19.2849 220.663 20.1332 220.955 20.854C221.307 21.7237 221.5 22.6736 221.5 23.6667C221.5 27.8088 218.142 31.1667 214 31.1667C209.858 31.1667 206.5 27.8088 206.5 23.6667C206.5 22.6736 206.693 21.7237 207.045 20.854C207.337 20.1332 207.906 19.2849 208.539 18.4575C209.185 17.6147 209.943 16.7348 210.662 15.941C211.383 15.1458 212.071 14.4291 212.578 13.9115C212.832 13.6525 213.041 13.4429 213.187 13.2976C213.261 13.225 213.318 13.1684 213.357 13.1298L213.402 13.0856L213.419 13.0696Z" fill="#98A2B3"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M242.546 21.1667H245.875C246.062 18.864 246.833 16.6537 248.105 14.7415C245.141 15.5133 242.89 18.0527 242.546 21.1667ZM250 14.959C248.609 16.7516 247.757 18.9057 247.548 21.1667H252.452C252.243 18.9057 251.391 16.7516 250 14.959ZM252.452 22.8333C252.243 25.0943 251.391 27.2484 250 29.041C248.609 27.2484 247.757 25.0943 247.548 22.8333H252.452ZM245.875 22.8333H242.546C242.89 25.9473 245.141 28.4867 248.105 29.2585C246.833 27.3463 246.062 25.136 245.875 22.8333ZM251.895 29.2585C253.167 27.3463 253.938 25.136 254.125 22.8333H257.454C257.11 25.9473 254.859 28.4867 251.895 29.2585ZM257.454 21.1667H254.125C253.938 18.864 253.167 16.6537 251.895 14.7415C254.859 15.5133 257.11 18.0527 257.454 21.1667ZM240.833 22C240.833 16.9374 244.937 12.8333 250 12.8333C255.063 12.8333 259.167 16.9374 259.167 22C259.167 27.0626 255.063 31.1667 250 31.1667C244.937 31.1667 240.833 27.0626 240.833 22Z" fill="#98A2B3"/>
|
||||
<rect x="0.5" y="0.5" width="283" height="43" rx="21.5" stroke="#C6CBD3" stroke-dasharray="4 4"/>
|
||||
</svg>
|
After Width: | Height: | Size: 12 KiB |
|
@ -0,0 +1,24 @@
|
|||
<svg width="112" height="88" viewBox="0 0 112 88" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect x="1.21521" y="0.5" width="87" height="87" rx="7.5" fill="#F9FAFB" stroke="#EAECF0"/>
|
||||
<rect x="8.71521" y="8" width="72" height="16" rx="4" fill="#EAECF0"/>
|
||||
<rect x="9.21521" y="30.5" width="71" height="31" rx="3.5" stroke="#C6CBD3" stroke-dasharray="3 3"/>
|
||||
<g filter="url(#filter0_d_80_6757)">
|
||||
<rect x="35.2849" y="41.1132" width="72" height="33" rx="4" fill="#C6CBD3"/>
|
||||
<rect x="35.7849" y="41.6132" width="71" height="32" rx="3.5" stroke="#98A2B3"/>
|
||||
</g>
|
||||
<rect x="43.2849" y="49.1132" width="28" height="3" rx="1.5" fill="#F9FAFB"/>
|
||||
<rect x="43.2849" y="56.1132" width="18" height="3" rx="1.5" fill="#F9FAFB"/>
|
||||
<rect x="43.2849" y="63.1132" width="10" height="3" rx="1.5" fill="#F9FAFB"/>
|
||||
<defs>
|
||||
<filter id="filter0_d_80_6757" x="31.2849" y="39.1132" width="80" height="41" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="2"/>
|
||||
<feGaussianBlur stdDeviation="2"/>
|
||||
<feComposite in2="hardAlpha" operator="out"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.0627451 0 0 0 0 0.0941176 0 0 0 0 0.156863 0 0 0 0.13 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_80_6757"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_80_6757" result="shape"/>
|
||||
</filter>
|
||||
</defs>
|
||||
</svg>
|
After Width: | Height: | Size: 1.5 KiB |
|
@ -0,0 +1,26 @@
|
|||
<svg width="104" height="88" viewBox="0 0 104 88" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect x="1.21521" y="0.5" width="87" height="87" rx="7.5" fill="#F9FAFB" stroke="#EAECF0"/>
|
||||
<rect x="8.71521" y="8" width="72" height="16" rx="4" fill="#EAECF0"/>
|
||||
<rect x="8.71521" y="30" width="40" height="40" rx="4" fill="#EAECF0"/>
|
||||
<rect x="57.2152" y="30.5" width="23" height="39" rx="3.5" stroke="#C6CBD3" stroke-dasharray="3 3"/>
|
||||
<g filter="url(#filter0_d_91_9934)">
|
||||
<rect x="67.2848" y="36.1133" width="32" height="41" rx="4" fill="#C6CBD3"/>
|
||||
<rect x="67.7848" y="36.6133" width="31" height="40" rx="3.5" stroke="#98A2B3"/>
|
||||
</g>
|
||||
<rect x="73.6848" y="44.1133" width="20" height="3" rx="1.5" fill="#F9FAFB"/>
|
||||
<rect x="73.6848" y="51.1133" width="18" height="3" rx="1.5" fill="#F9FAFB"/>
|
||||
<rect x="73.6848" y="58.1133" width="10" height="3" rx="1.5" fill="#F9FAFB"/>
|
||||
<rect x="73.6848" y="65.1133" width="15" height="3" rx="1.5" fill="#F9FAFB"/>
|
||||
<defs>
|
||||
<filter id="filter0_d_91_9934" x="63.2848" y="34.1133" width="40" height="49" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="2"/>
|
||||
<feGaussianBlur stdDeviation="2"/>
|
||||
<feComposite in2="hardAlpha" operator="out"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.0627451 0 0 0 0 0.0941176 0 0 0 0 0.156863 0 0 0 0.13 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_91_9934"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_91_9934" result="shape"/>
|
||||
</filter>
|
||||
</defs>
|
||||
</svg>
|
After Width: | Height: | Size: 1.6 KiB |
|
@ -0,0 +1,3 @@
|
|||
<svg width="64" height="64" viewBox="0 0 64 64" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M31.9998 8.00002C18.745 8.00002 7.99984 18.7452 7.99984 32C7.99984 45.2549 18.745 56 31.9998 56C45.2547 56 55.9998 45.2549 55.9998 32C55.9998 18.7452 45.2547 8.00002 31.9998 8.00002ZM2.6665 32C2.6665 15.7997 15.7995 2.66669 31.9998 2.66669C48.2002 2.66669 61.3332 15.7997 61.3332 32C61.3332 48.2004 48.2002 61.3334 31.9998 61.3334C15.7995 61.3334 2.6665 48.2004 2.6665 32ZM28.3505 22.5723C29.4924 23.5024 29.6642 25.1821 28.7342 26.324C27.2405 28.1581 25.0741 29.3333 22.6665 29.3333C20.2322 29.3333 18.13 28.1359 16.63 26.3616C15.6792 25.2369 15.8202 23.5543 16.9449 22.6035C18.0697 21.6527 19.7522 21.7937 20.703 22.9184C21.3897 23.7308 22.0875 24 22.6665 24C23.2722 24 23.9859 23.7086 24.5988 22.956C25.5289 21.8141 27.2085 21.6423 28.3505 22.5723ZM47.0172 22.5723C48.1591 23.5024 48.3309 25.1821 47.4008 26.324C45.9071 28.1581 43.7408 29.3333 41.3332 29.3333C38.8989 29.3333 36.7966 28.1359 35.2967 26.3616C34.3459 25.2369 34.4869 23.5543 35.6116 22.6035C36.7363 21.6527 38.4189 21.7937 39.3697 22.9184C40.0564 23.7308 40.7541 24 41.3332 24C41.9389 24 42.6526 23.7086 43.2655 22.956C44.1955 21.8141 45.8752 21.6423 47.0172 22.5723ZM22.598 37.8434C24.7259 36.2959 27.9318 34.6667 31.9998 34.6667C36.0679 34.6667 39.2738 36.2959 41.4016 37.8434C42.4707 38.6209 43.2971 39.3981 43.8626 39.9883C44.1465 40.2845 44.3678 40.5369 44.5242 40.7232C44.6025 40.8165 44.6648 40.8935 44.7107 40.9516L44.7675 41.0243L44.7868 41.0494L44.7941 41.059L44.7971 41.0631C44.7978 41.064 44.7998 41.0667 42.6665 42.6667L44.7998 41.0667C45.6835 42.2449 45.4447 43.9164 44.2665 44.8C43.092 45.6809 41.4274 45.4464 40.5415 44.2778L40.5292 44.262C40.5133 44.242 40.4831 44.2044 40.439 44.1518C40.3506 44.0465 40.2073 43.8822 40.012 43.6784C39.6192 43.2686 39.029 42.7125 38.2647 42.1567C36.7259 41.0375 34.5984 40 31.9998 40C29.4013 40 27.2738 41.0375 25.735 42.1567C24.9707 42.7125 24.3804 43.2686 23.9876 43.6784C23.7923 43.8822 23.6491 44.0465 23.5607 44.1518C23.5166 44.2044 23.4864 44.242 23.4705 44.262L23.4593 44.2763L23.4622 44.2724L23.4642 44.2698M23.4642 44.2698C23.4618 44.273 23.4617 44.2731 23.4593 44.2763C22.5735 45.4449 20.9077 45.6809 19.7332 44.8C18.555 43.9164 18.3162 42.2449 19.1998 41.0667L21.3332 42.6667C19.1998 41.0667 19.1992 41.0676 19.1998 41.0667L19.2056 41.059L19.2129 41.0494L19.2321 41.0243L19.2889 40.9516C19.3349 40.8935 19.3972 40.8165 19.4755 40.7232C19.6319 40.5369 19.8532 40.2845 20.137 39.9883C20.7026 39.3981 21.529 38.6209 22.598 37.8434" fill="#C6CBD3"/>
|
||||
</svg>
|
After Width: | Height: | Size: 2.6 KiB |
After Width: | Height: | Size: 216 KiB |
|
@ -0,0 +1,3 @@
|
|||
<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M13.2002 5.8502L7.42519 11.6252L4.80019 9.0002" stroke="#0783BE" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
</svg>
|
After Width: | Height: | Size: 243 B |
|
@ -0,0 +1,3 @@
|
|||
<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M5.3252 9.0002H12.6752" stroke="#0783BE" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
</svg>
|
After Width: | Height: | Size: 219 B |
|
@ -0,0 +1,2 @@
|
|||
<?php
|
||||
// There are many ways to WordPress.
|
|
@ -0,0 +1,3 @@
|
|||
<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect x="5" y="5" width="8" height="8" rx="4" fill="#0783BE"/>
|
||||
</svg>
|
After Width: | Height: | Size: 166 B |
|
@ -0,0 +1,3 @@
|
|||
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M2 3C2 2.44772 2.44772 2 3 2H21C21.5523 2 22 2.44772 22 3C22 3.55228 21.5523 4 21 4H3C2.44772 4 2 3.55228 2 3ZM7.99686 8L16.0031 8C16.4684 8 17.3276 8 18.1187 8.01933C18.514 8.02899 18.9041 8.04372 19.2248 8.06681C19.3844 8.07829 19.539 8.09269 19.6745 8.11158C19.7802 8.12634 19.9726 8.15569 20.1481 8.22836C20.8831 8.53284 21.4672 9.11687 21.7716 9.85195C21.9066 10.1779 21.9561 10.5078 21.9787 10.8376C22 11.1509 22 11.5294 22 11.968V12.032C22 12.4706 22 12.8491 21.9787 13.1624C21.9561 13.4922 21.9066 13.8221 21.7716 14.1481C21.4672 14.8831 20.8831 15.4672 20.1481 15.7716C19.9726 15.8443 19.7802 15.8737 19.6745 15.8884C19.539 15.9073 19.3844 15.9217 19.2248 15.9332C18.9041 15.9563 18.514 15.971 18.1187 15.9807C17.3276 16 16.4685 16 16.0031 16L7.99686 16C7.53151 16 6.6724 16 5.88127 15.9807C5.48602 15.971 5.09594 15.9563 4.77519 15.9332C4.61565 15.9217 4.46098 15.9073 4.32554 15.8884C4.21977 15.8737 4.02739 15.8443 3.85195 15.7716C3.11687 15.4672 2.53284 14.8831 2.22836 14.148C2.09336 13.8221 2.04386 13.4922 2.02135 13.1624C1.99998 12.8491 1.99999 12.4706 2 12.032V11.968C1.99999 11.5294 1.99998 11.1509 2.02135 10.8376C2.04386 10.5078 2.09336 10.1779 2.22836 9.85195C2.53284 9.11687 3.11687 8.53284 3.85195 8.22836C4.02739 8.15569 4.21977 8.12634 4.32554 8.11158C4.46098 8.09269 4.61565 8.07829 4.77519 8.06681C5.09594 8.04372 5.48602 8.02899 5.88127 8.01933C6.67239 8 7.53151 8 7.99686 8ZM4.56999 10.0972C4.34727 10.2032 4.17099 10.3883 4.07612 10.6173C4.05888 10.6589 4.03227 10.7458 4.01671 10.9738C4.00054 11.2107 4 11.5204 4 12C4 12.4796 4.00054 12.7893 4.01671 13.0262C4.03227 13.2542 4.05888 13.3411 4.07612 13.3827C4.17099 13.6117 4.34727 13.7968 4.56999 13.9028C4.57866 13.9042 4.58925 13.9058 4.60192 13.9076C4.67532 13.9178 4.78089 13.9284 4.91878 13.9384C5.19288 13.9581 5.54645 13.9719 5.93011 13.9813C6.69503 14 7.53273 14 8 14L16 14C16.4673 14 17.305 14 18.0699 13.9813C18.4536 13.9719 18.8071 13.9581 19.0812 13.9384C19.2191 13.9284 19.3247 13.9178 19.3981 13.9076C19.4108 13.9058 19.4213 13.9042 19.43 13.9028C19.6527 13.7968 19.829 13.6117 19.9239 13.3827C19.9411 13.3411 19.9677 13.2542 19.9833 13.0262C19.9995 12.7893 20 12.4796 20 12C20 11.5204 19.9995 11.2107 19.9833 10.9738C19.9677 10.7458 19.9411 10.6589 19.9239 10.6173C19.829 10.3883 19.6527 10.2032 19.43 10.0972C19.4213 10.0958 19.4108 10.0942 19.3981 10.0924C19.3247 10.0822 19.2191 10.0716 19.0812 10.0616C18.8071 10.0419 18.4536 10.0281 18.0699 10.0187C17.305 10 16.4673 10 16 10H8C7.53273 10 6.69503 10 5.93011 10.0187C5.54645 10.0281 5.19288 10.0419 4.91878 10.0616C4.78089 10.0716 4.67533 10.0822 4.60192 10.0924C4.58925 10.0942 4.57866 10.0958 4.56999 10.0972ZM2 21C2 20.4477 2.44772 20 3 20H21C21.5523 20 22 20.4477 22 21C22 21.5523 21.5523 22 21 22H3C2.44772 22 2 21.5523 2 21Z" fill="#101828"/>
|
||||
</svg>
|
After Width: | Height: | Size: 2.9 KiB |
|
@ -0,0 +1 @@
|
|||
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M20.5 10.77c.61-.24.92-.36 1.01-.53 .07-.15.07-.33-.01-.47 -.1-.17-.41-.28-1.03-.51L4.58 3.55c-.51-.19-.77-.28-.94-.22 -.15.05-.26.16-.31.3 -.06.16.03.42.21.93l5.7 15.88c.22.62.33.93.5 1.02 .14.07.31.08.46 0 .16-.09.28-.4.52-1.02l2.59-6.68c.04-.13.07-.19.1-.24 .03-.05.07-.09.11-.12 .05-.04.11-.06.23-.11l6.67-2.6Z"/></svg>
|
After Width: | Height: | Size: 482 B |
|
@ -0,0 +1 @@
|
|||
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M7.5 12l3 3 6-6M7.8 21h8.4c1.68 0 2.52 0 3.16-.33 .56-.29 1.02-.75 1.31-1.32 .32-.65.32-1.49.32-3.17v-8.4c0-1.69 0-2.53-.33-3.17 -.29-.57-.75-1.03-1.32-1.32 -.65-.33-1.49-.33-3.17-.33h-8.4c-1.69 0-2.53 0-3.17.32 -.57.28-1.03.74-1.32 1.31 -.33.64-.33 1.48-.33 3.16v8.4c0 1.68 0 2.52.32 3.16 .28.56.74 1.02 1.31 1.31 .64.32 1.48.32 3.16.32Z"/></svg>
|
After Width: | Height: | Size: 506 B |
|
@ -0,0 +1 @@
|
|||
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10.5 2c-.68 0-1.09.04-1.41.21 -.38.19-.69.49-.88.87 -.17.32-.21.73-.22 1.4m11.49-2.5c.67 0 1.08.04 1.4.21 .37.19.68.49.87.87 .16.32.2.73.21 1.4m0 9c-.01.67-.05 1.08-.22 1.4 -.2.37-.5.68-.88.87 -.33.16-.74.2-1.41.21m2.5-8v2m-8-8h1.99m-10.8 20h7.6c1.12 0 1.68 0 2.1-.22 .37-.2.68-.5.87-.88 .21-.43.21-.99.21-2.11v-7.6c0-1.13 0-1.69-.22-2.11 -.2-.38-.5-.69-.88-.88 -.43-.22-.99-.22-2.11-.22h-7.6c-1.13 0-1.69 0-2.11.21 -.38.19-.69.49-.88.87 -.22.42-.22.98-.22 2.1v7.6c0 1.12 0 1.68.21 2.1 .19.37.49.68.87.87 .42.21.98.21 2.1.21Z"/></svg>
|
After Width: | Height: | Size: 694 B |
|
@ -0,0 +1 @@
|
|||
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M20 14c0 4.41-3.59 8-8 8 -4.42 0-8-3.59-8-8 0-1.07.2-2.08.58-3 1.18-2.94 7.41-9 7.41-9s6.23 6.06 7.41 9c.375.92.58 1.93.58 3Z"/></svg>
|
After Width: | Height: | Size: 293 B |
|
@ -0,0 +1 @@
|
|||
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M21 10H3m13-8v4M8 2v4m-.2 16h8.4c1.68 0 2.52 0 3.16-.33 .56-.29 1.02-.75 1.31-1.32 .32-.65.32-1.49.32-3.17v-8.4c0-1.69 0-2.53-.33-3.17 -.29-.57-.75-1.03-1.32-1.32 -.65-.33-1.49-.33-3.17-.33h-8.4c-1.69 0-2.53 0-3.17.32 -.57.28-1.03.74-1.32 1.31 -.33.64-.33 1.48-.33 3.16v8.4c0 1.68 0 2.52.32 3.16 .28.56.74 1.02 1.31 1.31 .64.32 1.48.32 3.16.32Z"/></svg>
|
After Width: | Height: | Size: 512 B |
|
@ -0,0 +1 @@
|
|||
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M21 10H3m13-8v4M8 2v4m-.2 16h8.4c1.68 0 2.52 0 3.16-.33 .56-.29 1.02-.75 1.31-1.32 .32-.65.32-1.49.32-3.17v-8.4c0-1.69 0-2.53-.33-3.17 -.29-.57-.75-1.03-1.32-1.32 -.65-.33-1.49-.33-3.17-.33h-8.4c-1.69 0-2.53 0-3.17.32 -.57.28-1.03.74-1.32 1.31 -.33.64-.33 1.48-.33 3.16v8.4c0 1.68 0 2.52.32 3.16 .28.56.74 1.02 1.31 1.31 .64.32 1.48.32 3.16.32Z"/></svg>
|
After Width: | Height: | Size: 512 B |
|
@ -0,0 +1 @@
|
|||
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M20.01 6.4l-8.5 4.72c-.49.26-.66.87-.39 1.35 .26.48.87.65 1.35.38l8.5-4.73c.48-.27.65-.88.38-1.36 -.27-.49-.88-.66-1.36-.39Zm-7.53 4.72L3.97 6.39c-.49-.27-1.1-.1-1.36.38 -.27.48-.1 1.09.38 1.35l8.5 4.72c.48.26 1.09.09 1.35-.39 .26-.49.09-1.1-.39-1.36Zm-1.49.87v9.5c0 .55.44 1 1 1 .55 0 1-.45 1-1v-9.5c0-.56-.45-1-1-1 -.56 0-1 .44-1 1Zm11 4.05V7.92c0-.56-.01-.71-.11-.99 -.09-.27-.24-.52-.43-.73 -.2-.22-.33-.3-.81-.57l-7.4-4.12c-.47-.26-.59-.32-.86-.38s-.55-.06-.81-.01c-.03 0-.03 0-.06.01 -.25.06-.37.11-.81.35L3.29 5.59c-.33.18-.43.23-.57.34 -.09.06-.17.13-.25.21 -.2.2-.34.45-.43.72 -.1.27-.11.42-.11.98v8.11c0 .55 0 .7.1.98 .08.27.23.51.42.72 .19.21.32.29.8.56l7.4 4.11c.45.25.58.31.85.37 .26.05.54.05.8-.01 .27-.06.4-.12.85-.38l7.39-4.12c.48-.27.6-.35.8-.57 .19-.21.33-.46.42-.73 .09-.28.1-.43.1-.99Zm-2 0c0 .3-.01.36 0 .35 -.01 0 0 0 0 0 0-.01-.05.02-.31.17l-7.41 4.11c-.25.13-.31.16-.3.16 0-.01 0-.01 0 0 .01 0-.05-.03-.3-.17l-7.41-4.12c-.27-.15-.32-.19-.31-.18 -.01-.01-.01-.01-.01-.01 0 .01 0-.06 0-.36V7.87c0-.31 0-.37 0-.36 -.01 0-.01 0 0 0 -.02.01-.02.01-.03.02 .03-.03.1-.07.33-.2l7.4-4.12c.24-.14.3-.17.3-.17 -.01 0-.01 0-.01 0 0-.01-.01-.01 0 0 -.02-.01.04.02.29.16l7.4 4.11c.26.14.31.18.3.17 -.01-.01-.01-.01-.01-.01 -.01-.02 0 .05 0 .35v8.11Z"/></svg>
|
After Width: | Height: | Size: 1.3 KiB |
|
@ -0,0 +1 @@
|
|||
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M16 7.99v5c0 .79.31 1.55.87 2.12 .56.56 1.32.87 2.12.87 .79 0 1.55-.32 2.12-.88 .56-.57.87-1.33.87-2.13v-1c-.01-2.26-.77-4.45-2.17-6.22 -1.41-1.77-3.37-3.01-5.57-3.53s-4.51-.27-6.55.69c-2.05.96-3.7 2.59-4.7 4.61 -1 2.02-1.29 4.32-.81 6.53 .47 2.2 1.68 4.18 3.42 5.62 1.74 1.43 3.92 2.23 6.17 2.27 2.25.03 4.46-.69 6.25-2.06m-2.08-7.94c0 2.2-1.8 4-4 4 -2.21 0-4-1.8-4-4 0-2.21 1.79-4.01 4-4.01 2.2 0 4 1.79 4 4Z"/></svg>
|
After Width: | Height: | Size: 578 B |
|
@ -0,0 +1 @@
|
|||
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M21.15 10.89l-9.02 9.01c-2.06 2.05-5.38 2.05-7.43 0 -2.06-2.06-2.06-5.38 0-7.43l9.01-9.02c1.36-1.37 3.58-1.37 4.94-.001 1.36 1.36 1.36 3.58 0 4.94l-8.662 8.66c-.69.68-1.8.68-2.48 0 -.69-.69-.69-1.8 0-2.48l7.6-7.61"/></svg>
|
After Width: | Height: | Size: 381 B |
|
@ -0,0 +1 @@
|
|||
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M17.11 15.35c-.28.3-.56.6-.86.9 -4.3 4.29-9.68 5.87-12.03 3.53 -1.61-1.61-1.37-4.65.32-7.78m2.32-3.3c.28-.33.57-.64.88-.95 4.29-4.3 9.67-5.88 12.02-3.54 1.6 1.6 1.36 4.64-.33 7.78m-3.21-4.25c4.29 4.29 5.87 9.67 3.53 12.02 -2.35 2.34-7.73.76-12.03-3.54 -4.3-4.3-5.88-9.68-3.54-12.03 2.34-2.35 7.72-.77 12.02 3.53Zm-3.27 4.22c0 .55-.45 1-1 1 -.56 0-1-.45-1-1 0-.56.44-1 1-1 .55 0 1 .44 1 1Z"/></svg>
|
After Width: | Height: | Size: 556 B |
|
@ -0,0 +1 @@
|
|||
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M16.2 21H6.93c-.61 0-.91 0-1.05-.12 -.13-.11-.19-.26-.18-.42 .01-.19.22-.4.65-.83l8.5-8.51c.39-.4.59-.6.82-.67 .2-.07.41-.07.61 0 .22.07.42.27.82.66l3.86 3.86v1.2m-4.8 4.8c1.68 0 2.52 0 3.16-.33 .56-.29 1.02-.75 1.31-1.32 .32-.65.32-1.49.32-3.17m-4.8 4.8h-8.4c-1.69 0-2.53 0-3.17-.33 -.57-.29-1.03-.75-1.32-1.32 -.33-.65-.33-1.49-.33-3.17v-8.4c0-1.69 0-2.53.32-3.17 .28-.57.74-1.03 1.31-1.32 .64-.33 1.48-.33 3.16-.33h8.4c1.68 0 2.52 0 3.16.32 .56.28 1.02.74 1.31 1.31 .32.64.32 1.48.32 3.16v8.4m-10.5-7.7c0 1.1-.9 2-2 2 -1.11 0-2-.9-2-2 0-1.11.89-2 2-2 1.1 0 2 .89 2 2Z"/></svg>
|
After Width: | Height: | Size: 738 B |
|
@ -0,0 +1 @@
|
|||
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 18l-7 4V6l7-4m0 16l7 4m-7-4V2m7 20l6-4V2l-6 4m0 16V6m0 0L9 2"/></svg>
|
After Width: | Height: | Size: 231 B |
|
@ -0,0 +1 @@
|
|||
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M2 12l9.64 4.82c.13.06.19.09.26.11 .06.01.12.01.18 0 .06-.02.13-.05.26-.12l9.64-4.83m-20 5l9.64 4.82c.13.06.19.09.26.11 .06.01.12.01.18 0 .06-.02.13-.05.26-.12l9.64-4.83m-20-10.01l9.64-4.83c.13-.07.19-.1.26-.12 .06-.02.12-.02.18 0 .06.01.13.04.26.11l9.64 4.82 -9.65 4.82c-.14.06-.2.09-.27.11 -.07.01-.13.01-.19 0 -.07-.02-.14-.05-.27-.12L1.91 6.91Z"/></svg>
|
After Width: | Height: | Size: 516 B |
|
@ -0,0 +1,11 @@
|
|||
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M10 5C10 3.89543 10.8954 3 12 3C13.1046 3 14 3.89543 14 5C14 6.10457 13.1046 7 12 7C10.8954 7 10 6.10457 10 5Z" fill="black"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M10 12C10 10.8954 10.8954 10 12 10C13.1046 10 14 10.8954 14 12C14 13.1046 13.1046 14 12 14C10.8954 14 10 13.1046 10 12Z" fill="black"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M10 19C10 17.8954 10.8954 17 12 17C13.1046 17 14 17.8954 14 19C14 20.1046 13.1046 21 12 21C10.8954 21 10 20.1046 10 19Z" fill="black"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M17 5C17 3.89543 17.8954 3 19 3C20.1046 3 21 3.89543 21 5C21 6.10457 20.1046 7 19 7C17.8954 7 17 6.10457 17 5Z" fill="black"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M17 12C17 10.8954 17.8954 10 19 10C20.1046 10 21 10.8954 21 12C21 13.1046 20.1046 14 19 14C17.8954 14 17 13.1046 17 12Z" fill="black"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M17 19C17 17.8954 17.8954 17 19 17C20.1046 17 21 17.8954 21 19C21 20.1046 20.1046 21 19 21C17.8954 21 17 20.1046 17 19Z" fill="black"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M3 5C3 3.89543 3.89543 3 5 3C6.10457 3 7 3.89543 7 5C7 6.10457 6.10457 7 5 7C3.89543 7 3 6.10457 3 5Z" fill="black"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M3 12C3 10.8954 3.89543 10 5 10C6.10457 10 7 10.8954 7 12C7 13.1046 6.10457 14 5 14C3.89543 14 3 13.1046 3 12Z" fill="black"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M3 19C3 17.8954 3.89543 17 5 17C6.10457 17 7 17.8954 7 19C7 20.1046 6.10457 21 5 21C3.89543 21 3 20.1046 3 19Z" fill="black"/>
|
||||
</svg>
|
After Width: | Height: | Size: 1.7 KiB |
|
@ -0,0 +1 @@
|
|||
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M16.2 21H6.93c-.61 0-.91 0-1.05-.12 -.13-.11-.19-.26-.18-.42 .01-.19.22-.4.65-.83l8.5-8.51c.39-.4.59-.6.82-.67 .2-.07.41-.07.61 0 .22.07.42.27.82.66l3.86 3.86v1.2m-4.8 4.8c1.68 0 2.52 0 3.16-.33 .56-.29 1.02-.75 1.31-1.32 .32-.65.32-1.49.32-3.17m-4.8 4.8h-8.4c-1.69 0-2.53 0-3.17-.33 -.57-.29-1.03-.75-1.32-1.32 -.33-.65-.33-1.49-.33-3.17v-8.4c0-1.69 0-2.53.32-3.17 .28-.57.74-1.03 1.31-1.32 .64-.33 1.48-.33 3.16-.33h8.4c1.68 0 2.52 0 3.16.32 .56.28 1.02.74 1.31 1.31 .32.64.32 1.48.32 3.16v8.4m-10.5-7.7c0 1.1-.9 2-2 2 -1.11 0-2-.9-2-2 0-1.11.89-2 2-2 1.1 0 2 .89 2 2Z"/></svg>
|
After Width: | Height: | Size: 738 B |
|
@ -0,0 +1 @@
|
|||
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12.7 18.36l-1.42 1.41c-1.96 1.95-5.12 1.95-7.08 0 -1.96-1.96-1.96-5.12 0-7.071l1.41-1.42m12.72 1.41l1.41-1.42c1.95-1.96 1.95-5.12 0-7.08 -1.96-1.96-5.12-1.96-7.08 0l-1.42 1.41m-2.8 9.86l7-7"/></svg>
|
After Width: | Height: | Size: 358 B |
|
@ -0,0 +1 @@
|
|||
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 16v-4m0-4.01h.01M3 7.93v8.11c0 .34 0 .51.05.66 .04.13.11.25.21.36 .1.11.25.2.55.36l7.4 4.11c.28.15.42.23.57.26 .13.02.27.02.4 0 .15-.04.29-.11.57-.27l7.4-4.12c.29-.17.44-.25.55-.37 .09-.11.16-.23.21-.37 .05-.16.05-.33.05-.67V7.87c0-.35 0-.52-.06-.67 -.05-.14-.12-.26-.22-.37 -.11-.12-.26-.21-.56-.37l-7.4-4.12c-.29-.16-.43-.24-.58-.27 -.14-.03-.27-.03-.41 0 -.16.03-.3.1-.58.26L3.74 6.44c-.3.16-.45.24-.56.36 -.1.1-.17.22-.22.36 -.06.15-.06.32-.06.66Z"/></svg>
|
After Width: | Height: | Size: 623 B |
|
@ -0,0 +1 @@
|
|||
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9.49 3l-3 18m11-18l-3 18m6-13h-17m16 8h-17"/></svg>
|
After Width: | Height: | Size: 211 B |
|
@ -0,0 +1,3 @@
|
|||
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M5.86242 0.999952C5.90762 0.999976 5.95347 1 6 1C6.55229 1 7 1.44772 7 2C7 2.55229 6.55229 3 6 3C5.00565 3 4.70464 3.00859 4.48237 3.06815C3.79218 3.25308 3.25309 3.79218 3.06815 4.48236C3.00859 4.70464 3.00001 5.00565 3.00001 6C3.00001 6.55229 2.55229 7 2 7C1.44772 7 1 6.55229 1 6C1 5.95346 0.99998 5.90761 0.999956 5.86242C0.999525 5.06704 0.999205 4.47638 1.1363 3.96473C1.50617 2.58436 2.58436 1.50617 3.96473 1.1363C4.47638 0.999201 5.06704 0.999521 5.86242 0.999952ZM19.5176 3.06815C19.2954 3.00859 18.9944 3 18 3C17.4477 3 17 2.55229 17 2C17 1.44772 17.4477 1 18 1C18.0465 1 18.0924 0.999976 18.1376 0.999952C18.933 0.999521 19.5236 0.999201 20.0353 1.1363C21.4156 1.50617 22.4938 2.58436 22.8637 3.96473C23.0008 4.47638 23.0005 5.06704 23.0001 5.86243C23 5.90762 23 5.95347 23 6C23 6.55229 22.5523 7 22 7C21.4477 7 21 6.55229 21 6C21 5.00565 20.9914 4.70464 20.9319 4.48236C20.7469 3.79218 20.2078 3.25308 19.5176 3.06815ZM9 2C9 1.44772 9.44772 1 10 1H14C14.5523 1 15 1.44772 15 2C15 2.55229 14.5523 3 14 3H10C9.44772 3 9 2.55229 9 2ZM2 9C2.55229 9 3.00001 9.44772 3.00001 10V14C3.00001 14.5523 2.55229 15 2 15C1.44772 15 1 14.5523 1 14V10C1 9.44772 1.44772 9 2 9ZM22 9C22.5523 9 23 9.44772 23 10V14C23 14.5523 22.5523 15 22 15C21.4477 15 21 14.5523 21 14V10C21 9.44772 21.4477 9 22 9ZM2 17C2.55229 17 3.00001 17.4477 3.00001 18C3.00001 18.9944 3.00859 19.2954 3.06815 19.5176C3.25309 20.2078 3.79218 20.7469 4.48237 20.9319C4.70465 20.9914 5.00565 21 6 21C6.55229 21 7 21.4477 7 22C7 22.5523 6.55229 23 6 23C5.95347 23 5.90762 23 5.86243 23.0001C5.06704 23.0005 4.47638 23.0008 3.96473 22.8637C2.58436 22.4938 1.50617 21.4156 1.1363 20.0353C0.999205 19.5236 0.999525 18.933 0.999956 18.1376C0.99998 18.0924 1 18.0465 1 18C1 17.4477 1.44772 17 2 17ZM22 17C22.5523 17 23 17.4477 23 18C23 18.0465 23 18.0924 23.0001 18.1376C23.0005 18.933 23.0008 19.5236 22.8637 20.0353C22.4938 21.4156 21.4156 22.4938 20.0353 22.8637C19.5236 23.0008 18.933 23.0005 18.1376 23.0001C18.0924 23 18.0465 23 18 23C17.4477 23 17 22.5523 17 22C17 21.4477 17.4477 21 18 21C18.9944 21 19.2954 20.9914 19.5176 20.9319C20.2078 20.7469 20.7469 20.2078 20.9319 19.5176C20.9914 19.2954 21 18.9944 21 18C21 17.4477 21.4477 17 22 17ZM9.4 22C9.4 21.4477 9.84772 21 10.4 21H14C14.5523 21 15 21.4477 15 22C15 22.5523 14.5523 23 14 23H10.4C9.84772 23 9.4 22.5523 9.4 22Z" fill="#101828"/>
|
||||
</svg>
|
After Width: | Height: | Size: 2.4 KiB |
|
@ -0,0 +1 @@
|
|||
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M6 10V4.5C6 3.67 6.67 3 7.5 3 8.32 3 9 3.67 9 4.5V10c0 1.65-1.35 3-3 3 -1.66 0-3-1.35-3-3V6m9.5-4h2.7c1.68 0 2.52 0 3.16.32 .56.28 1.02.74 1.31 1.31 .32.64.32 1.48.32 3.16v10.4c0 1.68 0 2.52-.33 3.16 -.29.56-.75 1.02-1.32 1.31 -.65.32-1.49.32-3.17.32h-6.4c-1.69 0-2.53 0-3.17-.33 -.57-.29-1.03-.75-1.32-1.32 -.33-.65-.33-1.49-.33-3.17v-.7"/></svg>
|
After Width: | Height: | Size: 506 B |
|
@ -0,0 +1 @@
|
|||
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 9h.01M15 15c3.31 0 6-2.69 6-6 0-3.32-2.69-6-6-6 -3.32 0-6 2.68-6 6 0 .27.01.54.05.8 .05.43.08.65.06.78 -.03.14-.05.22-.12.34 -.07.12-.19.24-.43.47L3.44 16.5c-.18.17-.26.25-.33.36 -.06.08-.1.18-.12.28 -.03.11-.03.23-.03.48v1.73c0 .56 0 .84.1 1.05 .09.18.24.34.43.43 .21.1.49.1 1.05.1h1.73c.24 0 .36 0 .48-.03 .1-.03.19-.07.28-.12 .1-.07.18-.15.36-.33l5.11-5.12c.23-.24.35-.36.47-.43 .12-.08.2-.1.34-.12 .13-.02.35 0 .78.06 .26.03.53.05.8.05Z"/></svg>
|
After Width: | Height: | Size: 612 B |
|
@ -0,0 +1 @@
|
|||
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M14 2.26v4.13c0 .56 0 .84.1 1.05 .09.18.24.34.43.43 .21.1.49.1 1.05.1h4.13m-3.74 4.99h-8m8 4h-8m2-8h-2m6-7h-5.2c-1.69 0-2.53 0-3.17.32 -.57.28-1.03.74-1.32 1.31 -.33.64-.33 1.48-.33 3.16v10.4c0 1.68 0 2.52.32 3.16 .28.56.74 1.02 1.31 1.31 .64.32 1.48.32 3.16.32h6.4c1.68 0 2.52 0 3.16-.33 .56-.29 1.02-.75 1.31-1.32 .32-.65.32-1.49.32-3.17v-9.2l-6-6Z"/></svg>
|
After Width: | Height: | Size: 518 B |
|
@ -0,0 +1,3 @@
|
|||
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M12 3C7.02944 3 3 7.02944 3 12C3 16.9706 7.02944 21 12 21C16.9706 21 21 16.9706 21 12C21 7.02944 16.9706 3 12 3ZM1 12C1 5.92487 5.92487 1 12 1C18.0751 1 23 5.92487 23 12C23 18.0751 18.0751 23 12 23C5.92487 23 1 18.0751 1 12ZM9.82589 10.0834C9.26014 10.7521 9 11.5305 9 12C9 13.5314 10.1324 15 12 15C13.8676 15 15 13.5314 15 12C15 10.4686 13.8676 9 12 9C11.1113 9 10.3715 9.43857 9.82589 10.0834ZM8.29911 8.79156C9.12845 7.81143 10.3887 7 12 7C15.1324 7 17 9.5314 17 12C17 14.4686 15.1324 17 12 17C8.86759 17 7 14.4686 7 12C7 10.9695 7.48986 9.74795 8.29911 8.79156Z" fill="#101828"/>
|
||||
</svg>
|
After Width: | Height: | Size: 713 B |
|
@ -0,0 +1,3 @@
|
|||
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M19 9.5C17.8954 9.5 17 10.3954 17 11.5C17 12.6046 17.8954 13.5 19 13.5C20.1046 13.5 21 12.6046 21 11.5C21 10.3954 20.1046 9.5 19 9.5ZM15.126 10.5C15.5701 8.77477 17.1362 7.5 19 7.5C21.2091 7.5 23 9.29086 23 11.5C23 13.7091 21.2091 15.5 19 15.5C17.1362 15.5 15.5701 14.2252 15.126 12.5H8.87398C8.42994 14.2252 6.86384 15.5 5 15.5C2.79086 15.5 1 13.7091 1 11.5C1 9.29086 2.79086 7.5 5 7.5C6.86384 7.5 8.42994 8.77477 8.87398 10.5H15.126ZM5 9.5C3.89543 9.5 3 10.3954 3 11.5C3 12.6046 3.89543 13.5 5 13.5C6.10457 13.5 7 12.6046 7 11.5C7 10.3954 6.10457 9.5 5 9.5Z" fill="#101828"/>
|
||||
</svg>
|
After Width: | Height: | Size: 707 B |
|
@ -0,0 +1 @@
|
|||
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><g stroke-linecap="round" stroke-width="2" stroke="#000" fill="none" stroke-linejoin="round"><path d="M9 16c3.86 0 7-3.14 7-7 0-3.87-3.14-7-7-7C5.13 2 2 5.13 2 9c0 3.86 3.13 7 7 7Z"/><path d="M15 22c3.86 0 7-3.14 7-7 0-3.87-3.14-7-7-7 -3.87 0-7 3.13-7 7 0 3.86 3.13 7 7 7Z"/></g></svg>
|
After Width: | Height: | Size: 345 B |
|
@ -0,0 +1,3 @@
|
|||
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M6.08393 6.00116C6.12174 5.99934 6.15992 5.99965 6.19834 6.00219C8.07055 6.126 9.80164 7.05892 10.9343 8.53351C11.2707 8.9715 11.1884 9.59929 10.7504 9.93572C10.3124 10.2721 9.68462 10.1898 9.34819 9.75182C8.57344 8.74317 7.38982 8.09851 6.11115 8.00102C3.81332 8.01261 2 9.82287 2 12.0005C2 14.1768 3.82625 16 6.13333 16C7.49893 16 8.70832 15.0562 9.66336 13.8724C10.1232 13.3024 10.4825 12.727 10.7273 12.2916C10.8491 12.075 10.9409 11.896 11.0012 11.7735C11.0313 11.7124 11.0535 11.6655 11.0675 11.6354L11.0823 11.603L11.0849 11.5972C11.0848 11.5975 11.0847 11.5977 12 12.0005C12.9153 12.4033 12.9152 12.4036 12.915 12.4039L12.9149 12.4041L12.9149 12.4041L12.9147 12.4046L12.9147 12.4046L12.9139 12.4064L12.9117 12.4113L12.9049 12.4266C12.8992 12.4392 12.8913 12.4563 12.8813 12.4779C12.8613 12.521 12.8326 12.5815 12.7954 12.6571C12.7211 12.808 12.6124 13.0196 12.4706 13.2718C12.1884 13.7738 11.7685 14.4482 11.22 15.1281C10.1583 16.4441 8.4344 18 6.13333 18C2.7693 18 0 15.3284 0 12.0005C0 8.67819 2.74346 6.02707 6.08393 6.00116ZM17.8994 15.9999C20.1826 15.9827 22 14.1652 22 12.0005C22 9.81709 20.1665 8.00097 17.8667 8.00097C16.5011 8.00097 15.2917 8.94479 14.3366 10.1286C13.8768 10.6986 13.5175 11.274 13.2727 11.7094C13.1509 11.926 13.0591 12.105 12.9988 12.2274C12.9687 12.2886 12.9465 12.3355 12.9325 12.3656L12.9177 12.3979L12.9153 12.4033L12.9151 12.4038C12.9152 12.4035 12.9153 12.4033 12 12.0005C11.0847 11.5977 11.0848 11.5974 11.085 11.5971L11.0851 11.5969L11.0851 11.5968L11.0853 11.5964L11.0853 11.5964L11.0861 11.5946L11.0883 11.5896L11.0951 11.5744C11.1008 11.5618 11.1087 11.5446 11.1187 11.5231C11.1387 11.48 11.1674 11.4194 11.2046 11.3439C11.2789 11.193 11.3876 10.9814 11.5294 10.7292C11.8116 10.2272 12.2315 9.55273 12.78 8.87284C13.8417 7.5569 15.5656 6.00097 17.8667 6.00097C21.2184 6.00097 24 8.66061 24 12.0005C24 15.3296 21.2197 18 17.8667 18C17.8448 18 17.8229 17.9993 17.8011 17.9979C15.9245 17.8745 14.189 16.9548 13.0617 15.4721C12.7275 15.0325 12.8129 14.4051 13.2526 14.0708C13.6922 13.7366 14.3196 13.822 14.6538 14.2617C15.417 15.2655 16.6013 15.9052 17.8994 15.9999Z" fill="#101828"/>
|
||||
</svg>
|
After Width: | Height: | Size: 2.2 KiB |
|
@ -0,0 +1,3 @@
|
|||
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M7.7587 2H16.2413C17.0463 1.99999 17.7106 1.99998 18.2518 2.04419C18.8139 2.09012 19.3306 2.18868 19.816 2.43597C20.5686 2.81947 21.1805 3.43139 21.564 4.18404C21.8113 4.66937 21.9099 5.18608 21.9558 5.74817C22 6.28936 22 6.95372 22 7.75868V16.2413C22 17.0463 22 17.7106 21.9558 18.2518C21.9099 18.8139 21.8113 19.3306 21.564 19.816C21.1805 20.5686 20.5686 21.1805 19.816 21.564C19.3306 21.8113 18.8139 21.9099 18.2518 21.9558C17.7106 22 17.0463 22 16.2413 22H7.75868C6.95372 22 6.28936 22 5.74817 21.9558C5.18608 21.9099 4.66937 21.8113 4.18404 21.564C3.43139 21.1805 2.81947 20.5686 2.43597 19.816C2.18868 19.3306 2.09012 18.8139 2.04419 18.2518C1.99998 17.7106 1.99999 17.0463 2 16.2413V7.7587C1.99999 6.95373 1.99998 6.28937 2.04419 5.74817C2.09012 5.18608 2.18868 4.66937 2.43597 4.18404C2.81947 3.43139 3.43139 2.81947 4.18404 2.43597C4.66937 2.18868 5.18608 2.09012 5.74817 2.04419C6.28937 1.99998 6.95373 1.99999 7.7587 2ZM5.91104 4.03755C5.47262 4.07337 5.24842 4.1383 5.09202 4.21799C4.7157 4.40973 4.40973 4.7157 4.21799 5.09202C4.1383 5.24842 4.07337 5.47262 4.03755 5.91104C4.00078 6.36113 4 6.94342 4 7.8V16.2C4 17.0566 4.00078 17.6389 4.03755 18.089C4.07337 18.5274 4.1383 18.7516 4.21799 18.908C4.40973 19.2843 4.7157 19.5903 5.09202 19.782C5.24842 19.8617 5.47262 19.9266 5.91104 19.9624C6.36113 19.9992 6.94342 20 7.8 20H16.2C17.0566 20 17.6389 19.9992 18.089 19.9624C18.5274 19.9266 18.7516 19.8617 18.908 19.782C19.2843 19.5903 19.5903 19.2843 19.782 18.908C19.8617 18.7516 19.9266 18.5274 19.9624 18.089C19.9992 17.6389 20 17.0566 20 16.2V7.8C20 6.94342 19.9992 6.36113 19.9624 5.91104C19.9266 5.47262 19.8617 5.24842 19.782 5.09202C19.5903 4.7157 19.2843 4.40973 18.908 4.21799C18.7516 4.1383 18.5274 4.07337 18.089 4.03755C17.6389 4.00078 17.0566 4 16.2 4H7.8C6.94342 4 6.36113 4.00078 5.91104 4.03755ZM7.37531 9.21913C7.80657 8.87412 8.43586 8.94404 8.78087 9.37531L12 13.3992L15.2191 9.37531C15.5641 8.94404 16.1934 8.87412 16.6247 9.21913C17.056 9.56414 17.1259 10.1934 16.7809 10.6247L12.7809 15.6247C12.5911 15.8619 12.3038 16 12 16C11.6962 16 11.4089 15.8619 11.2191 15.6247L7.21913 10.6247C6.87412 10.1934 6.94404 9.56414 7.37531 9.21913Z" fill="#101828"/>
|
||||
</svg>
|
After Width: | Height: | Size: 2.3 KiB |
|
@ -0,0 +1,3 @@
|
|||
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M5 2.5C5 1.94772 5.44772 1.5 6 1.5H18C18.5523 1.5 19 1.94772 19 2.5C19 3.05228 18.5523 3.5 18 3.5H6C5.44772 3.5 5 3.05228 5 2.5ZM3 6.5C3 5.94772 3.44772 5.5 4 5.5H20C20.5523 5.5 21 5.94772 21 6.5C21 7.05228 20.5523 7.5 20 7.5H4C3.44772 7.5 3 7.05228 3 6.5ZM1 12C1 10.6193 2.11929 9.5 3.5 9.5H20.5C21.8807 9.5 23 10.6193 23 12V20C23 21.3807 21.8807 22.5 20.5 22.5H3.5C2.11929 22.5 1 21.3807 1 20V12ZM3.5 11.5C3.22386 11.5 3 11.7239 3 12V20C3 20.2761 3.22386 20.5 3.5 20.5H20.5C20.7761 20.5 21 20.2761 21 20V12C21 11.7239 20.7761 11.5 20.5 11.5H3.5Z" fill="#101828"/>
|
||||
</svg>
|
After Width: | Height: | Size: 695 B |
|
@ -0,0 +1 @@
|
|||
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M8 8h.01M2 5.2v4.47c0 .48 0 .73.05.96 .04.2.12.39.23.57 .12.2.29.37.64.72l7.66 7.66c1.18 1.18 1.78 1.78 2.46 2 .6.19 1.25.19 1.85 0 .68-.23 1.27-.82 2.46-2.01l2.21-2.22c1.18-1.19 1.78-1.79 2-2.47 .19-.61.19-1.26 0-1.86 -.23-.69-.82-1.28-2.01-2.47l-7.67-7.67c-.35-.35-.52-.52-.73-.65 -.18-.11-.38-.2-.58-.24 -.24-.06-.48-.06-.97-.06H5.12c-1.13 0-1.69 0-2.11.21 -.38.19-.69.49-.88.87 -.22.42-.22.98-.22 2.1ZM8.5 8c0 .27-.23.5-.5.5 -.28 0-.5-.23-.5-.5 0-.28.22-.5.5-.5 .27 0 .5.22.5.5Z"/></svg>
|
After Width: | Height: | Size: 650 B |
|
@ -0,0 +1 @@
|
|||
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 7c0-.94 0-1.4.15-1.77 .2-.5.59-.88 1.08-1.09 .36-.16.83-.16 1.76-.16h10c.93 0 1.39 0 1.76.15 .49.2.87.59 1.08 1.08 .15.36.15.83.15 1.76m-11 13h6m-3-16v16"/></svg>
|
After Width: | Height: | Size: 324 B |
|
@ -0,0 +1 @@
|
|||
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M8 7h8m-4 0v10m-4.2 4h8.4c1.68 0 2.52 0 3.16-.33 .56-.29 1.02-.75 1.31-1.32 .32-.65.32-1.49.32-3.17v-8.4c0-1.69 0-2.53-.33-3.17 -.29-.57-.75-1.03-1.32-1.32 -.65-.33-1.49-.33-3.17-.33h-8.4c-1.69 0-2.53 0-3.17.32 -.57.28-1.03.74-1.32 1.31 -.33.64-.33 1.48-.33 3.16v8.4c0 1.68 0 2.52.32 3.16 .28.56.74 1.02 1.31 1.31 .64.32 1.48.32 3.16.32Z"/></svg>
|
After Width: | Height: | Size: 505 B |
|
@ -0,0 +1 @@
|
|||
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 6v6l4 2m6-2c0 5.52-4.48 10-10 10C6.47 22 2 17.52 2 12 2 6.47 6.47 2 12 2c5.52 0 10 4.47 10 10Z"/></svg>
|
After Width: | Height: | Size: 266 B |
|
@ -0,0 +1 @@
|
|||
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><g stroke-linecap="round" stroke-width="2" stroke="#000" fill="none" stroke-linejoin="round"><path d="M2 12c0-3.32 2.68-6 6-6h8c3.31 0 6 2.68 6 6 0 3.31-2.69 6-6 6H8c-3.32 0-6-2.69-6-6Z"/><path d="M16 14.5c1.38 0 2.5-1.12 2.5-2.5 0-1.39-1.12-2.5-2.5-2.5 -1.39 0-2.5 1.11-2.5 2.5 0 1.38 1.11 2.5 2.5 2.5Z"/></g></svg>
|
After Width: | Height: | Size: 376 B |
|
@ -0,0 +1 @@
|
|||
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M2 12h20M2 12c0 5.52 4.47 10 10 10M2 12C2 6.47 6.47 2 12 2m10 10c0 5.52-4.48 10-10 10m10-10c0-5.53-4.48-10-10-10m0 0c2.5 2.73 3.92 6.29 4 10 -.08 3.7-1.5 7.26-4 10m0-20C9.49 4.73 8.07 8.29 8 12c.07 3.7 1.49 7.26 4 10"/></svg>
|
After Width: | Height: | Size: 384 B |
|
@ -0,0 +1 @@
|
|||
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M20 21c0-1.4 0-2.1-.18-2.67 -.39-1.28-1.39-2.28-2.67-2.67 -.57-.18-1.27-.18-2.67-.18h-5c-1.4 0-2.1 0-2.67.17 -1.28.38-2.28 1.38-2.67 2.66 -.18.56-.18 1.26-.18 2.66m12.5-13.5c0 2.48-2.02 4.5-4.5 4.5 -2.49 0-4.5-2.02-4.5-4.5 0-2.49 2.01-4.5 4.5-4.5 2.48 0 4.5 2.01 4.5 4.5Z"/></svg>
|
After Width: | Height: | Size: 439 B |
|
@ -0,0 +1 @@
|
|||
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M21 4H3m18 16H3M9 9.25H3m6 5.5H3M14.6 16h4.8c.56 0 .84 0 1.05-.11 .18-.1.34-.25.43-.44 .1-.22.1-.5.1-1.06v-4.8c0-.57 0-.85-.11-1.06 -.1-.19-.25-.35-.44-.44 -.22-.11-.5-.11-1.06-.11h-4.8c-.57 0-.85 0-1.06.1 -.19.09-.35.24-.44.43 -.11.21-.11.49-.11 1.05v4.8c0 .56 0 .84.1 1.05 .09.18.24.34.43.43 .21.1.49.1 1.05.1Z"/></svg>
|
After Width: | Height: | Size: 480 B |
|
@ -0,0 +1,2 @@
|
|||
<?php
|
||||
// There are many ways to WordPress.
|
After Width: | Height: | Size: 26 KiB |
After Width: | Height: | Size: 11 KiB |
After Width: | Height: | Size: 13 KiB |
After Width: | Height: | Size: 44 KiB |
After Width: | Height: | Size: 93 KiB |
After Width: | Height: | Size: 14 KiB |
After Width: | Height: | Size: 23 KiB |
After Width: | Height: | Size: 12 KiB |
After Width: | Height: | Size: 9 KiB |
After Width: | Height: | Size: 39 KiB |
After Width: | Height: | Size: 7.8 KiB |
After Width: | Height: | Size: 9.3 KiB |
After Width: | Height: | Size: 27 KiB |
After Width: | Height: | Size: 10 KiB |
After Width: | Height: | Size: 8.9 KiB |
After Width: | Height: | Size: 30 KiB |
After Width: | Height: | Size: 3.1 KiB |
After Width: | Height: | Size: 11 KiB |
After Width: | Height: | Size: 5.9 KiB |
After Width: | Height: | Size: 9.6 KiB |
After Width: | Height: | Size: 11 KiB |
After Width: | Height: | Size: 9.6 KiB |
After Width: | Height: | Size: 15 KiB |
After Width: | Height: | Size: 9.1 KiB |
After Width: | Height: | Size: 23 KiB |
After Width: | Height: | Size: 57 KiB |
After Width: | Height: | Size: 9.8 KiB |
After Width: | Height: | Size: 26 KiB |
After Width: | Height: | Size: 11 KiB |
After Width: | Height: | Size: 9.1 KiB |
After Width: | Height: | Size: 14 KiB |
After Width: | Height: | Size: 10 KiB |
After Width: | Height: | Size: 6.1 KiB |
After Width: | Height: | Size: 13 KiB |
After Width: | Height: | Size: 9 KiB |
After Width: | Height: | Size: 19 KiB |
|
@ -0,0 +1,2 @@
|
|||
<?php
|
||||
// There are many ways to WordPress.
|