Ninja Tables – WP Data Table Plugin for WordPress - Version 1.8.0

Version Description

  • Added WordPress Native HTML editor to the table.
  • Added Number Type Table Column.
  • Sorting table data by column.
  • Number type Sorting added.
  • Added Live Preview, Now users can preview Demo
Download this release

Release Info

Developer techjewel
Plugin Icon 128x128 Ninja Tables – WP Data Table Plugin for WordPress
Version 1.8.0
Comparing to
See all releases

Code changes from version 1.6.0 to 1.8.0

admin/NinjaTablesAdmin.php CHANGED
@@ -56,15 +56,15 @@ class NinjaTablesAdmin {
56
  */
57
  public function register_post_type() {
58
  register_post_type( $this->cpt_name, array(
59
- 'label' => __( 'Ninja Tables', 'ninja-tables' ),
60
- 'public' => false,
61
- 'show_ui' => true,
62
- 'show_in_menu' => false,
63
- 'capability_type' => 'post',
64
- 'hierarchical' => false,
65
- 'query_var' => false,
66
- 'supports' => array( 'title' ),
67
- 'labels' => array(
68
  'name' => __( 'Ninja Tables', 'ninja-tables' ),
69
  'singular_name' => __( 'Table', 'ninja-tables' ),
70
  'menu_name' => __( 'Ninja Tables', 'ninja-tables' ),
@@ -99,7 +99,8 @@ class NinjaTablesAdmin {
99
  add_menu_page( __( 'Ninja Tables', 'ninja-tables' ),
100
  __( 'Ninja Tables', 'ninja-tables' ), $capability, 'ninja_tables',
101
  array( $this, 'main_page' ),
102
- 'data:image/svg+xml;base64,' . base64_encode( '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 321.98 249.25"><defs><style>.cls-1{fill:#fff;}.cls-2,.cls-3{fill:none;stroke-miterlimit:10;stroke-width:7px;}.cls-2{stroke:#9fa3a8;}.cls-3{stroke:#38444f;}</style></defs><title>Asset 7</title><g id="Layer_2" data-name="Layer 2"><g id="Layer_1-2" data-name="Layer 1"><path class="cls-1" d="M312.48,249.25H9.5a9.51,9.51,0,0,1-9.5-9.5V9.5A9.51,9.51,0,0,1,9.5,0h303A9.51,9.51,0,0,1,322,9.5V239.75A9.51,9.51,0,0,1,312.48,249.25ZM9.5,7A2.53,2.53,0,0,0,7,9.5V239.75a2.53,2.53,0,0,0,2.5,2.5h303a2.53,2.53,0,0,0,2.5-2.5V9.5a2.53,2.53,0,0,0-2.5-2.5Z"/><rect class="cls-1" x="74.99" y="44.37" width="8.75" height="202.71"/><path class="cls-2" d="M129.37,234.08"/><path class="cls-2" d="M129.37,44.37"/><path class="cls-3" d="M189.37,234.08"/><path class="cls-3" d="M189.37,44.37"/><path class="cls-3" d="M249.37,234.08"/><path class="cls-3" d="M249.37,44.37"/><path class="cls-1" d="M6.16.51H315.82a6,6,0,0,1,6,6V50.32a.63.63,0,0,1-.63.63H.79a.63.63,0,0,1-.63-.63V6.51A6,6,0,0,1,6.16.51Z"/><rect class="cls-1" x="4.88" y="142.84" width="312.61" height="15.1"/><rect class="cls-1" x="22.47" y="89.99" width="28.27" height="16.97"/><rect class="cls-1" x="111.61" y="89.99" width="165.67" height="16.97"/><rect class="cls-1" x="22.47" y="189.99" width="28.27" height="16.97"/><rect class="cls-1" x="111.61" y="189.99" width="165.67" height="16.97"/></g></g></svg>' ),
 
103
  25 );
104
 
105
  if ( current_user_can( $capability ) ) {
@@ -138,13 +139,8 @@ class NinjaTablesAdmin {
138
  * @since 1.0.0
139
  */
140
  public function enqueue_styles() {
141
- $min = '';
142
- if ( ninja_table_is_in_production_mood() ) {
143
- $min = '.min';
144
- }
145
-
146
  wp_enqueue_style( $this->plugin_name,
147
- plugin_dir_url( __DIR__ ) . "assets/css/ninja-tables-admin{$min}.css",
148
  array(), $this->version, 'all' );
149
  }
150
 
@@ -154,19 +150,41 @@ class NinjaTablesAdmin {
154
  * @since 1.0.0
155
  */
156
  public function enqueue_scripts() {
157
- $min = '';
158
-
159
- if ( ninja_table_is_in_production_mood() ) {
160
- $min = '.min';
161
  }
162
 
163
  wp_enqueue_script(
164
  $this->plugin_name,
165
- plugin_dir_url( __DIR__ ) . "assets/js/ninja-tables-admin{$min}.js",
166
  array( 'jquery' ),
167
  $this->version,
168
  false
169
  );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
170
  }
171
 
172
  public function enqueue_data_tables_scripts() {
@@ -195,6 +213,7 @@ class NinjaTablesAdmin {
195
  'upload-data' => 'uploadData',
196
  'duplicate_table' => 'duplicateTable',
197
  'export-data' => 'exportData',
 
198
  );
199
 
200
  $requested_route = $_REQUEST['target_action'];
@@ -292,107 +311,105 @@ class NinjaTablesAdmin {
292
  'Table Press' => 'TablePress'
293
  );
294
 
295
- $plugin = esc_attr($_REQUEST['plugin']);
296
 
297
- $this->{lcfirst($mapper[$plugin]).'Import'}();
298
  }
299
 
300
  private function tablePressImport() {
301
- try {
302
- $tableId = intval($_REQUEST['tableId']);
303
-
304
- $table = get_post($tableId);
305
- update_post_meta($tableId, '_imported_to_ninja_table', 'yes');
306
- $ninjaTableId = $this->createTable(array(
307
- 'post_author' => intval( $table->post_author ),
308
- 'post_title' => sanitize_text_field('[Table Press] '.$table->post_title),
309
- 'post_content' => wp_kses_post($table->post_excerpt),
310
- 'post_status' => $table->post_status,
311
- 'post_type' => $this->cpt_name,
312
- ) );
313
-
314
- $rows = json_decode($table->post_content, true);
315
-
316
-
317
-
318
- $tableSettings = get_post_meta($table->ID, '_tablepress_table_options', true);
319
-
320
- $tableSettings = json_decode($tableSettings, true);
321
-
322
- if ($tableSettings['table_head']) {
323
- $header = array_shift($rows);
324
- } else {
325
- $header = array();
326
- for ( $i = 0; $i < count( $rows ); $i ++ ) {
327
- $header[] = 'header-' . $i+1;
328
- }
329
- }
330
-
331
-
332
- $rows = array_reverse($rows);
333
-
334
- $this->storeTableConfigWhenImporting($ninjaTableId, $header);
335
-
336
- $this->insertDataToTable($ninjaTableId, $rows, $header);
337
-
338
- $message = __('Successfully imported '
339
- .$table->post_title.
340
- ' table from Table Press Plugin. Please go to all tables and review your table.'
341
- );
342
- } catch (Exception $exception) {
343
- $message = __('Sorry, we could not import the table.', 'ninja-tables');
344
- }
345
 
346
- wp_send_json(array(
 
 
 
 
 
 
 
 
 
 
 
 
 
 
347
  'message' => $message
348
- ), 200);
349
  }
350
 
351
- private function getTablesFromPlugin()
352
- {
353
- $postTypes = array(
354
- 'Table Press' => 'tablepress_table'
355
- );
356
 
357
- $plugin = sanitize_text_field($_REQUEST['plugin']);
358
 
359
- $arguments = array(
360
- 'post_type' => $postTypes[$plugin],
361
- 'post_status' => 'any'
362
- );
363
 
364
- $tables = get_posts($arguments);
365
-
366
- $formattedTables = [];
367
- foreach ($tables as $table) {
368
- $temp = array(
369
- 'ID' => $table->ID,
370
- 'post_title' => $table->post_title,
371
- 'is_already_imported' => get_post_meta($table->ID, '_imported_to_ninja_table', true)
372
- );
373
- $formattedTables[] = $temp;
374
- }
375
-
376
- wp_send_json(array(
377
- 'tables' => $formattedTables
378
- ), 200);
379
  }
380
 
381
  private function formatHeader( $header ) {
382
  $data = array();
383
 
384
  foreach ( $header as $item ) {
385
- $item = strip_tags($item);
386
- $item = strtolower( preg_replace( '/[\W]+/', '',trim( $item ) ) );
387
- $key = sanitize_title($item);
388
  $counter = 0;
389
- while (isset($data[$key])) {
390
- $key = $key.'_'.$counter+1;
391
- $counter++;
392
  }
393
- $data[$key] = $item;
394
  }
395
-
396
  return ninja_table_renameDuplicateValues( $data );
397
  }
398
 
@@ -406,7 +423,7 @@ class NinjaTablesAdmin {
406
  )->fetchAll();
407
 
408
  $header = array_shift( $reader );
409
- $reader = array_reverse($reader);
410
  $this->storeTableConfigWhenImporting( $tableId, $header );
411
 
412
  $this->insertDataToTable( $tableId, $reader, $header );
@@ -467,9 +484,9 @@ class NinjaTablesAdmin {
467
  $content['settings'] );
468
 
469
  if ( $rows = $content['rows'] ) {
470
- $header = array_map(function ($column) {
471
- return $column['key'];
472
- }, $content['columns']);
473
 
474
  $this->insertDataToTable( $tableId, $rows, $header );
475
  }
@@ -493,7 +510,7 @@ class NinjaTablesAdmin {
493
  }
494
 
495
  private function storeTableConfigWhenImporting( $tableId, $header ) {
496
-
497
  $header = array_combine( ninja_table_renameDuplicateValues(
498
  $this->formatHeader( $header )
499
  ), $header );
@@ -520,24 +537,24 @@ class NinjaTablesAdmin {
520
  private function insertDataToTable( $tableId, $values, $header ) {
521
  $header = $this->formatHeader( $header );
522
 
523
- $data = [];
524
  $time = current_time( 'mysql' );
525
 
526
- $headerCount = count($header);
527
  foreach ( $values as $item ) {
528
- if ($headerCount == count($item)) {
529
- $itemTemp = array_combine($header, $item);
530
- } else {
531
- $itemTemp = array_combine(
532
- $header,
533
- array_merge($item,
534
- array_fill_keys(
535
- array_diff(array_values($header), array_keys($item)),
536
- null
537
- )
538
- )
539
- );
540
- }
541
 
542
  array_push( $data, array(
543
  'table_id' => $tableId,
@@ -561,7 +578,8 @@ class NinjaTablesAdmin {
561
  wp_send_json( array(
562
  'columns' => $tableColumns,
563
  'settings' => $tableSettings,
564
- 'table' => $table
 
565
  ), 200 );
566
  }
567
 
@@ -580,7 +598,7 @@ class NinjaTablesAdmin {
580
 
581
 
582
  $tablePreference = $_REQUEST['table_settings'];
583
- $formattedTablePreference = [];
584
  if ( $tablePreference && is_array( $tablePreference ) ) {
585
  foreach ( $tablePreference as $key => $tab_pref ) {
586
 
@@ -663,18 +681,18 @@ class NinjaTablesAdmin {
663
  $query = ninja_tables_DbTable()->where( 'table_id', $tableId );
664
 
665
  if ( $search ) {
666
- $query->search( $search, [ 'value' ] );
667
  }
668
 
669
  $data = $query->take( $perPage )
670
- ->skip( $skip )
671
- ->orderBy( 'id', 'desc' )
672
- ->get();
673
-
674
- $total = ninja_tables_DbTable()->where( 'table_id', $tableId )->count();
675
-
676
- $response = [];
677
-
678
  foreach ( $data as $item ) {
679
  $response[] = array(
680
  'id' => $item->id,
@@ -697,26 +715,26 @@ class NinjaTablesAdmin {
697
  $row = $_REQUEST['row'];
698
  $formattedRow = array();
699
  foreach ( $row as $key => $item ) {
700
- $item = str_replace("\'", "'", $item);
701
- $item = str_replace("\'", "'", $item);
702
- $item = str_replace('\"', '"', $item);
703
- $item = str_replace('\"', '"', $item);
704
- $formattedRow[ $key ] = wp_kses( $item, wp_kses_allowed_html('post') );
705
  }
706
 
707
  $attributes = array(
708
- 'table_id' => $tableId,
709
- 'attribute' => 'value',
710
- 'value' => json_encode( $formattedRow, true ),
711
- 'updated_at' => date('Y-m-d H:i:s')
712
  );
713
 
714
  if ( $id = intval( $_REQUEST['id'] ) ) {
715
  ninja_tables_DbTable()->where( 'id', $id )->update( $attributes );
716
  } else {
717
- $attributes['created_at'] = date('Y-m-d H:i:s');
718
- $insertId = ninja_tables_DbTable()->insert( $attributes );
719
- $id = $insertId;
720
  }
721
 
722
  $item = ninja_tables_DbTable()->find( $id );
@@ -736,11 +754,11 @@ class NinjaTablesAdmin {
736
 
737
  $id = $_REQUEST['id'];
738
 
739
- $ids = is_array( $id ) ? $id : [ $id ];
740
 
741
- $ids = array_map(function ($item) {
742
- return intval($item);
743
- }, $ids);
744
 
745
  $query = ninja_tables_DbTable()->where( 'table_id', $tableId )
746
  ->whereIn( 'id', $ids )->delete();
@@ -769,7 +787,7 @@ class NinjaTablesAdmin {
769
  ), 423 );
770
  }
771
 
772
- $header = [];
773
 
774
  foreach ( $csvHeader as $item ) {
775
  foreach ( $config as $column ) {
@@ -787,7 +805,7 @@ class NinjaTablesAdmin {
787
  ), 423 );
788
  }
789
 
790
- $data = [];
791
  $time = current_time( 'mysql' );
792
 
793
  foreach ( $reader as $item ) {
@@ -888,83 +906,90 @@ class NinjaTablesAdmin {
888
  }
889
 
890
  public function add_tabales_to_editor() {
891
- if ( user_can_richedit() ) {
892
- $pages_with_editor_button = array( 'post.php', 'post-new.php' );
893
- foreach ( $pages_with_editor_button as $editor_page ) {
894
- add_action( "load-{$editor_page}", array( $this, 'init_ninja_mce_buttons' ) );
895
- }
896
- }
897
- }
898
 
899
- public function init_ninja_mce_buttons() {
900
- add_filter( "mce_external_plugins", array($this, 'ninja_table_add_button') );
901
- add_filter( 'mce_buttons', array($this, 'ninja_table_register_button') );
902
- add_action('admin_footer', array($this, 'pushNinjaTablesToEditorFooter'));
903
- }
904
 
905
- public function pushNinjaTablesToEditorFooter() {
906
- $tables = $this->getAllTablesForMce();
907
- ?>
908
  <script type="text/javascript">
909
  window.ninja_tables_tiny_mce = {
910
- label: '<?php _e('Select a Table to insert', 'ninja-tables') ?>',
911
- title: '<?php _e('Insert Ninja Tables Shortcode', 'ninja-tables') ?>',
912
- select_error: '<?php _e('Please select a table'); ?>',
913
- insert_text: '<?php _e('Insert Shortcode', 'ninja-tables'); ?>',
914
- tables: <?php echo json_encode($tables);?>
915
  }
916
  </script>
917
- <?php
918
- }
919
 
920
- private function getAllTablesForMce() {
921
- $args = array(
922
- 'posts_per_page' => -1,
923
- 'orderby' => 'date',
924
- 'order' => 'DESC',
925
- 'post_type' => $this->cpt_name,
926
- 'post_status' => 'any'
927
- );
928
-
929
- $tables = get_posts( $args );
930
- $formatted = array();
931
- $formatted[] = array(
932
- 'text' => __('Select a Table', 'ninja-tables'),
933
- 'value' => ''
934
- );
935
-
936
- foreach ($tables as $table) {
937
- $formatted[] = array(
938
- 'text' => $table->post_title,
939
- 'value' => $table->ID
940
- );
941
- }
942
 
943
- return $formatted;
944
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
945
 
946
 
947
- /**
948
- * add a button to Tiny MCE editor
949
- *
950
- * @param $plugin_array
951
- *
952
- * @return mixed
953
- */
954
- public function ninja_table_add_button( $plugin_array ) {
955
- $plugin_array['ninja_table'] = NINJA_TABLES_DIR_URL.'assets/js/ninja-table-tinymce-button.js';
956
- return $plugin_array;
957
- }
 
 
 
 
 
 
 
 
 
 
 
958
 
959
- /**
960
- * register a button to Tiny MCE editor
961
- *
962
- * @param $buttons
963
- *
964
- * @return mixed
965
- */
966
- public function ninja_table_register_button( $buttons ) {
967
- array_push( $buttons, 'ninja_table' );
968
- return $buttons;
969
  }
970
  }
56
  */
57
  public function register_post_type() {
58
  register_post_type( $this->cpt_name, array(
59
+ 'label' => __( 'Ninja Tables', 'ninja-tables' ),
60
+ 'public' => false,
61
+ 'show_ui' => true,
62
+ 'show_in_menu' => false,
63
+ 'capability_type' => 'post',
64
+ 'hierarchical' => false,
65
+ 'query_var' => false,
66
+ 'supports' => array( 'title' ),
67
+ 'labels' => array(
68
  'name' => __( 'Ninja Tables', 'ninja-tables' ),
69
  'singular_name' => __( 'Table', 'ninja-tables' ),
70
  'menu_name' => __( 'Ninja Tables', 'ninja-tables' ),
99
  add_menu_page( __( 'Ninja Tables', 'ninja-tables' ),
100
  __( 'Ninja Tables', 'ninja-tables' ), $capability, 'ninja_tables',
101
  array( $this, 'main_page' ),
102
+ 'data:image/svg+xml;base64,'
103
+ . base64_encode( '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 321.98 249.25"><defs><style>.cls-1{fill:#fff;}.cls-2,.cls-3{fill:none;stroke-miterlimit:10;stroke-width:7px;}.cls-2{stroke:#9fa3a8;}.cls-3{stroke:#38444f;}</style></defs><title>Asset 7</title><g id="Layer_2" data-name="Layer 2"><g id="Layer_1-2" data-name="Layer 1"><path class="cls-1" d="M312.48,249.25H9.5a9.51,9.51,0,0,1-9.5-9.5V9.5A9.51,9.51,0,0,1,9.5,0h303A9.51,9.51,0,0,1,322,9.5V239.75A9.51,9.51,0,0,1,312.48,249.25ZM9.5,7A2.53,2.53,0,0,0,7,9.5V239.75a2.53,2.53,0,0,0,2.5,2.5h303a2.53,2.53,0,0,0,2.5-2.5V9.5a2.53,2.53,0,0,0-2.5-2.5Z"/><rect class="cls-1" x="74.99" y="44.37" width="8.75" height="202.71"/><path class="cls-2" d="M129.37,234.08"/><path class="cls-2" d="M129.37,44.37"/><path class="cls-3" d="M189.37,234.08"/><path class="cls-3" d="M189.37,44.37"/><path class="cls-3" d="M249.37,234.08"/><path class="cls-3" d="M249.37,44.37"/><path class="cls-1" d="M6.16.51H315.82a6,6,0,0,1,6,6V50.32a.63.63,0,0,1-.63.63H.79a.63.63,0,0,1-.63-.63V6.51A6,6,0,0,1,6.16.51Z"/><rect class="cls-1" x="4.88" y="142.84" width="312.61" height="15.1"/><rect class="cls-1" x="22.47" y="89.99" width="28.27" height="16.97"/><rect class="cls-1" x="111.61" y="89.99" width="165.67" height="16.97"/><rect class="cls-1" x="22.47" y="189.99" width="28.27" height="16.97"/><rect class="cls-1" x="111.61" y="189.99" width="165.67" height="16.97"/></g></g></svg>' ),
104
  25 );
105
 
106
  if ( current_user_can( $capability ) ) {
139
  * @since 1.0.0
140
  */
141
  public function enqueue_styles() {
 
 
 
 
 
142
  wp_enqueue_style( $this->plugin_name,
143
+ plugin_dir_url( __DIR__ ) . "assets/css/ninja-tables-admin.css",
144
  array(), $this->version, 'all' );
145
  }
146
 
150
  * @since 1.0.0
151
  */
152
  public function enqueue_scripts() {
153
+ if ( function_exists( 'wp_enqueue_editor' ) ) {
154
+ wp_enqueue_editor();
155
+ wp_enqueue_media();
 
156
  }
157
 
158
  wp_enqueue_script(
159
  $this->plugin_name,
160
+ plugin_dir_url( __DIR__ ) . "assets/js/ninja-tables-admin.js",
161
  array( 'jquery' ),
162
  $this->version,
163
  false
164
  );
165
+
166
+ $fluentUrl = admin_url( 'plugin-install.php?s=FluentForm&tab=search&type=term' );
167
+
168
+ $isInstalled = defined( 'FLUENTFORM' );
169
+ $dismissed = false;
170
+ $dismissedTime = get_option('_ninja_tables_plugin_suggest_dismiss');
171
+
172
+ if($dismissedTime) {
173
+ if( ( time() - intval($dismissedTime) ) < 518400 ) {
174
+ $dismissed = true;
175
+ }
176
+ } else {
177
+ $dismissed = true;
178
+ update_option('_ninja_tables_plugin_suggest_dismiss', time() - 345600);
179
+ }
180
+
181
+ wp_localize_script( $this->plugin_name, 'ninja_table_admin', array(
182
+ 'img_url' => plugin_dir_url( __DIR__ ) . "assets/img/",
183
+ 'fluentform_url' => $fluentUrl,
184
+ 'fluent_wp_url' => 'https://wordpress.org/plugins/fluentform/',
185
+ 'dismissed' => $dismissed,
186
+ 'isInstalled' => $isInstalled
187
+ ) );
188
  }
189
 
190
  public function enqueue_data_tables_scripts() {
213
  'upload-data' => 'uploadData',
214
  'duplicate_table' => 'duplicateTable',
215
  'export-data' => 'exportData',
216
+ 'dismiss_fluent_suggest' => 'dismissPluginSuggest'
217
  );
218
 
219
  $requested_route = $_REQUEST['target_action'];
311
  'Table Press' => 'TablePress'
312
  );
313
 
314
+ $plugin = esc_attr( $_REQUEST['plugin'] );
315
 
316
+ $this->{lcfirst( $mapper[ $plugin ] ) . 'Import'}();
317
  }
318
 
319
  private function tablePressImport() {
320
+ try {
321
+ $tableId = intval( $_REQUEST['tableId'] );
322
+
323
+ $table = get_post( $tableId );
324
+ update_post_meta( $tableId, '_imported_to_ninja_table', 'yes' );
325
+ $ninjaTableId = $this->createTable( array(
326
+ 'post_author' => intval( $table->post_author ),
327
+ 'post_title' => sanitize_text_field( '[Table Press] ' . $table->post_title ),
328
+ 'post_content' => wp_kses_post( $table->post_excerpt ),
329
+ 'post_status' => $table->post_status,
330
+ 'post_type' => $this->cpt_name,
331
+ ) );
332
+
333
+ $rows = json_decode( $table->post_content, true );
334
+
335
+
336
+ $tableSettings = get_post_meta( $table->ID, '_tablepress_table_options', true );
337
+
338
+ $tableSettings = json_decode( $tableSettings, true );
339
+
340
+ if ( $tableSettings['table_head'] ) {
341
+ $header = array_shift( $rows );
342
+ } else {
343
+ $header = array();
344
+ for ( $i = 0; $i < count( $rows ); $i ++ ) {
345
+ $header[] = 'header-' . $i + 1;
346
+ }
347
+ }
348
+
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
349
 
350
+ $rows = array_reverse( $rows );
351
+
352
+ $this->storeTableConfigWhenImporting( $ninjaTableId, $header );
353
+
354
+ $this->insertDataToTable( $ninjaTableId, $rows, $header );
355
+
356
+ $message = __( 'Successfully imported '
357
+ . $table->post_title .
358
+ ' table from Table Press Plugin. Please go to all tables and review your table.'
359
+ );
360
+ } catch ( Exception $exception ) {
361
+ $message = __( 'Sorry, we could not import the table.', 'ninja-tables' );
362
+ }
363
+
364
+ wp_send_json( array(
365
  'message' => $message
366
+ ), 200 );
367
  }
368
 
369
+ private function getTablesFromPlugin() {
370
+ $postTypes = array(
371
+ 'Table Press' => 'tablepress_table'
372
+ );
 
373
 
374
+ $plugin = sanitize_text_field( $_REQUEST['plugin'] );
375
 
376
+ $arguments = array(
377
+ 'post_type' => $postTypes[ $plugin ],
378
+ 'post_status' => 'any'
379
+ );
380
 
381
+ $tables = get_posts( $arguments );
382
+
383
+ $formattedTables = array();
384
+ foreach ( $tables as $table ) {
385
+ $temp = array(
386
+ 'ID' => $table->ID,
387
+ 'post_title' => $table->post_title,
388
+ 'is_already_imported' => get_post_meta( $table->ID, '_imported_to_ninja_table', true )
389
+ );
390
+ $formattedTables[] = $temp;
391
+ }
392
+
393
+ wp_send_json( array(
394
+ 'tables' => $formattedTables
395
+ ), 200 );
396
  }
397
 
398
  private function formatHeader( $header ) {
399
  $data = array();
400
 
401
  foreach ( $header as $item ) {
402
+ $item = strip_tags( $item );
403
+ $item = strtolower( preg_replace( '/[\W]+/', '', trim( $item ) ) );
404
+ $key = sanitize_title( $item );
405
  $counter = 0;
406
+ while ( isset( $data[ $key ] ) ) {
407
+ $key = $key . '_' . $counter + 1;
408
+ $counter ++;
409
  }
410
+ $data[ $key ] = $item;
411
  }
412
+
413
  return ninja_table_renameDuplicateValues( $data );
414
  }
415
 
423
  )->fetchAll();
424
 
425
  $header = array_shift( $reader );
426
+ $reader = array_reverse( $reader );
427
  $this->storeTableConfigWhenImporting( $tableId, $header );
428
 
429
  $this->insertDataToTable( $tableId, $reader, $header );
484
  $content['settings'] );
485
 
486
  if ( $rows = $content['rows'] ) {
487
+ $header = array_map( function ( $column ) {
488
+ return $column['key'];
489
+ }, $content['columns'] );
490
 
491
  $this->insertDataToTable( $tableId, $rows, $header );
492
  }
510
  }
511
 
512
  private function storeTableConfigWhenImporting( $tableId, $header ) {
513
+
514
  $header = array_combine( ninja_table_renameDuplicateValues(
515
  $this->formatHeader( $header )
516
  ), $header );
537
  private function insertDataToTable( $tableId, $values, $header ) {
538
  $header = $this->formatHeader( $header );
539
 
540
+ $data = array();
541
  $time = current_time( 'mysql' );
542
 
543
+ $headerCount = count( $header );
544
  foreach ( $values as $item ) {
545
+ if ( $headerCount == count( $item ) ) {
546
+ $itemTemp = array_combine( $header, $item );
547
+ } else {
548
+ $itemTemp = array_combine(
549
+ $header,
550
+ array_merge( $item,
551
+ array_fill_keys(
552
+ array_diff( array_values( $header ), array_keys( $item ) ),
553
+ null
554
+ )
555
+ )
556
+ );
557
+ }
558
 
559
  array_push( $data, array(
560
  'table_id' => $tableId,
578
  wp_send_json( array(
579
  'columns' => $tableColumns,
580
  'settings' => $tableSettings,
581
+ 'table' => $table,
582
+ 'preview_url' => site_url('?ninjatable_preview='.$tableID)
583
  ), 200 );
584
  }
585
 
598
 
599
 
600
  $tablePreference = $_REQUEST['table_settings'];
601
+ $formattedTablePreference = array();
602
  if ( $tablePreference && is_array( $tablePreference ) ) {
603
  foreach ( $tablePreference as $key => $tab_pref ) {
604
 
681
  $query = ninja_tables_DbTable()->where( 'table_id', $tableId );
682
 
683
  if ( $search ) {
684
+ $query->search( $search, array( 'value' ) );
685
  }
686
 
687
  $data = $query->take( $perPage )
688
+ ->skip( $skip )
689
+ ->orderBy( 'id', 'desc' )
690
+ ->get();
691
+
692
+ $total = ninja_tables_DbTable()->where( 'table_id', $tableId )->count();
693
+
694
+ $response = array();
695
+
696
  foreach ( $data as $item ) {
697
  $response[] = array(
698
  'id' => $item->id,
715
  $row = $_REQUEST['row'];
716
  $formattedRow = array();
717
  foreach ( $row as $key => $item ) {
718
+ $item = str_replace( "\'", "'", $item );
719
+ $item = str_replace( "\'", "'", $item );
720
+ $item = str_replace( '\"', '"', $item );
721
+ $item = str_replace( '\"', '"', $item );
722
+ $formattedRow[ $key ] = wp_kses( $item, wp_kses_allowed_html( 'post' ) );
723
  }
724
 
725
  $attributes = array(
726
+ 'table_id' => $tableId,
727
+ 'attribute' => 'value',
728
+ 'value' => json_encode( $formattedRow, true ),
729
+ 'updated_at' => date( 'Y-m-d H:i:s' )
730
  );
731
 
732
  if ( $id = intval( $_REQUEST['id'] ) ) {
733
  ninja_tables_DbTable()->where( 'id', $id )->update( $attributes );
734
  } else {
735
+ $attributes['created_at'] = date( 'Y-m-d H:i:s' );
736
+ $insertId = ninja_tables_DbTable()->insert( $attributes );
737
+ $id = $insertId;
738
  }
739
 
740
  $item = ninja_tables_DbTable()->find( $id );
754
 
755
  $id = $_REQUEST['id'];
756
 
757
+ $ids = is_array( $id ) ? $id : array( $id );
758
 
759
+ $ids = array_map( function ( $item ) {
760
+ return intval( $item );
761
+ }, $ids );
762
 
763
  $query = ninja_tables_DbTable()->where( 'table_id', $tableId )
764
  ->whereIn( 'id', $ids )->delete();
787
  ), 423 );
788
  }
789
 
790
+ $header = array();
791
 
792
  foreach ( $csvHeader as $item ) {
793
  foreach ( $config as $column ) {
805
  ), 423 );
806
  }
807
 
808
+ $data = array();
809
  $time = current_time( 'mysql' );
810
 
811
  foreach ( $reader as $item ) {
906
  }
907
 
908
  public function add_tabales_to_editor() {
909
+ if ( user_can_richedit() ) {
910
+ $pages_with_editor_button = array( 'post.php', 'post-new.php' );
911
+ foreach ( $pages_with_editor_button as $editor_page ) {
912
+ add_action( "load-{$editor_page}", array( $this, 'init_ninja_mce_buttons' ) );
913
+ }
914
+ }
915
+ }
916
 
917
+ public function init_ninja_mce_buttons() {
918
+ add_filter( "mce_external_plugins", array( $this, 'ninja_table_add_button' ) );
919
+ add_filter( 'mce_buttons', array( $this, 'ninja_table_register_button' ) );
920
+ add_action( 'admin_footer', array( $this, 'pushNinjaTablesToEditorFooter' ) );
921
+ }
922
 
923
+ public function pushNinjaTablesToEditorFooter() {
924
+ $tables = $this->getAllTablesForMce();
925
+ ?>
926
  <script type="text/javascript">
927
  window.ninja_tables_tiny_mce = {
928
+ label: '<?php _e( 'Select a Table to insert', 'ninja-tables' ) ?>',
929
+ title: '<?php _e( 'Insert Ninja Tables Shortcode', 'ninja-tables' ) ?>',
930
+ select_error: '<?php _e( 'Please select a table' ); ?>',
931
+ insert_text: '<?php _e( 'Insert Shortcode', 'ninja-tables' ); ?>',
932
+ tables: <?php echo json_encode( $tables );?>
933
  }
934
  </script>
935
+ <?php
936
+ }
937
 
938
+ private function getAllTablesForMce() {
939
+ $args = array(
940
+ 'posts_per_page' => - 1,
941
+ 'orderby' => 'date',
942
+ 'order' => 'DESC',
943
+ 'post_type' => $this->cpt_name,
944
+ 'post_status' => 'any'
945
+ );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
946
 
947
+ $tables = get_posts( $args );
948
+ $formatted = array();
949
+ $formatted[] = array(
950
+ 'text' => __( 'Select a Table', 'ninja-tables' ),
951
+ 'value' => ''
952
+ );
953
+
954
+ foreach ( $tables as $table ) {
955
+ $formatted[] = array(
956
+ 'text' => $table->post_title,
957
+ 'value' => $table->ID
958
+ );
959
+ }
960
+
961
+ return $formatted;
962
+ }
963
 
964
 
965
+ /**
966
+ * add a button to Tiny MCE editor
967
+ *
968
+ * @param $plugin_array
969
+ *
970
+ * @return mixed
971
+ */
972
+ public function ninja_table_add_button( $plugin_array ) {
973
+ $plugin_array['ninja_table'] = NINJA_TABLES_DIR_URL . 'assets/js/ninja-table-tinymce-button.js';
974
+
975
+ return $plugin_array;
976
+ }
977
+
978
+ /**
979
+ * register a button to Tiny MCE editor
980
+ *
981
+ * @param $buttons
982
+ *
983
+ * @return mixed
984
+ */
985
+ public function ninja_table_register_button( $buttons ) {
986
+ array_push( $buttons, 'ninja_table' );
987
 
988
+ return $buttons;
989
+ }
990
+
991
+ public function dismissPluginSuggest()
992
+ {
993
+ update_option('_ninja_tables_plugin_suggest_dismiss', time());
 
 
 
 
994
  }
995
  }
assets/css/ninja-tables-admin.css CHANGED
@@ -1 +1,2 @@
1
- @font-face{font-family:element-icons;src:url(../fonts/element-icons.woff?d2f69a92faa6fe990d2e613c358be705) format("woff"),url(../fonts/element-icons.ttf?b02bdc1b846fd65473922f5f62832108) format("truetype");font-weight:400;font-style:normal}[class*=" el-icon-"],[class^=el-icon-]{font-family:element-icons!important;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;vertical-align:baseline;display:inline-block;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.el-icon-arrow-down:before{content:"\E600"}.el-icon-arrow-left:before{content:"\E601"}.el-icon-arrow-right:before{content:"\E602"}.el-icon-arrow-up:before{content:"\E603"}.el-icon-caret-bottom:before{content:"\E604"}.el-icon-caret-left:before{content:"\E605"}.el-icon-caret-right:before{content:"\E606"}.el-icon-caret-top:before{content:"\E607"}.el-icon-check:before{content:"\E608"}.el-icon-circle-check:before{content:"\E609"}.el-icon-circle-close:before{content:"\E60A"}.el-icon-circle-cross:before{content:"\E60B"}.el-icon-close:before{content:"\E60C"}.el-icon-upload:before{content:"\E60D"}.el-icon-d-arrow-left:before{content:"\E60E"}.el-icon-d-arrow-right:before{content:"\E60F"}.el-icon-d-caret:before{content:"\E610"}.el-icon-date:before{content:"\E611"}.el-icon-delete:before{content:"\E612"}.el-icon-document:before{content:"\E613"}.el-icon-edit:before{content:"\E614"}.el-icon-information:before{content:"\E615"}.el-icon-loading:before{content:"\E616"}.el-icon-menu:before{content:"\E617"}.el-icon-message:before{content:"\E618"}.el-icon-minus:before{content:"\E619"}.el-icon-more:before{content:"\E61A"}.el-icon-picture:before{content:"\E61B"}.el-icon-plus:before{content:"\E61C"}.el-icon-search:before{content:"\E61D"}.el-icon-setting:before{content:"\E61E"}.el-icon-share:before{content:"\E61F"}.el-icon-star-off:before{content:"\E620"}.el-icon-star-on:before{content:"\E621"}.el-icon-time:before{content:"\E622"}.el-icon-warning:before{content:"\E623"}.el-icon-delete2:before{content:"\E624"}.el-icon-upload2:before{content:"\E627"}.el-icon-view:before{content:"\E626"}.el-icon-loading{-webkit-animation:rotating 1s linear infinite;animation:rotating 1s linear infinite}.el-icon--right{margin-left:5px}.el-icon--left{margin-right:5px}@-webkit-keyframes rotating{0%{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes rotating{0%{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.pageLoading{text-align:center;display:-webkit-box;display:-ms-flexbox;display:flex;height:150px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.pageLoading .fooicon{font-size:20px}.btn-flex{display:-webkit-inline-box!important;display:-ms-inline-flexbox!important;display:inline-flex!important;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.btn-flex .fooicon{margin-left:5px}h4{margin-bottom:0;font-size:18px}a.btn{text-decoration:none}.press_wrap{background:#fff;padding:20px}#prescription_app{margin-right:20px}.mt_0{margin-top:0}.edited_title{text-transform:capitalize}.sb_container{max-width:960px}.mt_45{margin-top:45px}body .form-horizontal .control-label{text-align:left}.container{max-width:960px}.pscp-profile-devide{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap}.pscp-profile-devide-item{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;-ms-flex-preferred-size:100%;flex-basis:100%}.pscp-profile{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch;padding-right:15px;border-right:2px solid #747575}.pscp-profile-note{margin-left:15px}.pscp-profile-img{margin-right:25px}.pscp-profile-holder{padding:15px 0;border-bottom:7px double #747575}.pscp-items-title-wrap{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.pscp-items-title-wrap h2{margin-top:0}.pscp-profile-meta .title{text-transform:capitalize}.pscp-items-title-wrap{margin-top:47px}.pscp-items-title-meta .btn{background:#ddd;border:2px solid #8f8f8f;padding:10px 20px;color:#444;margin-right:10px}.pscp-items-box{background-color:#fbfeff;padding:17px 15px;position:relative;margin:30px 0}.pscp-items-box-title-wrap{height:0}.pscp-items-box:before{content:"";border:2px solid #757575;position:absolute;width:100%;height:calc(100% - 2px);background:transparent;bottom:0;left:0}.ps_edit-box{position:absolute;right:10px}.pscp-items-box-title-wrap .pscp-items-box-title{margin-top:0;margin-bottom:0;position:relative;top:-46px;display:inline-block;background:#757575;padding:5px 10px;color:#fff}.modal-open .modal{z-index:1000}label.form_group{padding-top:5px;padding-left:10px}.editr--toolbar .dashboard{-webkit-box-sizing:border-box;box-sizing:border-box;padding:0 .5rem}.editr--toolbar .dashboard .dropzone{max-height:86px;min-height:50px!important;background:#f6f6f6}.compact .cell .cell-content{height:28px;overflow:hidden;white-space:nowrap;-ms-text-overflow:ellipsis;text-overflow:ellipsis}.compact .cell .cell-content *{margin:0;padding:0;font-size:14px}.cell .cell-content img{max-width:100%;height:auto}.paginate{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;margin-top:25px;-webkit-box-align:center;-ms-flex-align:center;align-items:center;border-bottom:2px solid #ccc;padding-bottom:8px}.btn.pag-btn{background:#b2ccda;color:#fff}.btn.pag-btn:hover{opacity:.9}.btn.pag-btn:focus,.btn.pag-btn:hover{color:#fff;outline:none!important;-webkit-box-shadow:none!important;box-shadow:none!important}.pag-btn.is-active{background:#0073ae}.btn{display:inline-block;padding:6px 12px;margin-bottom:0;font-size:14px;font-weight:400;line-height:1.42857143;text-align:center;white-space:nowrap;vertical-align:middle;-ms-touch-action:manipulation;touch-action:manipulation;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-image:none;border:1px solid transparent;border-radius:4px;text-decoration:none}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-primary{color:#fff;background-color:#337ab7;border-color:#2e6da4}.btn-primary.focus,.btn-primary:focus{color:#fff;background-color:#286090;border-color:#122b40}.btn-primary.active,.btn-primary:active,.btn-primary:hover{color:#fff;background-color:#286090;border-color:#204d74}.btn-primary.active:hover,.btn-primary:active:hover{color:#fff;background-color:#204d74;border-color:#122b40}.btn-primary.disabled:hover,.btn-primary[disabled]:hover{background-color:#337ab7;border-color:#2e6da4}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.btn-danger.focus,.btn-danger:focus{color:#fff;background-color:#c9302c;border-color:#761c19}.btn-danger:hover{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-sm{padding:5px 10px}.btn-sm,.btn-xs{font-size:12px;line-height:1.5;border-radius:3px}.btn-xs{padding:1px 5px}.close{float:right;font-size:21px;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;filter:alpha(opacity=20);opacity:.2}button.close{-webkit-appearance:none;padding:0;cursor:pointer;background:0 0;border:0}.wp-list-table>tbody>tr>td{vertical-align:middle}.mb20{margin-bottom:20px}.text-right{text-align:right}.modal{position:fixed;top:0;right:0;bottom:0;background:rgba(0,0,0,.6);z-index:1050;display:none;overflow:hidden;left:0}@media (min-width:784px){.modal{left:36px}}@media (min-width:961px){.modal{left:160px}}.fade{opacity:0;-webkit-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.fade.in .modal-dialog{margin-top:50px}.modal-dialog{position:relative;-webkit-transition:all .35s linear;transition:all .35s linear;width:600px;margin-top:0;margin-left:auto;margin-right:auto}.modal-content{position:relative;background-color:#fff;background-clip:padding-box;border:1px solid #999;border:1px solid rgba(0,0,0,.2);border-radius:6px;outline:0;-webkit-box-shadow:0 3px 9px rgba(0,0,0,.5);box-shadow:0 3px 9px rgba(0,0,0,.5)}.modal-header{padding:15px;border-bottom:1px solid #e5e5e5}.modal-header h4{margin-top:0}.modal-header .close{margin-top:-2px}.modal-body{position:relative;padding:15px;max-height:65vh;overflow:auto}.modal-footer{padding:15px;text-align:right;border-top:1px solid #e5e5e5}label{display:inline-block;max-width:100%;margin-bottom:5px;font-weight:700}.form-control{display:block;width:100%;height:34px;padding:6px 12px;font-size:14px;line-height:1.42857143;color:#555;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075);-webkit-transition:border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;transition:border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out}.form-control:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6)}.form-control::-moz-placeholder{color:#999;opacity:1}.form-control:-ms-input-placeholder,.form-control::-webkit-input-placeholder{color:#999}.form-control::-ms-expand{background-color:transparent;border:0}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{background-color:#eee;opacity:1}.form-control[disabled],fieldset[disabled] .form-control{cursor:not-allowed}textarea.form-control{height:auto}.input-group{display:table;position:relative}.input-group .form-control,.input-group .input-btn{display:table-cell;vertical-align:middle}.input-group .form-control{float:left;border-bottom-right-radius:0;border-top-right-radius:0}.input-group .input-btn{width:1%}.input-group .input-btn .btn{border-bottom-left-radius:0;border-top-left-radius:0}.nav{padding-left:0;margin-bottom:0;list-style:none}.nav:after,.nav:before{display:table;content:" "}.nav:after{clear:both}.nav>li,.nav>li>a{position:relative;display:block}.nav>li>a{padding:10px 15px}.nav>li>a:focus,.nav>li>a:hover{text-decoration:none;background-color:#eee}.nav>li.disabled>a{color:#777}.nav>li.disabled>a:focus,.nav>li.disabled>a:hover{color:#777;text-decoration:none;cursor:not-allowed;background-color:transparent}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:4px 4px 0 0;text-decoration:none}.nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.nav-tabs>li>a:focus{-webkit-box-shadow:none;box-shadow:none}.nav-tabs>li.router-link-exact-active>a,.nav-tabs>li.router-link-exact-active>a:focus,.nav-tabs>li.router-link-exact-active>a:hover{color:#555;cursor:default;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent}.tab-content>.tab-pane{padding:20px 0}.form-group{margin-bottom:15px}.table-title{font-size:18px;margin-bottom:0}.table_data_press .help{font-size:90%;color:gray;font-weight:300}.row_full{overflow:hidden}.row_full .pull-left{float:left}.search_action{position:relative;margin-top:0;padding-top:0}.search_action input{width:98%;font-size:95%;padding-right:30px}.search_action i{position:absolute;right:8px;top:10px;font-size:16px}.tablenav{clear:both;height:auto;margin:6px 0 4px;vertical-align:middle;overflow:hidden;display:block}.tablenav .form_group{padding-top:0;padding-bottom:0;margin-bottom:0;margin-top:0}.nav-tab-active,.nav-tab-active:focus,.nav-tab-active:focus:active,.nav-tab-active:hover{-webkit-box-shadow:none;box-shadow:none}.pull-right{float:right}.ql-container.ql-snow{min-height:220px}.ql-container.ql-snow .ql-tooltip{left:0!important;right:0!important;text-align:center}ul.doc_items{margin-left:45px}ul.doc_items li{font-size:14px;margin-bottom:10px;list-style:disc}ul.doc_items li a{text-decoration:none}
 
1
+ @font-face{font-family:element-icons;src:url(../fonts/element-icons.woff?2fad952a20fbbcfd1bf2ebb210dccf7a) format("woff"),url(../fonts/element-icons.ttf?6f0a76321d30f3c8120915e57f7bd77e) format("truetype");font-weight:400;font-style:normal}[class*=" el-icon-"],[class^=el-icon-]{font-family:element-icons!important;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;vertical-align:baseline;display:inline-block;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.el-icon-upload:before{content:"\E60D"}.el-icon-error:before{content:"\E62C"}.el-icon-success:before{content:"\E62D"}.el-icon-warning:before{content:"\E62E"}.el-icon-sort-down:before{content:"\E630"}.el-icon-sort-up:before{content:"\E631"}.el-icon-arrow-left:before{content:"\E600"}.el-icon-circle-plus:before{content:"\E601"}.el-icon-circle-plus-outline:before{content:"\E602"}.el-icon-arrow-down:before{content:"\E603"}.el-icon-arrow-right:before{content:"\E604"}.el-icon-arrow-up:before{content:"\E605"}.el-icon-back:before{content:"\E606"}.el-icon-circle-close:before{content:"\E607"}.el-icon-date:before{content:"\E608"}.el-icon-circle-close-outline:before{content:"\E609"}.el-icon-caret-left:before{content:"\E60A"}.el-icon-caret-bottom:before{content:"\E60B"}.el-icon-caret-top:before{content:"\E60C"}.el-icon-caret-right:before{content:"\E60E"}.el-icon-close:before{content:"\E60F"}.el-icon-d-arrow-left:before{content:"\E610"}.el-icon-check:before{content:"\E611"}.el-icon-delete:before{content:"\E612"}.el-icon-d-arrow-right:before{content:"\E613"}.el-icon-document:before{content:"\E614"}.el-icon-d-caret:before{content:"\E615"}.el-icon-edit-outline:before{content:"\E616"}.el-icon-download:before{content:"\E617"}.el-icon-goods:before{content:"\E618"}.el-icon-search:before{content:"\E619"}.el-icon-info:before{content:"\E61A"}.el-icon-message:before{content:"\E61B"}.el-icon-edit:before{content:"\E61C"}.el-icon-location:before{content:"\E61D"}.el-icon-loading:before{content:"\E61E"}.el-icon-location-outline:before{content:"\E61F"}.el-icon-menu:before{content:"\E620"}.el-icon-minus:before{content:"\E621"}.el-icon-bell:before{content:"\E622"}.el-icon-mobile-phone:before{content:"\E624"}.el-icon-news:before{content:"\E625"}.el-icon-more:before{content:"\E646"}.el-icon-more-outline:before{content:"\E626"}.el-icon-phone:before{content:"\E627"}.el-icon-phone-outline:before{content:"\E628"}.el-icon-picture:before{content:"\E629"}.el-icon-picture-outline:before{content:"\E62A"}.el-icon-plus:before{content:"\E62B"}.el-icon-printer:before{content:"\E62F"}.el-icon-rank:before{content:"\E632"}.el-icon-refresh:before{content:"\E633"}.el-icon-question:before{content:"\E634"}.el-icon-remove:before{content:"\E635"}.el-icon-share:before{content:"\E636"}.el-icon-star-on:before{content:"\E637"}.el-icon-setting:before{content:"\E638"}.el-icon-circle-check:before{content:"\E639"}.el-icon-service:before{content:"\E63A"}.el-icon-sold-out:before{content:"\E63B"}.el-icon-remove-outline:before{content:"\E63C"}.el-icon-star-off:before{content:"\E63D"}.el-icon-circle-check-outline:before{content:"\E63E"}.el-icon-tickets:before{content:"\E63F"}.el-icon-sort:before{content:"\E640"}.el-icon-zoom-in:before{content:"\E641"}.el-icon-time:before{content:"\E642"}.el-icon-view:before{content:"\E643"}.el-icon-upload2:before{content:"\E644"}.el-icon-zoom-out:before{content:"\E645"}.el-icon-loading{-webkit-animation:rotating 2s linear infinite;animation:rotating 2s linear infinite}.el-icon--right{margin-left:5px}.el-icon--left{margin-right:5px}@-webkit-keyframes rotating{0%{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes rotating{0%{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.pageLoading{text-align:center;display:-webkit-box;display:-ms-flexbox;display:flex;height:150px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.pageLoading .fooicon{font-size:20px}.btn-flex{display:-webkit-inline-box!important;display:-ms-inline-flexbox!important;display:inline-flex!important;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.btn-flex .fooicon{margin-left:5px}h4{margin-bottom:0;font-size:18px}a.btn{text-decoration:none}.press_wrap{background:#fff;padding:20px}#prescription_app{margin-right:20px}.mt_0{margin-top:0}.edited_title{text-transform:capitalize}.sb_container{max-width:960px}.mt_45{margin-top:45px}body .form-horizontal .control-label{text-align:left}.container{max-width:960px}.pscp-profile-devide{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap}.pscp-profile-devide-item{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;-ms-flex-preferred-size:100%;flex-basis:100%}.pscp-profile{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch;padding-right:15px;border-right:2px solid #747575}.pscp-profile-note{margin-left:15px}.pscp-profile-img{margin-right:25px}.pscp-profile-holder{padding:15px 0;border-bottom:7px double #747575}.pscp-items-title-wrap{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.pscp-items-title-wrap h2{margin-top:0}.pscp-profile-meta .title{text-transform:capitalize}.pscp-items-title-wrap{margin-top:47px}.pscp-items-title-meta .btn{background:#ddd;border:2px solid #8f8f8f;padding:10px 20px;color:#444;margin-right:10px}.pscp-items-box{background-color:#fbfeff;padding:17px 15px;position:relative;margin:30px 0}.pscp-items-box-title-wrap{height:0}.pscp-items-box:before{content:"";border:2px solid #757575;position:absolute;width:100%;height:calc(100% - 2px);background:transparent;bottom:0;left:0}.ps_edit-box{position:absolute;right:10px}.pscp-items-box-title-wrap .pscp-items-box-title{margin-top:0;margin-bottom:0;position:relative;top:-46px;display:inline-block;background:#757575;padding:5px 10px;color:#fff}.modal-open .modal{z-index:1000}label.form_group{padding-top:5px;padding-left:10px}.editr--toolbar .dashboard{-webkit-box-sizing:border-box;box-sizing:border-box;padding:0 .5rem}.editr--toolbar .dashboard .dropzone{max-height:86px;min-height:50px!important;background:#f6f6f6}.compact .cell .cell-content{height:28px;overflow:hidden;white-space:nowrap;-ms-text-overflow:ellipsis;text-overflow:ellipsis}.compact .cell .cell-content *{margin:0;padding:0;font-size:14px}.cell .cell-content img{max-width:100%;height:auto}.paginate{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;margin-top:25px;-webkit-box-align:center;-ms-flex-align:center;align-items:center;border-bottom:2px solid #ccc;padding-bottom:8px}.btn.pag-btn{background:#b2ccda;color:#fff}.btn.pag-btn:hover{opacity:.9}.btn.pag-btn:focus,.btn.pag-btn:hover{color:#fff;outline:none!important;-webkit-box-shadow:none!important;box-shadow:none!important}.pag-btn.is-active{background:#0073ae}.btn{display:inline-block;padding:6px 12px;margin-bottom:0;font-size:14px;font-weight:400;line-height:1.42857143;text-align:center;white-space:nowrap;vertical-align:middle;-ms-touch-action:manipulation;touch-action:manipulation;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-image:none;border:1px solid transparent;border-radius:4px;text-decoration:none}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-primary{color:#fff;background-color:#337ab7;border-color:#2e6da4}.btn-primary.focus,.btn-primary:focus{color:#fff;background-color:#286090;border-color:#122b40}.btn-primary.active,.btn-primary:active,.btn-primary:hover{color:#fff;background-color:#286090;border-color:#204d74}.btn-primary.active:hover,.btn-primary:active:hover{color:#fff;background-color:#204d74;border-color:#122b40}.btn-primary.disabled:hover,.btn-primary[disabled]:hover{background-color:#337ab7;border-color:#2e6da4}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.btn-danger.focus,.btn-danger:focus{color:#fff;background-color:#c9302c;border-color:#761c19}.btn-danger:hover{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-sm{padding:5px 10px}.btn-sm,.btn-xs{font-size:12px;line-height:1.5;border-radius:3px}.btn-xs{padding:1px 5px}.close{float:right;font-size:21px;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;filter:alpha(opacity=20);opacity:.2}button.close{-webkit-appearance:none;padding:0;cursor:pointer;background:0 0;border:0}.wp-list-table>tbody>tr>td{vertical-align:middle}.mb20{margin-bottom:20px}.text-right{text-align:right}.modal{position:fixed;top:0;right:0;bottom:0;background:rgba(0,0,0,.6);z-index:1050;display:none;overflow:hidden;left:0}@media (min-width:784px){.modal{left:36px}}@media (min-width:961px){.modal{left:160px}}.fade{opacity:0;-webkit-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.fade.in .modal-dialog{margin-top:50px}.modal-dialog{position:relative;-webkit-transition:all .35s linear;transition:all .35s linear;width:600px;margin-top:0;margin-left:auto;margin-right:auto}.modal-content{position:relative;background-color:#fff;background-clip:padding-box;border:1px solid #999;border:1px solid rgba(0,0,0,.2);border-radius:6px;outline:0;-webkit-box-shadow:0 3px 9px rgba(0,0,0,.5);box-shadow:0 3px 9px rgba(0,0,0,.5)}.modal-header{padding:15px;border-bottom:1px solid #e5e5e5}.modal-header h4{margin-top:0}.modal-header .close{margin-top:-2px}.modal-body{position:relative;padding:15px;max-height:65vh;overflow:auto}.modal-footer{padding:15px;text-align:right;border-top:1px solid #e5e5e5}label{display:inline-block;max-width:100%;margin-bottom:5px;font-weight:700}.form-control{display:block;width:100%;height:34px;padding:6px 12px;font-size:14px;line-height:1.42857143;color:#555;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075);-webkit-transition:border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;transition:border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out}.form-control:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6)}.form-control::-moz-placeholder{color:#999;opacity:1}.form-control:-ms-input-placeholder,.form-control::-webkit-input-placeholder{color:#999}.form-control::-ms-expand{background-color:transparent;border:0}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{background-color:#eee;opacity:1}.form-control[disabled],fieldset[disabled] .form-control{cursor:not-allowed}textarea.form-control{height:auto}.input-group{display:table;position:relative}.input-group .form-control,.input-group .input-btn{display:table-cell;vertical-align:middle}.input-group .form-control{float:left;border-bottom-right-radius:0;border-top-right-radius:0}.input-group .input-btn{width:1%}.input-group .input-btn .btn{border-bottom-left-radius:0;border-top-left-radius:0}.nav{padding-left:0;margin-bottom:0;list-style:none}.nav:after,.nav:before{display:table;content:" "}.nav:after{clear:both}.nav>li,.nav>li>a{position:relative;display:block}.nav>li>a{padding:10px 15px}.nav>li>a:focus,.nav>li>a:hover{text-decoration:none;background-color:#eee}.nav>li.disabled>a{color:#777}.nav>li.disabled>a:focus,.nav>li.disabled>a:hover{color:#777;text-decoration:none;cursor:not-allowed;background-color:transparent}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:4px 4px 0 0;text-decoration:none}.nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.nav-tabs>li>a:focus{-webkit-box-shadow:none;box-shadow:none}.nav-tabs>li.router-link-exact-active>a,.nav-tabs>li.router-link-exact-active>a:focus,.nav-tabs>li.router-link-exact-active>a:hover{color:#555;cursor:default;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent}.tab-content>.tab-pane{padding:20px 0}.form-group{margin-bottom:15px}.table-title{font-size:18px;margin-bottom:0}.table_data_press .help{font-size:90%;color:gray;font-weight:300}.row_full{overflow:hidden}.row_full .pull-left{float:left}.search_action{position:relative;margin-top:0;padding-top:0}.search_action input{width:98%;font-size:95%;padding-right:30px}.search_action i{position:absolute;right:8px;top:10px;font-size:16px}.tablenav{clear:both;height:auto;margin:6px 0 4px;vertical-align:middle;overflow:hidden;display:block}.tablenav .form_group{padding-top:0;padding-bottom:0;margin-bottom:0;margin-top:0}.nav-tab-active,.nav-tab-active:focus,.nav-tab-active:focus:active,.nav-tab-active:hover{-webkit-box-shadow:none;box-shadow:none}.pull-right{float:right}.text-center{text-align:center}ul.doc_items{margin-left:45px}ul.doc_items li{font-size:14px;margin-bottom:10px;list-style:disc}ul.doc_items li a{text-decoration:none}.el-aside{background-color:#535c63;color:#333;line-height:200px}.el-main{background-color:#fff;color:#000;min-height:70vh}.el-menu-item.is-active{background-color:#434a50!important;color:#fff!important}.ninja_header{margin:-20px -20px 20px;padding:10px 20px;border-bottom:1px solid #eae7e7;background:#fbfdff}.ninja_content{display:block;position:relative;width:100%}.ninja_content .ninja_suggest{overflow:hidden;display:block;background:#e5e5e5;padding:20px 10px;color:#000;font-size:18px;margin:10px 0}.ninja_content .ninja_suggest p{font-size:16px;padding:0;margin:0}.ninja_content .ninja_block p{font-size:16px}.ninja_content .ninja_export_block{display:block;margin-top:25px}.ninja_content .ninja_block_section{margin:20px 0}.ninja_suggest_plugin{margin:0 0 20px;padding:20px;position:relative;background:#fff;-webkit-box-shadow:0 0 5px 5px rgba(0,0,0,.05);box-shadow:0 0 5px 5px rgba(0,0,0,.05);overflow:hidden}.ninja_suggest_plugin .ninja_dismiss{position:absolute;right:10px;top:5px;cursor:pointer}.ninja_suggest_plugin .ninja_form_banner{width:35%;float:left;padding-right:3%;margin:-20px 0 -24px -20px}@media (max-width:768px){.ninja_suggest_plugin .ninja_form_banner{width:100%;margin:0;padding-right:0;float:none;display:block;margin-bottom:10px}}.ninja_suggest_plugin .ninja_form_banner img{max-width:100%}.ninja_doc_top_blocks{display:block;width:100%;position:relative;margin-bottom:20px;overflow:hidden}.ninja_doc_top_blocks>*{-webkit-box-sizing:border-box;box-sizing:border-box}.ninja_doc_top_blocks .block_1_3{width:33.33%;float:left;padding-right:30px;margin-bottom:30px}@media (max-width:768px){.ninja_doc_top_blocks .block_1_3{width:100%;float:none;padding-right:0;margin-bottom:30px}}.ninja_doc_top_blocks .ff_block .ff_block_box{padding:15px;background:#fff;-webkit-box-shadow:0 0 5px rgba(0,0,0,.05);box-shadow:0 0 5px rgba(0,0,0,.05);border-radius:4px}.ninja_doc_top_blocks .ff_block .ff_block_box img.block_icon{max-height:62px}.ninja_doc_top_blocks .ff_block .ff_block_box ul{list-style:disc;margin-left:20px}.ninja_doc_top_blocks .ff_block .ff_block_box ul li a{font-size:14px;text-decoration:none;line-height:22px}
2
+ /*# sourceMappingURL=ninja-tables-admin.css.map*/
assets/css/ninja-tables-admin.css.map ADDED
@@ -0,0 +1 @@
 
1
+ {"version":3,"sources":["webpack:///./_element_icons.css","webpack:///./src/admin/css/src/admin/css/ninja-tables-admin.scss","webpack:///./ninja-tables-admin.scss"],"names":[],"mappings":"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CA,iBACA,sBACA,6BACA,kBACA,qBCFD,aDMC,WACA,sBACA,kBCFD,aDMC,WACA,yBACA,qBCFD,sCDIG,WACA,yBACA,qBCCH,2DDEG,WACA,yBACA,qBCIH,oDDDG,WACA,yBACA,qBCMH,yDDHG,yBACA,qBCQH,YDHC,WACA,yBACA,qBCOD,oCDLG,WACA,yBACA,qBCUH,kBDPG,WACA,yBACA,qBCWH,QDNC,iBCaD,gBDZC,eACA,gBACA,kBCiBD,QDbC,gBCaD,ODJC,YACA,eACA,gBACA,cACA,WACA,yBACA,yBACA,WCUD,aDNC,wBACA,UACA,eACA,eACA,SCUD,2BDNC,sBCUD,MDNC,mBCUD,YDNC,iBCUD,ODJC,eACA,MACA,QACA,SACA,0BACA,aACA,aACA,gBACA,OCUD,yBDNC,OACE,UCUD,CACF,yBDNC,OACE,WCUD,CACF,MDNC,UACA,sECUD,SDRG,UCYH,uBDVK,gBCcL,cDRC,kBACA,8DACA,YACA,aACA,iBACA,kBCYD,eDRC,kBACA,sBAEA,4BACA,sBACA,gCACA,kBACA,UACA,4CACA,oCCYD,cDRC,aACA,gCCYD,iBDVG,aCcH,qBDXG,gBCeH,YDVC,kBACA,aACA,gBACA,cCcD,cDVC,aACA,iBACA,6BCcD,MDRC,qBACA,eACA,kBACA,gBCcD,cDVC,cACA,WACA,YACA,iBACA,eACA,uBACA,WACA,sBACA,sBACA,sBACA,kBACA,oDACA,4CACA,qFAEA,2PCcD,oBDZG,qBACA,UACA,iFACA,yECgBH,gCDbG,WACA,UCiBH,6EDdG,WCmBH,0BDhBG,6BACA,SCoBH,iFDXC,sBACA,UCqBD,yDDjBC,mBCsBD,sBDlBC,YCsBD,aDlBC,cACA,kBCsBD,mDDpBG,mBACA,sBCyBH,2BDtBG,WACA,6BACA,0BC0BH,wBDvBG,SC2BH,6BDzBK,4BACA,yBC6BL,KDrBC,eACA,gBACA,gBC2BD,uBDzBG,cACA,YCmCH,WD9BG,WC8BH,kBD3BG,kBACA,cCqCH,UDjCK,kBCiCL,gCD/BO,qBACA,sBCoCP,mBDhCK,WCoCL,kDDlCO,WACA,qBACA,mBACA,6BCuCP,UDhCC,6BCoCD,aDlCG,WACA,mBCsCH,eDpCK,iBACA,uBACA,6BACA,0BACA,qBCwCL,qBDtCO,4BC0CP,qBDvCO,wCC2CP,oIDjCO,WACA,eACA,sBACA,sBACA,gCC8CP,uBDtCG,eC0CH,YDrCC,mBCyCD,aDrCC,eACA,gBCyCD,wBDnCG,cACA,WACA,gBCyCH,UDpCC,gBCwCD,qBDtCG,WC0CH,eDrCC,kBACA,aACA,cCyCD,qBDvCG,UACA,cACA,mBC2CH,iBDxCG,kBACA,UACA,SACA,eC4CH,UDvCC,WACA,YACA,iBACA,sBACA,gBACA,cC2CD,sBDzCG,cACA,iBACA,gBACA,aC6CH,yFDxCC,wCC+CD,YD3CC,YC+CD,aD5CC,kBCgDD,aD5CC,iBCgDD,gBD9CG,eACA,mBACA,gBCkDH,kBDhDK,qBCoDL,UD9CC,yBACA,WACA,kBCkDD,SD9CC,sBACA,WACA,gBCkDD,wBD9CC,mCACA,qBCkDD,cD9CC,wBACA,kBACA,gCACA,mBCkDD,eD/CC,cACA,kBACA,WCmDD,8BDjDG,gBACA,cACA,mBACA,kBACA,WACA,eACA,cCqDH,gCDnDK,eACA,UACA,SCuDL,8BDlDK,eCsDL,mCDlDG,cACA,gBCsDH,oCDnDG,cCuDH,sBDjDC,gBACA,aACA,kBACA,gBACA,sFACA,gBCqDD,qCDnDG,kBACA,WACA,QACA,eCuDH,yCDnDG,UACA,WACA,iBACA,2BCuDH,yBD3DC,yCAMI,WACA,SACA,gBACA,WACA,cACA,mBC0DH,CACF,6CDxDK,eC4DL,sBDnDC,cACA,WACA,kBACA,mBACA,gBCuDD,wBDrDG,oDCyDH,iCDtDG,aACA,WACA,mBACA,mBC0DH,yBD9DC,iCAMI,WACA,WACA,gBACA,mBC6DH,CACF,8CDzDK,aACA,gBACA,2CAEA,mCACA,kBC6DL,6DD3DO,gBC+DP,iDD5DO,gBACA,iBCgEP,sDD9DS,eACA,qBACA","file":"/css/ninja-tables-admin.css","sourcesContent":["@font-face{font-family:element-icons;src:url(../../fonts/element-icons.woff?t=1510834658947) format(\"woff\"),url(../../fonts/element-icons.ttf?t=1510834658947) format(\"truetype\");font-weight:400;font-style:normal}[class*=\" el-icon-\"],[class^=el-icon-]{font-family:element-icons!important;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;vertical-align:baseline;display:inline-block;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.el-icon-upload:before{content:\"\\e60d\"}.el-icon-error:before{content:\"\\e62c\"}.el-icon-success:before{content:\"\\e62d\"}.el-icon-warning:before{content:\"\\e62e\"}.el-icon-sort-down:before{content:\"\\e630\"}.el-icon-sort-up:before{content:\"\\e631\"}.el-icon-arrow-left:before{content:\"\\e600\"}.el-icon-circle-plus:before{content:\"\\e601\"}.el-icon-circle-plus-outline:before{content:\"\\e602\"}.el-icon-arrow-down:before{content:\"\\e603\"}.el-icon-arrow-right:before{content:\"\\e604\"}.el-icon-arrow-up:before{content:\"\\e605\"}.el-icon-back:before{content:\"\\e606\"}.el-icon-circle-close:before{content:\"\\e607\"}.el-icon-date:before{content:\"\\e608\"}.el-icon-circle-close-outline:before{content:\"\\e609\"}.el-icon-caret-left:before{content:\"\\e60a\"}.el-icon-caret-bottom:before{content:\"\\e60b\"}.el-icon-caret-top:before{content:\"\\e60c\"}.el-icon-caret-right:before{content:\"\\e60e\"}.el-icon-close:before{content:\"\\e60f\"}.el-icon-d-arrow-left:before{content:\"\\e610\"}.el-icon-check:before{content:\"\\e611\"}.el-icon-delete:before{content:\"\\e612\"}.el-icon-d-arrow-right:before{content:\"\\e613\"}.el-icon-document:before{content:\"\\e614\"}.el-icon-d-caret:before{content:\"\\e615\"}.el-icon-edit-outline:before{content:\"\\e616\"}.el-icon-download:before{content:\"\\e617\"}.el-icon-goods:before{content:\"\\e618\"}.el-icon-search:before{content:\"\\e619\"}.el-icon-info:before{content:\"\\e61a\"}.el-icon-message:before{content:\"\\e61b\"}.el-icon-edit:before{content:\"\\e61c\"}.el-icon-location:before{content:\"\\e61d\"}.el-icon-loading:before{content:\"\\e61e\"}.el-icon-location-outline:before{content:\"\\e61f\"}.el-icon-menu:before{content:\"\\e620\"}.el-icon-minus:before{content:\"\\e621\"}.el-icon-bell:before{content:\"\\e622\"}.el-icon-mobile-phone:before{content:\"\\e624\"}.el-icon-news:before{content:\"\\e625\"}.el-icon-more:before{content:\"\\e646\"}.el-icon-more-outline:before{content:\"\\e626\"}.el-icon-phone:before{content:\"\\e627\"}.el-icon-phone-outline:before{content:\"\\e628\"}.el-icon-picture:before{content:\"\\e629\"}.el-icon-picture-outline:before{content:\"\\e62a\"}.el-icon-plus:before{content:\"\\e62b\"}.el-icon-printer:before{content:\"\\e62f\"}.el-icon-rank:before{content:\"\\e632\"}.el-icon-refresh:before{content:\"\\e633\"}.el-icon-question:before{content:\"\\e634\"}.el-icon-remove:before{content:\"\\e635\"}.el-icon-share:before{content:\"\\e636\"}.el-icon-star-on:before{content:\"\\e637\"}.el-icon-setting:before{content:\"\\e638\"}.el-icon-circle-check:before{content:\"\\e639\"}.el-icon-service:before{content:\"\\e63a\"}.el-icon-sold-out:before{content:\"\\e63b\"}.el-icon-remove-outline:before{content:\"\\e63c\"}.el-icon-star-off:before{content:\"\\e63d\"}.el-icon-circle-check-outline:before{content:\"\\e63e\"}.el-icon-tickets:before{content:\"\\e63f\"}.el-icon-sort:before{content:\"\\e640\"}.el-icon-zoom-in:before{content:\"\\e641\"}.el-icon-time:before{content:\"\\e642\"}.el-icon-view:before{content:\"\\e643\"}.el-icon-upload2:before{content:\"\\e644\"}.el-icon-zoom-out:before{content:\"\\e645\"}.el-icon-loading{-webkit-animation:rotating 2s linear infinite;animation:rotating 2s linear infinite}.el-icon--right{margin-left:5px}.el-icon--left{margin-right:5px}@-webkit-keyframes rotating{0%{-webkit-transform:rotateZ(0);transform:rotateZ(0)}100%{-webkit-transform:rotateZ(360deg);transform:rotateZ(360deg)}}@keyframes rotating{0%{-webkit-transform:rotateZ(0);transform:rotateZ(0)}100%{-webkit-transform:rotateZ(360deg);transform:rotateZ(360deg)}}\n\n\n// WEBPACK FOOTER //\n// ./_element_icons.css","@import \"_element_icons.css\";\n\n.pageLoading {\n text-align: center;\n display: flex;\n height: 150px;\n flex-direction: column;\n align-items: center;\n justify-content: center;\n}\n\n.pageLoading .fooicon {\n font-size: 20px;\n}\n\n.btn-flex {\n display: inline-flex !important;\n align-items: center;\n}\n\n.btn-flex .fooicon {\n margin-left: 5px;\n}\n\n/* GLOBAL STYLES */\n\nh4 {\n margin-bottom: 0;\n font-size: 18px;\n}\n\na.btn {\n text-decoration: none;\n}\n\n/**\n * All of the CSS for your admin-specific functionality should be\n * included in this file.\n */\n\n.press_wrap {\n background: white;\n padding: 20px;\n}\n\n/**\n * All of the CSS for your admin-specific functionality should be\n * included in this file.\n */\n\n#prescription_app {\n margin-right: 20px;\n}\n\n.mt_0 {\n margin-top: 0;\n}\n\n.edited_title {\n text-transform: capitalize;\n}\n\n.sb_container {\n max-width: 960px;\n}\n\n.mt_45 {\n margin-top: 45px;\n}\n\nbody .form-horizontal .control-label {\n text-align: left;\n}\n\n.container {\n max-width: 960px;\n}\n\n/*prescription page*/\n\n.pscp-profile-devide {\n display: flex;\n flex-wrap: nowrap;\n}\n\n.pscp-profile-devide-item {\n flex-grow: 1;\n flex-basis: 100%;\n}\n\n.pscp-profile {\n display: flex;\n align-items: stretch;\n padding-right: 15px;\n border-right: 2px solid #747575;\n}\n\n.pscp-profile-note {\n margin-left: 15px;\n}\n\n.pscp-profile-img {\n margin-right: 25px;\n}\n\n/*Prescription View page*/\n\n.pscp-profile-holder {\n padding: 15px 0;\n border-bottom: 7px double #747575;\n}\n\n.pscp-items-title-wrap {\n display: flex;\n justify-content: space-between;\n h2 {\n margin-top: 0;\n }\n}\n\n.pscp-profile-meta .title {\n text-transform: capitalize;\n}\n\n.pscp-items-title-wrap {\n margin-top: 47px;\n}\n\n.pscp-items-title-meta .btn {\n background: #ddd;\n border: 2px solid #8f8f8f;\n padding: 10px 20px;\n color: #444;\n margin-right: 10px;\n}\n\n/*item style*/\n\n.pscp-items-box {\n background-color: #fbfeff;\n padding: 17px 15px;\n position: relative;\n margin: 30px 0;\n}\n\n.pscp-items-box-title-wrap {\n height: 0px;\n}\n\n.pscp-items-box:before {\n content: '';\n border: 2px solid #757575;\n position: absolute;\n width: 100%;\n height: calc(100% - 2px);\n background: transparent;\n bottom: 0;\n left: 0;\n}\n\n.ps_edit-box {\n position: absolute;\n right: 10px;\n}\n\n.pscp-items-box-title-wrap .pscp-items-box-title {\n margin-top: 0;\n margin-bottom: 0;\n position: relative;\n top: -46px;\n display: inline-block;\n background: #757575;\n padding: 5px 10px;\n color: white;\n}\n\n.modal-open .modal {\n z-index: 1000;\n}\n\nlabel.form_group {\n padding-top: 5px;\n padding-left: 10px;\n}\n\n.editr--toolbar .dashboard {\n box-sizing: border-box;\n padding: 0rem 0.5rem;\n .dropzone {\n max-height: 86px;\n min-height: 50px !important;\n background: #f6f6f6;\n }\n}\n\n.compact {\n .cell {\n .cell-content {\n height: 28px;\n overflow: hidden;\n white-space: nowrap;\n -o-text-overflow: ellipsis;\n -ms-text-overflow: ellipsis;\n text-overflow: ellipsis;\n * {\n margin: 0px;\n padding: 0px;\n font-size: 14px;\n }\n }\n }\n}\n\n.cell {\n .cell-content {\n img {\n max-width: 100%;\n height: auto;\n }\n }\n}\n\n/*pagination*/\n\n.paginate {\n display: flex;\n flex-wrap: nowrap;\n justify-content: space-between;\n margin-top: 25px;\n align-items: center;\n border-bottom: 2px solid #ccc;\n padding-bottom: 8px;\n}\n\n.btn.pag-btn {\n background: #b2ccda;\n color: #fff;\n &:hover {\n opacity: .90;\n color: #fff;\n outline: none !important;\n box-shadow: none !important;\n }\n &:focus {\n color: #fff;\n outline: none !important;\n box-shadow: none !important;\n }\n}\n\n.pag-btn.is-active {\n background: #0073ae;\n}\n\n/* BUTTONS */\n\n.btn {\n display: inline-block;\n padding: 6px 12px;\n margin-bottom: 0;\n font-size: 14px;\n font-weight: 400;\n line-height: 1.42857143;\n text-align: center;\n white-space: nowrap;\n vertical-align: middle;\n -ms-touch-action: manipulation;\n touch-action: manipulation;\n cursor: pointer;\n -webkit-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n user-select: none;\n background-image: none;\n border: 1px solid transparent;\n border-radius: 4px;\n text-decoration: none;\n}\n\n.btn-default {\n color: #333;\n background-color: #fff;\n border-color: #ccc;\n}\n\n.btn-primary {\n color: #fff;\n background-color: #337ab7;\n border-color: #2e6da4;\n &:focus, &.focus {\n color: #fff;\n background-color: #286090;\n border-color: #122b40;\n }\n &:hover, &:active, &.active {\n color: #fff;\n background-color: #286090;\n border-color: #204d74;\n }\n &:active:hover, &.active:hover {\n color: #fff;\n background-color: #204d74;\n border-color: #122b40;\n }\n &.disabled:hover, &[disabled]:hover {\n background-color: #337ab7;\n border-color: #2e6da4;\n }\n}\n\n.btn-danger {\n color: #fff;\n background-color: #d9534f;\n border-color: #d43f3a;\n &:focus, &.focus {\n color: #fff;\n background-color: #c9302c;\n border-color: #761c19;\n }\n &:hover {\n color: #fff;\n background-color: #c9302c;\n border-color: #ac2925;\n }\n}\n\n.btn-sm {\n padding: 5px 10px;\n font-size: 12px;\n line-height: 1.5;\n border-radius: 3px;\n}\n\n.btn-xs {\n padding: 1px 5px;\n font-size: 12px;\n line-height: 1.5;\n border-radius: 3px;\n}\n\n/* HELPER CLASSES */\n\n.close {\n float: right;\n font-size: 21px;\n font-weight: 700;\n line-height: 1;\n color: #000;\n text-shadow: 0 1px 0 #fff;\n filter: alpha(opacity=20);\n opacity: .2;\n}\n\nbutton.close {\n -webkit-appearance: none;\n padding: 0;\n cursor: pointer;\n background: 0 0;\n border: 0;\n}\n\n.wp-list-table > tbody > tr > td {\n vertical-align: middle;\n}\n\n.mb20 {\n margin-bottom: 20px;\n}\n\n.text-right {\n text-align: right;\n}\n\n/* MODAL STYLE */\n\n.modal {\n position: fixed;\n top: 0;\n right: 0;\n bottom: 0;\n background: rgba(0, 0, 0, 0.6);\n z-index: 1050;\n display: none;\n overflow: hidden;\n left: 0;\n}\n\n@media (min-width: 784px) {\n .modal {\n left: 36px;\n }\n}\n\n@media (min-width: 961px) {\n .modal {\n left: 160px;\n }\n}\n\n.fade {\n opacity: 0;\n transition: opacity .15s linear;\n &.in {\n opacity: 1;\n .modal-dialog {\n margin-top: 50px;\n }\n }\n}\n\n.modal-dialog {\n position: relative;\n transition: all 0.35s linear;\n width: 600px;\n margin-top: 0px;\n margin-left: auto;\n margin-right: auto;\n}\n\n.modal-content {\n position: relative;\n background-color: #fff;\n -webkit-background-clip: padding-box;\n background-clip: padding-box;\n border: 1px solid #999;\n border: 1px solid rgba(0, 0, 0, 0.2);\n border-radius: 6px;\n outline: 0;\n -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);\n box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);\n}\n\n.modal-header {\n padding: 15px;\n border-bottom: 1px solid #e5e5e5;\n h4 {\n margin-top: 0;\n }\n .close {\n margin-top: -2px;\n }\n}\n\n.modal-body {\n position: relative;\n padding: 15px;\n max-height: 65vh;\n overflow: auto;\n}\n\n.modal-footer {\n padding: 15px;\n text-align: right;\n border-top: 1px solid #e5e5e5;\n}\n\n/* INPUT */\n\nlabel {\n display: inline-block;\n max-width: 100%;\n margin-bottom: 5px;\n font-weight: bold;\n}\n\n.form-control {\n display: block;\n width: 100%;\n height: 34px;\n padding: 6px 12px;\n font-size: 14px;\n line-height: 1.42857143;\n color: #555;\n background-color: #fff;\n background-image: none;\n border: 1px solid #ccc;\n border-radius: 4px;\n -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;\n -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;\n transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;\n &:focus {\n border-color: #66afe9;\n outline: 0;\n -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);\n }\n &::-moz-placeholder {\n color: #999;\n opacity: 1;\n }\n &:-ms-input-placeholder, &::-webkit-input-placeholder {\n color: #999;\n }\n &::-ms-expand {\n background-color: transparent;\n border: 0;\n }\n &[disabled], &[readonly] {\n background-color: #eee;\n opacity: 1;\n }\n}\n\nfieldset[disabled] .form-control {\n background-color: #eee;\n opacity: 1;\n}\n\n.form-control[disabled], fieldset[disabled] .form-control {\n cursor: not-allowed;\n}\n\ntextarea.form-control {\n height: auto;\n}\n\n.input-group {\n display: table;\n position: relative;\n .form-control, .input-btn {\n display: table-cell;\n vertical-align: middle;\n }\n .form-control {\n float: left;\n border-bottom-right-radius: 0;\n border-top-right-radius: 0;\n }\n .input-btn {\n width: 1%;\n .btn {\n border-bottom-left-radius: 0;\n border-top-left-radius: 0;\n }\n }\n}\n\n/* TABS */\n\n.nav {\n padding-left: 0;\n margin-bottom: 0;\n list-style: none;\n &:before {\n display: table;\n content: \" \";\n }\n &:after {\n display: table;\n content: \" \";\n clear: both;\n }\n > li {\n position: relative;\n display: block;\n > a {\n position: relative;\n display: block;\n padding: 10px 15px;\n &:hover, &:focus {\n text-decoration: none;\n background-color: #eee;\n }\n }\n &.disabled > a {\n color: #777;\n &:hover, &:focus {\n color: #777;\n text-decoration: none;\n cursor: not-allowed;\n background-color: transparent;\n }\n }\n }\n}\n\n.nav-tabs {\n border-bottom: 1px solid #ddd;\n > li {\n float: left;\n margin-bottom: -1px;\n > a {\n margin-right: 2px;\n line-height: 1.42857143;\n border: 1px solid transparent;\n border-radius: 4px 4px 0 0;\n text-decoration: none;\n &:hover {\n border-color: #eee #eee #ddd;\n }\n &:focus {\n box-shadow: none;\n }\n }\n &.router-link-exact-active > a {\n color: #555;\n cursor: default;\n background-color: #fff;\n border: 1px solid #ddd;\n border-bottom-color: transparent;\n &:hover, &:focus {\n color: #555;\n cursor: default;\n background-color: #fff;\n border: 1px solid #ddd;\n border-bottom-color: transparent;\n }\n }\n }\n}\n\n.tab-content > {\n .tab-pane {\n padding: 20px 0;\n }\n}\n\n.form-group {\n margin-bottom: 15px;\n}\n\n.table-title {\n font-size: 18px;\n margin-bottom: 0;\n}\n\n/* vue notification */\n.table_data_press {\n .help {\n font-size: 90%;\n color: gray;\n font-weight: 300;\n }\n}\n\n.row_full {\n overflow: hidden;\n .pull-left {\n float: left;\n }\n}\n\n.search_action {\n position: relative;\n margin-top: 0px;\n padding-top: 0px;\n input {\n width: 98%;\n font-size: 95%;\n padding-right: 30px;\n }\n i {\n position: absolute;\n right: 8px;\n top: 10px;\n font-size: 16px;\n }\n}\n\n.tablenav {\n clear: both;\n height: auto;\n margin: 6px 0 4px;\n vertical-align: middle;\n overflow: hidden;\n display: block;\n .form_group {\n padding-top: 0px;\n padding-bottom: 0px;\n margin-bottom: 0px;\n margin-top: 0px;\n }\n}\n\n.nav-tab-active, .nav-tab-active:focus, .nav-tab-active:focus:active, .nav-tab-active:hover {\n box-shadow: none;\n}\n\n.pull-right {\n float: right;\n}\n.text-center {\n text-align: center;\n}\n\nul.doc_items {\n margin-left: 45px;\n li {\n font-size: 14px;\n margin-bottom: 10px;\n list-style: disc;\n a {\n text-decoration: none;\n }\n }\n}\n\n.el-aside {\n background-color: #535c63;\n color: #333;\n line-height: 200px;\n}\n\n.el-main {\n background-color: white;\n color: black;\n min-height: 70vh;\n}\n\n.el-menu-item.is-active {\n background-color: rgb(67,74,80) !important;\n color: white !important;\n}\n\n.ninja_header {\n margin: -20px -20px 20px;\n padding: 10px 20px;\n border-bottom: 1px solid #eae7e7;\n background: #fbfdff;\n}\n.ninja_content {\n display: block;\n position: relative;\n width: 100%;\n .ninja_suggest {\n overflow: hidden;\n display: block;\n background: #e5e5e5;\n padding: 20px 10px;\n color: black;\n font-size: 18px;\n margin: 10px 0px;\n p {\n font-size: 16px;\n padding: 0px;\n margin: 0px;\n }\n }\n .ninja_block {\n p {\n font-size: 16px;\n }\n }\n .ninja_export_block {\n display: block;\n margin-top: 25px;\n }\n .ninja_block_section {\n margin: 20px 0px;\n }\n}\n\n\n.ninja_suggest_plugin {\n margin: 0px 0px 20px;\n padding: 20px;\n position: relative;\n background: white;\n box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.05);\n overflow: hidden;\n .ninja_dismiss {\n position: absolute;\n right: 10px;\n top: 5px;\n cursor: pointer;\n }\n \n .ninja_form_banner {\n width: 35%;\n float: left;\n padding-right: 3%;\n margin: -20px 0px -24px -20px;\n @media (max-width: 768px) {\n width: 100%;\n margin: 0px;\n padding-right: 0px;\n float: none;\n display: block;\n margin-bottom: 10px;\n }\n img {\n max-width: 100%;\n }\n }\n}\n\n\n\n\n.ninja_doc_top_blocks {\n display: block;\n width: 100%;\n position: relative;\n margin-bottom: 20px;\n overflow: hidden;\n > * {\n box-sizing: border-box;\n }\n .block_1_3 {\n width: 33.33%;\n float: left;\n padding-right: 30px;\n margin-bottom: 30px;\n @media (max-width: 768px) {\n width: 100%;\n float: none;\n padding-right: 0px;\n margin-bottom: 30px;\n }\n }\n .ff_block {\n .ff_block_box {\n padding: 15px;\n background: white;\n -webkit-box-shadow: 0 0 5px rgba(0,0,0,.05);\n -moz-box-shadow: 0 0 5px rgba(0,0,0,.05);\n box-shadow: 0 0 5px rgba(0,0,0,.05);\n border-radius: 4px;\n img.block_icon {\n max-height: 62px;\n }\n ul {\n list-style: disc;\n margin-left: 20px;\n li a {\n font-size: 14px;\n text-decoration: none;\n line-height: 22px;\n }\n }\n }\n }\n}\n\n\n// WEBPACK FOOTER //\n// ./src/admin/css/src/admin/css/ninja-tables-admin.scss","@import url(_element_icons.css);\n\n.pageLoading {\n text-align: center;\n display: flex;\n height: 150px;\n flex-direction: column;\n align-items: center;\n justify-content: center;\n}\n\n.pageLoading .fooicon {\n font-size: 20px;\n}\n\n.btn-flex {\n display: inline-flex !important;\n align-items: center;\n}\n\n.btn-flex .fooicon {\n margin-left: 5px;\n}\n\n/* GLOBAL STYLES */\n\nh4 {\n margin-bottom: 0;\n font-size: 18px;\n}\n\na.btn {\n text-decoration: none;\n}\n\n/**\n * All of the CSS for your admin-specific functionality should be\n * included in this file.\n */\n\n.press_wrap {\n background: white;\n padding: 20px;\n}\n\n/**\n * All of the CSS for your admin-specific functionality should be\n * included in this file.\n */\n\n#prescription_app {\n margin-right: 20px;\n}\n\n.mt_0 {\n margin-top: 0;\n}\n\n.edited_title {\n text-transform: capitalize;\n}\n\n.sb_container {\n max-width: 960px;\n}\n\n.mt_45 {\n margin-top: 45px;\n}\n\nbody .form-horizontal .control-label {\n text-align: left;\n}\n\n.container {\n max-width: 960px;\n}\n\n/*prescription page*/\n\n.pscp-profile-devide {\n display: flex;\n flex-wrap: nowrap;\n}\n\n.pscp-profile-devide-item {\n flex-grow: 1;\n flex-basis: 100%;\n}\n\n.pscp-profile {\n display: flex;\n align-items: stretch;\n padding-right: 15px;\n border-right: 2px solid #747575;\n}\n\n.pscp-profile-note {\n margin-left: 15px;\n}\n\n.pscp-profile-img {\n margin-right: 25px;\n}\n\n/*Prescription View page*/\n\n.pscp-profile-holder {\n padding: 15px 0;\n border-bottom: 7px double #747575;\n}\n\n.pscp-items-title-wrap {\n display: flex;\n justify-content: space-between;\n}\n\n.pscp-items-title-wrap h2 {\n margin-top: 0;\n}\n\n.pscp-profile-meta .title {\n text-transform: capitalize;\n}\n\n.pscp-items-title-wrap {\n margin-top: 47px;\n}\n\n.pscp-items-title-meta .btn {\n background: #ddd;\n border: 2px solid #8f8f8f;\n padding: 10px 20px;\n color: #444;\n margin-right: 10px;\n}\n\n/*item style*/\n\n.pscp-items-box {\n background-color: #fbfeff;\n padding: 17px 15px;\n position: relative;\n margin: 30px 0;\n}\n\n.pscp-items-box-title-wrap {\n height: 0px;\n}\n\n.pscp-items-box:before {\n content: '';\n border: 2px solid #757575;\n position: absolute;\n width: 100%;\n height: calc(100% - 2px);\n background: transparent;\n bottom: 0;\n left: 0;\n}\n\n.ps_edit-box {\n position: absolute;\n right: 10px;\n}\n\n.pscp-items-box-title-wrap .pscp-items-box-title {\n margin-top: 0;\n margin-bottom: 0;\n position: relative;\n top: -46px;\n display: inline-block;\n background: #757575;\n padding: 5px 10px;\n color: white;\n}\n\n.modal-open .modal {\n z-index: 1000;\n}\n\nlabel.form_group {\n padding-top: 5px;\n padding-left: 10px;\n}\n\n.editr--toolbar .dashboard {\n box-sizing: border-box;\n padding: 0rem 0.5rem;\n}\n\n.editr--toolbar .dashboard .dropzone {\n max-height: 86px;\n min-height: 50px !important;\n background: #f6f6f6;\n}\n\n.compact .cell .cell-content {\n height: 28px;\n overflow: hidden;\n white-space: nowrap;\n -o-text-overflow: ellipsis;\n -ms-text-overflow: ellipsis;\n text-overflow: ellipsis;\n}\n\n.compact .cell .cell-content * {\n margin: 0px;\n padding: 0px;\n font-size: 14px;\n}\n\n.cell .cell-content img {\n max-width: 100%;\n height: auto;\n}\n\n/*pagination*/\n\n.paginate {\n display: flex;\n flex-wrap: nowrap;\n justify-content: space-between;\n margin-top: 25px;\n align-items: center;\n border-bottom: 2px solid #ccc;\n padding-bottom: 8px;\n}\n\n.btn.pag-btn {\n background: #b2ccda;\n color: #fff;\n}\n\n.btn.pag-btn:hover {\n opacity: .90;\n color: #fff;\n outline: none !important;\n box-shadow: none !important;\n}\n\n.btn.pag-btn:focus {\n color: #fff;\n outline: none !important;\n box-shadow: none !important;\n}\n\n.pag-btn.is-active {\n background: #0073ae;\n}\n\n/* BUTTONS */\n\n.btn {\n display: inline-block;\n padding: 6px 12px;\n margin-bottom: 0;\n font-size: 14px;\n font-weight: 400;\n line-height: 1.42857143;\n text-align: center;\n white-space: nowrap;\n vertical-align: middle;\n -ms-touch-action: manipulation;\n touch-action: manipulation;\n cursor: pointer;\n -webkit-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n user-select: none;\n background-image: none;\n border: 1px solid transparent;\n border-radius: 4px;\n text-decoration: none;\n}\n\n.btn-default {\n color: #333;\n background-color: #fff;\n border-color: #ccc;\n}\n\n.btn-primary {\n color: #fff;\n background-color: #337ab7;\n border-color: #2e6da4;\n}\n\n.btn-primary:focus,\n.btn-primary.focus {\n color: #fff;\n background-color: #286090;\n border-color: #122b40;\n}\n\n.btn-primary:hover,\n.btn-primary:active,\n.btn-primary.active {\n color: #fff;\n background-color: #286090;\n border-color: #204d74;\n}\n\n.btn-primary:active:hover,\n.btn-primary.active:hover {\n color: #fff;\n background-color: #204d74;\n border-color: #122b40;\n}\n\n.btn-primary.disabled:hover,\n.btn-primary[disabled]:hover {\n background-color: #337ab7;\n border-color: #2e6da4;\n}\n\n.btn-danger {\n color: #fff;\n background-color: #d9534f;\n border-color: #d43f3a;\n}\n\n.btn-danger:focus,\n.btn-danger.focus {\n color: #fff;\n background-color: #c9302c;\n border-color: #761c19;\n}\n\n.btn-danger:hover {\n color: #fff;\n background-color: #c9302c;\n border-color: #ac2925;\n}\n\n.btn-sm {\n padding: 5px 10px;\n font-size: 12px;\n line-height: 1.5;\n border-radius: 3px;\n}\n\n.btn-xs {\n padding: 1px 5px;\n font-size: 12px;\n line-height: 1.5;\n border-radius: 3px;\n}\n\n/* HELPER CLASSES */\n\n.close {\n float: right;\n font-size: 21px;\n font-weight: 700;\n line-height: 1;\n color: #000;\n text-shadow: 0 1px 0 #fff;\n filter: alpha(opacity=20);\n opacity: .2;\n}\n\nbutton.close {\n -webkit-appearance: none;\n padding: 0;\n cursor: pointer;\n background: 0 0;\n border: 0;\n}\n\n.wp-list-table > tbody > tr > td {\n vertical-align: middle;\n}\n\n.mb20 {\n margin-bottom: 20px;\n}\n\n.text-right {\n text-align: right;\n}\n\n/* MODAL STYLE */\n\n.modal {\n position: fixed;\n top: 0;\n right: 0;\n bottom: 0;\n background: rgba(0, 0, 0, 0.6);\n z-index: 1050;\n display: none;\n overflow: hidden;\n left: 0;\n}\n\n@media (min-width: 784px) {\n .modal {\n left: 36px;\n }\n}\n\n@media (min-width: 961px) {\n .modal {\n left: 160px;\n }\n}\n\n.fade {\n opacity: 0;\n transition: opacity .15s linear;\n}\n\n.fade.in {\n opacity: 1;\n}\n\n.fade.in .modal-dialog {\n margin-top: 50px;\n}\n\n.modal-dialog {\n position: relative;\n transition: all 0.35s linear;\n width: 600px;\n margin-top: 0px;\n margin-left: auto;\n margin-right: auto;\n}\n\n.modal-content {\n position: relative;\n background-color: #fff;\n -webkit-background-clip: padding-box;\n background-clip: padding-box;\n border: 1px solid #999;\n border: 1px solid rgba(0, 0, 0, 0.2);\n border-radius: 6px;\n outline: 0;\n -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);\n box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);\n}\n\n.modal-header {\n padding: 15px;\n border-bottom: 1px solid #e5e5e5;\n}\n\n.modal-header h4 {\n margin-top: 0;\n}\n\n.modal-header .close {\n margin-top: -2px;\n}\n\n.modal-body {\n position: relative;\n padding: 15px;\n max-height: 65vh;\n overflow: auto;\n}\n\n.modal-footer {\n padding: 15px;\n text-align: right;\n border-top: 1px solid #e5e5e5;\n}\n\n/* INPUT */\n\nlabel {\n display: inline-block;\n max-width: 100%;\n margin-bottom: 5px;\n font-weight: bold;\n}\n\n.form-control {\n display: block;\n width: 100%;\n height: 34px;\n padding: 6px 12px;\n font-size: 14px;\n line-height: 1.42857143;\n color: #555;\n background-color: #fff;\n background-image: none;\n border: 1px solid #ccc;\n border-radius: 4px;\n -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;\n -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;\n transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;\n}\n\n.form-control:focus {\n border-color: #66afe9;\n outline: 0;\n -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);\n}\n\n.form-control::-moz-placeholder {\n color: #999;\n opacity: 1;\n}\n\n.form-control:-ms-input-placeholder,\n.form-control::-webkit-input-placeholder {\n color: #999;\n}\n\n.form-control::-ms-expand {\n background-color: transparent;\n border: 0;\n}\n\n.form-control[disabled],\n.form-control[readonly] {\n background-color: #eee;\n opacity: 1;\n}\n\nfieldset[disabled] .form-control {\n background-color: #eee;\n opacity: 1;\n}\n\n.form-control[disabled],\nfieldset[disabled] .form-control {\n cursor: not-allowed;\n}\n\ntextarea.form-control {\n height: auto;\n}\n\n.input-group {\n display: table;\n position: relative;\n}\n\n.input-group .form-control,\n.input-group .input-btn {\n display: table-cell;\n vertical-align: middle;\n}\n\n.input-group .form-control {\n float: left;\n border-bottom-right-radius: 0;\n border-top-right-radius: 0;\n}\n\n.input-group .input-btn {\n width: 1%;\n}\n\n.input-group .input-btn .btn {\n border-bottom-left-radius: 0;\n border-top-left-radius: 0;\n}\n\n/* TABS */\n\n.nav {\n padding-left: 0;\n margin-bottom: 0;\n list-style: none;\n}\n\n.nav:before {\n display: table;\n content: \" \";\n}\n\n.nav:after {\n display: table;\n content: \" \";\n clear: both;\n}\n\n.nav > li {\n position: relative;\n display: block;\n}\n\n.nav > li > a {\n position: relative;\n display: block;\n padding: 10px 15px;\n}\n\n.nav > li > a:hover,\n.nav > li > a:focus {\n text-decoration: none;\n background-color: #eee;\n}\n\n.nav > li.disabled > a {\n color: #777;\n}\n\n.nav > li.disabled > a:hover,\n.nav > li.disabled > a:focus {\n color: #777;\n text-decoration: none;\n cursor: not-allowed;\n background-color: transparent;\n}\n\n.nav-tabs {\n border-bottom: 1px solid #ddd;\n}\n\n.nav-tabs > li {\n float: left;\n margin-bottom: -1px;\n}\n\n.nav-tabs > li > a {\n margin-right: 2px;\n line-height: 1.42857143;\n border: 1px solid transparent;\n border-radius: 4px 4px 0 0;\n text-decoration: none;\n}\n\n.nav-tabs > li > a:hover {\n border-color: #eee #eee #ddd;\n}\n\n.nav-tabs > li > a:focus {\n box-shadow: none;\n}\n\n.nav-tabs > li.router-link-exact-active > a {\n color: #555;\n cursor: default;\n background-color: #fff;\n border: 1px solid #ddd;\n border-bottom-color: transparent;\n}\n\n.nav-tabs > li.router-link-exact-active > a:hover,\n.nav-tabs > li.router-link-exact-active > a:focus {\n color: #555;\n cursor: default;\n background-color: #fff;\n border: 1px solid #ddd;\n border-bottom-color: transparent;\n}\n\n.tab-content > .tab-pane {\n padding: 20px 0;\n}\n\n.form-group {\n margin-bottom: 15px;\n}\n\n.table-title {\n font-size: 18px;\n margin-bottom: 0;\n}\n\n/* vue notification */\n\n.table_data_press .help {\n font-size: 90%;\n color: gray;\n font-weight: 300;\n}\n\n.row_full {\n overflow: hidden;\n}\n\n.row_full .pull-left {\n float: left;\n}\n\n.search_action {\n position: relative;\n margin-top: 0px;\n padding-top: 0px;\n}\n\n.search_action input {\n width: 98%;\n font-size: 95%;\n padding-right: 30px;\n}\n\n.search_action i {\n position: absolute;\n right: 8px;\n top: 10px;\n font-size: 16px;\n}\n\n.tablenav {\n clear: both;\n height: auto;\n margin: 6px 0 4px;\n vertical-align: middle;\n overflow: hidden;\n display: block;\n}\n\n.tablenav .form_group {\n padding-top: 0px;\n padding-bottom: 0px;\n margin-bottom: 0px;\n margin-top: 0px;\n}\n\n.nav-tab-active,\n.nav-tab-active:focus,\n.nav-tab-active:focus:active,\n.nav-tab-active:hover {\n box-shadow: none;\n}\n\n.pull-right {\n float: right;\n}\n\n.text-center {\n text-align: center;\n}\n\nul.doc_items {\n margin-left: 45px;\n}\n\nul.doc_items li {\n font-size: 14px;\n margin-bottom: 10px;\n list-style: disc;\n}\n\nul.doc_items li a {\n text-decoration: none;\n}\n\n.el-aside {\n background-color: #535c63;\n color: #333;\n line-height: 200px;\n}\n\n.el-main {\n background-color: white;\n color: black;\n min-height: 70vh;\n}\n\n.el-menu-item.is-active {\n background-color: #434a50 !important;\n color: white !important;\n}\n\n.ninja_header {\n margin: -20px -20px 20px;\n padding: 10px 20px;\n border-bottom: 1px solid #eae7e7;\n background: #fbfdff;\n}\n\n.ninja_content {\n display: block;\n position: relative;\n width: 100%;\n}\n\n.ninja_content .ninja_suggest {\n overflow: hidden;\n display: block;\n background: #e5e5e5;\n padding: 20px 10px;\n color: black;\n font-size: 18px;\n margin: 10px 0px;\n}\n\n.ninja_content .ninja_suggest p {\n font-size: 16px;\n padding: 0px;\n margin: 0px;\n}\n\n.ninja_content .ninja_block p {\n font-size: 16px;\n}\n\n.ninja_content .ninja_export_block {\n display: block;\n margin-top: 25px;\n}\n\n.ninja_content .ninja_block_section {\n margin: 20px 0px;\n}\n\n.ninja_suggest_plugin {\n margin: 0px 0px 20px;\n padding: 20px;\n position: relative;\n background: white;\n box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.05);\n overflow: hidden;\n}\n\n.ninja_suggest_plugin .ninja_dismiss {\n position: absolute;\n right: 10px;\n top: 5px;\n cursor: pointer;\n}\n\n.ninja_suggest_plugin .ninja_form_banner {\n width: 35%;\n float: left;\n padding-right: 3%;\n margin: -20px 0px -24px -20px;\n}\n\n@media (max-width: 768px) {\n .ninja_suggest_plugin .ninja_form_banner {\n width: 100%;\n margin: 0px;\n padding-right: 0px;\n float: none;\n display: block;\n margin-bottom: 10px;\n }\n}\n\n.ninja_suggest_plugin .ninja_form_banner img {\n max-width: 100%;\n}\n\n.ninja_doc_top_blocks {\n display: block;\n width: 100%;\n position: relative;\n margin-bottom: 20px;\n overflow: hidden;\n}\n\n.ninja_doc_top_blocks > * {\n box-sizing: border-box;\n}\n\n.ninja_doc_top_blocks .block_1_3 {\n width: 33.33%;\n float: left;\n padding-right: 30px;\n margin-bottom: 30px;\n}\n\n@media (max-width: 768px) {\n .ninja_doc_top_blocks .block_1_3 {\n width: 100%;\n float: none;\n padding-right: 0px;\n margin-bottom: 30px;\n }\n}\n\n.ninja_doc_top_blocks .ff_block .ff_block_box {\n padding: 15px;\n background: white;\n -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);\n -moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);\n box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);\n border-radius: 4px;\n}\n\n.ninja_doc_top_blocks .ff_block .ff_block_box img.block_icon {\n max-height: 62px;\n}\n\n.ninja_doc_top_blocks .ff_block .ff_block_box ul {\n list-style: disc;\n margin-left: 20px;\n}\n\n.ninja_doc_top_blocks .ff_block .ff_block_box ul li a {\n font-size: 14px;\n text-decoration: none;\n line-height: 22px;\n}\n\n\n\n\n// WEBPACK FOOTER //\n// ./ninja-tables-admin.scss"],"sourceRoot":""}
assets/css/ninja-tables-admin.min.css CHANGED
@@ -1 +1,811 @@
1
- @font-face{font-family:element-icons;src:url(../fonts/element-icons.woff?d2f69a92faa6fe990d2e613c358be705) format("woff"),url(../fonts/element-icons.ttf?b02bdc1b846fd65473922f5f62832108) format("truetype");font-weight:400;font-style:normal}[class*=" el-icon-"],[class^=el-icon-]{font-family:element-icons!important;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;vertical-align:baseline;display:inline-block;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.el-icon-arrow-down:before{content:"\E600"}.el-icon-arrow-left:before{content:"\E601"}.el-icon-arrow-right:before{content:"\E602"}.el-icon-arrow-up:before{content:"\E603"}.el-icon-caret-bottom:before{content:"\E604"}.el-icon-caret-left:before{content:"\E605"}.el-icon-caret-right:before{content:"\E606"}.el-icon-caret-top:before{content:"\E607"}.el-icon-check:before{content:"\E608"}.el-icon-circle-check:before{content:"\E609"}.el-icon-circle-close:before{content:"\E60A"}.el-icon-circle-cross:before{content:"\E60B"}.el-icon-close:before{content:"\E60C"}.el-icon-upload:before{content:"\E60D"}.el-icon-d-arrow-left:before{content:"\E60E"}.el-icon-d-arrow-right:before{content:"\E60F"}.el-icon-d-caret:before{content:"\E610"}.el-icon-date:before{content:"\E611"}.el-icon-delete:before{content:"\E612"}.el-icon-document:before{content:"\E613"}.el-icon-edit:before{content:"\E614"}.el-icon-information:before{content:"\E615"}.el-icon-loading:before{content:"\E616"}.el-icon-menu:before{content:"\E617"}.el-icon-message:before{content:"\E618"}.el-icon-minus:before{content:"\E619"}.el-icon-more:before{content:"\E61A"}.el-icon-picture:before{content:"\E61B"}.el-icon-plus:before{content:"\E61C"}.el-icon-search:before{content:"\E61D"}.el-icon-setting:before{content:"\E61E"}.el-icon-share:before{content:"\E61F"}.el-icon-star-off:before{content:"\E620"}.el-icon-star-on:before{content:"\E621"}.el-icon-time:before{content:"\E622"}.el-icon-warning:before{content:"\E623"}.el-icon-delete2:before{content:"\E624"}.el-icon-upload2:before{content:"\E627"}.el-icon-view:before{content:"\E626"}.el-icon-loading{-webkit-animation:rotating 1s linear infinite;animation:rotating 1s linear infinite}.el-icon--right{margin-left:5px}.el-icon--left{margin-right:5px}@-webkit-keyframes rotating{0%{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes rotating{0%{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.pageLoading{text-align:center;display:-webkit-box;display:-ms-flexbox;display:flex;height:150px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.pageLoading .fooicon{font-size:20px}.btn-flex{display:-webkit-inline-box!important;display:-ms-inline-flexbox!important;display:inline-flex!important;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.btn-flex .fooicon{margin-left:5px}h4{margin-bottom:0;font-size:18px}a.btn{text-decoration:none}.press_wrap{background:#fff;padding:20px}#prescription_app{margin-right:20px}.mt_0{margin-top:0}.edited_title{text-transform:capitalize}.sb_container{max-width:960px}.mt_45{margin-top:45px}body .form-horizontal .control-label{text-align:left}.container{max-width:960px}.pscp-profile-devide{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap}.pscp-profile-devide-item{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;-ms-flex-preferred-size:100%;flex-basis:100%}.pscp-profile{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch;padding-right:15px;border-right:2px solid #747575}.pscp-profile-note{margin-left:15px}.pscp-profile-img{margin-right:25px}.pscp-profile-holder{padding:15px 0;border-bottom:7px double #747575}.pscp-items-title-wrap{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.pscp-items-title-wrap h2{margin-top:0}.pscp-profile-meta .title{text-transform:capitalize}.pscp-items-title-wrap{margin-top:47px}.pscp-items-title-meta .btn{background:#ddd;border:2px solid #8f8f8f;padding:10px 20px;color:#444;margin-right:10px}.pscp-items-box{background-color:#fbfeff;padding:17px 15px;position:relative;margin:30px 0}.pscp-items-box-title-wrap{height:0}.pscp-items-box:before{content:"";border:2px solid #757575;position:absolute;width:100%;height:calc(100% - 2px);background:transparent;bottom:0;left:0}.ps_edit-box{position:absolute;right:10px}.pscp-items-box-title-wrap .pscp-items-box-title{margin-top:0;margin-bottom:0;position:relative;top:-46px;display:inline-block;background:#757575;padding:5px 10px;color:#fff}.modal-open .modal{z-index:1000}label.form_group{padding-top:5px;padding-left:10px}.editr--toolbar .dashboard{-webkit-box-sizing:border-box;box-sizing:border-box;padding:0 .5rem}.editr--toolbar .dashboard .dropzone{max-height:86px;min-height:50px!important;background:#f6f6f6}.compact .cell .cell-content{height:28px;overflow:hidden;white-space:nowrap;-ms-text-overflow:ellipsis;text-overflow:ellipsis}.compact .cell .cell-content *{margin:0;padding:0;font-size:14px}.cell .cell-content img{max-width:100%;height:auto}.paginate{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;margin-top:25px;-webkit-box-align:center;-ms-flex-align:center;align-items:center;border-bottom:2px solid #ccc;padding-bottom:8px}.btn.pag-btn{background:#b2ccda;color:#fff}.btn.pag-btn:hover{opacity:.9}.btn.pag-btn:focus,.btn.pag-btn:hover{color:#fff;outline:none!important;-webkit-box-shadow:none!important;box-shadow:none!important}.pag-btn.is-active{background:#0073ae}.btn{display:inline-block;padding:6px 12px;margin-bottom:0;font-size:14px;font-weight:400;line-height:1.42857143;text-align:center;white-space:nowrap;vertical-align:middle;-ms-touch-action:manipulation;touch-action:manipulation;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-image:none;border:1px solid transparent;border-radius:4px;text-decoration:none}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-primary{color:#fff;background-color:#337ab7;border-color:#2e6da4}.btn-primary.focus,.btn-primary:focus{color:#fff;background-color:#286090;border-color:#122b40}.btn-primary.active,.btn-primary:active,.btn-primary:hover{color:#fff;background-color:#286090;border-color:#204d74}.btn-primary.active:hover,.btn-primary:active:hover{color:#fff;background-color:#204d74;border-color:#122b40}.btn-primary.disabled:hover,.btn-primary[disabled]:hover{background-color:#337ab7;border-color:#2e6da4}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.btn-danger.focus,.btn-danger:focus{color:#fff;background-color:#c9302c;border-color:#761c19}.btn-danger:hover{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-sm{padding:5px 10px}.btn-sm,.btn-xs{font-size:12px;line-height:1.5;border-radius:3px}.btn-xs{padding:1px 5px}.close{float:right;font-size:21px;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;filter:alpha(opacity=20);opacity:.2}button.close{-webkit-appearance:none;padding:0;cursor:pointer;background:0 0;border:0}.wp-list-table>tbody>tr>td{vertical-align:middle}.mb20{margin-bottom:20px}.text-right{text-align:right}.modal{position:fixed;top:0;right:0;bottom:0;background:rgba(0,0,0,.6);z-index:1050;display:none;overflow:hidden;left:0}@media (min-width:784px){.modal{left:36px}}@media (min-width:961px){.modal{left:160px}}.fade{opacity:0;-webkit-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.fade.in .modal-dialog{margin-top:50px}.modal-dialog{position:relative;-webkit-transition:all .35s linear;transition:all .35s linear;width:600px;margin-top:0;margin-left:auto;margin-right:auto}.modal-content{position:relative;background-color:#fff;background-clip:padding-box;border:1px solid #999;border:1px solid rgba(0,0,0,.2);border-radius:6px;outline:0;-webkit-box-shadow:0 3px 9px rgba(0,0,0,.5);box-shadow:0 3px 9px rgba(0,0,0,.5)}.modal-header{padding:15px;border-bottom:1px solid #e5e5e5}.modal-header h4{margin-top:0}.modal-header .close{margin-top:-2px}.modal-body{position:relative;padding:15px;max-height:65vh;overflow:auto}.modal-footer{padding:15px;text-align:right;border-top:1px solid #e5e5e5}label{display:inline-block;max-width:100%;margin-bottom:5px;font-weight:700}.form-control{display:block;width:100%;height:34px;padding:6px 12px;font-size:14px;line-height:1.42857143;color:#555;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075);-webkit-transition:border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;transition:border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out}.form-control:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6)}.form-control::-moz-placeholder{color:#999;opacity:1}.form-control:-ms-input-placeholder,.form-control::-webkit-input-placeholder{color:#999}.form-control::-ms-expand{background-color:transparent;border:0}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{background-color:#eee;opacity:1}.form-control[disabled],fieldset[disabled] .form-control{cursor:not-allowed}textarea.form-control{height:auto}.input-group{display:table;position:relative}.input-group .form-control,.input-group .input-btn{display:table-cell;vertical-align:middle}.input-group .form-control{float:left;border-bottom-right-radius:0;border-top-right-radius:0}.input-group .input-btn{width:1%}.input-group .input-btn .btn{border-bottom-left-radius:0;border-top-left-radius:0}.nav{padding-left:0;margin-bottom:0;list-style:none}.nav:after,.nav:before{display:table;content:" "}.nav:after{clear:both}.nav>li,.nav>li>a{position:relative;display:block}.nav>li>a{padding:10px 15px}.nav>li>a:focus,.nav>li>a:hover{text-decoration:none;background-color:#eee}.nav>li.disabled>a{color:#777}.nav>li.disabled>a:focus,.nav>li.disabled>a:hover{color:#777;text-decoration:none;cursor:not-allowed;background-color:transparent}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:4px 4px 0 0;text-decoration:none}.nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.nav-tabs>li>a:focus{-webkit-box-shadow:none;box-shadow:none}.nav-tabs>li.router-link-exact-active>a,.nav-tabs>li.router-link-exact-active>a:focus,.nav-tabs>li.router-link-exact-active>a:hover{color:#555;cursor:default;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent}.tab-content>.tab-pane{padding:20px 0}.form-group{margin-bottom:15px}.table-title{font-size:18px;margin-bottom:0}.table_data_press .help{font-size:90%;color:gray;font-weight:300}.row_full{overflow:hidden}.row_full .pull-left{float:left}.search_action{position:relative;margin-top:0;padding-top:0}.search_action input{width:98%;font-size:95%;padding-right:30px}.search_action i{position:absolute;right:8px;top:10px;font-size:16px}.tablenav{clear:both;height:auto;margin:6px 0 4px;vertical-align:middle;overflow:hidden;display:block}.tablenav .form_group{padding-top:0;padding-bottom:0;margin-bottom:0;margin-top:0}.nav-tab-active,.nav-tab-active:focus,.nav-tab-active:focus:active,.nav-tab-active:hover{-webkit-box-shadow:none;box-shadow:none}.pull-right{float:right}.ql-container.ql-snow{min-height:220px}.ql-container.ql-snow .ql-tooltip{left:0!important;right:0!important;text-align:center}ul.doc_items{margin-left:45px}ul.doc_items li{font-size:14px;margin-bottom:10px;list-style:disc}ul.doc_items li a{text-decoration:none}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ @font-face{font-family:element-icons;src:url(/fonts/element-icons.woff?d2f69a92faa6fe990d2e613c358be705) format("woff"),url(/fonts/element-icons.ttf?b02bdc1b846fd65473922f5f62832108) format("truetype");font-weight:400;font-style:normal}[class*=" el-icon-"],[class^=el-icon-]{font-family:element-icons!important;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;vertical-align:baseline;display:inline-block;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.el-icon-upload:before{content:"\E60D"}.el-icon-error:before{content:"\E62C"}.el-icon-success:before{content:"\E62D"}.el-icon-warning:before{content:"\E62E"}.el-icon-sort-down:before{content:"\E630"}.el-icon-sort-up:before{content:"\E631"}.el-icon-arrow-left:before{content:"\E600"}.el-icon-circle-plus:before{content:"\E601"}.el-icon-circle-plus-outline:before{content:"\E602"}.el-icon-arrow-down:before{content:"\E603"}.el-icon-arrow-right:before{content:"\E604"}.el-icon-arrow-up:before{content:"\E605"}.el-icon-back:before{content:"\E606"}.el-icon-circle-close:before{content:"\E607"}.el-icon-date:before{content:"\E608"}.el-icon-circle-close-outline:before{content:"\E609"}.el-icon-caret-left:before{content:"\E60A"}.el-icon-caret-bottom:before{content:"\E60B"}.el-icon-caret-top:before{content:"\E60C"}.el-icon-caret-right:before{content:"\E60E"}.el-icon-close:before{content:"\E60F"}.el-icon-d-arrow-left:before{content:"\E610"}.el-icon-check:before{content:"\E611"}.el-icon-delete:before{content:"\E612"}.el-icon-d-arrow-right:before{content:"\E613"}.el-icon-document:before{content:"\E614"}.el-icon-d-caret:before{content:"\E615"}.el-icon-edit-outline:before{content:"\E616"}.el-icon-download:before{content:"\E617"}.el-icon-goods:before{content:"\E618"}.el-icon-search:before{content:"\E619"}.el-icon-info:before{content:"\E61A"}.el-icon-message:before{content:"\E61B"}.el-icon-edit:before{content:"\E61C"}.el-icon-location:before{content:"\E61D"}.el-icon-loading:before{content:"\E61E"}.el-icon-location-outline:before{content:"\E61F"}.el-icon-menu:before{content:"\E620"}.el-icon-minus:before{content:"\E621"}.el-icon-bell:before{content:"\E622"}.el-icon-mobile-phone:before{content:"\E624"}.el-icon-news:before{content:"\E625"}.el-icon-more:before{content:"\E646"}.el-icon-more-outline:before{content:"\E626"}.el-icon-phone:before{content:"\E627"}.el-icon-phone-outline:before{content:"\E628"}.el-icon-picture:before{content:"\E629"}.el-icon-picture-outline:before{content:"\E62A"}.el-icon-plus:before{content:"\E62B"}.el-icon-printer:before{content:"\E62F"}.el-icon-rank:before{content:"\E632"}.el-icon-refresh:before{content:"\E633"}.el-icon-question:before{content:"\E634"}.el-icon-remove:before{content:"\E635"}.el-icon-share:before{content:"\E636"}.el-icon-star-on:before{content:"\E637"}.el-icon-setting:before{content:"\E638"}.el-icon-circle-check:before{content:"\E639"}.el-icon-service:before{content:"\E63A"}.el-icon-sold-out:before{content:"\E63B"}.el-icon-remove-outline:before{content:"\E63C"}.el-icon-star-off:before{content:"\E63D"}.el-icon-circle-check-outline:before{content:"\E63E"}.el-icon-tickets:before{content:"\E63F"}.el-icon-sort:before{content:"\E640"}.el-icon-zoom-in:before{content:"\E641"}.el-icon-time:before{content:"\E642"}.el-icon-view:before{content:"\E643"}.el-icon-upload2:before{content:"\E644"}.el-icon-zoom-out:before{content:"\E645"}.el-icon-loading{-webkit-animation:rotating 2s linear infinite;animation:rotating 2s linear infinite}.el-icon--right{margin-left:5px}.el-icon--left{margin-right:5px}@-webkit-keyframes rotating{0%{-webkit-transform:rotateZ(0);transform:rotateZ(0)}100%{-webkit-transform:rotateZ(360deg);transform:rotateZ(360deg)}}@keyframes rotating{0%{-webkit-transform:rotateZ(0);transform:rotateZ(0)}100%{-webkit-transform:rotateZ(360deg);transform:rotateZ(360deg)}}.pageLoading {
2
+ text-align: center;
3
+ display: -webkit-box;
4
+ display: -ms-flexbox;
5
+ display: flex;
6
+ height: 150px;
7
+ -webkit-box-orient: vertical;
8
+ -webkit-box-direction: normal;
9
+ -ms-flex-direction: column;
10
+ flex-direction: column;
11
+ -webkit-box-align: center;
12
+ -ms-flex-align: center;
13
+ align-items: center;
14
+ -webkit-box-pack: center;
15
+ -ms-flex-pack: center;
16
+ justify-content: center;
17
+ }
18
+
19
+ .pageLoading .fooicon {
20
+ font-size: 20px;
21
+ }
22
+
23
+ .btn-flex {
24
+ display: -webkit-inline-box !important;
25
+ display: -ms-inline-flexbox !important;
26
+ display: inline-flex !important;
27
+ -webkit-box-align: center;
28
+ -ms-flex-align: center;
29
+ align-items: center;
30
+ }
31
+
32
+ .btn-flex .fooicon {
33
+ margin-left: 5px;
34
+ }
35
+
36
+ /* GLOBAL STYLES */
37
+
38
+ h4 {
39
+ margin-bottom: 0;
40
+ font-size: 18px;
41
+ }
42
+
43
+ a.btn {
44
+ text-decoration: none;
45
+ }
46
+
47
+ /**
48
+ * All of the CSS for your admin-specific functionality should be
49
+ * included in this file.
50
+ */
51
+
52
+ .press_wrap {
53
+ background: white;
54
+ padding: 20px;
55
+ }
56
+
57
+ /**
58
+ * All of the CSS for your admin-specific functionality should be
59
+ * included in this file.
60
+ */
61
+
62
+ #prescription_app {
63
+ margin-right: 20px;
64
+ }
65
+
66
+ .mt_0 {
67
+ margin-top: 0;
68
+ }
69
+
70
+ .edited_title {
71
+ text-transform: capitalize;
72
+ }
73
+
74
+ .sb_container {
75
+ max-width: 960px;
76
+ }
77
+
78
+ .mt_45 {
79
+ margin-top: 45px;
80
+ }
81
+
82
+ body .form-horizontal .control-label {
83
+ text-align: left;
84
+ }
85
+
86
+ .container {
87
+ max-width: 960px;
88
+ }
89
+
90
+ /*prescription page*/
91
+
92
+ .pscp-profile-devide {
93
+ display: -webkit-box;
94
+ display: -ms-flexbox;
95
+ display: flex;
96
+ -ms-flex-wrap: nowrap;
97
+ flex-wrap: nowrap;
98
+ }
99
+
100
+ .pscp-profile-devide-item {
101
+ -webkit-box-flex: 1;
102
+ -ms-flex-positive: 1;
103
+ flex-grow: 1;
104
+ -ms-flex-preferred-size: 100%;
105
+ flex-basis: 100%;
106
+ }
107
+
108
+ .pscp-profile {
109
+ display: -webkit-box;
110
+ display: -ms-flexbox;
111
+ display: flex;
112
+ -webkit-box-align: stretch;
113
+ -ms-flex-align: stretch;
114
+ align-items: stretch;
115
+ padding-right: 15px;
116
+ border-right: 2px solid #747575;
117
+ }
118
+
119
+ .pscp-profile-note {
120
+ margin-left: 15px;
121
+ }
122
+
123
+ .pscp-profile-img {
124
+ margin-right: 25px;
125
+ }
126
+
127
+ /*Prescription View page*/
128
+
129
+ .pscp-profile-holder {
130
+ padding: 15px 0;
131
+ border-bottom: 7px double #747575;
132
+ }
133
+
134
+ .pscp-items-title-wrap {
135
+ display: -webkit-box;
136
+ display: -ms-flexbox;
137
+ display: flex;
138
+ -webkit-box-pack: justify;
139
+ -ms-flex-pack: justify;
140
+ justify-content: space-between;
141
+ }
142
+
143
+ .pscp-items-title-wrap h2 {
144
+ margin-top: 0;
145
+ }
146
+
147
+ .pscp-profile-meta .title {
148
+ text-transform: capitalize;
149
+ }
150
+
151
+ .pscp-items-title-wrap {
152
+ margin-top: 47px;
153
+ }
154
+
155
+ .pscp-items-title-meta .btn {
156
+ background: #ddd;
157
+ border: 2px solid #8f8f8f;
158
+ padding: 10px 20px;
159
+ color: #444;
160
+ margin-right: 10px;
161
+ }
162
+
163
+ /*item style*/
164
+
165
+ .pscp-items-box {
166
+ background-color: #fbfeff;
167
+ padding: 17px 15px;
168
+ position: relative;
169
+ margin: 30px 0;
170
+ }
171
+
172
+ .pscp-items-box-title-wrap {
173
+ height: 0px;
174
+ }
175
+
176
+ .pscp-items-box:before {
177
+ content: '';
178
+ border: 2px solid #757575;
179
+ position: absolute;
180
+ width: 100%;
181
+ height: calc(100% - 2px);
182
+ background: transparent;
183
+ bottom: 0;
184
+ left: 0;
185
+ }
186
+
187
+ .ps_edit-box {
188
+ position: absolute;
189
+ right: 10px;
190
+ }
191
+
192
+ .pscp-items-box-title-wrap .pscp-items-box-title {
193
+ margin-top: 0;
194
+ margin-bottom: 0;
195
+ position: relative;
196
+ top: -46px;
197
+ display: inline-block;
198
+ background: #757575;
199
+ padding: 5px 10px;
200
+ color: white;
201
+ }
202
+
203
+ .modal-open .modal {
204
+ z-index: 1000;
205
+ }
206
+
207
+ label.form_group {
208
+ padding-top: 5px;
209
+ padding-left: 10px;
210
+ }
211
+
212
+ .editr--toolbar .dashboard {
213
+ -webkit-box-sizing: border-box;
214
+ box-sizing: border-box;
215
+ padding: 0rem 0.5rem;
216
+ }
217
+
218
+ .editr--toolbar .dashboard .dropzone {
219
+ max-height: 86px;
220
+ min-height: 50px !important;
221
+ background: #f6f6f6;
222
+ }
223
+
224
+ .compact .cell .cell-content {
225
+ height: 28px;
226
+ overflow: hidden;
227
+ white-space: nowrap;
228
+ -ms-text-overflow: ellipsis;
229
+ text-overflow: ellipsis;
230
+ }
231
+
232
+ .compact .cell .cell-content * {
233
+ margin: 0px;
234
+ padding: 0px;
235
+ font-size: 14px;
236
+ }
237
+
238
+ .cell .cell-content img {
239
+ max-width: 100%;
240
+ height: auto;
241
+ }
242
+
243
+ /*pagination*/
244
+
245
+ .paginate {
246
+ display: -webkit-box;
247
+ display: -ms-flexbox;
248
+ display: flex;
249
+ -ms-flex-wrap: nowrap;
250
+ flex-wrap: nowrap;
251
+ -webkit-box-pack: justify;
252
+ -ms-flex-pack: justify;
253
+ justify-content: space-between;
254
+ margin-top: 25px;
255
+ -webkit-box-align: center;
256
+ -ms-flex-align: center;
257
+ align-items: center;
258
+ border-bottom: 2px solid #ccc;
259
+ padding-bottom: 8px;
260
+ }
261
+
262
+ .btn.pag-btn {
263
+ background: #b2ccda;
264
+ color: #fff;
265
+ }
266
+
267
+ .btn.pag-btn:hover {
268
+ opacity: .90;
269
+ color: #fff;
270
+ outline: none !important;
271
+ -webkit-box-shadow: none !important;
272
+ box-shadow: none !important;
273
+ }
274
+
275
+ .btn.pag-btn:focus {
276
+ color: #fff;
277
+ outline: none !important;
278
+ -webkit-box-shadow: none !important;
279
+ box-shadow: none !important;
280
+ }
281
+
282
+ .pag-btn.is-active {
283
+ background: #0073ae;
284
+ }
285
+
286
+ /* BUTTONS */
287
+
288
+ .btn {
289
+ display: inline-block;
290
+ padding: 6px 12px;
291
+ margin-bottom: 0;
292
+ font-size: 14px;
293
+ font-weight: 400;
294
+ line-height: 1.42857143;
295
+ text-align: center;
296
+ white-space: nowrap;
297
+ vertical-align: middle;
298
+ -ms-touch-action: manipulation;
299
+ touch-action: manipulation;
300
+ cursor: pointer;
301
+ -webkit-user-select: none;
302
+ -moz-user-select: none;
303
+ -ms-user-select: none;
304
+ user-select: none;
305
+ background-image: none;
306
+ border: 1px solid transparent;
307
+ border-radius: 4px;
308
+ text-decoration: none;
309
+ }
310
+
311
+ .btn-default {
312
+ color: #333;
313
+ background-color: #fff;
314
+ border-color: #ccc;
315
+ }
316
+
317
+ .btn-primary {
318
+ color: #fff;
319
+ background-color: #337ab7;
320
+ border-color: #2e6da4;
321
+ }
322
+
323
+ .btn-primary:focus,
324
+ .btn-primary.focus {
325
+ color: #fff;
326
+ background-color: #286090;
327
+ border-color: #122b40;
328
+ }
329
+
330
+ .btn-primary:hover,
331
+ .btn-primary:active,
332
+ .btn-primary.active {
333
+ color: #fff;
334
+ background-color: #286090;
335
+ border-color: #204d74;
336
+ }
337
+
338
+ .btn-primary:active:hover,
339
+ .btn-primary.active:hover {
340
+ color: #fff;
341
+ background-color: #204d74;
342
+ border-color: #122b40;
343
+ }
344
+
345
+ .btn-primary.disabled:hover,
346
+ .btn-primary[disabled]:hover {
347
+ background-color: #337ab7;
348
+ border-color: #2e6da4;
349
+ }
350
+
351
+ .btn-danger {
352
+ color: #fff;
353
+ background-color: #d9534f;
354
+ border-color: #d43f3a;
355
+ }
356
+
357
+ .btn-danger:focus,
358
+ .btn-danger.focus {
359
+ color: #fff;
360
+ background-color: #c9302c;
361
+ border-color: #761c19;
362
+ }
363
+
364
+ .btn-danger:hover {
365
+ color: #fff;
366
+ background-color: #c9302c;
367
+ border-color: #ac2925;
368
+ }
369
+
370
+ .btn-sm {
371
+ padding: 5px 10px;
372
+ font-size: 12px;
373
+ line-height: 1.5;
374
+ border-radius: 3px;
375
+ }
376
+
377
+ .btn-xs {
378
+ padding: 1px 5px;
379
+ font-size: 12px;
380
+ line-height: 1.5;
381
+ border-radius: 3px;
382
+ }
383
+
384
+ /* HELPER CLASSES */
385
+
386
+ .close {
387
+ float: right;
388
+ font-size: 21px;
389
+ font-weight: 700;
390
+ line-height: 1;
391
+ color: #000;
392
+ text-shadow: 0 1px 0 #fff;
393
+ filter: alpha(opacity=20);
394
+ opacity: .2;
395
+ }
396
+
397
+ button.close {
398
+ -webkit-appearance: none;
399
+ padding: 0;
400
+ cursor: pointer;
401
+ background: 0 0;
402
+ border: 0;
403
+ }
404
+
405
+ .wp-list-table > tbody > tr > td {
406
+ vertical-align: middle;
407
+ }
408
+
409
+ .mb20 {
410
+ margin-bottom: 20px;
411
+ }
412
+
413
+ .text-right {
414
+ text-align: right;
415
+ }
416
+
417
+ /* MODAL STYLE */
418
+
419
+ .modal {
420
+ position: fixed;
421
+ top: 0;
422
+ right: 0;
423
+ bottom: 0;
424
+ background: rgba(0, 0, 0, 0.6);
425
+ z-index: 1050;
426
+ display: none;
427
+ overflow: hidden;
428
+ left: 0;
429
+ }
430
+
431
+ @media (min-width: 784px) {
432
+ .modal {
433
+ left: 36px;
434
+ }
435
+ }
436
+
437
+ @media (min-width: 961px) {
438
+ .modal {
439
+ left: 160px;
440
+ }
441
+ }
442
+
443
+ .fade {
444
+ opacity: 0;
445
+ -webkit-transition: opacity .15s linear;
446
+ transition: opacity .15s linear;
447
+ }
448
+
449
+ .fade.in {
450
+ opacity: 1;
451
+ }
452
+
453
+ .fade.in .modal-dialog {
454
+ margin-top: 50px;
455
+ }
456
+
457
+ .modal-dialog {
458
+ position: relative;
459
+ -webkit-transition: all 0.35s linear;
460
+ transition: all 0.35s linear;
461
+ width: 600px;
462
+ margin-top: 0px;
463
+ margin-left: auto;
464
+ margin-right: auto;
465
+ }
466
+
467
+ .modal-content {
468
+ position: relative;
469
+ background-color: #fff;
470
+ background-clip: padding-box;
471
+ border: 1px solid #999;
472
+ border: 1px solid rgba(0, 0, 0, 0.2);
473
+ border-radius: 6px;
474
+ outline: 0;
475
+ -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
476
+ box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
477
+ }
478
+
479
+ .modal-header {
480
+ padding: 15px;
481
+ border-bottom: 1px solid #e5e5e5;
482
+ }
483
+
484
+ .modal-header h4 {
485
+ margin-top: 0;
486
+ }
487
+
488
+ .modal-header .close {
489
+ margin-top: -2px;
490
+ }
491
+
492
+ .modal-body {
493
+ position: relative;
494
+ padding: 15px;
495
+ max-height: 65vh;
496
+ overflow: auto;
497
+ }
498
+
499
+ .modal-footer {
500
+ padding: 15px;
501
+ text-align: right;
502
+ border-top: 1px solid #e5e5e5;
503
+ }
504
+
505
+ /* INPUT */
506
+
507
+ label {
508
+ display: inline-block;
509
+ max-width: 100%;
510
+ margin-bottom: 5px;
511
+ font-weight: bold;
512
+ }
513
+
514
+ .form-control {
515
+ display: block;
516
+ width: 100%;
517
+ height: 34px;
518
+ padding: 6px 12px;
519
+ font-size: 14px;
520
+ line-height: 1.42857143;
521
+ color: #555;
522
+ background-color: #fff;
523
+ background-image: none;
524
+ border: 1px solid #ccc;
525
+ border-radius: 4px;
526
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
527
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
528
+ -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
529
+ transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
530
+ transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
531
+ transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
532
+ }
533
+
534
+ .form-control:focus {
535
+ border-color: #66afe9;
536
+ outline: 0;
537
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
538
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
539
+ }
540
+
541
+ .form-control::-moz-placeholder {
542
+ color: #999;
543
+ opacity: 1;
544
+ }
545
+
546
+ .form-control:-ms-input-placeholder,
547
+ .form-control::-webkit-input-placeholder {
548
+ color: #999;
549
+ }
550
+
551
+ .form-control::-ms-expand {
552
+ background-color: transparent;
553
+ border: 0;
554
+ }
555
+
556
+ .form-control[disabled],
557
+ .form-control[readonly] {
558
+ background-color: #eee;
559
+ opacity: 1;
560
+ }
561
+
562
+ fieldset[disabled] .form-control {
563
+ background-color: #eee;
564
+ opacity: 1;
565
+ }
566
+
567
+ .form-control[disabled],
568
+ fieldset[disabled] .form-control {
569
+ cursor: not-allowed;
570
+ }
571
+
572
+ textarea.form-control {
573
+ height: auto;
574
+ }
575
+
576
+ .input-group {
577
+ display: table;
578
+ position: relative;
579
+ }
580
+
581
+ .input-group .form-control,
582
+ .input-group .input-btn {
583
+ display: table-cell;
584
+ vertical-align: middle;
585
+ }
586
+
587
+ .input-group .form-control {
588
+ float: left;
589
+ border-bottom-right-radius: 0;
590
+ border-top-right-radius: 0;
591
+ }
592
+
593
+ .input-group .input-btn {
594
+ width: 1%;
595
+ }
596
+
597
+ .input-group .input-btn .btn {
598
+ border-bottom-left-radius: 0;
599
+ border-top-left-radius: 0;
600
+ }
601
+
602
+ /* TABS */
603
+
604
+ .nav {
605
+ padding-left: 0;
606
+ margin-bottom: 0;
607
+ list-style: none;
608
+ }
609
+
610
+ .nav:before {
611
+ display: table;
612
+ content: " ";
613
+ }
614
+
615
+ .nav:after {
616
+ display: table;
617
+ content: " ";
618
+ clear: both;
619
+ }
620
+
621
+ .nav > li {
622
+ position: relative;
623
+ display: block;
624
+ }
625
+
626
+ .nav > li > a {
627
+ position: relative;
628
+ display: block;
629
+ padding: 10px 15px;
630
+ }
631
+
632
+ .nav > li > a:hover,
633
+ .nav > li > a:focus {
634
+ text-decoration: none;
635
+ background-color: #eee;
636
+ }
637
+
638
+ .nav > li.disabled > a {
639
+ color: #777;
640
+ }
641
+
642
+ .nav > li.disabled > a:hover,
643
+ .nav > li.disabled > a:focus {
644
+ color: #777;
645
+ text-decoration: none;
646
+ cursor: not-allowed;
647
+ background-color: transparent;
648
+ }
649
+
650
+ .nav-tabs {
651
+ border-bottom: 1px solid #ddd;
652
+ }
653
+
654
+ .nav-tabs > li {
655
+ float: left;
656
+ margin-bottom: -1px;
657
+ }
658
+
659
+ .nav-tabs > li > a {
660
+ margin-right: 2px;
661
+ line-height: 1.42857143;
662
+ border: 1px solid transparent;
663
+ border-radius: 4px 4px 0 0;
664
+ text-decoration: none;
665
+ }
666
+
667
+ .nav-tabs > li > a:hover {
668
+ border-color: #eee #eee #ddd;
669
+ }
670
+
671
+ .nav-tabs > li > a:focus {
672
+ -webkit-box-shadow: none;
673
+ box-shadow: none;
674
+ }
675
+
676
+ .nav-tabs > li.router-link-exact-active > a {
677
+ color: #555;
678
+ cursor: default;
679
+ background-color: #fff;
680
+ border: 1px solid #ddd;
681
+ border-bottom-color: transparent;
682
+ }
683
+
684
+ .nav-tabs > li.router-link-exact-active > a:hover,
685
+ .nav-tabs > li.router-link-exact-active > a:focus {
686
+ color: #555;
687
+ cursor: default;
688
+ background-color: #fff;
689
+ border: 1px solid #ddd;
690
+ border-bottom-color: transparent;
691
+ }
692
+
693
+ .tab-content > .tab-pane {
694
+ padding: 20px 0;
695
+ }
696
+
697
+ .form-group {
698
+ margin-bottom: 15px;
699
+ }
700
+
701
+ .table-title {
702
+ font-size: 18px;
703
+ margin-bottom: 0;
704
+ }
705
+
706
+ /* vue notification */
707
+
708
+ .table_data_press .help {
709
+ font-size: 90%;
710
+ color: gray;
711
+ font-weight: 300;
712
+ }
713
+
714
+ .row_full {
715
+ overflow: hidden;
716
+ }
717
+
718
+ .row_full .pull-left {
719
+ float: left;
720
+ }
721
+
722
+ .search_action {
723
+ position: relative;
724
+ margin-top: 0px;
725
+ padding-top: 0px;
726
+ }
727
+
728
+ .search_action input {
729
+ width: 98%;
730
+ font-size: 95%;
731
+ padding-right: 30px;
732
+ }
733
+
734
+ .search_action i {
735
+ position: absolute;
736
+ right: 8px;
737
+ top: 10px;
738
+ font-size: 16px;
739
+ }
740
+
741
+ .tablenav {
742
+ clear: both;
743
+ height: auto;
744
+ margin: 6px 0 4px;
745
+ vertical-align: middle;
746
+ overflow: hidden;
747
+ display: block;
748
+ }
749
+
750
+ .tablenav .form_group {
751
+ padding-top: 0px;
752
+ padding-bottom: 0px;
753
+ margin-bottom: 0px;
754
+ margin-top: 0px;
755
+ }
756
+
757
+ .nav-tab-active,
758
+ .nav-tab-active:focus,
759
+ .nav-tab-active:focus:active,
760
+ .nav-tab-active:hover {
761
+ -webkit-box-shadow: none;
762
+ box-shadow: none;
763
+ }
764
+
765
+ .pull-right {
766
+ float: right;
767
+ }
768
+
769
+ ul.doc_items {
770
+ margin-left: 45px;
771
+ }
772
+
773
+ ul.doc_items li {
774
+ font-size: 14px;
775
+ margin-bottom: 10px;
776
+ list-style: disc;
777
+ }
778
+
779
+ ul.doc_items li a {
780
+ text-decoration: none;
781
+ }
782
+
783
+ .el-aside {
784
+ background-color: #535c63;
785
+ color: #333;
786
+ line-height: 200px;
787
+ }
788
+
789
+ .el-main {
790
+ background-color: white;
791
+ color: black;
792
+ }
793
+
794
+ .el-menu-item.is-active {
795
+ background-color: #434a50 !important;
796
+ color: white !important;
797
+ }
798
+
799
+ .ninja_header {
800
+ margin: -20px -20px 20px;
801
+ padding: 10px 20px;
802
+ border-bottom: 1px solid #eae7e7;
803
+ background: #fbfdff;
804
+ }
805
+
806
+ .ninja_content {
807
+ display: block;
808
+ position: relative;
809
+ width: 100%;
810
+ }
811
+
assets/css/ninja-tables-public.css CHANGED
@@ -7,4 +7,5 @@
7
  * Released under the MIT license
8
  * http://opensource.org/licenses/MIT
9
  *
10
- */}.semantic_ui .ui.table{width:100%;background:#fff;margin:1em 0;border:1px solid rgba(34,36,38,.15);-webkit-box-shadow:none;box-shadow:none;border-radius:.28571429rem;text-align:left;color:rgba(0,0,0,.87);border-collapse:separate;border-spacing:0}.semantic_ui .ui.table:first-child{margin-top:0}.semantic_ui .ui.table:last-child{margin-bottom:0}.semantic_ui .ui.table td,.semantic_ui .ui.table th{-webkit-transition:background .1s ease,color .1s ease;transition:background .1s ease,color .1s ease}.semantic_ui .ui.table thead{-webkit-box-shadow:none;box-shadow:none}.semantic_ui .ui.table thead th{cursor:auto;background:#f9fafb;text-align:inherit;color:rgba(0,0,0,.87);padding:.92857143em .78571429em;vertical-align:inherit;font-style:none;font-weight:700;text-transform:none;border-bottom:1px solid rgba(34,36,38,.1);border-left:none}.semantic_ui .ui.table thead tr>th:first-child{border-left:none}.semantic_ui .ui.table thead tr:first-child>th:first-child{border-radius:.28571429rem 0 0 0}.semantic_ui .ui.table thead tr:first-child>th:last-child{border-radius:0 .28571429rem 0 0}.semantic_ui .ui.table thead tr:first-child>th:only-child{border-radius:.28571429rem .28571429rem 0 0}.semantic_ui .ui.table tfoot{-webkit-box-shadow:none;box-shadow:none}.semantic_ui .ui.table tfoot th{cursor:auto;border-top:1px solid rgba(34,36,38,.15);background:#f9fafb;text-align:inherit;color:rgba(0,0,0,.87);padding:.78571429em;vertical-align:middle;font-style:normal;font-weight:400;text-transform:none}.semantic_ui .ui.table tfoot tr>th:first-child{border-left:none}.semantic_ui .ui.table tfoot tr:first-child>th:first-child{border-radius:0 0 0 .28571429rem}.semantic_ui .ui.table tfoot tr:first-child>th:last-child{border-radius:0 0 .28571429rem 0}.semantic_ui .ui.table tfoot tr:first-child>th:only-child{border-radius:0 0 .28571429rem .28571429rem}.semantic_ui .ui.table tr td{border-top:1px solid rgba(34,36,38,.1)}.semantic_ui .ui.table tr:first-child td{border-top:none}.semantic_ui .ui.table td{padding:.78571429em;text-align:inherit}.semantic_ui .ui.table>.icon{vertical-align:baseline}.semantic_ui .ui.table>.icon:only-child{margin:0}.semantic_ui .ui.table.segment{padding:0}.semantic_ui .ui.table.segment:after{display:none}.semantic_ui .ui.table.segment.stacked:after{display:block}.semantic_ui .ui.table td .image,.semantic_ui .ui.table td .image img,.semantic_ui .ui.table th .image,.semantic_ui .ui.table th .image img{max-width:none}.semantic_ui .ui.structured.table{border-collapse:collapse}.semantic_ui .ui.structured.table thead th{border-left:none;border-right:none}.semantic_ui .ui.structured.sortable.table thead th{border-left:1px solid rgba(34,36,38,.15);border-right:1px solid rgba(34,36,38,.15)}.semantic_ui .ui.structured.basic.table th{border-left:none;border-right:none}.semantic_ui .ui.structured.celled.table tr td,.semantic_ui .ui.structured.celled.table tr th{border-left:1px solid rgba(34,36,38,.1);border-right:1px solid rgba(34,36,38,.1)}.semantic_ui .ui.definition.table thead:not(.full-width) th:first-child{pointer-events:none;background:transparent;font-weight:400;color:rgba(0,0,0,.4);-webkit-box-shadow:-1px -1px 0 1px #fff;box-shadow:-1px -1px 0 1px #fff}.semantic_ui .ui.definition.table tfoot:not(.full-width) th:first-child{pointer-events:none;background:transparent;font-weight:rgba(0,0,0,.4);color:normal;-webkit-box-shadow:1px 1px 0 1px #fff;box-shadow:1px 1px 0 1px #fff}.semantic_ui .ui.celled.definition.table thead:not(.full-width) th:first-child{-webkit-box-shadow:0 -1px 0 1px #fff;box-shadow:0 -1px 0 1px #fff}.semantic_ui .ui.celled.definition.table tfoot:not(.full-width) th:first-child{-webkit-box-shadow:0 1px 0 1px #fff;box-shadow:0 1px 0 1px #fff}.semantic_ui .ui.definition.table tr td.definition,.semantic_ui .ui.definition.table tr td:first-child:not(.ignored){background:rgba(0,0,0,.03);font-weight:700;color:rgba(0,0,0,.95);text-transform:"";-webkit-box-shadow:"";box-shadow:"";text-align:"";font-size:1em;padding-left:"";padding-right:""}.semantic_ui .ui.definition.table td:nth-child(2),.semantic_ui .ui.definition.table tfoot:not(.full-width) th:nth-child(2),.semantic_ui .ui.definition.table thead:not(.full-width) th:nth-child(2){border-left:1px solid rgba(34,36,38,.15)}.semantic_ui .ui.table td.positive,.semantic_ui .ui.table tr.positive{-webkit-box-shadow:0 0 0 #a3c293 inset;box-shadow:inset 0 0 0 #a3c293;background:#fcfff5!important;color:#2c662d!important}.semantic_ui .ui.table td.negative,.semantic_ui .ui.table tr.negative{-webkit-box-shadow:0 0 0 #e0b4b4 inset;box-shadow:inset 0 0 0 #e0b4b4;background:#fff6f6!important;color:#9f3a38!important}.semantic_ui .ui.table td.error,.semantic_ui .ui.table tr.error{-webkit-box-shadow:0 0 0 #e0b4b4 inset;box-shadow:inset 0 0 0 #e0b4b4;background:#fff6f6!important;color:#9f3a38!important}.semantic_ui .ui.table td.warning,.semantic_ui .ui.table tr.warning{-webkit-box-shadow:0 0 0 #c9ba9b inset;box-shadow:inset 0 0 0 #c9ba9b;background:#fffaf3!important;color:#573a08!important}.semantic_ui .ui.table td.active,.semantic_ui .ui.table tr.active{-webkit-box-shadow:0 0 0 rgba(0,0,0,.87) inset;box-shadow:inset 0 0 0 rgba(0,0,0,.87);background:#e0e0e0!important;color:rgba(0,0,0,.87)!important}.semantic_ui .ui.table tr.disabled:hover,.semantic_ui .ui.table tr.disabled td,.semantic_ui .ui.table tr:hover td.disabled,.semantic_ui .ui.table tr td.disabled{pointer-events:none;color:rgba(40,40,40,.3)}@media only screen and (max-width:991px){.semantic_ui .ui[class*="tablet stackable"].table,.semantic_ui .ui[class*="tablet stackable"].table tbody,.semantic_ui .ui[class*="tablet stackable"].table tr,.semantic_ui .ui[class*="tablet stackable"].table tr>td,.semantic_ui .ui[class*="tablet stackable"].table tr>th{width:100%!important;display:block!important}.semantic_ui .ui[class*="tablet stackable"].table{padding:0}.semantic_ui .ui[class*="tablet stackable"].table tfoot,.semantic_ui .ui[class*="tablet stackable"].table thead{display:block}.semantic_ui .ui[class*="tablet stackable"].table tr{padding-top:1em;padding-bottom:1em;-webkit-box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset!important;box-shadow:inset 0 -1px 0 0 rgba(0,0,0,.1)!important}.semantic_ui .ui[class*="tablet stackable"].table tr>td,.semantic_ui .ui[class*="tablet stackable"].table tr>th{background:none;border:none!important;padding:.25em .75em;-webkit-box-shadow:none!important;box-shadow:none!important}.semantic_ui .ui.definition[class*="tablet stackable"].table thead th:first-child{-webkit-box-shadow:none!important;box-shadow:none!important}}.semantic_ui .ui.table[class*="left aligned"],.semantic_ui .ui.table [class*="left aligned"]{text-align:left}.semantic_ui .ui.table[class*="center aligned"],.semantic_ui .ui.table [class*="center aligned"]{text-align:center}.semantic_ui .ui.table[class*="right aligned"],.semantic_ui .ui.table [class*="right aligned"]{text-align:right}.semantic_ui .ui.table[class*="top aligned"],.semantic_ui .ui.table [class*="top aligned"]{vertical-align:top}.semantic_ui .ui.table[class*="middle aligned"],.semantic_ui .ui.table [class*="middle aligned"]{vertical-align:middle}.semantic_ui .ui.table[class*="bottom aligned"],.semantic_ui .ui.table [class*="bottom aligned"]{vertical-align:bottom}.semantic_ui .ui.fixed.table{table-layout:fixed}.semantic_ui .ui.fixed.table td,.semantic_ui .ui.fixed.table th{overflow:hidden;text-overflow:ellipsis}.semantic_ui .ui.selectable.table tbody tr:hover,.semantic_ui .ui.table tbody tr td.selectable:hover{background:rgba(0,0,0,.05)!important;color:rgba(0,0,0,.95)!important}.semantic_ui .ui.inverted.table tbody tr td.selectable:hover,.semantic_ui .ui.selectable.inverted.table tbody tr:hover{background:hsla(0,0%,100%,.08)!important;color:#fff!important}.semantic_ui .ui.table tbody tr td.selectable{padding:0}.semantic_ui .ui.table tbody tr td.selectable>a:not(.ui){display:block;color:inherit;padding:.78571429em}.semantic_ui .ui.selectable.table tr.error:hover,.semantic_ui .ui.selectable.table tr:hover td.error,.semantic_ui .ui.table tr td.selectable.error:hover{background:#ffe7e7!important;color:#943634!important}.semantic_ui .ui.selectable.table tr.warning:hover,.semantic_ui .ui.selectable.table tr:hover td.warning,.semantic_ui .ui.table tr td.selectable.warning:hover{background:#fff4e4!important;color:#493107!important}.semantic_ui .ui.selectable.table tr.active:hover,.semantic_ui .ui.selectable.table tr:hover td.active,.semantic_ui .ui.table tr td.selectable.active:hover{background:#e0e0e0!important;color:rgba(0,0,0,.87)!important}.semantic_ui .ui.selectable.table tr.positive:hover,.semantic_ui .ui.selectable.table tr:hover td.positive,.semantic_ui .ui.table tr td.selectable.positive:hover{background:#f7ffe6!important;color:#275b28!important}.semantic_ui .ui.selectable.table tr.negative:hover,.semantic_ui .ui.selectable.table tr:hover td.negative,.semantic_ui .ui.table tr td.selectable.negative:hover{background:#ffe7e7!important;color:#943634!important}.semantic_ui .ui.attached.table{top:0;bottom:0;border-radius:0;margin:0 -1px;width:calc(100% + 2px);max-width:calc(100% + 2px);-webkit-box-shadow:none;box-shadow:none;border:1px solid #d4d4d5}.semantic_ui .ui.attached+.ui.attached.table:not(.top){border-top:none}.semantic_ui .ui[class*="top attached"].table{bottom:0;margin-bottom:0;top:0;margin-top:1em;border-radius:.28571429rem .28571429rem 0 0}.semantic_ui .ui.table[class*="top attached"]:first-child{margin-top:0}.semantic_ui .ui[class*="bottom attached"].table{bottom:0;margin-top:0;top:0;margin-bottom:1em;-webkit-box-shadow:none,none;box-shadow:none,none;border-radius:0 0 .28571429rem .28571429rem}.semantic_ui .ui[class*="bottom attached"].table:last-child{margin-bottom:0}.semantic_ui .ui.striped.table>tr:nth-child(2n),.semantic_ui .ui.striped.table tbody tr:nth-child(2n){background-color:rgba(0,0,50,.02)}.semantic_ui .ui.inverted.striped.table>tr:nth-child(2n),.semantic_ui .ui.inverted.striped.table tbody tr:nth-child(2n){background-color:hsla(0,0%,100%,.05)}.semantic_ui .ui.striped.selectable.selectable.selectable.table tbody tr.active:hover{background:#efefef!important;color:rgba(0,0,0,.95)!important}.semantic_ui .ui.table[class*="single line"],.semantic_ui .ui.table [class*="single line"]{white-space:nowrap}.semantic_ui .ui.one.column.table td{width:100%}.semantic_ui .ui.two.column.table td{width:50%}.semantic_ui .ui.three.column.table td{width:33.33333333%}.semantic_ui .ui.four.column.table td{width:25%}.semantic_ui .ui.five.column.table td{width:20%}.semantic_ui .ui.six.column.table td{width:16.66666667%}.semantic_ui .ui.seven.column.table td{width:14.28571429%}.semantic_ui .ui.eight.column.table td{width:12.5%}.semantic_ui .ui.nine.column.table td{width:11.11111111%}.semantic_ui .ui.ten.column.table td{width:10%}.semantic_ui .ui.eleven.column.table td{width:9.09090909%}.semantic_ui .ui.twelve.column.table td{width:8.33333333%}.semantic_ui .ui.thirteen.column.table td{width:7.69230769%}.semantic_ui .ui.fourteen.column.table td{width:7.14285714%}.semantic_ui .ui.fifteen.column.table td{width:6.66666667%}.semantic_ui .ui.sixteen.column.table td,.semantic_ui .ui.table td.one.wide,.semantic_ui .ui.table th.one.wide{width:6.25%}.semantic_ui .ui.table td.two.wide,.semantic_ui .ui.table th.two.wide{width:12.5%}.semantic_ui .ui.table td.three.wide,.semantic_ui .ui.table th.three.wide{width:18.75%}.semantic_ui .ui.table td.four.wide,.semantic_ui .ui.table th.four.wide{width:25%}.semantic_ui .ui.table td.five.wide,.semantic_ui .ui.table th.five.wide{width:31.25%}.semantic_ui .ui.table td.six.wide,.semantic_ui .ui.table th.six.wide{width:37.5%}.semantic_ui .ui.table td.seven.wide,.semantic_ui .ui.table th.seven.wide{width:43.75%}.semantic_ui .ui.table td.eight.wide,.semantic_ui .ui.table th.eight.wide{width:50%}.semantic_ui .ui.table td.nine.wide,.semantic_ui .ui.table th.nine.wide{width:56.25%}.semantic_ui .ui.table td.ten.wide,.semantic_ui .ui.table th.ten.wide{width:62.5%}.semantic_ui .ui.table td.eleven.wide,.semantic_ui .ui.table th.eleven.wide{width:68.75%}.semantic_ui .ui.table td.twelve.wide,.semantic_ui .ui.table th.twelve.wide{width:75%}.semantic_ui .ui.table td.thirteen.wide,.semantic_ui .ui.table th.thirteen.wide{width:81.25%}.semantic_ui .ui.table td.fourteen.wide,.semantic_ui .ui.table th.fourteen.wide{width:87.5%}.semantic_ui .ui.table td.fifteen.wide,.semantic_ui .ui.table th.fifteen.wide{width:93.75%}.semantic_ui .ui.table td.sixteen.wide,.semantic_ui .ui.table th.sixteen.wide{width:100%}.semantic_ui .ui.sortable.table thead th{cursor:pointer;white-space:nowrap;border-left:1px solid rgba(34,36,38,.15);color:rgba(0,0,0,.87)}.semantic_ui .ui.sortable.table thead th:first-child{border-left:none}.semantic_ui .ui.sortable.table thead th.sorted,.semantic_ui .ui.sortable.table thead th.sorted:hover{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.semantic_ui .ui.sortable.table thead th:after{display:none;font-style:normal;font-weight:400;text-decoration:inherit;content:"";height:1em;width:auto;opacity:.8;margin:0 0 0 .5em;font-family:Icons}.semantic_ui .ui.sortable.table thead th.ascending:after{content:"\F0D8"}.semantic_ui .ui.sortable.table thead th.descending:after{content:"\F0D7"}.semantic_ui .ui.sortable.table th.disabled:hover{cursor:auto;color:rgba(40,40,40,.3)}.semantic_ui .ui.sortable.table thead th:hover{background:rgba(0,0,0,.05);color:rgba(0,0,0,.8)}.semantic_ui .ui.sortable.table thead th.sorted{background:rgba(0,0,0,.05);color:rgba(0,0,0,.95)}.semantic_ui .ui.sortable.table thead th.sorted:after{display:inline-block}.semantic_ui .ui.sortable.table thead th.sorted:hover{background:rgba(0,0,0,.05);color:rgba(0,0,0,.95)}.semantic_ui .ui.inverted.sortable.table thead th.sorted{background:hsla(0,0%,100%,.15) -webkit-gradient(linear,left top,left bottom,from(transparent),to(rgba(0,0,0,.05)));background:hsla(0,0%,100%,.15) linear-gradient(transparent,rgba(0,0,0,.05));color:#fff}.semantic_ui .ui.inverted.sortable.table thead th:hover{background:hsla(0,0%,100%,.08) -webkit-gradient(linear,left top,left bottom,from(transparent),to(rgba(0,0,0,.05)));background:hsla(0,0%,100%,.08) linear-gradient(transparent,rgba(0,0,0,.05));color:#fff}.semantic_ui .ui.inverted.sortable.table thead th{border-left-color:transparent;border-right-color:transparent}.semantic_ui .ui.collapsing.table{width:auto}.semantic_ui .ui.basic.table{background:transparent;border:1px solid rgba(34,36,38,.15)}.semantic_ui .ui.basic.table,.semantic_ui .ui.basic.table tfoot,.semantic_ui .ui.basic.table thead{-webkit-box-shadow:none;box-shadow:none}.semantic_ui .ui.basic.table th{background:transparent;border-left:none}.semantic_ui .ui.basic.table tbody tr{border-bottom:1px solid rgba(0,0,0,.1)}.semantic_ui .ui.basic.table td{background:transparent}.semantic_ui .ui.basic.striped.table tbody tr:nth-child(2n){background-color:rgba(0,0,0,.05)!important}.semantic_ui .ui[class*="very basic"].table{border:none}.semantic_ui .ui[class*="very basic"].table:not(.sortable):not(.striped) td,.semantic_ui .ui[class*="very basic"].table:not(.sortable):not(.striped) th{padding:""}.semantic_ui .ui[class*="very basic"].table:not(.sortable):not(.striped) td:first-child,.semantic_ui .ui[class*="very basic"].table:not(.sortable):not(.striped) th:first-child{padding-left:0}.semantic_ui .ui[class*="very basic"].table:not(.sortable):not(.striped) td:last-child,.semantic_ui .ui[class*="very basic"].table:not(.sortable):not(.striped) th:last-child{padding-right:0}.semantic_ui .ui[class*="very basic"].table:not(.sortable):not(.striped) thead tr:first-child th{padding-top:0}.semantic_ui .ui.celled.table tr td,.semantic_ui .ui.celled.table tr th{border-left:1px solid rgba(34,36,38,.1)}.semantic_ui .ui.celled.table tr td:first-child,.semantic_ui .ui.celled.table tr th:first-child{border-left:none}.semantic_ui .ui.padded.table th{padding-left:1em;padding-right:1em}.semantic_ui .ui.padded.table td,.semantic_ui .ui.padded.table th{padding:1em}.semantic_ui .ui[class*="very padded"].table th{padding-left:1.5em;padding-right:1.5em}.semantic_ui .ui[class*="very padded"].table td{padding:1.5em}.semantic_ui .ui.compact.table th{padding-left:.7em;padding-right:.7em}.semantic_ui .ui.compact.table td{padding:.5em .7em}.semantic_ui .ui[class*="very compact"].table th{padding-left:.6em;padding-right:.6em}.semantic_ui .ui[class*="very compact"].table td{padding:.4em .6em}.semantic_ui .ui.small.table{font-size:.9em}.semantic_ui .ui.table{font-size:1em}.semantic_ui .ui.large.table{font-size:1.1em}.colored_table table.foo-table.inverted.red.table{background-color:#db2828!important;color:#fff!important}.colored_table table.foo-table.inverted.orange.table{background-color:#f2711c!important;color:#fff!important}.colored_table table.foo-table.inverted.yellow.table{background-color:#fbbd08!important;color:#fff!important}.colored_table table.foo-table.inverted.olive.table{background-color:#b5cc18!important;color:#fff!important}.colored_table table.foo-table.inverted.green.table{background-color:#21ba45!important;color:#fff!important}.colored_table table.foo-table.inverted.teal.table{background-color:#00b5ad!important;color:#fff!important}.colored_table table.foo-table.inverted.blue.table{background-color:#2185d0!important;color:#fff!important}.colored_table table.foo-table.inverted.violet.table{background-color:#6435c9!important;color:#fff!important}.colored_table table.foo-table.inverted.purple.table{background-color:#a333c8!important;color:#fff!important}.colored_table table.foo-table.inverted.pink.table{background-color:#e03997!important;color:#fff!important}.colored_table table.foo-table.inverted.brown.table{background-color:#a5673f!important;color:#fff!important}.colored_table table.foo-table.inverted.grey.table{background-color:#767676!important;color:#fff!important}.colored_table table.foo-table.inverted.black.table{background-color:#1b1c1d!important;color:#fff!important}.colored_table table.foo-table.inverted.table{background:#333;color:hsla(0,0%,100%,.9);border:none}.colored_table table.foo-table.inverted.table th{background-color:rgba(0,0,0,.15);border-color:hsla(0,0%,100%,.1)!important;color:hsla(0,0%,100%,.9)!important}.colored_table table.foo-table.inverted.table tr td{border-color:hsla(0,0%,100%,.1)!important}.colored_table table.foo-table.inverted.table tr.disabled:hover td,.colored_table table.foo-table.inverted.table tr.disabled td,.colored_table table.foo-table.inverted.table tr:hover td.disabled,.colored_table table.foo-table.inverted.table tr td.disabled{pointer-events:none;color:hsla(0,0%,88%,.3)}.colored_table table.foo-table.inverted.definition.table tfoot:not(.full-width) th:first-child,.colored_table table.foo-table.inverted.definition.table thead:not(.full-width) th:first-child{background:#fff}.colored_table table.foo-table.inverted.definition.table tr td:first-child{background:hsla(0,0%,100%,.02);color:#fff}.colored_table table.foo-table.inverted.table-striped tbody tr:nth-of-type(odd){background-color:hsla(0,0%,100%,.05)}.colored_table table.foo-table.inverted .pagination>.active>a,.colored_table table.foo-table.inverted .pagination>.active>a:focus,.colored_table table.foo-table.inverted .pagination>.active>a:hover,.colored_table table.foo-table.inverted .pagination>.active>span,.colored_table table.foo-table.inverted .pagination>.active>span:focus,.colored_table table.foo-table.inverted .pagination>.active>span:hover{background-color:rgba(0,0,0,.15);border-color:hsla(0,0%,100%,.1)!important;color:hsla(0,0%,100%,.9)!important;-webkit-box-shadow:inset 0 0 0 hsla(0,0%,100%,.1),0 1px 0 hsla(0,0%,100%,.1);box-shadow:inset 0 0 0 hsla(0,0%,100%,.1),0 1px 0 hsla(0,0%,100%,.1)}.colored_table table.foo-table.inverted .pagination a.footable-page-link{color:rgba(0,0,0,.5)}.colored_table table.foo-table.inverted .input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle){background-color:hsla(0,0%,100%,.1);border-color:hsla(0,0%,100%,.1)!important;color:hsla(0,0%,100%,.9)!important}
 
7
  * Released under the MIT license
8
  * http://opensource.org/licenses/MIT
9
  *
10
+ */}.semantic_ui .ui.table{width:100%;background:#fff;margin:1em 0;border:1px solid rgba(34,36,38,.15);-webkit-box-shadow:none;box-shadow:none;border-radius:.28571429rem;text-align:left;color:rgba(0,0,0,.87);border-collapse:separate;border-spacing:0}.semantic_ui .ui.table:first-child{margin-top:0}.semantic_ui .ui.table:last-child{margin-bottom:0}.semantic_ui .ui.table td,.semantic_ui .ui.table th{-webkit-transition:background .1s ease,color .1s ease;transition:background .1s ease,color .1s ease}.semantic_ui .ui.table thead{-webkit-box-shadow:none;box-shadow:none}.semantic_ui .ui.table thead th{cursor:auto;background:#f9fafb;text-align:inherit;color:rgba(0,0,0,.87);padding:.92857143em .78571429em;vertical-align:inherit;font-style:none;font-weight:700;text-transform:none;border-bottom:1px solid rgba(34,36,38,.1);border-left:none}.semantic_ui .ui.table thead tr>th:first-child{border-left:none}.semantic_ui .ui.table thead tr:first-child>th:first-child{border-radius:.28571429rem 0 0 0}.semantic_ui .ui.table thead tr:first-child>th:last-child{border-radius:0 .28571429rem 0 0}.semantic_ui .ui.table thead tr:first-child>th:only-child{border-radius:.28571429rem .28571429rem 0 0}.semantic_ui .ui.table tfoot{-webkit-box-shadow:none;box-shadow:none}.semantic_ui .ui.table tfoot th{cursor:auto;border-top:1px solid rgba(34,36,38,.15);background:#f9fafb;text-align:inherit;color:rgba(0,0,0,.87);padding:.78571429em;vertical-align:middle;font-style:normal;font-weight:400;text-transform:none}.semantic_ui .ui.table tfoot tr>th:first-child{border-left:none}.semantic_ui .ui.table tfoot tr:first-child>th:first-child{border-radius:0 0 0 .28571429rem}.semantic_ui .ui.table tfoot tr:first-child>th:last-child{border-radius:0 0 .28571429rem 0}.semantic_ui .ui.table tfoot tr:first-child>th:only-child{border-radius:0 0 .28571429rem .28571429rem}.semantic_ui .ui.table tr td{border-top:1px solid rgba(34,36,38,.1)}.semantic_ui .ui.table tr:first-child td{border-top:none}.semantic_ui .ui.table td{padding:.78571429em;text-align:inherit}.semantic_ui .ui.table>.icon{vertical-align:baseline}.semantic_ui .ui.table>.icon:only-child{margin:0}.semantic_ui .ui.table.segment{padding:0}.semantic_ui .ui.table.segment:after{display:none}.semantic_ui .ui.table.segment.stacked:after{display:block}.semantic_ui .ui.table td .image,.semantic_ui .ui.table td .image img,.semantic_ui .ui.table th .image,.semantic_ui .ui.table th .image img{max-width:none}.semantic_ui .ui.structured.table{border-collapse:collapse}.semantic_ui .ui.structured.table thead th{border-left:none;border-right:none}.semantic_ui .ui.structured.sortable.table thead th{border-left:1px solid rgba(34,36,38,.15);border-right:1px solid rgba(34,36,38,.15)}.semantic_ui .ui.structured.basic.table th{border-left:none;border-right:none}.semantic_ui .ui.structured.celled.table tr td,.semantic_ui .ui.structured.celled.table tr th{border-left:1px solid rgba(34,36,38,.1);border-right:1px solid rgba(34,36,38,.1)}.semantic_ui .ui.definition.table thead:not(.full-width) th:first-child{pointer-events:none;background:transparent;font-weight:400;color:rgba(0,0,0,.4);-webkit-box-shadow:-1px -1px 0 1px #fff;box-shadow:-1px -1px 0 1px #fff}.semantic_ui .ui.definition.table tfoot:not(.full-width) th:first-child{pointer-events:none;background:transparent;font-weight:rgba(0,0,0,.4);color:normal;-webkit-box-shadow:1px 1px 0 1px #fff;box-shadow:1px 1px 0 1px #fff}.semantic_ui .ui.celled.definition.table thead:not(.full-width) th:first-child{-webkit-box-shadow:0 -1px 0 1px #fff;box-shadow:0 -1px 0 1px #fff}.semantic_ui .ui.celled.definition.table tfoot:not(.full-width) th:first-child{-webkit-box-shadow:0 1px 0 1px #fff;box-shadow:0 1px 0 1px #fff}.semantic_ui .ui.definition.table tr td.definition,.semantic_ui .ui.definition.table tr td:first-child:not(.ignored){background:rgba(0,0,0,.03);font-weight:700;color:rgba(0,0,0,.95);text-transform:"";-webkit-box-shadow:"";box-shadow:"";text-align:"";font-size:1em;padding-left:"";padding-right:""}.semantic_ui .ui.definition.table td:nth-child(2),.semantic_ui .ui.definition.table tfoot:not(.full-width) th:nth-child(2),.semantic_ui .ui.definition.table thead:not(.full-width) th:nth-child(2){border-left:1px solid rgba(34,36,38,.15)}.semantic_ui .ui.table td.positive,.semantic_ui .ui.table tr.positive{-webkit-box-shadow:0 0 0 #a3c293 inset;box-shadow:inset 0 0 0 #a3c293;background:#fcfff5!important;color:#2c662d!important}.semantic_ui .ui.table td.negative,.semantic_ui .ui.table tr.negative{-webkit-box-shadow:0 0 0 #e0b4b4 inset;box-shadow:inset 0 0 0 #e0b4b4;background:#fff6f6!important;color:#9f3a38!important}.semantic_ui .ui.table td.error,.semantic_ui .ui.table tr.error{-webkit-box-shadow:0 0 0 #e0b4b4 inset;box-shadow:inset 0 0 0 #e0b4b4;background:#fff6f6!important;color:#9f3a38!important}.semantic_ui .ui.table td.warning,.semantic_ui .ui.table tr.warning{-webkit-box-shadow:0 0 0 #c9ba9b inset;box-shadow:inset 0 0 0 #c9ba9b;background:#fffaf3!important;color:#573a08!important}.semantic_ui .ui.table td.active,.semantic_ui .ui.table tr.active{-webkit-box-shadow:0 0 0 rgba(0,0,0,.87) inset;box-shadow:inset 0 0 0 rgba(0,0,0,.87);background:#e0e0e0!important;color:rgba(0,0,0,.87)!important}.semantic_ui .ui.table tr.disabled:hover,.semantic_ui .ui.table tr.disabled td,.semantic_ui .ui.table tr:hover td.disabled,.semantic_ui .ui.table tr td.disabled{pointer-events:none;color:rgba(40,40,40,.3)}@media only screen and (max-width:991px){.semantic_ui .ui[class*="tablet stackable"].table,.semantic_ui .ui[class*="tablet stackable"].table tbody,.semantic_ui .ui[class*="tablet stackable"].table tr,.semantic_ui .ui[class*="tablet stackable"].table tr>td,.semantic_ui .ui[class*="tablet stackable"].table tr>th{width:100%!important;display:block!important}.semantic_ui .ui[class*="tablet stackable"].table{padding:0}.semantic_ui .ui[class*="tablet stackable"].table tfoot,.semantic_ui .ui[class*="tablet stackable"].table thead{display:block}.semantic_ui .ui[class*="tablet stackable"].table tr{padding-top:1em;padding-bottom:1em;-webkit-box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset!important;box-shadow:inset 0 -1px 0 0 rgba(0,0,0,.1)!important}.semantic_ui .ui[class*="tablet stackable"].table tr>td,.semantic_ui .ui[class*="tablet stackable"].table tr>th{background:none;border:none!important;padding:.25em .75em;-webkit-box-shadow:none!important;box-shadow:none!important}.semantic_ui .ui.definition[class*="tablet stackable"].table thead th:first-child{-webkit-box-shadow:none!important;box-shadow:none!important}}.semantic_ui .ui.table[class*="left aligned"],.semantic_ui .ui.table [class*="left aligned"]{text-align:left}.semantic_ui .ui.table[class*="center aligned"],.semantic_ui .ui.table [class*="center aligned"]{text-align:center}.semantic_ui .ui.table[class*="right aligned"],.semantic_ui .ui.table [class*="right aligned"]{text-align:right}.semantic_ui .ui.table[class*="top aligned"],.semantic_ui .ui.table [class*="top aligned"]{vertical-align:top}.semantic_ui .ui.table[class*="middle aligned"],.semantic_ui .ui.table [class*="middle aligned"]{vertical-align:middle}.semantic_ui .ui.table[class*="bottom aligned"],.semantic_ui .ui.table [class*="bottom aligned"]{vertical-align:bottom}.semantic_ui .ui.fixed.table{table-layout:fixed}.semantic_ui .ui.fixed.table td,.semantic_ui .ui.fixed.table th{overflow:hidden;text-overflow:ellipsis}.semantic_ui .ui.selectable.table tbody tr:hover,.semantic_ui .ui.table tbody tr td.selectable:hover{background:rgba(0,0,0,.05)!important;color:rgba(0,0,0,.95)!important}.semantic_ui .ui.inverted.table tbody tr td.selectable:hover,.semantic_ui .ui.selectable.inverted.table tbody tr:hover{background:hsla(0,0%,100%,.08)!important;color:#fff!important}.semantic_ui .ui.table tbody tr td.selectable{padding:0}.semantic_ui .ui.table tbody tr td.selectable>a:not(.ui){display:block;color:inherit;padding:.78571429em}.semantic_ui .ui.selectable.table tr.error:hover,.semantic_ui .ui.selectable.table tr:hover td.error,.semantic_ui .ui.table tr td.selectable.error:hover{background:#ffe7e7!important;color:#943634!important}.semantic_ui .ui.selectable.table tr.warning:hover,.semantic_ui .ui.selectable.table tr:hover td.warning,.semantic_ui .ui.table tr td.selectable.warning:hover{background:#fff4e4!important;color:#493107!important}.semantic_ui .ui.selectable.table tr.active:hover,.semantic_ui .ui.selectable.table tr:hover td.active,.semantic_ui .ui.table tr td.selectable.active:hover{background:#e0e0e0!important;color:rgba(0,0,0,.87)!important}.semantic_ui .ui.selectable.table tr.positive:hover,.semantic_ui .ui.selectable.table tr:hover td.positive,.semantic_ui .ui.table tr td.selectable.positive:hover{background:#f7ffe6!important;color:#275b28!important}.semantic_ui .ui.selectable.table tr.negative:hover,.semantic_ui .ui.selectable.table tr:hover td.negative,.semantic_ui .ui.table tr td.selectable.negative:hover{background:#ffe7e7!important;color:#943634!important}.semantic_ui .ui.attached.table{top:0;bottom:0;border-radius:0;margin:0 -1px;width:calc(100% + 2px);max-width:calc(100% + 2px);-webkit-box-shadow:none;box-shadow:none;border:1px solid #d4d4d5}.semantic_ui .ui.attached+.ui.attached.table:not(.top){border-top:none}.semantic_ui .ui[class*="top attached"].table{bottom:0;margin-bottom:0;top:0;margin-top:1em;border-radius:.28571429rem .28571429rem 0 0}.semantic_ui .ui.table[class*="top attached"]:first-child{margin-top:0}.semantic_ui .ui[class*="bottom attached"].table{bottom:0;margin-top:0;top:0;margin-bottom:1em;-webkit-box-shadow:none,none;box-shadow:none,none;border-radius:0 0 .28571429rem .28571429rem}.semantic_ui .ui[class*="bottom attached"].table:last-child{margin-bottom:0}.semantic_ui .ui.striped.table>tr:nth-child(2n),.semantic_ui .ui.striped.table tbody tr:nth-child(2n){background-color:rgba(0,0,50,.02)}.semantic_ui .ui.inverted.striped.table>tr:nth-child(2n),.semantic_ui .ui.inverted.striped.table tbody tr:nth-child(2n){background-color:hsla(0,0%,100%,.05)}.semantic_ui .ui.striped.selectable.selectable.selectable.table tbody tr.active:hover{background:#efefef!important;color:rgba(0,0,0,.95)!important}.semantic_ui .ui.table[class*="single line"],.semantic_ui .ui.table [class*="single line"]{white-space:nowrap}.semantic_ui .ui.one.column.table td{width:100%}.semantic_ui .ui.two.column.table td{width:50%}.semantic_ui .ui.three.column.table td{width:33.33333333%}.semantic_ui .ui.four.column.table td{width:25%}.semantic_ui .ui.five.column.table td{width:20%}.semantic_ui .ui.six.column.table td{width:16.66666667%}.semantic_ui .ui.seven.column.table td{width:14.28571429%}.semantic_ui .ui.eight.column.table td{width:12.5%}.semantic_ui .ui.nine.column.table td{width:11.11111111%}.semantic_ui .ui.ten.column.table td{width:10%}.semantic_ui .ui.eleven.column.table td{width:9.09090909%}.semantic_ui .ui.twelve.column.table td{width:8.33333333%}.semantic_ui .ui.thirteen.column.table td{width:7.69230769%}.semantic_ui .ui.fourteen.column.table td{width:7.14285714%}.semantic_ui .ui.fifteen.column.table td{width:6.66666667%}.semantic_ui .ui.sixteen.column.table td,.semantic_ui .ui.table td.one.wide,.semantic_ui .ui.table th.one.wide{width:6.25%}.semantic_ui .ui.table td.two.wide,.semantic_ui .ui.table th.two.wide{width:12.5%}.semantic_ui .ui.table td.three.wide,.semantic_ui .ui.table th.three.wide{width:18.75%}.semantic_ui .ui.table td.four.wide,.semantic_ui .ui.table th.four.wide{width:25%}.semantic_ui .ui.table td.five.wide,.semantic_ui .ui.table th.five.wide{width:31.25%}.semantic_ui .ui.table td.six.wide,.semantic_ui .ui.table th.six.wide{width:37.5%}.semantic_ui .ui.table td.seven.wide,.semantic_ui .ui.table th.seven.wide{width:43.75%}.semantic_ui .ui.table td.eight.wide,.semantic_ui .ui.table th.eight.wide{width:50%}.semantic_ui .ui.table td.nine.wide,.semantic_ui .ui.table th.nine.wide{width:56.25%}.semantic_ui .ui.table td.ten.wide,.semantic_ui .ui.table th.ten.wide{width:62.5%}.semantic_ui .ui.table td.eleven.wide,.semantic_ui .ui.table th.eleven.wide{width:68.75%}.semantic_ui .ui.table td.twelve.wide,.semantic_ui .ui.table th.twelve.wide{width:75%}.semantic_ui .ui.table td.thirteen.wide,.semantic_ui .ui.table th.thirteen.wide{width:81.25%}.semantic_ui .ui.table td.fourteen.wide,.semantic_ui .ui.table th.fourteen.wide{width:87.5%}.semantic_ui .ui.table td.fifteen.wide,.semantic_ui .ui.table th.fifteen.wide{width:93.75%}.semantic_ui .ui.table td.sixteen.wide,.semantic_ui .ui.table th.sixteen.wide{width:100%}.semantic_ui .ui.sortable.table thead th{cursor:pointer;white-space:nowrap;border-left:1px solid rgba(34,36,38,.15);color:rgba(0,0,0,.87)}.semantic_ui .ui.sortable.table thead th:first-child{border-left:none}.semantic_ui .ui.sortable.table thead th.sorted,.semantic_ui .ui.sortable.table thead th.sorted:hover{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.semantic_ui .ui.sortable.table thead th:after{display:none;font-style:normal;font-weight:400;text-decoration:inherit;content:"";height:1em;width:auto;opacity:.8;margin:0 0 0 .5em;font-family:Icons}.semantic_ui .ui.sortable.table thead th.ascending:after{content:"\F0D8"}.semantic_ui .ui.sortable.table thead th.descending:after{content:"\F0D7"}.semantic_ui .ui.sortable.table th.disabled:hover{cursor:auto;color:rgba(40,40,40,.3)}.semantic_ui .ui.sortable.table thead th:hover{background:rgba(0,0,0,.05);color:rgba(0,0,0,.8)}.semantic_ui .ui.sortable.table thead th.sorted{background:rgba(0,0,0,.05);color:rgba(0,0,0,.95)}.semantic_ui .ui.sortable.table thead th.sorted:after{display:inline-block}.semantic_ui .ui.sortable.table thead th.sorted:hover{background:rgba(0,0,0,.05);color:rgba(0,0,0,.95)}.semantic_ui .ui.inverted.sortable.table thead th.sorted{background:hsla(0,0%,100%,.15) -webkit-gradient(linear,left top,left bottom,from(transparent),to(rgba(0,0,0,.05)));background:hsla(0,0%,100%,.15) linear-gradient(transparent,rgba(0,0,0,.05));color:#fff}.semantic_ui .ui.inverted.sortable.table thead th:hover{background:hsla(0,0%,100%,.08) -webkit-gradient(linear,left top,left bottom,from(transparent),to(rgba(0,0,0,.05)));background:hsla(0,0%,100%,.08) linear-gradient(transparent,rgba(0,0,0,.05));color:#fff}.semantic_ui .ui.inverted.sortable.table thead th{border-left-color:transparent;border-right-color:transparent}.semantic_ui .ui.collapsing.table{width:auto}.semantic_ui .ui.basic.table{background:transparent;border:1px solid rgba(34,36,38,.15)}.semantic_ui .ui.basic.table,.semantic_ui .ui.basic.table tfoot,.semantic_ui .ui.basic.table thead{-webkit-box-shadow:none;box-shadow:none}.semantic_ui .ui.basic.table th{background:transparent;border-left:none}.semantic_ui .ui.basic.table tbody tr{border-bottom:1px solid rgba(0,0,0,.1)}.semantic_ui .ui.basic.table td{background:transparent}.semantic_ui .ui.basic.striped.table tbody tr:nth-child(2n){background-color:rgba(0,0,0,.05)!important}.semantic_ui .ui[class*="very basic"].table{border:none}.semantic_ui .ui[class*="very basic"].table:not(.sortable):not(.striped) td,.semantic_ui .ui[class*="very basic"].table:not(.sortable):not(.striped) th{padding:""}.semantic_ui .ui[class*="very basic"].table:not(.sortable):not(.striped) td:first-child,.semantic_ui .ui[class*="very basic"].table:not(.sortable):not(.striped) th:first-child{padding-left:0}.semantic_ui .ui[class*="very basic"].table:not(.sortable):not(.striped) td:last-child,.semantic_ui .ui[class*="very basic"].table:not(.sortable):not(.striped) th:last-child{padding-right:0}.semantic_ui .ui[class*="very basic"].table:not(.sortable):not(.striped) thead tr:first-child th{padding-top:0}.semantic_ui .ui.celled.table tr td,.semantic_ui .ui.celled.table tr th{border-left:1px solid rgba(34,36,38,.1)}.semantic_ui .ui.celled.table tr td:first-child,.semantic_ui .ui.celled.table tr th:first-child{border-left:none}.semantic_ui .ui.padded.table th{padding-left:1em;padding-right:1em}.semantic_ui .ui.padded.table td,.semantic_ui .ui.padded.table th{padding:1em}.semantic_ui .ui[class*="very padded"].table th{padding-left:1.5em;padding-right:1.5em}.semantic_ui .ui[class*="very padded"].table td{padding:1.5em}.semantic_ui .ui.compact.table th{padding-left:.7em;padding-right:.7em}.semantic_ui .ui.compact.table td{padding:.5em .7em}.semantic_ui .ui[class*="very compact"].table th{padding-left:.6em;padding-right:.6em}.semantic_ui .ui[class*="very compact"].table td{padding:.4em .6em}.semantic_ui .ui.small.table{font-size:.9em}.semantic_ui .ui.table{font-size:1em}.semantic_ui .ui.large.table{font-size:1.1em}.colored_table table.foo-table.inverted.table a{color:hsla(0,0%,100%,.7)}.colored_table table.foo-table.inverted.table a.checkbox{color:#000}.colored_table table.foo-table.inverted.red.table{background-color:#db2828!important;color:#fff!important}.colored_table table.foo-table.inverted.orange.table{background-color:#f2711c!important;color:#fff!important}.colored_table table.foo-table.inverted.yellow.table{background-color:#fbbd08!important;color:#fff!important}.colored_table table.foo-table.inverted.olive.table{background-color:#b5cc18!important;color:#fff!important}.colored_table table.foo-table.inverted.green.table{background-color:#21ba45!important;color:#fff!important}.colored_table table.foo-table.inverted.teal.table{background-color:#00b5ad!important;color:#fff!important}.colored_table table.foo-table.inverted.blue.table{background-color:#2185d0!important;color:#fff!important}.colored_table table.foo-table.inverted.violet.table{background-color:#6435c9!important;color:#fff!important}.colored_table table.foo-table.inverted.purple.table{background-color:#a333c8!important;color:#fff!important}.colored_table table.foo-table.inverted.pink.table{background-color:#e03997!important;color:#fff!important}.colored_table table.foo-table.inverted.brown.table{background-color:#a5673f!important;color:#fff!important}.colored_table table.foo-table.inverted.grey.table{background-color:#767676!important;color:#fff!important}.colored_table table.foo-table.inverted.black.table{background-color:#1b1c1d!important;color:#fff!important}.colored_table table.foo-table.inverted.table{background:#333;color:hsla(0,0%,100%,.9);border:none}.colored_table table.foo-table.inverted.table th{background-color:rgba(0,0,0,.15);border-color:hsla(0,0%,100%,.1)!important;color:hsla(0,0%,100%,.9)!important}.colored_table table.foo-table.inverted.table tr td{border-color:hsla(0,0%,100%,.1)!important}.colored_table table.foo-table.inverted.table tr.disabled:hover td,.colored_table table.foo-table.inverted.table tr.disabled td,.colored_table table.foo-table.inverted.table tr:hover td.disabled,.colored_table table.foo-table.inverted.table tr td.disabled{pointer-events:none;color:hsla(0,0%,88%,.3)}.colored_table table.foo-table.inverted.definition.table tfoot:not(.full-width) th:first-child,.colored_table table.foo-table.inverted.definition.table thead:not(.full-width) th:first-child{background:#fff}.colored_table table.foo-table.inverted.definition.table tr td:first-child{background:hsla(0,0%,100%,.02);color:#fff}.colored_table table.foo-table.inverted.table-striped tbody tr:nth-of-type(odd){background-color:hsla(0,0%,100%,.05)}.colored_table table.foo-table.inverted .pagination>.active>a,.colored_table table.foo-table.inverted .pagination>.active>a:focus,.colored_table table.foo-table.inverted .pagination>.active>a:hover,.colored_table table.foo-table.inverted .pagination>.active>span,.colored_table table.foo-table.inverted .pagination>.active>span:focus,.colored_table table.foo-table.inverted .pagination>.active>span:hover{background-color:rgba(0,0,0,.15);border-color:hsla(0,0%,100%,.1)!important;color:hsla(0,0%,100%,.9)!important;-webkit-box-shadow:inset 0 0 0 hsla(0,0%,100%,.1),0 1px 0 hsla(0,0%,100%,.1);box-shadow:inset 0 0 0 hsla(0,0%,100%,.1),0 1px 0 hsla(0,0%,100%,.1)}.colored_table table.foo-table.inverted .pagination a.footable-page-link{color:rgba(0,0,0,.5)}.colored_table table.foo-table.inverted .input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle){background-color:hsla(0,0%,100%,.1);border-color:hsla(0,0%,100%,.1)!important;color:hsla(0,0%,100%,.9)!important}
11
+ /*# sourceMappingURL=ninja-tables-public.css.map*/
assets/css/ninja-tables-public.css.map ADDED
@@ -0,0 +1 @@
 
1
+ {"version":3,"sources":["webpack:///./src/public/css/src/public/css/_common.scss","webpack:///./_public.scss","webpack:///./src/public/css/src/public/css/_foo_icons.scss","webpack:///./src/public/css/_public.scss","webpack:///./src/public/css/src/public/css/_table_boostrap3.scss","webpack:///./src/public/css/src/public/css/_public.scss","webpack:///./src/public/css/src/public/css/_table_bootstrap4.scss","webpack:///./src/public/css/src/public/css/_table_semantic_ui.scss","webpack:///./src/public/css/src/public/css/_colors.scss"],"names":[],"mappings":"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","file":"/css/ninja-tables-public.css","sourcesContent":[".foo-table {\n span.label.label-default {\n display: none;\n visibility: hidden;\n }\n \n table.footable-details tr th {\n white-space: initial;\n overflow: visible !important;\n text-overflow: unset !important;\n }\n tr.footable-filtering th {\n overflow: visible !important;\n }\n .pagination {\n border: none;\n padding: 0px;\n font-weight: 500;\n }\n button.btn.btn-default.dropdown-toggle {\n right: 0px;\n left: 0px;\n }\n \n li.dropdown-header {\n padding-left: 20px;\n padding-bottom: 5px;\n color: #333333;\n }\n ul.dropdown-menu.dropdown-menu-right li:last-child a {\n border-bottom: 0px !important;\n box-shadow: none;\n }\n ul.dropdown-menu.dropdown-menu-right li a:hover {\n -webkit-box-shadow: inset 0 0 0 rgba(0, 0, 0, 0), 0 1px 0 rgba(0, 0, 0, 1);\n box-shadow: inset 0 0 0 rgba(0, 0, 0, 0), 0 1px 0 rgba(0, 0, 0, 1);\n }\n span.footable-toggle {\n cursor: pointer;\n }\n \n}\n\n.footable_parent {\n overflow-x: auto;\n}\n\n\n// WEBPACK FOOTER //\n// ./src/public/css/src/public/css/_common.scss",".foo-table span.label.label-default {\n display: none;\n visibility: hidden;\n}\n\n.foo-table table.footable-details tr th {\n white-space: initial;\n overflow: visible !important;\n text-overflow: unset !important;\n}\n\n.foo-table tr.footable-filtering th {\n overflow: visible !important;\n}\n\n.foo-table .pagination {\n border: none;\n padding: 0px;\n font-weight: 500;\n}\n\n.foo-table button.btn.btn-default.dropdown-toggle {\n right: 0px;\n left: 0px;\n}\n\n.foo-table li.dropdown-header {\n padding-left: 20px;\n padding-bottom: 5px;\n color: #333333;\n}\n\n.foo-table ul.dropdown-menu.dropdown-menu-right li:last-child a {\n border-bottom: 0px !important;\n box-shadow: none;\n}\n\n.foo-table ul.dropdown-menu.dropdown-menu-right li a:hover {\n -webkit-box-shadow: inset 0 0 0 transparent, 0 1px 0 black;\n box-shadow: inset 0 0 0 transparent, 0 1px 0 black;\n}\n\n.foo-table span.footable-toggle {\n cursor: pointer;\n}\n\n.footable_parent {\n overflow-x: auto;\n}\n\n@font-face {\n font-family: \"ninja-tables-fontawesome\";\n src: url(\"../../fonts/ninja-tables-fontawesome.eot\");\n src: url(\"../../fonts/ninja-tables-fontawesome.eot\") format(\"embedded-opentype\"), url(\"../../fonts/ninja-tables-fontawesome.woff\") format(\"woff\"), url(\"../../fonts/ninja-tables-fontawesome.ttf\") format(\"truetype\"), url(\"../../fonts/ninja-tables-fontawesome.svg\") format(\"svg\");\n font-weight: normal;\n font-style: normal;\n}\n\n[data-icon]:before {\n font-family: \"ninja-tables-fontawesome\" !important;\n content: attr(data-icon);\n font-style: normal !important;\n font-weight: normal !important;\n font-variant: normal !important;\n text-transform: none !important;\n speak: none;\n line-height: 1;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n}\n\n[class^=\"fooicon-\"]:before,\n[class*=\" fooicon-\"]:before {\n font-family: \"ninja-tables-fontawesome\" !important;\n font-style: normal !important;\n font-weight: normal !important;\n font-variant: normal !important;\n text-transform: none !important;\n speak: none;\n line-height: 1;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n}\n\n.fooicon-search:before {\n content: \"\\f002\";\n}\n\n.fooicon-sort-desc:before {\n content: \"\\f161\";\n}\n\n.fooicon-sort-asc:before {\n content: \"\\f160\";\n}\n\n.fooicon-sort:before {\n content: \"\\f0dc\";\n}\n\n.fooicon-minus:before {\n content: \"\\f068\";\n}\n\n.fooicon-plus:before {\n content: \"\\f067\";\n}\n\n.fooicon-circle-o-notch:before {\n content: \"\\e000\";\n}\n\n.fooicon-remove-1:before {\n content: \"\\f00d\";\n}\n\n.fooicon-loader-alt:before {\n content: \"\\f01\";\n}\n\n.fooicon-refresh:before {\n content: \"\\e001\";\n}\n\n.fooicon-loader:before {\n content: \"\\f01e\";\n}\n\n.bootstrap3 table {\n background-color: transparent;\n}\n\n.bootstrap3 caption {\n padding-top: 8px;\n padding-bottom: 8px;\n color: #777;\n text-align: left;\n}\n\n.bootstrap3 th {\n text-align: left;\n}\n\n.bootstrap3 .table {\n width: 100%;\n max-width: 100%;\n margin-bottom: 20px;\n}\n\n.bootstrap3 .table > thead > tr > th,\n.bootstrap3 .table > tbody > tr > th,\n.bootstrap3 .table > tfoot > tr > th,\n.bootstrap3 .table > thead > tr > td,\n.bootstrap3 .table > tbody > tr > td,\n.bootstrap3 .table > tfoot > tr > td {\n padding: 8px;\n line-height: 1.42857143;\n vertical-align: top;\n border-top: 1px solid #ddd;\n}\n\n.bootstrap3 .table > thead > tr > th {\n vertical-align: bottom;\n border-bottom: 2px solid #ddd;\n}\n\n.bootstrap3 .table > caption + thead > tr:first-child > th,\n.bootstrap3 .table > colgroup + thead > tr:first-child > th,\n.bootstrap3 .table > thead:first-child > tr:first-child > th,\n.bootstrap3 .table > caption + thead > tr:first-child > td,\n.bootstrap3 .table > colgroup + thead > tr:first-child > td,\n.bootstrap3 .table > thead:first-child > tr:first-child > td {\n border-top: 0;\n}\n\n.bootstrap3 .table > tbody + tbody {\n border-top: 2px solid #ddd;\n}\n\n.bootstrap3 .table .table {\n background-color: #fff;\n}\n\n.bootstrap3 .table-condensed > thead > tr > th,\n.bootstrap3 .table-condensed > tbody > tr > th,\n.bootstrap3 .table-condensed > tfoot > tr > th,\n.bootstrap3 .table-condensed > thead > tr > td,\n.bootstrap3 .table-condensed > tbody > tr > td,\n.bootstrap3 .table-condensed > tfoot > tr > td {\n padding: 5px;\n}\n\n.bootstrap3 .table-bordered {\n border: 1px solid #ddd;\n}\n\n.bootstrap3 .table-bordered > thead > tr > th,\n.bootstrap3 .table-bordered > tbody > tr > th,\n.bootstrap3 .table-bordered > tfoot > tr > th,\n.bootstrap3 .table-bordered > thead > tr > td,\n.bootstrap3 .table-bordered > tbody > tr > td,\n.bootstrap3 .table-bordered > tfoot > tr > td {\n border: 1px solid #ddd;\n}\n\n.bootstrap3 .table-bordered > thead > tr > th,\n.bootstrap3 .table-bordered > thead > tr > td {\n border-bottom-width: 2px;\n}\n\n.bootstrap3 .table-striped > tbody > tr:nth-of-type(odd) {\n background-color: #f9f9f9;\n}\n\n.bootstrap3 .table-hover > tbody > tr:hover {\n background-color: #f5f5f5;\n}\n\n.bootstrap3 table col[class*=\"col-\"] {\n position: static;\n display: table-column;\n float: none;\n}\n\n.bootstrap3 table td[class*=\"col-\"],\n.bootstrap3 table th[class*=\"col-\"] {\n position: static;\n display: table-cell;\n float: none;\n}\n\n.bootstrap3 .table > thead > tr > td.active,\n.bootstrap3 .table > tbody > tr > td.active,\n.bootstrap3 .table > tfoot > tr > td.active,\n.bootstrap3 .table > thead > tr > th.active,\n.bootstrap3 .table > tbody > tr > th.active,\n.bootstrap3 .table > tfoot > tr > th.active,\n.bootstrap3 .table > thead > tr.active > td,\n.bootstrap3 .table > tbody > tr.active > td,\n.bootstrap3 .table > tfoot > tr.active > td,\n.bootstrap3 .table > thead > tr.active > th,\n.bootstrap3 .table > tbody > tr.active > th,\n.bootstrap3 .table > tfoot > tr.active > th {\n background-color: #f5f5f5;\n}\n\n.bootstrap3 .table-hover > tbody > tr > td.active:hover,\n.bootstrap3 .table-hover > tbody > tr > th.active:hover,\n.bootstrap3 .table-hover > tbody > tr.active:hover > td,\n.bootstrap3 .table-hover > tbody > tr:hover > .active,\n.bootstrap3 .table-hover > tbody > tr.active:hover > th {\n background-color: #e8e8e8;\n}\n\n.bootstrap3 .table > thead > tr > td.success,\n.bootstrap3 .table > tbody > tr > td.success,\n.bootstrap3 .table > tfoot > tr > td.success,\n.bootstrap3 .table > thead > tr > th.success,\n.bootstrap3 .table > tbody > tr > th.success,\n.bootstrap3 .table > tfoot > tr > th.success,\n.bootstrap3 .table > thead > tr.success > td,\n.bootstrap3 .table > tbody > tr.success > td,\n.bootstrap3 .table > tfoot > tr.success > td,\n.bootstrap3 .table > thead > tr.success > th,\n.bootstrap3 .table > tbody > tr.success > th,\n.bootstrap3 .table > tfoot > tr.success > th {\n background-color: #dff0d8;\n}\n\n.bootstrap3 .table-hover > tbody > tr > td.success:hover,\n.bootstrap3 .table-hover > tbody > tr > th.success:hover,\n.bootstrap3 .table-hover > tbody > tr.success:hover > td,\n.bootstrap3 .table-hover > tbody > tr:hover > .success,\n.bootstrap3 .table-hover > tbody > tr.success:hover > th {\n background-color: #d0e9c6;\n}\n\n.bootstrap3 .table > thead > tr > td.info,\n.bootstrap3 .table > tbody > tr > td.info,\n.bootstrap3 .table > tfoot > tr > td.info,\n.bootstrap3 .table > thead > tr > th.info,\n.bootstrap3 .table > tbody > tr > th.info,\n.bootstrap3 .table > tfoot > tr > th.info,\n.bootstrap3 .table > thead > tr.info > td,\n.bootstrap3 .table > tbody > tr.info > td,\n.bootstrap3 .table > tfoot > tr.info > td,\n.bootstrap3 .table > thead > tr.info > th,\n.bootstrap3 .table > tbody > tr.info > th,\n.bootstrap3 .table > tfoot > tr.info > th {\n background-color: #d9edf7;\n}\n\n.bootstrap3 .table-hover > tbody > tr > td.info:hover,\n.bootstrap3 .table-hover > tbody > tr > th.info:hover,\n.bootstrap3 .table-hover > tbody > tr.info:hover > td,\n.bootstrap3 .table-hover > tbody > tr:hover > .info,\n.bootstrap3 .table-hover > tbody > tr.info:hover > th {\n background-color: #c4e3f3;\n}\n\n.bootstrap3 .table > thead > tr > td.warning,\n.bootstrap3 .table > tbody > tr > td.warning,\n.bootstrap3 .table > tfoot > tr > td.warning,\n.bootstrap3 .table > thead > tr > th.warning,\n.bootstrap3 .table > tbody > tr > th.warning,\n.bootstrap3 .table > tfoot > tr > th.warning,\n.bootstrap3 .table > thead > tr.warning > td,\n.bootstrap3 .table > tbody > tr.warning > td,\n.bootstrap3 .table > tfoot > tr.warning > td,\n.bootstrap3 .table > thead > tr.warning > th,\n.bootstrap3 .table > tbody > tr.warning > th,\n.bootstrap3 .table > tfoot > tr.warning > th {\n background-color: #fcf8e3;\n}\n\n.bootstrap3 .table-hover > tbody > tr > td.warning:hover,\n.bootstrap3 .table-hover > tbody > tr > th.warning:hover,\n.bootstrap3 .table-hover > tbody > tr.warning:hover > td,\n.bootstrap3 .table-hover > tbody > tr:hover > .warning,\n.bootstrap3 .table-hover > tbody > tr.warning:hover > th {\n background-color: #faf2cc;\n}\n\n.bootstrap3 .table > thead > tr > td.danger,\n.bootstrap3 .table > tbody > tr > td.danger,\n.bootstrap3 .table > tfoot > tr > td.danger,\n.bootstrap3 .table > thead > tr > th.danger,\n.bootstrap3 .table > tbody > tr > th.danger,\n.bootstrap3 .table > tfoot > tr > th.danger,\n.bootstrap3 .table > thead > tr.danger > td,\n.bootstrap3 .table > tbody > tr.danger > td,\n.bootstrap3 .table > tfoot > tr.danger > td,\n.bootstrap3 .table > thead > tr.danger > th,\n.bootstrap3 .table > tbody > tr.danger > th,\n.bootstrap3 .table > tfoot > tr.danger > th {\n background-color: #f2dede;\n}\n\n.bootstrap3 .table-hover > tbody > tr > td.danger:hover,\n.bootstrap3 .table-hover > tbody > tr > th.danger:hover,\n.bootstrap3 .table-hover > tbody > tr.danger:hover > td,\n.bootstrap3 .table-hover > tbody > tr:hover > .danger,\n.bootstrap3 .table-hover > tbody > tr.danger:hover > th {\n background-color: #ebcccc;\n}\n\n.bootstrap3 .table-responsive {\n min-height: .01%;\n overflow-x: auto;\n}\n\n@media screen and (max-width: 767px) {\n .bootstrap3 .table-responsive {\n width: 100%;\n margin-bottom: 15px;\n overflow-y: hidden;\n -ms-overflow-style: -ms-autohiding-scrollbar;\n border: 1px solid #ddd;\n }\n\n .bootstrap3 .table-responsive > .table {\n margin-bottom: 0;\n }\n\n .bootstrap3 .table-responsive > .table > thead > tr > th,\n .bootstrap3 .table-responsive > .table > tbody > tr > th,\n .bootstrap3 .table-responsive > .table > tfoot > tr > th,\n .bootstrap3 .table-responsive > .table > thead > tr > td,\n .bootstrap3 .table-responsive > .table > tbody > tr > td,\n .bootstrap3 .table-responsive > .table > tfoot > tr > td {\n white-space: nowrap;\n }\n\n .bootstrap3 .table-responsive > .table-bordered {\n border: 0;\n }\n\n .bootstrap3 .table-responsive > .table-bordered > thead > tr > th:first-child,\n .bootstrap3 .table-responsive > .table-bordered > tbody > tr > th:first-child,\n .bootstrap3 .table-responsive > .table-bordered > tfoot > tr > th:first-child,\n .bootstrap3 .table-responsive > .table-bordered > thead > tr > td:first-child,\n .bootstrap3 .table-responsive > .table-bordered > tbody > tr > td:first-child,\n .bootstrap3 .table-responsive > .table-bordered > tfoot > tr > td:first-child {\n border-left: 0;\n }\n\n .bootstrap3 .table-responsive > .table-bordered > thead > tr > th:last-child,\n .bootstrap3 .table-responsive > .table-bordered > tbody > tr > th:last-child,\n .bootstrap3 .table-responsive > .table-bordered > tfoot > tr > th:last-child,\n .bootstrap3 .table-responsive > .table-bordered > thead > tr > td:last-child,\n .bootstrap3 .table-responsive > .table-bordered > tbody > tr > td:last-child,\n .bootstrap3 .table-responsive > .table-bordered > tfoot > tr > td:last-child {\n border-right: 0;\n }\n\n .bootstrap3 .table-responsive > .table-bordered > tbody > tr:last-child > th,\n .bootstrap3 .table-responsive > .table-bordered > tfoot > tr:last-child > th,\n .bootstrap3 .table-responsive > .table-bordered > tbody > tr:last-child > td,\n .bootstrap3 .table-responsive > .table-bordered > tfoot > tr:last-child > td {\n border-bottom: 0;\n }\n}\n\n.bootstrap4 .table {\n width: 100%;\n max-width: 100%;\n margin-bottom: 1rem;\n background-color: transparent;\n}\n\n.bootstrap4 .table th,\n.bootstrap4 .table td {\n padding: 0.75rem;\n vertical-align: top;\n border-top: 1px solid #e9ecef;\n}\n\n.bootstrap4 .table thead th {\n vertical-align: bottom;\n border-bottom: 2px solid #e9ecef;\n}\n\n.bootstrap4 .table tbody + tbody {\n border-top: 2px solid #e9ecef;\n}\n\n.bootstrap4 .table .table {\n background-color: #fff;\n color: black;\n}\n\n.bootstrap4 .table-sm th,\n.bootstrap4 .table-sm td {\n padding: 0.3rem;\n}\n\n.bootstrap4 .table-bordered {\n border: 1px solid #e9ecef;\n}\n\n.bootstrap4 .table-bordered th,\n.bootstrap4 .table-bordered td {\n border: 1px solid #e9ecef;\n}\n\n.bootstrap4 .table-bordered thead th,\n.bootstrap4 .table-bordered thead td {\n border-bottom-width: 2px;\n}\n\n.bootstrap4 .table-striped tbody tr:nth-of-type(odd) {\n background-color: rgba(0, 0, 0, 0.05);\n}\n\n.bootstrap4 .table-hover tbody tr:hover {\n background-color: rgba(0, 0, 0, 0.075);\n}\n\n.bootstrap4 .table-primary,\n.bootstrap4 .table-primary > th,\n.bootstrap4 .table-primary > td {\n background-color: #b8daff;\n}\n\n.bootstrap4 .table-hover .table-primary:hover {\n background-color: #9fcdff;\n}\n\n.bootstrap4 .table-hover .table-primary:hover > td,\n.bootstrap4 .table-hover .table-primary:hover > th {\n background-color: #9fcdff;\n}\n\n.bootstrap4 .table-secondary,\n.bootstrap4 .table-secondary > th,\n.bootstrap4 .table-secondary > td {\n background-color: #dddfe2;\n}\n\n.bootstrap4 .table-hover .table-secondary:hover {\n background-color: #cfd2d6;\n}\n\n.bootstrap4 .table-hover .table-secondary:hover > td,\n.bootstrap4 .table-hover .table-secondary:hover > th {\n background-color: #cfd2d6;\n}\n\n.bootstrap4 .table-success,\n.bootstrap4 .table-success > th,\n.bootstrap4 .table-success > td {\n background-color: #c3e6cb;\n}\n\n.bootstrap4 .table-hover .table-success:hover {\n background-color: #b1dfbb;\n}\n\n.bootstrap4 .table-hover .table-success:hover > td,\n.bootstrap4 .table-hover .table-success:hover > th {\n background-color: #b1dfbb;\n}\n\n.bootstrap4 .table-info,\n.bootstrap4 .table-info > th,\n.bootstrap4 .table-info > td {\n background-color: #bee5eb;\n}\n\n.bootstrap4 .table-hover .table-info:hover {\n background-color: #abdde5;\n}\n\n.bootstrap4 .table-hover .table-info:hover > td,\n.bootstrap4 .table-hover .table-info:hover > th {\n background-color: #abdde5;\n}\n\n.bootstrap4 .table-warning,\n.bootstrap4 .table-warning > th,\n.bootstrap4 .table-warning > td {\n background-color: #ffeeba;\n}\n\n.bootstrap4 .table-hover .table-warning:hover {\n background-color: #ffe8a1;\n}\n\n.bootstrap4 .table-hover .table-warning:hover > td,\n.bootstrap4 .table-hover .table-warning:hover > th {\n background-color: #ffe8a1;\n}\n\n.bootstrap4 .table-danger,\n.bootstrap4 .table-danger > th,\n.bootstrap4 .table-danger > td {\n background-color: #f5c6cb;\n}\n\n.bootstrap4 .table-hover .table-danger:hover {\n background-color: #f1b0b7;\n}\n\n.bootstrap4 .table-hover .table-danger:hover > td,\n.bootstrap4 .table-hover .table-danger:hover > th {\n background-color: #f1b0b7;\n}\n\n.bootstrap4 .table-light,\n.bootstrap4 .table-light > th,\n.bootstrap4 .table-light > td {\n background-color: #fdfdfe;\n}\n\n.bootstrap4 .table-hover .table-light:hover {\n background-color: #ececf6;\n}\n\n.bootstrap4 .table-hover .table-light:hover > td,\n.bootstrap4 .table-hover .table-light:hover > th {\n background-color: #ececf6;\n}\n\n.bootstrap4 .table-dark,\n.bootstrap4 .table-dark > th,\n.bootstrap4 .table-dark > td {\n background-color: #c6c8ca;\n}\n\n.bootstrap4 .table-hover .table-dark:hover {\n background-color: #b9bbbe;\n}\n\n.bootstrap4 .table-hover .table-dark:hover > td,\n.bootstrap4 .table-hover .table-dark:hover > th {\n background-color: #b9bbbe;\n}\n\n.bootstrap4 .table-active,\n.bootstrap4 .table-active > th,\n.bootstrap4 .table-active > td {\n background-color: rgba(0, 0, 0, 0.075);\n}\n\n.bootstrap4 .table-hover .table-active:hover {\n background-color: rgba(0, 0, 0, 0.075);\n}\n\n.bootstrap4 .table-hover .table-active:hover > td,\n.bootstrap4 .table-hover .table-active:hover > th {\n background-color: rgba(0, 0, 0, 0.075);\n}\n\n.bootstrap4 .thead-inverse th {\n color: #fff;\n background-color: #212529;\n}\n\n.bootstrap4 .thead-default th {\n color: #495057;\n background-color: #e9ecef;\n}\n\n.bootstrap4 .table-inverse {\n color: #fff;\n background-color: #212529;\n}\n\n.bootstrap4 .table-inverse th,\n.bootstrap4 .table-inverse td,\n.bootstrap4 .table-inverse thead th {\n border-color: #32383e;\n}\n\n.bootstrap4 .table-inverse.table-bordered {\n border: 0;\n}\n\n.bootstrap4 .table-inverse.table-striped tbody tr:nth-of-type(odd) {\n background-color: rgba(255, 255, 255, 0.05);\n}\n\n.bootstrap4 .table-inverse.table-hover tbody tr:hover {\n background-color: rgba(255, 255, 255, 0.075);\n}\n\n@media (max-width: 991px) {\n .bootstrap4 .table-responsive {\n display: block;\n width: 100%;\n overflow-x: auto;\n -ms-overflow-style: -ms-autohiding-scrollbar;\n }\n\n .bootstrap4 .table-responsive.table-bordered {\n border: 0;\n }\n}\n\n.semantic_ui {\n /*!\n * # Semantic UI 2.2.12 - Table\n * http://github.com/semantic-org/semantic-ui/\n *\n *\n * Released under the MIT license\n * http://opensource.org/licenses/MIT\n *\n */\n /*******************************\n Table\n*******************************/\n /* Prototype */\n /*******************************\n Parts\n*******************************/\n /* Table Content */\n /* Headers */\n /* Footer */\n /* Table Row */\n /* Table Cells */\n /* Icons */\n /* Table Segment */\n /*******************************\n Coupling\n*******************************/\n /* UI Image */\n /*******************************\n Types\n*******************************/\n /*--------------\n Complex\n---------------*/\n /*--------------\n Definition\n---------------*/\n /* Remove Border */\n /* Highlight Defining Column */\n /* Fix 2nd Column */\n /*******************************\n States\n*******************************/\n /*--------------\n Positive\n---------------*/\n /*--------------\n Negative\n---------------*/\n /*--------------\n Error\n---------------*/\n /*--------------\n Warning\n---------------*/\n /*--------------\n Active\n---------------*/\n /*--------------\n Disabled\n---------------*/\n /*******************************\n Variations\n*******************************/\n /*--------------\n Stackable\n---------------*/\n /*--------------\n Text Alignment\n---------------*/\n /*------------------\n Vertical Alignment\n------------------*/\n /*--------------\n Fixed\n---------------*/\n /*--------------\n Selectable\n---------------*/\n /* Selectable Cell Link */\n /* Other States */\n /*-------------------\n Attached\n--------------------*/\n /* Middle */\n /* Top */\n /* Bottom */\n /*--------------\n Striped\n---------------*/\n /* Table Striping */\n /* Stripes */\n /* Allow striped active hover */\n /*--------------\n Single Line\n---------------*/\n /*--------------\n Column Count\n---------------*/\n /* Grid Based */\n /* Column Width */\n /*--------------\n Sortable\n---------------*/\n /* Hover */\n /* Sorted */\n /* Sorted Hover */\n /* Inverted */\n /*--------------\n Collapsing\n---------------*/\n /*--------------\n Basic\n---------------*/\n /* Very Basic */\n /*--------------\n Celled\n---------------*/\n /*--------------\n Padded\n---------------*/\n /* Very */\n /*--------------\n Compact\n---------------*/\n /* Very */\n /*--------------\n Sizes\n---------------*/\n /* Small */\n /* Standard */\n /* Large */\n}\n\n.semantic_ui .ui.table {\n width: 100%;\n background: #FFFFFF;\n margin: 1em 0em;\n border: 1px solid rgba(34, 36, 38, 0.15);\n box-shadow: none;\n border-radius: 0.28571429rem;\n text-align: left;\n color: rgba(0, 0, 0, 0.87);\n border-collapse: separate;\n border-spacing: 0px;\n}\n\n.semantic_ui .ui.table:first-child {\n margin-top: 0em;\n}\n\n.semantic_ui .ui.table:last-child {\n margin-bottom: 0em;\n}\n\n.semantic_ui .ui.table th,\n.semantic_ui .ui.table td {\n -webkit-transition: background 0.1s ease, color 0.1s ease;\n transition: background 0.1s ease, color 0.1s ease;\n}\n\n.semantic_ui .ui.table thead {\n box-shadow: none;\n}\n\n.semantic_ui .ui.table thead th {\n cursor: auto;\n background: #F9FAFB;\n text-align: inherit;\n color: rgba(0, 0, 0, 0.87);\n padding: 0.92857143em 0.78571429em;\n vertical-align: inherit;\n font-style: none;\n font-weight: bold;\n text-transform: none;\n border-bottom: 1px solid rgba(34, 36, 38, 0.1);\n border-left: none;\n}\n\n.semantic_ui .ui.table thead tr > th:first-child {\n border-left: none;\n}\n\n.semantic_ui .ui.table thead tr:first-child > th:first-child {\n border-radius: 0.28571429rem 0em 0em 0em;\n}\n\n.semantic_ui .ui.table thead tr:first-child > th:last-child {\n border-radius: 0em 0.28571429rem 0em 0em;\n}\n\n.semantic_ui .ui.table thead tr:first-child > th:only-child {\n border-radius: 0.28571429rem 0.28571429rem 0em 0em;\n}\n\n.semantic_ui .ui.table tfoot {\n box-shadow: none;\n}\n\n.semantic_ui .ui.table tfoot th {\n cursor: auto;\n border-top: 1px solid rgba(34, 36, 38, 0.15);\n background: #F9FAFB;\n text-align: inherit;\n color: rgba(0, 0, 0, 0.87);\n padding: 0.78571429em 0.78571429em;\n vertical-align: middle;\n font-style: normal;\n font-weight: normal;\n text-transform: none;\n}\n\n.semantic_ui .ui.table tfoot tr > th:first-child {\n border-left: none;\n}\n\n.semantic_ui .ui.table tfoot tr:first-child > th:first-child {\n border-radius: 0em 0em 0em 0.28571429rem;\n}\n\n.semantic_ui .ui.table tfoot tr:first-child > th:last-child {\n border-radius: 0em 0em 0.28571429rem 0em;\n}\n\n.semantic_ui .ui.table tfoot tr:first-child > th:only-child {\n border-radius: 0em 0em 0.28571429rem 0.28571429rem;\n}\n\n.semantic_ui .ui.table tr td {\n border-top: 1px solid rgba(34, 36, 38, 0.1);\n}\n\n.semantic_ui .ui.table tr:first-child td {\n border-top: none;\n}\n\n.semantic_ui .ui.table td {\n padding: 0.78571429em 0.78571429em;\n text-align: inherit;\n}\n\n.semantic_ui .ui.table > .icon {\n vertical-align: baseline;\n}\n\n.semantic_ui .ui.table > .icon:only-child {\n margin: 0em;\n}\n\n.semantic_ui .ui.table.segment {\n padding: 0em;\n}\n\n.semantic_ui .ui.table.segment:after {\n display: none;\n}\n\n.semantic_ui .ui.table.segment.stacked:after {\n display: block;\n}\n\n.semantic_ui .ui.table th .image,\n.semantic_ui .ui.table th .image img,\n.semantic_ui .ui.table td .image,\n.semantic_ui .ui.table td .image img {\n max-width: none;\n}\n\n.semantic_ui .ui.structured.table {\n border-collapse: collapse;\n}\n\n.semantic_ui .ui.structured.table thead th {\n border-left: none;\n border-right: none;\n}\n\n.semantic_ui .ui.structured.sortable.table thead th {\n border-left: 1px solid rgba(34, 36, 38, 0.15);\n border-right: 1px solid rgba(34, 36, 38, 0.15);\n}\n\n.semantic_ui .ui.structured.basic.table th {\n border-left: none;\n border-right: none;\n}\n\n.semantic_ui .ui.structured.celled.table tr th,\n.semantic_ui .ui.structured.celled.table tr td {\n border-left: 1px solid rgba(34, 36, 38, 0.1);\n border-right: 1px solid rgba(34, 36, 38, 0.1);\n}\n\n.semantic_ui .ui.definition.table thead:not(.full-width) th:first-child {\n pointer-events: none;\n background: transparent;\n font-weight: normal;\n color: rgba(0, 0, 0, 0.4);\n box-shadow: -1px -1px 0px 1px #FFFFFF;\n}\n\n.semantic_ui .ui.definition.table tfoot:not(.full-width) th:first-child {\n pointer-events: none;\n background: transparent;\n font-weight: rgba(0, 0, 0, 0.4);\n color: normal;\n box-shadow: 1px 1px 0px 1px #FFFFFF;\n}\n\n.semantic_ui .ui.celled.definition.table thead:not(.full-width) th:first-child {\n box-shadow: 0px -1px 0px 1px #FFFFFF;\n}\n\n.semantic_ui .ui.celled.definition.table tfoot:not(.full-width) th:first-child {\n box-shadow: 0px 1px 0px 1px #FFFFFF;\n}\n\n.semantic_ui .ui.definition.table tr td:first-child:not(.ignored),\n.semantic_ui .ui.definition.table tr td.definition {\n background: rgba(0, 0, 0, 0.03);\n font-weight: bold;\n color: rgba(0, 0, 0, 0.95);\n text-transform: '';\n box-shadow: '';\n text-align: '';\n font-size: 1em;\n padding-left: '';\n padding-right: '';\n}\n\n.semantic_ui .ui.definition.table thead:not(.full-width) th:nth-child(2) {\n border-left: 1px solid rgba(34, 36, 38, 0.15);\n}\n\n.semantic_ui .ui.definition.table tfoot:not(.full-width) th:nth-child(2) {\n border-left: 1px solid rgba(34, 36, 38, 0.15);\n}\n\n.semantic_ui .ui.definition.table td:nth-child(2) {\n border-left: 1px solid rgba(34, 36, 38, 0.15);\n}\n\n.semantic_ui .ui.table tr.positive,\n.semantic_ui .ui.table td.positive {\n box-shadow: 0px 0px 0px #A3C293 inset;\n}\n\n.semantic_ui .ui.table tr.positive,\n.semantic_ui .ui.table td.positive {\n background: #FCFFF5 !important;\n color: #2C662D !important;\n}\n\n.semantic_ui .ui.table tr.negative,\n.semantic_ui .ui.table td.negative {\n box-shadow: 0px 0px 0px #E0B4B4 inset;\n}\n\n.semantic_ui .ui.table tr.negative,\n.semantic_ui .ui.table td.negative {\n background: #FFF6F6 !important;\n color: #9F3A38 !important;\n}\n\n.semantic_ui .ui.table tr.error,\n.semantic_ui .ui.table td.error {\n box-shadow: 0px 0px 0px #E0B4B4 inset;\n}\n\n.semantic_ui .ui.table tr.error,\n.semantic_ui .ui.table td.error {\n background: #FFF6F6 !important;\n color: #9F3A38 !important;\n}\n\n.semantic_ui .ui.table tr.warning,\n.semantic_ui .ui.table td.warning {\n box-shadow: 0px 0px 0px #C9BA9B inset;\n}\n\n.semantic_ui .ui.table tr.warning,\n.semantic_ui .ui.table td.warning {\n background: #FFFAF3 !important;\n color: #573A08 !important;\n}\n\n.semantic_ui .ui.table tr.active,\n.semantic_ui .ui.table td.active {\n box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.87) inset;\n}\n\n.semantic_ui .ui.table tr.active,\n.semantic_ui .ui.table td.active {\n background: #E0E0E0 !important;\n color: rgba(0, 0, 0, 0.87) !important;\n}\n\n.semantic_ui .ui.table tr.disabled td,\n.semantic_ui .ui.table tr td.disabled,\n.semantic_ui .ui.table tr.disabled:hover,\n.semantic_ui .ui.table tr:hover td.disabled {\n pointer-events: none;\n color: rgba(40, 40, 40, 0.3);\n}\n\n@media only screen and (max-width: 991px) {\n .semantic_ui {\n /* Definition Table */\n }\n\n .semantic_ui .ui[class*=\"tablet stackable\"].table,\n .semantic_ui .ui[class*=\"tablet stackable\"].table tbody,\n .semantic_ui .ui[class*=\"tablet stackable\"].table tr,\n .semantic_ui .ui[class*=\"tablet stackable\"].table tr > th,\n .semantic_ui .ui[class*=\"tablet stackable\"].table tr > td {\n width: 100% !important;\n display: block !important;\n }\n\n .semantic_ui .ui[class*=\"tablet stackable\"].table {\n padding: 0em;\n }\n\n .semantic_ui .ui[class*=\"tablet stackable\"].table thead {\n display: block;\n }\n\n .semantic_ui .ui[class*=\"tablet stackable\"].table tfoot {\n display: block;\n }\n\n .semantic_ui .ui[class*=\"tablet stackable\"].table tr {\n padding-top: 1em;\n padding-bottom: 1em;\n box-shadow: 0px -1px 0px 0px rgba(0, 0, 0, 0.1) inset !important;\n }\n\n .semantic_ui .ui[class*=\"tablet stackable\"].table tr > th,\n .semantic_ui .ui[class*=\"tablet stackable\"].table tr > td {\n background: none;\n border: none !important;\n padding: 0.25em 0.75em;\n box-shadow: none !important;\n }\n\n .semantic_ui .ui.definition[class*=\"tablet stackable\"].table thead th:first-child {\n box-shadow: none !important;\n }\n}\n\n.semantic_ui .ui.table[class*=\"left aligned\"],\n.semantic_ui .ui.table [class*=\"left aligned\"] {\n text-align: left;\n}\n\n.semantic_ui .ui.table[class*=\"center aligned\"],\n.semantic_ui .ui.table [class*=\"center aligned\"] {\n text-align: center;\n}\n\n.semantic_ui .ui.table[class*=\"right aligned\"],\n.semantic_ui .ui.table [class*=\"right aligned\"] {\n text-align: right;\n}\n\n.semantic_ui .ui.table[class*=\"top aligned\"],\n.semantic_ui .ui.table [class*=\"top aligned\"] {\n vertical-align: top;\n}\n\n.semantic_ui .ui.table[class*=\"middle aligned\"],\n.semantic_ui .ui.table [class*=\"middle aligned\"] {\n vertical-align: middle;\n}\n\n.semantic_ui .ui.table[class*=\"bottom aligned\"],\n.semantic_ui .ui.table [class*=\"bottom aligned\"] {\n vertical-align: bottom;\n}\n\n.semantic_ui .ui.fixed.table {\n table-layout: fixed;\n}\n\n.semantic_ui .ui.fixed.table th,\n.semantic_ui .ui.fixed.table td {\n overflow: hidden;\n text-overflow: ellipsis;\n}\n\n.semantic_ui .ui.selectable.table tbody tr:hover,\n.semantic_ui .ui.table tbody tr td.selectable:hover {\n background: rgba(0, 0, 0, 0.05) !important;\n color: rgba(0, 0, 0, 0.95) !important;\n}\n\n.semantic_ui .ui.selectable.inverted.table tbody tr:hover,\n.semantic_ui .ui.inverted.table tbody tr td.selectable:hover {\n background: rgba(255, 255, 255, 0.08) !important;\n color: #ffffff !important;\n}\n\n.semantic_ui .ui.table tbody tr td.selectable {\n padding: 0em;\n}\n\n.semantic_ui .ui.table tbody tr td.selectable > a:not(.ui) {\n display: block;\n color: inherit;\n padding: 0.78571429em 0.78571429em;\n}\n\n.semantic_ui .ui.selectable.table tr.error:hover,\n.semantic_ui .ui.table tr td.selectable.error:hover,\n.semantic_ui .ui.selectable.table tr:hover td.error {\n background: #ffe7e7 !important;\n color: #943634 !important;\n}\n\n.semantic_ui .ui.selectable.table tr.warning:hover,\n.semantic_ui .ui.table tr td.selectable.warning:hover,\n.semantic_ui .ui.selectable.table tr:hover td.warning {\n background: #fff4e4 !important;\n color: #493107 !important;\n}\n\n.semantic_ui .ui.selectable.table tr.active:hover,\n.semantic_ui .ui.table tr td.selectable.active:hover,\n.semantic_ui .ui.selectable.table tr:hover td.active {\n background: #E0E0E0 !important;\n color: rgba(0, 0, 0, 0.87) !important;\n}\n\n.semantic_ui .ui.selectable.table tr.positive:hover,\n.semantic_ui .ui.table tr td.selectable.positive:hover,\n.semantic_ui .ui.selectable.table tr:hover td.positive {\n background: #f7ffe6 !important;\n color: #275b28 !important;\n}\n\n.semantic_ui .ui.selectable.table tr.negative:hover,\n.semantic_ui .ui.table tr td.selectable.negative:hover,\n.semantic_ui .ui.selectable.table tr:hover td.negative {\n background: #ffe7e7 !important;\n color: #943634 !important;\n}\n\n.semantic_ui .ui.attached.table {\n top: 0px;\n bottom: 0px;\n border-radius: 0px;\n margin: 0em -1px;\n width: calc(100% + 2px);\n max-width: calc(100% + 2px);\n box-shadow: none;\n border: 1px solid #D4D4D5;\n}\n\n.semantic_ui .ui.attached + .ui.attached.table:not(.top) {\n border-top: none;\n}\n\n.semantic_ui .ui[class*=\"top attached\"].table {\n bottom: 0px;\n margin-bottom: 0em;\n top: 0px;\n margin-top: 1em;\n border-radius: 0.28571429rem 0.28571429rem 0em 0em;\n}\n\n.semantic_ui .ui.table[class*=\"top attached\"]:first-child {\n margin-top: 0em;\n}\n\n.semantic_ui .ui[class*=\"bottom attached\"].table {\n bottom: 0px;\n margin-top: 0em;\n top: 0px;\n margin-bottom: 1em;\n box-shadow: none, none;\n border-radius: 0em 0em 0.28571429rem 0.28571429rem;\n}\n\n.semantic_ui .ui[class*=\"bottom attached\"].table:last-child {\n margin-bottom: 0em;\n}\n\n.semantic_ui .ui.striped.table > tr:nth-child(2n),\n.semantic_ui .ui.striped.table tbody tr:nth-child(2n) {\n background-color: rgba(0, 0, 50, 0.02);\n}\n\n.semantic_ui .ui.inverted.striped.table > tr:nth-child(2n),\n.semantic_ui .ui.inverted.striped.table tbody tr:nth-child(2n) {\n background-color: rgba(255, 255, 255, 0.05);\n}\n\n.semantic_ui .ui.striped.selectable.selectable.selectable.table tbody tr.active:hover {\n background: #EFEFEF !important;\n color: rgba(0, 0, 0, 0.95) !important;\n}\n\n.semantic_ui .ui.table[class*=\"single line\"],\n.semantic_ui .ui.table [class*=\"single line\"] {\n white-space: nowrap;\n}\n\n.semantic_ui .ui.table[class*=\"single line\"],\n.semantic_ui .ui.table [class*=\"single line\"] {\n white-space: nowrap;\n}\n\n.semantic_ui .ui.one.column.table td {\n width: 100%;\n}\n\n.semantic_ui .ui.two.column.table td {\n width: 50%;\n}\n\n.semantic_ui .ui.three.column.table td {\n width: 33.33333333%;\n}\n\n.semantic_ui .ui.four.column.table td {\n width: 25%;\n}\n\n.semantic_ui .ui.five.column.table td {\n width: 20%;\n}\n\n.semantic_ui .ui.six.column.table td {\n width: 16.66666667%;\n}\n\n.semantic_ui .ui.seven.column.table td {\n width: 14.28571429%;\n}\n\n.semantic_ui .ui.eight.column.table td {\n width: 12.5%;\n}\n\n.semantic_ui .ui.nine.column.table td {\n width: 11.11111111%;\n}\n\n.semantic_ui .ui.ten.column.table td {\n width: 10%;\n}\n\n.semantic_ui .ui.eleven.column.table td {\n width: 9.09090909%;\n}\n\n.semantic_ui .ui.twelve.column.table td {\n width: 8.33333333%;\n}\n\n.semantic_ui .ui.thirteen.column.table td {\n width: 7.69230769%;\n}\n\n.semantic_ui .ui.fourteen.column.table td {\n width: 7.14285714%;\n}\n\n.semantic_ui .ui.fifteen.column.table td {\n width: 6.66666667%;\n}\n\n.semantic_ui .ui.sixteen.column.table td {\n width: 6.25%;\n}\n\n.semantic_ui .ui.table th.one.wide,\n.semantic_ui .ui.table td.one.wide {\n width: 6.25%;\n}\n\n.semantic_ui .ui.table th.two.wide,\n.semantic_ui .ui.table td.two.wide {\n width: 12.5%;\n}\n\n.semantic_ui .ui.table th.three.wide,\n.semantic_ui .ui.table td.three.wide {\n width: 18.75%;\n}\n\n.semantic_ui .ui.table th.four.wide,\n.semantic_ui .ui.table td.four.wide {\n width: 25%;\n}\n\n.semantic_ui .ui.table th.five.wide,\n.semantic_ui .ui.table td.five.wide {\n width: 31.25%;\n}\n\n.semantic_ui .ui.table th.six.wide,\n.semantic_ui .ui.table td.six.wide {\n width: 37.5%;\n}\n\n.semantic_ui .ui.table th.seven.wide,\n.semantic_ui .ui.table td.seven.wide {\n width: 43.75%;\n}\n\n.semantic_ui .ui.table th.eight.wide,\n.semantic_ui .ui.table td.eight.wide {\n width: 50%;\n}\n\n.semantic_ui .ui.table th.nine.wide,\n.semantic_ui .ui.table td.nine.wide {\n width: 56.25%;\n}\n\n.semantic_ui .ui.table th.ten.wide,\n.semantic_ui .ui.table td.ten.wide {\n width: 62.5%;\n}\n\n.semantic_ui .ui.table th.eleven.wide,\n.semantic_ui .ui.table td.eleven.wide {\n width: 68.75%;\n}\n\n.semantic_ui .ui.table th.twelve.wide,\n.semantic_ui .ui.table td.twelve.wide {\n width: 75%;\n}\n\n.semantic_ui .ui.table th.thirteen.wide,\n.semantic_ui .ui.table td.thirteen.wide {\n width: 81.25%;\n}\n\n.semantic_ui .ui.table th.fourteen.wide,\n.semantic_ui .ui.table td.fourteen.wide {\n width: 87.5%;\n}\n\n.semantic_ui .ui.table th.fifteen.wide,\n.semantic_ui .ui.table td.fifteen.wide {\n width: 93.75%;\n}\n\n.semantic_ui .ui.table th.sixteen.wide,\n.semantic_ui .ui.table td.sixteen.wide {\n width: 100%;\n}\n\n.semantic_ui .ui.sortable.table thead th {\n cursor: pointer;\n white-space: nowrap;\n border-left: 1px solid rgba(34, 36, 38, 0.15);\n color: rgba(0, 0, 0, 0.87);\n}\n\n.semantic_ui .ui.sortable.table thead th:first-child {\n border-left: none;\n}\n\n.semantic_ui .ui.sortable.table thead th.sorted,\n.semantic_ui .ui.sortable.table thead th.sorted:hover {\n -webkit-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n user-select: none;\n}\n\n.semantic_ui .ui.sortable.table thead th:after {\n display: none;\n font-style: normal;\n font-weight: normal;\n text-decoration: inherit;\n content: '';\n height: 1em;\n width: auto;\n opacity: 0.8;\n margin: 0em 0em 0em 0.5em;\n font-family: 'Icons';\n}\n\n.semantic_ui .ui.sortable.table thead th.ascending:after {\n content: '\\f0d8';\n}\n\n.semantic_ui .ui.sortable.table thead th.descending:after {\n content: '\\f0d7';\n}\n\n.semantic_ui .ui.sortable.table th.disabled:hover {\n cursor: auto;\n color: rgba(40, 40, 40, 0.3);\n}\n\n.semantic_ui .ui.sortable.table thead th:hover {\n background: rgba(0, 0, 0, 0.05);\n color: rgba(0, 0, 0, 0.8);\n}\n\n.semantic_ui .ui.sortable.table thead th.sorted {\n background: rgba(0, 0, 0, 0.05);\n color: rgba(0, 0, 0, 0.95);\n}\n\n.semantic_ui .ui.sortable.table thead th.sorted:after {\n display: inline-block;\n}\n\n.semantic_ui .ui.sortable.table thead th.sorted:hover {\n background: rgba(0, 0, 0, 0.05);\n color: rgba(0, 0, 0, 0.95);\n}\n\n.semantic_ui .ui.inverted.sortable.table thead th.sorted {\n background: rgba(255, 255, 255, 0.15) -webkit-linear-gradient(transparent, rgba(0, 0, 0, 0.05));\n background: rgba(255, 255, 255, 0.15) linear-gradient(transparent, rgba(0, 0, 0, 0.05));\n color: #ffffff;\n}\n\n.semantic_ui .ui.inverted.sortable.table thead th:hover {\n background: rgba(255, 255, 255, 0.08) -webkit-linear-gradient(transparent, rgba(0, 0, 0, 0.05));\n background: rgba(255, 255, 255, 0.08) linear-gradient(transparent, rgba(0, 0, 0, 0.05));\n color: #ffffff;\n}\n\n.semantic_ui .ui.inverted.sortable.table thead th {\n border-left-color: transparent;\n border-right-color: transparent;\n}\n\n.semantic_ui .ui.collapsing.table {\n width: auto;\n}\n\n.semantic_ui .ui.basic.table {\n background: transparent;\n border: 1px solid rgba(34, 36, 38, 0.15);\n box-shadow: none;\n}\n\n.semantic_ui .ui.basic.table thead,\n.semantic_ui .ui.basic.table tfoot {\n box-shadow: none;\n}\n\n.semantic_ui .ui.basic.table th {\n background: transparent;\n border-left: none;\n}\n\n.semantic_ui .ui.basic.table tbody tr {\n border-bottom: 1px solid rgba(0, 0, 0, 0.1);\n}\n\n.semantic_ui .ui.basic.table td {\n background: transparent;\n}\n\n.semantic_ui .ui.basic.striped.table tbody tr:nth-child(2n) {\n background-color: rgba(0, 0, 0, 0.05) !important;\n}\n\n.semantic_ui .ui[class*=\"very basic\"].table {\n border: none;\n}\n\n.semantic_ui .ui[class*=\"very basic\"].table:not(.sortable):not(.striped) th,\n.semantic_ui .ui[class*=\"very basic\"].table:not(.sortable):not(.striped) td {\n padding: '';\n}\n\n.semantic_ui .ui[class*=\"very basic\"].table:not(.sortable):not(.striped) th:first-child,\n.semantic_ui .ui[class*=\"very basic\"].table:not(.sortable):not(.striped) td:first-child {\n padding-left: 0em;\n}\n\n.semantic_ui .ui[class*=\"very basic\"].table:not(.sortable):not(.striped) th:last-child,\n.semantic_ui .ui[class*=\"very basic\"].table:not(.sortable):not(.striped) td:last-child {\n padding-right: 0em;\n}\n\n.semantic_ui .ui[class*=\"very basic\"].table:not(.sortable):not(.striped) thead tr:first-child th {\n padding-top: 0em;\n}\n\n.semantic_ui .ui.celled.table tr th,\n.semantic_ui .ui.celled.table tr td {\n border-left: 1px solid rgba(34, 36, 38, 0.1);\n}\n\n.semantic_ui .ui.celled.table tr th:first-child,\n.semantic_ui .ui.celled.table tr td:first-child {\n border-left: none;\n}\n\n.semantic_ui .ui.padded.table th {\n padding-left: 1em;\n padding-right: 1em;\n}\n\n.semantic_ui .ui.padded.table th,\n.semantic_ui .ui.padded.table td {\n padding: 1em 1em;\n}\n\n.semantic_ui .ui[class*=\"very padded\"].table th {\n padding-left: 1.5em;\n padding-right: 1.5em;\n}\n\n.semantic_ui .ui[class*=\"very padded\"].table td {\n padding: 1.5em 1.5em;\n}\n\n.semantic_ui .ui.compact.table th {\n padding-left: 0.7em;\n padding-right: 0.7em;\n}\n\n.semantic_ui .ui.compact.table td {\n padding: 0.5em 0.7em;\n}\n\n.semantic_ui .ui[class*=\"very compact\"].table th {\n padding-left: 0.6em;\n padding-right: 0.6em;\n}\n\n.semantic_ui .ui[class*=\"very compact\"].table td {\n padding: 0.4em 0.6em;\n}\n\n.semantic_ui .ui.small.table {\n font-size: 0.9em;\n}\n\n.semantic_ui .ui.table {\n font-size: 1em;\n}\n\n.semantic_ui .ui.large.table {\n font-size: 1.1em;\n}\n\n.colored_table table.foo-table.inverted {\n /*-------------------\n Colors\n --------------------*/\n /* Red */\n /* Orange */\n /* Yellow */\n /* Olive */\n /* Green */\n /* Teal */\n /* Blue */\n /* Violet */\n /* Purple */\n /* Pink */\n /* Brown */\n /* Grey */\n /* Black */\n /*--------------\n Inverted\n ---------------*/\n /* Text Color */\n /* Definition */\n /*******************************\n Site Overrides\n *******************************/\n}\n\n.colored_table table.foo-table.inverted.table a {\n color: rgba(255, 255, 255, 0.7);\n}\n\n.colored_table table.foo-table.inverted.table a.checkbox {\n color: black;\n}\n\n.colored_table table.foo-table.inverted.red.table {\n background-color: #DB2828 !important;\n color: #FFFFFF !important;\n}\n\n.colored_table table.foo-table.inverted.orange.table {\n background-color: #F2711C !important;\n color: #FFFFFF !important;\n}\n\n.colored_table table.foo-table.inverted.yellow.table {\n background-color: #FBBD08 !important;\n color: #FFFFFF !important;\n}\n\n.colored_table table.foo-table.inverted.olive.table {\n background-color: #B5CC18 !important;\n color: #FFFFFF !important;\n}\n\n.colored_table table.foo-table.inverted.green.table {\n background-color: #21BA45 !important;\n color: #FFFFFF !important;\n}\n\n.colored_table table.foo-table.inverted.teal.table {\n background-color: #00B5AD !important;\n color: #FFFFFF !important;\n}\n\n.colored_table table.foo-table.inverted.blue.table {\n background-color: #2185D0 !important;\n color: #FFFFFF !important;\n}\n\n.colored_table table.foo-table.inverted.violet.table {\n background-color: #6435C9 !important;\n color: #FFFFFF !important;\n}\n\n.colored_table table.foo-table.inverted.purple.table {\n background-color: #A333C8 !important;\n color: #FFFFFF !important;\n}\n\n.colored_table table.foo-table.inverted.pink.table {\n background-color: #E03997 !important;\n color: #FFFFFF !important;\n}\n\n.colored_table table.foo-table.inverted.brown.table {\n background-color: #A5673F !important;\n color: #FFFFFF !important;\n}\n\n.colored_table table.foo-table.inverted.grey.table {\n background-color: #767676 !important;\n color: #FFFFFF !important;\n}\n\n.colored_table table.foo-table.inverted.black.table {\n background-color: #1B1C1D !important;\n color: #FFFFFF !important;\n}\n\n.colored_table table.foo-table.inverted.table {\n background: #333333;\n color: rgba(255, 255, 255, 0.9);\n border: none;\n}\n\n.colored_table table.foo-table.inverted.table th {\n background-color: rgba(0, 0, 0, 0.15);\n border-color: rgba(255, 255, 255, 0.1) !important;\n color: rgba(255, 255, 255, 0.9) !important;\n}\n\n.colored_table table.foo-table.inverted.table tr td {\n border-color: rgba(255, 255, 255, 0.1) !important;\n}\n\n.colored_table table.foo-table.inverted.table tr.disabled td,\n.colored_table table.foo-table.inverted.table tr td.disabled,\n.colored_table table.foo-table.inverted.table tr.disabled:hover td,\n.colored_table table.foo-table.inverted.table tr:hover td.disabled {\n pointer-events: none;\n color: rgba(225, 225, 225, 0.3);\n}\n\n.colored_table table.foo-table.inverted.definition.table tfoot:not(.full-width) th:first-child,\n.colored_table table.foo-table.inverted.definition.table thead:not(.full-width) th:first-child {\n background: #FFFFFF;\n}\n\n.colored_table table.foo-table.inverted.definition.table tr td:first-child {\n background: rgba(255, 255, 255, 0.02);\n color: #ffffff;\n}\n\n.colored_table table.foo-table.inverted.table-striped tbody tr:nth-of-type(odd) {\n background-color: rgba(255, 255, 255, 0.05);\n}\n\n.colored_table table.foo-table.inverted .pagination > .active > a,\n.colored_table table.foo-table.inverted .pagination > .active > a:focus,\n.colored_table table.foo-table.inverted .pagination > .active > a:hover,\n.colored_table table.foo-table.inverted .pagination > .active > span,\n.colored_table table.foo-table.inverted .pagination > .active > span:focus,\n.colored_table table.foo-table.inverted .pagination > .active > span:hover {\n background-color: rgba(0, 0, 0, 0.15);\n border-color: rgba(255, 255, 255, 0.1) !important;\n color: rgba(255, 255, 255, 0.9) !important;\n -webkit-box-shadow: inset 0 0 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);\n box-shadow: inset 0 0 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);\n}\n\n.colored_table table.foo-table.inverted .pagination a.footable-page-link {\n color: rgba(0, 0, 0, 0.5);\n}\n\n.colored_table table.foo-table.inverted .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle) {\n background-color: rgba(255, 255, 255, 0.1);\n border-color: rgba(255, 255, 255, 0.1) !important;\n color: rgba(255, 255, 255, 0.9) !important;\n}\n\n\n\n\n// WEBPACK FOOTER //\n// ./_public.scss","@charset \"UTF-8\";\n\n@font-face {\n font-family: \"ninja-tables-fontawesome\";\n src:url(\"../../fonts/ninja-tables-fontawesome.eot\");\n src:url(\"../../fonts/ninja-tables-fontawesome.eot?#iefix\") format(\"embedded-opentype\"),\n url(\"../../fonts/ninja-tables-fontawesome.woff\") format(\"woff\"),\n url(\"../../fonts/ninja-tables-fontawesome.ttf\") format(\"truetype\"),\n url(\"../../fonts/ninja-tables-fontawesome.svg#ninja-tables-fontawesome\") format(\"svg\");\n font-weight: normal;\n font-style: normal;\n\n}\n\n[data-icon]:before {\n font-family: \"ninja-tables-fontawesome\" !important;\n content: attr(data-icon);\n font-style: normal !important;\n font-weight: normal !important;\n font-variant: normal !important;\n text-transform: none !important;\n speak: none;\n line-height: 1;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n}\n\n[class^=\"fooicon-\"]:before,\n[class*=\" fooicon-\"]:before {\n font-family: \"ninja-tables-fontawesome\" !important;\n font-style: normal !important;\n font-weight: normal !important;\n font-variant: normal !important;\n text-transform: none !important;\n speak: none;\n line-height: 1;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n}\n\n.fooicon-search:before {\n content: \"\\f002\";\n}\n.fooicon-sort-desc:before {\n content: \"\\f161\";\n}\n.fooicon-sort-asc:before {\n content: \"\\f160\";\n}\n.fooicon-sort:before {\n content: \"\\f0dc\";\n}\n.fooicon-minus:before {\n content: \"\\f068\";\n}\n.fooicon-plus:before {\n content: \"\\f067\";\n}\n.fooicon-circle-o-notch:before {\n content: \"\\e000\";\n}\n.fooicon-remove-1:before {\n content: \"\\f00d\";\n}\n.fooicon-loader-alt:before {\n content: \"\\f01\";\n}\n.fooicon-refresh:before {\n content: \"\\e001\";\n}\n.fooicon-loader:before {\n content: \"\\f01e\";\n}\n\n\n// WEBPACK FOOTER //\n// ./src/public/css/src/public/css/_foo_icons.scss",".foo-table span.label.label-default {\n display: none;\n visibility: hidden;\n}\n\n.foo-table table.footable-details tr th {\n white-space: initial;\n overflow: visible !important;\n text-overflow: unset !important;\n}\n\n.foo-table tr.footable-filtering th {\n overflow: visible !important;\n}\n\n.foo-table .pagination {\n border: none;\n padding: 0px;\n font-weight: 500;\n}\n\n.foo-table button.btn.btn-default.dropdown-toggle {\n right: 0px;\n left: 0px;\n}\n\n.foo-table li.dropdown-header {\n padding-left: 20px;\n padding-bottom: 5px;\n color: #333333;\n}\n\n.foo-table ul.dropdown-menu.dropdown-menu-right li:last-child a {\n border-bottom: 0px !important;\n box-shadow: none;\n}\n\n.foo-table ul.dropdown-menu.dropdown-menu-right li a:hover {\n -webkit-box-shadow: inset 0 0 0 transparent, 0 1px 0 black;\n box-shadow: inset 0 0 0 transparent, 0 1px 0 black;\n}\n\n.foo-table span.footable-toggle {\n cursor: pointer;\n}\n\n.footable_parent {\n overflow-x: auto;\n}\n\n@font-face {\n font-family: \"ninja-tables-fontawesome\";\n src: url(\"../../fonts/ninja-tables-fontawesome.eot\");\n src: url(\"../../fonts/ninja-tables-fontawesome.eot?#iefix\") format(\"embedded-opentype\"), url(\"../../fonts/ninja-tables-fontawesome.woff\") format(\"woff\"), url(\"../../fonts/ninja-tables-fontawesome.ttf\") format(\"truetype\"), url(\"../../fonts/ninja-tables-fontawesome.svg#ninja-tables-fontawesome\") format(\"svg\");\n font-weight: normal;\n font-style: normal;\n}\n\n[data-icon]:before {\n font-family: \"ninja-tables-fontawesome\" !important;\n content: attr(data-icon);\n font-style: normal !important;\n font-weight: normal !important;\n font-variant: normal !important;\n text-transform: none !important;\n speak: none;\n line-height: 1;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n}\n\n[class^=\"fooicon-\"]:before,\n[class*=\" fooicon-\"]:before {\n font-family: \"ninja-tables-fontawesome\" !important;\n font-style: normal !important;\n font-weight: normal !important;\n font-variant: normal !important;\n text-transform: none !important;\n speak: none;\n line-height: 1;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n}\n\n.fooicon-search:before {\n content: \"\\f002\";\n}\n\n.fooicon-sort-desc:before {\n content: \"\\f161\";\n}\n\n.fooicon-sort-asc:before {\n content: \"\\f160\";\n}\n\n.fooicon-sort:before {\n content: \"\\f0dc\";\n}\n\n.fooicon-minus:before {\n content: \"\\f068\";\n}\n\n.fooicon-plus:before {\n content: \"\\f067\";\n}\n\n.fooicon-circle-o-notch:before {\n content: \"\\e000\";\n}\n\n.fooicon-remove-1:before {\n content: \"\\f00d\";\n}\n\n.fooicon-loader-alt:before {\n content: \"\\f01\";\n}\n\n.fooicon-refresh:before {\n content: \"\\e001\";\n}\n\n.fooicon-loader:before {\n content: \"\\f01e\";\n}\n\n.bootstrap3 table {\n background-color: transparent;\n}\n\n.bootstrap3 caption {\n padding-top: 8px;\n padding-bottom: 8px;\n color: #777;\n text-align: left;\n}\n\n.bootstrap3 th {\n text-align: left;\n}\n\n.bootstrap3 .table {\n width: 100%;\n max-width: 100%;\n margin-bottom: 20px;\n}\n\n.bootstrap3 .table > thead > tr > th,\n.bootstrap3 .table > tbody > tr > th,\n.bootstrap3 .table > tfoot > tr > th,\n.bootstrap3 .table > thead > tr > td,\n.bootstrap3 .table > tbody > tr > td,\n.bootstrap3 .table > tfoot > tr > td {\n padding: 8px;\n line-height: 1.42857143;\n vertical-align: top;\n border-top: 1px solid #ddd;\n}\n\n.bootstrap3 .table > thead > tr > th {\n vertical-align: bottom;\n border-bottom: 2px solid #ddd;\n}\n\n.bootstrap3 .table > caption + thead > tr:first-child > th,\n.bootstrap3 .table > colgroup + thead > tr:first-child > th,\n.bootstrap3 .table > thead:first-child > tr:first-child > th,\n.bootstrap3 .table > caption + thead > tr:first-child > td,\n.bootstrap3 .table > colgroup + thead > tr:first-child > td,\n.bootstrap3 .table > thead:first-child > tr:first-child > td {\n border-top: 0;\n}\n\n.bootstrap3 .table > tbody + tbody {\n border-top: 2px solid #ddd;\n}\n\n.bootstrap3 .table .table {\n background-color: #fff;\n}\n\n.bootstrap3 .table-condensed > thead > tr > th,\n.bootstrap3 .table-condensed > tbody > tr > th,\n.bootstrap3 .table-condensed > tfoot > tr > th,\n.bootstrap3 .table-condensed > thead > tr > td,\n.bootstrap3 .table-condensed > tbody > tr > td,\n.bootstrap3 .table-condensed > tfoot > tr > td {\n padding: 5px;\n}\n\n.bootstrap3 .table-bordered {\n border: 1px solid #ddd;\n}\n\n.bootstrap3 .table-bordered > thead > tr > th,\n.bootstrap3 .table-bordered > tbody > tr > th,\n.bootstrap3 .table-bordered > tfoot > tr > th,\n.bootstrap3 .table-bordered > thead > tr > td,\n.bootstrap3 .table-bordered > tbody > tr > td,\n.bootstrap3 .table-bordered > tfoot > tr > td {\n border: 1px solid #ddd;\n}\n\n.bootstrap3 .table-bordered > thead > tr > th,\n.bootstrap3 .table-bordered > thead > tr > td {\n border-bottom-width: 2px;\n}\n\n.bootstrap3 .table-striped > tbody > tr:nth-of-type(odd) {\n background-color: #f9f9f9;\n}\n\n.bootstrap3 .table-hover > tbody > tr:hover {\n background-color: #f5f5f5;\n}\n\n.bootstrap3 table col[class*=\"col-\"] {\n position: static;\n display: table-column;\n float: none;\n}\n\n.bootstrap3 table td[class*=\"col-\"],\n.bootstrap3 table th[class*=\"col-\"] {\n position: static;\n display: table-cell;\n float: none;\n}\n\n.bootstrap3 .table > thead > tr > td.active,\n.bootstrap3 .table > tbody > tr > td.active,\n.bootstrap3 .table > tfoot > tr > td.active,\n.bootstrap3 .table > thead > tr > th.active,\n.bootstrap3 .table > tbody > tr > th.active,\n.bootstrap3 .table > tfoot > tr > th.active,\n.bootstrap3 .table > thead > tr.active > td,\n.bootstrap3 .table > tbody > tr.active > td,\n.bootstrap3 .table > tfoot > tr.active > td,\n.bootstrap3 .table > thead > tr.active > th,\n.bootstrap3 .table > tbody > tr.active > th,\n.bootstrap3 .table > tfoot > tr.active > th {\n background-color: #f5f5f5;\n}\n\n.bootstrap3 .table-hover > tbody > tr > td.active:hover,\n.bootstrap3 .table-hover > tbody > tr > th.active:hover,\n.bootstrap3 .table-hover > tbody > tr.active:hover > td,\n.bootstrap3 .table-hover > tbody > tr:hover > .active,\n.bootstrap3 .table-hover > tbody > tr.active:hover > th {\n background-color: #e8e8e8;\n}\n\n.bootstrap3 .table > thead > tr > td.success,\n.bootstrap3 .table > tbody > tr > td.success,\n.bootstrap3 .table > tfoot > tr > td.success,\n.bootstrap3 .table > thead > tr > th.success,\n.bootstrap3 .table > tbody > tr > th.success,\n.bootstrap3 .table > tfoot > tr > th.success,\n.bootstrap3 .table > thead > tr.success > td,\n.bootstrap3 .table > tbody > tr.success > td,\n.bootstrap3 .table > tfoot > tr.success > td,\n.bootstrap3 .table > thead > tr.success > th,\n.bootstrap3 .table > tbody > tr.success > th,\n.bootstrap3 .table > tfoot > tr.success > th {\n background-color: #dff0d8;\n}\n\n.bootstrap3 .table-hover > tbody > tr > td.success:hover,\n.bootstrap3 .table-hover > tbody > tr > th.success:hover,\n.bootstrap3 .table-hover > tbody > tr.success:hover > td,\n.bootstrap3 .table-hover > tbody > tr:hover > .success,\n.bootstrap3 .table-hover > tbody > tr.success:hover > th {\n background-color: #d0e9c6;\n}\n\n.bootstrap3 .table > thead > tr > td.info,\n.bootstrap3 .table > tbody > tr > td.info,\n.bootstrap3 .table > tfoot > tr > td.info,\n.bootstrap3 .table > thead > tr > th.info,\n.bootstrap3 .table > tbody > tr > th.info,\n.bootstrap3 .table > tfoot > tr > th.info,\n.bootstrap3 .table > thead > tr.info > td,\n.bootstrap3 .table > tbody > tr.info > td,\n.bootstrap3 .table > tfoot > tr.info > td,\n.bootstrap3 .table > thead > tr.info > th,\n.bootstrap3 .table > tbody > tr.info > th,\n.bootstrap3 .table > tfoot > tr.info > th {\n background-color: #d9edf7;\n}\n\n.bootstrap3 .table-hover > tbody > tr > td.info:hover,\n.bootstrap3 .table-hover > tbody > tr > th.info:hover,\n.bootstrap3 .table-hover > tbody > tr.info:hover > td,\n.bootstrap3 .table-hover > tbody > tr:hover > .info,\n.bootstrap3 .table-hover > tbody > tr.info:hover > th {\n background-color: #c4e3f3;\n}\n\n.bootstrap3 .table > thead > tr > td.warning,\n.bootstrap3 .table > tbody > tr > td.warning,\n.bootstrap3 .table > tfoot > tr > td.warning,\n.bootstrap3 .table > thead > tr > th.warning,\n.bootstrap3 .table > tbody > tr > th.warning,\n.bootstrap3 .table > tfoot > tr > th.warning,\n.bootstrap3 .table > thead > tr.warning > td,\n.bootstrap3 .table > tbody > tr.warning > td,\n.bootstrap3 .table > tfoot > tr.warning > td,\n.bootstrap3 .table > thead > tr.warning > th,\n.bootstrap3 .table > tbody > tr.warning > th,\n.bootstrap3 .table > tfoot > tr.warning > th {\n background-color: #fcf8e3;\n}\n\n.bootstrap3 .table-hover > tbody > tr > td.warning:hover,\n.bootstrap3 .table-hover > tbody > tr > th.warning:hover,\n.bootstrap3 .table-hover > tbody > tr.warning:hover > td,\n.bootstrap3 .table-hover > tbody > tr:hover > .warning,\n.bootstrap3 .table-hover > tbody > tr.warning:hover > th {\n background-color: #faf2cc;\n}\n\n.bootstrap3 .table > thead > tr > td.danger,\n.bootstrap3 .table > tbody > tr > td.danger,\n.bootstrap3 .table > tfoot > tr > td.danger,\n.bootstrap3 .table > thead > tr > th.danger,\n.bootstrap3 .table > tbody > tr > th.danger,\n.bootstrap3 .table > tfoot > tr > th.danger,\n.bootstrap3 .table > thead > tr.danger > td,\n.bootstrap3 .table > tbody > tr.danger > td,\n.bootstrap3 .table > tfoot > tr.danger > td,\n.bootstrap3 .table > thead > tr.danger > th,\n.bootstrap3 .table > tbody > tr.danger > th,\n.bootstrap3 .table > tfoot > tr.danger > th {\n background-color: #f2dede;\n}\n\n.bootstrap3 .table-hover > tbody > tr > td.danger:hover,\n.bootstrap3 .table-hover > tbody > tr > th.danger:hover,\n.bootstrap3 .table-hover > tbody > tr.danger:hover > td,\n.bootstrap3 .table-hover > tbody > tr:hover > .danger,\n.bootstrap3 .table-hover > tbody > tr.danger:hover > th {\n background-color: #ebcccc;\n}\n\n.bootstrap3 .table-responsive {\n min-height: .01%;\n overflow-x: auto;\n}\n\n@media screen and (max-width: 767px) {\n .bootstrap3 .table-responsive {\n width: 100%;\n margin-bottom: 15px;\n overflow-y: hidden;\n -ms-overflow-style: -ms-autohiding-scrollbar;\n border: 1px solid #ddd;\n }\n .bootstrap3 .table-responsive > .table {\n margin-bottom: 0;\n }\n .bootstrap3 .table-responsive > .table > thead > tr > th,\n .bootstrap3 .table-responsive > .table > tbody > tr > th,\n .bootstrap3 .table-responsive > .table > tfoot > tr > th,\n .bootstrap3 .table-responsive > .table > thead > tr > td,\n .bootstrap3 .table-responsive > .table > tbody > tr > td,\n .bootstrap3 .table-responsive > .table > tfoot > tr > td {\n white-space: nowrap;\n }\n .bootstrap3 .table-responsive > .table-bordered {\n border: 0;\n }\n .bootstrap3 .table-responsive > .table-bordered > thead > tr > th:first-child,\n .bootstrap3 .table-responsive > .table-bordered > tbody > tr > th:first-child,\n .bootstrap3 .table-responsive > .table-bordered > tfoot > tr > th:first-child,\n .bootstrap3 .table-responsive > .table-bordered > thead > tr > td:first-child,\n .bootstrap3 .table-responsive > .table-bordered > tbody > tr > td:first-child,\n .bootstrap3 .table-responsive > .table-bordered > tfoot > tr > td:first-child {\n border-left: 0;\n }\n .bootstrap3 .table-responsive > .table-bordered > thead > tr > th:last-child,\n .bootstrap3 .table-responsive > .table-bordered > tbody > tr > th:last-child,\n .bootstrap3 .table-responsive > .table-bordered > tfoot > tr > th:last-child,\n .bootstrap3 .table-responsive > .table-bordered > thead > tr > td:last-child,\n .bootstrap3 .table-responsive > .table-bordered > tbody > tr > td:last-child,\n .bootstrap3 .table-responsive > .table-bordered > tfoot > tr > td:last-child {\n border-right: 0;\n }\n .bootstrap3 .table-responsive > .table-bordered > tbody > tr:last-child > th,\n .bootstrap3 .table-responsive > .table-bordered > tfoot > tr:last-child > th,\n .bootstrap3 .table-responsive > .table-bordered > tbody > tr:last-child > td,\n .bootstrap3 .table-responsive > .table-bordered > tfoot > tr:last-child > td {\n border-bottom: 0;\n }\n}\n\n.bootstrap4 .table {\n width: 100%;\n max-width: 100%;\n margin-bottom: 1rem;\n background-color: transparent;\n}\n\n.bootstrap4 .table th,\n.bootstrap4 .table td {\n padding: 0.75rem;\n vertical-align: top;\n border-top: 1px solid #e9ecef;\n}\n\n.bootstrap4 .table thead th {\n vertical-align: bottom;\n border-bottom: 2px solid #e9ecef;\n}\n\n.bootstrap4 .table tbody + tbody {\n border-top: 2px solid #e9ecef;\n}\n\n.bootstrap4 .table .table {\n background-color: #fff;\n color: black;\n}\n\n.bootstrap4 .table-sm th,\n.bootstrap4 .table-sm td {\n padding: 0.3rem;\n}\n\n.bootstrap4 .table-bordered {\n border: 1px solid #e9ecef;\n}\n\n.bootstrap4 .table-bordered th,\n.bootstrap4 .table-bordered td {\n border: 1px solid #e9ecef;\n}\n\n.bootstrap4 .table-bordered thead th,\n.bootstrap4 .table-bordered thead td {\n border-bottom-width: 2px;\n}\n\n.bootstrap4 .table-striped tbody tr:nth-of-type(odd) {\n background-color: rgba(0, 0, 0, 0.05);\n}\n\n.bootstrap4 .table-hover tbody tr:hover {\n background-color: rgba(0, 0, 0, 0.075);\n}\n\n.bootstrap4 .table-primary,\n.bootstrap4 .table-primary > th,\n.bootstrap4 .table-primary > td {\n background-color: #b8daff;\n}\n\n.bootstrap4 .table-hover .table-primary:hover {\n background-color: #9fcdff;\n}\n\n.bootstrap4 .table-hover .table-primary:hover > td,\n.bootstrap4 .table-hover .table-primary:hover > th {\n background-color: #9fcdff;\n}\n\n.bootstrap4 .table-secondary,\n.bootstrap4 .table-secondary > th,\n.bootstrap4 .table-secondary > td {\n background-color: #dddfe2;\n}\n\n.bootstrap4 .table-hover .table-secondary:hover {\n background-color: #cfd2d6;\n}\n\n.bootstrap4 .table-hover .table-secondary:hover > td,\n.bootstrap4 .table-hover .table-secondary:hover > th {\n background-color: #cfd2d6;\n}\n\n.bootstrap4 .table-success,\n.bootstrap4 .table-success > th,\n.bootstrap4 .table-success > td {\n background-color: #c3e6cb;\n}\n\n.bootstrap4 .table-hover .table-success:hover {\n background-color: #b1dfbb;\n}\n\n.bootstrap4 .table-hover .table-success:hover > td,\n.bootstrap4 .table-hover .table-success:hover > th {\n background-color: #b1dfbb;\n}\n\n.bootstrap4 .table-info,\n.bootstrap4 .table-info > th,\n.bootstrap4 .table-info > td {\n background-color: #bee5eb;\n}\n\n.bootstrap4 .table-hover .table-info:hover {\n background-color: #abdde5;\n}\n\n.bootstrap4 .table-hover .table-info:hover > td,\n.bootstrap4 .table-hover .table-info:hover > th {\n background-color: #abdde5;\n}\n\n.bootstrap4 .table-warning,\n.bootstrap4 .table-warning > th,\n.bootstrap4 .table-warning > td {\n background-color: #ffeeba;\n}\n\n.bootstrap4 .table-hover .table-warning:hover {\n background-color: #ffe8a1;\n}\n\n.bootstrap4 .table-hover .table-warning:hover > td,\n.bootstrap4 .table-hover .table-warning:hover > th {\n background-color: #ffe8a1;\n}\n\n.bootstrap4 .table-danger,\n.bootstrap4 .table-danger > th,\n.bootstrap4 .table-danger > td {\n background-color: #f5c6cb;\n}\n\n.bootstrap4 .table-hover .table-danger:hover {\n background-color: #f1b0b7;\n}\n\n.bootstrap4 .table-hover .table-danger:hover > td,\n.bootstrap4 .table-hover .table-danger:hover > th {\n background-color: #f1b0b7;\n}\n\n.bootstrap4 .table-light,\n.bootstrap4 .table-light > th,\n.bootstrap4 .table-light > td {\n background-color: #fdfdfe;\n}\n\n.bootstrap4 .table-hover .table-light:hover {\n background-color: #ececf6;\n}\n\n.bootstrap4 .table-hover .table-light:hover > td,\n.bootstrap4 .table-hover .table-light:hover > th {\n background-color: #ececf6;\n}\n\n.bootstrap4 .table-dark,\n.bootstrap4 .table-dark > th,\n.bootstrap4 .table-dark > td {\n background-color: #c6c8ca;\n}\n\n.bootstrap4 .table-hover .table-dark:hover {\n background-color: #b9bbbe;\n}\n\n.bootstrap4 .table-hover .table-dark:hover > td,\n.bootstrap4 .table-hover .table-dark:hover > th {\n background-color: #b9bbbe;\n}\n\n.bootstrap4 .table-active,\n.bootstrap4 .table-active > th,\n.bootstrap4 .table-active > td {\n background-color: rgba(0, 0, 0, 0.075);\n}\n\n.bootstrap4 .table-hover .table-active:hover {\n background-color: rgba(0, 0, 0, 0.075);\n}\n\n.bootstrap4 .table-hover .table-active:hover > td,\n.bootstrap4 .table-hover .table-active:hover > th {\n background-color: rgba(0, 0, 0, 0.075);\n}\n\n.bootstrap4 .thead-inverse th {\n color: #fff;\n background-color: #212529;\n}\n\n.bootstrap4 .thead-default th {\n color: #495057;\n background-color: #e9ecef;\n}\n\n.bootstrap4 .table-inverse {\n color: #fff;\n background-color: #212529;\n}\n\n.bootstrap4 .table-inverse th,\n.bootstrap4 .table-inverse td,\n.bootstrap4 .table-inverse thead th {\n border-color: #32383e;\n}\n\n.bootstrap4 .table-inverse.table-bordered {\n border: 0;\n}\n\n.bootstrap4 .table-inverse.table-striped tbody tr:nth-of-type(odd) {\n background-color: rgba(255, 255, 255, 0.05);\n}\n\n.bootstrap4 .table-inverse.table-hover tbody tr:hover {\n background-color: rgba(255, 255, 255, 0.075);\n}\n\n@media (max-width: 991px) {\n .bootstrap4 .table-responsive {\n display: block;\n width: 100%;\n overflow-x: auto;\n -ms-overflow-style: -ms-autohiding-scrollbar;\n }\n .bootstrap4 .table-responsive.table-bordered {\n border: 0;\n }\n}\n\n.semantic_ui {\n /*!\n * # Semantic UI 2.2.12 - Table\n * http://github.com/semantic-org/semantic-ui/\n *\n *\n * Released under the MIT license\n * http://opensource.org/licenses/MIT\n *\n */\n /*******************************\n Table\n*******************************/\n /* Prototype */\n /*******************************\n Parts\n*******************************/\n /* Table Content */\n /* Headers */\n /* Footer */\n /* Table Row */\n /* Table Cells */\n /* Icons */\n /* Table Segment */\n /*******************************\n Coupling\n*******************************/\n /* UI Image */\n /*******************************\n Types\n*******************************/\n /*--------------\n Complex\n---------------*/\n /*--------------\n Definition\n---------------*/\n /* Remove Border */\n /* Highlight Defining Column */\n /* Fix 2nd Column */\n /*******************************\n States\n*******************************/\n /*--------------\n Positive\n---------------*/\n /*--------------\n Negative\n---------------*/\n /*--------------\n Error\n---------------*/\n /*--------------\n Warning\n---------------*/\n /*--------------\n Active\n---------------*/\n /*--------------\n Disabled\n---------------*/\n /*******************************\n Variations\n*******************************/\n /*--------------\n Stackable\n---------------*/\n /*--------------\n Text Alignment\n---------------*/\n /*------------------\n Vertical Alignment\n------------------*/\n /*--------------\n Fixed\n---------------*/\n /*--------------\n Selectable\n---------------*/\n /* Selectable Cell Link */\n /* Other States */\n /*-------------------\n Attached\n--------------------*/\n /* Middle */\n /* Top */\n /* Bottom */\n /*--------------\n Striped\n---------------*/\n /* Table Striping */\n /* Stripes */\n /* Allow striped active hover */\n /*--------------\n Single Line\n---------------*/\n /*--------------\n Column Count\n---------------*/\n /* Grid Based */\n /* Column Width */\n /*--------------\n Sortable\n---------------*/\n /* Hover */\n /* Sorted */\n /* Sorted Hover */\n /* Inverted */\n /*--------------\n Collapsing\n---------------*/\n /*--------------\n Basic\n---------------*/\n /* Very Basic */\n /*--------------\n Celled\n---------------*/\n /*--------------\n Padded\n---------------*/\n /* Very */\n /*--------------\n Compact\n---------------*/\n /* Very */\n /*--------------\n Sizes\n---------------*/\n /* Small */\n /* Standard */\n /* Large */\n}\n\n.semantic_ui .ui.table {\n width: 100%;\n background: #FFFFFF;\n margin: 1em 0em;\n border: 1px solid rgba(34, 36, 38, 0.15);\n box-shadow: none;\n border-radius: 0.28571429rem;\n text-align: left;\n color: rgba(0, 0, 0, 0.87);\n border-collapse: separate;\n border-spacing: 0px;\n}\n\n.semantic_ui .ui.table:first-child {\n margin-top: 0em;\n}\n\n.semantic_ui .ui.table:last-child {\n margin-bottom: 0em;\n}\n\n.semantic_ui .ui.table th,\n.semantic_ui .ui.table td {\n -webkit-transition: background 0.1s ease, color 0.1s ease;\n transition: background 0.1s ease, color 0.1s ease;\n}\n\n.semantic_ui .ui.table thead {\n box-shadow: none;\n}\n\n.semantic_ui .ui.table thead th {\n cursor: auto;\n background: #F9FAFB;\n text-align: inherit;\n color: rgba(0, 0, 0, 0.87);\n padding: 0.92857143em 0.78571429em;\n vertical-align: inherit;\n font-style: none;\n font-weight: bold;\n text-transform: none;\n border-bottom: 1px solid rgba(34, 36, 38, 0.1);\n border-left: none;\n}\n\n.semantic_ui .ui.table thead tr > th:first-child {\n border-left: none;\n}\n\n.semantic_ui .ui.table thead tr:first-child > th:first-child {\n border-radius: 0.28571429rem 0em 0em 0em;\n}\n\n.semantic_ui .ui.table thead tr:first-child > th:last-child {\n border-radius: 0em 0.28571429rem 0em 0em;\n}\n\n.semantic_ui .ui.table thead tr:first-child > th:only-child {\n border-radius: 0.28571429rem 0.28571429rem 0em 0em;\n}\n\n.semantic_ui .ui.table tfoot {\n box-shadow: none;\n}\n\n.semantic_ui .ui.table tfoot th {\n cursor: auto;\n border-top: 1px solid rgba(34, 36, 38, 0.15);\n background: #F9FAFB;\n text-align: inherit;\n color: rgba(0, 0, 0, 0.87);\n padding: 0.78571429em 0.78571429em;\n vertical-align: middle;\n font-style: normal;\n font-weight: normal;\n text-transform: none;\n}\n\n.semantic_ui .ui.table tfoot tr > th:first-child {\n border-left: none;\n}\n\n.semantic_ui .ui.table tfoot tr:first-child > th:first-child {\n border-radius: 0em 0em 0em 0.28571429rem;\n}\n\n.semantic_ui .ui.table tfoot tr:first-child > th:last-child {\n border-radius: 0em 0em 0.28571429rem 0em;\n}\n\n.semantic_ui .ui.table tfoot tr:first-child > th:only-child {\n border-radius: 0em 0em 0.28571429rem 0.28571429rem;\n}\n\n.semantic_ui .ui.table tr td {\n border-top: 1px solid rgba(34, 36, 38, 0.1);\n}\n\n.semantic_ui .ui.table tr:first-child td {\n border-top: none;\n}\n\n.semantic_ui .ui.table td {\n padding: 0.78571429em 0.78571429em;\n text-align: inherit;\n}\n\n.semantic_ui .ui.table > .icon {\n vertical-align: baseline;\n}\n\n.semantic_ui .ui.table > .icon:only-child {\n margin: 0em;\n}\n\n.semantic_ui .ui.table.segment {\n padding: 0em;\n}\n\n.semantic_ui .ui.table.segment:after {\n display: none;\n}\n\n.semantic_ui .ui.table.segment.stacked:after {\n display: block;\n}\n\n.semantic_ui .ui.table th .image,\n.semantic_ui .ui.table th .image img,\n.semantic_ui .ui.table td .image,\n.semantic_ui .ui.table td .image img {\n max-width: none;\n}\n\n.semantic_ui .ui.structured.table {\n border-collapse: collapse;\n}\n\n.semantic_ui .ui.structured.table thead th {\n border-left: none;\n border-right: none;\n}\n\n.semantic_ui .ui.structured.sortable.table thead th {\n border-left: 1px solid rgba(34, 36, 38, 0.15);\n border-right: 1px solid rgba(34, 36, 38, 0.15);\n}\n\n.semantic_ui .ui.structured.basic.table th {\n border-left: none;\n border-right: none;\n}\n\n.semantic_ui .ui.structured.celled.table tr th,\n.semantic_ui .ui.structured.celled.table tr td {\n border-left: 1px solid rgba(34, 36, 38, 0.1);\n border-right: 1px solid rgba(34, 36, 38, 0.1);\n}\n\n.semantic_ui .ui.definition.table thead:not(.full-width) th:first-child {\n pointer-events: none;\n background: transparent;\n font-weight: normal;\n color: rgba(0, 0, 0, 0.4);\n box-shadow: -1px -1px 0px 1px #FFFFFF;\n}\n\n.semantic_ui .ui.definition.table tfoot:not(.full-width) th:first-child {\n pointer-events: none;\n background: transparent;\n font-weight: rgba(0, 0, 0, 0.4);\n color: normal;\n box-shadow: 1px 1px 0px 1px #FFFFFF;\n}\n\n.semantic_ui .ui.celled.definition.table thead:not(.full-width) th:first-child {\n box-shadow: 0px -1px 0px 1px #FFFFFF;\n}\n\n.semantic_ui .ui.celled.definition.table tfoot:not(.full-width) th:first-child {\n box-shadow: 0px 1px 0px 1px #FFFFFF;\n}\n\n.semantic_ui .ui.definition.table tr td:first-child:not(.ignored),\n.semantic_ui .ui.definition.table tr td.definition {\n background: rgba(0, 0, 0, 0.03);\n font-weight: bold;\n color: rgba(0, 0, 0, 0.95);\n text-transform: '';\n box-shadow: '';\n text-align: '';\n font-size: 1em;\n padding-left: '';\n padding-right: '';\n}\n\n.semantic_ui .ui.definition.table thead:not(.full-width) th:nth-child(2) {\n border-left: 1px solid rgba(34, 36, 38, 0.15);\n}\n\n.semantic_ui .ui.definition.table tfoot:not(.full-width) th:nth-child(2) {\n border-left: 1px solid rgba(34, 36, 38, 0.15);\n}\n\n.semantic_ui .ui.definition.table td:nth-child(2) {\n border-left: 1px solid rgba(34, 36, 38, 0.15);\n}\n\n.semantic_ui .ui.table tr.positive,\n.semantic_ui .ui.table td.positive {\n box-shadow: 0px 0px 0px #A3C293 inset;\n}\n\n.semantic_ui .ui.table tr.positive,\n.semantic_ui .ui.table td.positive {\n background: #FCFFF5 !important;\n color: #2C662D !important;\n}\n\n.semantic_ui .ui.table tr.negative,\n.semantic_ui .ui.table td.negative {\n box-shadow: 0px 0px 0px #E0B4B4 inset;\n}\n\n.semantic_ui .ui.table tr.negative,\n.semantic_ui .ui.table td.negative {\n background: #FFF6F6 !important;\n color: #9F3A38 !important;\n}\n\n.semantic_ui .ui.table tr.error,\n.semantic_ui .ui.table td.error {\n box-shadow: 0px 0px 0px #E0B4B4 inset;\n}\n\n.semantic_ui .ui.table tr.error,\n.semantic_ui .ui.table td.error {\n background: #FFF6F6 !important;\n color: #9F3A38 !important;\n}\n\n.semantic_ui .ui.table tr.warning,\n.semantic_ui .ui.table td.warning {\n box-shadow: 0px 0px 0px #C9BA9B inset;\n}\n\n.semantic_ui .ui.table tr.warning,\n.semantic_ui .ui.table td.warning {\n background: #FFFAF3 !important;\n color: #573A08 !important;\n}\n\n.semantic_ui .ui.table tr.active,\n.semantic_ui .ui.table td.active {\n box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.87) inset;\n}\n\n.semantic_ui .ui.table tr.active,\n.semantic_ui .ui.table td.active {\n background: #E0E0E0 !important;\n color: rgba(0, 0, 0, 0.87) !important;\n}\n\n.semantic_ui .ui.table tr.disabled td,\n.semantic_ui .ui.table tr td.disabled,\n.semantic_ui .ui.table tr.disabled:hover,\n.semantic_ui .ui.table tr:hover td.disabled {\n pointer-events: none;\n color: rgba(40, 40, 40, 0.3);\n}\n\n@media only screen and (max-width: 991px) {\n .semantic_ui {\n /* Definition Table */\n }\n .semantic_ui .ui[class*=\"tablet stackable\"].table,\n .semantic_ui .ui[class*=\"tablet stackable\"].table tbody,\n .semantic_ui .ui[class*=\"tablet stackable\"].table tr,\n .semantic_ui .ui[class*=\"tablet stackable\"].table tr > th,\n .semantic_ui .ui[class*=\"tablet stackable\"].table tr > td {\n width: 100% !important;\n display: block !important;\n }\n .semantic_ui .ui[class*=\"tablet stackable\"].table {\n padding: 0em;\n }\n .semantic_ui .ui[class*=\"tablet stackable\"].table thead {\n display: block;\n }\n .semantic_ui .ui[class*=\"tablet stackable\"].table tfoot {\n display: block;\n }\n .semantic_ui .ui[class*=\"tablet stackable\"].table tr {\n padding-top: 1em;\n padding-bottom: 1em;\n box-shadow: 0px -1px 0px 0px rgba(0, 0, 0, 0.1) inset !important;\n }\n .semantic_ui .ui[class*=\"tablet stackable\"].table tr > th,\n .semantic_ui .ui[class*=\"tablet stackable\"].table tr > td {\n background: none;\n border: none !important;\n padding: 0.25em 0.75em;\n box-shadow: none !important;\n }\n .semantic_ui .ui.definition[class*=\"tablet stackable\"].table thead th:first-child {\n box-shadow: none !important;\n }\n}\n\n.semantic_ui .ui.table[class*=\"left aligned\"],\n.semantic_ui .ui.table [class*=\"left aligned\"] {\n text-align: left;\n}\n\n.semantic_ui .ui.table[class*=\"center aligned\"],\n.semantic_ui .ui.table [class*=\"center aligned\"] {\n text-align: center;\n}\n\n.semantic_ui .ui.table[class*=\"right aligned\"],\n.semantic_ui .ui.table [class*=\"right aligned\"] {\n text-align: right;\n}\n\n.semantic_ui .ui.table[class*=\"top aligned\"],\n.semantic_ui .ui.table [class*=\"top aligned\"] {\n vertical-align: top;\n}\n\n.semantic_ui .ui.table[class*=\"middle aligned\"],\n.semantic_ui .ui.table [class*=\"middle aligned\"] {\n vertical-align: middle;\n}\n\n.semantic_ui .ui.table[class*=\"bottom aligned\"],\n.semantic_ui .ui.table [class*=\"bottom aligned\"] {\n vertical-align: bottom;\n}\n\n.semantic_ui .ui.fixed.table {\n table-layout: fixed;\n}\n\n.semantic_ui .ui.fixed.table th,\n.semantic_ui .ui.fixed.table td {\n overflow: hidden;\n text-overflow: ellipsis;\n}\n\n.semantic_ui .ui.selectable.table tbody tr:hover,\n.semantic_ui .ui.table tbody tr td.selectable:hover {\n background: rgba(0, 0, 0, 0.05) !important;\n color: rgba(0, 0, 0, 0.95) !important;\n}\n\n.semantic_ui .ui.selectable.inverted.table tbody tr:hover,\n.semantic_ui .ui.inverted.table tbody tr td.selectable:hover {\n background: rgba(255, 255, 255, 0.08) !important;\n color: #ffffff !important;\n}\n\n.semantic_ui .ui.table tbody tr td.selectable {\n padding: 0em;\n}\n\n.semantic_ui .ui.table tbody tr td.selectable > a:not(.ui) {\n display: block;\n color: inherit;\n padding: 0.78571429em 0.78571429em;\n}\n\n.semantic_ui .ui.selectable.table tr.error:hover,\n.semantic_ui .ui.table tr td.selectable.error:hover,\n.semantic_ui .ui.selectable.table tr:hover td.error {\n background: #ffe7e7 !important;\n color: #943634 !important;\n}\n\n.semantic_ui .ui.selectable.table tr.warning:hover,\n.semantic_ui .ui.table tr td.selectable.warning:hover,\n.semantic_ui .ui.selectable.table tr:hover td.warning {\n background: #fff4e4 !important;\n color: #493107 !important;\n}\n\n.semantic_ui .ui.selectable.table tr.active:hover,\n.semantic_ui .ui.table tr td.selectable.active:hover,\n.semantic_ui .ui.selectable.table tr:hover td.active {\n background: #E0E0E0 !important;\n color: rgba(0, 0, 0, 0.87) !important;\n}\n\n.semantic_ui .ui.selectable.table tr.positive:hover,\n.semantic_ui .ui.table tr td.selectable.positive:hover,\n.semantic_ui .ui.selectable.table tr:hover td.positive {\n background: #f7ffe6 !important;\n color: #275b28 !important;\n}\n\n.semantic_ui .ui.selectable.table tr.negative:hover,\n.semantic_ui .ui.table tr td.selectable.negative:hover,\n.semantic_ui .ui.selectable.table tr:hover td.negative {\n background: #ffe7e7 !important;\n color: #943634 !important;\n}\n\n.semantic_ui .ui.attached.table {\n top: 0px;\n bottom: 0px;\n border-radius: 0px;\n margin: 0em -1px;\n width: calc(100% + 2px);\n max-width: calc(100% + 2px);\n box-shadow: none;\n border: 1px solid #D4D4D5;\n}\n\n.semantic_ui .ui.attached + .ui.attached.table:not(.top) {\n border-top: none;\n}\n\n.semantic_ui .ui[class*=\"top attached\"].table {\n bottom: 0px;\n margin-bottom: 0em;\n top: 0px;\n margin-top: 1em;\n border-radius: 0.28571429rem 0.28571429rem 0em 0em;\n}\n\n.semantic_ui .ui.table[class*=\"top attached\"]:first-child {\n margin-top: 0em;\n}\n\n.semantic_ui .ui[class*=\"bottom attached\"].table {\n bottom: 0px;\n margin-top: 0em;\n top: 0px;\n margin-bottom: 1em;\n box-shadow: none, none;\n border-radius: 0em 0em 0.28571429rem 0.28571429rem;\n}\n\n.semantic_ui .ui[class*=\"bottom attached\"].table:last-child {\n margin-bottom: 0em;\n}\n\n.semantic_ui .ui.striped.table > tr:nth-child(2n),\n.semantic_ui .ui.striped.table tbody tr:nth-child(2n) {\n background-color: rgba(0, 0, 50, 0.02);\n}\n\n.semantic_ui .ui.inverted.striped.table > tr:nth-child(2n),\n.semantic_ui .ui.inverted.striped.table tbody tr:nth-child(2n) {\n background-color: rgba(255, 255, 255, 0.05);\n}\n\n.semantic_ui .ui.striped.selectable.selectable.selectable.table tbody tr.active:hover {\n background: #EFEFEF !important;\n color: rgba(0, 0, 0, 0.95) !important;\n}\n\n.semantic_ui .ui.table[class*=\"single line\"],\n.semantic_ui .ui.table [class*=\"single line\"] {\n white-space: nowrap;\n}\n\n.semantic_ui .ui.table[class*=\"single line\"],\n.semantic_ui .ui.table [class*=\"single line\"] {\n white-space: nowrap;\n}\n\n.semantic_ui .ui.one.column.table td {\n width: 100%;\n}\n\n.semantic_ui .ui.two.column.table td {\n width: 50%;\n}\n\n.semantic_ui .ui.three.column.table td {\n width: 33.33333333%;\n}\n\n.semantic_ui .ui.four.column.table td {\n width: 25%;\n}\n\n.semantic_ui .ui.five.column.table td {\n width: 20%;\n}\n\n.semantic_ui .ui.six.column.table td {\n width: 16.66666667%;\n}\n\n.semantic_ui .ui.seven.column.table td {\n width: 14.28571429%;\n}\n\n.semantic_ui .ui.eight.column.table td {\n width: 12.5%;\n}\n\n.semantic_ui .ui.nine.column.table td {\n width: 11.11111111%;\n}\n\n.semantic_ui .ui.ten.column.table td {\n width: 10%;\n}\n\n.semantic_ui .ui.eleven.column.table td {\n width: 9.09090909%;\n}\n\n.semantic_ui .ui.twelve.column.table td {\n width: 8.33333333%;\n}\n\n.semantic_ui .ui.thirteen.column.table td {\n width: 7.69230769%;\n}\n\n.semantic_ui .ui.fourteen.column.table td {\n width: 7.14285714%;\n}\n\n.semantic_ui .ui.fifteen.column.table td {\n width: 6.66666667%;\n}\n\n.semantic_ui .ui.sixteen.column.table td {\n width: 6.25%;\n}\n\n.semantic_ui .ui.table th.one.wide,\n.semantic_ui .ui.table td.one.wide {\n width: 6.25%;\n}\n\n.semantic_ui .ui.table th.two.wide,\n.semantic_ui .ui.table td.two.wide {\n width: 12.5%;\n}\n\n.semantic_ui .ui.table th.three.wide,\n.semantic_ui .ui.table td.three.wide {\n width: 18.75%;\n}\n\n.semantic_ui .ui.table th.four.wide,\n.semantic_ui .ui.table td.four.wide {\n width: 25%;\n}\n\n.semantic_ui .ui.table th.five.wide,\n.semantic_ui .ui.table td.five.wide {\n width: 31.25%;\n}\n\n.semantic_ui .ui.table th.six.wide,\n.semantic_ui .ui.table td.six.wide {\n width: 37.5%;\n}\n\n.semantic_ui .ui.table th.seven.wide,\n.semantic_ui .ui.table td.seven.wide {\n width: 43.75%;\n}\n\n.semantic_ui .ui.table th.eight.wide,\n.semantic_ui .ui.table td.eight.wide {\n width: 50%;\n}\n\n.semantic_ui .ui.table th.nine.wide,\n.semantic_ui .ui.table td.nine.wide {\n width: 56.25%;\n}\n\n.semantic_ui .ui.table th.ten.wide,\n.semantic_ui .ui.table td.ten.wide {\n width: 62.5%;\n}\n\n.semantic_ui .ui.table th.eleven.wide,\n.semantic_ui .ui.table td.eleven.wide {\n width: 68.75%;\n}\n\n.semantic_ui .ui.table th.twelve.wide,\n.semantic_ui .ui.table td.twelve.wide {\n width: 75%;\n}\n\n.semantic_ui .ui.table th.thirteen.wide,\n.semantic_ui .ui.table td.thirteen.wide {\n width: 81.25%;\n}\n\n.semantic_ui .ui.table th.fourteen.wide,\n.semantic_ui .ui.table td.fourteen.wide {\n width: 87.5%;\n}\n\n.semantic_ui .ui.table th.fifteen.wide,\n.semantic_ui .ui.table td.fifteen.wide {\n width: 93.75%;\n}\n\n.semantic_ui .ui.table th.sixteen.wide,\n.semantic_ui .ui.table td.sixteen.wide {\n width: 100%;\n}\n\n.semantic_ui .ui.sortable.table thead th {\n cursor: pointer;\n white-space: nowrap;\n border-left: 1px solid rgba(34, 36, 38, 0.15);\n color: rgba(0, 0, 0, 0.87);\n}\n\n.semantic_ui .ui.sortable.table thead th:first-child {\n border-left: none;\n}\n\n.semantic_ui .ui.sortable.table thead th.sorted,\n.semantic_ui .ui.sortable.table thead th.sorted:hover {\n -webkit-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n user-select: none;\n}\n\n.semantic_ui .ui.sortable.table thead th:after {\n display: none;\n font-style: normal;\n font-weight: normal;\n text-decoration: inherit;\n content: '';\n height: 1em;\n width: auto;\n opacity: 0.8;\n margin: 0em 0em 0em 0.5em;\n font-family: 'Icons';\n}\n\n.semantic_ui .ui.sortable.table thead th.ascending:after {\n content: '\\f0d8';\n}\n\n.semantic_ui .ui.sortable.table thead th.descending:after {\n content: '\\f0d7';\n}\n\n.semantic_ui .ui.sortable.table th.disabled:hover {\n cursor: auto;\n color: rgba(40, 40, 40, 0.3);\n}\n\n.semantic_ui .ui.sortable.table thead th:hover {\n background: rgba(0, 0, 0, 0.05);\n color: rgba(0, 0, 0, 0.8);\n}\n\n.semantic_ui .ui.sortable.table thead th.sorted {\n background: rgba(0, 0, 0, 0.05);\n color: rgba(0, 0, 0, 0.95);\n}\n\n.semantic_ui .ui.sortable.table thead th.sorted:after {\n display: inline-block;\n}\n\n.semantic_ui .ui.sortable.table thead th.sorted:hover {\n background: rgba(0, 0, 0, 0.05);\n color: rgba(0, 0, 0, 0.95);\n}\n\n.semantic_ui .ui.inverted.sortable.table thead th.sorted {\n background: rgba(255, 255, 255, 0.15) -webkit-linear-gradient(transparent, rgba(0, 0, 0, 0.05));\n background: rgba(255, 255, 255, 0.15) linear-gradient(transparent, rgba(0, 0, 0, 0.05));\n color: #ffffff;\n}\n\n.semantic_ui .ui.inverted.sortable.table thead th:hover {\n background: rgba(255, 255, 255, 0.08) -webkit-linear-gradient(transparent, rgba(0, 0, 0, 0.05));\n background: rgba(255, 255, 255, 0.08) linear-gradient(transparent, rgba(0, 0, 0, 0.05));\n color: #ffffff;\n}\n\n.semantic_ui .ui.inverted.sortable.table thead th {\n border-left-color: transparent;\n border-right-color: transparent;\n}\n\n.semantic_ui .ui.collapsing.table {\n width: auto;\n}\n\n.semantic_ui .ui.basic.table {\n background: transparent;\n border: 1px solid rgba(34, 36, 38, 0.15);\n box-shadow: none;\n}\n\n.semantic_ui .ui.basic.table thead,\n.semantic_ui .ui.basic.table tfoot {\n box-shadow: none;\n}\n\n.semantic_ui .ui.basic.table th {\n background: transparent;\n border-left: none;\n}\n\n.semantic_ui .ui.basic.table tbody tr {\n border-bottom: 1px solid rgba(0, 0, 0, 0.1);\n}\n\n.semantic_ui .ui.basic.table td {\n background: transparent;\n}\n\n.semantic_ui .ui.basic.striped.table tbody tr:nth-child(2n) {\n background-color: rgba(0, 0, 0, 0.05) !important;\n}\n\n.semantic_ui .ui[class*=\"very basic\"].table {\n border: none;\n}\n\n.semantic_ui .ui[class*=\"very basic\"].table:not(.sortable):not(.striped) th,\n.semantic_ui .ui[class*=\"very basic\"].table:not(.sortable):not(.striped) td {\n padding: '';\n}\n\n.semantic_ui .ui[class*=\"very basic\"].table:not(.sortable):not(.striped) th:first-child,\n.semantic_ui .ui[class*=\"very basic\"].table:not(.sortable):not(.striped) td:first-child {\n padding-left: 0em;\n}\n\n.semantic_ui .ui[class*=\"very basic\"].table:not(.sortable):not(.striped) th:last-child,\n.semantic_ui .ui[class*=\"very basic\"].table:not(.sortable):not(.striped) td:last-child {\n padding-right: 0em;\n}\n\n.semantic_ui .ui[class*=\"very basic\"].table:not(.sortable):not(.striped) thead tr:first-child th {\n padding-top: 0em;\n}\n\n.semantic_ui .ui.celled.table tr th,\n.semantic_ui .ui.celled.table tr td {\n border-left: 1px solid rgba(34, 36, 38, 0.1);\n}\n\n.semantic_ui .ui.celled.table tr th:first-child,\n.semantic_ui .ui.celled.table tr td:first-child {\n border-left: none;\n}\n\n.semantic_ui .ui.padded.table th {\n padding-left: 1em;\n padding-right: 1em;\n}\n\n.semantic_ui .ui.padded.table th,\n.semantic_ui .ui.padded.table td {\n padding: 1em 1em;\n}\n\n.semantic_ui .ui[class*=\"very padded\"].table th {\n padding-left: 1.5em;\n padding-right: 1.5em;\n}\n\n.semantic_ui .ui[class*=\"very padded\"].table td {\n padding: 1.5em 1.5em;\n}\n\n.semantic_ui .ui.compact.table th {\n padding-left: 0.7em;\n padding-right: 0.7em;\n}\n\n.semantic_ui .ui.compact.table td {\n padding: 0.5em 0.7em;\n}\n\n.semantic_ui .ui[class*=\"very compact\"].table th {\n padding-left: 0.6em;\n padding-right: 0.6em;\n}\n\n.semantic_ui .ui[class*=\"very compact\"].table td {\n padding: 0.4em 0.6em;\n}\n\n.semantic_ui .ui.small.table {\n font-size: 0.9em;\n}\n\n.semantic_ui .ui.table {\n font-size: 1em;\n}\n\n.semantic_ui .ui.large.table {\n font-size: 1.1em;\n}\n\n.colored_table table.foo-table.inverted {\n /*-------------------\n Colors\n --------------------*/\n /* Red */\n /* Orange */\n /* Yellow */\n /* Olive */\n /* Green */\n /* Teal */\n /* Blue */\n /* Violet */\n /* Purple */\n /* Pink */\n /* Brown */\n /* Grey */\n /* Black */\n /*--------------\n Inverted\n ---------------*/\n /* Text Color */\n /* Definition */\n /*******************************\n Site Overrides\n *******************************/\n}\n\n.colored_table table.foo-table.inverted.table a {\n color: rgba(255, 255, 255, 0.7);\n}\n\n.colored_table table.foo-table.inverted.table a.checkbox {\n color: black;\n}\n\n.colored_table table.foo-table.inverted.red.table {\n background-color: #DB2828 !important;\n color: #FFFFFF !important;\n}\n\n.colored_table table.foo-table.inverted.orange.table {\n background-color: #F2711C !important;\n color: #FFFFFF !important;\n}\n\n.colored_table table.foo-table.inverted.yellow.table {\n background-color: #FBBD08 !important;\n color: #FFFFFF !important;\n}\n\n.colored_table table.foo-table.inverted.olive.table {\n background-color: #B5CC18 !important;\n color: #FFFFFF !important;\n}\n\n.colored_table table.foo-table.inverted.green.table {\n background-color: #21BA45 !important;\n color: #FFFFFF !important;\n}\n\n.colored_table table.foo-table.inverted.teal.table {\n background-color: #00B5AD !important;\n color: #FFFFFF !important;\n}\n\n.colored_table table.foo-table.inverted.blue.table {\n background-color: #2185D0 !important;\n color: #FFFFFF !important;\n}\n\n.colored_table table.foo-table.inverted.violet.table {\n background-color: #6435C9 !important;\n color: #FFFFFF !important;\n}\n\n.colored_table table.foo-table.inverted.purple.table {\n background-color: #A333C8 !important;\n color: #FFFFFF !important;\n}\n\n.colored_table table.foo-table.inverted.pink.table {\n background-color: #E03997 !important;\n color: #FFFFFF !important;\n}\n\n.colored_table table.foo-table.inverted.brown.table {\n background-color: #A5673F !important;\n color: #FFFFFF !important;\n}\n\n.colored_table table.foo-table.inverted.grey.table {\n background-color: #767676 !important;\n color: #FFFFFF !important;\n}\n\n.colored_table table.foo-table.inverted.black.table {\n background-color: #1B1C1D !important;\n color: #FFFFFF !important;\n}\n\n.colored_table table.foo-table.inverted.table {\n background: #333333;\n color: rgba(255, 255, 255, 0.9);\n border: none;\n}\n\n.colored_table table.foo-table.inverted.table th {\n background-color: rgba(0, 0, 0, 0.15);\n border-color: rgba(255, 255, 255, 0.1) !important;\n color: rgba(255, 255, 255, 0.9) !important;\n}\n\n.colored_table table.foo-table.inverted.table tr td {\n border-color: rgba(255, 255, 255, 0.1) !important;\n}\n\n.colored_table table.foo-table.inverted.table tr.disabled td,\n.colored_table table.foo-table.inverted.table tr td.disabled,\n.colored_table table.foo-table.inverted.table tr.disabled:hover td,\n.colored_table table.foo-table.inverted.table tr:hover td.disabled {\n pointer-events: none;\n color: rgba(225, 225, 225, 0.3);\n}\n\n.colored_table table.foo-table.inverted.definition.table tfoot:not(.full-width) th:first-child,\n.colored_table table.foo-table.inverted.definition.table thead:not(.full-width) th:first-child {\n background: #FFFFFF;\n}\n\n.colored_table table.foo-table.inverted.definition.table tr td:first-child {\n background: rgba(255, 255, 255, 0.02);\n color: #ffffff;\n}\n\n.colored_table table.foo-table.inverted.table-striped tbody tr:nth-of-type(odd) {\n background-color: rgba(255, 255, 255, 0.05);\n}\n\n.colored_table table.foo-table.inverted .pagination > .active > a, .colored_table table.foo-table.inverted .pagination > .active > a:focus, .colored_table table.foo-table.inverted .pagination > .active > a:hover, .colored_table table.foo-table.inverted .pagination > .active > span, .colored_table table.foo-table.inverted .pagination > .active > span:focus, .colored_table table.foo-table.inverted .pagination > .active > span:hover {\n background-color: rgba(0, 0, 0, 0.15);\n border-color: rgba(255, 255, 255, 0.1) !important;\n color: rgba(255, 255, 255, 0.9) !important;\n -webkit-box-shadow: inset 0 0 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);\n box-shadow: inset 0 0 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);\n}\n\n.colored_table table.foo-table.inverted .pagination a.footable-page-link {\n color: rgba(0, 0, 0, 0.5);\n}\n\n.colored_table table.foo-table.inverted .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle) {\n background-color: rgba(255, 255, 255, 0.1);\n border-color: rgba(255, 255, 255, 0.1) !important;\n color: rgba(255, 255, 255, 0.9) !important;\n}\n/*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbInNyYy9wdWJsaWMvY3NzL19wdWJsaWMuc2NzcyIsInNyYy9wdWJsaWMvY3NzL19jb21tb24uc2NzcyIsInNyYy9wdWJsaWMvY3NzL19mb29faWNvbnMuc2NzcyIsInNyYy9wdWJsaWMvY3NzL190YWJsZV9ib29zdHJhcDMuc2NzcyIsInNyYy9wdWJsaWMvY3NzL190YWJsZV9ib290c3RyYXA0LnNjc3MiLCJzcmMvcHVibGljL2Nzcy9fdGFibGVfc2VtYW50aWNfdWkuc2NzcyIsInNyYy9wdWJsaWMvY3NzL19jb2xvcnMuc2NzcyJdLCJzb3VyY2VzQ29udGVudCI6WyJAaW1wb3J0IFwiY29tbW9uXCI7XG5AaW1wb3J0IFwiZm9vX2ljb25zXCI7XG4uYm9vdHN0cmFwMyB7XG4gIEBpbXBvcnQgXCJ0YWJsZV9ib29zdHJhcDNcIjtcbn1cbi5ib290c3RyYXA0IHtcbiAgQGltcG9ydCBcInRhYmxlX2Jvb3RzdHJhcDRcIjtcbn1cbi5zZW1hbnRpY191aSB7XG4gIEBpbXBvcnQgXCJ0YWJsZV9zZW1hbnRpY191aVwiO1xufVxuLmNvbG9yZWRfdGFibGUge1xuICBAaW1wb3J0IFwiY29sb3JzXCI7XG59IiwiLmZvby10YWJsZSAge1xuICBzcGFuLmxhYmVsLmxhYmVsLWRlZmF1bHQge1xuICAgIGRpc3BsYXk6IG5vbmU7XG4gICAgdmlzaWJpbGl0eTogaGlkZGVuO1xuICB9XG4gIFxuICB0YWJsZS5mb290YWJsZS1kZXRhaWxzIHRyIHRoIHtcbiAgICAgIHdoaXRlLXNwYWNlOiBpbml0aWFsO1xuICAgICAgb3ZlcmZsb3c6IHZpc2libGUgIWltcG9ydGFudDtcbiAgICAgIHRleHQtb3ZlcmZsb3c6IHVuc2V0ICFpbXBvcnRhbnQ7XG4gIH1cbiAgdHIuZm9vdGFibGUtZmlsdGVyaW5nIHRoIHtcbiAgICBvdmVyZmxvdzogdmlzaWJsZSAhaW1wb3J0YW50O1xuICB9XG4gIC5wYWdpbmF0aW9uIHtcbiAgICBib3JkZXI6IG5vbmU7XG4gICAgcGFkZGluZzogMHB4O1xuICAgIGZvbnQtd2VpZ2h0OiA1MDA7XG4gIH1cbiAgYnV0dG9uLmJ0bi5idG4tZGVmYXVsdC5kcm9wZG93bi10b2dnbGUge1xuICAgIHJpZ2h0OiAwcHg7XG4gICAgbGVmdDogMHB4O1xuICB9XG4gIFxuICBsaS5kcm9wZG93bi1oZWFkZXIge1xuICAgIHBhZGRpbmctbGVmdDogMjBweDtcbiAgICBwYWRkaW5nLWJvdHRvbTogNXB4O1xuICAgIGNvbG9yOiAjMzMzMzMzO1xuICB9XG4gIHVsLmRyb3Bkb3duLW1lbnUuZHJvcGRvd24tbWVudS1yaWdodCBsaTpsYXN0LWNoaWxkIGEge1xuICAgIGJvcmRlci1ib3R0b206IDBweCAhaW1wb3J0YW50O1xuICAgIGJveC1zaGFkb3c6IG5vbmU7XG4gIH1cbiAgdWwuZHJvcGRvd24tbWVudS5kcm9wZG93bi1tZW51LXJpZ2h0IGxpIGE6aG92ZXIge1xuICAgIC13ZWJraXQtYm94LXNoYWRvdzogaW5zZXQgMCAwIDAgcmdiYSgwLCAwLCAwLCAwKSwgMCAxcHggMCByZ2JhKDAsIDAsIDAsIDEpO1xuICAgIGJveC1zaGFkb3c6IGluc2V0IDAgMCAwIHJnYmEoMCwgMCwgMCwgMCksIDAgMXB4IDAgcmdiYSgwLCAwLCAwLCAxKTtcbiAgfVxuICBzcGFuLmZvb3RhYmxlLXRvZ2dsZSB7XG4gICAgY3Vyc29yOiBwb2ludGVyO1xuICB9XG4gIFxufVxuXG4uZm9vdGFibGVfcGFyZW50IHtcbiAgb3ZlcmZsb3cteDogYXV0bztcbn0iLCJAY2hhcnNldCBcIlVURi04XCI7XG5cbkBmb250LWZhY2Uge1xuICBmb250LWZhbWlseTogXCJuaW5qYS10YWJsZXMtZm9udGF3ZXNvbWVcIjtcbiAgc3JjOnVybChcIi4uLy4uL2ZvbnRzL25pbmphLXRhYmxlcy1mb250YXdlc29tZS5lb3RcIik7XG4gIHNyYzp1cmwoXCIuLi8uLi9mb250cy9uaW5qYS10YWJsZXMtZm9udGF3ZXNvbWUuZW90PyNpZWZpeFwiKSBmb3JtYXQoXCJlbWJlZGRlZC1vcGVudHlwZVwiKSxcbiAgdXJsKFwiLi4vLi4vZm9udHMvbmluamEtdGFibGVzLWZvbnRhd2Vzb21lLndvZmZcIikgZm9ybWF0KFwid29mZlwiKSxcbiAgdXJsKFwiLi4vLi4vZm9udHMvbmluamEtdGFibGVzLWZvbnRhd2Vzb21lLnR0ZlwiKSBmb3JtYXQoXCJ0cnVldHlwZVwiKSxcbiAgdXJsKFwiLi4vLi4vZm9udHMvbmluamEtdGFibGVzLWZvbnRhd2Vzb21lLnN2ZyNuaW5qYS10YWJsZXMtZm9udGF3ZXNvbWVcIikgZm9ybWF0KFwic3ZnXCIpO1xuICBmb250LXdlaWdodDogbm9ybWFsO1xuICBmb250LXN0eWxlOiBub3JtYWw7XG5cbn1cblxuW2RhdGEtaWNvbl06YmVmb3JlIHtcbiAgZm9udC1mYW1pbHk6IFwibmluamEtdGFibGVzLWZvbnRhd2Vzb21lXCIgIWltcG9ydGFudDtcbiAgY29udGVudDogYXR0cihkYXRhLWljb24pO1xuICBmb250LXN0eWxlOiBub3JtYWwgIWltcG9ydGFudDtcbiAgZm9udC13ZWlnaHQ6IG5vcm1hbCAhaW1wb3J0YW50O1xuICBmb250LXZhcmlhbnQ6IG5vcm1hbCAhaW1wb3J0YW50O1xuICB0ZXh0LXRyYW5zZm9ybTogbm9uZSAhaW1wb3J0YW50O1xuICBzcGVhazogbm9uZTtcbiAgbGluZS1oZWlnaHQ6IDE7XG4gIC13ZWJraXQtZm9udC1zbW9vdGhpbmc6IGFudGlhbGlhc2VkO1xuICAtbW96LW9zeC1mb250LXNtb290aGluZzogZ3JheXNjYWxlO1xufVxuXG5bY2xhc3NePVwiZm9vaWNvbi1cIl06YmVmb3JlLFxuW2NsYXNzKj1cIiBmb29pY29uLVwiXTpiZWZvcmUge1xuICBmb250LWZhbWlseTogXCJuaW5qYS10YWJsZXMtZm9udGF3ZXNvbWVcIiAhaW1wb3J0YW50O1xuICBmb250LXN0eWxlOiBub3JtYWwgIWltcG9ydGFudDtcbiAgZm9udC13ZWlnaHQ6IG5vcm1hbCAhaW1wb3J0YW50O1xuICBmb250LXZhcmlhbnQ6IG5vcm1hbCAhaW1wb3J0YW50O1xuICB0ZXh0LXRyYW5zZm9ybTogbm9uZSAhaW1wb3J0YW50O1xuICBzcGVhazogbm9uZTtcbiAgbGluZS1oZWlnaHQ6IDE7XG4gIC13ZWJraXQtZm9udC1zbW9vdGhpbmc6IGFudGlhbGlhc2VkO1xuICAtbW96LW9zeC1mb250LXNtb290aGluZzogZ3JheXNjYWxlO1xufVxuXG4uZm9vaWNvbi1zZWFyY2g6YmVmb3JlIHtcbiAgY29udGVudDogXCJcXGYwMDJcIjtcbn1cbi5mb29pY29uLXNvcnQtZGVzYzpiZWZvcmUge1xuICBjb250ZW50OiBcIlxcZjE2MVwiO1xufVxuLmZvb2ljb24tc29ydC1hc2M6YmVmb3JlIHtcbiAgY29udGVudDogXCJcXGYxNjBcIjtcbn1cbi5mb29pY29uLXNvcnQ6YmVmb3JlIHtcbiAgY29udGVudDogXCJcXGYwZGNcIjtcbn1cbi5mb29pY29uLW1pbnVzOmJlZm9yZSB7XG4gIGNvbnRlbnQ6IFwiXFxmMDY4XCI7XG59XG4uZm9vaWNvbi1wbHVzOmJlZm9yZSB7XG4gIGNvbnRlbnQ6IFwiXFxmMDY3XCI7XG59XG4uZm9vaWNvbi1jaXJjbGUtby1ub3RjaDpiZWZvcmUge1xuICBjb250ZW50OiBcIlxcZTAwMFwiO1xufVxuLmZvb2ljb24tcmVtb3ZlLTE6YmVmb3JlIHtcbiAgY29udGVudDogXCJcXGYwMGRcIjtcbn1cbi5mb29pY29uLWxvYWRlci1hbHQ6YmVmb3JlIHtcbiAgY29udGVudDogXCJcXGYwMVwiO1xufVxuLmZvb2ljb24tcmVmcmVzaDpiZWZvcmUge1xuICBjb250ZW50OiBcIlxcZTAwMVwiO1xufVxuLmZvb2ljb24tbG9hZGVyOmJlZm9yZSB7XG4gIGNvbnRlbnQ6IFwiXFxmMDFlXCI7XG59IiwiXG50YWJsZSB7XG4gIGJhY2tncm91bmQtY29sb3I6IHRyYW5zcGFyZW50O1xufVxuY2FwdGlvbiB7XG4gIHBhZGRpbmctdG9wOiA4cHg7XG4gIHBhZGRpbmctYm90dG9tOiA4cHg7XG4gIGNvbG9yOiAjNzc3O1xuICB0ZXh0LWFsaWduOiBsZWZ0O1xufVxudGgge1xuICB0ZXh0LWFsaWduOiBsZWZ0O1xufVxuLnRhYmxlIHtcbiAgd2lkdGg6IDEwMCU7XG4gIG1heC13aWR0aDogMTAwJTtcbiAgbWFyZ2luLWJvdHRvbTogMjBweDtcbn1cbi50YWJsZSA+IHRoZWFkID4gdHIgPiB0aCxcbi50YWJsZSA+IHRib2R5ID4gdHIgPiB0aCxcbi50YWJsZSA+IHRmb290ID4gdHIgPiB0aCxcbi50YWJsZSA+IHRoZWFkID4gdHIgPiB0ZCxcbi50YWJsZSA+IHRib2R5ID4gdHIgPiB0ZCxcbi50YWJsZSA+IHRmb290ID4gdHIgPiB0ZCB7XG4gIHBhZGRpbmc6IDhweDtcbiAgbGluZS1oZWlnaHQ6IDEuNDI4NTcxNDM7XG4gIHZlcnRpY2FsLWFsaWduOiB0b3A7XG4gIGJvcmRlci10b3A6IDFweCBzb2xpZCAjZGRkO1xufVxuLnRhYmxlID4gdGhlYWQgPiB0ciA+IHRoIHtcbiAgdmVydGljYWwtYWxpZ246IGJvdHRvbTtcbiAgYm9yZGVyLWJvdHRvbTogMnB4IHNvbGlkICNkZGQ7XG59XG4udGFibGUgPiBjYXB0aW9uICsgdGhlYWQgPiB0cjpmaXJzdC1jaGlsZCA+IHRoLFxuLnRhYmxlID4gY29sZ3JvdXAgKyB0aGVhZCA+IHRyOmZpcnN0LWNoaWxkID4gdGgsXG4udGFibGUgPiB0aGVhZDpmaXJzdC1jaGlsZCA+IHRyOmZpcnN0LWNoaWxkID4gdGgsXG4udGFibGUgPiBjYXB0aW9uICsgdGhlYWQgPiB0cjpmaXJzdC1jaGlsZCA+IHRkLFxuLnRhYmxlID4gY29sZ3JvdXAgKyB0aGVhZCA+IHRyOmZpcnN0LWNoaWxkID4gdGQsXG4udGFibGUgPiB0aGVhZDpmaXJzdC1jaGlsZCA+IHRyOmZpcnN0LWNoaWxkID4gdGQge1xuICBib3JkZXItdG9wOiAwO1xufVxuLnRhYmxlID4gdGJvZHkgKyB0Ym9keSB7XG4gIGJvcmRlci10b3A6IDJweCBzb2xpZCAjZGRkO1xufVxuLnRhYmxlIC50YWJsZSB7XG4gIGJhY2tncm91bmQtY29sb3I6ICNmZmY7XG59XG4udGFibGUtY29uZGVuc2VkID4gdGhlYWQgPiB0ciA+IHRoLFxuLnRhYmxlLWNvbmRlbnNlZCA+IHRib2R5ID4gdHIgPiB0aCxcbi50YWJsZS1jb25kZW5zZWQgPiB0Zm9vdCA+IHRyID4gdGgsXG4udGFibGUtY29uZGVuc2VkID4gdGhlYWQgPiB0ciA+IHRkLFxuLnRhYmxlLWNvbmRlbnNlZCA+IHRib2R5ID4gdHIgPiB0ZCxcbi50YWJsZS1jb25kZW5zZWQgPiB0Zm9vdCA+IHRyID4gdGQge1xuICBwYWRkaW5nOiA1cHg7XG59XG4udGFibGUtYm9yZGVyZWQge1xuICBib3JkZXI6IDFweCBzb2xpZCAjZGRkO1xufVxuLnRhYmxlLWJvcmRlcmVkID4gdGhlYWQgPiB0ciA+IHRoLFxuLnRhYmxlLWJvcmRlcmVkID4gdGJvZHkgPiB0ciA+IHRoLFxuLnRhYmxlLWJvcmRlcmVkID4gdGZvb3QgPiB0ciA+IHRoLFxuLnRhYmxlLWJvcmRlcmVkID4gdGhlYWQgPiB0ciA+IHRkLFxuLnRhYmxlLWJvcmRlcmVkID4gdGJvZHkgPiB0ciA+IHRkLFxuLnRhYmxlLWJvcmRlcmVkID4gdGZvb3QgPiB0ciA+IHRkIHtcbiAgYm9yZGVyOiAxcHggc29saWQgI2RkZDtcbn1cbi50YWJsZS1ib3JkZXJlZCA+IHRoZWFkID4gdHIgPiB0aCxcbi50YWJsZS1ib3JkZXJlZCA+IHRoZWFkID4gdHIgPiB0ZCB7XG4gIGJvcmRlci1ib3R0b20td2lkdGg6IDJweDtcbn1cbi50YWJsZS1zdHJpcGVkID4gdGJvZHkgPiB0cjpudGgtb2YtdHlwZShvZGQpIHtcbiAgYmFja2dyb3VuZC1jb2xvcjogI2Y5ZjlmOTtcbn1cbi50YWJsZS1ob3ZlciA+IHRib2R5ID4gdHI6aG92ZXIge1xuICBiYWNrZ3JvdW5kLWNvbG9yOiAjZjVmNWY1O1xufVxudGFibGUgY29sW2NsYXNzKj1cImNvbC1cIl0ge1xuICBwb3NpdGlvbjogc3RhdGljO1xuICBkaXNwbGF5OiB0YWJsZS1jb2x1bW47XG4gIGZsb2F0OiBub25lO1xufVxudGFibGUgdGRbY2xhc3MqPVwiY29sLVwiXSxcbnRhYmxlIHRoW2NsYXNzKj1cImNvbC1cIl0ge1xuICBwb3NpdGlvbjogc3RhdGljO1xuICBkaXNwbGF5OiB0YWJsZS1jZWxsO1xuICBmbG9hdDogbm9uZTtcbn1cbi50YWJsZSA+IHRoZWFkID4gdHIgPiB0ZC5hY3RpdmUsXG4udGFibGUgPiB0Ym9keSA+IHRyID4gdGQuYWN0aXZlLFxuLnRhYmxlID4gdGZvb3QgPiB0ciA+IHRkLmFjdGl2ZSxcbi50YWJsZSA+IHRoZWFkID4gdHIgPiB0aC5hY3RpdmUsXG4udGFibGUgPiB0Ym9keSA+IHRyID4gdGguYWN0aXZlLFxuLnRhYmxlID4gdGZvb3QgPiB0ciA+IHRoLmFjdGl2ZSxcbi50YWJsZSA+IHRoZWFkID4gdHIuYWN0aXZlID4gdGQsXG4udGFibGUgPiB0Ym9keSA+IHRyLmFjdGl2ZSA+IHRkLFxuLnRhYmxlID4gdGZvb3QgPiB0ci5hY3RpdmUgPiB0ZCxcbi50YWJsZSA+IHRoZWFkID4gdHIuYWN0aXZlID4gdGgsXG4udGFibGUgPiB0Ym9keSA+IHRyLmFjdGl2ZSA+IHRoLFxuLnRhYmxlID4gdGZvb3QgPiB0ci5hY3RpdmUgPiB0aCB7XG4gIGJhY2tncm91bmQtY29sb3I6ICNmNWY1ZjU7XG59XG4udGFibGUtaG92ZXIgPiB0Ym9keSA+IHRyID4gdGQuYWN0aXZlOmhvdmVyLFxuLnRhYmxlLWhvdmVyID4gdGJvZHkgPiB0ciA+IHRoLmFjdGl2ZTpob3Zlcixcbi50YWJsZS1ob3ZlciA+IHRib2R5ID4gdHIuYWN0aXZlOmhvdmVyID4gdGQsXG4udGFibGUtaG92ZXIgPiB0Ym9keSA+IHRyOmhvdmVyID4gLmFjdGl2ZSxcbi50YWJsZS1ob3ZlciA+IHRib2R5ID4gdHIuYWN0aXZlOmhvdmVyID4gdGgge1xuICBiYWNrZ3JvdW5kLWNvbG9yOiAjZThlOGU4O1xufVxuLnRhYmxlID4gdGhlYWQgPiB0ciA+IHRkLnN1Y2Nlc3MsXG4udGFibGUgPiB0Ym9keSA+IHRyID4gdGQuc3VjY2Vzcyxcbi50YWJsZSA+IHRmb290ID4gdHIgPiB0ZC5zdWNjZXNzLFxuLnRhYmxlID4gdGhlYWQgPiB0ciA+IHRoLnN1Y2Nlc3MsXG4udGFibGUgPiB0Ym9keSA+IHRyID4gdGguc3VjY2Vzcyxcbi50YWJsZSA+IHRmb290ID4gdHIgPiB0aC5zdWNjZXNzLFxuLnRhYmxlID4gdGhlYWQgPiB0ci5zdWNjZXNzID4gdGQsXG4udGFibGUgPiB0Ym9keSA+IHRyLnN1Y2Nlc3MgPiB0ZCxcbi50YWJsZSA+IHRmb290ID4gdHIuc3VjY2VzcyA+IHRkLFxuLnRhYmxlID4gdGhlYWQgPiB0ci5zdWNjZXNzID4gdGgsXG4udGFibGUgPiB0Ym9keSA+IHRyLnN1Y2Nlc3MgPiB0aCxcbi50YWJsZSA+IHRmb290ID4gdHIuc3VjY2VzcyA+IHRoIHtcbiAgYmFja2dyb3VuZC1jb2xvcjogI2RmZjBkODtcbn1cbi50YWJsZS1ob3ZlciA+IHRib2R5ID4gdHIgPiB0ZC5zdWNjZXNzOmhvdmVyLFxuLnRhYmxlLWhvdmVyID4gdGJvZHkgPiB0ciA+IHRoLnN1Y2Nlc3M6aG92ZXIsXG4udGFibGUtaG92ZXIgPiB0Ym9keSA+IHRyLnN1Y2Nlc3M6aG92ZXIgPiB0ZCxcbi50YWJsZS1ob3ZlciA+IHRib2R5ID4gdHI6aG92ZXIgPiAuc3VjY2Vzcyxcbi50YWJsZS1ob3ZlciA+IHRib2R5ID4gdHIuc3VjY2Vzczpob3ZlciA+IHRoIHtcbiAgYmFja2dyb3VuZC1jb2xvcjogI2QwZTljNjtcbn1cbi50YWJsZSA+IHRoZWFkID4gdHIgPiB0ZC5pbmZvLFxuLnRhYmxlID4gdGJvZHkgPiB0ciA+IHRkLmluZm8sXG4udGFibGUgPiB0Zm9vdCA+IHRyID4gdGQuaW5mbyxcbi50YWJsZSA+IHRoZWFkID4gdHIgPiB0aC5pbmZvLFxuLnRhYmxlID4gdGJvZHkgPiB0ciA+IHRoLmluZm8sXG4udGFibGUgPiB0Zm9vdCA+IHRyID4gdGguaW5mbyxcbi50YWJsZSA+IHRoZWFkID4gdHIuaW5mbyA+IHRkLFxuLnRhYmxlID4gdGJvZHkgPiB0ci5pbmZvID4gdGQsXG4udGFibGUgPiB0Zm9vdCA+IHRyLmluZm8gPiB0ZCxcbi50YWJsZSA+IHRoZWFkID4gdHIuaW5mbyA+IHRoLFxuLnRhYmxlID4gdGJvZHkgPiB0ci5pbmZvID4gdGgsXG4udGFibGUgPiB0Zm9vdCA+IHRyLmluZm8gPiB0aCB7XG4gIGJhY2tncm91bmQtY29sb3I6ICNkOWVkZjc7XG59XG4udGFibGUtaG92ZXIgPiB0Ym9keSA+IHRyID4gdGQuaW5mbzpob3Zlcixcbi50YWJsZS1ob3ZlciA+IHRib2R5ID4gdHIgPiB0aC5pbmZvOmhvdmVyLFxuLnRhYmxlLWhvdmVyID4gdGJvZHkgPiB0ci5pbmZvOmhvdmVyID4gdGQsXG4udGFibGUtaG92ZXIgPiB0Ym9keSA+IHRyOmhvdmVyID4gLmluZm8sXG4udGFibGUtaG92ZXIgPiB0Ym9keSA+IHRyLmluZm86aG92ZXIgPiB0aCB7XG4gIGJhY2tncm91bmQtY29sb3I6ICNjNGUzZjM7XG59XG4udGFibGUgPiB0aGVhZCA+IHRyID4gdGQud2FybmluZyxcbi50YWJsZSA+IHRib2R5ID4gdHIgPiB0ZC53YXJuaW5nLFxuLnRhYmxlID4gdGZvb3QgPiB0ciA+IHRkLndhcm5pbmcsXG4udGFibGUgPiB0aGVhZCA+IHRyID4gdGgud2FybmluZyxcbi50YWJsZSA+IHRib2R5ID4gdHIgPiB0aC53YXJuaW5nLFxuLnRhYmxlID4gdGZvb3QgPiB0ciA+IHRoLndhcm5pbmcsXG4udGFibGUgPiB0aGVhZCA+IHRyLndhcm5pbmcgPiB0ZCxcbi50YWJsZSA+IHRib2R5ID4gdHIud2FybmluZyA+IHRkLFxuLnRhYmxlID4gdGZvb3QgPiB0ci53YXJuaW5nID4gdGQsXG4udGFibGUgPiB0aGVhZCA+IHRyLndhcm5pbmcgPiB0aCxcbi50YWJsZSA+IHRib2R5ID4gdHIud2FybmluZyA+IHRoLFxuLnRhYmxlID4gdGZvb3QgPiB0ci53YXJuaW5nID4gdGgge1xuICBiYWNrZ3JvdW5kLWNvbG9yOiAjZmNmOGUzO1xufVxuLnRhYmxlLWhvdmVyID4gdGJvZHkgPiB0ciA+IHRkLndhcm5pbmc6aG92ZXIsXG4udGFibGUtaG92ZXIgPiB0Ym9keSA+IHRyID4gdGgud2FybmluZzpob3Zlcixcbi50YWJsZS1ob3ZlciA+IHRib2R5ID4gdHIud2FybmluZzpob3ZlciA+IHRkLFxuLnRhYmxlLWhvdmVyID4gdGJvZHkgPiB0cjpob3ZlciA+IC53YXJuaW5nLFxuLnRhYmxlLWhvdmVyID4gdGJvZHkgPiB0ci53YXJuaW5nOmhvdmVyID4gdGgge1xuICBiYWNrZ3JvdW5kLWNvbG9yOiAjZmFmMmNjO1xufVxuLnRhYmxlID4gdGhlYWQgPiB0ciA+IHRkLmRhbmdlcixcbi50YWJsZSA+IHRib2R5ID4gdHIgPiB0ZC5kYW5nZXIsXG4udGFibGUgPiB0Zm9vdCA+IHRyID4gdGQuZGFuZ2VyLFxuLnRhYmxlID4gdGhlYWQgPiB0ciA+IHRoLmRhbmdlcixcbi50YWJsZSA+IHRib2R5ID4gdHIgPiB0aC5kYW5nZXIsXG4udGFibGUgPiB0Zm9vdCA+IHRyID4gdGguZGFuZ2VyLFxuLnRhYmxlID4gdGhlYWQgPiB0ci5kYW5nZXIgPiB0ZCxcbi50YWJsZSA+IHRib2R5ID4gdHIuZGFuZ2VyID4gdGQsXG4udGFibGUgPiB0Zm9vdCA+IHRyLmRhbmdlciA+IHRkLFxuLnRhYmxlID4gdGhlYWQgPiB0ci5kYW5nZXIgPiB0aCxcbi50YWJsZSA+IHRib2R5ID4gdHIuZGFuZ2VyID4gdGgsXG4udGFibGUgPiB0Zm9vdCA+IHRyLmRhbmdlciA+IHRoIHtcbiAgYmFja2dyb3VuZC1jb2xvcjogI2YyZGVkZTtcbn1cbi50YWJsZS1ob3ZlciA+IHRib2R5ID4gdHIgPiB0ZC5kYW5nZXI6aG92ZXIsXG4udGFibGUtaG92ZXIgPiB0Ym9keSA+IHRyID4gdGguZGFuZ2VyOmhvdmVyLFxuLnRhYmxlLWhvdmVyID4gdGJvZHkgPiB0ci5kYW5nZXI6aG92ZXIgPiB0ZCxcbi50YWJsZS1ob3ZlciA+IHRib2R5ID4gdHI6aG92ZXIgPiAuZGFuZ2VyLFxuLnRhYmxlLWhvdmVyID4gdGJvZHkgPiB0ci5kYW5nZXI6aG92ZXIgPiB0aCB7XG4gIGJhY2tncm91bmQtY29sb3I6ICNlYmNjY2M7XG59XG4udGFibGUtcmVzcG9uc2l2ZSB7XG4gIG1pbi1oZWlnaHQ6IC4wMSU7XG4gIG92ZXJmbG93LXg6IGF1dG87XG59XG5AbWVkaWEgc2NyZWVuIGFuZCAobWF4LXdpZHRoOiA3NjdweCkge1xuICAudGFibGUtcmVzcG9uc2l2ZSB7XG4gICAgd2lkdGg6IDEwMCU7XG4gICAgbWFyZ2luLWJvdHRvbTogMTVweDtcbiAgICBvdmVyZmxvdy15OiBoaWRkZW47XG4gICAgLW1zLW92ZXJmbG93LXN0eWxlOiAtbXMtYXV0b2hpZGluZy1zY3JvbGxiYXI7XG4gICAgYm9yZGVyOiAxcHggc29saWQgI2RkZDtcbiAgfVxuICAudGFibGUtcmVzcG9uc2l2ZSA+IC50YWJsZSB7XG4gICAgbWFyZ2luLWJvdHRvbTogMDtcbiAgfVxuICAudGFibGUtcmVzcG9uc2l2ZSA+IC50YWJsZSA+IHRoZWFkID4gdHIgPiB0aCxcbiAgLnRhYmxlLXJlc3BvbnNpdmUgPiAudGFibGUgPiB0Ym9keSA+IHRyID4gdGgsXG4gIC50YWJsZS1yZXNwb25zaXZlID4gLnRhYmxlID4gdGZvb3QgPiB0ciA+IHRoLFxuICAudGFibGUtcmVzcG9uc2l2ZSA+IC50YWJsZSA+IHRoZWFkID4gdHIgPiB0ZCxcbiAgLnRhYmxlLXJlc3BvbnNpdmUgPiAudGFibGUgPiB0Ym9keSA+IHRyID4gdGQsXG4gIC50YWJsZS1yZXNwb25zaXZlID4gLnRhYmxlID4gdGZvb3QgPiB0ciA+IHRkIHtcbiAgICB3aGl0ZS1zcGFjZTogbm93cmFwO1xuICB9XG4gIC50YWJsZS1yZXNwb25zaXZlID4gLnRhYmxlLWJvcmRlcmVkIHtcbiAgICBib3JkZXI6IDA7XG4gIH1cbiAgLnRhYmxlLXJlc3BvbnNpdmUgPiAudGFibGUtYm9yZGVyZWQgPiB0aGVhZCA+IHRyID4gdGg6Zmlyc3QtY2hpbGQsXG4gIC50YWJsZS1yZXNwb25zaXZlID4gLnRhYmxlLWJvcmRlcmVkID4gdGJvZHkgPiB0ciA+IHRoOmZpcnN0LWNoaWxkLFxuICAudGFibGUtcmVzcG9uc2l2ZSA+IC50YWJsZS1ib3JkZXJlZCA+IHRmb290ID4gdHIgPiB0aDpmaXJzdC1jaGlsZCxcbiAgLnRhYmxlLXJlc3BvbnNpdmUgPiAudGFibGUtYm9yZGVyZWQgPiB0aGVhZCA+IHRyID4gdGQ6Zmlyc3QtY2hpbGQsXG4gIC50YWJsZS1yZXNwb25zaXZlID4gLnRhYmxlLWJvcmRlcmVkID4gdGJvZHkgPiB0ciA+IHRkOmZpcnN0LWNoaWxkLFxuICAudGFibGUtcmVzcG9uc2l2ZSA+IC50YWJsZS1ib3JkZXJlZCA+IHRmb290ID4gdHIgPiB0ZDpmaXJzdC1jaGlsZCB7XG4gICAgYm9yZGVyLWxlZnQ6IDA7XG4gIH1cbiAgLnRhYmxlLXJlc3BvbnNpdmUgPiAudGFibGUtYm9yZGVyZWQgPiB0aGVhZCA+IHRyID4gdGg6bGFzdC1jaGlsZCxcbiAgLnRhYmxlLXJlc3BvbnNpdmUgPiAudGFibGUtYm9yZGVyZWQgPiB0Ym9keSA+IHRyID4gdGg6bGFzdC1jaGlsZCxcbiAgLnRhYmxlLXJlc3BvbnNpdmUgPiAudGFibGUtYm9yZGVyZWQgPiB0Zm9vdCA+IHRyID4gdGg6bGFzdC1jaGlsZCxcbiAgLnRhYmxlLXJlc3BvbnNpdmUgPiAudGFibGUtYm9yZGVyZWQgPiB0aGVhZCA+IHRyID4gdGQ6bGFzdC1jaGlsZCxcbiAgLnRhYmxlLXJlc3BvbnNpdmUgPiAudGFibGUtYm9yZGVyZWQgPiB0Ym9keSA+IHRyID4gdGQ6bGFzdC1jaGlsZCxcbiAgLnRhYmxlLXJlc3BvbnNpdmUgPiAudGFibGUtYm9yZGVyZWQgPiB0Zm9vdCA+IHRyID4gdGQ6bGFzdC1jaGlsZCB7XG4gICAgYm9yZGVyLXJpZ2h0OiAwO1xuICB9XG4gIC50YWJsZS1yZXNwb25zaXZlID4gLnRhYmxlLWJvcmRlcmVkID4gdGJvZHkgPiB0cjpsYXN0LWNoaWxkID4gdGgsXG4gIC50YWJsZS1yZXNwb25zaXZlID4gLnRhYmxlLWJvcmRlcmVkID4gdGZvb3QgPiB0cjpsYXN0LWNoaWxkID4gdGgsXG4gIC50YWJsZS1yZXNwb25zaXZlID4gLnRhYmxlLWJvcmRlcmVkID4gdGJvZHkgPiB0cjpsYXN0LWNoaWxkID4gdGQsXG4gIC50YWJsZS1yZXNwb25zaXZlID4gLnRhYmxlLWJvcmRlcmVkID4gdGZvb3QgPiB0cjpsYXN0LWNoaWxkID4gdGQge1xuICAgIGJvcmRlci1ib3R0b206IDA7XG4gIH1cbn1cbiIsIi50YWJsZSB7XG4gIHdpZHRoOiAxMDAlO1xuICBtYXgtd2lkdGg6IDEwMCU7XG4gIG1hcmdpbi1ib3R0b206IDFyZW07XG4gIGJhY2tncm91bmQtY29sb3I6IHRyYW5zcGFyZW50O1xufVxuXG4udGFibGUgdGgsXG4udGFibGUgdGQge1xuICBwYWRkaW5nOiAwLjc1cmVtO1xuICB2ZXJ0aWNhbC1hbGlnbjogdG9wO1xuICBib3JkZXItdG9wOiAxcHggc29saWQgI2U5ZWNlZjtcbn1cblxuLnRhYmxlIHRoZWFkIHRoIHtcbiAgdmVydGljYWwtYWxpZ246IGJvdHRvbTtcbiAgYm9yZGVyLWJvdHRvbTogMnB4IHNvbGlkICNlOWVjZWY7XG59XG5cbi50YWJsZSB0Ym9keSArIHRib2R5IHtcbiAgYm9yZGVyLXRvcDogMnB4IHNvbGlkICNlOWVjZWY7XG59XG5cbi50YWJsZSAudGFibGUge1xuICBiYWNrZ3JvdW5kLWNvbG9yOiAjZmZmO1xuICBjb2xvcjogYmxhY2s7XG59XG5cbi50YWJsZS1zbSB0aCxcbi50YWJsZS1zbSB0ZCB7XG4gIHBhZGRpbmc6IDAuM3JlbTtcbn1cblxuLnRhYmxlLWJvcmRlcmVkIHtcbiAgYm9yZGVyOiAxcHggc29saWQgI2U5ZWNlZjtcbn1cblxuLnRhYmxlLWJvcmRlcmVkIHRoLFxuLnRhYmxlLWJvcmRlcmVkIHRkIHtcbiAgYm9yZGVyOiAxcHggc29saWQgI2U5ZWNlZjtcbn1cblxuLnRhYmxlLWJvcmRlcmVkIHRoZWFkIHRoLFxuLnRhYmxlLWJvcmRlcmVkIHRoZWFkIHRkIHtcbiAgYm9yZGVyLWJvdHRvbS13aWR0aDogMnB4O1xufVxuXG4udGFibGUtc3RyaXBlZCB0Ym9keSB0cjpudGgtb2YtdHlwZShvZGQpIHtcbiAgYmFja2dyb3VuZC1jb2xvcjogcmdiYSgwLCAwLCAwLCAwLjA1KTtcbn1cblxuLnRhYmxlLWhvdmVyIHRib2R5IHRyOmhvdmVyIHtcbiAgYmFja2dyb3VuZC1jb2xvcjogcmdiYSgwLCAwLCAwLCAwLjA3NSk7XG59XG5cbi50YWJsZS1wcmltYXJ5LFxuLnRhYmxlLXByaW1hcnkgPiB0aCxcbi50YWJsZS1wcmltYXJ5ID4gdGQge1xuICBiYWNrZ3JvdW5kLWNvbG9yOiAjYjhkYWZmO1xufVxuXG4udGFibGUtaG92ZXIgLnRhYmxlLXByaW1hcnk6aG92ZXIge1xuICBiYWNrZ3JvdW5kLWNvbG9yOiAjOWZjZGZmO1xufVxuXG4udGFibGUtaG92ZXIgLnRhYmxlLXByaW1hcnk6aG92ZXIgPiB0ZCxcbi50YWJsZS1ob3ZlciAudGFibGUtcHJpbWFyeTpob3ZlciA+IHRoIHtcbiAgYmFja2dyb3VuZC1jb2xvcjogIzlmY2RmZjtcbn1cblxuLnRhYmxlLXNlY29uZGFyeSxcbi50YWJsZS1zZWNvbmRhcnkgPiB0aCxcbi50YWJsZS1zZWNvbmRhcnkgPiB0ZCB7XG4gIGJhY2tncm91bmQtY29sb3I6ICNkZGRmZTI7XG59XG5cbi50YWJsZS1ob3ZlciAudGFibGUtc2Vjb25kYXJ5OmhvdmVyIHtcbiAgYmFja2dyb3VuZC1jb2xvcjogI2NmZDJkNjtcbn1cblxuLnRhYmxlLWhvdmVyIC50YWJsZS1zZWNvbmRhcnk6aG92ZXIgPiB0ZCxcbi50YWJsZS1ob3ZlciAudGFibGUtc2Vjb25kYXJ5OmhvdmVyID4gdGgge1xuICBiYWNrZ3JvdW5kLWNvbG9yOiAjY2ZkMmQ2O1xufVxuXG4udGFibGUtc3VjY2Vzcyxcbi50YWJsZS1zdWNjZXNzID4gdGgsXG4udGFibGUtc3VjY2VzcyA+IHRkIHtcbiAgYmFja2dyb3VuZC1jb2xvcjogI2MzZTZjYjtcbn1cblxuLnRhYmxlLWhvdmVyIC50YWJsZS1zdWNjZXNzOmhvdmVyIHtcbiAgYmFja2dyb3VuZC1jb2xvcjogI2IxZGZiYjtcbn1cblxuLnRhYmxlLWhvdmVyIC50YWJsZS1zdWNjZXNzOmhvdmVyID4gdGQsXG4udGFibGUtaG92ZXIgLnRhYmxlLXN1Y2Nlc3M6aG92ZXIgPiB0aCB7XG4gIGJhY2tncm91bmQtY29sb3I6ICNiMWRmYmI7XG59XG5cbi50YWJsZS1pbmZvLFxuLnRhYmxlLWluZm8gPiB0aCxcbi50YWJsZS1pbmZvID4gdGQge1xuICBiYWNrZ3JvdW5kLWNvbG9yOiAjYmVlNWViO1xufVxuXG4udGFibGUtaG92ZXIgLnRhYmxlLWluZm86aG92ZXIge1xuICBiYWNrZ3JvdW5kLWNvbG9yOiAjYWJkZGU1O1xufVxuXG4udGFibGUtaG92ZXIgLnRhYmxlLWluZm86aG92ZXIgPiB0ZCxcbi50YWJsZS1ob3ZlciAudGFibGUtaW5mbzpob3ZlciA+IHRoIHtcbiAgYmFja2dyb3VuZC1jb2xvcjogI2FiZGRlNTtcbn1cblxuLnRhYmxlLXdhcm5pbmcsXG4udGFibGUtd2FybmluZyA+IHRoLFxuLnRhYmxlLXdhcm5pbmcgPiB0ZCB7XG4gIGJhY2tncm91bmQtY29sb3I6ICNmZmVlYmE7XG59XG5cbi50YWJsZS1ob3ZlciAudGFibGUtd2FybmluZzpob3ZlciB7XG4gIGJhY2tncm91bmQtY29sb3I6ICNmZmU4YTE7XG59XG5cbi50YWJsZS1ob3ZlciAudGFibGUtd2FybmluZzpob3ZlciA+IHRkLFxuLnRhYmxlLWhvdmVyIC50YWJsZS13YXJuaW5nOmhvdmVyID4gdGgge1xuICBiYWNrZ3JvdW5kLWNvbG9yOiAjZmZlOGExO1xufVxuXG4udGFibGUtZGFuZ2VyLFxuLnRhYmxlLWRhbmdlciA+IHRoLFxuLnRhYmxlLWRhbmdlciA+IHRkIHtcbiAgYmFja2dyb3VuZC1jb2xvcjogI2Y1YzZjYjtcbn1cblxuLnRhYmxlLWhvdmVyIC50YWJsZS1kYW5nZXI6aG92ZXIge1xuICBiYWNrZ3JvdW5kLWNvbG9yOiAjZjFiMGI3O1xufVxuXG4udGFibGUtaG92ZXIgLnRhYmxlLWRhbmdlcjpob3ZlciA+IHRkLFxuLnRhYmxlLWhvdmVyIC50YWJsZS1kYW5nZXI6aG92ZXIgPiB0aCB7XG4gIGJhY2tncm91bmQtY29sb3I6ICNmMWIwYjc7XG59XG5cbi50YWJsZS1saWdodCxcbi50YWJsZS1saWdodCA+IHRoLFxuLnRhYmxlLWxpZ2h0ID4gdGQge1xuICBiYWNrZ3JvdW5kLWNvbG9yOiAjZmRmZGZlO1xufVxuXG4udGFibGUtaG92ZXIgLnRhYmxlLWxpZ2h0OmhvdmVyIHtcbiAgYmFja2dyb3VuZC1jb2xvcjogI2VjZWNmNjtcbn1cblxuLnRhYmxlLWhvdmVyIC50YWJsZS1saWdodDpob3ZlciA+IHRkLFxuLnRhYmxlLWhvdmVyIC50YWJsZS1saWdodDpob3ZlciA+IHRoIHtcbiAgYmFja2dyb3VuZC1jb2xvcjogI2VjZWNmNjtcbn1cblxuLnRhYmxlLWRhcmssXG4udGFibGUtZGFyayA+IHRoLFxuLnRhYmxlLWRhcmsgPiB0ZCB7XG4gIGJhY2tncm91bmQtY29sb3I6ICNjNmM4Y2E7XG59XG5cbi50YWJsZS1ob3ZlciAudGFibGUtZGFyazpob3ZlciB7XG4gIGJhY2tncm91bmQtY29sb3I6ICNiOWJiYmU7XG59XG5cbi50YWJsZS1ob3ZlciAudGFibGUtZGFyazpob3ZlciA+IHRkLFxuLnRhYmxlLWhvdmVyIC50YWJsZS1kYXJrOmhvdmVyID4gdGgge1xuICBiYWNrZ3JvdW5kLWNvbG9yOiAjYjliYmJlO1xufVxuXG4udGFibGUtYWN0aXZlLFxuLnRhYmxlLWFjdGl2ZSA+IHRoLFxuLnRhYmxlLWFjdGl2ZSA+IHRkIHtcbiAgYmFja2dyb3VuZC1jb2xvcjogcmdiYSgwLCAwLCAwLCAwLjA3NSk7XG59XG5cbi50YWJsZS1ob3ZlciAudGFibGUtYWN0aXZlOmhvdmVyIHtcbiAgYmFja2dyb3VuZC1jb2xvcjogcmdiYSgwLCAwLCAwLCAwLjA3NSk7XG59XG5cbi50YWJsZS1ob3ZlciAudGFibGUtYWN0aXZlOmhvdmVyID4gdGQsXG4udGFibGUtaG92ZXIgLnRhYmxlLWFjdGl2ZTpob3ZlciA+IHRoIHtcbiAgYmFja2dyb3VuZC1jb2xvcjogcmdiYSgwLCAwLCAwLCAwLjA3NSk7XG59XG5cbi50aGVhZC1pbnZlcnNlIHRoIHtcbiAgY29sb3I6ICNmZmY7XG4gIGJhY2tncm91bmQtY29sb3I6ICMyMTI1Mjk7XG59XG5cbi50aGVhZC1kZWZhdWx0IHRoIHtcbiAgY29sb3I6ICM0OTUwNTc7XG4gIGJhY2tncm91bmQtY29sb3I6ICNlOWVjZWY7XG59XG5cbi50YWJsZS1pbnZlcnNlIHtcbiAgY29sb3I6ICNmZmY7XG4gIGJhY2tncm91bmQtY29sb3I6ICMyMTI1Mjk7XG59XG5cbi50YWJsZS1pbnZlcnNlIHRoLFxuLnRhYmxlLWludmVyc2UgdGQsXG4udGFibGUtaW52ZXJzZSB0aGVhZCB0aCB7XG4gIGJvcmRlci1jb2xvcjogIzMyMzgzZTtcbn1cblxuLnRhYmxlLWludmVyc2UudGFibGUtYm9yZGVyZWQge1xuICBib3JkZXI6IDA7XG59XG5cbi50YWJsZS1pbnZlcnNlLnRhYmxlLXN0cmlwZWQgdGJvZHkgdHI6bnRoLW9mLXR5cGUob2RkKSB7XG4gIGJhY2tncm91bmQtY29sb3I6IHJnYmEoMjU1LCAyNTUsIDI1NSwgMC4wNSk7XG59XG5cbi50YWJsZS1pbnZlcnNlLnRhYmxlLWhvdmVyIHRib2R5IHRyOmhvdmVyIHtcbiAgYmFja2dyb3VuZC1jb2xvcjogcmdiYSgyNTUsIDI1NSwgMjU1LCAwLjA3NSk7XG59XG5cbkBtZWRpYSAobWF4LXdpZHRoOiA5OTFweCkge1xuICAudGFibGUtcmVzcG9uc2l2ZSB7XG4gICAgZGlzcGxheTogYmxvY2s7XG4gICAgd2lkdGg6IDEwMCU7XG4gICAgb3ZlcmZsb3cteDogYXV0bztcbiAgICAtbXMtb3ZlcmZsb3ctc3R5bGU6IC1tcy1hdXRvaGlkaW5nLXNjcm9sbGJhcjtcbiAgfVxuICAudGFibGUtcmVzcG9uc2l2ZS50YWJsZS1ib3JkZXJlZCB7XG4gICAgYm9yZGVyOiAwO1xuICB9XG59XG4iLCIvKiFcbiAqICMgU2VtYW50aWMgVUkgMi4yLjEyIC0gVGFibGVcbiAqIGh0dHA6Ly9naXRodWIuY29tL3NlbWFudGljLW9yZy9zZW1hbnRpYy11aS9cbiAqXG4gKlxuICogUmVsZWFzZWQgdW5kZXIgdGhlIE1JVCBsaWNlbnNlXG4gKiBodHRwOi8vb3BlbnNvdXJjZS5vcmcvbGljZW5zZXMvTUlUXG4gKlxuICovXG5cblxuLyoqKioqKioqKioqKioqKioqKioqKioqKioqKioqKipcbiAgICAgICAgICAgICBUYWJsZVxuKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKi9cblxuXG4vKiBQcm90b3R5cGUgKi9cbi51aS50YWJsZSB7XG4gIHdpZHRoOiAxMDAlO1xuICBiYWNrZ3JvdW5kOiAjRkZGRkZGO1xuICBtYXJnaW46IDFlbSAwZW07XG4gIGJvcmRlcjogMXB4IHNvbGlkIHJnYmEoMzQsIDM2LCAzOCwgMC4xNSk7XG4gIGJveC1zaGFkb3c6IG5vbmU7XG4gIGJvcmRlci1yYWRpdXM6IDAuMjg1NzE0MjlyZW07XG4gIHRleHQtYWxpZ246IGxlZnQ7XG4gIGNvbG9yOiByZ2JhKDAsIDAsIDAsIDAuODcpO1xuICBib3JkZXItY29sbGFwc2U6IHNlcGFyYXRlO1xuICBib3JkZXItc3BhY2luZzogMHB4O1xufVxuLnVpLnRhYmxlOmZpcnN0LWNoaWxkIHtcbiAgbWFyZ2luLXRvcDogMGVtO1xufVxuLnVpLnRhYmxlOmxhc3QtY2hpbGQge1xuICBtYXJnaW4tYm90dG9tOiAwZW07XG59XG5cblxuLyoqKioqKioqKioqKioqKioqKioqKioqKioqKioqKipcbiAgICAgICAgICAgICBQYXJ0c1xuKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKi9cblxuXG4vKiBUYWJsZSBDb250ZW50ICovXG4udWkudGFibGUgdGgsXG4udWkudGFibGUgdGQge1xuICAtd2Via2l0LXRyYW5zaXRpb246IGJhY2tncm91bmQgMC4xcyBlYXNlLCBjb2xvciAwLjFzIGVhc2U7XG4gIHRyYW5zaXRpb246IGJhY2tncm91bmQgMC4xcyBlYXNlLCBjb2xvciAwLjFzIGVhc2U7XG59XG5cbi8qIEhlYWRlcnMgKi9cbi51aS50YWJsZSB0aGVhZCB7XG4gIGJveC1zaGFkb3c6IG5vbmU7XG59XG4udWkudGFibGUgdGhlYWQgdGgge1xuICBjdXJzb3I6IGF1dG87XG4gIGJhY2tncm91bmQ6ICNGOUZBRkI7XG4gIHRleHQtYWxpZ246IGluaGVyaXQ7XG4gIGNvbG9yOiByZ2JhKDAsIDAsIDAsIDAuODcpO1xuICBwYWRkaW5nOiAwLjkyODU3MTQzZW0gMC43ODU3MTQyOWVtO1xuICB2ZXJ0aWNhbC1hbGlnbjogaW5oZXJpdDtcbiAgZm9udC1zdHlsZTogbm9uZTtcbiAgZm9udC13ZWlnaHQ6IGJvbGQ7XG4gIHRleHQtdHJhbnNmb3JtOiBub25lO1xuICBib3JkZXItYm90dG9tOiAxcHggc29saWQgcmdiYSgzNCwgMzYsIDM4LCAwLjEpO1xuICBib3JkZXItbGVmdDogbm9uZTtcbn1cbi51aS50YWJsZSB0aGVhZCB0ciA+IHRoOmZpcnN0LWNoaWxkIHtcbiAgYm9yZGVyLWxlZnQ6IG5vbmU7XG59XG4udWkudGFibGUgdGhlYWQgdHI6Zmlyc3QtY2hpbGQgPiB0aDpmaXJzdC1jaGlsZCB7XG4gIGJvcmRlci1yYWRpdXM6IDAuMjg1NzE0MjlyZW0gMGVtIDBlbSAwZW07XG59XG4udWkudGFibGUgdGhlYWQgdHI6Zmlyc3QtY2hpbGQgPiB0aDpsYXN0LWNoaWxkIHtcbiAgYm9yZGVyLXJhZGl1czogMGVtIDAuMjg1NzE0MjlyZW0gMGVtIDBlbTtcbn1cbi51aS50YWJsZSB0aGVhZCB0cjpmaXJzdC1jaGlsZCA+IHRoOm9ubHktY2hpbGQge1xuICBib3JkZXItcmFkaXVzOiAwLjI4NTcxNDI5cmVtIDAuMjg1NzE0MjlyZW0gMGVtIDBlbTtcbn1cblxuLyogRm9vdGVyICovXG4udWkudGFibGUgdGZvb3Qge1xuICBib3gtc2hhZG93OiBub25lO1xufVxuLnVpLnRhYmxlIHRmb290IHRoIHtcbiAgY3Vyc29yOiBhdXRvO1xuICBib3JkZXItdG9wOiAxcHggc29saWQgcmdiYSgzNCwgMzYsIDM4LCAwLjE1KTtcbiAgYmFja2dyb3VuZDogI0Y5RkFGQjtcbiAgdGV4dC1hbGlnbjogaW5oZXJpdDtcbiAgY29sb3I6IHJnYmEoMCwgMCwgMCwgMC44Nyk7XG4gIHBhZGRpbmc6IDAuNzg1NzE0MjllbSAwLjc4NTcxNDI5ZW07XG4gIHZlcnRpY2FsLWFsaWduOiBtaWRkbGU7XG4gIGZvbnQtc3R5bGU6IG5vcm1hbDtcbiAgZm9udC13ZWlnaHQ6IG5vcm1hbDtcbiAgdGV4dC10cmFuc2Zvcm06IG5vbmU7XG59XG4udWkudGFibGUgdGZvb3QgdHIgPiB0aDpmaXJzdC1jaGlsZCB7XG4gIGJvcmRlci1sZWZ0OiBub25lO1xufVxuLnVpLnRhYmxlIHRmb290IHRyOmZpcnN0LWNoaWxkID4gdGg6Zmlyc3QtY2hpbGQge1xuICBib3JkZXItcmFkaXVzOiAwZW0gMGVtIDBlbSAwLjI4NTcxNDI5cmVtO1xufVxuLnVpLnRhYmxlIHRmb290IHRyOmZpcnN0LWNoaWxkID4gdGg6bGFzdC1jaGlsZCB7XG4gIGJvcmRlci1yYWRpdXM6IDBlbSAwZW0gMC4yODU3MTQyOXJlbSAwZW07XG59XG4udWkudGFibGUgdGZvb3QgdHI6Zmlyc3QtY2hpbGQgPiB0aDpvbmx5LWNoaWxkIHtcbiAgYm9yZGVyLXJhZGl1czogMGVtIDBlbSAwLjI4NTcxNDI5cmVtIDAuMjg1NzE0MjlyZW07XG59XG5cbi8qIFRhYmxlIFJvdyAqL1xuLnVpLnRhYmxlIHRyIHRkIHtcbiAgYm9yZGVyLXRvcDogMXB4IHNvbGlkIHJnYmEoMzQsIDM2LCAzOCwgMC4xKTtcbn1cbi51aS50YWJsZSB0cjpmaXJzdC1jaGlsZCB0ZCB7XG4gIGJvcmRlci10b3A6IG5vbmU7XG59XG5cbi8qIFRhYmxlIENlbGxzICovXG4udWkudGFibGUgdGQge1xuICBwYWRkaW5nOiAwLjc4NTcxNDI5ZW0gMC43ODU3MTQyOWVtO1xuICB0ZXh0LWFsaWduOiBpbmhlcml0O1xufVxuXG4vKiBJY29ucyAqL1xuLnVpLnRhYmxlID4gLmljb24ge1xuICB2ZXJ0aWNhbC1hbGlnbjogYmFzZWxpbmU7XG59XG4udWkudGFibGUgPiAuaWNvbjpvbmx5LWNoaWxkIHtcbiAgbWFyZ2luOiAwZW07XG59XG5cbi8qIFRhYmxlIFNlZ21lbnQgKi9cbi51aS50YWJsZS5zZWdtZW50IHtcbiAgcGFkZGluZzogMGVtO1xufVxuLnVpLnRhYmxlLnNlZ21lbnQ6YWZ0ZXIge1xuICBkaXNwbGF5OiBub25lO1xufVxuLnVpLnRhYmxlLnNlZ21lbnQuc3RhY2tlZDphZnRlciB7XG4gIGRpc3BsYXk6IGJsb2NrO1xufVxuXG5cbi8qKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqXG4gICAgICAgICAgICBDb3VwbGluZ1xuKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKi9cblxuXG4vKiBVSSBJbWFnZSAqL1xuLnVpLnRhYmxlIHRoIC5pbWFnZSxcbi51aS50YWJsZSB0aCAuaW1hZ2UgaW1nLFxuLnVpLnRhYmxlIHRkIC5pbWFnZSxcbi51aS50YWJsZSB0ZCAuaW1hZ2UgaW1nIHtcbiAgbWF4LXdpZHRoOiBub25lO1xufVxuXG5cbi8qKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqXG4gICAgICAgICAgICAgVHlwZXNcbioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKiovXG5cblxuLyotLS0tLS0tLS0tLS0tLVxuICAgIENvbXBsZXhcbi0tLS0tLS0tLS0tLS0tLSovXG5cbi51aS5zdHJ1Y3R1cmVkLnRhYmxlIHtcbiAgYm9yZGVyLWNvbGxhcHNlOiBjb2xsYXBzZTtcbn1cbi51aS5zdHJ1Y3R1cmVkLnRhYmxlIHRoZWFkIHRoIHtcbiAgYm9yZGVyLWxlZnQ6IG5vbmU7XG4gIGJvcmRlci1yaWdodDogbm9uZTtcbn1cbi51aS5zdHJ1Y3R1cmVkLnNvcnRhYmxlLnRhYmxlIHRoZWFkIHRoIHtcbiAgYm9yZGVyLWxlZnQ6IDFweCBzb2xpZCByZ2JhKDM0LCAzNiwgMzgsIDAuMTUpO1xuICBib3JkZXItcmlnaHQ6IDFweCBzb2xpZCByZ2JhKDM0LCAzNiwgMzgsIDAuMTUpO1xufVxuLnVpLnN0cnVjdHVyZWQuYmFzaWMudGFibGUgdGgge1xuICBib3JkZXItbGVmdDogbm9uZTtcbiAgYm9yZGVyLXJpZ2h0OiBub25lO1xufVxuLnVpLnN0cnVjdHVyZWQuY2VsbGVkLnRhYmxlIHRyIHRoLFxuLnVpLnN0cnVjdHVyZWQuY2VsbGVkLnRhYmxlIHRyIHRkIHtcbiAgYm9yZGVyLWxlZnQ6IDFweCBzb2xpZCByZ2JhKDM0LCAzNiwgMzgsIDAuMSk7XG4gIGJvcmRlci1yaWdodDogMXB4IHNvbGlkIHJnYmEoMzQsIDM2LCAzOCwgMC4xKTtcbn1cblxuLyotLS0tLS0tLS0tLS0tLVxuICAgRGVmaW5pdGlvblxuLS0tLS0tLS0tLS0tLS0tKi9cblxuLnVpLmRlZmluaXRpb24udGFibGUgdGhlYWQ6bm90KC5mdWxsLXdpZHRoKSB0aDpmaXJzdC1jaGlsZCB7XG4gIHBvaW50ZXItZXZlbnRzOiBub25lO1xuICBiYWNrZ3JvdW5kOiB0cmFuc3BhcmVudDtcbiAgZm9udC13ZWlnaHQ6IG5vcm1hbDtcbiAgY29sb3I6IHJnYmEoMCwgMCwgMCwgMC40KTtcbiAgYm94LXNoYWRvdzogLTFweCAtMXB4IDBweCAxcHggI0ZGRkZGRjtcbn1cbi51aS5kZWZpbml0aW9uLnRhYmxlIHRmb290Om5vdCguZnVsbC13aWR0aCkgdGg6Zmlyc3QtY2hpbGQge1xuICBwb2ludGVyLWV2ZW50czogbm9uZTtcbiAgYmFja2dyb3VuZDogdHJhbnNwYXJlbnQ7XG4gIGZvbnQtd2VpZ2h0OiByZ2JhKDAsIDAsIDAsIDAuNCk7XG4gIGNvbG9yOiBub3JtYWw7XG4gIGJveC1zaGFkb3c6IDFweCAxcHggMHB4IDFweCAjRkZGRkZGO1xufVxuXG4vKiBSZW1vdmUgQm9yZGVyICovXG4udWkuY2VsbGVkLmRlZmluaXRpb24udGFibGUgdGhlYWQ6bm90KC5mdWxsLXdpZHRoKSB0aDpmaXJzdC1jaGlsZCB7XG4gIGJveC1zaGFkb3c6IDBweCAtMXB4IDBweCAxcHggI0ZGRkZGRjtcbn1cbi51aS5jZWxsZWQuZGVmaW5pdGlvbi50YWJsZSB0Zm9vdDpub3QoLmZ1bGwtd2lkdGgpIHRoOmZpcnN0LWNoaWxkIHtcbiAgYm94LXNoYWRvdzogMHB4IDFweCAwcHggMXB4ICNGRkZGRkY7XG59XG5cbi8qIEhpZ2hsaWdodCBEZWZpbmluZyBDb2x1bW4gKi9cbi51aS5kZWZpbml0aW9uLnRhYmxlIHRyIHRkOmZpcnN0LWNoaWxkOm5vdCguaWdub3JlZCksXG4udWkuZGVmaW5pdGlvbi50YWJsZSB0ciB0ZC5kZWZpbml0aW9uIHtcbiAgYmFja2dyb3VuZDogcmdiYSgwLCAwLCAwLCAwLjAzKTtcbiAgZm9udC13ZWlnaHQ6IGJvbGQ7XG4gIGNvbG9yOiByZ2JhKDAsIDAsIDAsIDAuOTUpO1xuICB0ZXh0LXRyYW5zZm9ybTogJyc7XG4gIGJveC1zaGFkb3c6ICcnO1xuICB0ZXh0LWFsaWduOiAnJztcbiAgZm9udC1zaXplOiAxZW07XG4gIHBhZGRpbmctbGVmdDogJyc7XG4gIHBhZGRpbmctcmlnaHQ6ICcnO1xufVxuXG4vKiBGaXggMm5kIENvbHVtbiAqL1xuLnVpLmRlZmluaXRpb24udGFibGUgdGhlYWQ6bm90KC5mdWxsLXdpZHRoKSB0aDpudGgtY2hpbGQoMikge1xuICBib3JkZXItbGVmdDogMXB4IHNvbGlkIHJnYmEoMzQsIDM2LCAzOCwgMC4xNSk7XG59XG4udWkuZGVmaW5pdGlvbi50YWJsZSB0Zm9vdDpub3QoLmZ1bGwtd2lkdGgpIHRoOm50aC1jaGlsZCgyKSB7XG4gIGJvcmRlci1sZWZ0OiAxcHggc29saWQgcmdiYSgzNCwgMzYsIDM4LCAwLjE1KTtcbn1cbi51aS5kZWZpbml0aW9uLnRhYmxlIHRkOm50aC1jaGlsZCgyKSB7XG4gIGJvcmRlci1sZWZ0OiAxcHggc29saWQgcmdiYSgzNCwgMzYsIDM4LCAwLjE1KTtcbn1cblxuXG4vKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKlxuICAgICAgICAgICAgIFN0YXRlc1xuKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKi9cblxuXG4vKi0tLS0tLS0tLS0tLS0tXG4gICAgUG9zaXRpdmVcbi0tLS0tLS0tLS0tLS0tLSovXG5cbi51aS50YWJsZSB0ci5wb3NpdGl2ZSxcbi51aS50YWJsZSB0ZC5wb3NpdGl2ZSB7XG4gIGJveC1zaGFkb3c6IDBweCAwcHggMHB4ICNBM0MyOTMgaW5zZXQ7XG59XG4udWkudGFibGUgdHIucG9zaXRpdmUsXG4udWkudGFibGUgdGQucG9zaXRpdmUge1xuICBiYWNrZ3JvdW5kOiAjRkNGRkY1ICFpbXBvcnRhbnQ7XG4gIGNvbG9yOiAjMkM2NjJEICFpbXBvcnRhbnQ7XG59XG5cbi8qLS0tLS0tLS0tLS0tLS1cbiAgICAgTmVnYXRpdmVcbi0tLS0tLS0tLS0tLS0tLSovXG5cbi51aS50YWJsZSB0ci5uZWdhdGl2ZSxcbi51aS50YWJsZSB0ZC5uZWdhdGl2ZSB7XG4gIGJveC1zaGFkb3c6IDBweCAwcHggMHB4ICNFMEI0QjQgaW5zZXQ7XG59XG4udWkudGFibGUgdHIubmVnYXRpdmUsXG4udWkudGFibGUgdGQubmVnYXRpdmUge1xuICBiYWNrZ3JvdW5kOiAjRkZGNkY2ICFpbXBvcnRhbnQ7XG4gIGNvbG9yOiAjOUYzQTM4ICFpbXBvcnRhbnQ7XG59XG5cbi8qLS0tLS0tLS0tLS0tLS1cbiAgICAgIEVycm9yXG4tLS0tLS0tLS0tLS0tLS0qL1xuXG4udWkudGFibGUgdHIuZXJyb3IsXG4udWkudGFibGUgdGQuZXJyb3Ige1xuICBib3gtc2hhZG93OiAwcHggMHB4IDBweCAjRTBCNEI0IGluc2V0O1xufVxuLnVpLnRhYmxlIHRyLmVycm9yLFxuLnVpLnRhYmxlIHRkLmVycm9yIHtcbiAgYmFja2dyb3VuZDogI0ZGRjZGNiAhaW1wb3J0YW50O1xuICBjb2xvcjogIzlGM0EzOCAhaW1wb3J0YW50O1xufVxuXG4vKi0tLS0tLS0tLS0tLS0tXG4gICAgIFdhcm5pbmdcbi0tLS0tLS0tLS0tLS0tLSovXG5cbi51aS50YWJsZSB0ci53YXJuaW5nLFxuLnVpLnRhYmxlIHRkLndhcm5pbmcge1xuICBib3gtc2hhZG93OiAwcHggMHB4IDBweCAjQzlCQTlCIGluc2V0O1xufVxuLnVpLnRhYmxlIHRyLndhcm5pbmcsXG4udWkudGFibGUgdGQud2FybmluZyB7XG4gIGJhY2tncm91bmQ6ICNGRkZBRjMgIWltcG9ydGFudDtcbiAgY29sb3I6ICM1NzNBMDggIWltcG9ydGFudDtcbn1cblxuLyotLS0tLS0tLS0tLS0tLVxuICAgICBBY3RpdmVcbi0tLS0tLS0tLS0tLS0tLSovXG5cbi51aS50YWJsZSB0ci5hY3RpdmUsXG4udWkudGFibGUgdGQuYWN0aXZlIHtcbiAgYm94LXNoYWRvdzogMHB4IDBweCAwcHggcmdiYSgwLCAwLCAwLCAwLjg3KSBpbnNldDtcbn1cbi51aS50YWJsZSB0ci5hY3RpdmUsXG4udWkudGFibGUgdGQuYWN0aXZlIHtcbiAgYmFja2dyb3VuZDogI0UwRTBFMCAhaW1wb3J0YW50O1xuICBjb2xvcjogcmdiYSgwLCAwLCAwLCAwLjg3KSAhaW1wb3J0YW50O1xufVxuXG4vKi0tLS0tLS0tLS0tLS0tXG4gICAgIERpc2FibGVkXG4tLS0tLS0tLS0tLS0tLS0qL1xuXG4udWkudGFibGUgdHIuZGlzYWJsZWQgdGQsXG4udWkudGFibGUgdHIgdGQuZGlzYWJsZWQsXG4udWkudGFibGUgdHIuZGlzYWJsZWQ6aG92ZXIsXG4udWkudGFibGUgdHI6aG92ZXIgdGQuZGlzYWJsZWQge1xuICBwb2ludGVyLWV2ZW50czogbm9uZTtcbiAgY29sb3I6IHJnYmEoNDAsIDQwLCA0MCwgMC4zKTtcbn1cblxuXG4vKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKlxuICAgICAgICAgIFZhcmlhdGlvbnNcbioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKiovXG5cblxuLyotLS0tLS0tLS0tLS0tLVxuICAgIFN0YWNrYWJsZVxuLS0tLS0tLS0tLS0tLS0tKi9cblxuQG1lZGlhIG9ubHkgc2NyZWVuIGFuZCAobWF4LXdpZHRoOiA5OTFweCkge1xuICAudWlbY2xhc3MqPVwidGFibGV0IHN0YWNrYWJsZVwiXS50YWJsZSxcbiAgLnVpW2NsYXNzKj1cInRhYmxldCBzdGFja2FibGVcIl0udGFibGUgdGJvZHksXG4gIC51aVtjbGFzcyo9XCJ0YWJsZXQgc3RhY2thYmxlXCJdLnRhYmxlIHRyLFxuICAudWlbY2xhc3MqPVwidGFibGV0IHN0YWNrYWJsZVwiXS50YWJsZSB0ciA+IHRoLFxuICAudWlbY2xhc3MqPVwidGFibGV0IHN0YWNrYWJsZVwiXS50YWJsZSB0ciA+IHRkIHtcbiAgICB3aWR0aDogMTAwJSAhaW1wb3J0YW50O1xuICAgIGRpc3BsYXk6IGJsb2NrICFpbXBvcnRhbnQ7XG4gIH1cbiAgLnVpW2NsYXNzKj1cInRhYmxldCBzdGFja2FibGVcIl0udGFibGUge1xuICAgIHBhZGRpbmc6IDBlbTtcbiAgfVxuICAudWlbY2xhc3MqPVwidGFibGV0IHN0YWNrYWJsZVwiXS50YWJsZSB0aGVhZCB7XG4gICAgZGlzcGxheTogYmxvY2s7XG4gIH1cbiAgLnVpW2NsYXNzKj1cInRhYmxldCBzdGFja2FibGVcIl0udGFibGUgdGZvb3Qge1xuICAgIGRpc3BsYXk6IGJsb2NrO1xuICB9XG4gIC51aVtjbGFzcyo9XCJ0YWJsZXQgc3RhY2thYmxlXCJdLnRhYmxlIHRyIHtcbiAgICBwYWRkaW5nLXRvcDogMWVtO1xuICAgIHBhZGRpbmctYm90dG9tOiAxZW07XG4gICAgYm94LXNoYWRvdzogMHB4IC0xcHggMHB4IDBweCByZ2JhKDAsIDAsIDAsIDAuMSkgaW5zZXQgIWltcG9ydGFudDtcbiAgfVxuICAudWlbY2xhc3MqPVwidGFibGV0IHN0YWNrYWJsZVwiXS50YWJsZSB0ciA+IHRoLFxuICAudWlbY2xhc3MqPVwidGFibGV0IHN0YWNrYWJsZVwiXS50YWJsZSB0ciA+IHRkIHtcbiAgICBiYWNrZ3JvdW5kOiBub25lO1xuICAgIGJvcmRlcjogbm9uZSAhaW1wb3J0YW50O1xuICAgIHBhZGRpbmc6IDAuMjVlbSAwLjc1ZW07XG4gICAgYm94LXNoYWRvdzogbm9uZSAhaW1wb3J0YW50O1xuICB9XG5cbiAgLyogRGVmaW5pdGlvbiBUYWJsZSAqL1xuICAudWkuZGVmaW5pdGlvbltjbGFzcyo9XCJ0YWJsZXQgc3RhY2thYmxlXCJdLnRhYmxlIHRoZWFkIHRoOmZpcnN0LWNoaWxkIHtcbiAgICBib3gtc2hhZG93OiBub25lICFpbXBvcnRhbnQ7XG4gIH1cbn1cblxuLyotLS0tLS0tLS0tLS0tLVxuIFRleHQgQWxpZ25tZW50XG4tLS0tLS0tLS0tLS0tLS0qL1xuXG4udWkudGFibGVbY2xhc3MqPVwibGVmdCBhbGlnbmVkXCJdLFxuLnVpLnRhYmxlIFtjbGFzcyo9XCJsZWZ0IGFsaWduZWRcIl0ge1xuICB0ZXh0LWFsaWduOiBsZWZ0O1xufVxuLnVpLnRhYmxlW2NsYXNzKj1cImNlbnRlciBhbGlnbmVkXCJdLFxuLnVpLnRhYmxlIFtjbGFzcyo9XCJjZW50ZXIgYWxpZ25lZFwiXSB7XG4gIHRleHQtYWxpZ246IGNlbnRlcjtcbn1cbi51aS50YWJsZVtjbGFzcyo9XCJyaWdodCBhbGlnbmVkXCJdLFxuLnVpLnRhYmxlIFtjbGFzcyo9XCJyaWdodCBhbGlnbmVkXCJdIHtcbiAgdGV4dC1hbGlnbjogcmlnaHQ7XG59XG5cbi8qLS0tLS0tLS0tLS0tLS0tLS0tXG4gVmVydGljYWwgQWxpZ25tZW50XG4tLS0tLS0tLS0tLS0tLS0tLS0qL1xuXG4udWkudGFibGVbY2xhc3MqPVwidG9wIGFsaWduZWRcIl0sXG4udWkudGFibGUgW2NsYXNzKj1cInRvcCBhbGlnbmVkXCJdIHtcbiAgdmVydGljYWwtYWxpZ246IHRvcDtcbn1cbi51aS50YWJsZVtjbGFzcyo9XCJtaWRkbGUgYWxpZ25lZFwiXSxcbi51aS50YWJsZSBbY2xhc3MqPVwibWlkZGxlIGFsaWduZWRcIl0ge1xuICB2ZXJ0aWNhbC1hbGlnbjogbWlkZGxlO1xufVxuLnVpLnRhYmxlW2NsYXNzKj1cImJvdHRvbSBhbGlnbmVkXCJdLFxuLnVpLnRhYmxlIFtjbGFzcyo9XCJib3R0b20gYWxpZ25lZFwiXSB7XG4gIHZlcnRpY2FsLWFsaWduOiBib3R0b207XG59XG5cbi8qLS0tLS0tLS0tLS0tLS1cbiAgICAgRml4ZWRcbi0tLS0tLS0tLS0tLS0tLSovXG5cbi51aS5maXhlZC50YWJsZSB7XG4gIHRhYmxlLWxheW91dDogZml4ZWQ7XG59XG4udWkuZml4ZWQudGFibGUgdGgsXG4udWkuZml4ZWQudGFibGUgdGQge1xuICBvdmVyZmxvdzogaGlkZGVuO1xuICB0ZXh0LW92ZXJmbG93OiBlbGxpcHNpcztcbn1cblxuLyotLS0tLS0tLS0tLS0tLVxuICAgU2VsZWN0YWJsZVxuLS0tLS0tLS0tLS0tLS0tKi9cblxuLnVpLnNlbGVjdGFibGUudGFibGUgdGJvZHkgdHI6aG92ZXIsXG4udWkudGFibGUgdGJvZHkgdHIgdGQuc2VsZWN0YWJsZTpob3ZlciB7XG4gIGJhY2tncm91bmQ6IHJnYmEoMCwgMCwgMCwgMC4wNSkgIWltcG9ydGFudDtcbiAgY29sb3I6IHJnYmEoMCwgMCwgMCwgMC45NSkgIWltcG9ydGFudDtcbn1cbi51aS5zZWxlY3RhYmxlLmludmVydGVkLnRhYmxlIHRib2R5IHRyOmhvdmVyLFxuLnVpLmludmVydGVkLnRhYmxlIHRib2R5IHRyIHRkLnNlbGVjdGFibGU6aG92ZXIge1xuICBiYWNrZ3JvdW5kOiByZ2JhKDI1NSwgMjU1LCAyNTUsIDAuMDgpICFpbXBvcnRhbnQ7XG4gIGNvbG9yOiAjZmZmZmZmICFpbXBvcnRhbnQ7XG59XG5cbi8qIFNlbGVjdGFibGUgQ2VsbCBMaW5rICovXG4udWkudGFibGUgdGJvZHkgdHIgdGQuc2VsZWN0YWJsZSB7XG4gIHBhZGRpbmc6IDBlbTtcbn1cbi51aS50YWJsZSB0Ym9keSB0ciB0ZC5zZWxlY3RhYmxlID4gYTpub3QoLnVpKSB7XG4gIGRpc3BsYXk6IGJsb2NrO1xuICBjb2xvcjogaW5oZXJpdDtcbiAgcGFkZGluZzogMC43ODU3MTQyOWVtIDAuNzg1NzE0MjllbTtcbn1cblxuLyogT3RoZXIgU3RhdGVzICovXG4udWkuc2VsZWN0YWJsZS50YWJsZSB0ci5lcnJvcjpob3Zlcixcbi51aS50YWJsZSB0ciB0ZC5zZWxlY3RhYmxlLmVycm9yOmhvdmVyLFxuLnVpLnNlbGVjdGFibGUudGFibGUgdHI6aG92ZXIgdGQuZXJyb3Ige1xuICBiYWNrZ3JvdW5kOiAjZmZlN2U3ICFpbXBvcnRhbnQ7XG4gIGNvbG9yOiAjOTQzNjM0ICFpbXBvcnRhbnQ7XG59XG4udWkuc2VsZWN0YWJsZS50YWJsZSB0ci53YXJuaW5nOmhvdmVyLFxuLnVpLnRhYmxlIHRyIHRkLnNlbGVjdGFibGUud2FybmluZzpob3Zlcixcbi51aS5zZWxlY3RhYmxlLnRhYmxlIHRyOmhvdmVyIHRkLndhcm5pbmcge1xuICBiYWNrZ3JvdW5kOiAjZmZmNGU0ICFpbXBvcnRhbnQ7XG4gIGNvbG9yOiAjNDkzMTA3ICFpbXBvcnRhbnQ7XG59XG4udWkuc2VsZWN0YWJsZS50YWJsZSB0ci5hY3RpdmU6aG92ZXIsXG4udWkudGFibGUgdHIgdGQuc2VsZWN0YWJsZS5hY3RpdmU6aG92ZXIsXG4udWkuc2VsZWN0YWJsZS50YWJsZSB0cjpob3ZlciB0ZC5hY3RpdmUge1xuICBiYWNrZ3JvdW5kOiAjRTBFMEUwICFpbXBvcnRhbnQ7XG4gIGNvbG9yOiByZ2JhKDAsIDAsIDAsIDAuODcpICFpbXBvcnRhbnQ7XG59XG4udWkuc2VsZWN0YWJsZS50YWJsZSB0ci5wb3NpdGl2ZTpob3Zlcixcbi51aS50YWJsZSB0ciB0ZC5zZWxlY3RhYmxlLnBvc2l0aXZlOmhvdmVyLFxuLnVpLnNlbGVjdGFibGUudGFibGUgdHI6aG92ZXIgdGQucG9zaXRpdmUge1xuICBiYWNrZ3JvdW5kOiAjZjdmZmU2ICFpbXBvcnRhbnQ7XG4gIGNvbG9yOiAjMjc1YjI4ICFpbXBvcnRhbnQ7XG59XG4udWkuc2VsZWN0YWJsZS50YWJsZSB0ci5uZWdhdGl2ZTpob3Zlcixcbi51aS50YWJsZSB0ciB0ZC5zZWxlY3RhYmxlLm5lZ2F0aXZlOmhvdmVyLFxuLnVpLnNlbGVjdGFibGUudGFibGUgdHI6aG92ZXIgdGQubmVnYXRpdmUge1xuICBiYWNrZ3JvdW5kOiAjZmZlN2U3ICFpbXBvcnRhbnQ7XG4gIGNvbG9yOiAjOTQzNjM0ICFpbXBvcnRhbnQ7XG59XG5cbi8qLS0tLS0tLS0tLS0tLS0tLS0tLVxuICAgICAgQXR0YWNoZWRcbi0tLS0tLS0tLS0tLS0tLS0tLS0tKi9cblxuXG4vKiBNaWRkbGUgKi9cbi51aS5hdHRhY2hlZC50YWJsZSB7XG4gIHRvcDogMHB4O1xuICBib3R0b206IDBweDtcbiAgYm9yZGVyLXJhZGl1czogMHB4O1xuICBtYXJnaW46IDBlbSAtMXB4O1xuICB3aWR0aDogY2FsYygxMDAlICsgIDJweCApO1xuICBtYXgtd2lkdGg6IGNhbGMoMTAwJSArICAycHggKTtcbiAgYm94LXNoYWRvdzogbm9uZTtcbiAgYm9yZGVyOiAxcHggc29saWQgI0Q0RDRENTtcbn1cbi51aS5hdHRhY2hlZCArIC51aS5hdHRhY2hlZC50YWJsZTpub3QoLnRvcCkge1xuICBib3JkZXItdG9wOiBub25lO1xufVxuXG4vKiBUb3AgKi9cbi51aVtjbGFzcyo9XCJ0b3AgYXR0YWNoZWRcIl0udGFibGUge1xuICBib3R0b206IDBweDtcbiAgbWFyZ2luLWJvdHRvbTogMGVtO1xuICB0b3A6IDBweDtcbiAgbWFyZ2luLXRvcDogMWVtO1xuICBib3JkZXItcmFkaXVzOiAwLjI4NTcxNDI5cmVtIDAuMjg1NzE0MjlyZW0gMGVtIDBlbTtcbn1cbi51aS50YWJsZVtjbGFzcyo9XCJ0b3AgYXR0YWNoZWRcIl06Zmlyc3QtY2hpbGQge1xuICBtYXJnaW4tdG9wOiAwZW07XG59XG5cbi8qIEJvdHRvbSAqL1xuLnVpW2NsYXNzKj1cImJvdHRvbSBhdHRhY2hlZFwiXS50YWJsZSB7XG4gIGJvdHRvbTogMHB4O1xuICBtYXJnaW4tdG9wOiAwZW07XG4gIHRvcDogMHB4O1xuICBtYXJnaW4tYm90dG9tOiAxZW07XG4gIGJveC1zaGFkb3c6IG5vbmUsIG5vbmU7XG4gIGJvcmRlci1yYWRpdXM6IDBlbSAwZW0gMC4yODU3MTQyOXJlbSAwLjI4NTcxNDI5cmVtO1xufVxuLnVpW2NsYXNzKj1cImJvdHRvbSBhdHRhY2hlZFwiXS50YWJsZTpsYXN0LWNoaWxkIHtcbiAgbWFyZ2luLWJvdHRvbTogMGVtO1xufVxuXG4vKi0tLS0tLS0tLS0tLS0tXG4gICAgIFN0cmlwZWRcbi0tLS0tLS0tLS0tLS0tLSovXG5cblxuLyogVGFibGUgU3RyaXBpbmcgKi9cbi51aS5zdHJpcGVkLnRhYmxlID4gdHI6bnRoLWNoaWxkKDJuKSxcbi51aS5zdHJpcGVkLnRhYmxlIHRib2R5IHRyOm50aC1jaGlsZCgybikge1xuICBiYWNrZ3JvdW5kLWNvbG9yOiByZ2JhKDAsIDAsIDUwLCAwLjAyKTtcbn1cblxuLyogU3RyaXBlcyAqL1xuLnVpLmludmVydGVkLnN0cmlwZWQudGFibGUgPiB0cjpudGgtY2hpbGQoMm4pLFxuLnVpLmludmVydGVkLnN0cmlwZWQudGFibGUgdGJvZHkgdHI6bnRoLWNoaWxkKDJuKSB7XG4gIGJhY2tncm91bmQtY29sb3I6IHJnYmEoMjU1LCAyNTUsIDI1NSwgMC4wNSk7XG59XG5cbi8qIEFsbG93IHN0cmlwZWQgYWN0aXZlIGhvdmVyICovXG4udWkuc3RyaXBlZC5zZWxlY3RhYmxlLnNlbGVjdGFibGUuc2VsZWN0YWJsZS50YWJsZSB0Ym9keSB0ci5hY3RpdmU6aG92ZXIge1xuICBiYWNrZ3JvdW5kOiAjRUZFRkVGICFpbXBvcnRhbnQ7XG4gIGNvbG9yOiByZ2JhKDAsIDAsIDAsIDAuOTUpICFpbXBvcnRhbnQ7XG59XG5cbi8qLS0tLS0tLS0tLS0tLS1cbiAgIFNpbmdsZSBMaW5lXG4tLS0tLS0tLS0tLS0tLS0qL1xuXG4udWkudGFibGVbY2xhc3MqPVwic2luZ2xlIGxpbmVcIl0sXG4udWkudGFibGUgW2NsYXNzKj1cInNpbmdsZSBsaW5lXCJdIHtcbiAgd2hpdGUtc3BhY2U6IG5vd3JhcDtcbn1cbi51aS50YWJsZVtjbGFzcyo9XCJzaW5nbGUgbGluZVwiXSxcbi51aS50YWJsZSBbY2xhc3MqPVwic2luZ2xlIGxpbmVcIl0ge1xuICB3aGl0ZS1zcGFjZTogbm93cmFwO1xufVxuXG4vKi0tLS0tLS0tLS0tLS0tXG4gIENvbHVtbiBDb3VudFxuLS0tLS0tLS0tLS0tLS0tKi9cblxuXG4vKiBHcmlkIEJhc2VkICovXG4udWkub25lLmNvbHVtbi50YWJsZSB0ZCB7XG4gIHdpZHRoOiAxMDAlO1xufVxuLnVpLnR3by5jb2x1bW4udGFibGUgdGQge1xuICB3aWR0aDogNTAlO1xufVxuLnVpLnRocmVlLmNvbHVtbi50YWJsZSB0ZCB7XG4gIHdpZHRoOiAzMy4zMzMzMzMzMyU7XG59XG4udWkuZm91ci5jb2x1bW4udGFibGUgdGQge1xuICB3aWR0aDogMjUlO1xufVxuLnVpLmZpdmUuY29sdW1uLnRhYmxlIHRkIHtcbiAgd2lkdGg6IDIwJTtcbn1cbi51aS5zaXguY29sdW1uLnRhYmxlIHRkIHtcbiAgd2lkdGg6IDE2LjY2NjY2NjY3JTtcbn1cbi51aS5zZXZlbi5jb2x1bW4udGFibGUgdGQge1xuICB3aWR0aDogMTQuMjg1NzE0MjklO1xufVxuLnVpLmVpZ2h0LmNvbHVtbi50YWJsZSB0ZCB7XG4gIHdpZHRoOiAxMi41JTtcbn1cbi51aS5uaW5lLmNvbHVtbi50YWJsZSB0ZCB7XG4gIHdpZHRoOiAxMS4xMTExMTExMSU7XG59XG4udWkudGVuLmNvbHVtbi50YWJsZSB0ZCB7XG4gIHdpZHRoOiAxMCU7XG59XG4udWkuZWxldmVuLmNvbHVtbi50YWJsZSB0ZCB7XG4gIHdpZHRoOiA5LjA5MDkwOTA5JTtcbn1cbi51aS50d2VsdmUuY29sdW1uLnRhYmxlIHRkIHtcbiAgd2lkdGg6IDguMzMzMzMzMzMlO1xufVxuLnVpLnRoaXJ0ZWVuLmNvbHVtbi50YWJsZSB0ZCB7XG4gIHdpZHRoOiA3LjY5MjMwNzY5JTtcbn1cbi51aS5mb3VydGVlbi5jb2x1bW4udGFibGUgdGQge1xuICB3aWR0aDogNy4xNDI4NTcxNCU7XG59XG4udWkuZmlmdGVlbi5jb2x1bW4udGFibGUgdGQge1xuICB3aWR0aDogNi42NjY2NjY2NyU7XG59XG4udWkuc2l4dGVlbi5jb2x1bW4udGFibGUgdGQge1xuICB3aWR0aDogNi4yNSU7XG59XG5cbi8qIENvbHVtbiBXaWR0aCAqL1xuLnVpLnRhYmxlIHRoLm9uZS53aWRlLFxuLnVpLnRhYmxlIHRkLm9uZS53aWRlIHtcbiAgd2lkdGg6IDYuMjUlO1xufVxuLnVpLnRhYmxlIHRoLnR3by53aWRlLFxuLnVpLnRhYmxlIHRkLnR3by53aWRlIHtcbiAgd2lkdGg6IDEyLjUlO1xufVxuLnVpLnRhYmxlIHRoLnRocmVlLndpZGUsXG4udWkudGFibGUgdGQudGhyZWUud2lkZSB7XG4gIHdpZHRoOiAxOC43NSU7XG59XG4udWkudGFibGUgdGguZm91ci53aWRlLFxuLnVpLnRhYmxlIHRkLmZvdXIud2lkZSB7XG4gIHdpZHRoOiAyNSU7XG59XG4udWkudGFibGUgdGguZml2ZS53aWRlLFxuLnVpLnRhYmxlIHRkLmZpdmUud2lkZSB7XG4gIHdpZHRoOiAzMS4yNSU7XG59XG4udWkudGFibGUgdGguc2l4LndpZGUsXG4udWkudGFibGUgdGQuc2l4LndpZGUge1xuICB3aWR0aDogMzcuNSU7XG59XG4udWkudGFibGUgdGguc2V2ZW4ud2lkZSxcbi51aS50YWJsZSB0ZC5zZXZlbi53aWRlIHtcbiAgd2lkdGg6IDQzLjc1JTtcbn1cbi51aS50YWJsZSB0aC5laWdodC53aWRlLFxuLnVpLnRhYmxlIHRkLmVpZ2h0LndpZGUge1xuICB3aWR0aDogNTAlO1xufVxuLnVpLnRhYmxlIHRoLm5pbmUud2lkZSxcbi51aS50YWJsZSB0ZC5uaW5lLndpZGUge1xuICB3aWR0aDogNTYuMjUlO1xufVxuLnVpLnRhYmxlIHRoLnRlbi53aWRlLFxuLnVpLnRhYmxlIHRkLnRlbi53aWRlIHtcbiAgd2lkdGg6IDYyLjUlO1xufVxuLnVpLnRhYmxlIHRoLmVsZXZlbi53aWRlLFxuLnVpLnRhYmxlIHRkLmVsZXZlbi53aWRlIHtcbiAgd2lkdGg6IDY4Ljc1JTtcbn1cbi51aS50YWJsZSB0aC50d2VsdmUud2lkZSxcbi51aS50YWJsZSB0ZC50d2VsdmUud2lkZSB7XG4gIHdpZHRoOiA3NSU7XG59XG4udWkudGFibGUgdGgudGhpcnRlZW4ud2lkZSxcbi51aS50YWJsZSB0ZC50aGlydGVlbi53aWRlIHtcbiAgd2lkdGg6IDgxLjI1JTtcbn1cbi51aS50YWJsZSB0aC5mb3VydGVlbi53aWRlLFxuLnVpLnRhYmxlIHRkLmZvdXJ0ZWVuLndpZGUge1xuICB3aWR0aDogODcuNSU7XG59XG4udWkudGFibGUgdGguZmlmdGVlbi53aWRlLFxuLnVpLnRhYmxlIHRkLmZpZnRlZW4ud2lkZSB7XG4gIHdpZHRoOiA5My43NSU7XG59XG4udWkudGFibGUgdGguc2l4dGVlbi53aWRlLFxuLnVpLnRhYmxlIHRkLnNpeHRlZW4ud2lkZSB7XG4gIHdpZHRoOiAxMDAlO1xufVxuXG4vKi0tLS0tLS0tLS0tLS0tXG4gICAgU29ydGFibGVcbi0tLS0tLS0tLS0tLS0tLSovXG5cbi51aS5zb3J0YWJsZS50YWJsZSB0aGVhZCB0aCB7XG4gIGN1cnNvcjogcG9pbnRlcjtcbiAgd2hpdGUtc3BhY2U6IG5vd3JhcDtcbiAgYm9yZGVyLWxlZnQ6IDFweCBzb2xpZCByZ2JhKDM0LCAzNiwgMzgsIDAuMTUpO1xuICBjb2xvcjogcmdiYSgwLCAwLCAwLCAwLjg3KTtcbn1cbi51aS5zb3J0YWJsZS50YWJsZSB0aGVhZCB0aDpmaXJzdC1jaGlsZCB7XG4gIGJvcmRlci1sZWZ0OiBub25lO1xufVxuLnVpLnNvcnRhYmxlLnRhYmxlIHRoZWFkIHRoLnNvcnRlZCxcbi51aS5zb3J0YWJsZS50YWJsZSB0aGVhZCB0aC5zb3J0ZWQ6aG92ZXIge1xuICAtd2Via2l0LXVzZXItc2VsZWN0OiBub25lO1xuICAtbW96LXVzZXItc2VsZWN0OiBub25lO1xuICAtbXMtdXNlci1zZWxlY3Q6IG5vbmU7XG4gIHVzZXItc2VsZWN0OiBub25lO1xufVxuLnVpLnNvcnRhYmxlLnRhYmxlIHRoZWFkIHRoOmFmdGVyIHtcbiAgZGlzcGxheTogbm9uZTtcbiAgZm9udC1zdHlsZTogbm9ybWFsO1xuICBmb250LXdlaWdodDogbm9ybWFsO1xuICB0ZXh0LWRlY29yYXRpb246IGluaGVyaXQ7XG4gIGNvbnRlbnQ6ICcnO1xuICBoZWlnaHQ6IDFlbTtcbiAgd2lkdGg6IGF1dG87XG4gIG9wYWNpdHk6IDAuODtcbiAgbWFyZ2luOiAwZW0gMGVtIDBlbSAwLjVlbTtcbiAgZm9udC1mYW1pbHk6ICdJY29ucyc7XG59XG4udWkuc29ydGFibGUudGFibGUgdGhlYWQgdGguYXNjZW5kaW5nOmFmdGVyIHtcbiAgY29udGVudDogJ1xcZjBkOCc7XG59XG4udWkuc29ydGFibGUudGFibGUgdGhlYWQgdGguZGVzY2VuZGluZzphZnRlciB7XG4gIGNvbnRlbnQ6ICdcXGYwZDcnO1xufVxuXG4vKiBIb3ZlciAqL1xuLnVpLnNvcnRhYmxlLnRhYmxlIHRoLmRpc2FibGVkOmhvdmVyIHtcbiAgY3Vyc29yOiBhdXRvO1xuICBjb2xvcjogcmdiYSg0MCwgNDAsIDQwLCAwLjMpO1xufVxuLnVpLnNvcnRhYmxlLnRhYmxlIHRoZWFkIHRoOmhvdmVyIHtcbiAgYmFja2dyb3VuZDogcmdiYSgwLCAwLCAwLCAwLjA1KTtcbiAgY29sb3I6IHJnYmEoMCwgMCwgMCwgMC44KTtcbn1cblxuLyogU29ydGVkICovXG4udWkuc29ydGFibGUudGFibGUgdGhlYWQgdGguc29ydGVkIHtcbiAgYmFja2dyb3VuZDogcmdiYSgwLCAwLCAwLCAwLjA1KTtcbiAgY29sb3I6IHJnYmEoMCwgMCwgMCwgMC45NSk7XG59XG4udWkuc29ydGFibGUudGFibGUgdGhlYWQgdGguc29ydGVkOmFmdGVyIHtcbiAgZGlzcGxheTogaW5saW5lLWJsb2NrO1xufVxuXG4vKiBTb3J0ZWQgSG92ZXIgKi9cbi51aS5zb3J0YWJsZS50YWJsZSB0aGVhZCB0aC5zb3J0ZWQ6aG92ZXIge1xuICBiYWNrZ3JvdW5kOiByZ2JhKDAsIDAsIDAsIDAuMDUpO1xuICBjb2xvcjogcmdiYSgwLCAwLCAwLCAwLjk1KTtcbn1cblxuLyogSW52ZXJ0ZWQgKi9cbi51aS5pbnZlcnRlZC5zb3J0YWJsZS50YWJsZSB0aGVhZCB0aC5zb3J0ZWQge1xuICBiYWNrZ3JvdW5kOiByZ2JhKDI1NSwgMjU1LCAyNTUsIDAuMTUpIC13ZWJraXQtbGluZWFyLWdyYWRpZW50KHRyYW5zcGFyZW50LCByZ2JhKDAsIDAsIDAsIDAuMDUpKTtcbiAgYmFja2dyb3VuZDogcmdiYSgyNTUsIDI1NSwgMjU1LCAwLjE1KSBsaW5lYXItZ3JhZGllbnQodHJhbnNwYXJlbnQsIHJnYmEoMCwgMCwgMCwgMC4wNSkpO1xuICBjb2xvcjogI2ZmZmZmZjtcbn1cbi51aS5pbnZlcnRlZC5zb3J0YWJsZS50YWJsZSB0aGVhZCB0aDpob3ZlciB7XG4gIGJhY2tncm91bmQ6IHJnYmEoMjU1LCAyNTUsIDI1NSwgMC4wOCkgLXdlYmtpdC1saW5lYXItZ3JhZGllbnQodHJhbnNwYXJlbnQsIHJnYmEoMCwgMCwgMCwgMC4wNSkpO1xuICBiYWNrZ3JvdW5kOiByZ2JhKDI1NSwgMjU1LCAyNTUsIDAuMDgpIGxpbmVhci1ncmFkaWVudCh0cmFuc3BhcmVudCwgcmdiYSgwLCAwLCAwLCAwLjA1KSk7XG4gIGNvbG9yOiAjZmZmZmZmO1xufVxuLnVpLmludmVydGVkLnNvcnRhYmxlLnRhYmxlIHRoZWFkIHRoIHtcbiAgYm9yZGVyLWxlZnQtY29sb3I6IHRyYW5zcGFyZW50O1xuICBib3JkZXItcmlnaHQtY29sb3I6IHRyYW5zcGFyZW50O1xufVxuXG5cbi8qLS0tLS0tLS0tLS0tLS1cbiAgIENvbGxhcHNpbmdcbi0tLS0tLS0tLS0tLS0tLSovXG5cbi51aS5jb2xsYXBzaW5nLnRhYmxlIHtcbiAgd2lkdGg6IGF1dG87XG59XG5cbi8qLS0tLS0tLS0tLS0tLS1cbiAgICAgIEJhc2ljXG4tLS0tLS0tLS0tLS0tLS0qL1xuXG4udWkuYmFzaWMudGFibGUge1xuICBiYWNrZ3JvdW5kOiB0cmFuc3BhcmVudDtcbiAgYm9yZGVyOiAxcHggc29saWQgcmdiYSgzNCwgMzYsIDM4LCAwLjE1KTtcbiAgYm94LXNoYWRvdzogbm9uZTtcbn1cbi51aS5iYXNpYy50YWJsZSB0aGVhZCxcbi51aS5iYXNpYy50YWJsZSB0Zm9vdCB7XG4gIGJveC1zaGFkb3c6IG5vbmU7XG59XG4udWkuYmFzaWMudGFibGUgdGgge1xuICBiYWNrZ3JvdW5kOiB0cmFuc3BhcmVudDtcbiAgYm9yZGVyLWxlZnQ6IG5vbmU7XG59XG4udWkuYmFzaWMudGFibGUgdGJvZHkgdHIge1xuICBib3JkZXItYm90dG9tOiAxcHggc29saWQgcmdiYSgwLCAwLCAwLCAwLjEpO1xufVxuLnVpLmJhc2ljLnRhYmxlIHRkIHtcbiAgYmFja2dyb3VuZDogdHJhbnNwYXJlbnQ7XG59XG4udWkuYmFzaWMuc3RyaXBlZC50YWJsZSB0Ym9keSB0cjpudGgtY2hpbGQoMm4pIHtcbiAgYmFja2dyb3VuZC1jb2xvcjogcmdiYSgwLCAwLCAwLCAwLjA1KSAhaW1wb3J0YW50O1xufVxuXG4vKiBWZXJ5IEJhc2ljICovXG4udWlbY2xhc3MqPVwidmVyeSBiYXNpY1wiXS50YWJsZSB7XG4gIGJvcmRlcjogbm9uZTtcbn1cbi51aVtjbGFzcyo9XCJ2ZXJ5IGJhc2ljXCJdLnRhYmxlOm5vdCguc29ydGFibGUpOm5vdCguc3RyaXBlZCkgdGgsXG4udWlbY2xhc3MqPVwidmVyeSBiYXNpY1wiXS50YWJsZTpub3QoLnNvcnRhYmxlKTpub3QoLnN0cmlwZWQpIHRkIHtcbiAgcGFkZGluZzogJyc7XG59XG4udWlbY2xhc3MqPVwidmVyeSBiYXNpY1wiXS50YWJsZTpub3QoLnNvcnRhYmxlKTpub3QoLnN0cmlwZWQpIHRoOmZpcnN0LWNoaWxkLFxuLnVpW2NsYXNzKj1cInZlcnkgYmFzaWNcIl0udGFibGU6bm90KC5zb3J0YWJsZSk6bm90KC5zdHJpcGVkKSB0ZDpmaXJzdC1jaGlsZCB7XG4gIHBhZGRpbmctbGVmdDogMGVtO1xufVxuLnVpW2NsYXNzKj1cInZlcnkgYmFzaWNcIl0udGFibGU6bm90KC5zb3J0YWJsZSk6bm90KC5zdHJpcGVkKSB0aDpsYXN0LWNoaWxkLFxuLnVpW2NsYXNzKj1cInZlcnkgYmFzaWNcIl0udGFibGU6bm90KC5zb3J0YWJsZSk6bm90KC5zdHJpcGVkKSB0ZDpsYXN0LWNoaWxkIHtcbiAgcGFkZGluZy1yaWdodDogMGVtO1xufVxuLnVpW2NsYXNzKj1cInZlcnkgYmFzaWNcIl0udGFibGU6bm90KC5zb3J0YWJsZSk6bm90KC5zdHJpcGVkKSB0aGVhZCB0cjpmaXJzdC1jaGlsZCB0aCB7XG4gIHBhZGRpbmctdG9wOiAwZW07XG59XG5cbi8qLS0tLS0tLS0tLS0tLS1cbiAgICAgQ2VsbGVkXG4tLS0tLS0tLS0tLS0tLS0qL1xuXG4udWkuY2VsbGVkLnRhYmxlIHRyIHRoLFxuLnVpLmNlbGxlZC50YWJsZSB0ciB0ZCB7XG4gIGJvcmRlci1sZWZ0OiAxcHggc29saWQgcmdiYSgzNCwgMzYsIDM4LCAwLjEpO1xufVxuLnVpLmNlbGxlZC50YWJsZSB0ciB0aDpmaXJzdC1jaGlsZCxcbi51aS5jZWxsZWQudGFibGUgdHIgdGQ6Zmlyc3QtY2hpbGQge1xuICBib3JkZXItbGVmdDogbm9uZTtcbn1cblxuLyotLS0tLS0tLS0tLS0tLVxuICAgICBQYWRkZWRcbi0tLS0tLS0tLS0tLS0tLSovXG5cbi51aS5wYWRkZWQudGFibGUgdGgge1xuICBwYWRkaW5nLWxlZnQ6IDFlbTtcbiAgcGFkZGluZy1yaWdodDogMWVtO1xufVxuLnVpLnBhZGRlZC50YWJsZSB0aCxcbi51aS5wYWRkZWQudGFibGUgdGQge1xuICBwYWRkaW5nOiAxZW0gMWVtO1xufVxuXG4vKiBWZXJ5ICovXG4udWlbY2xhc3MqPVwidmVyeSBwYWRkZWRcIl0udGFibGUgdGgge1xuICBwYWRkaW5nLWxlZnQ6IDEuNWVtO1xuICBwYWRkaW5nLXJpZ2h0OiAxLjVlbTtcbn1cbi51aVtjbGFzcyo9XCJ2ZXJ5IHBhZGRlZFwiXS50YWJsZSB0ZCB7XG4gIHBhZGRpbmc6IDEuNWVtIDEuNWVtO1xufVxuXG4vKi0tLS0tLS0tLS0tLS0tXG4gICAgIENvbXBhY3Rcbi0tLS0tLS0tLS0tLS0tLSovXG5cbi51aS5jb21wYWN0LnRhYmxlIHRoIHtcbiAgcGFkZGluZy1sZWZ0OiAwLjdlbTtcbiAgcGFkZGluZy1yaWdodDogMC43ZW07XG59XG4udWkuY29tcGFjdC50YWJsZSB0ZCB7XG4gIHBhZGRpbmc6IDAuNWVtIDAuN2VtO1xufVxuXG4vKiBWZXJ5ICovXG4udWlbY2xhc3MqPVwidmVyeSBjb21wYWN0XCJdLnRhYmxlIHRoIHtcbiAgcGFkZGluZy1sZWZ0OiAwLjZlbTtcbiAgcGFkZGluZy1yaWdodDogMC42ZW07XG59XG4udWlbY2xhc3MqPVwidmVyeSBjb21wYWN0XCJdLnRhYmxlIHRkIHtcbiAgcGFkZGluZzogMC40ZW0gMC42ZW07XG59XG5cbi8qLS0tLS0tLS0tLS0tLS1cbiAgICAgIFNpemVzXG4tLS0tLS0tLS0tLS0tLS0qL1xuXG5cbi8qIFNtYWxsICovXG4udWkuc21hbGwudGFibGUge1xuICBmb250LXNpemU6IDAuOWVtO1xufVxuXG4vKiBTdGFuZGFyZCAqL1xuLnVpLnRhYmxlIHtcbiAgZm9udC1zaXplOiAxZW07XG59XG5cbi8qIExhcmdlICovXG4udWkubGFyZ2UudGFibGUge1xuICBmb250LXNpemU6IDEuMWVtO1xufVxuIiwidGFibGUuZm9vLXRhYmxlLmludmVydGVkIHtcbiAgXG4gICYudGFibGV7XG4gICAgYSB7XG4gICAgICBjb2xvcjogcmdiYSgyNTUsIDI1NSwgMjU1LCAwLjcpO1xuICAgIH1cbiAgICBhLmNoZWNrYm94IHtcbiAgICAgIGNvbG9yOiBibGFjaztcbiAgICB9XG4gIH1cbiAgXG4gIC8qLS0tLS0tLS0tLS0tLS0tLS0tLVxuICAgICAgICAgQ29sb3JzXG4gIC0tLS0tLS0tLS0tLS0tLS0tLS0tKi9cbiAgLyogUmVkICovXG4gICYucmVkLnRhYmxlIHtcbiAgICBiYWNrZ3JvdW5kLWNvbG9yOiAjREIyODI4ICFpbXBvcnRhbnQ7XG4gICAgY29sb3I6ICNGRkZGRkYgIWltcG9ydGFudDtcbiAgfVxuXG4gIC8qIE9yYW5nZSAqL1xuICAmLm9yYW5nZS50YWJsZSB7XG4gICAgYmFja2dyb3VuZC1jb2xvcjogI0YyNzExQyAhaW1wb3J0YW50O1xuICAgIGNvbG9yOiAjRkZGRkZGICFpbXBvcnRhbnQ7XG4gIH1cblxuICAvKiBZZWxsb3cgKi9cbiAgJi55ZWxsb3cudGFibGUge1xuICAgIGJhY2tncm91bmQtY29sb3I6ICNGQkJEMDggIWltcG9ydGFudDtcbiAgICBjb2xvcjogI0ZGRkZGRiAhaW1wb3J0YW50O1xuICB9XG5cbiAgLyogT2xpdmUgKi9cbiAgJi5vbGl2ZS50YWJsZSB7XG4gICAgYmFja2dyb3VuZC1jb2xvcjogI0I1Q0MxOCAhaW1wb3J0YW50O1xuICAgIGNvbG9yOiAjRkZGRkZGICFpbXBvcnRhbnQ7XG4gIH1cblxuICAvKiBHcmVlbiAqL1xuICAmLmdyZWVuLnRhYmxlIHtcbiAgICBiYWNrZ3JvdW5kLWNvbG9yOiAjMjFCQTQ1ICFpbXBvcnRhbnQ7XG4gICAgY29sb3I6ICNGRkZGRkYgIWltcG9ydGFudDtcbiAgfVxuXG4gIC8qIFRlYWwgKi9cbiAgJi50ZWFsLnRhYmxlIHtcbiAgICBiYWNrZ3JvdW5kLWNvbG9yOiAjMDBCNUFEICFpbXBvcnRhbnQ7XG4gICAgY29sb3I6ICNGRkZGRkYgIWltcG9ydGFudDtcbiAgfVxuXG4gIC8qIEJsdWUgKi9cbiAgJi5ibHVlLnRhYmxlIHtcbiAgICBiYWNrZ3JvdW5kLWNvbG9yOiAjMjE4NUQwICFpbXBvcnRhbnQ7XG4gICAgY29sb3I6ICNGRkZGRkYgIWltcG9ydGFudDtcbiAgfVxuXG4gIC8qIFZpb2xldCAqL1xuICAmLnZpb2xldC50YWJsZSB7XG4gICAgYmFja2dyb3VuZC1jb2xvcjogIzY0MzVDOSAhaW1wb3J0YW50O1xuICAgIGNvbG9yOiAjRkZGRkZGICFpbXBvcnRhbnQ7XG4gIH1cblxuICAvKiBQdXJwbGUgKi9cbiAgJi5wdXJwbGUudGFibGUge1xuICAgIGJhY2tncm91bmQtY29sb3I6ICNBMzMzQzggIWltcG9ydGFudDtcbiAgICBjb2xvcjogI0ZGRkZGRiAhaW1wb3J0YW50O1xuICB9XG5cbiAgLyogUGluayAqL1xuICAmLnBpbmsudGFibGUge1xuICAgIGJhY2tncm91bmQtY29sb3I6ICNFMDM5OTcgIWltcG9ydGFudDtcbiAgICBjb2xvcjogI0ZGRkZGRiAhaW1wb3J0YW50O1xuICB9XG5cbiAgLyogQnJvd24gKi9cbiAgJi5icm93bi50YWJsZSB7XG4gICAgYmFja2dyb3VuZC1jb2xvcjogI0E1NjczRiAhaW1wb3J0YW50O1xuICAgIGNvbG9yOiAjRkZGRkZGICFpbXBvcnRhbnQ7XG4gIH1cblxuICAvKiBHcmV5ICovXG4gICYuZ3JleS50YWJsZSB7XG4gICAgYmFja2dyb3VuZC1jb2xvcjogIzc2NzY3NiAhaW1wb3J0YW50O1xuICAgIGNvbG9yOiAjRkZGRkZGICFpbXBvcnRhbnQ7XG4gIH1cblxuICAvKiBCbGFjayAqL1xuICAmLmJsYWNrLnRhYmxlIHtcbiAgICBiYWNrZ3JvdW5kLWNvbG9yOiAjMUIxQzFEICFpbXBvcnRhbnQ7XG4gICAgY29sb3I6ICNGRkZGRkYgIWltcG9ydGFudDtcbiAgfVxuXG5cbiAgLyotLS0tLS0tLS0tLS0tLVxuICAgICAgSW52ZXJ0ZWRcbiAgLS0tLS0tLS0tLS0tLS0tKi9cblxuXG4gIC8qIFRleHQgQ29sb3IgKi9cbiAgJi50YWJsZSB7XG4gICAgYmFja2dyb3VuZDogIzMzMzMzMztcbiAgICBjb2xvcjogcmdiYSgyNTUsIDI1NSwgMjU1LCAwLjkpO1xuICAgIGJvcmRlcjogbm9uZTtcbiAgfVxuICAmLnRhYmxlIHRoIHtcbiAgICBiYWNrZ3JvdW5kLWNvbG9yOiByZ2JhKDAsIDAsIDAsIDAuMTUpO1xuICAgIGJvcmRlci1jb2xvcjogcmdiYSgyNTUsIDI1NSwgMjU1LCAwLjEpICFpbXBvcnRhbnQ7XG4gICAgY29sb3I6IHJnYmEoMjU1LCAyNTUsIDI1NSwgMC45KSAhaW1wb3J0YW50O1xuICB9XG4gICYudGFibGUgdHIgdGQge1xuICAgIGJvcmRlci1jb2xvcjogcmdiYSgyNTUsIDI1NSwgMjU1LCAwLjEpICFpbXBvcnRhbnQ7XG4gIH1cbiAgJi50YWJsZSB0ci5kaXNhYmxlZCB0ZCxcbiAgJi50YWJsZSB0ciB0ZC5kaXNhYmxlZCxcbiAgJi50YWJsZSB0ci5kaXNhYmxlZDpob3ZlciB0ZCxcbiAgJi50YWJsZSB0cjpob3ZlciB0ZC5kaXNhYmxlZCB7XG4gICAgcG9pbnRlci1ldmVudHM6IG5vbmU7XG4gICAgY29sb3I6IHJnYmEoMjI1LCAyMjUsIDIyNSwgMC4zKTtcbiAgfVxuXG4gIC8qIERlZmluaXRpb24gKi9cbiAgJi5kZWZpbml0aW9uLnRhYmxlIHRmb290Om5vdCguZnVsbC13aWR0aCkgdGg6Zmlyc3QtY2hpbGQsXG4gICYuZGVmaW5pdGlvbi50YWJsZSB0aGVhZDpub3QoLmZ1bGwtd2lkdGgpIHRoOmZpcnN0LWNoaWxkIHtcbiAgICBiYWNrZ3JvdW5kOiAjRkZGRkZGO1xuICB9XG4gICYuZGVmaW5pdGlvbi50YWJsZSB0ciB0ZDpmaXJzdC1jaGlsZCB7XG4gICAgYmFja2dyb3VuZDogcmdiYSgyNTUsIDI1NSwgMjU1LCAwLjAyKTtcbiAgICBjb2xvcjogI2ZmZmZmZjtcbiAgfVxuXG5cbiYudGFibGUtc3RyaXBlZCAgdGJvZHkgIHRyOm50aC1vZi10eXBlKG9kZCkge1xuICBiYWNrZ3JvdW5kLWNvbG9yOiByZ2JhKDI1NSwgMjU1LCAyNTUsIDAuMDUpO1xufVxuICBcblxuICAvKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKlxuICAgICAgICAgICBTaXRlIE92ZXJyaWRlc1xuICAqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqL1xuICAmIHtcbiAgICAucGFnaW5hdGlvbiA+IC5hY3RpdmUgPiBhLCAucGFnaW5hdGlvbiA+IC5hY3RpdmUgPiBhOmZvY3VzLCAucGFnaW5hdGlvbiA+IC5hY3RpdmUgPiBhOmhvdmVyLCAucGFnaW5hdGlvbiA+IC5hY3RpdmUgPiBzcGFuLCAucGFnaW5hdGlvbiA+IC5hY3RpdmUgPiBzcGFuOmZvY3VzLCAucGFnaW5hdGlvbiA+IC5hY3RpdmUgPiBzcGFuOmhvdmVyIHtcbiAgICAgIGJhY2tncm91bmQtY29sb3I6IHJnYmEoMCwgMCwgMCwgMC4xNSk7XG4gICAgICBib3JkZXItY29sb3I6IHJnYmEoMjU1LCAyNTUsIDI1NSwgMC4xKSAhaW1wb3J0YW50O1xuICAgICAgY29sb3I6IHJnYmEoMjU1LCAyNTUsIDI1NSwgMC45KSAhaW1wb3J0YW50O1xuICAgICAgLXdlYmtpdC1ib3gtc2hhZG93OiBpbnNldCAwIDAgMCByZ2JhKDI1NSwgMjU1LCAyNTUsIDAuMSksIDAgMXB4IDAgcmdiYSgyNTUsIDI1NSwgMjU1LCAwLjEpO1xuICAgICAgYm94LXNoYWRvdzogaW5zZXQgMCAwIDAgcmdiYSgyNTUsIDI1NSwgMjU1LCAwLjEpLCAwIDFweCAwIHJnYmEoMjU1LCAyNTUsIDI1NSwgMC4xKTtcbiAgICB9XG4gICAgLnBhZ2luYXRpb24gYS5mb290YWJsZS1wYWdlLWxpbmsge1xuICAgICAgY29sb3I6IHJnYmEoMCwgMCwgMCwgMC41KTtcbiAgICB9XG4gICAgLmlucHV0LWdyb3VwLWJ0bjpsYXN0LWNoaWxkPi5idG46bm90KDpsYXN0LWNoaWxkKTpub3QoLmRyb3Bkb3duLXRvZ2dsZSkge1xuICAgICAgYmFja2dyb3VuZC1jb2xvcjogcmdiYSgyNTUsIDI1NSwgMjU1LCAwLjEpO1xuICAgICAgYm9yZGVyLWNvbG9yOiByZ2JhKDI1NSwgMjU1LCAyNTUsIDAuMSkgIWltcG9ydGFudDtcbiAgICAgIGNvbG9yOiByZ2JhKDI1NSwgMjU1LCAyNTUsIDAuOSkgIWltcG9ydGFudDtcbiAgICB9XG4gIH1cbn0iXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFDQUEsQUFDRSxVQURRLENBQ1IsSUFBSSxBQUFBLE1BQU0sQUFBQSxjQUFjLENBQUM7RUFDdkIsT0FBTyxFQUFFLElBQUk7RUFDYixVQUFVLEVBQUUsTUFBTTtDQUNuQjs7QUFKSCxBQU00QixVQU5sQixDQU1SLEtBQUssQUFBQSxpQkFBaUIsQ0FBQyxFQUFFLENBQUMsRUFBRSxDQUFDO0VBQ3pCLFdBQVcsRUFBRSxPQUFPO0VBQ3BCLFFBQVEsRUFBRSxrQkFBa0I7RUFDNUIsYUFBYSxFQUFFLGdCQUFnQjtDQUNsQzs7QUFWSCxBQVd3QixVQVhkLENBV1IsRUFBRSxBQUFBLG1CQUFtQixDQUFDLEVBQUUsQ0FBQztFQUN2QixRQUFRLEVBQUUsa0JBQWtCO0NBQzdCOztBQWJILEFBY0UsVUFkUSxDQWNSLFdBQVcsQ0FBQztFQUNWLE1BQU0sRUFBRSxJQUFJO0VBQ1osT0FBTyxFQUFFLEdBQUc7RUFDWixXQUFXLEVBQUUsR0FBRztDQUNqQjs7QUFsQkgsQUFt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 */\n\n\n// WEBPACK FOOTER //\n// ./src/public/css/_public.scss","\ntable {\n background-color: transparent;\n}\ncaption {\n padding-top: 8px;\n padding-bottom: 8px;\n color: #777;\n text-align: left;\n}\nth {\n text-align: left;\n}\n.table {\n width: 100%;\n max-width: 100%;\n margin-bottom: 20px;\n}\n.table > thead > tr > th,\n.table > tbody > tr > th,\n.table > tfoot > tr > th,\n.table > thead > tr > td,\n.table > tbody > tr > td,\n.table > tfoot > tr > td {\n padding: 8px;\n line-height: 1.42857143;\n vertical-align: top;\n border-top: 1px solid #ddd;\n}\n.table > thead > tr > th {\n vertical-align: bottom;\n border-bottom: 2px solid #ddd;\n}\n.table > caption + thead > tr:first-child > th,\n.table > colgroup + thead > tr:first-child > th,\n.table > thead:first-child > tr:first-child > th,\n.table > caption + thead > tr:first-child > td,\n.table > colgroup + thead > tr:first-child > td,\n.table > thead:first-child > tr:first-child > td {\n border-top: 0;\n}\n.table > tbody + tbody {\n border-top: 2px solid #ddd;\n}\n.table .table {\n background-color: #fff;\n}\n.table-condensed > thead > tr > th,\n.table-condensed > tbody > tr > th,\n.table-condensed > tfoot > tr > th,\n.table-condensed > thead > tr > td,\n.table-condensed > tbody > tr > td,\n.table-condensed > tfoot > tr > td {\n padding: 5px;\n}\n.table-bordered {\n border: 1px solid #ddd;\n}\n.table-bordered > thead > tr > th,\n.table-bordered > tbody > tr > th,\n.table-bordered > tfoot > tr > th,\n.table-bordered > thead > tr > td,\n.table-bordered > tbody > tr > td,\n.table-bordered > tfoot > tr > td {\n border: 1px solid #ddd;\n}\n.table-bordered > thead > tr > th,\n.table-bordered > thead > tr > td {\n border-bottom-width: 2px;\n}\n.table-striped > tbody > tr:nth-of-type(odd) {\n background-color: #f9f9f9;\n}\n.table-hover > tbody > tr:hover {\n background-color: #f5f5f5;\n}\ntable col[class*=\"col-\"] {\n position: static;\n display: table-column;\n float: none;\n}\ntable td[class*=\"col-\"],\ntable th[class*=\"col-\"] {\n position: static;\n display: table-cell;\n float: none;\n}\n.table > thead > tr > td.active,\n.table > tbody > tr > td.active,\n.table > tfoot > tr > td.active,\n.table > thead > tr > th.active,\n.table > tbody > tr > th.active,\n.table > tfoot > tr > th.active,\n.table > thead > tr.active > td,\n.table > tbody > tr.active > td,\n.table > tfoot > tr.active > td,\n.table > thead > tr.active > th,\n.table > tbody > tr.active > th,\n.table > tfoot > tr.active > th {\n background-color: #f5f5f5;\n}\n.table-hover > tbody > tr > td.active:hover,\n.table-hover > tbody > tr > th.active:hover,\n.table-hover > tbody > tr.active:hover > td,\n.table-hover > tbody > tr:hover > .active,\n.table-hover > tbody > tr.active:hover > th {\n background-color: #e8e8e8;\n}\n.table > thead > tr > td.success,\n.table > tbody > tr > td.success,\n.table > tfoot > tr > td.success,\n.table > thead > tr > th.success,\n.table > tbody > tr > th.success,\n.table > tfoot > tr > th.success,\n.table > thead > tr.success > td,\n.table > tbody > tr.success > td,\n.table > tfoot > tr.success > td,\n.table > thead > tr.success > th,\n.table > tbody > tr.success > th,\n.table > tfoot > tr.success > th {\n background-color: #dff0d8;\n}\n.table-hover > tbody > tr > td.success:hover,\n.table-hover > tbody > tr > th.success:hover,\n.table-hover > tbody > tr.success:hover > td,\n.table-hover > tbody > tr:hover > .success,\n.table-hover > tbody > tr.success:hover > th {\n background-color: #d0e9c6;\n}\n.table > thead > tr > td.info,\n.table > tbody > tr > td.info,\n.table > tfoot > tr > td.info,\n.table > thead > tr > th.info,\n.table > tbody > tr > th.info,\n.table > tfoot > tr > th.info,\n.table > thead > tr.info > td,\n.table > tbody > tr.info > td,\n.table > tfoot > tr.info > td,\n.table > thead > tr.info > th,\n.table > tbody > tr.info > th,\n.table > tfoot > tr.info > th {\n background-color: #d9edf7;\n}\n.table-hover > tbody > tr > td.info:hover,\n.table-hover > tbody > tr > th.info:hover,\n.table-hover > tbody > tr.info:hover > td,\n.table-hover > tbody > tr:hover > .info,\n.table-hover > tbody > tr.info:hover > th {\n background-color: #c4e3f3;\n}\n.table > thead > tr > td.warning,\n.table > tbody > tr > td.warning,\n.table > tfoot > tr > td.warning,\n.table > thead > tr > th.warning,\n.table > tbody > tr > th.warning,\n.table > tfoot > tr > th.warning,\n.table > thead > tr.warning > td,\n.table > tbody > tr.warning > td,\n.table > tfoot > tr.warning > td,\n.table > thead > tr.warning > th,\n.table > tbody > tr.warning > th,\n.table > tfoot > tr.warning > th {\n background-color: #fcf8e3;\n}\n.table-hover > tbody > tr > td.warning:hover,\n.table-hover > tbody > tr > th.warning:hover,\n.table-hover > tbody > tr.warning:hover > td,\n.table-hover > tbody > tr:hover > .warning,\n.table-hover > tbody > tr.warning:hover > th {\n background-color: #faf2cc;\n}\n.table > thead > tr > td.danger,\n.table > tbody > tr > td.danger,\n.table > tfoot > tr > td.danger,\n.table > thead > tr > th.danger,\n.table > tbody > tr > th.danger,\n.table > tfoot > tr > th.danger,\n.table > thead > tr.danger > td,\n.table > tbody > tr.danger > td,\n.table > tfoot > tr.danger > td,\n.table > thead > tr.danger > th,\n.table > tbody > tr.danger > th,\n.table > tfoot > tr.danger > th {\n background-color: #f2dede;\n}\n.table-hover > tbody > tr > td.danger:hover,\n.table-hover > tbody > tr > th.danger:hover,\n.table-hover > tbody > tr.danger:hover > td,\n.table-hover > tbody > tr:hover > .danger,\n.table-hover > tbody > tr.danger:hover > th {\n background-color: #ebcccc;\n}\n.table-responsive {\n min-height: .01%;\n overflow-x: auto;\n}\n@media screen and (max-width: 767px) {\n .table-responsive {\n width: 100%;\n margin-bottom: 15px;\n overflow-y: hidden;\n -ms-overflow-style: -ms-autohiding-scrollbar;\n border: 1px solid #ddd;\n }\n .table-responsive > .table {\n margin-bottom: 0;\n }\n .table-responsive > .table > thead > tr > th,\n .table-responsive > .table > tbody > tr > th,\n .table-responsive > .table > tfoot > tr > th,\n .table-responsive > .table > thead > tr > td,\n .table-responsive > .table > tbody > tr > td,\n .table-responsive > .table > tfoot > tr > td {\n white-space: nowrap;\n }\n .table-responsive > .table-bordered {\n border: 0;\n }\n .table-responsive > .table-bordered > thead > tr > th:first-child,\n .table-responsive > .table-bordered > tbody > tr > th:first-child,\n .table-responsive > .table-bordered > tfoot > tr > th:first-child,\n .table-responsive > .table-bordered > thead > tr > td:first-child,\n .table-responsive > .table-bordered > tbody > tr > td:first-child,\n .table-responsive > .table-bordered > tfoot > tr > td:first-child {\n border-left: 0;\n }\n .table-responsive > .table-bordered > thead > tr > th:last-child,\n .table-responsive > .table-bordered > tbody > tr > th:last-child,\n .table-responsive > .table-bordered > tfoot > tr > th:last-child,\n .table-responsive > .table-bordered > thead > tr > td:last-child,\n .table-responsive > .table-bordered > tbody > tr > td:last-child,\n .table-responsive > .table-bordered > tfoot > tr > td:last-child {\n border-right: 0;\n }\n .table-responsive > .table-bordered > tbody > tr:last-child > th,\n .table-responsive > .table-bordered > tfoot > tr:last-child > th,\n .table-responsive > .table-bordered > tbody > tr:last-child > td,\n .table-responsive > .table-bordered > tfoot > tr:last-child > td {\n border-bottom: 0;\n }\n}\n\n\n\n// WEBPACK FOOTER //\n// ./src/public/css/src/public/css/_table_boostrap3.scss","@import \"common\";\n@import \"foo_icons\";\n.bootstrap3 {\n @import \"table_boostrap3\";\n}\n.bootstrap4 {\n @import \"table_bootstrap4\";\n}\n.semantic_ui {\n @import \"table_semantic_ui\";\n}\n.colored_table {\n @import \"colors\";\n}\n\n\n// WEBPACK FOOTER //\n// ./src/public/css/src/public/css/_public.scss",".table {\n width: 100%;\n max-width: 100%;\n margin-bottom: 1rem;\n background-color: transparent;\n}\n\n.table th,\n.table td {\n padding: 0.75rem;\n vertical-align: top;\n border-top: 1px solid #e9ecef;\n}\n\n.table thead th {\n vertical-align: bottom;\n border-bottom: 2px solid #e9ecef;\n}\n\n.table tbody + tbody {\n border-top: 2px solid #e9ecef;\n}\n\n.table .table {\n background-color: #fff;\n color: black;\n}\n\n.table-sm th,\n.table-sm td {\n padding: 0.3rem;\n}\n\n.table-bordered {\n border: 1px solid #e9ecef;\n}\n\n.table-bordered th,\n.table-bordered td {\n border: 1px solid #e9ecef;\n}\n\n.table-bordered thead th,\n.table-bordered thead td {\n border-bottom-width: 2px;\n}\n\n.table-striped tbody tr:nth-of-type(odd) {\n background-color: rgba(0, 0, 0, 0.05);\n}\n\n.table-hover tbody tr:hover {\n background-color: rgba(0, 0, 0, 0.075);\n}\n\n.table-primary,\n.table-primary > th,\n.table-primary > td {\n background-color: #b8daff;\n}\n\n.table-hover .table-primary:hover {\n background-color: #9fcdff;\n}\n\n.table-hover .table-primary:hover > td,\n.table-hover .table-primary:hover > th {\n background-color: #9fcdff;\n}\n\n.table-secondary,\n.table-secondary > th,\n.table-secondary > td {\n background-color: #dddfe2;\n}\n\n.table-hover .table-secondary:hover {\n background-color: #cfd2d6;\n}\n\n.table-hover .table-secondary:hover > td,\n.table-hover .table-secondary:hover > th {\n background-color: #cfd2d6;\n}\n\n.table-success,\n.table-success > th,\n.table-success > td {\n background-color: #c3e6cb;\n}\n\n.table-hover .table-success:hover {\n background-color: #b1dfbb;\n}\n\n.table-hover .table-success:hover > td,\n.table-hover .table-success:hover > th {\n background-color: #b1dfbb;\n}\n\n.table-info,\n.table-info > th,\n.table-info > td {\n background-color: #bee5eb;\n}\n\n.table-hover .table-info:hover {\n background-color: #abdde5;\n}\n\n.table-hover .table-info:hover > td,\n.table-hover .table-info:hover > th {\n background-color: #abdde5;\n}\n\n.table-warning,\n.table-warning > th,\n.table-warning > td {\n background-color: #ffeeba;\n}\n\n.table-hover .table-warning:hover {\n background-color: #ffe8a1;\n}\n\n.table-hover .table-warning:hover > td,\n.table-hover .table-warning:hover > th {\n background-color: #ffe8a1;\n}\n\n.table-danger,\n.table-danger > th,\n.table-danger > td {\n background-color: #f5c6cb;\n}\n\n.table-hover .table-danger:hover {\n background-color: #f1b0b7;\n}\n\n.table-hover .table-danger:hover > td,\n.table-hover .table-danger:hover > th {\n background-color: #f1b0b7;\n}\n\n.table-light,\n.table-light > th,\n.table-light > td {\n background-color: #fdfdfe;\n}\n\n.table-hover .table-light:hover {\n background-color: #ececf6;\n}\n\n.table-hover .table-light:hover > td,\n.table-hover .table-light:hover > th {\n background-color: #ececf6;\n}\n\n.table-dark,\n.table-dark > th,\n.table-dark > td {\n background-color: #c6c8ca;\n}\n\n.table-hover .table-dark:hover {\n background-color: #b9bbbe;\n}\n\n.table-hover .table-dark:hover > td,\n.table-hover .table-dark:hover > th {\n background-color: #b9bbbe;\n}\n\n.table-active,\n.table-active > th,\n.table-active > td {\n background-color: rgba(0, 0, 0, 0.075);\n}\n\n.table-hover .table-active:hover {\n background-color: rgba(0, 0, 0, 0.075);\n}\n\n.table-hover .table-active:hover > td,\n.table-hover .table-active:hover > th {\n background-color: rgba(0, 0, 0, 0.075);\n}\n\n.thead-inverse th {\n color: #fff;\n background-color: #212529;\n}\n\n.thead-default th {\n color: #495057;\n background-color: #e9ecef;\n}\n\n.table-inverse {\n color: #fff;\n background-color: #212529;\n}\n\n.table-inverse th,\n.table-inverse td,\n.table-inverse thead th {\n border-color: #32383e;\n}\n\n.table-inverse.table-bordered {\n border: 0;\n}\n\n.table-inverse.table-striped tbody tr:nth-of-type(odd) {\n background-color: rgba(255, 255, 255, 0.05);\n}\n\n.table-inverse.table-hover tbody tr:hover {\n background-color: rgba(255, 255, 255, 0.075);\n}\n\n@media (max-width: 991px) {\n .table-responsive {\n display: block;\n width: 100%;\n overflow-x: auto;\n -ms-overflow-style: -ms-autohiding-scrollbar;\n }\n .table-responsive.table-bordered {\n border: 0;\n }\n}\n\n\n\n// WEBPACK FOOTER //\n// ./src/public/css/src/public/css/_table_bootstrap4.scss","/*!\n * # Semantic UI 2.2.12 - Table\n * http://github.com/semantic-org/semantic-ui/\n *\n *\n * Released under the MIT license\n * http://opensource.org/licenses/MIT\n *\n */\n\n\n/*******************************\n Table\n*******************************/\n\n\n/* Prototype */\n.ui.table {\n width: 100%;\n background: #FFFFFF;\n margin: 1em 0em;\n border: 1px solid rgba(34, 36, 38, 0.15);\n box-shadow: none;\n border-radius: 0.28571429rem;\n text-align: left;\n color: rgba(0, 0, 0, 0.87);\n border-collapse: separate;\n border-spacing: 0px;\n}\n.ui.table:first-child {\n margin-top: 0em;\n}\n.ui.table:last-child {\n margin-bottom: 0em;\n}\n\n\n/*******************************\n Parts\n*******************************/\n\n\n/* Table Content */\n.ui.table th,\n.ui.table td {\n -webkit-transition: background 0.1s ease, color 0.1s ease;\n transition: background 0.1s ease, color 0.1s ease;\n}\n\n/* Headers */\n.ui.table thead {\n box-shadow: none;\n}\n.ui.table thead th {\n cursor: auto;\n background: #F9FAFB;\n text-align: inherit;\n color: rgba(0, 0, 0, 0.87);\n padding: 0.92857143em 0.78571429em;\n vertical-align: inherit;\n font-style: none;\n font-weight: bold;\n text-transform: none;\n border-bottom: 1px solid rgba(34, 36, 38, 0.1);\n border-left: none;\n}\n.ui.table thead tr > th:first-child {\n border-left: none;\n}\n.ui.table thead tr:first-child > th:first-child {\n border-radius: 0.28571429rem 0em 0em 0em;\n}\n.ui.table thead tr:first-child > th:last-child {\n border-radius: 0em 0.28571429rem 0em 0em;\n}\n.ui.table thead tr:first-child > th:only-child {\n border-radius: 0.28571429rem 0.28571429rem 0em 0em;\n}\n\n/* Footer */\n.ui.table tfoot {\n box-shadow: none;\n}\n.ui.table tfoot th {\n cursor: auto;\n border-top: 1px solid rgba(34, 36, 38, 0.15);\n background: #F9FAFB;\n text-align: inherit;\n color: rgba(0, 0, 0, 0.87);\n padding: 0.78571429em 0.78571429em;\n vertical-align: middle;\n font-style: normal;\n font-weight: normal;\n text-transform: none;\n}\n.ui.table tfoot tr > th:first-child {\n border-left: none;\n}\n.ui.table tfoot tr:first-child > th:first-child {\n border-radius: 0em 0em 0em 0.28571429rem;\n}\n.ui.table tfoot tr:first-child > th:last-child {\n border-radius: 0em 0em 0.28571429rem 0em;\n}\n.ui.table tfoot tr:first-child > th:only-child {\n border-radius: 0em 0em 0.28571429rem 0.28571429rem;\n}\n\n/* Table Row */\n.ui.table tr td {\n border-top: 1px solid rgba(34, 36, 38, 0.1);\n}\n.ui.table tr:first-child td {\n border-top: none;\n}\n\n/* Table Cells */\n.ui.table td {\n padding: 0.78571429em 0.78571429em;\n text-align: inherit;\n}\n\n/* Icons */\n.ui.table > .icon {\n vertical-align: baseline;\n}\n.ui.table > .icon:only-child {\n margin: 0em;\n}\n\n/* Table Segment */\n.ui.table.segment {\n padding: 0em;\n}\n.ui.table.segment:after {\n display: none;\n}\n.ui.table.segment.stacked:after {\n display: block;\n}\n\n\n/*******************************\n Coupling\n*******************************/\n\n\n/* UI Image */\n.ui.table th .image,\n.ui.table th .image img,\n.ui.table td .image,\n.ui.table td .image img {\n max-width: none;\n}\n\n\n/*******************************\n Types\n*******************************/\n\n\n/*--------------\n Complex\n---------------*/\n\n.ui.structured.table {\n border-collapse: collapse;\n}\n.ui.structured.table thead th {\n border-left: none;\n border-right: none;\n}\n.ui.structured.sortable.table thead th {\n border-left: 1px solid rgba(34, 36, 38, 0.15);\n border-right: 1px solid rgba(34, 36, 38, 0.15);\n}\n.ui.structured.basic.table th {\n border-left: none;\n border-right: none;\n}\n.ui.structured.celled.table tr th,\n.ui.structured.celled.table tr td {\n border-left: 1px solid rgba(34, 36, 38, 0.1);\n border-right: 1px solid rgba(34, 36, 38, 0.1);\n}\n\n/*--------------\n Definition\n---------------*/\n\n.ui.definition.table thead:not(.full-width) th:first-child {\n pointer-events: none;\n background: transparent;\n font-weight: normal;\n color: rgba(0, 0, 0, 0.4);\n box-shadow: -1px -1px 0px 1px #FFFFFF;\n}\n.ui.definition.table tfoot:not(.full-width) th:first-child {\n pointer-events: none;\n background: transparent;\n font-weight: rgba(0, 0, 0, 0.4);\n color: normal;\n box-shadow: 1px 1px 0px 1px #FFFFFF;\n}\n\n/* Remove Border */\n.ui.celled.definition.table thead:not(.full-width) th:first-child {\n box-shadow: 0px -1px 0px 1px #FFFFFF;\n}\n.ui.celled.definition.table tfoot:not(.full-width) th:first-child {\n box-shadow: 0px 1px 0px 1px #FFFFFF;\n}\n\n/* Highlight Defining Column */\n.ui.definition.table tr td:first-child:not(.ignored),\n.ui.definition.table tr td.definition {\n background: rgba(0, 0, 0, 0.03);\n font-weight: bold;\n color: rgba(0, 0, 0, 0.95);\n text-transform: '';\n box-shadow: '';\n text-align: '';\n font-size: 1em;\n padding-left: '';\n padding-right: '';\n}\n\n/* Fix 2nd Column */\n.ui.definition.table thead:not(.full-width) th:nth-child(2) {\n border-left: 1px solid rgba(34, 36, 38, 0.15);\n}\n.ui.definition.table tfoot:not(.full-width) th:nth-child(2) {\n border-left: 1px solid rgba(34, 36, 38, 0.15);\n}\n.ui.definition.table td:nth-child(2) {\n border-left: 1px solid rgba(34, 36, 38, 0.15);\n}\n\n\n/*******************************\n States\n*******************************/\n\n\n/*--------------\n Positive\n---------------*/\n\n.ui.table tr.positive,\n.ui.table td.positive {\n box-shadow: 0px 0px 0px #A3C293 inset;\n}\n.ui.table tr.positive,\n.ui.table td.positive {\n background: #FCFFF5 !important;\n color: #2C662D !important;\n}\n\n/*--------------\n Negative\n---------------*/\n\n.ui.table tr.negative,\n.ui.table td.negative {\n box-shadow: 0px 0px 0px #E0B4B4 inset;\n}\n.ui.table tr.negative,\n.ui.table td.negative {\n background: #FFF6F6 !important;\n color: #9F3A38 !important;\n}\n\n/*--------------\n Error\n---------------*/\n\n.ui.table tr.error,\n.ui.table td.error {\n box-shadow: 0px 0px 0px #E0B4B4 inset;\n}\n.ui.table tr.error,\n.ui.table td.error {\n background: #FFF6F6 !important;\n color: #9F3A38 !important;\n}\n\n/*--------------\n Warning\n---------------*/\n\n.ui.table tr.warning,\n.ui.table td.warning {\n box-shadow: 0px 0px 0px #C9BA9B inset;\n}\n.ui.table tr.warning,\n.ui.table td.warning {\n background: #FFFAF3 !important;\n color: #573A08 !important;\n}\n\n/*--------------\n Active\n---------------*/\n\n.ui.table tr.active,\n.ui.table td.active {\n box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.87) inset;\n}\n.ui.table tr.active,\n.ui.table td.active {\n background: #E0E0E0 !important;\n color: rgba(0, 0, 0, 0.87) !important;\n}\n\n/*--------------\n Disabled\n---------------*/\n\n.ui.table tr.disabled td,\n.ui.table tr td.disabled,\n.ui.table tr.disabled:hover,\n.ui.table tr:hover td.disabled {\n pointer-events: none;\n color: rgba(40, 40, 40, 0.3);\n}\n\n\n/*******************************\n Variations\n*******************************/\n\n\n/*--------------\n Stackable\n---------------*/\n\n@media only screen and (max-width: 991px) {\n .ui[class*=\"tablet stackable\"].table,\n .ui[class*=\"tablet stackable\"].table tbody,\n .ui[class*=\"tablet stackable\"].table tr,\n .ui[class*=\"tablet stackable\"].table tr > th,\n .ui[class*=\"tablet stackable\"].table tr > td {\n width: 100% !important;\n display: block !important;\n }\n .ui[class*=\"tablet stackable\"].table {\n padding: 0em;\n }\n .ui[class*=\"tablet stackable\"].table thead {\n display: block;\n }\n .ui[class*=\"tablet stackable\"].table tfoot {\n display: block;\n }\n .ui[class*=\"tablet stackable\"].table tr {\n padding-top: 1em;\n padding-bottom: 1em;\n box-shadow: 0px -1px 0px 0px rgba(0, 0, 0, 0.1) inset !important;\n }\n .ui[class*=\"tablet stackable\"].table tr > th,\n .ui[class*=\"tablet stackable\"].table tr > td {\n background: none;\n border: none !important;\n padding: 0.25em 0.75em;\n box-shadow: none !important;\n }\n\n /* Definition Table */\n .ui.definition[class*=\"tablet stackable\"].table thead th:first-child {\n box-shadow: none !important;\n }\n}\n\n/*--------------\n Text Alignment\n---------------*/\n\n.ui.table[class*=\"left aligned\"],\n.ui.table [class*=\"left aligned\"] {\n text-align: left;\n}\n.ui.table[class*=\"center aligned\"],\n.ui.table [class*=\"center aligned\"] {\n text-align: center;\n}\n.ui.table[class*=\"right aligned\"],\n.ui.table [class*=\"right aligned\"] {\n text-align: right;\n}\n\n/*------------------\n Vertical Alignment\n------------------*/\n\n.ui.table[class*=\"top aligned\"],\n.ui.table [class*=\"top aligned\"] {\n vertical-align: top;\n}\n.ui.table[class*=\"middle aligned\"],\n.ui.table [class*=\"middle aligned\"] {\n vertical-align: middle;\n}\n.ui.table[class*=\"bottom aligned\"],\n.ui.table [class*=\"bottom aligned\"] {\n vertical-align: bottom;\n}\n\n/*--------------\n Fixed\n---------------*/\n\n.ui.fixed.table {\n table-layout: fixed;\n}\n.ui.fixed.table th,\n.ui.fixed.table td {\n overflow: hidden;\n text-overflow: ellipsis;\n}\n\n/*--------------\n Selectable\n---------------*/\n\n.ui.selectable.table tbody tr:hover,\n.ui.table tbody tr td.selectable:hover {\n background: rgba(0, 0, 0, 0.05) !important;\n color: rgba(0, 0, 0, 0.95) !important;\n}\n.ui.selectable.inverted.table tbody tr:hover,\n.ui.inverted.table tbody tr td.selectable:hover {\n background: rgba(255, 255, 255, 0.08) !important;\n color: #ffffff !important;\n}\n\n/* Selectable Cell Link */\n.ui.table tbody tr td.selectable {\n padding: 0em;\n}\n.ui.table tbody tr td.selectable > a:not(.ui) {\n display: block;\n color: inherit;\n padding: 0.78571429em 0.78571429em;\n}\n\n/* Other States */\n.ui.selectable.table tr.error:hover,\n.ui.table tr td.selectable.error:hover,\n.ui.selectable.table tr:hover td.error {\n background: #ffe7e7 !important;\n color: #943634 !important;\n}\n.ui.selectable.table tr.warning:hover,\n.ui.table tr td.selectable.warning:hover,\n.ui.selectable.table tr:hover td.warning {\n background: #fff4e4 !important;\n color: #493107 !important;\n}\n.ui.selectable.table tr.active:hover,\n.ui.table tr td.selectable.active:hover,\n.ui.selectable.table tr:hover td.active {\n background: #E0E0E0 !important;\n color: rgba(0, 0, 0, 0.87) !important;\n}\n.ui.selectable.table tr.positive:hover,\n.ui.table tr td.selectable.positive:hover,\n.ui.selectable.table tr:hover td.positive {\n background: #f7ffe6 !important;\n color: #275b28 !important;\n}\n.ui.selectable.table tr.negative:hover,\n.ui.table tr td.selectable.negative:hover,\n.ui.selectable.table tr:hover td.negative {\n background: #ffe7e7 !important;\n color: #943634 !important;\n}\n\n/*-------------------\n Attached\n--------------------*/\n\n\n/* Middle */\n.ui.attached.table {\n top: 0px;\n bottom: 0px;\n border-radius: 0px;\n margin: 0em -1px;\n width: calc(100% + 2px );\n max-width: calc(100% + 2px );\n box-shadow: none;\n border: 1px solid #D4D4D5;\n}\n.ui.attached + .ui.attached.table:not(.top) {\n border-top: none;\n}\n\n/* Top */\n.ui[class*=\"top attached\"].table {\n bottom: 0px;\n margin-bottom: 0em;\n top: 0px;\n margin-top: 1em;\n border-radius: 0.28571429rem 0.28571429rem 0em 0em;\n}\n.ui.table[class*=\"top attached\"]:first-child {\n margin-top: 0em;\n}\n\n/* Bottom */\n.ui[class*=\"bottom attached\"].table {\n bottom: 0px;\n margin-top: 0em;\n top: 0px;\n margin-bottom: 1em;\n box-shadow: none, none;\n border-radius: 0em 0em 0.28571429rem 0.28571429rem;\n}\n.ui[class*=\"bottom attached\"].table:last-child {\n margin-bottom: 0em;\n}\n\n/*--------------\n Striped\n---------------*/\n\n\n/* Table Striping */\n.ui.striped.table > tr:nth-child(2n),\n.ui.striped.table tbody tr:nth-child(2n) {\n background-color: rgba(0, 0, 50, 0.02);\n}\n\n/* Stripes */\n.ui.inverted.striped.table > tr:nth-child(2n),\n.ui.inverted.striped.table tbody tr:nth-child(2n) {\n background-color: rgba(255, 255, 255, 0.05);\n}\n\n/* Allow striped active hover */\n.ui.striped.selectable.selectable.selectable.table tbody tr.active:hover {\n background: #EFEFEF !important;\n color: rgba(0, 0, 0, 0.95) !important;\n}\n\n/*--------------\n Single Line\n---------------*/\n\n.ui.table[class*=\"single line\"],\n.ui.table [class*=\"single line\"] {\n white-space: nowrap;\n}\n.ui.table[class*=\"single line\"],\n.ui.table [class*=\"single line\"] {\n white-space: nowrap;\n}\n\n/*--------------\n Column Count\n---------------*/\n\n\n/* Grid Based */\n.ui.one.column.table td {\n width: 100%;\n}\n.ui.two.column.table td {\n width: 50%;\n}\n.ui.three.column.table td {\n width: 33.33333333%;\n}\n.ui.four.column.table td {\n width: 25%;\n}\n.ui.five.column.table td {\n width: 20%;\n}\n.ui.six.column.table td {\n width: 16.66666667%;\n}\n.ui.seven.column.table td {\n width: 14.28571429%;\n}\n.ui.eight.column.table td {\n width: 12.5%;\n}\n.ui.nine.column.table td {\n width: 11.11111111%;\n}\n.ui.ten.column.table td {\n width: 10%;\n}\n.ui.eleven.column.table td {\n width: 9.09090909%;\n}\n.ui.twelve.column.table td {\n width: 8.33333333%;\n}\n.ui.thirteen.column.table td {\n width: 7.69230769%;\n}\n.ui.fourteen.column.table td {\n width: 7.14285714%;\n}\n.ui.fifteen.column.table td {\n width: 6.66666667%;\n}\n.ui.sixteen.column.table td {\n width: 6.25%;\n}\n\n/* Column Width */\n.ui.table th.one.wide,\n.ui.table td.one.wide {\n width: 6.25%;\n}\n.ui.table th.two.wide,\n.ui.table td.two.wide {\n width: 12.5%;\n}\n.ui.table th.three.wide,\n.ui.table td.three.wide {\n width: 18.75%;\n}\n.ui.table th.four.wide,\n.ui.table td.four.wide {\n width: 25%;\n}\n.ui.table th.five.wide,\n.ui.table td.five.wide {\n width: 31.25%;\n}\n.ui.table th.six.wide,\n.ui.table td.six.wide {\n width: 37.5%;\n}\n.ui.table th.seven.wide,\n.ui.table td.seven.wide {\n width: 43.75%;\n}\n.ui.table th.eight.wide,\n.ui.table td.eight.wide {\n width: 50%;\n}\n.ui.table th.nine.wide,\n.ui.table td.nine.wide {\n width: 56.25%;\n}\n.ui.table th.ten.wide,\n.ui.table td.ten.wide {\n width: 62.5%;\n}\n.ui.table th.eleven.wide,\n.ui.table td.eleven.wide {\n width: 68.75%;\n}\n.ui.table th.twelve.wide,\n.ui.table td.twelve.wide {\n width: 75%;\n}\n.ui.table th.thirteen.wide,\n.ui.table td.thirteen.wide {\n width: 81.25%;\n}\n.ui.table th.fourteen.wide,\n.ui.table td.fourteen.wide {\n width: 87.5%;\n}\n.ui.table th.fifteen.wide,\n.ui.table td.fifteen.wide {\n width: 93.75%;\n}\n.ui.table th.sixteen.wide,\n.ui.table td.sixteen.wide {\n width: 100%;\n}\n\n/*--------------\n Sortable\n---------------*/\n\n.ui.sortable.table thead th {\n cursor: pointer;\n white-space: nowrap;\n border-left: 1px solid rgba(34, 36, 38, 0.15);\n color: rgba(0, 0, 0, 0.87);\n}\n.ui.sortable.table thead th:first-child {\n border-left: none;\n}\n.ui.sortable.table thead th.sorted,\n.ui.sortable.table thead th.sorted:hover {\n -webkit-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n user-select: none;\n}\n.ui.sortable.table thead th:after {\n display: none;\n font-style: normal;\n font-weight: normal;\n text-decoration: inherit;\n content: '';\n height: 1em;\n width: auto;\n opacity: 0.8;\n margin: 0em 0em 0em 0.5em;\n font-family: 'Icons';\n}\n.ui.sortable.table thead th.ascending:after {\n content: '\\f0d8';\n}\n.ui.sortable.table thead th.descending:after {\n content: '\\f0d7';\n}\n\n/* Hover */\n.ui.sortable.table th.disabled:hover {\n cursor: auto;\n color: rgba(40, 40, 40, 0.3);\n}\n.ui.sortable.table thead th:hover {\n background: rgba(0, 0, 0, 0.05);\n color: rgba(0, 0, 0, 0.8);\n}\n\n/* Sorted */\n.ui.sortable.table thead th.sorted {\n background: rgba(0, 0, 0, 0.05);\n color: rgba(0, 0, 0, 0.95);\n}\n.ui.sortable.table thead th.sorted:after {\n display: inline-block;\n}\n\n/* Sorted Hover */\n.ui.sortable.table thead th.sorted:hover {\n background: rgba(0, 0, 0, 0.05);\n color: rgba(0, 0, 0, 0.95);\n}\n\n/* Inverted */\n.ui.inverted.sortable.table thead th.sorted {\n background: rgba(255, 255, 255, 0.15) -webkit-linear-gradient(transparent, rgba(0, 0, 0, 0.05));\n background: rgba(255, 255, 255, 0.15) linear-gradient(transparent, rgba(0, 0, 0, 0.05));\n color: #ffffff;\n}\n.ui.inverted.sortable.table thead th:hover {\n background: rgba(255, 255, 255, 0.08) -webkit-linear-gradient(transparent, rgba(0, 0, 0, 0.05));\n background: rgba(255, 255, 255, 0.08) linear-gradient(transparent, rgba(0, 0, 0, 0.05));\n color: #ffffff;\n}\n.ui.inverted.sortable.table thead th {\n border-left-color: transparent;\n border-right-color: transparent;\n}\n\n\n/*--------------\n Collapsing\n---------------*/\n\n.ui.collapsing.table {\n width: auto;\n}\n\n/*--------------\n Basic\n---------------*/\n\n.ui.basic.table {\n background: transparent;\n border: 1px solid rgba(34, 36, 38, 0.15);\n box-shadow: none;\n}\n.ui.basic.table thead,\n.ui.basic.table tfoot {\n box-shadow: none;\n}\n.ui.basic.table th {\n background: transparent;\n border-left: none;\n}\n.ui.basic.table tbody tr {\n border-bottom: 1px solid rgba(0, 0, 0, 0.1);\n}\n.ui.basic.table td {\n background: transparent;\n}\n.ui.basic.striped.table tbody tr:nth-child(2n) {\n background-color: rgba(0, 0, 0, 0.05) !important;\n}\n\n/* Very Basic */\n.ui[class*=\"very basic\"].table {\n border: none;\n}\n.ui[class*=\"very basic\"].table:not(.sortable):not(.striped) th,\n.ui[class*=\"very basic\"].table:not(.sortable):not(.striped) td {\n padding: '';\n}\n.ui[class*=\"very basic\"].table:not(.sortable):not(.striped) th:first-child,\n.ui[class*=\"very basic\"].table:not(.sortable):not(.striped) td:first-child {\n padding-left: 0em;\n}\n.ui[class*=\"very basic\"].table:not(.sortable):not(.striped) th:last-child,\n.ui[class*=\"very basic\"].table:not(.sortable):not(.striped) td:last-child {\n padding-right: 0em;\n}\n.ui[class*=\"very basic\"].table:not(.sortable):not(.striped) thead tr:first-child th {\n padding-top: 0em;\n}\n\n/*--------------\n Celled\n---------------*/\n\n.ui.celled.table tr th,\n.ui.celled.table tr td {\n border-left: 1px solid rgba(34, 36, 38, 0.1);\n}\n.ui.celled.table tr th:first-child,\n.ui.celled.table tr td:first-child {\n border-left: none;\n}\n\n/*--------------\n Padded\n---------------*/\n\n.ui.padded.table th {\n padding-left: 1em;\n padding-right: 1em;\n}\n.ui.padded.table th,\n.ui.padded.table td {\n padding: 1em 1em;\n}\n\n/* Very */\n.ui[class*=\"very padded\"].table th {\n padding-left: 1.5em;\n padding-right: 1.5em;\n}\n.ui[class*=\"very padded\"].table td {\n padding: 1.5em 1.5em;\n}\n\n/*--------------\n Compact\n---------------*/\n\n.ui.compact.table th {\n padding-left: 0.7em;\n padding-right: 0.7em;\n}\n.ui.compact.table td {\n padding: 0.5em 0.7em;\n}\n\n/* Very */\n.ui[class*=\"very compact\"].table th {\n padding-left: 0.6em;\n padding-right: 0.6em;\n}\n.ui[class*=\"very compact\"].table td {\n padding: 0.4em 0.6em;\n}\n\n/*--------------\n Sizes\n---------------*/\n\n\n/* Small */\n.ui.small.table {\n font-size: 0.9em;\n}\n\n/* Standard */\n.ui.table {\n font-size: 1em;\n}\n\n/* Large */\n.ui.large.table {\n font-size: 1.1em;\n}\n\n\n\n// WEBPACK FOOTER //\n// ./src/public/css/src/public/css/_table_semantic_ui.scss","table.foo-table.inverted {\n \n &.table{\n a {\n color: rgba(255, 255, 255, 0.7);\n }\n a.checkbox {\n color: black;\n }\n }\n \n /*-------------------\n Colors\n --------------------*/\n /* Red */\n &.red.table {\n background-color: #DB2828 !important;\n color: #FFFFFF !important;\n }\n\n /* Orange */\n &.orange.table {\n background-color: #F2711C !important;\n color: #FFFFFF !important;\n }\n\n /* Yellow */\n &.yellow.table {\n background-color: #FBBD08 !important;\n color: #FFFFFF !important;\n }\n\n /* Olive */\n &.olive.table {\n background-color: #B5CC18 !important;\n color: #FFFFFF !important;\n }\n\n /* Green */\n &.green.table {\n background-color: #21BA45 !important;\n color: #FFFFFF !important;\n }\n\n /* Teal */\n &.teal.table {\n background-color: #00B5AD !important;\n color: #FFFFFF !important;\n }\n\n /* Blue */\n &.blue.table {\n background-color: #2185D0 !important;\n color: #FFFFFF !important;\n }\n\n /* Violet */\n &.violet.table {\n background-color: #6435C9 !important;\n color: #FFFFFF !important;\n }\n\n /* Purple */\n &.purple.table {\n background-color: #A333C8 !important;\n color: #FFFFFF !important;\n }\n\n /* Pink */\n &.pink.table {\n background-color: #E03997 !important;\n color: #FFFFFF !important;\n }\n\n /* Brown */\n &.brown.table {\n background-color: #A5673F !important;\n color: #FFFFFF !important;\n }\n\n /* Grey */\n &.grey.table {\n background-color: #767676 !important;\n color: #FFFFFF !important;\n }\n\n /* Black */\n &.black.table {\n background-color: #1B1C1D !important;\n color: #FFFFFF !important;\n }\n\n\n /*--------------\n Inverted\n ---------------*/\n\n\n /* Text Color */\n &.table {\n background: #333333;\n color: rgba(255, 255, 255, 0.9);\n border: none;\n }\n &.table th {\n background-color: rgba(0, 0, 0, 0.15);\n border-color: rgba(255, 255, 255, 0.1) !important;\n color: rgba(255, 255, 255, 0.9) !important;\n }\n &.table tr td {\n border-color: rgba(255, 255, 255, 0.1) !important;\n }\n &.table tr.disabled td,\n &.table tr td.disabled,\n &.table tr.disabled:hover td,\n &.table tr:hover td.disabled {\n pointer-events: none;\n color: rgba(225, 225, 225, 0.3);\n }\n\n /* Definition */\n &.definition.table tfoot:not(.full-width) th:first-child,\n &.definition.table thead:not(.full-width) th:first-child {\n background: #FFFFFF;\n }\n &.definition.table tr td:first-child {\n background: rgba(255, 255, 255, 0.02);\n color: #ffffff;\n }\n\n\n&.table-striped tbody tr:nth-of-type(odd) {\n background-color: rgba(255, 255, 255, 0.05);\n}\n \n\n /*******************************\n Site Overrides\n *******************************/\n & {\n .pagination > .active > a, .pagination > .active > a:focus, .pagination > .active > a:hover, .pagination > .active > span, .pagination > .active > span:focus, .pagination > .active > span:hover {\n background-color: rgba(0, 0, 0, 0.15);\n border-color: rgba(255, 255, 255, 0.1) !important;\n color: rgba(255, 255, 255, 0.9) !important;\n -webkit-box-shadow: inset 0 0 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);\n box-shadow: inset 0 0 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);\n }\n .pagination a.footable-page-link {\n color: rgba(0, 0, 0, 0.5);\n }\n .input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle) {\n background-color: rgba(255, 255, 255, 0.1);\n border-color: rgba(255, 255, 255, 0.1) !important;\n color: rgba(255, 255, 255, 0.9) !important;\n }\n }\n}\n\n\n// WEBPACK FOOTER //\n// ./src/public/css/src/public/css/_colors.scss"],"sourceRoot":""}
assets/css/ninja-tables-public.min.css CHANGED
@@ -1,4 +1,644 @@
1
- .foo-table span.label.label-default{display:none;visibility:hidden}.foo-table table.footable-details tr th{white-space:normal;overflow:visible!important;text-overflow:unset!important}.foo-table tr.footable-filtering th{overflow:visible!important}.foo-table .pagination{border:none;padding:0;font-weight:500}.foo-table button.btn.btn-default.dropdown-toggle{right:0;left:0}.foo-table li.dropdown-header{padding-left:20px;padding-bottom:5px;color:#333}.foo-table ul.dropdown-menu.dropdown-menu-right li:last-child a{border-bottom:0!important;-webkit-box-shadow:none;box-shadow:none}.foo-table ul.dropdown-menu.dropdown-menu-right li a:hover{-webkit-box-shadow:inset 0 0 0 transparent,0 1px 0 #000;box-shadow:inset 0 0 0 transparent,0 1px 0 #000}.foo-table span.footable-toggle{cursor:pointer}.footable_parent{overflow-x:auto}@font-face{font-family:ninja-tables-fontawesome;src:url(../fonts/ninja-tables-fontawesome.eot?0fb29fbec7db9ea5c763221346490d6f);src:url(../fonts/ninja-tables-fontawesome.eot?0fb29fbec7db9ea5c763221346490d6f) format("embedded-opentype"),url(../fonts/ninja-tables-fontawesome.woff?bc6b6cc2d737de1e7016d2a79d7a7b96) format("woff"),url(../fonts/ninja-tables-fontawesome.ttf?cbdbbb96491338197ebb7894b76c926a) format("truetype"),url(../fonts/ninja-tables-fontawesome.svg?2efdf20b500df61d7043da16a83f00fc) format("svg");font-weight:400;font-style:normal}[data-icon]:before{content:attr(data-icon)}[class*=" fooicon-"]:before,[class^=fooicon-]:before,[data-icon]:before{font-family:ninja-tables-fontawesome!important;font-style:normal!important;font-weight:400!important;font-variant:normal!important;text-transform:none!important;speak:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fooicon-search:before{content:"\F002"}.fooicon-sort-desc:before{content:"\F161"}.fooicon-sort-asc:before{content:"\F160"}.fooicon-sort:before{content:"\F0DC"}.fooicon-minus:before{content:"\F068"}.fooicon-plus:before{content:"\F067"}.fooicon-circle-o-notch:before{content:"\E000"}.fooicon-remove-1:before{content:"\F00D"}.fooicon-loader-alt:before{content:"\F01"}.fooicon-refresh:before{content:"\E001"}.fooicon-loader:before{content:"\F01E"}.bootstrap3 table{background-color:transparent}.bootstrap3 caption{padding-top:8px;padding-bottom:8px;color:#777;text-align:left}.bootstrap3 th{text-align:left}.bootstrap3 .table{width:100%;max-width:100%;margin-bottom:20px}.bootstrap3 .table>tbody>tr>td,.bootstrap3 .table>tbody>tr>th,.bootstrap3 .table>tfoot>tr>td,.bootstrap3 .table>tfoot>tr>th,.bootstrap3 .table>thead>tr>td,.bootstrap3 .table>thead>tr>th{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}.bootstrap3 .table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.bootstrap3 .table>caption+thead>tr:first-child>td,.bootstrap3 .table>caption+thead>tr:first-child>th,.bootstrap3 .table>colgroup+thead>tr:first-child>td,.bootstrap3 .table>colgroup+thead>tr:first-child>th,.bootstrap3 .table>thead:first-child>tr:first-child>td,.bootstrap3 .table>thead:first-child>tr:first-child>th{border-top:0}.bootstrap3 .table>tbody+tbody{border-top:2px solid #ddd}.bootstrap3 .table .table{background-color:#fff}.bootstrap3 .table-condensed>tbody>tr>td,.bootstrap3 .table-condensed>tbody>tr>th,.bootstrap3 .table-condensed>tfoot>tr>td,.bootstrap3 .table-condensed>tfoot>tr>th,.bootstrap3 .table-condensed>thead>tr>td,.bootstrap3 .table-condensed>thead>tr>th{padding:5px}.bootstrap3 .table-bordered,.bootstrap3 .table-bordered>tbody>tr>td,.bootstrap3 .table-bordered>tbody>tr>th,.bootstrap3 .table-bordered>tfoot>tr>td,.bootstrap3 .table-bordered>tfoot>tr>th,.bootstrap3 .table-bordered>thead>tr>td,.bootstrap3 .table-bordered>thead>tr>th{border:1px solid #ddd}.bootstrap3 .table-bordered>thead>tr>td,.bootstrap3 .table-bordered>thead>tr>th{border-bottom-width:2px}.bootstrap3 .table-striped>tbody>tr:nth-of-type(odd){background-color:#f9f9f9}.bootstrap3 .table-hover>tbody>tr:hover{background-color:#f5f5f5}.bootstrap3 table col[class*=col-]{position:static;display:table-column;float:none}.bootstrap3 table td[class*=col-],.bootstrap3 table th[class*=col-]{position:static;display:table-cell;float:none}.bootstrap3 .table>tbody>tr.active>td,.bootstrap3 .table>tbody>tr.active>th,.bootstrap3 .table>tbody>tr>td.active,.bootstrap3 .table>tbody>tr>th.active,.bootstrap3 .table>tfoot>tr.active>td,.bootstrap3 .table>tfoot>tr.active>th,.bootstrap3 .table>tfoot>tr>td.active,.bootstrap3 .table>tfoot>tr>th.active,.bootstrap3 .table>thead>tr.active>td,.bootstrap3 .table>thead>tr.active>th,.bootstrap3 .table>thead>tr>td.active,.bootstrap3 .table>thead>tr>th.active{background-color:#f5f5f5}.bootstrap3 .table-hover>tbody>tr.active:hover>td,.bootstrap3 .table-hover>tbody>tr.active:hover>th,.bootstrap3 .table-hover>tbody>tr:hover>.active,.bootstrap3 .table-hover>tbody>tr>td.active:hover,.bootstrap3 .table-hover>tbody>tr>th.active:hover{background-color:#e8e8e8}.bootstrap3 .table>tbody>tr.success>td,.bootstrap3 .table>tbody>tr.success>th,.bootstrap3 .table>tbody>tr>td.success,.bootstrap3 .table>tbody>tr>th.success,.bootstrap3 .table>tfoot>tr.success>td,.bootstrap3 .table>tfoot>tr.success>th,.bootstrap3 .table>tfoot>tr>td.success,.bootstrap3 .table>tfoot>tr>th.success,.bootstrap3 .table>thead>tr.success>td,.bootstrap3 .table>thead>tr.success>th,.bootstrap3 .table>thead>tr>td.success,.bootstrap3 .table>thead>tr>th.success{background-color:#dff0d8}.bootstrap3 .table-hover>tbody>tr.success:hover>td,.bootstrap3 .table-hover>tbody>tr.success:hover>th,.bootstrap3 .table-hover>tbody>tr:hover>.success,.bootstrap3 .table-hover>tbody>tr>td.success:hover,.bootstrap3 .table-hover>tbody>tr>th.success:hover{background-color:#d0e9c6}.bootstrap3 .table>tbody>tr.info>td,.bootstrap3 .table>tbody>tr.info>th,.bootstrap3 .table>tbody>tr>td.info,.bootstrap3 .table>tbody>tr>th.info,.bootstrap3 .table>tfoot>tr.info>td,.bootstrap3 .table>tfoot>tr.info>th,.bootstrap3 .table>tfoot>tr>td.info,.bootstrap3 .table>tfoot>tr>th.info,.bootstrap3 .table>thead>tr.info>td,.bootstrap3 .table>thead>tr.info>th,.bootstrap3 .table>thead>tr>td.info,.bootstrap3 .table>thead>tr>th.info{background-color:#d9edf7}.bootstrap3 .table-hover>tbody>tr.info:hover>td,.bootstrap3 .table-hover>tbody>tr.info:hover>th,.bootstrap3 .table-hover>tbody>tr:hover>.info,.bootstrap3 .table-hover>tbody>tr>td.info:hover,.bootstrap3 .table-hover>tbody>tr>th.info:hover{background-color:#c4e3f3}.bootstrap3 .table>tbody>tr.warning>td,.bootstrap3 .table>tbody>tr.warning>th,.bootstrap3 .table>tbody>tr>td.warning,.bootstrap3 .table>tbody>tr>th.warning,.bootstrap3 .table>tfoot>tr.warning>td,.bootstrap3 .table>tfoot>tr.warning>th,.bootstrap3 .table>tfoot>tr>td.warning,.bootstrap3 .table>tfoot>tr>th.warning,.bootstrap3 .table>thead>tr.warning>td,.bootstrap3 .table>thead>tr.warning>th,.bootstrap3 .table>thead>tr>td.warning,.bootstrap3 .table>thead>tr>th.warning{background-color:#fcf8e3}.bootstrap3 .table-hover>tbody>tr.warning:hover>td,.bootstrap3 .table-hover>tbody>tr.warning:hover>th,.bootstrap3 .table-hover>tbody>tr:hover>.warning,.bootstrap3 .table-hover>tbody>tr>td.warning:hover,.bootstrap3 .table-hover>tbody>tr>th.warning:hover{background-color:#faf2cc}.bootstrap3 .table>tbody>tr.danger>td,.bootstrap3 .table>tbody>tr.danger>th,.bootstrap3 .table>tbody>tr>td.danger,.bootstrap3 .table>tbody>tr>th.danger,.bootstrap3 .table>tfoot>tr.danger>td,.bootstrap3 .table>tfoot>tr.danger>th,.bootstrap3 .table>tfoot>tr>td.danger,.bootstrap3 .table>tfoot>tr>th.danger,.bootstrap3 .table>thead>tr.danger>td,.bootstrap3 .table>thead>tr.danger>th,.bootstrap3 .table>thead>tr>td.danger,.bootstrap3 .table>thead>tr>th.danger{background-color:#f2dede}.bootstrap3 .table-hover>tbody>tr.danger:hover>td,.bootstrap3 .table-hover>tbody>tr.danger:hover>th,.bootstrap3 .table-hover>tbody>tr:hover>.danger,.bootstrap3 .table-hover>tbody>tr>td.danger:hover,.bootstrap3 .table-hover>tbody>tr>th.danger:hover{background-color:#ebcccc}.bootstrap3 .table-responsive{min-height:.01%;overflow-x:auto}@media screen and (max-width:767px){.bootstrap3 .table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd}.bootstrap3 .table-responsive>.table{margin-bottom:0}.bootstrap3 .table-responsive>.table>tbody>tr>td,.bootstrap3 .table-responsive>.table>tbody>tr>th,.bootstrap3 .table-responsive>.table>tfoot>tr>td,.bootstrap3 .table-responsive>.table>tfoot>tr>th,.bootstrap3 .table-responsive>.table>thead>tr>td,.bootstrap3 .table-responsive>.table>thead>tr>th{white-space:nowrap}.bootstrap3 .table-responsive>.table-bordered{border:0}.bootstrap3 .table-responsive>.table-bordered>tbody>tr>td:first-child,.bootstrap3 .table-responsive>.table-bordered>tbody>tr>th:first-child,.bootstrap3 .table-responsive>.table-bordered>tfoot>tr>td:first-child,.bootstrap3 .table-responsive>.table-bordered>tfoot>tr>th:first-child,.bootstrap3 .table-responsive>.table-bordered>thead>tr>td:first-child,.bootstrap3 .table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.bootstrap3 .table-responsive>.table-bordered>tbody>tr>td:last-child,.bootstrap3 .table-responsive>.table-bordered>tbody>tr>th:last-child,.bootstrap3 .table-responsive>.table-bordered>tfoot>tr>td:last-child,.bootstrap3 .table-responsive>.table-bordered>tfoot>tr>th:last-child,.bootstrap3 .table-responsive>.table-bordered>thead>tr>td:last-child,.bootstrap3 .table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.bootstrap3 .table-responsive>.table-bordered>tbody>tr:last-child>td,.bootstrap3 .table-responsive>.table-bordered>tbody>tr:last-child>th,.bootstrap3 .table-responsive>.table-bordered>tfoot>tr:last-child>td,.bootstrap3 .table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}}.bootstrap4 .table{width:100%;max-width:100%;margin-bottom:1rem;background-color:transparent}.bootstrap4 .table td,.bootstrap4 .table th{padding:.75rem;vertical-align:top;border-top:1px solid #e9ecef}.bootstrap4 .table thead th{vertical-align:bottom;border-bottom:2px solid #e9ecef}.bootstrap4 .table tbody+tbody{border-top:2px solid #e9ecef}.bootstrap4 .table .table{background-color:#fff;color:#000}.bootstrap4 .table-sm td,.bootstrap4 .table-sm th{padding:.3rem}.bootstrap4 .table-bordered,.bootstrap4 .table-bordered td,.bootstrap4 .table-bordered th{border:1px solid #e9ecef}.bootstrap4 .table-bordered thead td,.bootstrap4 .table-bordered thead th{border-bottom-width:2px}.bootstrap4 .table-striped tbody tr:nth-of-type(odd){background-color:rgba(0,0,0,.05)}.bootstrap4 .table-hover tbody tr:hover{background-color:rgba(0,0,0,.075)}.bootstrap4 .table-primary,.bootstrap4 .table-primary>td,.bootstrap4 .table-primary>th{background-color:#b8daff}.bootstrap4 .table-hover .table-primary:hover,.bootstrap4 .table-hover .table-primary:hover>td,.bootstrap4 .table-hover .table-primary:hover>th{background-color:#9fcdff}.bootstrap4 .table-secondary,.bootstrap4 .table-secondary>td,.bootstrap4 .table-secondary>th{background-color:#dddfe2}.bootstrap4 .table-hover .table-secondary:hover,.bootstrap4 .table-hover .table-secondary:hover>td,.bootstrap4 .table-hover .table-secondary:hover>th{background-color:#cfd2d6}.bootstrap4 .table-success,.bootstrap4 .table-success>td,.bootstrap4 .table-success>th{background-color:#c3e6cb}.bootstrap4 .table-hover .table-success:hover,.bootstrap4 .table-hover .table-success:hover>td,.bootstrap4 .table-hover .table-success:hover>th{background-color:#b1dfbb}.bootstrap4 .table-info,.bootstrap4 .table-info>td,.bootstrap4 .table-info>th{background-color:#bee5eb}.bootstrap4 .table-hover .table-info:hover,.bootstrap4 .table-hover .table-info:hover>td,.bootstrap4 .table-hover .table-info:hover>th{background-color:#abdde5}.bootstrap4 .table-warning,.bootstrap4 .table-warning>td,.bootstrap4 .table-warning>th{background-color:#ffeeba}.bootstrap4 .table-hover .table-warning:hover,.bootstrap4 .table-hover .table-warning:hover>td,.bootstrap4 .table-hover .table-warning:hover>th{background-color:#ffe8a1}.bootstrap4 .table-danger,.bootstrap4 .table-danger>td,.bootstrap4 .table-danger>th{background-color:#f5c6cb}.bootstrap4 .table-hover .table-danger:hover,.bootstrap4 .table-hover .table-danger:hover>td,.bootstrap4 .table-hover .table-danger:hover>th{background-color:#f1b0b7}.bootstrap4 .table-light,.bootstrap4 .table-light>td,.bootstrap4 .table-light>th{background-color:#fdfdfe}.bootstrap4 .table-hover .table-light:hover,.bootstrap4 .table-hover .table-light:hover>td,.bootstrap4 .table-hover .table-light:hover>th{background-color:#ececf6}.bootstrap4 .table-dark,.bootstrap4 .table-dark>td,.bootstrap4 .table-dark>th{background-color:#c6c8ca}.bootstrap4 .table-hover .table-dark:hover,.bootstrap4 .table-hover .table-dark:hover>td,.bootstrap4 .table-hover .table-dark:hover>th{background-color:#b9bbbe}.bootstrap4 .table-active,.bootstrap4 .table-active>td,.bootstrap4 .table-active>th,.bootstrap4 .table-hover .table-active:hover,.bootstrap4 .table-hover .table-active:hover>td,.bootstrap4 .table-hover .table-active:hover>th{background-color:rgba(0,0,0,.075)}.bootstrap4 .thead-inverse th{color:#fff;background-color:#212529}.bootstrap4 .thead-default th{color:#495057;background-color:#e9ecef}.bootstrap4 .table-inverse{color:#fff;background-color:#212529}.bootstrap4 .table-inverse td,.bootstrap4 .table-inverse th,.bootstrap4 .table-inverse thead th{border-color:#32383e}.bootstrap4 .table-inverse.table-bordered{border:0}.bootstrap4 .table-inverse.table-striped tbody tr:nth-of-type(odd){background-color:hsla(0,0%,100%,.05)}.bootstrap4 .table-inverse.table-hover tbody tr:hover{background-color:hsla(0,0%,100%,.075)}@media (max-width:991px){.bootstrap4 .table-responsive{display:block;width:100%;overflow-x:auto;-ms-overflow-style:-ms-autohiding-scrollbar}.bootstrap4 .table-responsive.table-bordered{border:0}}.semantic_ui{
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  /*!
3
  * # Semantic UI 2.2.12 - Table
4
  * http://github.com/semantic-org/semantic-ui/
@@ -7,4 +647,1118 @@
7
  * Released under the MIT license
8
  * http://opensource.org/licenses/MIT
9
  *
10
- */}.semantic_ui .ui.table{width:100%;background:#fff;margin:1em 0;border:1px solid rgba(34,36,38,.15);-webkit-box-shadow:none;box-shadow:none;border-radius:.28571429rem;text-align:left;color:rgba(0,0,0,.87);border-collapse:separate;border-spacing:0}.semantic_ui .ui.table:first-child{margin-top:0}.semantic_ui .ui.table:last-child{margin-bottom:0}.semantic_ui .ui.table td,.semantic_ui .ui.table th{-webkit-transition:background .1s ease,color .1s ease;transition:background .1s ease,color .1s ease}.semantic_ui .ui.table thead{-webkit-box-shadow:none;box-shadow:none}.semantic_ui .ui.table thead th{cursor:auto;background:#f9fafb;text-align:inherit;color:rgba(0,0,0,.87);padding:.92857143em .78571429em;vertical-align:inherit;font-style:none;font-weight:700;text-transform:none;border-bottom:1px solid rgba(34,36,38,.1);border-left:none}.semantic_ui .ui.table thead tr>th:first-child{border-left:none}.semantic_ui .ui.table thead tr:first-child>th:first-child{border-radius:.28571429rem 0 0 0}.semantic_ui .ui.table thead tr:first-child>th:last-child{border-radius:0 .28571429rem 0 0}.semantic_ui .ui.table thead tr:first-child>th:only-child{border-radius:.28571429rem .28571429rem 0 0}.semantic_ui .ui.table tfoot{-webkit-box-shadow:none;box-shadow:none}.semantic_ui .ui.table tfoot th{cursor:auto;border-top:1px solid rgba(34,36,38,.15);background:#f9fafb;text-align:inherit;color:rgba(0,0,0,.87);padding:.78571429em;vertical-align:middle;font-style:normal;font-weight:400;text-transform:none}.semantic_ui .ui.table tfoot tr>th:first-child{border-left:none}.semantic_ui .ui.table tfoot tr:first-child>th:first-child{border-radius:0 0 0 .28571429rem}.semantic_ui .ui.table tfoot tr:first-child>th:last-child{border-radius:0 0 .28571429rem 0}.semantic_ui .ui.table tfoot tr:first-child>th:only-child{border-radius:0 0 .28571429rem .28571429rem}.semantic_ui .ui.table tr td{border-top:1px solid rgba(34,36,38,.1)}.semantic_ui .ui.table tr:first-child td{border-top:none}.semantic_ui .ui.table td{padding:.78571429em;text-align:inherit}.semantic_ui .ui.table>.icon{vertical-align:baseline}.semantic_ui .ui.table>.icon:only-child{margin:0}.semantic_ui .ui.table.segment{padding:0}.semantic_ui .ui.table.segment:after{display:none}.semantic_ui .ui.table.segment.stacked:after{display:block}.semantic_ui .ui.table td .image,.semantic_ui .ui.table td .image img,.semantic_ui .ui.table th .image,.semantic_ui .ui.table th .image img{max-width:none}.semantic_ui .ui.structured.table{border-collapse:collapse}.semantic_ui .ui.structured.table thead th{border-left:none;border-right:none}.semantic_ui .ui.structured.sortable.table thead th{border-left:1px solid rgba(34,36,38,.15);border-right:1px solid rgba(34,36,38,.15)}.semantic_ui .ui.structured.basic.table th{border-left:none;border-right:none}.semantic_ui .ui.structured.celled.table tr td,.semantic_ui .ui.structured.celled.table tr th{border-left:1px solid rgba(34,36,38,.1);border-right:1px solid rgba(34,36,38,.1)}.semantic_ui .ui.definition.table thead:not(.full-width) th:first-child{pointer-events:none;background:transparent;font-weight:400;color:rgba(0,0,0,.4);-webkit-box-shadow:-1px -1px 0 1px #fff;box-shadow:-1px -1px 0 1px #fff}.semantic_ui .ui.definition.table tfoot:not(.full-width) th:first-child{pointer-events:none;background:transparent;font-weight:rgba(0,0,0,.4);color:normal;-webkit-box-shadow:1px 1px 0 1px #fff;box-shadow:1px 1px 0 1px #fff}.semantic_ui .ui.celled.definition.table thead:not(.full-width) th:first-child{-webkit-box-shadow:0 -1px 0 1px #fff;box-shadow:0 -1px 0 1px #fff}.semantic_ui .ui.celled.definition.table tfoot:not(.full-width) th:first-child{-webkit-box-shadow:0 1px 0 1px #fff;box-shadow:0 1px 0 1px #fff}.semantic_ui .ui.definition.table tr td.definition,.semantic_ui .ui.definition.table tr td:first-child:not(.ignored){background:rgba(0,0,0,.03);font-weight:700;color:rgba(0,0,0,.95);text-transform:"";-webkit-box-shadow:"";box-shadow:"";text-align:"";font-size:1em;padding-left:"";padding-right:""}.semantic_ui .ui.definition.table td:nth-child(2),.semantic_ui .ui.definition.table tfoot:not(.full-width) th:nth-child(2),.semantic_ui .ui.definition.table thead:not(.full-width) th:nth-child(2){border-left:1px solid rgba(34,36,38,.15)}.semantic_ui .ui.table td.positive,.semantic_ui .ui.table tr.positive{-webkit-box-shadow:0 0 0 #a3c293 inset;box-shadow:inset 0 0 0 #a3c293;background:#fcfff5!important;color:#2c662d!important}.semantic_ui .ui.table td.negative,.semantic_ui .ui.table tr.negative{-webkit-box-shadow:0 0 0 #e0b4b4 inset;box-shadow:inset 0 0 0 #e0b4b4;background:#fff6f6!important;color:#9f3a38!important}.semantic_ui .ui.table td.error,.semantic_ui .ui.table tr.error{-webkit-box-shadow:0 0 0 #e0b4b4 inset;box-shadow:inset 0 0 0 #e0b4b4;background:#fff6f6!important;color:#9f3a38!important}.semantic_ui .ui.table td.warning,.semantic_ui .ui.table tr.warning{-webkit-box-shadow:0 0 0 #c9ba9b inset;box-shadow:inset 0 0 0 #c9ba9b;background:#fffaf3!important;color:#573a08!important}.semantic_ui .ui.table td.active,.semantic_ui .ui.table tr.active{-webkit-box-shadow:0 0 0 rgba(0,0,0,.87) inset;box-shadow:inset 0 0 0 rgba(0,0,0,.87);background:#e0e0e0!important;color:rgba(0,0,0,.87)!important}.semantic_ui .ui.table tr.disabled:hover,.semantic_ui .ui.table tr.disabled td,.semantic_ui .ui.table tr:hover td.disabled,.semantic_ui .ui.table tr td.disabled{pointer-events:none;color:rgba(40,40,40,.3)}@media only screen and (max-width:991px){.semantic_ui .ui[class*="tablet stackable"].table,.semantic_ui .ui[class*="tablet stackable"].table tbody,.semantic_ui .ui[class*="tablet stackable"].table tr,.semantic_ui .ui[class*="tablet stackable"].table tr>td,.semantic_ui .ui[class*="tablet stackable"].table tr>th{width:100%!important;display:block!important}.semantic_ui .ui[class*="tablet stackable"].table{padding:0}.semantic_ui .ui[class*="tablet stackable"].table tfoot,.semantic_ui .ui[class*="tablet stackable"].table thead{display:block}.semantic_ui .ui[class*="tablet stackable"].table tr{padding-top:1em;padding-bottom:1em;-webkit-box-shadow:0 -1px 0 0 rgba(0,0,0,.1) inset!important;box-shadow:inset 0 -1px 0 0 rgba(0,0,0,.1)!important}.semantic_ui .ui[class*="tablet stackable"].table tr>td,.semantic_ui .ui[class*="tablet stackable"].table tr>th{background:none;border:none!important;padding:.25em .75em;-webkit-box-shadow:none!important;box-shadow:none!important}.semantic_ui .ui.definition[class*="tablet stackable"].table thead th:first-child{-webkit-box-shadow:none!important;box-shadow:none!important}}.semantic_ui .ui.table[class*="left aligned"],.semantic_ui .ui.table [class*="left aligned"]{text-align:left}.semantic_ui .ui.table[class*="center aligned"],.semantic_ui .ui.table [class*="center aligned"]{text-align:center}.semantic_ui .ui.table[class*="right aligned"],.semantic_ui .ui.table [class*="right aligned"]{text-align:right}.semantic_ui .ui.table[class*="top aligned"],.semantic_ui .ui.table [class*="top aligned"]{vertical-align:top}.semantic_ui .ui.table[class*="middle aligned"],.semantic_ui .ui.table [class*="middle aligned"]{vertical-align:middle}.semantic_ui .ui.table[class*="bottom aligned"],.semantic_ui .ui.table [class*="bottom aligned"]{vertical-align:bottom}.semantic_ui .ui.fixed.table{table-layout:fixed}.semantic_ui .ui.fixed.table td,.semantic_ui .ui.fixed.table th{overflow:hidden;text-overflow:ellipsis}.semantic_ui .ui.selectable.table tbody tr:hover,.semantic_ui .ui.table tbody tr td.selectable:hover{background:rgba(0,0,0,.05)!important;color:rgba(0,0,0,.95)!important}.semantic_ui .ui.inverted.table tbody tr td.selectable:hover,.semantic_ui .ui.selectable.inverted.table tbody tr:hover{background:hsla(0,0%,100%,.08)!important;color:#fff!important}.semantic_ui .ui.table tbody tr td.selectable{padding:0}.semantic_ui .ui.table tbody tr td.selectable>a:not(.ui){display:block;color:inherit;padding:.78571429em}.semantic_ui .ui.selectable.table tr.error:hover,.semantic_ui .ui.selectable.table tr:hover td.error,.semantic_ui .ui.table tr td.selectable.error:hover{background:#ffe7e7!important;color:#943634!important}.semantic_ui .ui.selectable.table tr.warning:hover,.semantic_ui .ui.selectable.table tr:hover td.warning,.semantic_ui .ui.table tr td.selectable.warning:hover{background:#fff4e4!important;color:#493107!important}.semantic_ui .ui.selectable.table tr.active:hover,.semantic_ui .ui.selectable.table tr:hover td.active,.semantic_ui .ui.table tr td.selectable.active:hover{background:#e0e0e0!important;color:rgba(0,0,0,.87)!important}.semantic_ui .ui.selectable.table tr.positive:hover,.semantic_ui .ui.selectable.table tr:hover td.positive,.semantic_ui .ui.table tr td.selectable.positive:hover{background:#f7ffe6!important;color:#275b28!important}.semantic_ui .ui.selectable.table tr.negative:hover,.semantic_ui .ui.selectable.table tr:hover td.negative,.semantic_ui .ui.table tr td.selectable.negative:hover{background:#ffe7e7!important;color:#943634!important}.semantic_ui .ui.attached.table{top:0;bottom:0;border-radius:0;margin:0 -1px;width:calc(100% + 2px);max-width:calc(100% + 2px);-webkit-box-shadow:none;box-shadow:none;border:1px solid #d4d4d5}.semantic_ui .ui.attached+.ui.attached.table:not(.top){border-top:none}.semantic_ui .ui[class*="top attached"].table{bottom:0;margin-bottom:0;top:0;margin-top:1em;border-radius:.28571429rem .28571429rem 0 0}.semantic_ui .ui.table[class*="top attached"]:first-child{margin-top:0}.semantic_ui .ui[class*="bottom attached"].table{bottom:0;margin-top:0;top:0;margin-bottom:1em;-webkit-box-shadow:none,none;box-shadow:none,none;border-radius:0 0 .28571429rem .28571429rem}.semantic_ui .ui[class*="bottom attached"].table:last-child{margin-bottom:0}.semantic_ui .ui.striped.table>tr:nth-child(2n),.semantic_ui .ui.striped.table tbody tr:nth-child(2n){background-color:rgba(0,0,50,.02)}.semantic_ui .ui.inverted.striped.table>tr:nth-child(2n),.semantic_ui .ui.inverted.striped.table tbody tr:nth-child(2n){background-color:hsla(0,0%,100%,.05)}.semantic_ui .ui.striped.selectable.selectable.selectable.table tbody tr.active:hover{background:#efefef!important;color:rgba(0,0,0,.95)!important}.semantic_ui .ui.table[class*="single line"],.semantic_ui .ui.table [class*="single line"]{white-space:nowrap}.semantic_ui .ui.one.column.table td{width:100%}.semantic_ui .ui.two.column.table td{width:50%}.semantic_ui .ui.three.column.table td{width:33.33333333%}.semantic_ui .ui.four.column.table td{width:25%}.semantic_ui .ui.five.column.table td{width:20%}.semantic_ui .ui.six.column.table td{width:16.66666667%}.semantic_ui .ui.seven.column.table td{width:14.28571429%}.semantic_ui .ui.eight.column.table td{width:12.5%}.semantic_ui .ui.nine.column.table td{width:11.11111111%}.semantic_ui .ui.ten.column.table td{width:10%}.semantic_ui .ui.eleven.column.table td{width:9.09090909%}.semantic_ui .ui.twelve.column.table td{width:8.33333333%}.semantic_ui .ui.thirteen.column.table td{width:7.69230769%}.semantic_ui .ui.fourteen.column.table td{width:7.14285714%}.semantic_ui .ui.fifteen.column.table td{width:6.66666667%}.semantic_ui .ui.sixteen.column.table td,.semantic_ui .ui.table td.one.wide,.semantic_ui .ui.table th.one.wide{width:6.25%}.semantic_ui .ui.table td.two.wide,.semantic_ui .ui.table th.two.wide{width:12.5%}.semantic_ui .ui.table td.three.wide,.semantic_ui .ui.table th.three.wide{width:18.75%}.semantic_ui .ui.table td.four.wide,.semantic_ui .ui.table th.four.wide{width:25%}.semantic_ui .ui.table td.five.wide,.semantic_ui .ui.table th.five.wide{width:31.25%}.semantic_ui .ui.table td.six.wide,.semantic_ui .ui.table th.six.wide{width:37.5%}.semantic_ui .ui.table td.seven.wide,.semantic_ui .ui.table th.seven.wide{width:43.75%}.semantic_ui .ui.table td.eight.wide,.semantic_ui .ui.table th.eight.wide{width:50%}.semantic_ui .ui.table td.nine.wide,.semantic_ui .ui.table th.nine.wide{width:56.25%}.semantic_ui .ui.table td.ten.wide,.semantic_ui .ui.table th.ten.wide{width:62.5%}.semantic_ui .ui.table td.eleven.wide,.semantic_ui .ui.table th.eleven.wide{width:68.75%}.semantic_ui .ui.table td.twelve.wide,.semantic_ui .ui.table th.twelve.wide{width:75%}.semantic_ui .ui.table td.thirteen.wide,.semantic_ui .ui.table th.thirteen.wide{width:81.25%}.semantic_ui .ui.table td.fourteen.wide,.semantic_ui .ui.table th.fourteen.wide{width:87.5%}.semantic_ui .ui.table td.fifteen.wide,.semantic_ui .ui.table th.fifteen.wide{width:93.75%}.semantic_ui .ui.table td.sixteen.wide,.semantic_ui .ui.table th.sixteen.wide{width:100%}.semantic_ui .ui.sortable.table thead th{cursor:pointer;white-space:nowrap;border-left:1px solid rgba(34,36,38,.15);color:rgba(0,0,0,.87)}.semantic_ui .ui.sortable.table thead th:first-child{border-left:none}.semantic_ui .ui.sortable.table thead th.sorted,.semantic_ui .ui.sortable.table thead th.sorted:hover{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.semantic_ui .ui.sortable.table thead th:after{display:none;font-style:normal;font-weight:400;text-decoration:inherit;content:"";height:1em;width:auto;opacity:.8;margin:0 0 0 .5em;font-family:Icons}.semantic_ui .ui.sortable.table thead th.ascending:after{content:"\F0D8"}.semantic_ui .ui.sortable.table thead th.descending:after{content:"\F0D7"}.semantic_ui .ui.sortable.table th.disabled:hover{cursor:auto;color:rgba(40,40,40,.3)}.semantic_ui .ui.sortable.table thead th:hover{background:rgba(0,0,0,.05);color:rgba(0,0,0,.8)}.semantic_ui .ui.sortable.table thead th.sorted{background:rgba(0,0,0,.05);color:rgba(0,0,0,.95)}.semantic_ui .ui.sortable.table thead th.sorted:after{display:inline-block}.semantic_ui .ui.sortable.table thead th.sorted:hover{background:rgba(0,0,0,.05);color:rgba(0,0,0,.95)}.semantic_ui .ui.inverted.sortable.table thead th.sorted{background:hsla(0,0%,100%,.15) -webkit-gradient(linear,left top,left bottom,from(transparent),to(rgba(0,0,0,.05)));background:hsla(0,0%,100%,.15) linear-gradient(transparent,rgba(0,0,0,.05));color:#fff}.semantic_ui .ui.inverted.sortable.table thead th:hover{background:hsla(0,0%,100%,.08) -webkit-gradient(linear,left top,left bottom,from(transparent),to(rgba(0,0,0,.05)));background:hsla(0,0%,100%,.08) linear-gradient(transparent,rgba(0,0,0,.05));color:#fff}.semantic_ui .ui.inverted.sortable.table thead th{border-left-color:transparent;border-right-color:transparent}.semantic_ui .ui.collapsing.table{width:auto}.semantic_ui .ui.basic.table{background:transparent;border:1px solid rgba(34,36,38,.15)}.semantic_ui .ui.basic.table,.semantic_ui .ui.basic.table tfoot,.semantic_ui .ui.basic.table thead{-webkit-box-shadow:none;box-shadow:none}.semantic_ui .ui.basic.table th{background:transparent;border-left:none}.semantic_ui .ui.basic.table tbody tr{border-bottom:1px solid rgba(0,0,0,.1)}.semantic_ui .ui.basic.table td{background:transparent}.semantic_ui .ui.basic.striped.table tbody tr:nth-child(2n){background-color:rgba(0,0,0,.05)!important}.semantic_ui .ui[class*="very basic"].table{border:none}.semantic_ui .ui[class*="very basic"].table:not(.sortable):not(.striped) td,.semantic_ui .ui[class*="very basic"].table:not(.sortable):not(.striped) th{padding:""}.semantic_ui .ui[class*="very basic"].table:not(.sortable):not(.striped) td:first-child,.semantic_ui .ui[class*="very basic"].table:not(.sortable):not(.striped) th:first-child{padding-left:0}.semantic_ui .ui[class*="very basic"].table:not(.sortable):not(.striped) td:last-child,.semantic_ui .ui[class*="very basic"].table:not(.sortable):not(.striped) th:last-child{padding-right:0}.semantic_ui .ui[class*="very basic"].table:not(.sortable):not(.striped) thead tr:first-child th{padding-top:0}.semantic_ui .ui.celled.table tr td,.semantic_ui .ui.celled.table tr th{border-left:1px solid rgba(34,36,38,.1)}.semantic_ui .ui.celled.table tr td:first-child,.semantic_ui .ui.celled.table tr th:first-child{border-left:none}.semantic_ui .ui.padded.table th{padding-left:1em;padding-right:1em}.semantic_ui .ui.padded.table td,.semantic_ui .ui.padded.table th{padding:1em}.semantic_ui .ui[class*="very padded"].table th{padding-left:1.5em;padding-right:1.5em}.semantic_ui .ui[class*="very padded"].table td{padding:1.5em}.semantic_ui .ui.compact.table th{padding-left:.7em;padding-right:.7em}.semantic_ui .ui.compact.table td{padding:.5em .7em}.semantic_ui .ui[class*="very compact"].table th{padding-left:.6em;padding-right:.6em}.semantic_ui .ui[class*="very compact"].table td{padding:.4em .6em}.semantic_ui .ui.small.table{font-size:.9em}.semantic_ui .ui.table{font-size:1em}.semantic_ui .ui.large.table{font-size:1.1em}.colored_table table.foo-table.inverted.red.table{background-color:#db2828!important;color:#fff!important}.colored_table table.foo-table.inverted.orange.table{background-color:#f2711c!important;color:#fff!important}.colored_table table.foo-table.inverted.yellow.table{background-color:#fbbd08!important;color:#fff!important}.colored_table table.foo-table.inverted.olive.table{background-color:#b5cc18!important;color:#fff!important}.colored_table table.foo-table.inverted.green.table{background-color:#21ba45!important;color:#fff!important}.colored_table table.foo-table.inverted.teal.table{background-color:#00b5ad!important;color:#fff!important}.colored_table table.foo-table.inverted.blue.table{background-color:#2185d0!important;color:#fff!important}.colored_table table.foo-table.inverted.violet.table{background-color:#6435c9!important;color:#fff!important}.colored_table table.foo-table.inverted.purple.table{background-color:#a333c8!important;color:#fff!important}.colored_table table.foo-table.inverted.pink.table{background-color:#e03997!important;color:#fff!important}.colored_table table.foo-table.inverted.brown.table{background-color:#a5673f!important;color:#fff!important}.colored_table table.foo-table.inverted.grey.table{background-color:#767676!important;color:#fff!important}.colored_table table.foo-table.inverted.black.table{background-color:#1b1c1d!important;color:#fff!important}.colored_table table.foo-table.inverted.table{background:#333;color:hsla(0,0%,100%,.9);border:none}.colored_table table.foo-table.inverted.table th{background-color:rgba(0,0,0,.15);border-color:hsla(0,0%,100%,.1)!important;color:hsla(0,0%,100%,.9)!important}.colored_table table.foo-table.inverted.table tr td{border-color:hsla(0,0%,100%,.1)!important}.colored_table table.foo-table.inverted.table tr.disabled:hover td,.colored_table table.foo-table.inverted.table tr.disabled td,.colored_table table.foo-table.inverted.table tr:hover td.disabled,.colored_table table.foo-table.inverted.table tr td.disabled{pointer-events:none;color:hsla(0,0%,88%,.3)}.colored_table table.foo-table.inverted.definition.table tfoot:not(.full-width) th:first-child,.colored_table table.foo-table.inverted.definition.table thead:not(.full-width) th:first-child{background:#fff}.colored_table table.foo-table.inverted.definition.table tr td:first-child{background:hsla(0,0%,100%,.02);color:#fff}.colored_table table.foo-table.inverted.table-striped tbody tr:nth-of-type(odd){background-color:hsla(0,0%,100%,.05)}.colored_table table.foo-table.inverted .pagination>.active>a,.colored_table table.foo-table.inverted .pagination>.active>a:focus,.colored_table table.foo-table.inverted .pagination>.active>a:hover,.colored_table table.foo-table.inverted .pagination>.active>span,.colored_table table.foo-table.inverted .pagination>.active>span:focus,.colored_table table.foo-table.inverted .pagination>.active>span:hover{background-color:rgba(0,0,0,.15);border-color:hsla(0,0%,100%,.1)!important;color:hsla(0,0%,100%,.9)!important;-webkit-box-shadow:inset 0 0 0 hsla(0,0%,100%,.1),0 1px 0 hsla(0,0%,100%,.1);box-shadow:inset 0 0 0 hsla(0,0%,100%,.1),0 1px 0 hsla(0,0%,100%,.1)}.colored_table table.foo-table.inverted .pagination a.footable-page-link{color:rgba(0,0,0,.5)}.colored_table table.foo-table.inverted .input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle){background-color:hsla(0,0%,100%,.1);border-color:hsla(0,0%,100%,.1)!important;color:hsla(0,0%,100%,.9)!important}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ .foo-table span.label.label-default {
2
+ display: none;
3
+ visibility: hidden;
4
+ }
5
+
6
+ .foo-table table.footable-details tr th {
7
+ white-space: initial;
8
+ overflow: visible !important;
9
+ text-overflow: unset !important;
10
+ }
11
+
12
+ .foo-table tr.footable-filtering th {
13
+ overflow: visible !important;
14
+ }
15
+
16
+ .foo-table .pagination {
17
+ border: none;
18
+ padding: 0px;
19
+ font-weight: 500;
20
+ }
21
+
22
+ .foo-table button.btn.btn-default.dropdown-toggle {
23
+ right: 0px;
24
+ left: 0px;
25
+ }
26
+
27
+ .foo-table li.dropdown-header {
28
+ padding-left: 20px;
29
+ padding-bottom: 5px;
30
+ color: #333333;
31
+ }
32
+
33
+ .foo-table ul.dropdown-menu.dropdown-menu-right li:last-child a {
34
+ border-bottom: 0px !important;
35
+ -webkit-box-shadow: none;
36
+ box-shadow: none;
37
+ }
38
+
39
+ .foo-table ul.dropdown-menu.dropdown-menu-right li a:hover {
40
+ -webkit-box-shadow: inset 0 0 0 transparent, 0 1px 0 black;
41
+ box-shadow: inset 0 0 0 transparent, 0 1px 0 black;
42
+ }
43
+
44
+ .foo-table span.footable-toggle {
45
+ cursor: pointer;
46
+ }
47
+
48
+ .footable_parent {
49
+ overflow-x: auto;
50
+ }
51
+
52
+ @font-face {
53
+ font-family: "ninja-tables-fontawesome";
54
+ src: url(/fonts/ninja-tables-fontawesome.eot?0fb29fbec7db9ea5c763221346490d6f);
55
+ src: url(/fonts/ninja-tables-fontawesome.eot?0fb29fbec7db9ea5c763221346490d6f) format("embedded-opentype"), url(/fonts/ninja-tables-fontawesome.woff?bc6b6cc2d737de1e7016d2a79d7a7b96) format("woff"), url(/fonts/ninja-tables-fontawesome.ttf?cbdbbb96491338197ebb7894b76c926a) format("truetype"), url(/fonts/ninja-tables-fontawesome.svg?2efdf20b500df61d7043da16a83f00fc) format("svg");
56
+ font-weight: normal;
57
+ font-style: normal;
58
+ }
59
+
60
+ [data-icon]:before {
61
+ font-family: "ninja-tables-fontawesome" !important;
62
+ content: attr(data-icon);
63
+ font-style: normal !important;
64
+ font-weight: normal !important;
65
+ font-variant: normal !important;
66
+ text-transform: none !important;
67
+ speak: none;
68
+ line-height: 1;
69
+ -webkit-font-smoothing: antialiased;
70
+ -moz-osx-font-smoothing: grayscale;
71
+ }
72
+
73
+ [class^="fooicon-"]:before,
74
+ [class*=" fooicon-"]:before {
75
+ font-family: "ninja-tables-fontawesome" !important;
76
+ font-style: normal !important;
77
+ font-weight: normal !important;
78
+ font-variant: normal !important;
79
+ text-transform: none !important;
80
+ speak: none;
81
+ line-height: 1;
82
+ -webkit-font-smoothing: antialiased;
83
+ -moz-osx-font-smoothing: grayscale;
84
+ }
85
+
86
+ .fooicon-search:before {
87
+ content: "\F002";
88
+ }
89
+
90
+ .fooicon-sort-desc:before {
91
+ content: "\F161";
92
+ }
93
+
94
+ .fooicon-sort-asc:before {
95
+ content: "\F160";
96
+ }
97
+
98
+ .fooicon-sort:before {
99
+ content: "\F0DC";
100
+ }
101
+
102
+ .fooicon-minus:before {
103
+ content: "\F068";
104
+ }
105
+
106
+ .fooicon-plus:before {
107
+ content: "\F067";
108
+ }
109
+
110
+ .fooicon-circle-o-notch:before {
111
+ content: "\E000";
112
+ }
113
+
114
+ .fooicon-remove-1:before {
115
+ content: "\F00D";
116
+ }
117
+
118
+ .fooicon-loader-alt:before {
119
+ content: "\F01";
120
+ }
121
+
122
+ .fooicon-refresh:before {
123
+ content: "\E001";
124
+ }
125
+
126
+ .fooicon-loader:before {
127
+ content: "\F01E";
128
+ }
129
+
130
+ .bootstrap3 table {
131
+ background-color: transparent;
132
+ }
133
+
134
+ .bootstrap3 caption {
135
+ padding-top: 8px;
136
+ padding-bottom: 8px;
137
+ color: #777;
138
+ text-align: left;
139
+ }
140
+
141
+ .bootstrap3 th {
142
+ text-align: left;
143
+ }
144
+
145
+ .bootstrap3 .table {
146
+ width: 100%;
147
+ max-width: 100%;
148
+ margin-bottom: 20px;
149
+ }
150
+
151
+ .bootstrap3 .table > thead > tr > th,
152
+ .bootstrap3 .table > tbody > tr > th,
153
+ .bootstrap3 .table > tfoot > tr > th,
154
+ .bootstrap3 .table > thead > tr > td,
155
+ .bootstrap3 .table > tbody > tr > td,
156
+ .bootstrap3 .table > tfoot > tr > td {
157
+ padding: 8px;
158
+ line-height: 1.42857143;
159
+ vertical-align: top;
160
+ border-top: 1px solid #ddd;
161
+ }
162
+
163
+ .bootstrap3 .table > thead > tr > th {
164
+ vertical-align: bottom;
165
+ border-bottom: 2px solid #ddd;
166
+ }
167
+
168
+ .bootstrap3 .table > caption + thead > tr:first-child > th,
169
+ .bootstrap3 .table > colgroup + thead > tr:first-child > th,
170
+ .bootstrap3 .table > thead:first-child > tr:first-child > th,
171
+ .bootstrap3 .table > caption + thead > tr:first-child > td,
172
+ .bootstrap3 .table > colgroup + thead > tr:first-child > td,
173
+ .bootstrap3 .table > thead:first-child > tr:first-child > td {
174
+ border-top: 0;
175
+ }
176
+
177
+ .bootstrap3 .table > tbody + tbody {
178
+ border-top: 2px solid #ddd;
179
+ }
180
+
181
+ .bootstrap3 .table .table {
182
+ background-color: #fff;
183
+ }
184
+
185
+ .bootstrap3 .table-condensed > thead > tr > th,
186
+ .bootstrap3 .table-condensed > tbody > tr > th,
187
+ .bootstrap3 .table-condensed > tfoot > tr > th,
188
+ .bootstrap3 .table-condensed > thead > tr > td,
189
+ .bootstrap3 .table-condensed > tbody > tr > td,
190
+ .bootstrap3 .table-condensed > tfoot > tr > td {
191
+ padding: 5px;
192
+ }
193
+
194
+ .bootstrap3 .table-bordered {
195
+ border: 1px solid #ddd;
196
+ }
197
+
198
+ .bootstrap3 .table-bordered > thead > tr > th,
199
+ .bootstrap3 .table-bordered > tbody > tr > th,
200
+ .bootstrap3 .table-bordered > tfoot > tr > th,
201
+ .bootstrap3 .table-bordered > thead > tr > td,
202
+ .bootstrap3 .table-bordered > tbody > tr > td,
203
+ .bootstrap3 .table-bordered > tfoot > tr > td {
204
+ border: 1px solid #ddd;
205
+ }
206
+
207
+ .bootstrap3 .table-bordered > thead > tr > th,
208
+ .bootstrap3 .table-bordered > thead > tr > td {
209
+ border-bottom-width: 2px;
210
+ }
211
+
212
+ .bootstrap3 .table-striped > tbody > tr:nth-of-type(odd) {
213
+ background-color: #f9f9f9;
214
+ }
215
+
216
+ .bootstrap3 .table-hover > tbody > tr:hover {
217
+ background-color: #f5f5f5;
218
+ }
219
+
220
+ .bootstrap3 table col[class*="col-"] {
221
+ position: static;
222
+ display: table-column;
223
+ float: none;
224
+ }
225
+
226
+ .bootstrap3 table td[class*="col-"],
227
+ .bootstrap3 table th[class*="col-"] {
228
+ position: static;
229
+ display: table-cell;
230
+ float: none;
231
+ }
232
+
233
+ .bootstrap3 .table > thead > tr > td.active,
234
+ .bootstrap3 .table > tbody > tr > td.active,
235
+ .bootstrap3 .table > tfoot > tr > td.active,
236
+ .bootstrap3 .table > thead > tr > th.active,
237
+ .bootstrap3 .table > tbody > tr > th.active,
238
+ .bootstrap3 .table > tfoot > tr > th.active,
239
+ .bootstrap3 .table > thead > tr.active > td,
240
+ .bootstrap3 .table > tbody > tr.active > td,
241
+ .bootstrap3 .table > tfoot > tr.active > td,
242
+ .bootstrap3 .table > thead > tr.active > th,
243
+ .bootstrap3 .table > tbody > tr.active > th,
244
+ .bootstrap3 .table > tfoot > tr.active > th {
245
+ background-color: #f5f5f5;
246
+ }
247
+
248
+ .bootstrap3 .table-hover > tbody > tr > td.active:hover,
249
+ .bootstrap3 .table-hover > tbody > tr > th.active:hover,
250
+ .bootstrap3 .table-hover > tbody > tr.active:hover > td,
251
+ .bootstrap3 .table-hover > tbody > tr:hover > .active,
252
+ .bootstrap3 .table-hover > tbody > tr.active:hover > th {
253
+ background-color: #e8e8e8;
254
+ }
255
+
256
+ .bootstrap3 .table > thead > tr > td.success,
257
+ .bootstrap3 .table > tbody > tr > td.success,
258
+ .bootstrap3 .table > tfoot > tr > td.success,
259
+ .bootstrap3 .table > thead > tr > th.success,
260
+ .bootstrap3 .table > tbody > tr > th.success,
261
+ .bootstrap3 .table > tfoot > tr > th.success,
262
+ .bootstrap3 .table > thead > tr.success > td,
263
+ .bootstrap3 .table > tbody > tr.success > td,
264
+ .bootstrap3 .table > tfoot > tr.success > td,
265
+ .bootstrap3 .table > thead > tr.success > th,
266
+ .bootstrap3 .table > tbody > tr.success > th,
267
+ .bootstrap3 .table > tfoot > tr.success > th {
268
+ background-color: #dff0d8;
269
+ }
270
+
271
+ .bootstrap3 .table-hover > tbody > tr > td.success:hover,
272
+ .bootstrap3 .table-hover > tbody > tr > th.success:hover,
273
+ .bootstrap3 .table-hover > tbody > tr.success:hover > td,
274
+ .bootstrap3 .table-hover > tbody > tr:hover > .success,
275
+ .bootstrap3 .table-hover > tbody > tr.success:hover > th {
276
+ background-color: #d0e9c6;
277
+ }
278
+
279
+ .bootstrap3 .table > thead > tr > td.info,
280
+ .bootstrap3 .table > tbody > tr > td.info,
281
+ .bootstrap3 .table > tfoot > tr > td.info,
282
+ .bootstrap3 .table > thead > tr > th.info,
283
+ .bootstrap3 .table > tbody > tr > th.info,
284
+ .bootstrap3 .table > tfoot > tr > th.info,
285
+ .bootstrap3 .table > thead > tr.info > td,
286
+ .bootstrap3 .table > tbody > tr.info > td,
287
+ .bootstrap3 .table > tfoot > tr.info > td,
288
+ .bootstrap3 .table > thead > tr.info > th,
289
+ .bootstrap3 .table > tbody > tr.info > th,
290
+ .bootstrap3 .table > tfoot > tr.info > th {
291
+ background-color: #d9edf7;
292
+ }
293
+
294
+ .bootstrap3 .table-hover > tbody > tr > td.info:hover,
295
+ .bootstrap3 .table-hover > tbody > tr > th.info:hover,
296
+ .bootstrap3 .table-hover > tbody > tr.info:hover > td,
297
+ .bootstrap3 .table-hover > tbody > tr:hover > .info,
298
+ .bootstrap3 .table-hover > tbody > tr.info:hover > th {
299
+ background-color: #c4e3f3;
300
+ }
301
+
302
+ .bootstrap3 .table > thead > tr > td.warning,
303
+ .bootstrap3 .table > tbody > tr > td.warning,
304
+ .bootstrap3 .table > tfoot > tr > td.warning,
305
+ .bootstrap3 .table > thead > tr > th.warning,
306
+ .bootstrap3 .table > tbody > tr > th.warning,
307
+ .bootstrap3 .table > tfoot > tr > th.warning,
308
+ .bootstrap3 .table > thead > tr.warning > td,
309
+ .bootstrap3 .table > tbody > tr.warning > td,
310
+ .bootstrap3 .table > tfoot > tr.warning > td,
311
+ .bootstrap3 .table > thead > tr.warning > th,
312
+ .bootstrap3 .table > tbody > tr.warning > th,
313
+ .bootstrap3 .table > tfoot > tr.warning > th {
314
+ background-color: #fcf8e3;
315
+ }
316
+
317
+ .bootstrap3 .table-hover > tbody > tr > td.warning:hover,
318
+ .bootstrap3 .table-hover > tbody > tr > th.warning:hover,
319
+ .bootstrap3 .table-hover > tbody > tr.warning:hover > td,
320
+ .bootstrap3 .table-hover > tbody > tr:hover > .warning,
321
+ .bootstrap3 .table-hover > tbody > tr.warning:hover > th {
322
+ background-color: #faf2cc;
323
+ }
324
+
325
+ .bootstrap3 .table > thead > tr > td.danger,
326
+ .bootstrap3 .table > tbody > tr > td.danger,
327
+ .bootstrap3 .table > tfoot > tr > td.danger,
328
+ .bootstrap3 .table > thead > tr > th.danger,
329
+ .bootstrap3 .table > tbody > tr > th.danger,
330
+ .bootstrap3 .table > tfoot > tr > th.danger,
331
+ .bootstrap3 .table > thead > tr.danger > td,
332
+ .bootstrap3 .table > tbody > tr.danger > td,
333
+ .bootstrap3 .table > tfoot > tr.danger > td,
334
+ .bootstrap3 .table > thead > tr.danger > th,
335
+ .bootstrap3 .table > tbody > tr.danger > th,
336
+ .bootstrap3 .table > tfoot > tr.danger > th {
337
+ background-color: #f2dede;
338
+ }
339
+
340
+ .bootstrap3 .table-hover > tbody > tr > td.danger:hover,
341
+ .bootstrap3 .table-hover > tbody > tr > th.danger:hover,
342
+ .bootstrap3 .table-hover > tbody > tr.danger:hover > td,
343
+ .bootstrap3 .table-hover > tbody > tr:hover > .danger,
344
+ .bootstrap3 .table-hover > tbody > tr.danger:hover > th {
345
+ background-color: #ebcccc;
346
+ }
347
+
348
+ .bootstrap3 .table-responsive {
349
+ min-height: .01%;
350
+ overflow-x: auto;
351
+ }
352
+
353
+ @media screen and (max-width: 767px) {
354
+ .bootstrap3 .table-responsive {
355
+ width: 100%;
356
+ margin-bottom: 15px;
357
+ overflow-y: hidden;
358
+ -ms-overflow-style: -ms-autohiding-scrollbar;
359
+ border: 1px solid #ddd;
360
+ }
361
+
362
+ .bootstrap3 .table-responsive > .table {
363
+ margin-bottom: 0;
364
+ }
365
+
366
+ .bootstrap3 .table-responsive > .table > thead > tr > th,
367
+ .bootstrap3 .table-responsive > .table > tbody > tr > th,
368
+ .bootstrap3 .table-responsive > .table > tfoot > tr > th,
369
+ .bootstrap3 .table-responsive > .table > thead > tr > td,
370
+ .bootstrap3 .table-responsive > .table > tbody > tr > td,
371
+ .bootstrap3 .table-responsive > .table > tfoot > tr > td {
372
+ white-space: nowrap;
373
+ }
374
+
375
+ .bootstrap3 .table-responsive > .table-bordered {
376
+ border: 0;
377
+ }
378
+
379
+ .bootstrap3 .table-responsive > .table-bordered > thead > tr > th:first-child,
380
+ .bootstrap3 .table-responsive > .table-bordered > tbody > tr > th:first-child,
381
+ .bootstrap3 .table-responsive > .table-bordered > tfoot > tr > th:first-child,
382
+ .bootstrap3 .table-responsive > .table-bordered > thead > tr > td:first-child,
383
+ .bootstrap3 .table-responsive > .table-bordered > tbody > tr > td:first-child,
384
+ .bootstrap3 .table-responsive > .table-bordered > tfoot > tr > td:first-child {
385
+ border-left: 0;
386
+ }
387
+
388
+ .bootstrap3 .table-responsive > .table-bordered > thead > tr > th:last-child,
389
+ .bootstrap3 .table-responsive > .table-bordered > tbody > tr > th:last-child,
390
+ .bootstrap3 .table-responsive > .table-bordered > tfoot > tr > th:last-child,
391
+ .bootstrap3 .table-responsive > .table-bordered > thead > tr > td:last-child,
392
+ .bootstrap3 .table-responsive > .table-bordered > tbody > tr > td:last-child,
393
+ .bootstrap3 .table-responsive > .table-bordered > tfoot > tr > td:last-child {
394
+ border-right: 0;
395
+ }
396
+
397
+ .bootstrap3 .table-responsive > .table-bordered > tbody > tr:last-child > th,
398
+ .bootstrap3 .table-responsive > .table-bordered > tfoot > tr:last-child > th,
399
+ .bootstrap3 .table-responsive > .table-bordered > tbody > tr:last-child > td,
400
+ .bootstrap3 .table-responsive > .table-bordered > tfoot > tr:last-child > td {
401
+ border-bottom: 0;
402
+ }
403
+ }
404
+
405
+ .bootstrap4 .table {
406
+ width: 100%;
407
+ max-width: 100%;
408
+ margin-bottom: 1rem;
409
+ background-color: transparent;
410
+ }
411
+
412
+ .bootstrap4 .table th,
413
+ .bootstrap4 .table td {
414
+ padding: 0.75rem;
415
+ vertical-align: top;
416
+ border-top: 1px solid #e9ecef;
417
+ }
418
+
419
+ .bootstrap4 .table thead th {
420
+ vertical-align: bottom;
421
+ border-bottom: 2px solid #e9ecef;
422
+ }
423
+
424
+ .bootstrap4 .table tbody + tbody {
425
+ border-top: 2px solid #e9ecef;
426
+ }
427
+
428
+ .bootstrap4 .table .table {
429
+ background-color: #fff;
430
+ color: black;
431
+ }
432
+
433
+ .bootstrap4 .table-sm th,
434
+ .bootstrap4 .table-sm td {
435
+ padding: 0.3rem;
436
+ }
437
+
438
+ .bootstrap4 .table-bordered {
439
+ border: 1px solid #e9ecef;
440
+ }
441
+
442
+ .bootstrap4 .table-bordered th,
443
+ .bootstrap4 .table-bordered td {
444
+ border: 1px solid #e9ecef;
445
+ }
446
+
447
+ .bootstrap4 .table-bordered thead th,
448
+ .bootstrap4 .table-bordered thead td {
449
+ border-bottom-width: 2px;
450
+ }
451
+
452
+ .bootstrap4 .table-striped tbody tr:nth-of-type(odd) {
453
+ background-color: rgba(0, 0, 0, 0.05);
454
+ }
455
+
456
+ .bootstrap4 .table-hover tbody tr:hover {
457
+ background-color: rgba(0, 0, 0, 0.075);
458
+ }
459
+
460
+ .bootstrap4 .table-primary,
461
+ .bootstrap4 .table-primary > th,
462
+ .bootstrap4 .table-primary > td {
463
+ background-color: #b8daff;
464
+ }
465
+
466
+ .bootstrap4 .table-hover .table-primary:hover {
467
+ background-color: #9fcdff;
468
+ }
469
+
470
+ .bootstrap4 .table-hover .table-primary:hover > td,
471
+ .bootstrap4 .table-hover .table-primary:hover > th {
472
+ background-color: #9fcdff;
473
+ }
474
+
475
+ .bootstrap4 .table-secondary,
476
+ .bootstrap4 .table-secondary > th,
477
+ .bootstrap4 .table-secondary > td {
478
+ background-color: #dddfe2;
479
+ }
480
+
481
+ .bootstrap4 .table-hover .table-secondary:hover {
482
+ background-color: #cfd2d6;
483
+ }
484
+
485
+ .bootstrap4 .table-hover .table-secondary:hover > td,
486
+ .bootstrap4 .table-hover .table-secondary:hover > th {
487
+ background-color: #cfd2d6;
488
+ }
489
+
490
+ .bootstrap4 .table-success,
491
+ .bootstrap4 .table-success > th,
492
+ .bootstrap4 .table-success > td {
493
+ background-color: #c3e6cb;
494
+ }
495
+
496
+ .bootstrap4 .table-hover .table-success:hover {
497
+ background-color: #b1dfbb;
498
+ }
499
+
500
+ .bootstrap4 .table-hover .table-success:hover > td,
501
+ .bootstrap4 .table-hover .table-success:hover > th {
502
+ background-color: #b1dfbb;
503
+ }
504
+
505
+ .bootstrap4 .table-info,
506
+ .bootstrap4 .table-info > th,
507
+ .bootstrap4 .table-info > td {
508
+ background-color: #bee5eb;
509
+ }
510
+
511
+ .bootstrap4 .table-hover .table-info:hover {
512
+ background-color: #abdde5;
513
+ }
514
+
515
+ .bootstrap4 .table-hover .table-info:hover > td,
516
+ .bootstrap4 .table-hover .table-info:hover > th {
517
+ background-color: #abdde5;
518
+ }
519
+
520
+ .bootstrap4 .table-warning,
521
+ .bootstrap4 .table-warning > th,
522
+ .bootstrap4 .table-warning > td {
523
+ background-color: #ffeeba;
524
+ }
525
+
526
+ .bootstrap4 .table-hover .table-warning:hover {
527
+ background-color: #ffe8a1;
528
+ }
529
+
530
+ .bootstrap4 .table-hover .table-warning:hover > td,
531
+ .bootstrap4 .table-hover .table-warning:hover > th {
532
+ background-color: #ffe8a1;
533
+ }
534
+
535
+ .bootstrap4 .table-danger,
536
+ .bootstrap4 .table-danger > th,
537
+ .bootstrap4 .table-danger > td {
538
+ background-color: #f5c6cb;
539
+ }
540
+
541
+ .bootstrap4 .table-hover .table-danger:hover {
542
+ background-color: #f1b0b7;
543
+ }
544
+
545
+ .bootstrap4 .table-hover .table-danger:hover > td,
546
+ .bootstrap4 .table-hover .table-danger:hover > th {
547
+ background-color: #f1b0b7;
548
+ }
549
+
550
+ .bootstrap4 .table-light,
551
+ .bootstrap4 .table-light > th,
552
+ .bootstrap4 .table-light > td {
553
+ background-color: #fdfdfe;
554
+ }
555
+
556
+ .bootstrap4 .table-hover .table-light:hover {
557
+ background-color: #ececf6;
558
+ }
559
+
560
+ .bootstrap4 .table-hover .table-light:hover > td,
561
+ .bootstrap4 .table-hover .table-light:hover > th {
562
+ background-color: #ececf6;
563
+ }
564
+
565
+ .bootstrap4 .table-dark,
566
+ .bootstrap4 .table-dark > th,
567
+ .bootstrap4 .table-dark > td {
568
+ background-color: #c6c8ca;
569
+ }
570
+
571
+ .bootstrap4 .table-hover .table-dark:hover {
572
+ background-color: #b9bbbe;
573
+ }
574
+
575
+ .bootstrap4 .table-hover .table-dark:hover > td,
576
+ .bootstrap4 .table-hover .table-dark:hover > th {
577
+ background-color: #b9bbbe;
578
+ }
579
+
580
+ .bootstrap4 .table-active,
581
+ .bootstrap4 .table-active > th,
582
+ .bootstrap4 .table-active > td {
583
+ background-color: rgba(0, 0, 0, 0.075);
584
+ }
585
+
586
+ .bootstrap4 .table-hover .table-active:hover {
587
+ background-color: rgba(0, 0, 0, 0.075);
588
+ }
589
+
590
+ .bootstrap4 .table-hover .table-active:hover > td,
591
+ .bootstrap4 .table-hover .table-active:hover > th {
592
+ background-color: rgba(0, 0, 0, 0.075);
593
+ }
594
+
595
+ .bootstrap4 .thead-inverse th {
596
+ color: #fff;
597
+ background-color: #212529;
598
+ }
599
+
600
+ .bootstrap4 .thead-default th {
601
+ color: #495057;
602
+ background-color: #e9ecef;
603
+ }
604
+
605
+ .bootstrap4 .table-inverse {
606
+ color: #fff;
607
+ background-color: #212529;
608
+ }
609
+
610
+ .bootstrap4 .table-inverse th,
611
+ .bootstrap4 .table-inverse td,
612
+ .bootstrap4 .table-inverse thead th {
613
+ border-color: #32383e;
614
+ }
615
+
616
+ .bootstrap4 .table-inverse.table-bordered {
617
+ border: 0;
618
+ }
619
+
620
+ .bootstrap4 .table-inverse.table-striped tbody tr:nth-of-type(odd) {
621
+ background-color: rgba(255, 255, 255, 0.05);
622
+ }
623
+
624
+ .bootstrap4 .table-inverse.table-hover tbody tr:hover {
625
+ background-color: rgba(255, 255, 255, 0.075);
626
+ }
627
+
628
+ @media (max-width: 991px) {
629
+ .bootstrap4 .table-responsive {
630
+ display: block;
631
+ width: 100%;
632
+ overflow-x: auto;
633
+ -ms-overflow-style: -ms-autohiding-scrollbar;
634
+ }
635
+
636
+ .bootstrap4 .table-responsive.table-bordered {
637
+ border: 0;
638
+ }
639
+ }
640
+
641
+ .semantic_ui {
642
  /*!
643
  * # Semantic UI 2.2.12 - Table
644
  * http://github.com/semantic-org/semantic-ui/
647
  * Released under the MIT license
648
  * http://opensource.org/licenses/MIT
649
  *
650
+ */
651
+ /*******************************
652
+ Table
653
+ *******************************/
654
+ /* Prototype */
655
+ /*******************************
656
+ Parts
657
+ *******************************/
658
+ /* Table Content */
659
+ /* Headers */
660
+ /* Footer */
661
+ /* Table Row */
662
+ /* Table Cells */
663
+ /* Icons */
664
+ /* Table Segment */
665
+ /*******************************
666
+ Coupling
667
+ *******************************/
668
+ /* UI Image */
669
+ /*******************************
670
+ Types
671
+ *******************************/
672
+ /*--------------
673
+ Complex
674
+ ---------------*/
675
+ /*--------------
676
+ Definition
677
+ ---------------*/
678
+ /* Remove Border */
679
+ /* Highlight Defining Column */
680
+ /* Fix 2nd Column */
681
+ /*******************************
682
+ States
683
+ *******************************/
684
+ /*--------------
685
+ Positive
686
+ ---------------*/
687
+ /*--------------
688
+ Negative
689
+ ---------------*/
690
+ /*--------------
691
+ Error
692
+ ---------------*/
693
+ /*--------------
694
+ Warning
695
+ ---------------*/
696
+ /*--------------
697
+ Active
698
+ ---------------*/
699
+ /*--------------
700
+ Disabled
701
+ ---------------*/
702
+ /*******************************
703
+ Variations
704
+ *******************************/
705
+ /*--------------
706
+ Stackable
707
+ ---------------*/
708
+ /*--------------
709
+ Text Alignment
710
+ ---------------*/
711
+ /*------------------
712
+ Vertical Alignment
713
+ ------------------*/
714
+ /*--------------
715
+ Fixed
716
+ ---------------*/
717
+ /*--------------
718
+ Selectable
719
+ ---------------*/
720
+ /* Selectable Cell Link */
721
+ /* Other States */
722
+ /*-------------------
723
+ Attached
724
+ --------------------*/
725
+ /* Middle */
726
+ /* Top */
727
+ /* Bottom */
728
+ /*--------------
729
+ Striped
730
+ ---------------*/
731
+ /* Table Striping */
732
+ /* Stripes */
733
+ /* Allow striped active hover */
734
+ /*--------------
735
+ Single Line
736
+ ---------------*/
737
+ /*--------------
738
+ Column Count
739
+ ---------------*/
740
+ /* Grid Based */
741
+ /* Column Width */
742
+ /*--------------
743
+ Sortable
744
+ ---------------*/
745
+ /* Hover */
746
+ /* Sorted */
747
+ /* Sorted Hover */
748
+ /* Inverted */
749
+ /*--------------
750
+ Collapsing
751
+ ---------------*/
752
+ /*--------------
753
+ Basic
754
+ ---------------*/
755
+ /* Very Basic */
756
+ /*--------------
757
+ Celled
758
+ ---------------*/
759
+ /*--------------
760
+ Padded
761
+ ---------------*/
762
+ /* Very */
763
+ /*--------------
764
+ Compact
765
+ ---------------*/
766
+ /* Very */
767
+ /*--------------
768
+ Sizes
769
+ ---------------*/
770
+ /* Small */
771
+ /* Standard */
772
+ /* Large */
773
+ }
774
+
775
+ .semantic_ui .ui.table {
776
+ width: 100%;
777
+ background: #FFFFFF;
778
+ margin: 1em 0em;
779
+ border: 1px solid rgba(34, 36, 38, 0.15);
780
+ -webkit-box-shadow: none;
781
+ box-shadow: none;
782
+ border-radius: 0.28571429rem;
783
+ text-align: left;
784
+ color: rgba(0, 0, 0, 0.87);
785
+ border-collapse: separate;
786
+ border-spacing: 0px;
787
+ }
788
+
789
+ .semantic_ui .ui.table:first-child {
790
+ margin-top: 0em;
791
+ }
792
+
793
+ .semantic_ui .ui.table:last-child {
794
+ margin-bottom: 0em;
795
+ }
796
+
797
+ .semantic_ui .ui.table th,
798
+ .semantic_ui .ui.table td {
799
+ -webkit-transition: background 0.1s ease, color 0.1s ease;
800
+ transition: background 0.1s ease, color 0.1s ease;
801
+ }
802
+
803
+ .semantic_ui .ui.table thead {
804
+ -webkit-box-shadow: none;
805
+ box-shadow: none;
806
+ }
807
+
808
+ .semantic_ui .ui.table thead th {
809
+ cursor: auto;
810
+ background: #F9FAFB;
811
+ text-align: inherit;
812
+ color: rgba(0, 0, 0, 0.87);
813
+ padding: 0.92857143em 0.78571429em;
814
+ vertical-align: inherit;
815
+ font-style: none;
816
+ font-weight: bold;
817
+ text-transform: none;
818
+ border-bottom: 1px solid rgba(34, 36, 38, 0.1);
819
+ border-left: none;
820
+ }
821
+
822
+ .semantic_ui .ui.table thead tr > th:first-child {
823
+ border-left: none;
824
+ }
825
+
826
+ .semantic_ui .ui.table thead tr:first-child > th:first-child {
827
+ border-radius: 0.28571429rem 0em 0em 0em;
828
+ }
829
+
830
+ .semantic_ui .ui.table thead tr:first-child > th:last-child {
831
+ border-radius: 0em 0.28571429rem 0em 0em;
832
+ }
833
+
834
+ .semantic_ui .ui.table thead tr:first-child > th:only-child {
835
+ border-radius: 0.28571429rem 0.28571429rem 0em 0em;
836
+ }
837
+
838
+ .semantic_ui .ui.table tfoot {
839
+ -webkit-box-shadow: none;
840
+ box-shadow: none;
841
+ }
842
+
843
+ .semantic_ui .ui.table tfoot th {
844
+ cursor: auto;
845
+ border-top: 1px solid rgba(34, 36, 38, 0.15);
846
+ background: #F9FAFB;
847
+ text-align: inherit;
848
+ color: rgba(0, 0, 0, 0.87);
849
+ padding: 0.78571429em 0.78571429em;
850
+ vertical-align: middle;
851
+ font-style: normal;
852
+ font-weight: normal;
853
+ text-transform: none;
854
+ }
855
+
856
+ .semantic_ui .ui.table tfoot tr > th:first-child {
857
+ border-left: none;
858
+ }
859
+
860
+ .semantic_ui .ui.table tfoot tr:first-child > th:first-child {
861
+ border-radius: 0em 0em 0em 0.28571429rem;
862
+ }
863
+
864
+ .semantic_ui .ui.table tfoot tr:first-child > th:last-child {
865
+ border-radius: 0em 0em 0.28571429rem 0em;
866
+ }
867
+
868
+ .semantic_ui .ui.table tfoot tr:first-child > th:only-child {
869
+ border-radius: 0em 0em 0.28571429rem 0.28571429rem;
870
+ }
871
+
872
+ .semantic_ui .ui.table tr td {
873
+ border-top: 1px solid rgba(34, 36, 38, 0.1);
874
+ }
875
+
876
+ .semantic_ui .ui.table tr:first-child td {
877
+ border-top: none;
878
+ }
879
+
880
+ .semantic_ui .ui.table td {
881
+ padding: 0.78571429em 0.78571429em;
882
+ text-align: inherit;
883
+ }
884
+
885
+ .semantic_ui .ui.table > .icon {
886
+ vertical-align: baseline;
887
+ }
888
+
889
+ .semantic_ui .ui.table > .icon:only-child {
890
+ margin: 0em;
891
+ }
892
+
893
+ .semantic_ui .ui.table.segment {
894
+ padding: 0em;
895
+ }
896
+
897
+ .semantic_ui .ui.table.segment:after {
898
+ display: none;
899
+ }
900
+
901
+ .semantic_ui .ui.table.segment.stacked:after {
902
+ display: block;
903
+ }
904
+
905
+ .semantic_ui .ui.table th .image,
906
+ .semantic_ui .ui.table th .image img,
907
+ .semantic_ui .ui.table td .image,
908
+ .semantic_ui .ui.table td .image img {
909
+ max-width: none;
910
+ }
911
+
912
+ .semantic_ui .ui.structured.table {
913
+ border-collapse: collapse;
914
+ }
915
+
916
+ .semantic_ui .ui.structured.table thead th {
917
+ border-left: none;
918
+ border-right: none;
919
+ }
920
+
921
+ .semantic_ui .ui.structured.sortable.table thead th {
922
+ border-left: 1px solid rgba(34, 36, 38, 0.15);
923
+ border-right: 1px solid rgba(34, 36, 38, 0.15);
924
+ }
925
+
926
+ .semantic_ui .ui.structured.basic.table th {
927
+ border-left: none;
928
+ border-right: none;
929
+ }
930
+
931
+ .semantic_ui .ui.structured.celled.table tr th,
932
+ .semantic_ui .ui.structured.celled.table tr td {
933
+ border-left: 1px solid rgba(34, 36, 38, 0.1);
934
+ border-right: 1px solid rgba(34, 36, 38, 0.1);
935
+ }
936
+
937
+ .semantic_ui .ui.definition.table thead:not(.full-width) th:first-child {
938
+ pointer-events: none;
939
+ background: transparent;
940
+ font-weight: normal;
941
+ color: rgba(0, 0, 0, 0.4);
942
+ -webkit-box-shadow: -1px -1px 0px 1px #FFFFFF;
943
+ box-shadow: -1px -1px 0px 1px #FFFFFF;
944
+ }
945
+
946
+ .semantic_ui .ui.definition.table tfoot:not(.full-width) th:first-child {
947
+ pointer-events: none;
948
+ background: transparent;
949
+ font-weight: rgba(0, 0, 0, 0.4);
950
+ color: normal;
951
+ -webkit-box-shadow: 1px 1px 0px 1px #FFFFFF;
952
+ box-shadow: 1px 1px 0px 1px #FFFFFF;
953
+ }
954
+
955
+ .semantic_ui .ui.celled.definition.table thead:not(.full-width) th:first-child {
956
+ -webkit-box-shadow: 0px -1px 0px 1px #FFFFFF;
957
+ box-shadow: 0px -1px 0px 1px #FFFFFF;
958
+ }
959
+
960
+ .semantic_ui .ui.celled.definition.table tfoot:not(.full-width) th:first-child {
961
+ -webkit-box-shadow: 0px 1px 0px 1px #FFFFFF;
962
+ box-shadow: 0px 1px 0px 1px #FFFFFF;
963
+ }
964
+
965
+ .semantic_ui .ui.definition.table tr td:first-child:not(.ignored),
966
+ .semantic_ui .ui.definition.table tr td.definition {
967
+ background: rgba(0, 0, 0, 0.03);
968
+ font-weight: bold;
969
+ color: rgba(0, 0, 0, 0.95);
970
+ text-transform: '';
971
+ -webkit-box-shadow: '';
972
+ box-shadow: '';
973
+ text-align: '';
974
+ font-size: 1em;
975
+ padding-left: '';
976
+ padding-right: '';
977
+ }
978
+
979
+ .semantic_ui .ui.definition.table thead:not(.full-width) th:nth-child(2) {
980
+ border-left: 1px solid rgba(34, 36, 38, 0.15);
981
+ }
982
+
983
+ .semantic_ui .ui.definition.table tfoot:not(.full-width) th:nth-child(2) {
984
+ border-left: 1px solid rgba(34, 36, 38, 0.15);
985
+ }
986
+
987
+ .semantic_ui .ui.definition.table td:nth-child(2) {
988
+ border-left: 1px solid rgba(34, 36, 38, 0.15);
989
+ }
990
+
991
+ .semantic_ui .ui.table tr.positive,
992
+ .semantic_ui .ui.table td.positive {
993
+ -webkit-box-shadow: 0px 0px 0px #A3C293 inset;
994
+ box-shadow: 0px 0px 0px #A3C293 inset;
995
+ }
996
+
997
+ .semantic_ui .ui.table tr.positive,
998
+ .semantic_ui .ui.table td.positive {
999
+ background: #FCFFF5 !important;
1000
+ color: #2C662D !important;
1001
+ }
1002
+
1003
+ .semantic_ui .ui.table tr.negative,
1004
+ .semantic_ui .ui.table td.negative {
1005
+ -webkit-box-shadow: 0px 0px 0px #E0B4B4 inset;
1006
+ box-shadow: 0px 0px 0px #E0B4B4 inset;
1007
+ }
1008
+
1009
+ .semantic_ui .ui.table tr.negative,
1010
+ .semantic_ui .ui.table td.negative {
1011
+ background: #FFF6F6 !important;
1012
+ color: #9F3A38 !important;
1013
+ }
1014
+
1015
+ .semantic_ui .ui.table tr.error,
1016
+ .semantic_ui .ui.table td.error {
1017
+ -webkit-box-shadow: 0px 0px 0px #E0B4B4 inset;
1018
+ box-shadow: 0px 0px 0px #E0B4B4 inset;
1019
+ }
1020
+
1021
+ .semantic_ui .ui.table tr.error,
1022
+ .semantic_ui .ui.table td.error {
1023
+ background: #FFF6F6 !important;
1024
+ color: #9F3A38 !important;
1025
+ }
1026
+
1027
+ .semantic_ui .ui.table tr.warning,
1028
+ .semantic_ui .ui.table td.warning {
1029
+ -webkit-box-shadow: 0px 0px 0px #C9BA9B inset;
1030
+ box-shadow: 0px 0px 0px #C9BA9B inset;
1031
+ }
1032
+
1033
+ .semantic_ui .ui.table tr.warning,
1034
+ .semantic_ui .ui.table td.warning {
1035
+ background: #FFFAF3 !important;
1036
+ color: #573A08 !important;
1037
+ }
1038
+
1039
+ .semantic_ui .ui.table tr.active,
1040
+ .semantic_ui .ui.table td.active {
1041
+ -webkit-box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.87) inset;
1042
+ box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.87) inset;
1043
+ }
1044
+
1045
+ .semantic_ui .ui.table tr.active,
1046
+ .semantic_ui .ui.table td.active {
1047
+ background: #E0E0E0 !important;
1048
+ color: rgba(0, 0, 0, 0.87) !important;
1049
+ }
1050
+
1051
+ .semantic_ui .ui.table tr.disabled td,
1052
+ .semantic_ui .ui.table tr td.disabled,
1053
+ .semantic_ui .ui.table tr.disabled:hover,
1054
+ .semantic_ui .ui.table tr:hover td.disabled {
1055
+ pointer-events: none;
1056
+ color: rgba(40, 40, 40, 0.3);
1057
+ }
1058
+
1059
+ @media only screen and (max-width: 991px) {
1060
+ .semantic_ui {
1061
+ /* Definition Table */
1062
+ }
1063
+
1064
+ .semantic_ui .ui[class*="tablet stackable"].table,
1065
+ .semantic_ui .ui[class*="tablet stackable"].table tbody,
1066
+ .semantic_ui .ui[class*="tablet stackable"].table tr,
1067
+ .semantic_ui .ui[class*="tablet stackable"].table tr > th,
1068
+ .semantic_ui .ui[class*="tablet stackable"].table tr > td {
1069
+ width: 100% !important;
1070
+ display: block !important;
1071
+ }
1072
+
1073
+ .semantic_ui .ui[class*="tablet stackable"].table {
1074
+ padding: 0em;
1075
+ }
1076
+
1077
+ .semantic_ui .ui[class*="tablet stackable"].table thead {
1078
+ display: block;
1079
+ }
1080
+
1081
+ .semantic_ui .ui[class*="tablet stackable"].table tfoot {
1082
+ display: block;
1083
+ }
1084
+
1085
+ .semantic_ui .ui[class*="tablet stackable"].table tr {
1086
+ padding-top: 1em;
1087
+ padding-bottom: 1em;
1088
+ -webkit-box-shadow: 0px -1px 0px 0px rgba(0, 0, 0, 0.1) inset !important;
1089
+ box-shadow: 0px -1px 0px 0px rgba(0, 0, 0, 0.1) inset !important;
1090
+ }
1091
+
1092
+ .semantic_ui .ui[class*="tablet stackable"].table tr > th,
1093
+ .semantic_ui .ui[class*="tablet stackable"].table tr > td {
1094
+ background: none;
1095
+ border: none !important;
1096
+ padding: 0.25em 0.75em;
1097
+ -webkit-box-shadow: none !important;
1098
+ box-shadow: none !important;
1099
+ }
1100
+
1101
+ .semantic_ui .ui.definition[class*="tablet stackable"].table thead th:first-child {
1102
+ -webkit-box-shadow: none !important;
1103
+ box-shadow: none !important;
1104
+ }
1105
+ }
1106
+
1107
+ .semantic_ui .ui.table[class*="left aligned"],
1108
+ .semantic_ui .ui.table [class*="left aligned"] {
1109
+ text-align: left;
1110
+ }
1111
+
1112
+ .semantic_ui .ui.table[class*="center aligned"],
1113
+ .semantic_ui .ui.table [class*="center aligned"] {
1114
+ text-align: center;
1115
+ }
1116
+
1117
+ .semantic_ui .ui.table[class*="right aligned"],
1118
+ .semantic_ui .ui.table [class*="right aligned"] {
1119
+ text-align: right;
1120
+ }
1121
+
1122
+ .semantic_ui .ui.table[class*="top aligned"],
1123
+ .semantic_ui .ui.table [class*="top aligned"] {
1124
+ vertical-align: top;
1125
+ }
1126
+
1127
+ .semantic_ui .ui.table[class*="middle aligned"],
1128
+ .semantic_ui .ui.table [class*="middle aligned"] {
1129
+ vertical-align: middle;
1130
+ }
1131
+
1132
+ .semantic_ui .ui.table[class*="bottom aligned"],
1133
+ .semantic_ui .ui.table [class*="bottom aligned"] {
1134
+ vertical-align: bottom;
1135
+ }
1136
+
1137
+ .semantic_ui .ui.fixed.table {
1138
+ table-layout: fixed;
1139
+ }
1140
+
1141
+ .semantic_ui .ui.fixed.table th,
1142
+ .semantic_ui .ui.fixed.table td {
1143
+ overflow: hidden;
1144
+ text-overflow: ellipsis;
1145
+ }
1146
+
1147
+ .semantic_ui .ui.selectable.table tbody tr:hover,
1148
+ .semantic_ui .ui.table tbody tr td.selectable:hover {
1149
+ background: rgba(0, 0, 0, 0.05) !important;
1150
+ color: rgba(0, 0, 0, 0.95) !important;
1151
+ }
1152
+
1153
+ .semantic_ui .ui.selectable.inverted.table tbody tr:hover,
1154
+ .semantic_ui .ui.inverted.table tbody tr td.selectable:hover {
1155
+ background: rgba(255, 255, 255, 0.08) !important;
1156
+ color: #ffffff !important;
1157
+ }
1158
+
1159
+ .semantic_ui .ui.table tbody tr td.selectable {
1160
+ padding: 0em;
1161
+ }
1162
+
1163
+ .semantic_ui .ui.table tbody tr td.selectable > a:not(.ui) {
1164
+ display: block;
1165
+ color: inherit;
1166
+ padding: 0.78571429em 0.78571429em;
1167
+ }
1168
+
1169
+ .semantic_ui .ui.selectable.table tr.error:hover,
1170
+ .semantic_ui .ui.table tr td.selectable.error:hover,
1171
+ .semantic_ui .ui.selectable.table tr:hover td.error {
1172
+ background: #ffe7e7 !important;
1173
+ color: #943634 !important;
1174
+ }
1175
+
1176
+ .semantic_ui .ui.selectable.table tr.warning:hover,
1177
+ .semantic_ui .ui.table tr td.selectable.warning:hover,
1178
+ .semantic_ui .ui.selectable.table tr:hover td.warning {
1179
+ background: #fff4e4 !important;
1180
+ color: #493107 !important;
1181
+ }
1182
+
1183
+ .semantic_ui .ui.selectable.table tr.active:hover,
1184
+ .semantic_ui .ui.table tr td.selectable.active:hover,
1185
+ .semantic_ui .ui.selectable.table tr:hover td.active {
1186
+ background: #E0E0E0 !important;
1187
+ color: rgba(0, 0, 0, 0.87) !important;
1188
+ }
1189
+
1190
+ .semantic_ui .ui.selectable.table tr.positive:hover,
1191
+ .semantic_ui .ui.table tr td.selectable.positive:hover,
1192
+ .semantic_ui .ui.selectable.table tr:hover td.positive {
1193
+ background: #f7ffe6 !important;
1194
+ color: #275b28 !important;
1195
+ }
1196
+
1197
+ .semantic_ui .ui.selectable.table tr.negative:hover,
1198
+ .semantic_ui .ui.table tr td.selectable.negative:hover,
1199
+ .semantic_ui .ui.selectable.table tr:hover td.negative {
1200
+ background: #ffe7e7 !important;
1201
+ color: #943634 !important;
1202
+ }
1203
+
1204
+ .semantic_ui .ui.attached.table {
1205
+ top: 0px;
1206
+ bottom: 0px;
1207
+ border-radius: 0px;
1208
+ margin: 0em -1px;
1209
+ width: calc(100% + 2px);
1210
+ max-width: calc(100% + 2px);
1211
+ -webkit-box-shadow: none;
1212
+ box-shadow: none;
1213
+ border: 1px solid #D4D4D5;
1214
+ }
1215
+
1216
+ .semantic_ui .ui.attached + .ui.attached.table:not(.top) {
1217
+ border-top: none;
1218
+ }
1219
+
1220
+ .semantic_ui .ui[class*="top attached"].table {
1221
+ bottom: 0px;
1222
+ margin-bottom: 0em;
1223
+ top: 0px;
1224
+ margin-top: 1em;
1225
+ border-radius: 0.28571429rem 0.28571429rem 0em 0em;
1226
+ }
1227
+
1228
+ .semantic_ui .ui.table[class*="top attached"]:first-child {
1229
+ margin-top: 0em;
1230
+ }
1231
+
1232
+ .semantic_ui .ui[class*="bottom attached"].table {
1233
+ bottom: 0px;
1234
+ margin-top: 0em;
1235
+ top: 0px;
1236
+ margin-bottom: 1em;
1237
+ -webkit-box-shadow: none, none;
1238
+ box-shadow: none, none;
1239
+ border-radius: 0em 0em 0.28571429rem 0.28571429rem;
1240
+ }
1241
+
1242
+ .semantic_ui .ui[class*="bottom attached"].table:last-child {
1243
+ margin-bottom: 0em;
1244
+ }
1245
+
1246
+ .semantic_ui .ui.striped.table > tr:nth-child(2n),
1247
+ .semantic_ui .ui.striped.table tbody tr:nth-child(2n) {
1248
+ background-color: rgba(0, 0, 50, 0.02);
1249
+ }
1250
+
1251
+ .semantic_ui .ui.inverted.striped.table > tr:nth-child(2n),
1252
+ .semantic_ui .ui.inverted.striped.table tbody tr:nth-child(2n) {
1253
+ background-color: rgba(255, 255, 255, 0.05);
1254
+ }
1255
+
1256
+ .semantic_ui .ui.striped.selectable.selectable.selectable.table tbody tr.active:hover {
1257
+ background: #EFEFEF !important;
1258
+ color: rgba(0, 0, 0, 0.95) !important;
1259
+ }
1260
+
1261
+ .semantic_ui .ui.table[class*="single line"],
1262
+ .semantic_ui .ui.table [class*="single line"] {
1263
+ white-space: nowrap;
1264
+ }
1265
+
1266
+ .semantic_ui .ui.table[class*="single line"],
1267
+ .semantic_ui .ui.table [class*="single line"] {
1268
+ white-space: nowrap;
1269
+ }
1270
+
1271
+ .semantic_ui .ui.one.column.table td {
1272
+ width: 100%;
1273
+ }
1274
+
1275
+ .semantic_ui .ui.two.column.table td {
1276
+ width: 50%;
1277
+ }
1278
+
1279
+ .semantic_ui .ui.three.column.table td {
1280
+ width: 33.33333333%;
1281
+ }
1282
+
1283
+ .semantic_ui .ui.four.column.table td {
1284
+ width: 25%;
1285
+ }
1286
+
1287
+ .semantic_ui .ui.five.column.table td {
1288
+ width: 20%;
1289
+ }
1290
+
1291
+ .semantic_ui .ui.six.column.table td {
1292
+ width: 16.66666667%;
1293
+ }
1294
+
1295
+ .semantic_ui .ui.seven.column.table td {
1296
+ width: 14.28571429%;
1297
+ }
1298
+
1299
+ .semantic_ui .ui.eight.column.table td {
1300
+ width: 12.5%;
1301
+ }
1302
+
1303
+ .semantic_ui .ui.nine.column.table td {
1304
+ width: 11.11111111%;
1305
+ }
1306
+
1307
+ .semantic_ui .ui.ten.column.table td {
1308
+ width: 10%;
1309
+ }
1310
+
1311
+ .semantic_ui .ui.eleven.column.table td {
1312
+ width: 9.09090909%;
1313
+ }
1314
+
1315
+ .semantic_ui .ui.twelve.column.table td {
1316
+ width: 8.33333333%;
1317
+ }
1318
+
1319
+ .semantic_ui .ui.thirteen.column.table td {
1320
+ width: 7.69230769%;
1321
+ }
1322
+
1323
+ .semantic_ui .ui.fourteen.column.table td {
1324
+ width: 7.14285714%;
1325
+ }
1326
+
1327
+ .semantic_ui .ui.fifteen.column.table td {
1328
+ width: 6.66666667%;
1329
+ }
1330
+
1331
+ .semantic_ui .ui.sixteen.column.table td {
1332
+ width: 6.25%;
1333
+ }
1334
+
1335
+ .semantic_ui .ui.table th.one.wide,
1336
+ .semantic_ui .ui.table td.one.wide {
1337
+ width: 6.25%;
1338
+ }
1339
+
1340
+ .semantic_ui .ui.table th.two.wide,
1341
+ .semantic_ui .ui.table td.two.wide {
1342
+ width: 12.5%;
1343
+ }
1344
+
1345
+ .semantic_ui .ui.table th.three.wide,
1346
+ .semantic_ui .ui.table td.three.wide {
1347
+ width: 18.75%;
1348
+ }
1349
+
1350
+ .semantic_ui .ui.table th.four.wide,
1351
+ .semantic_ui .ui.table td.four.wide {
1352
+ width: 25%;
1353
+ }
1354
+
1355
+ .semantic_ui .ui.table th.five.wide,
1356
+ .semantic_ui .ui.table td.five.wide {
1357
+ width: 31.25%;
1358
+ }
1359
+
1360
+ .semantic_ui .ui.table th.six.wide,
1361
+ .semantic_ui .ui.table td.six.wide {
1362
+ width: 37.5%;
1363
+ }
1364
+
1365
+ .semantic_ui .ui.table th.seven.wide,
1366
+ .semantic_ui .ui.table td.seven.wide {
1367
+ width: 43.75%;
1368
+ }
1369
+
1370
+ .semantic_ui .ui.table th.eight.wide,
1371
+ .semantic_ui .ui.table td.eight.wide {
1372
+ width: 50%;
1373
+ }
1374
+
1375
+ .semantic_ui .ui.table th.nine.wide,
1376
+ .semantic_ui .ui.table td.nine.wide {
1377
+ width: 56.25%;
1378
+ }
1379
+
1380
+ .semantic_ui .ui.table th.ten.wide,
1381
+ .semantic_ui .ui.table td.ten.wide {
1382
+ width: 62.5%;
1383
+ }
1384
+
1385
+ .semantic_ui .ui.table th.eleven.wide,
1386
+ .semantic_ui .ui.table td.eleven.wide {
1387
+ width: 68.75%;
1388
+ }
1389
+
1390
+ .semantic_ui .ui.table th.twelve.wide,
1391
+ .semantic_ui .ui.table td.twelve.wide {
1392
+ width: 75%;
1393
+ }
1394
+
1395
+ .semantic_ui .ui.table th.thirteen.wide,
1396
+ .semantic_ui .ui.table td.thirteen.wide {
1397
+ width: 81.25%;
1398
+ }
1399
+
1400
+ .semantic_ui .ui.table th.fourteen.wide,
1401
+ .semantic_ui .ui.table td.fourteen.wide {
1402
+ width: 87.5%;
1403
+ }
1404
+
1405
+ .semantic_ui .ui.table th.fifteen.wide,
1406
+ .semantic_ui .ui.table td.fifteen.wide {
1407
+ width: 93.75%;
1408
+ }
1409
+
1410
+ .semantic_ui .ui.table th.sixteen.wide,
1411
+ .semantic_ui .ui.table td.sixteen.wide {
1412
+ width: 100%;
1413
+ }
1414
+
1415
+ .semantic_ui .ui.sortable.table thead th {
1416
+ cursor: pointer;
1417
+ white-space: nowrap;
1418
+ border-left: 1px solid rgba(34, 36, 38, 0.15);
1419
+ color: rgba(0, 0, 0, 0.87);
1420
+ }
1421
+
1422
+ .semantic_ui .ui.sortable.table thead th:first-child {
1423
+ border-left: none;
1424
+ }
1425
+
1426
+ .semantic_ui .ui.sortable.table thead th.sorted,
1427
+ .semantic_ui .ui.sortable.table thead th.sorted:hover {
1428
+ -webkit-user-select: none;
1429
+ -moz-user-select: none;
1430
+ -ms-user-select: none;
1431
+ user-select: none;
1432
+ }
1433
+
1434
+ .semantic_ui .ui.sortable.table thead th:after {
1435
+ display: none;
1436
+ font-style: normal;
1437
+ font-weight: normal;
1438
+ text-decoration: inherit;
1439
+ content: '';
1440
+ height: 1em;
1441
+ width: auto;
1442
+ opacity: 0.8;
1443
+ margin: 0em 0em 0em 0.5em;
1444
+ font-family: 'Icons';
1445
+ }
1446
+
1447
+ .semantic_ui .ui.sortable.table thead th.ascending:after {
1448
+ content: '\F0D8';
1449
+ }
1450
+
1451
+ .semantic_ui .ui.sortable.table thead th.descending:after {
1452
+ content: '\F0D7';
1453
+ }
1454
+
1455
+ .semantic_ui .ui.sortable.table th.disabled:hover {
1456
+ cursor: auto;
1457
+ color: rgba(40, 40, 40, 0.3);
1458
+ }
1459
+
1460
+ .semantic_ui .ui.sortable.table thead th:hover {
1461
+ background: rgba(0, 0, 0, 0.05);
1462
+ color: rgba(0, 0, 0, 0.8);
1463
+ }
1464
+
1465
+ .semantic_ui .ui.sortable.table thead th.sorted {
1466
+ background: rgba(0, 0, 0, 0.05);
1467
+ color: rgba(0, 0, 0, 0.95);
1468
+ }
1469
+
1470
+ .semantic_ui .ui.sortable.table thead th.sorted:after {
1471
+ display: inline-block;
1472
+ }
1473
+
1474
+ .semantic_ui .ui.sortable.table thead th.sorted:hover {
1475
+ background: rgba(0, 0, 0, 0.05);
1476
+ color: rgba(0, 0, 0, 0.95);
1477
+ }
1478
+
1479
+ .semantic_ui .ui.inverted.sortable.table thead th.sorted {
1480
+ background: rgba(255, 255, 255, 0.15) -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(0, 0, 0, 0.05)));
1481
+ background: rgba(255, 255, 255, 0.15) linear-gradient(transparent, rgba(0, 0, 0, 0.05));
1482
+ color: #ffffff;
1483
+ }
1484
+
1485
+ .semantic_ui .ui.inverted.sortable.table thead th:hover {
1486
+ background: rgba(255, 255, 255, 0.08) -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(0, 0, 0, 0.05)));
1487
+ background: rgba(255, 255, 255, 0.08) linear-gradient(transparent, rgba(0, 0, 0, 0.05));
1488
+ color: #ffffff;
1489
+ }
1490
+
1491
+ .semantic_ui .ui.inverted.sortable.table thead th {
1492
+ border-left-color: transparent;
1493
+ border-right-color: transparent;
1494
+ }
1495
+
1496
+ .semantic_ui .ui.collapsing.table {
1497
+ width: auto;
1498
+ }
1499
+
1500
+ .semantic_ui .ui.basic.table {
1501
+ background: transparent;
1502
+ border: 1px solid rgba(34, 36, 38, 0.15);
1503
+ -webkit-box-shadow: none;
1504
+ box-shadow: none;
1505
+ }
1506
+
1507
+ .semantic_ui .ui.basic.table thead,
1508
+ .semantic_ui .ui.basic.table tfoot {
1509
+ -webkit-box-shadow: none;
1510
+ box-shadow: none;
1511
+ }
1512
+
1513
+ .semantic_ui .ui.basic.table th {
1514
+ background: transparent;
1515
+ border-left: none;
1516
+ }
1517
+
1518
+ .semantic_ui .ui.basic.table tbody tr {
1519
+ border-bottom: 1px solid rgba(0, 0, 0, 0.1);
1520
+ }
1521
+
1522
+ .semantic_ui .ui.basic.table td {
1523
+ background: transparent;
1524
+ }
1525
+
1526
+ .semantic_ui .ui.basic.striped.table tbody tr:nth-child(2n) {
1527
+ background-color: rgba(0, 0, 0, 0.05) !important;
1528
+ }
1529
+
1530
+ .semantic_ui .ui[class*="very basic"].table {
1531
+ border: none;
1532
+ }
1533
+
1534
+ .semantic_ui .ui[class*="very basic"].table:not(.sortable):not(.striped) th,
1535
+ .semantic_ui .ui[class*="very basic"].table:not(.sortable):not(.striped) td {
1536
+ padding: '';
1537
+ }
1538
+
1539
+ .semantic_ui .ui[class*="very basic"].table:not(.sortable):not(.striped) th:first-child,
1540
+ .semantic_ui .ui[class*="very basic"].table:not(.sortable):not(.striped) td:first-child {
1541
+ padding-left: 0em;
1542
+ }
1543
+
1544
+ .semantic_ui .ui[class*="very basic"].table:not(.sortable):not(.striped) th:last-child,
1545
+ .semantic_ui .ui[class*="very basic"].table:not(.sortable):not(.striped) td:last-child {
1546
+ padding-right: 0em;
1547
+ }
1548
+
1549
+ .semantic_ui .ui[class*="very basic"].table:not(.sortable):not(.striped) thead tr:first-child th {
1550
+ padding-top: 0em;
1551
+ }
1552
+
1553
+ .semantic_ui .ui.celled.table tr th,
1554
+ .semantic_ui .ui.celled.table tr td {
1555
+ border-left: 1px solid rgba(34, 36, 38, 0.1);
1556
+ }
1557
+
1558
+ .semantic_ui .ui.celled.table tr th:first-child,
1559
+ .semantic_ui .ui.celled.table tr td:first-child {
1560
+ border-left: none;
1561
+ }
1562
+
1563
+ .semantic_ui .ui.padded.table th {
1564
+ padding-left: 1em;
1565
+ padding-right: 1em;
1566
+ }
1567
+
1568
+ .semantic_ui .ui.padded.table th,
1569
+ .semantic_ui .ui.padded.table td {
1570
+ padding: 1em 1em;
1571
+ }
1572
+
1573
+ .semantic_ui .ui[class*="very padded"].table th {
1574
+ padding-left: 1.5em;
1575
+ padding-right: 1.5em;
1576
+ }
1577
+
1578
+ .semantic_ui .ui[class*="very padded"].table td {
1579
+ padding: 1.5em 1.5em;
1580
+ }
1581
+
1582
+ .semantic_ui .ui.compact.table th {
1583
+ padding-left: 0.7em;
1584
+ padding-right: 0.7em;
1585
+ }
1586
+
1587
+ .semantic_ui .ui.compact.table td {
1588
+ padding: 0.5em 0.7em;
1589
+ }
1590
+
1591
+ .semantic_ui .ui[class*="very compact"].table th {
1592
+ padding-left: 0.6em;
1593
+ padding-right: 0.6em;
1594
+ }
1595
+
1596
+ .semantic_ui .ui[class*="very compact"].table td {
1597
+ padding: 0.4em 0.6em;
1598
+ }
1599
+
1600
+ .semantic_ui .ui.small.table {
1601
+ font-size: 0.9em;
1602
+ }
1603
+
1604
+ .semantic_ui .ui.table {
1605
+ font-size: 1em;
1606
+ }
1607
+
1608
+ .semantic_ui .ui.large.table {
1609
+ font-size: 1.1em;
1610
+ }
1611
+
1612
+ .colored_table table.foo-table.inverted {
1613
+ /*-------------------
1614
+ Colors
1615
+ --------------------*/
1616
+ /* Red */
1617
+ /* Orange */
1618
+ /* Yellow */
1619
+ /* Olive */
1620
+ /* Green */
1621
+ /* Teal */
1622
+ /* Blue */
1623
+ /* Violet */
1624
+ /* Purple */
1625
+ /* Pink */
1626
+ /* Brown */
1627
+ /* Grey */
1628
+ /* Black */
1629
+ /*--------------
1630
+ Inverted
1631
+ ---------------*/
1632
+ /* Text Color */
1633
+ /* Definition */
1634
+ /*******************************
1635
+ Site Overrides
1636
+ *******************************/
1637
+ }
1638
+
1639
+ .colored_table table.foo-table.inverted.red.table {
1640
+ background-color: #DB2828 !important;
1641
+ color: #FFFFFF !important;
1642
+ }
1643
+
1644
+ .colored_table table.foo-table.inverted.orange.table {
1645
+ background-color: #F2711C !important;
1646
+ color: #FFFFFF !important;
1647
+ }
1648
+
1649
+ .colored_table table.foo-table.inverted.yellow.table {
1650
+ background-color: #FBBD08 !important;
1651
+ color: #FFFFFF !important;
1652
+ }
1653
+
1654
+ .colored_table table.foo-table.inverted.olive.table {
1655
+ background-color: #B5CC18 !important;
1656
+ color: #FFFFFF !important;
1657
+ }
1658
+
1659
+ .colored_table table.foo-table.inverted.green.table {
1660
+ background-color: #21BA45 !important;
1661
+ color: #FFFFFF !important;
1662
+ }
1663
+
1664
+ .colored_table table.foo-table.inverted.teal.table {
1665
+ background-color: #00B5AD !important;
1666
+ color: #FFFFFF !important;
1667
+ }
1668
+
1669
+ .colored_table table.foo-table.inverted.blue.table {
1670
+ background-color: #2185D0 !important;
1671
+ color: #FFFFFF !important;
1672
+ }
1673
+
1674
+ .colored_table table.foo-table.inverted.violet.table {
1675
+ background-color: #6435C9 !important;
1676
+ color: #FFFFFF !important;
1677
+ }
1678
+
1679
+ .colored_table table.foo-table.inverted.purple.table {
1680
+ background-color: #A333C8 !important;
1681
+ color: #FFFFFF !important;
1682
+ }
1683
+
1684
+ .colored_table table.foo-table.inverted.pink.table {
1685
+ background-color: #E03997 !important;
1686
+ color: #FFFFFF !important;
1687
+ }
1688
+
1689
+ .colored_table table.foo-table.inverted.brown.table {
1690
+ background-color: #A5673F !important;
1691
+ color: #FFFFFF !important;
1692
+ }
1693
+
1694
+ .colored_table table.foo-table.inverted.grey.table {
1695
+ background-color: #767676 !important;
1696
+ color: #FFFFFF !important;
1697
+ }
1698
+
1699
+ .colored_table table.foo-table.inverted.black.table {
1700
+ background-color: #1B1C1D !important;
1701
+ color: #FFFFFF !important;
1702
+ }
1703
+
1704
+ .colored_table table.foo-table.inverted.table {
1705
+ background: #333333;
1706
+ color: rgba(255, 255, 255, 0.9);
1707
+ border: none;
1708
+ }
1709
+
1710
+ .colored_table table.foo-table.inverted.table th {
1711
+ background-color: rgba(0, 0, 0, 0.15);
1712
+ border-color: rgba(255, 255, 255, 0.1) !important;
1713
+ color: rgba(255, 255, 255, 0.9) !important;
1714
+ }
1715
+
1716
+ .colored_table table.foo-table.inverted.table tr td {
1717
+ border-color: rgba(255, 255, 255, 0.1) !important;
1718
+ }
1719
+
1720
+ .colored_table table.foo-table.inverted.table tr.disabled td,
1721
+ .colored_table table.foo-table.inverted.table tr td.disabled,
1722
+ .colored_table table.foo-table.inverted.table tr.disabled:hover td,
1723
+ .colored_table table.foo-table.inverted.table tr:hover td.disabled {
1724
+ pointer-events: none;
1725
+ color: rgba(225, 225, 225, 0.3);
1726
+ }
1727
+
1728
+ .colored_table table.foo-table.inverted.definition.table tfoot:not(.full-width) th:first-child,
1729
+ .colored_table table.foo-table.inverted.definition.table thead:not(.full-width) th:first-child {
1730
+ background: #FFFFFF;
1731
+ }
1732
+
1733
+ .colored_table table.foo-table.inverted.definition.table tr td:first-child {
1734
+ background: rgba(255, 255, 255, 0.02);
1735
+ color: #ffffff;
1736
+ }
1737
+
1738
+ .colored_table table.foo-table.inverted.table-striped tbody tr:nth-of-type(odd) {
1739
+ background-color: rgba(255, 255, 255, 0.05);
1740
+ }
1741
+
1742
+ .colored_table table.foo-table.inverted .pagination > .active > a,
1743
+ .colored_table table.foo-table.inverted .pagination > .active > a:focus,
1744
+ .colored_table table.foo-table.inverted .pagination > .active > a:hover,
1745
+ .colored_table table.foo-table.inverted .pagination > .active > span,
1746
+ .colored_table table.foo-table.inverted .pagination > .active > span:focus,
1747
+ .colored_table table.foo-table.inverted .pagination > .active > span:hover {
1748
+ background-color: rgba(0, 0, 0, 0.15);
1749
+ border-color: rgba(255, 255, 255, 0.1) !important;
1750
+ color: rgba(255, 255, 255, 0.9) !important;
1751
+ -webkit-box-shadow: inset 0 0 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
1752
+ box-shadow: inset 0 0 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
1753
+ }
1754
+
1755
+ .colored_table table.foo-table.inverted .pagination a.footable-page-link {
1756
+ color: rgba(0, 0, 0, 0.5);
1757
+ }
1758
+
1759
+ .colored_table table.foo-table.inverted .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle) {
1760
+ background-color: rgba(255, 255, 255, 0.1);
1761
+ border-color: rgba(255, 255, 255, 0.1) !important;
1762
+ color: rgba(255, 255, 255, 0.9) !important;
1763
+ }
1764
+
assets/fonts/element-icons.ttf CHANGED
Binary file
assets/fonts/element-icons.woff CHANGED
Binary file
assets/img/bug.png ADDED
Binary file
assets/img/fluentform_banner.jpg ADDED
Binary file
assets/img/heart.png ADDED
Binary file
assets/img/support.png ADDED
Binary file
assets/js/ninja-tables-admin.js CHANGED
@@ -1 +1,2 @@
1
- !function(e){function t(i){if(n[i])return n[i].exports;var r=n[i]={i:i,l:!1,exports:{}};return e[i].call(r.exports,r,r.exports,t),r.l=!0,r.exports}var n={};t.m=e,t.c=n,t.d=function(e,n,i){t.o(e,n)||Object.defineProperty(e,n,{configurable:!1,enumerable:!0,get:i})},t.n=function(e){var n=e&&e.__esModule?function(){return e.default}:function(){return e};return t.d(n,"a",n),n},t.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},t.p="",t(t.s=42)}([function(e,t){function n(e,t){var n=e[1]||"",r=e[3];if(!r)return n;if(t&&"function"==typeof btoa){var o=i(r);return[n].concat(r.sources.map(function(e){return"/*# sourceURL="+r.sourceRoot+e+" */"})).concat([o]).join("\n")}return[n].join("\n")}function i(e){return"/*# sourceMappingURL=data:application/json;charset=utf-8;base64,"+btoa(unescape(encodeURIComponent(JSON.stringify(e))))+" */"}e.exports=function(e){var t=[];return t.toString=function(){return this.map(function(t){var i=n(t,e);return t[2]?"@media "+t[2]+"{"+i+"}":i}).join("")},t.i=function(e,n){"string"==typeof e&&(e=[[null,e,""]]);for(var i={},r=0;r<this.length;r++){var o=this[r][0];"number"==typeof o&&(i[o]=!0)}for(r=0;r<e.length;r++){var a=e[r];"number"==typeof a[0]&&i[a[0]]||(n&&!a[2]?a[2]=n:n&&(a[2]="("+a[2]+") and ("+n+")"),t.push(a))}},t}},function(e,t,n){"use strict";function i(){for(var e=arguments.length,t=Array(e),n=0;n<e;n++)t[n]=arguments[n];var i=1,r=t[0],o=t.length;if("function"==typeof r)return r.apply(null,t.slice(1));if("string"==typeof r){for(var a=String(r).replace(m,function(e){if("%%"===e)return"%";if(i>=o)return e;switch(e){case"%s":return String(t[i++]);case"%d":return Number(t[i++]);case"%j":try{return JSON.stringify(t[i++])}catch(e){return"[Circular]"}break;default:return e}}),l=t[i];i<o;l=t[++i])a+=" "+l;return a}return r}function r(e){return"string"===e||"url"===e||"hex"===e||"email"===e||"pattern"===e}function o(e,t){return void 0===e||null===e||(!("array"!==t||!Array.isArray(e)||e.length)||!(!r(t)||"string"!=typeof e||e))}function a(e){return 0===Object.keys(e).length}function l(e,t,n){function i(e){r.push.apply(r,e),++o===a&&n(r)}var r=[],o=0,a=e.length;e.forEach(function(e){t(e,i)})}function s(e,t,n){function i(a){if(a&&a.length)return void n(a);var l=r;r+=1,l<o?t(e[l],i):n([])}var r=0,o=e.length;i([])}function u(e){var t=[];return Object.keys(e).forEach(function(n){t.push.apply(t,e[n])}),t}function c(e,t,n,i){if(t.first){return s(u(e),n,i)}var r=t.firstFields||[];!0===r&&(r=Object.keys(e));var o=Object.keys(e),a=o.length,c=0,d=[],f=function(e){d.push.apply(d,e),++c===a&&i(d)};o.forEach(function(t){var i=e[t];-1!==r.indexOf(t)?s(i,n,f):l(i,n,f)})}function d(e){return function(t){return t&&t.message?(t.field=t.field||e.fullField,t):{message:t,field:t.field||e.fullField}}}function f(e,t){if(t)for(var n in t)if(t.hasOwnProperty(n)){var i=t[n];"object"===(void 0===i?"undefined":h(i))&&"object"===h(e[n])?e[n]=p({},e[n],i):e[n]=i}return e}Object.defineProperty(t,"__esModule",{value:!0});var p=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var i in n)Object.prototype.hasOwnProperty.call(n,i)&&(e[i]=n[i])}return e},h="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};t.format=i,t.isEmptyValue=o,t.isEmptyObject=a,t.asyncMap=c,t.complementError=d,t.deepMerge=f;var m=/%[sdj%]/g;t.warning=function(){}},function(e,t){e.exports=function(e,t,n,i,r){var o,a=e=e||{},l=typeof e.default;"object"!==l&&"function"!==l||(o=e,a=e.default);var s="function"==typeof a?a.options:a;t&&(s.render=t.render,s.staticRenderFns=t.staticRenderFns),i&&(s._scopeId=i);var u;if(r?(u=function(e){e=e||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext,e||"undefined"==typeof __VUE_SSR_CONTEXT__||(e=__VUE_SSR_CONTEXT__),n&&n.call(this,e),e&&e._registeredComponents&&e._registeredComponents.add(r)},s._ssrRegister=u):n&&(u=n),u){var c=s.functional,d=c?s.render:s.beforeCreate;c?s.render=function(e,t){return u.call(t),d(e,t)}:s.beforeCreate=d?[].concat(d,u):[u]}return{esModule:o,exports:a,options:s}}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default={required:n(33),whitespace:n(100),type:n(101),range:n(102),enum:n(103),pattern:n(104)},e.exports=t.default},function(e,t,n){function i(e,t){for(var n=0;n<e.length;n++){var i=e[n],r=h[i.id];if(r){r.refs++;for(var o=0;o<r.parts.length;o++)r.parts[o](i.parts[o]);for(;o<i.parts.length;o++)r.parts.push(c(i.parts[o],t))}else{for(var a=[],o=0;o<i.parts.length;o++)a.push(c(i.parts[o],t));h[i.id]={id:i.id,refs:1,parts:a}}}}function r(e,t){for(var n=[],i={},r=0;r<e.length;r++){var o=e[r],a=t.base?o[0]+t.base:o[0],l=o[1],s=o[2],u=o[3],c={css:l,media:s,sourceMap:u};i[a]?i[a].parts.push(c):n.push(i[a]={id:a,parts:[c]})}return n}function o(e,t){var n=v(e.insertInto);if(!n)throw new Error("Couldn't find a style target. This probably means that the value for the 'insertInto' parameter is invalid.");var i=y[y.length-1];if("top"===e.insertAt)i?i.nextSibling?n.insertBefore(t,i.nextSibling):n.appendChild(t):n.insertBefore(t,n.firstChild),y.push(t);else{if("bottom"!==e.insertAt)throw new Error("Invalid value for parameter 'insertAt'. Must be 'top' or 'bottom'.");n.appendChild(t)}}function a(e){if(null===e.parentNode)return!1;e.parentNode.removeChild(e);var t=y.indexOf(e);t>=0&&y.splice(t,1)}function l(e){var t=document.createElement("style");return e.attrs.type="text/css",u(t,e.attrs),o(e,t),t}function s(e){var t=document.createElement("link");return e.attrs.type="text/css",e.attrs.rel="stylesheet",u(t,e.attrs),o(e,t),t}function u(e,t){Object.keys(t).forEach(function(n){e.setAttribute(n,t[n])})}function c(e,t){var n,i,r,o;if(t.transform&&e.css){if(!(o=t.transform(e.css)))return function(){};e.css=o}if(t.singleton){var u=b++;n=g||(g=l(t)),i=d.bind(null,n,u,!1),r=d.bind(null,n,u,!0)}else e.sourceMap&&"function"==typeof URL&&"function"==typeof URL.createObjectURL&&"function"==typeof URL.revokeObjectURL&&"function"==typeof Blob&&"function"==typeof btoa?(n=s(t),i=p.bind(null,n,t),r=function(){a(n),n.href&&URL.revokeObjectURL(n.href)}):(n=l(t),i=f.bind(null,n),r=function(){a(n)});return i(e),function(t){if(t){if(t.css===e.css&&t.media===e.media&&t.sourceMap===e.sourceMap)return;i(e=t)}else r()}}function d(e,t,n,i){var r=n?"":i.css;if(e.styleSheet)e.styleSheet.cssText=x(t,r);else{var o=document.createTextNode(r),a=e.childNodes;a[t]&&e.removeChild(a[t]),a.length?e.insertBefore(o,a[t]):e.appendChild(o)}}function f(e,t){var n=t.css,i=t.media;if(i&&e.setAttribute("media",i),e.styleSheet)e.styleSheet.cssText=n;else{for(;e.firstChild;)e.removeChild(e.firstChild);e.appendChild(document.createTextNode(n))}}function p(e,t,n){var i=n.css,r=n.sourceMap,o=void 0===t.convertToAbsoluteUrls&&r;(t.convertToAbsoluteUrls||o)&&(i=_(i)),r&&(i+="\n/*# sourceMappingURL=data:application/json;base64,"+btoa(unescape(encodeURIComponent(JSON.stringify(r))))+" */");var a=new Blob([i],{type:"text/css"}),l=e.href;e.href=URL.createObjectURL(a),l&&URL.revokeObjectURL(l)}var h={},m=function(e){var t;return function(){return void 0===t&&(t=e.apply(this,arguments)),t}}(function(){return window&&document&&document.all&&!window.atob}),v=function(e){var t={};return function(n){return void 0===t[n]&&(t[n]=e.call(this,n)),t[n]}}(function(e){return document.querySelector(e)}),g=null,b=0,y=[],_=n(56);e.exports=function(e,t){if("undefined"!=typeof DEBUG&&DEBUG&&"object"!=typeof document)throw new Error("The style-loader cannot be used in a non-browser environment");t=t||{},t.attrs="object"==typeof t.attrs?t.attrs:{},t.singleton||(t.singleton=m()),t.insertInto||(t.insertInto="head"),t.insertAt||(t.insertAt="bottom");var n=r(e,t);return i(n,t),function(e){for(var o=[],a=0;a<n.length;a++){var l=n[a],s=h[l.id];s.refs--,o.push(s)}if(e){i(r(e,t),t)}for(var a=0;a<o.length;a++){var s=o[a];if(0===s.refs){for(var u=0;u<s.parts.length;u++)s.parts[u]();delete h[s.id]}}}};var x=function(){var e=[];return function(t,n){return e[t]=n,e.filter(Boolean).join("\n")}}()},function(e,t,n){"use strict";(function(t){function n(e){return void 0===e||null===e}function i(e){return void 0!==e&&null!==e}function r(e){return!0===e}function o(e){return!1===e}function a(e){return"string"==typeof e||"number"==typeof e||"boolean"==typeof e}function l(e){return null!==e&&"object"==typeof e}function s(e){return"[object Object]"===Rr.call(e)}function u(e){return"[object RegExp]"===Rr.call(e)}function c(e){var t=parseFloat(e);return t>=0&&Math.floor(t)===t&&isFinite(e)}function d(e){return null==e?"":"object"==typeof e?JSON.stringify(e,null,2):String(e)}function f(e){var t=parseFloat(e);return isNaN(t)?e:t}function p(e,t){for(var n=Object.create(null),i=e.split(","),r=0;r<i.length;r++)n[i[r]]=!0;return t?function(e){return n[e.toLowerCase()]}:function(e){return n[e]}}function h(e,t){if(e.length){var n=e.indexOf(t);if(n>-1)return e.splice(n,1)}}function m(e,t){return Vr.call(e,t)}function v(e){var t=Object.create(null);return function(n){return t[n]||(t[n]=e(n))}}function g(e,t){function n(n){var i=arguments.length;return i?i>1?e.apply(t,arguments):e.call(t,n):e.call(t)}return n._length=e.length,n}function b(e,t){t=t||0;for(var n=e.length-t,i=new Array(n);n--;)i[n]=e[n+t];return i}function y(e,t){for(var n in t)e[n]=t[n];return e}function _(e){for(var t={},n=0;n<e.length;n++)e[n]&&y(t,e[n]);return t}function x(e,t,n){}function w(e,t){if(e===t)return!0;var n=l(e),i=l(t);if(!n||!i)return!n&&!i&&String(e)===String(t);try{var r=Array.isArray(e),o=Array.isArray(t);if(r&&o)return e.length===t.length&&e.every(function(e,n){return w(e,t[n])});if(r||o)return!1;var a=Object.keys(e),s=Object.keys(t);return a.length===s.length&&a.every(function(n){return w(e[n],t[n])})}catch(e){return!1}}function k(e,t){for(var n=0;n<e.length;n++)if(w(e[n],t))return n;return-1}function C(e){var t=!1;return function(){t||(t=!0,e.apply(this,arguments))}}function q(e){var t=(e+"").charCodeAt(0);return 36===t||95===t}function S(e,t,n,i){Object.defineProperty(e,t,{value:n,enumerable:!!i,writable:!0,configurable:!0})}function O(e){if(!no.test(e)){var t=e.split(".");return function(e){for(var n=0;n<t.length;n++){if(!e)return;e=e[t[n]]}return e}}}function M(e,t,n){if(eo.errorHandler)eo.errorHandler.call(null,e,t,n);else if(!oo||"undefined"==typeof console)throw e}function E(e){return"function"==typeof e&&/native code/.test(e.toString())}function T(e){Co.target&&qo.push(Co.target),Co.target=e}function N(){Co.target=qo.pop()}function A(e,t,n){e.__proto__=t}function I(e,t,n){for(var i=0,r=n.length;i<r;i++){var o=n[i];S(e,o,t[o])}}function D(e,t){if(l(e)){var n;return m(e,"__ob__")&&e.__ob__ instanceof To?n=e.__ob__:Eo.shouldConvert&&!yo()&&(Array.isArray(e)||s(e))&&Object.isExtensible(e)&&!e._isVue&&(n=new To(e)),t&&n&&n.vmCount++,n}}function j(e,t,n,i,r){var o=new Co,a=Object.getOwnPropertyDescriptor(e,t);if(!a||!1!==a.configurable){var l=a&&a.get,s=a&&a.set,u=!r&&D(n);Object.defineProperty(e,t,{enumerable:!0,configurable:!0,get:function(){var t=l?l.call(e):n;return Co.target&&(o.depend(),u&&(u.dep.depend(),Array.isArray(t)&&L(t))),t},set:function(t){var i=l?l.call(e):n;t===i||t!==t&&i!==i||(s?s.call(e,t):n=t,u=!r&&D(t),o.notify())}})}}function $(e,t,n){if(Array.isArray(e)&&c(t))return e.length=Math.max(e.length,t),e.splice(t,1,n),n;if(m(e,t))return e[t]=n,n;var i=e.__ob__;return e._isVue||i&&i.vmCount?n:i?(j(i.value,t,n),i.dep.notify(),n):(e[t]=n,n)}function P(e,t){if(Array.isArray(e)&&c(t))return void e.splice(t,1);var n=e.__ob__;e._isVue||n&&n.vmCount||m(e,t)&&(delete e[t],n&&n.dep.notify())}function L(e){for(var t=void 0,n=0,i=e.length;n<i;n++)t=e[n],t&&t.__ob__&&t.__ob__.dep.depend(),Array.isArray(t)&&L(t)}function z(e,t){if(!t)return e;for(var n,i,r,o=Object.keys(t),a=0;a<o.length;a++)n=o[a],i=e[n],r=t[n],m(e,n)?s(i)&&s(r)&&z(i,r):$(e,n,r);return e}function R(e,t,n){return n?e||t?function(){var i="function"==typeof t?t.call(n):t,r="function"==typeof e?e.call(n):e;return i?z(i,r):r}:void 0:t?e?function(){return z("function"==typeof t?t.call(this):t,"function"==typeof e?e.call(this):e)}:t:e}function B(e,t){return t?e?e.concat(t):Array.isArray(t)?t:[t]:e}function F(e,t){var n=Object.create(e||null);return t?y(n,t):n}function V(e){var t=e.props;if(t){var n,i,r,o={};if(Array.isArray(t))for(n=t.length;n--;)"string"==typeof(i=t[n])&&(r=Ur(i),o[r]={type:null});else if(s(t))for(var a in t)i=t[a],r=Ur(a),o[r]=s(i)?i:{type:i};e.props=o}}function H(e){var t=e.inject;if(Array.isArray(t))for(var n=e.inject={},i=0;i<t.length;i++)n[t[i]]=t[i]}function U(e){var t=e.directives;if(t)for(var n in t){var i=t[n];"function"==typeof i&&(t[n]={bind:i,update:i})}}function W(e,t,n){function i(i){var r=No[i]||Ao;s[i]=r(e[i],t[i],n,i)}"function"==typeof t&&(t=t.options),V(t),H(t),U(t);var r=t.extends;if(r&&(e=W(e,r,n)),t.mixins)for(var o=0,a=t.mixins.length;o<a;o++)e=W(e,t.mixins[o],n);var l,s={};for(l in e)i(l);for(l in t)m(e,l)||i(l);return s}function Y(e,t,n,i){if("string"==typeof n){var r=e[t];if(m(r,n))return r[n];var o=Ur(n);if(m(r,o))return r[o];var a=Wr(o);if(m(r,a))return r[a];return r[n]||r[o]||r[a]}}function G(e,t,n,i){var r=t[e],o=!m(n,e),a=n[e];if(Q(Boolean,r.type)&&(o&&!m(r,"default")?a=!1:Q(String,r.type)||""!==a&&a!==Gr(e)||(a=!0)),void 0===a){a=K(i,r,e);var l=Eo.shouldConvert;Eo.shouldConvert=!0,D(a),Eo.shouldConvert=l}return a}function K(e,t,n){if(m(t,"default")){var i=t.default;return e&&e.$options.propsData&&void 0===e.$options.propsData[n]&&void 0!==e._props[n]?e._props[n]:"function"==typeof i&&"Function"!==Z(t.type)?i.call(e):i}}function Z(e){var t=e&&e.toString().match(/^\s*function (\w+)/);return t?t[1]:""}function Q(e,t){if(!Array.isArray(t))return Z(t)===Z(e);for(var n=0,i=t.length;n<i;n++)if(Z(t[n])===Z(e))return!0;return!1}function X(e){return new Io(void 0,void 0,void 0,String(e))}function J(e,t){var n=new Io(e.tag,e.data,e.children,e.text,e.elm,e.context,e.componentOptions,e.asyncFactory);return n.ns=e.ns,n.isStatic=e.isStatic,n.key=e.key,n.isComment=e.isComment,n.isCloned=!0,t&&e.children&&(n.children=ee(e.children)),n}function ee(e,t){for(var n=e.length,i=new Array(n),r=0;r<n;r++)i[r]=J(e[r],t);return i}function te(e){function t(){var e=arguments,n=t.fns;if(!Array.isArray(n))return n.apply(null,arguments);for(var i=n.slice(),r=0;r<i.length;r++)i[r].apply(null,e)}return t.fns=e,t}function ne(e,t){return e.plain?-1:t.plain?1:0}function ie(e,t,i,r,o){var a,l,s,u,c=[],d=!1;for(a in e)l=e[a],s=t[a],u=Po(a),u.plain||(d=!0),n(l)||(n(s)?(n(l.fns)&&(l=e[a]=te(l)),u.handler=l,c.push(u)):l!==s&&(s.fns=l,e[a]=s));if(c.length){d&&c.sort(ne);for(var f=0;f<c.length;f++){var p=c[f];i(p.name,p.handler,p.once,p.capture,p.passive)}}for(a in t)n(e[a])&&(u=Po(a),r(u.name,t[a],u.capture))}function re(e,t,o){function a(){o.apply(this,arguments),h(l.fns,a)}var l,s=e[t];n(s)?l=te([a]):i(s.fns)&&r(s.merged)?(l=s,l.fns.push(a)):l=te([s,a]),l.merged=!0,e[t]=l}function oe(e,t,r){var o=t.options.props;if(!n(o)){var a={},l=e.attrs,s=e.props;if(i(l)||i(s))for(var u in o){var c=Gr(u);ae(a,s,u,c,!0)||ae(a,l,u,c,!1)}return a}}function ae(e,t,n,r,o){if(i(t)){if(m(t,n))return e[n]=t[n],o||delete t[n],!0;if(m(t,r))return e[n]=t[r],o||delete t[r],!0}return!1}function le(e){for(var t=0;t<e.length;t++)if(Array.isArray(e[t]))return Array.prototype.concat.apply([],e);return e}function se(e){return a(e)?[X(e)]:Array.isArray(e)?ce(e):void 0}function ue(e){return i(e)&&i(e.text)&&o(e.isComment)}function ce(e,t){var o,l,s,u=[];for(o=0;o<e.length;o++)l=e[o],n(l)||"boolean"==typeof l||(s=u[u.length-1],Array.isArray(l)?u.push.apply(u,ce(l,(t||"")+"_"+o)):a(l)?ue(s)?s.text+=String(l):""!==l&&u.push(X(l)):ue(l)&&ue(s)?u[u.length-1]=X(s.text+l.text):(r(e._isVList)&&i(l.tag)&&n(l.key)&&i(t)&&(l.key="__vlist"+t+"_"+o+"__"),u.push(l)));return u}function de(e,t){return e.__esModule&&e.default&&(e=e.default),l(e)?t.extend(e):e}function fe(e,t,n,i,r){var o=$o();return o.asyncFactory=e,o.asyncMeta={data:t,context:n,children:i,tag:r},o}function pe(e,t,o){if(r(e.error)&&i(e.errorComp))return e.errorComp;if(i(e.resolved))return e.resolved;if(r(e.loading)&&i(e.loadingComp))return e.loadingComp;if(!i(e.contexts)){var a=e.contexts=[o],s=!0,u=function(){for(var e=0,t=a.length;e<t;e++)a[e].$forceUpdate()},c=C(function(n){e.resolved=de(n,t),s||u()}),d=C(function(t){i(e.errorComp)&&(e.error=!0,u())}),f=e(c,d);return l(f)&&("function"==typeof f.then?n(e.resolved)&&f.then(c,d):i(f.component)&&"function"==typeof f.component.then&&(f.component.then(c,d),i(f.error)&&(e.errorComp=de(f.error,t)),i(f.loading)&&(e.loadingComp=de(f.loading,t),0===f.delay?e.loading=!0:setTimeout(function(){n(e.resolved)&&n(e.error)&&(e.loading=!0,u())},f.delay||200)),i(f.timeout)&&setTimeout(function(){n(e.resolved)&&d(null)},f.timeout))),s=!1,e.loading?e.loadingComp:e.resolved}e.contexts.push(o)}function he(e){return e.isComment&&e.asyncFactory}function me(e){if(Array.isArray(e))for(var t=0;t<e.length;t++){var n=e[t];if(i(n)&&(i(n.componentOptions)||he(n)))return n}}function ve(e){e._events=Object.create(null),e._hasHookEvent=!1;var t=e.$options._parentListeners;t&&ye(e,t)}function ge(e,t,n){n?jo.$once(e,t):jo.$on(e,t)}function be(e,t){jo.$off(e,t)}function ye(e,t,n){jo=e,ie(t,n||{},ge,be,e)}function _e(e,t){var n={};if(!e)return n;for(var i=[],r=0,o=e.length;r<o;r++){var a=e[r],l=a.data;if(l&&l.attrs&&l.attrs.slot&&delete l.attrs.slot,a.context!==t&&a.functionalContext!==t||!l||null==l.slot)i.push(a);else{var s=a.data.slot,u=n[s]||(n[s]=[]);"template"===a.tag?u.push.apply(u,a.children):u.push(a)}}return i.every(xe)||(n.default=i),n}function xe(e){return e.isComment||" "===e.text}function we(e,t){t=t||{};for(var n=0;n<e.length;n++)Array.isArray(e[n])?we(e[n],t):t[e[n].key]=e[n].fn;return t}function ke(e){var t=e.$options,n=t.parent;if(n&&!t.abstract){for(;n.$options.abstract&&n.$parent;)n=n.$parent;n.$children.push(e)}e.$parent=n,e.$root=n?n.$root:e,e.$children=[],e.$refs={},e._watcher=null,e._inactive=null,e._directInactive=!1,e._isMounted=!1,e._isDestroyed=!1,e._isBeingDestroyed=!1}function Ce(e,t,n){e.$el=t,e.$options.render||(e.$options.render=$o),Ee(e,"beforeMount");var i;return i=function(){e._update(e._render(),n)},e._watcher=new Wo(e,i,x),n=!1,null==e.$vnode&&(e._isMounted=!0,Ee(e,"mounted")),e}function qe(e,t,n,i,r){var o=!!(r||e.$options._renderChildren||i.data.scopedSlots||e.$scopedSlots!==to);if(e.$options._parentVnode=i,e.$vnode=i,e._vnode&&(e._vnode.parent=i),e.$options._renderChildren=r,e.$attrs=i.data&&i.data.attrs||to,e.$listeners=n||to,t&&e.$options.props){Eo.shouldConvert=!1;for(var a=e._props,l=e.$options._propKeys||[],s=0;s<l.length;s++){var u=l[s];a[u]=G(u,e.$options.props,t,e)}Eo.shouldConvert=!0,e.$options.propsData=t}if(n){var c=e.$options._parentListeners;e.$options._parentListeners=n,ye(e,n,c)}o&&(e.$slots=_e(r,i.context),e.$forceUpdate())}function Se(e){for(;e&&(e=e.$parent);)if(e._inactive)return!0;return!1}function Oe(e,t){if(t){if(e._directInactive=!1,Se(e))return}else if(e._directInactive)return;if(e._inactive||null===e._inactive){e._inactive=!1;for(var n=0;n<e.$children.length;n++)Oe(e.$children[n]);Ee(e,"activated")}}function Me(e,t){if(!(t&&(e._directInactive=!0,Se(e))||e._inactive)){e._inactive=!0;for(var n=0;n<e.$children.length;n++)Me(e.$children[n]);Ee(e,"deactivated")}}function Ee(e,t){var n=e.$options[t];if(n)for(var i=0,r=n.length;i<r;i++)try{n[i].call(e)}catch(n){M(n,e,t+" hook")}e._hasHookEvent&&e.$emit("hook:"+t)}function Te(){Ho=zo.length=Ro.length=0,Bo={},Fo=Vo=!1}function Ne(){Vo=!0;var e,t;for(zo.sort(function(e,t){return e.id-t.id}),Ho=0;Ho<zo.length;Ho++)e=zo[Ho],t=e.id,Bo[t]=null,e.run();var n=Ro.slice(),i=zo.slice();Te(),De(n),Ae(i),_o&&eo.devtools&&_o.emit("flush")}function Ae(e){for(var t=e.length;t--;){var n=e[t],i=n.vm;i._watcher===n&&i._isMounted&&Ee(i,"updated")}}function Ie(e){e._inactive=!1,Ro.push(e)}function De(e){for(var t=0;t<e.length;t++)e[t]._inactive=!0,Oe(e[t],!0)}function je(e){var t=e.id;if(null==Bo[t]){if(Bo[t]=!0,Vo){for(var n=zo.length-1;n>Ho&&zo[n].id>e.id;)n--;zo.splice(n+1,0,e)}else zo.push(e);Fo||(Fo=!0,wo(Ne))}}function $e(e){Yo.clear(),Pe(e,Yo)}function Pe(e,t){var n,i,r=Array.isArray(e);if((r||l(e))&&Object.isExtensible(e)){if(e.__ob__){var o=e.__ob__.dep.id;if(t.has(o))return;t.add(o)}if(r)for(n=e.length;n--;)Pe(e[n],t);else for(i=Object.keys(e),n=i.length;n--;)Pe(e[i[n]],t)}}function Le(e,t,n){Go.get=function(){return this[t][n]},Go.set=function(e){this[t][n]=e},Object.defineProperty(e,n,Go)}function ze(e){e._watchers=[];var t=e.$options;t.props&&Re(e,t.props),t.methods&&We(e,t.methods),t.data?Be(e):D(e._data={},!0),t.computed&&Ve(e,t.computed),t.watch&&t.watch!==ho&&Ye(e,t.watch)}function Re(e,t){var n=e.$options.propsData||{},i=e._props={},r=e.$options._propKeys=[],o=!e.$parent;Eo.shouldConvert=o;for(var a in t)!function(o){r.push(o);var a=G(o,t,n,e);j(i,o,a),o in e||Le(e,"_props",o)}(a);Eo.shouldConvert=!0}function Be(e){var t=e.$options.data;t=e._data="function"==typeof t?Fe(t,e):t||{},s(t)||(t={});for(var n=Object.keys(t),i=e.$options.props,r=(e.$options.methods,n.length);r--;){var o=n[r];i&&m(i,o)||q(o)||Le(e,"_data",o)}D(t,!0)}function Fe(e,t){try{return e.call(t)}catch(e){return M(e,t,"data()"),{}}}function Ve(e,t){var n=e._computedWatchers=Object.create(null),i=yo();for(var r in t){var o=t[r],a="function"==typeof o?o:o.get;i||(n[r]=new Wo(e,a||x,x,Ko)),r in e||He(e,r,o)}}function He(e,t,n){var i=!yo();"function"==typeof n?(Go.get=i?Ue(t):n,Go.set=x):(Go.get=n.get?i&&!1!==n.cache?Ue(t):n.get:x,Go.set=n.set?n.set:x),Object.defineProperty(e,t,Go)}function Ue(e){return function(){var t=this._computedWatchers&&this._computedWatchers[e];if(t)return t.dirty&&t.evaluate(),Co.target&&t.depend(),t.value}}function We(e,t){e.$options.props;for(var n in t)e[n]=null==t[n]?x:g(t[n],e)}function Ye(e,t){for(var n in t){var i=t[n];if(Array.isArray(i))for(var r=0;r<i.length;r++)Ge(e,n,i[r]);else Ge(e,n,i)}}function Ge(e,t,n,i){return s(n)&&(i=n,n=n.handler),"string"==typeof n&&(n=e[n]),e.$watch(t,n,i)}function Ke(e){var t=e.$options.provide;t&&(e._provided="function"==typeof t?t.call(e):t)}function Ze(e){var t=Qe(e.$options.inject,e);t&&(Eo.shouldConvert=!1,Object.keys(t).forEach(function(n){j(e,n,t[n])}),Eo.shouldConvert=!0)}function Qe(e,t){if(e){for(var n=Object.create(null),i=xo?Reflect.ownKeys(e).filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}):Object.keys(e),r=0;r<i.length;r++)for(var o=i[r],a=e[o],l=t;l;){if(l._provided&&a in l._provided){n[o]=l._provided[a];break}l=l.$parent}return n}}function Xe(e,t,n,r,o){var a={},l=e.options.props;if(i(l))for(var s in l)a[s]=G(s,l,t||to);else i(n.attrs)&&Je(a,n.attrs),i(n.props)&&Je(a,n.props);var u=Object.create(r),c=function(e,t,n,i){return ot(u,e,t,n,i,!0)},d=e.options.render.call(null,c,{data:n,props:a,children:o,parent:r,listeners:n.on||to,injections:Qe(e.options.inject,r),slots:function(){return _e(o,r)}});return d instanceof Io&&(d.functionalContext=r,d.functionalOptions=e.options,n.slot&&((d.data||(d.data={})).slot=n.slot)),d}function Je(e,t){for(var n in t)e[Ur(n)]=t[n]}function et(e,t,o,a,s){if(!n(e)){var u=o.$options._base;if(l(e)&&(e=u.extend(e)),"function"==typeof e){var c;if(n(e.cid)&&(c=e,void 0===(e=pe(c,u,o))))return fe(c,t,o,a,s);t=t||{},_t(e),i(t.model)&&rt(e.options,t);var d=oe(t,e,s);if(r(e.options.functional))return Xe(e,d,t,o,a);var f=t.on;if(t.on=t.nativeOn,r(e.options.abstract)){var p=t.slot;t={},p&&(t.slot=p)}nt(t);var h=e.options.name||s;return new Io("vue-component-"+e.cid+(h?"-"+h:""),t,void 0,void 0,void 0,o,{Ctor:e,propsData:d,listeners:f,tag:s,children:a},c)}}}function tt(e,t,n,r){var o=e.componentOptions,a={_isComponent:!0,parent:t,propsData:o.propsData,_componentTag:o.tag,_parentVnode:e,_parentListeners:o.listeners,_renderChildren:o.children,_parentElm:n||null,_refElm:r||null},l=e.data.inlineTemplate;return i(l)&&(a.render=l.render,a.staticRenderFns=l.staticRenderFns),new o.Ctor(a)}function nt(e){e.hook||(e.hook={});for(var t=0;t<Qo.length;t++){var n=Qo[t],i=e.hook[n],r=Zo[n];e.hook[n]=i?it(r,i):r}}function it(e,t){return function(n,i,r,o){e(n,i,r,o),t(n,i,r,o)}}function rt(e,t){var n=e.model&&e.model.prop||"value",r=e.model&&e.model.event||"input";(t.props||(t.props={}))[n]=t.model.value;var o=t.on||(t.on={});i(o[r])?o[r]=[t.model.callback].concat(o[r]):o[r]=t.model.callback}function ot(e,t,n,i,o,l){return(Array.isArray(n)||a(n))&&(o=i,i=n,n=void 0),r(l)&&(o=Jo),at(e,t,n,i,o)}function at(e,t,n,r,o){if(i(n)&&i(n.__ob__))return $o();if(i(n)&&i(n.is)&&(t=n.is),!t)return $o();Array.isArray(r)&&"function"==typeof r[0]&&(n=n||{},n.scopedSlots={default:r[0]},r.length=0),o===Jo?r=se(r):o===Xo&&(r=le(r));var a,l;if("string"==typeof t){var s;l=e.$vnode&&e.$vnode.ns||eo.getTagNamespace(t),a=eo.isReservedTag(t)?new Io(eo.parsePlatformTagName(t),n,r,void 0,void 0,e):i(s=Y(e.$options,"components",t))?et(s,n,e,r,t):new Io(t,n,r,void 0,void 0,e)}else a=et(t,n,e,r);return i(a)?(l&&lt(a,l),a):$o()}function lt(e,t){if(e.ns=t,"foreignObject"!==e.tag&&i(e.children))for(var r=0,o=e.children.length;r<o;r++){var a=e.children[r];i(a.tag)&&n(a.ns)&&lt(a,t)}}function st(e,t){var n,r,o,a,s;if(Array.isArray(e)||"string"==typeof e)for(n=new Array(e.length),r=0,o=e.length;r<o;r++)n[r]=t(e[r],r);else if("number"==typeof e)for(n=new Array(e),r=0;r<e;r++)n[r]=t(r+1,r);else if(l(e))for(a=Object.keys(e),n=new Array(a.length),r=0,o=a.length;r<o;r++)s=a[r],n[r]=t(e[s],s,r);return i(n)&&(n._isVList=!0),n}function ut(e,t,n,i){var r=this.$scopedSlots[e];if(r)return n=n||{},i&&(n=y(y({},i),n)),r(n)||t;var o=this.$slots[e];return o||t}function ct(e){return Y(this.$options,"filters",e,!0)||Zr}function dt(e,t,n){var i=eo.keyCodes[t]||n;return Array.isArray(i)?-1===i.indexOf(e):i!==e}function ft(e,t,n,i,r){if(n)if(l(n)){Array.isArray(n)&&(n=_(n));var o;for(var a in n)!function(a){if("class"===a||"style"===a||Fr(a))o=e;else{var l=e.attrs&&e.attrs.type;o=i||eo.mustUseProp(t,l,a)?e.domProps||(e.domProps={}):e.attrs||(e.attrs={})}if(!(a in o)&&(o[a]=n[a],r)){(e.on||(e.on={}))["update:"+a]=function(e){n[a]=e}}}(a)}else;return e}function pt(e,t){var n=this._staticTrees[e];return n&&!t?Array.isArray(n)?ee(n):J(n):(n=this._staticTrees[e]=this.$options.staticRenderFns[e].call(this._renderProxy),mt(n,"__static__"+e,!1),n)}function ht(e,t,n){return mt(e,"__once__"+t+(n?"_"+n:""),!0),e}function mt(e,t,n){if(Array.isArray(e))for(var i=0;i<e.length;i++)e[i]&&"string"!=typeof e[i]&&vt(e[i],t+"_"+i,n);else vt(e,t,n)}function vt(e,t,n){e.isStatic=!0,e.key=t,e.isOnce=n}function gt(e,t){if(t)if(s(t)){var n=e.on=e.on?y({},e.on):{};for(var i in t){var r=n[i],o=t[i];n[i]=r?[].concat(o,r):o}}else;return e}function bt(e){e._vnode=null,e._staticTrees=null;var t=e.$vnode=e.$options._parentVnode,n=t&&t.context;e.$slots=_e(e.$options._renderChildren,n),e.$scopedSlots=to,e._c=function(t,n,i,r){return ot(e,t,n,i,r,!1)},e.$createElement=function(t,n,i,r){return ot(e,t,n,i,r,!0)};var i=t&&t.data;j(e,"$attrs",i&&i.attrs||to,null,!0),j(e,"$listeners",e.$options._parentListeners||to,null,!0)}function yt(e,t){var n=e.$options=Object.create(e.constructor.options);n.parent=t.parent,n.propsData=t.propsData,n._parentVnode=t._parentVnode,n._parentListeners=t._parentListeners,n._renderChildren=t._renderChildren,n._componentTag=t._componentTag,n._parentElm=t._parentElm,n._refElm=t._refElm,t.render&&(n.render=t.render,n.staticRenderFns=t.staticRenderFns)}function _t(e){var t=e.options;if(e.super){var n=_t(e.super);if(n!==e.superOptions){e.superOptions=n;var i=xt(e);i&&y(e.extendOptions,i),t=e.options=W(n,e.extendOptions),t.name&&(t.components[t.name]=e)}}return t}function xt(e){var t,n=e.options,i=e.extendOptions,r=e.sealedOptions;for(var o in n)n[o]!==r[o]&&(t||(t={}),t[o]=wt(n[o],i[o],r[o]));return t}function wt(e,t,n){if(Array.isArray(e)){var i=[];n=Array.isArray(n)?n:[n],t=Array.isArray(t)?t:[t];for(var r=0;r<e.length;r++)(t.indexOf(e[r])>=0||n.indexOf(e[r])<0)&&i.push(e[r]);return i}return e}function kt(e){this._init(e)}function Ct(e){e.use=function(e){var t=this._installedPlugins||(this._installedPlugins=[]);if(t.indexOf(e)>-1)return this;var n=b(arguments,1);return n.unshift(this),"function"==typeof e.install?e.install.apply(e,n):"function"==typeof e&&e.apply(null,n),t.push(e),this}}function qt(e){e.mixin=function(e){return this.options=W(this.options,e),this}}function St(e){e.cid=0;var t=1;e.extend=function(e){e=e||{};var n=this,i=n.cid,r=e._Ctor||(e._Ctor={});if(r[i])return r[i];var o=e.name||n.options.name,a=function(e){this._init(e)};return a.prototype=Object.create(n.prototype),a.prototype.constructor=a,a.cid=t++,a.options=W(n.options,e),a.super=n,a.options.props&&Ot(a),a.options.computed&&Mt(a),a.extend=n.extend,a.mixin=n.mixin,a.use=n.use,Xr.forEach(function(e){a[e]=n[e]}),o&&(a.options.components[o]=a),a.superOptions=n.options,a.extendOptions=e,a.sealedOptions=y({},a.options),r[i]=a,a}}function Ot(e){var t=e.options.props;for(var n in t)Le(e.prototype,"_props",n)}function Mt(e){var t=e.options.computed;for(var n in t)He(e.prototype,n,t[n])}function Et(e){Xr.forEach(function(t){e[t]=function(e,n){return n?("component"===t&&s(n)&&(n.name=n.name||e,n=this.options._base.extend(n)),"directive"===t&&"function"==typeof n&&(n={bind:n,update:n}),this.options[t+"s"][e]=n,n):this.options[t+"s"][e]}})}function Tt(e){return e&&(e.Ctor.options.name||e.tag)}function Nt(e,t){return Array.isArray(e)?e.indexOf(t)>-1:"string"==typeof e?e.split(",").indexOf(t)>-1:!!u(e)&&e.test(t)}function At(e,t,n){for(var i in e){var r=e[i];if(r){var o=Tt(r.componentOptions);o&&!n(o)&&(r!==t&&It(r),e[i]=null)}}}function It(e){e&&e.componentInstance.$destroy()}function Dt(e){for(var t=e.data,n=e,r=e;i(r.componentInstance);)r=r.componentInstance._vnode,r.data&&(t=jt(r.data,t));for(;i(n=n.parent);)n.data&&(t=jt(t,n.data));return $t(t.staticClass,t.class)}function jt(e,t){return{staticClass:Pt(e.staticClass,t.staticClass),class:i(e.class)?[e.class,t.class]:t.class}}function $t(e,t){return i(e)||i(t)?Pt(e,Lt(t)):""}function Pt(e,t){return e?t?e+" "+t:e:t||""}function Lt(e){return Array.isArray(e)?zt(e):l(e)?Rt(e):"string"==typeof e?e:""}function zt(e){for(var t,n="",r=0,o=e.length;r<o;r++)i(t=Lt(e[r]))&&""!==t&&(n&&(n+=" "),n+=t);return n}function Rt(e){var t="";for(var n in e)e[n]&&(t&&(t+=" "),t+=n);return t}function Bt(e){return Ca(e)?"svg":"math"===e?"math":void 0}function Ft(e){if(!oo)return!0;if(Sa(e))return!1;if(e=e.toLowerCase(),null!=Oa[e])return Oa[e];var t=document.createElement(e);return e.indexOf("-")>-1?Oa[e]=t.constructor===window.HTMLUnknownElement||t.constructor===window.HTMLElement:Oa[e]=/HTMLUnknownElement/.test(t.toString())}function Vt(e){if("string"==typeof e){var t=document.querySelector(e);return t||document.createElement("div")}return e}function Ht(e,t){var n=document.createElement(e);return"select"!==e?n:(t.data&&t.data.attrs&&void 0!==t.data.attrs.multiple&&n.setAttribute("multiple","multiple"),n)}function Ut(e,t){return document.createElementNS(wa[e],t)}function Wt(e){return document.createTextNode(e)}function Yt(e){return document.createComment(e)}function Gt(e,t,n){e.insertBefore(t,n)}function Kt(e,t){e.removeChild(t)}function Zt(e,t){e.appendChild(t)}function Qt(e){return e.parentNode}function Xt(e){return e.nextSibling}function Jt(e){return e.tagName}function en(e,t){e.textContent=t}function tn(e,t,n){e.setAttribute(t,n)}function nn(e,t){var n=e.data.ref;if(n){var i=e.context,r=e.componentInstance||e.elm,o=i.$refs;t?Array.isArray(o[n])?h(o[n],r):o[n]===r&&(o[n]=void 0):e.data.refInFor?Array.isArray(o[n])?o[n].indexOf(r)<0&&o[n].push(r):o[n]=[r]:o[n]=r}}function rn(e,t){return e.key===t.key&&(e.tag===t.tag&&e.isComment===t.isComment&&i(e.data)===i(t.data)&&on(e,t)||r(e.isAsyncPlaceholder)&&e.asyncFactory===t.asyncFactory&&n(t.asyncFactory.error))}function on(e,t){if("input"!==e.tag)return!0;var n,r=i(n=e.data)&&i(n=n.attrs)&&n.type,o=i(n=t.data)&&i(n=n.attrs)&&n.type;return r===o||Ma(r)&&Ma(o)}function an(e,t,n){var r,o,a={};for(r=t;r<=n;++r)o=e[r].key,i(o)&&(a[o]=r);return a}function ln(e,t){(e.data.directives||t.data.directives)&&sn(e,t)}function sn(e,t){var n,i,r,o=e===Na,a=t===Na,l=un(e.data.directives,e.context),s=un(t.data.directives,t.context),u=[],c=[];for(n in s)i=l[n],r=s[n],i?(r.oldValue=i.value,dn(r,"update",t,e),r.def&&r.def.componentUpdated&&c.push(r)):(dn(r,"bind",t,e),r.def&&r.def.inserted&&u.push(r));if(u.length){var d=function(){for(var n=0;n<u.length;n++)dn(u[n],"inserted",t,e)};o?re(t.data.hook||(t.data.hook={}),"insert",d):d()}if(c.length&&re(t.data.hook||(t.data.hook={}),"postpatch",function(){for(var n=0;n<c.length;n++)dn(c[n],"componentUpdated",t,e)}),!o)for(n in l)s[n]||dn(l[n],"unbind",e,e,a)}function un(e,t){var n=Object.create(null);if(!e)return n;var i,r;for(i=0;i<e.length;i++)r=e[i],r.modifiers||(r.modifiers=Da),n[cn(r)]=r,r.def=Y(t.$options,"directives",r.name,!0);return n}function cn(e){return e.rawName||e.name+"."+Object.keys(e.modifiers||{}).join(".")}function dn(e,t,n,i,r){var o=e.def&&e.def[t];if(o)try{o(n.elm,e,n,i,r)}catch(i){M(i,n.context,"directive "+e.name+" "+t+" hook")}}function fn(e,t){var r=t.componentOptions;if(!(i(r)&&!1===r.Ctor.options.inheritAttrs||n(e.data.attrs)&&n(t.data.attrs))){var o,a,l=t.elm,s=e.data.attrs||{},u=t.data.attrs||{};i(u.__ob__)&&(u=t.data.attrs=y({},u));for(o in u)a=u[o],s[o]!==a&&pn(l,o,a);so&&u.value!==s.value&&pn(l,"value",u.value);for(o in s)n(u[o])&&(ya(o)?l.removeAttributeNS(ba,_a(o)):va(o)||l.removeAttribute(o))}}function pn(e,t,n){ga(t)?xa(n)?e.removeAttribute(t):(n="allowfullscreen"===t&&"EMBED"===e.tagName?"true":t,e.setAttribute(t,n)):va(t)?e.setAttribute(t,xa(n)||"false"===n?"false":"true"):ya(t)?xa(n)?e.removeAttributeNS(ba,_a(t)):e.setAttributeNS(ba,t,n):xa(n)?e.removeAttribute(t):e.setAttribute(t,n)}function hn(e,t){var r=t.elm,o=t.data,a=e.data;if(!(n(o.staticClass)&&n(o.class)&&(n(a)||n(a.staticClass)&&n(a.class)))){var l=Dt(t),s=r._transitionClasses;i(s)&&(l=Pt(l,Lt(s))),l!==r._prevClass&&(r.setAttribute("class",l),r._prevClass=l)}}function mn(e){function t(){(a||(a=[])).push(e.slice(h,r).trim()),h=r+1}var n,i,r,o,a,l=!1,s=!1,u=!1,c=!1,d=0,f=0,p=0,h=0;for(r=0;r<e.length;r++)if(i=n,n=e.charCodeAt(r),l)39===n&&92!==i&&(l=!1);else if(s)34===n&&92!==i&&(s=!1);else if(u)96===n&&92!==i&&(u=!1);else if(c)47===n&&92!==i&&(c=!1);else if(124!==n||124===e.charCodeAt(r+1)||124===e.charCodeAt(r-1)||d||f||p){switch(n){case 34:s=!0;break;case 39:l=!0;break;case 96:u=!0;break;case 40:p++;break;case 41:p--;break;case 91:f++;break;case 93:f--;break;case 123:d++;break;case 125:d--}if(47===n){for(var m=r-1,v=void 0;m>=0&&" "===(v=e.charAt(m));m--);v&&La.test(v)||(c=!0)}}else void 0===o?(h=r+1,o=e.slice(0,r).trim()):t();if(void 0===o?o=e.slice(0,r).trim():0!==h&&t(),a)for(r=0;r<a.length;r++)o=vn(o,a[r]);return o}function vn(e,t){var n=t.indexOf("(");return n<0?'_f("'+t+'")('+e+")":'_f("'+t.slice(0,n)+'")('+e+","+t.slice(n+1)}function gn(e){}function bn(e,t){return e?e.map(function(e){return e[t]}).filter(function(e){return e}):[]}function yn(e,t,n){(e.props||(e.props=[])).push({name:t,value:n})}function _n(e,t,n){(e.attrs||(e.attrs=[])).push({name:t,value:n})}function xn(e,t,n,i,r,o){(e.directives||(e.directives=[])).push({name:t,rawName:n,value:i,arg:r,modifiers:o})}function wn(e,t,n,i,r,o){i&&i.capture&&(delete i.capture,t="!"+t),i&&i.once&&(delete i.once,t="~"+t),i&&i.passive&&(delete i.passive,t="&"+t);var a;i&&i.native?(delete i.native,a=e.nativeEvents||(e.nativeEvents={})):a=e.events||(e.events={});var l={value:n,modifiers:i},s=a[t];Array.isArray(s)?r?s.unshift(l):s.push(l):a[t]=s?r?[l,s]:[s,l]:l}function kn(e,t,n){var i=Cn(e,":"+t)||Cn(e,"v-bind:"+t);if(null!=i)return mn(i);if(!1!==n){var r=Cn(e,t);if(null!=r)return JSON.stringify(r)}}function Cn(e,t){var n;if(null!=(n=e.attrsMap[t]))for(var i=e.attrsList,r=0,o=i.length;r<o;r++)if(i[r].name===t){i.splice(r,1);break}return n}function qn(e,t,n){var i=n||{},r=i.number,o=i.trim,a="$$v";o&&(a="(typeof $$v === 'string'? $$v.trim(): $$v)"),r&&(a="_n("+a+")");var l=Sn(t,a);e.model={value:"("+t+")",expression:'"'+t+'"',callback:"function ($$v) {"+l+"}"}}function Sn(e,t){var n=On(e);return null===n.idx?e+"="+t:"$set("+n.exp+", "+n.idx+", "+t+")"}function On(e){if(oa=e,ra=oa.length,la=sa=ua=0,e.indexOf("[")<0||e.lastIndexOf("]")<ra-1)return{exp:e,idx:null};for(;!En();)aa=Mn(),Tn(aa)?An(aa):91===aa&&Nn(aa);return{exp:e.substring(0,sa),idx:e.substring(sa+1,ua)}}function Mn(){return oa.charCodeAt(++la)}function En(){return la>=ra}function Tn(e){return 34===e||39===e}function Nn(e){var t=1;for(sa=la;!En();)if(e=Mn(),Tn(e))An(e);else if(91===e&&t++,93===e&&t--,0===t){ua=la;break}}function An(e){for(var t=e;!En()&&(e=Mn())!==t;);}function In(e,t,n){ca=n;var i=t.value,r=t.modifiers,o=e.tag,a=e.attrsMap.type;if(e.component)return qn(e,i,r),!1;if("select"===o)$n(e,i,r);else if("input"===o&&"checkbox"===a)Dn(e,i,r);else if("input"===o&&"radio"===a)jn(e,i,r);else if("input"===o||"textarea"===o)Pn(e,i,r);else if(!eo.isReservedTag(o))return qn(e,i,r),!1;return!0}function Dn(e,t,n){var i=n&&n.number,r=kn(e,"value")||"null",o=kn(e,"true-value")||"true",a=kn(e,"false-value")||"false";yn(e,"checked","Array.isArray("+t+")?_i("+t+","+r+")>-1"+("true"===o?":("+t+")":":_q("+t+","+o+")")),wn(e,Ra,"var $$a="+t+",$$el=$event.target,$$c=$$el.checked?("+o+"):("+a+");if(Array.isArray($$a)){var $$v="+(i?"_n("+r+")":r)+",$$i=_i($$a,$$v);if($$el.checked){$$i<0&&("+t+"=$$a.concat([$$v]))}else{$$i>-1&&("+t+"=$$a.slice(0,$$i).concat($$a.slice($$i+1)))}}else{"+Sn(t,"$$c")+"}",null,!0)}function jn(e,t,n){var i=n&&n.number,r=kn(e,"value")||"null";r=i?"_n("+r+")":r,yn(e,"checked","_q("+t+","+r+")"),wn(e,Ra,Sn(t,r),null,!0)}function $n(e,t,n){var i=n&&n.number,r='Array.prototype.filter.call($event.target.options,function(o){return o.selected}).map(function(o){var val = "_value" in o ? o._value : o.value;return '+(i?"_n(val)":"val")+"})",o="var $$selectedVal = "+r+";";o=o+" "+Sn(t,"$event.target.multiple ? $$selectedVal : $$selectedVal[0]"),wn(e,"change",o,null,!0)}function Pn(e,t,n){var i=e.attrsMap.type,r=n||{},o=r.lazy,a=r.number,l=r.trim,s=!o&&"range"!==i,u=o?"change":"range"===i?za:"input",c="$event.target.value";l&&(c="$event.target.value.trim()"),a&&(c="_n("+c+")");var d=Sn(t,c);s&&(d="if($event.target.composing)return;"+d),yn(e,"value","("+t+")"),wn(e,u,d,null,!0),(l||a)&&wn(e,"blur","$forceUpdate()")}function Ln(e){var t;i(e[za])&&(t=lo?"change":"input",e[t]=[].concat(e[za],e[t]||[]),delete e[za]),i(e[Ra])&&(t=po?"click":"change",e[t]=[].concat(e[Ra],e[t]||[]),delete e[Ra])}function zn(e,t,n,i,r){if(n){var o=t,a=da;t=function(n){null!==(1===arguments.length?o(n):o.apply(null,arguments))&&Rn(e,t,i,a)}}da.addEventListener(e,t,mo?{capture:i,passive:r}:i)}function Rn(e,t,n,i){(i||da).removeEventListener(e,t,n)}function Bn(e,t){if(!n(e.data.on)||!n(t.data.on)){var i=t.data.on||{},r=e.data.on||{};da=t.elm,Ln(i),ie(i,r,zn,Rn,t.context)}}function Fn(e,t){if(!n(e.data.domProps)||!n(t.data.domProps)){var r,o,a=t.elm,l=e.data.domProps||{},s=t.data.domProps||{};i(s.__ob__)&&(s=t.data.domProps=y({},s));for(r in l)n(s[r])&&(a[r]="");for(r in s)if(o=s[r],"textContent"!==r&&"innerHTML"!==r||(t.children&&(t.children.length=0),o!==l[r]))if("value"===r){a._value=o;var u=n(o)?"":String(o);Vn(a,t,u)&&(a.value=u)}else a[r]=o}}function Vn(e,t,n){return!e.composing&&("option"===t.tag||Hn(e,n)||Un(e,n))}function Hn(e,t){var n=!0;try{n=document.activeElement!==e}catch(e){}return n&&e.value!==t}function Un(e,t){var n=e.value,r=e._vModifiers;return i(r)&&r.number?f(n)!==f(t):i(r)&&r.trim?n.trim()!==t.trim():n!==t}function Wn(e){var t=Yn(e.style);return e.staticStyle?y(e.staticStyle,t):t}function Yn(e){return Array.isArray(e)?_(e):"string"==typeof e?Va(e):e}function Gn(e,t){var n,i={};if(t)for(var r=e;r.componentInstance;)r=r.componentInstance._vnode,r.data&&(n=Wn(r.data))&&y(i,n);(n=Wn(e.data))&&y(i,n);for(var o=e;o=o.parent;)o.data&&(n=Wn(o.data))&&y(i,n);return i}function Kn(e,t){var r=t.data,o=e.data;if(!(n(r.staticStyle)&&n(r.style)&&n(o.staticStyle)&&n(o.style))){var a,l,s=t.elm,u=o.staticStyle,c=o.normalizedStyle||o.style||{},d=u||c,f=Yn(t.data.style)||{};t.data.normalizedStyle=i(f.__ob__)?y({},f):f;var p=Gn(t,!0);for(l in d)n(p[l])&&Wa(s,l,"");for(l in p)(a=p[l])!==d[l]&&Wa(s,l,null==a?"":a)}}function Zn(e,t){if(t&&(t=t.trim()))if(e.classList)t.indexOf(" ")>-1?t.split(/\s+/).forEach(function(t){return e.classList.add(t)}):e.classList.add(t);else{var n=" "+(e.getAttribute("class")||"")+" ";n.indexOf(" "+t+" ")<0&&e.setAttribute("class",(n+t).trim())}}function Qn(e,t){if(t&&(t=t.trim()))if(e.classList)t.indexOf(" ")>-1?t.split(/\s+/).forEach(function(t){return e.classList.remove(t)}):e.classList.remove(t),e.classList.length||e.removeAttribute("class");else{for(var n=" "+(e.getAttribute("class")||"")+" ",i=" "+t+" ";n.indexOf(i)>=0;)n=n.replace(i," ");n=n.trim(),n?e.setAttribute("class",n):e.removeAttribute("class")}}function Xn(e){if(e){if("object"==typeof e){var t={};return!1!==e.css&&y(t,Za(e.name||"v")),y(t,e),t}return"string"==typeof e?Za(e):void 0}}function Jn(e){rl(function(){rl(e)})}function ei(e,t){var n=e._transitionClasses||(e._transitionClasses=[]);n.indexOf(t)<0&&(n.push(t),Zn(e,t))}function ti(e,t){e._transitionClasses&&h(e._transitionClasses,t),Qn(e,t)}function ni(e,t,n){var i=ii(e,t),r=i.type,o=i.timeout,a=i.propCount;if(!r)return n();var l=r===Xa?tl:il,s=0,u=function(){e.removeEventListener(l,c),n()},c=function(t){t.target===e&&++s>=a&&u()};setTimeout(function(){s<a&&u()},o+1),e.addEventListener(l,c)}function ii(e,t){var n,i=window.getComputedStyle(e),r=i[el+"Delay"].split(", "),o=i[el+"Duration"].split(", "),a=ri(r,o),l=i[nl+"Delay"].split(", "),s=i[nl+"Duration"].split(", "),u=ri(l,s),c=0,d=0;return t===Xa?a>0&&(n=Xa,c=a,d=o.length):t===Ja?u>0&&(n=Ja,c=u,d=s.length):(c=Math.max(a,u),n=c>0?a>u?Xa:Ja:null,d=n?n===Xa?o.length:s.length:0),{type:n,timeout:c,propCount:d,hasTransform:n===Xa&&ol.test(i[el+"Property"])}}function ri(e,t){for(;e.length<t.length;)e=e.concat(e);return Math.max.apply(null,t.map(function(t,n){return oi(t)+oi(e[n])}))}function oi(e){return 1e3*Number(e.slice(0,-1))}function ai(e,t){var r=e.elm;i(r._leaveCb)&&(r._leaveCb.cancelled=!0,r._leaveCb());var o=Xn(e.data.transition);if(!n(o)&&!i(r._enterCb)&&1===r.nodeType){for(var a=o.css,s=o.type,u=o.enterClass,c=o.enterToClass,d=o.enterActiveClass,p=o.appearClass,h=o.appearToClass,m=o.appearActiveClass,v=o.beforeEnter,g=o.enter,b=o.afterEnter,y=o.enterCancelled,_=o.beforeAppear,x=o.appear,w=o.afterAppear,k=o.appearCancelled,q=o.duration,S=Lo,O=Lo.$vnode;O&&O.parent;)O=O.parent,S=O.context;var M=!S._isMounted||!e.isRootInsert;if(!M||x||""===x){var E=M&&p?p:u,T=M&&m?m:d,N=M&&h?h:c,A=M?_||v:v,I=M&&"function"==typeof x?x:g,D=M?w||b:b,j=M?k||y:y,$=f(l(q)?q.enter:q),P=!1!==a&&!so,L=ui(I),z=r._enterCb=C(function(){P&&(ti(r,N),ti(r,T)),z.cancelled?(P&&ti(r,E),j&&j(r)):D&&D(r),r._enterCb=null});e.data.show||re(e.data.hook||(e.data.hook={}),"insert",function(){var t=r.parentNode,n=t&&t._pending&&t._pending[e.key];n&&n.tag===e.tag&&n.elm._leaveCb&&n.elm._leaveCb(),I&&I(r,z)}),A&&A(r),P&&(ei(r,E),ei(r,T),Jn(function(){ei(r,N),ti(r,E),z.cancelled||L||(si($)?setTimeout(z,$):ni(r,s,z))})),e.data.show&&(t&&t(),I&&I(r,z)),P||L||z()}}}function li(e,t){function r(){k.cancelled||(e.data.show||((o.parentNode._pending||(o.parentNode._pending={}))[e.key]=e),h&&h(o),_&&(ei(o,c),ei(o,p),Jn(function(){ei(o,d),ti(o,c),k.cancelled||x||(si(w)?setTimeout(k,w):ni(o,u,k))})),m&&m(o,k),_||x||k())}var o=e.elm;i(o._enterCb)&&(o._enterCb.cancelled=!0,o._enterCb());var a=Xn(e.data.transition);if(n(a))return t();if(!i(o._leaveCb)&&1===o.nodeType){var s=a.css,u=a.type,c=a.leaveClass,d=a.leaveToClass,p=a.leaveActiveClass,h=a.beforeLeave,m=a.leave,v=a.afterLeave,g=a.leaveCancelled,b=a.delayLeave,y=a.duration,_=!1!==s&&!so,x=ui(m),w=f(l(y)?y.leave:y),k=o._leaveCb=C(function(){o.parentNode&&o.parentNode._pending&&(o.parentNode._pending[e.key]=null),_&&(ti(o,d),ti(o,p)),k.cancelled?(_&&ti(o,c),g&&g(o)):(t(),v&&v(o)),o._leaveCb=null});b?b(r):r()}}function si(e){return"number"==typeof e&&!isNaN(e)}function ui(e){if(n(e))return!1;var t=e.fns;return i(t)?ui(Array.isArray(t)?t[0]:t):(e._length||e.length)>1}function ci(e,t){!0!==t.data.show&&ai(t)}function di(e,t,n){fi(e,t,n),(lo||uo)&&setTimeout(function(){fi(e,t,n)},0)}function fi(e,t,n){var i=t.value,r=e.multiple;if(!r||Array.isArray(i)){for(var o,a,l=0,s=e.options.length;l<s;l++)if(a=e.options[l],r)o=k(i,hi(a))>-1,a.selected!==o&&(a.selected=o);else if(w(hi(a),i))return void(e.selectedIndex!==l&&(e.selectedIndex=l));r||(e.selectedIndex=-1)}}function pi(e,t){return t.every(function(t){return!w(t,e)})}function hi(e){return"_value"in e?e._value:e.value}function mi(e){e.target.composing=!0}function vi(e){e.target.composing&&(e.target.composing=!1,gi(e.target,"input"))}function gi(e,t){var n=document.createEvent("HTMLEvents");n.initEvent(t,!0,!0),e.dispatchEvent(n)}function bi(e){return!e.componentInstance||e.data&&e.data.transition?e:bi(e.componentInstance._vnode)}function yi(e){var t=e&&e.componentOptions;return t&&t.Ctor.options.abstract?yi(me(t.children)):e}function _i(e){var t={},n=e.$options;for(var i in n.propsData)t[i]=e[i];var r=n._parentListeners;for(var o in r)t[Ur(o)]=r[o];return t}function xi(e,t){if(/\d-keep-alive$/.test(t.tag))return e("keep-alive",{props:t.componentOptions.propsData})}function wi(e){for(;e=e.parent;)if(e.data.transition)return!0}function ki(e,t){return t.key===e.key&&t.tag===e.tag}function Ci(e){e.elm._moveCb&&e.elm._moveCb(),e.elm._enterCb&&e.elm._enterCb()}function qi(e){e.data.newPos=e.elm.getBoundingClientRect()}function Si(e){var t=e.data.pos,n=e.data.newPos,i=t.left-n.left,r=t.top-n.top;if(i||r){e.data.moved=!0;var o=e.elm.style;o.transform=o.WebkitTransform="translate("+i+"px,"+r+"px)",o.transitionDuration="0s"}}function Oi(e,t){var n=t?wl(t):_l;if(n.test(e)){for(var i,r,o=[],a=n.lastIndex=0;i=n.exec(e);){r=i.index,r>a&&o.push(JSON.stringify(e.slice(a,r)));var l=mn(i[1].trim());o.push("_s("+l+")"),a=r+i[0].length}return a<e.length&&o.push(JSON.stringify(e.slice(a))),o.join("+")}}function Mi(e,t){var n=(t.warn,Cn(e,"class"));n&&(e.staticClass=JSON.stringify(n));var i=kn(e,"class",!1);i&&(e.classBinding=i)}function Ei(e){var t="";return e.staticClass&&(t+="staticClass:"+e.staticClass+","),e.classBinding&&(t+="class:"+e.classBinding+","),t}function Ti(e,t){var n=(t.warn,Cn(e,"style"));if(n){e.staticStyle=JSON.stringify(Va(n))}var i=kn(e,"style",!1);i&&(e.styleBinding=i)}function Ni(e){var t="";return e.staticStyle&&(t+="staticStyle:"+e.staticStyle+","),e.styleBinding&&(t+="style:("+e.styleBinding+"),"),t}function Ai(e,t){t.value&&yn(e,"textContent","_s("+t.value+")")}function Ii(e,t){t.value&&yn(e,"innerHTML","_s("+t.value+")")}function Di(e,t){var n=t?ns:ts;return e.replace(n,function(e){return es[e]})}function ji(e,t){function n(t){c+=t,e=e.substring(t)}function i(e,n,i){var r,l;if(null==n&&(n=c),null==i&&(i=c),e&&(l=e.toLowerCase()),e)for(r=a.length-1;r>=0&&a[r].lowerCasedTag!==l;r--);else r=0;if(r>=0){for(var s=a.length-1;s>=r;s--)t.end&&t.end(a[s].tag,n,i);a.length=r,o=r&&a[r-1].tag}else"br"===l?t.start&&t.start(e,[],!0,n,i):"p"===l&&(t.start&&t.start(e,[],!1,n,i),t.end&&t.end(e,n,i))}for(var r,o,a=[],l=t.expectHTML,s=t.isUnaryTag||Kr,u=t.canBeLeftOpenTag||Kr,c=0;e;){if(r=e,o&&Xl(o)){var d=0,f=o.toLowerCase(),p=Jl[f]||(Jl[f]=new RegExp("([\\s\\S]*?)(</"+f+"[^>]*>)","i")),h=e.replace(p,function(e,n,i){return d=i.length,Xl(f)||"noscript"===f||(n=n.replace(/<!--([\s\S]*?)-->/g,"$1").replace(/<!\[CDATA\[([\s\S]*?)]]>/g,"$1")),rs(f,n)&&(n=n.slice(1)),t.chars&&t.chars(n),""});c+=e.length-h.length,e=h,i(f,c-d,c)}else{var m=e.indexOf("<");if(0===m){if(zl.test(e)){var v=e.indexOf("--\x3e");if(v>=0){t.shouldKeepComment&&t.comment(e.substring(4,v)),n(v+3);continue}}if(Rl.test(e)){var g=e.indexOf("]>");if(g>=0){n(g+2);continue}}var b=e.match(Ll);if(b){n(b[0].length);continue}var y=e.match(Pl);if(y){var _=c;n(y[0].length),i(y[1],_,c);continue}var x=function(){var t=e.match(jl);if(t){var i={tagName:t[1],attrs:[],start:c};n(t[0].length);for(var r,o;!(r=e.match($l))&&(o=e.match(Al));)n(o[0].length),i.attrs.push(o);if(r)return i.unarySlash=r[1],n(r[0].length),i.end=c,i}}();if(x){!function(e){var n=e.tagName,r=e.unarySlash;l&&("p"===o&&El(n)&&i(o),u(n)&&o===n&&i(n));for(var c=s(n)||!!r,d=e.attrs.length,f=new Array(d),p=0;p<d;p++){var h=e.attrs[p];Bl&&-1===h[0].indexOf('""')&&(""===h[3]&&delete h[3],""===h[4]&&delete h[4],""===h[5]&&delete h[5]);var m=h[3]||h[4]||h[5]||"";f[p]={name:h[1],value:Di(m,t.shouldDecodeNewlines)}}c||(a.push({tag:n,lowerCasedTag:n.toLowerCase(),attrs:f}),o=n),t.start&&t.start(n,f,c,e.start,e.end)}(x),rs(o,e)&&n(1);continue}}var w=void 0,k=void 0,C=void 0;if(m>=0){for(k=e.slice(m);!(Pl.test(k)||jl.test(k)||zl.test(k)||Rl.test(k)||(C=k.indexOf("<",1))<0);)m+=C,k=e.slice(m);w=e.substring(0,m),n(m)}m<0&&(w=e,e=""),t.chars&&w&&t.chars(w)}if(e===r){t.chars&&t.chars(e);break}}i()}function $i(e,t){function n(e){e.pre&&(l=!1),Yl(e.tag)&&(s=!1)}Fl=t.warn||gn,Yl=t.isPreTag||Kr,Gl=t.mustUseProp||Kr,Kl=t.getTagNamespace||Kr,Hl=bn(t.modules,"transformNode"),Ul=bn(t.modules,"preTransformNode"),Wl=bn(t.modules,"postTransformNode"),Vl=t.delimiters;var i,r,o=[],a=!1!==t.preserveWhitespace,l=!1,s=!1;return ji(e,{warn:Fl,expectHTML:t.expectHTML,isUnaryTag:t.isUnaryTag,canBeLeftOpenTag:t.canBeLeftOpenTag,shouldDecodeNewlines:t.shouldDecodeNewlines,shouldKeepComment:t.comments,start:function(e,a,u){var c=r&&r.ns||Kl(e);lo&&"svg"===c&&(a=tr(a));var d={type:1,tag:e,attrsList:a,attrsMap:Xi(a),parent:r,children:[]};c&&(d.ns=c),er(d)&&!yo()&&(d.forbidden=!0);for(var f=0;f<Ul.length;f++)Ul[f](d,t);if(l||(Pi(d),d.pre&&(l=!0)),Yl(d.tag)&&(s=!0),l)Li(d);else{Bi(d),Fi(d),Wi(d),zi(d),d.plain=!d.key&&!a.length,Ri(d),Yi(d),Gi(d);for(var p=0;p<Hl.length;p++)Hl[p](d,t);Ki(d)}if(i?o.length||i.if&&(d.elseif||d.else)&&Ui(i,{exp:d.elseif,block:d}):i=d,r&&!d.forbidden)if(d.elseif||d.else)Vi(d,r);else if(d.slotScope){r.plain=!1;var h=d.slotTarget||'"default"';(r.scopedSlots||(r.scopedSlots={}))[h]=d}else r.children.push(d),d.parent=r;u?n(d):(r=d,o.push(d));for(var m=0;m<Wl.length;m++)Wl[m](d,t)},end:function(){var e=o[o.length-1],t=e.children[e.children.length-1];t&&3===t.type&&" "===t.text&&!s&&e.children.pop(),o.length-=1,r=o[o.length-1],n(e)},chars:function(e){if(r&&(!lo||"textarea"!==r.tag||r.attrsMap.placeholder!==e)){var t=r.children;if(e=s||e.trim()?Ji(r)?e:fs(e):a&&t.length?" ":""){var n;!l&&" "!==e&&(n=Oi(e,Vl))?t.push({type:2,expression:n,text:e}):" "===e&&t.length&&" "===t[t.length-1].text||t.push({type:3,text:e})}}},comment:function(e){r.children.push({type:3,text:e,isComment:!0})}}),i}function Pi(e){null!=Cn(e,"v-pre")&&(e.pre=!0)}function Li(e){var t=e.attrsList.length;if(t)for(var n=e.attrs=new Array(t),i=0;i<t;i++)n[i]={name:e.attrsList[i].name,value:JSON.stringify(e.attrsList[i].value)};else e.pre||(e.plain=!0)}function zi(e){var t=kn(e,"key");t&&(e.key=t)}function Ri(e){var t=kn(e,"ref");t&&(e.ref=t,e.refInFor=Zi(e))}function Bi(e){var t;if(t=Cn(e,"v-for")){var n=t.match(ls);if(!n)return;e.for=n[2].trim();var i=n[1].trim(),r=i.match(ss);r?(e.alias=r[1].trim(),e.iterator1=r[2].trim(),r[3]&&(e.iterator2=r[3].trim())):e.alias=i}}function Fi(e){var t=Cn(e,"v-if");if(t)e.if=t,Ui(e,{exp:t,block:e});else{null!=Cn(e,"v-else")&&(e.else=!0);var n=Cn(e,"v-else-if");n&&(e.elseif=n)}}function Vi(e,t){var n=Hi(t.children);n&&n.if&&Ui(n,{exp:e.elseif,block:e})}function Hi(e){for(var t=e.length;t--;){if(1===e[t].type)return e[t];e.pop()}}function Ui(e,t){e.ifConditions||(e.ifConditions=[]),e.ifConditions.push(t)}function Wi(e){null!=Cn(e,"v-once")&&(e.once=!0)}function Yi(e){if("slot"===e.tag)e.slotName=kn(e,"name");else{var t=kn(e,"slot");t&&(e.slotTarget='""'===t?'"default"':t,_n(e,"slot",t)),"template"===e.tag&&(e.slotScope=Cn(e,"scope"))}}function Gi(e){var t;(t=kn(e,"is"))&&(e.component=t),null!=Cn(e,"inline-template")&&(e.inlineTemplate=!0)}function Ki(e){var t,n,i,r,o,a,l,s=e.attrsList;for(t=0,n=s.length;t<n;t++)if(i=r=s[t].name,o=s[t].value,as.test(i))if(e.hasBindings=!0,a=Qi(i),a&&(i=i.replace(ds,"")),cs.test(i))i=i.replace(cs,""),o=mn(o),l=!1,a&&(a.prop&&(l=!0,"innerHtml"===(i=Ur(i))&&(i="innerHTML")),a.camel&&(i=Ur(i)),a.sync&&wn(e,"update:"+Ur(i),Sn(o,"$event"))),l||!e.component&&Gl(e.tag,e.attrsMap.type,i)?yn(e,i,o):_n(e,i,o);else if(os.test(i))i=i.replace(os,""),wn(e,i,o,a,!1,Fl);else{i=i.replace(as,"");var u=i.match(us),c=u&&u[1];c&&(i=i.slice(0,-(c.length+1))),xn(e,i,r,o,c,a)}else{_n(e,i,JSON.stringify(o))}}function Zi(e){for(var t=e;t;){if(void 0!==t.for)return!0;t=t.parent}return!1}function Qi(e){var t=e.match(ds);if(t){var n={};return t.forEach(function(e){n[e.slice(1)]=!0}),n}}function Xi(e){for(var t={},n=0,i=e.length;n<i;n++)t[e[n].name]=e[n].value;return t}function Ji(e){return"script"===e.tag||"style"===e.tag}function er(e){return"style"===e.tag||"script"===e.tag&&(!e.attrsMap.type||"text/javascript"===e.attrsMap.type)}function tr(e){for(var t=[],n=0;n<e.length;n++){var i=e[n];ps.test(i.name)||(i.name=i.name.replace(hs,""),t.push(i))}return t}function nr(e,t){e&&(Zl=ms(t.staticKeys||""),Ql=t.isReservedTag||Kr,rr(e),or(e,!1))}function ir(e){return p("type,tag,attrsList,attrsMap,plain,parent,children,attrs"+(e?","+e:""))}function rr(e){if(e.static=ar(e),1===e.type){if(!Ql(e.tag)&&"slot"!==e.tag&&null==e.attrsMap["inline-template"])return;for(var t=0,n=e.children.length;t<n;t++){var i=e.children[t];rr(i),i.static||(e.static=!1)}if(e.ifConditions)for(var r=1,o=e.ifConditions.length;r<o;r++){var a=e.ifConditions[r].block;rr(a),a.static||(e.static=!1)}}}function or(e,t){if(1===e.type){if((e.static||e.once)&&(e.staticInFor=t),e.static&&e.children.length&&(1!==e.children.length||3!==e.children[0].type))return void(e.staticRoot=!0);if(e.staticRoot=!1,e.children)for(var n=0,i=e.children.length;n<i;n++)or(e.children[n],t||!!e.for);if(e.ifConditions)for(var r=1,o=e.ifConditions.length;r<o;r++)or(e.ifConditions[r].block,t)}}function ar(e){return 2!==e.type&&(3===e.type||!(!e.pre&&(e.hasBindings||e.if||e.for||Br(e.tag)||!Ql(e.tag)||lr(e)||!Object.keys(e).every(Zl))))}function lr(e){for(;e.parent;){if(e=e.parent,"template"!==e.tag)return!1;if(e.for)return!0}return!1}function sr(e,t,n){var i=t?"nativeOn:{":"on:{";for(var r in e){i+='"'+r+'":'+ur(r,e[r])+","}return i.slice(0,-1)+"}"}function ur(e,t){if(!t)return"function(){}";if(Array.isArray(t))return"["+t.map(function(t){return ur(e,t)}).join(",")+"]";var n=gs.test(t.value),i=vs.test(t.value);if(t.modifiers){var r="",o="",a=[];for(var l in t.modifiers)_s[l]?(o+=_s[l],bs[l]&&a.push(l)):a.push(l);a.length&&(r+=cr(a)),o&&(r+=o);return"function($event){"+r+(n?t.value+"($event)":i?"("+t.value+")($event)":t.value)+"}"}return n||i?t.value:"function($event){"+t.value+"}"}function cr(e){return"if(!('button' in $event)&&"+e.map(dr).join("&&")+")return null;"}function dr(e){var t=parseInt(e,10);if(t)return"$event.keyCode!=="+t;var n=bs[e];return"_k($event.keyCode,"+JSON.stringify(e)+(n?","+JSON.stringify(n):"")+")"}function fr(e,t){e.wrapListeners=function(e){return"_g("+e+","+t.value+")"}}function pr(e,t){e.wrapData=function(n){return"_b("+n+",'"+e.tag+"',"+t.value+","+(t.modifiers&&t.modifiers.prop?"true":"false")+(t.modifiers&&t.modifiers.sync?",true":"")+")"}}function hr(e,t){var n=new ws(t);return{render:"with(this){return "+(e?mr(e,n):'_c("div")')+"}",staticRenderFns:n.staticRenderFns}}function mr(e,t){if(e.staticRoot&&!e.staticProcessed)return vr(e,t);if(e.once&&!e.onceProcessed)return gr(e,t);if(e.for&&!e.forProcessed)return _r(e,t);if(e.if&&!e.ifProcessed)return br(e,t);if("template"!==e.tag||e.slotTarget){if("slot"===e.tag)return Ir(e,t);var n;if(e.component)n=Dr(e.component,e,t);else{var i=e.plain?void 0:xr(e,t),r=e.inlineTemplate?null:Or(e,t,!0);n="_c('"+e.tag+"'"+(i?","+i:"")+(r?","+r:"")+")"}for(var o=0;o<t.transforms.length;o++)n=t.transforms[o](e,n);return n}return Or(e,t)||"void 0"}function vr(e,t){return e.staticProcessed=!0,t.staticRenderFns.push("with(this){return "+mr(e,t)+"}"),"_m("+(t.staticRenderFns.length-1)+(e.staticInFor?",true":"")+")"}function gr(e,t){if(e.onceProcessed=!0,e.if&&!e.ifProcessed)return br(e,t);if(e.staticInFor){for(var n="",i=e.parent;i;){if(i.for){n=i.key;break}i=i.parent}return n?"_o("+mr(e,t)+","+t.onceId+++","+n+")":mr(e,t)}return vr(e,t)}function br(e,t,n,i){return e.ifProcessed=!0,yr(e.ifConditions.slice(),t,n,i)}function yr(e,t,n,i){function r(e){return n?n(e,t):e.once?gr(e,t):mr(e,t)}if(!e.length)return i||"_e()";var o=e.shift();return o.exp?"("+o.exp+")?"+r(o.block)+":"+yr(e,t,n,i):""+r(o.block)}function _r(e,t,n,i){var r=e.for,o=e.alias,a=e.iterator1?","+e.iterator1:"",l=e.iterator2?","+e.iterator2:"";return e.forProcessed=!0,(i||"_l")+"(("+r+"),function("+o+a+l+"){return "+(n||mr)(e,t)+"})"}function xr(e,t){var n="{",i=wr(e,t);i&&(n+=i+","),e.key&&(n+="key:"+e.key+","),e.ref&&(n+="ref:"+e.ref+","),e.refInFor&&(n+="refInFor:true,"),e.pre&&(n+="pre:true,"),e.component&&(n+='tag:"'+e.tag+'",');for(var r=0;r<t.dataGenFns.length;r++)n+=t.dataGenFns[r](e);if(e.attrs&&(n+="attrs:{"+jr(e.attrs)+"},"),e.props&&(n+="domProps:{"+jr(e.props)+"},"),e.events&&(n+=sr(e.events,!1,t.warn)+","),e.nativeEvents&&(n+=sr(e.nativeEvents,!0,t.warn)+","),e.slotTarget&&(n+="slot:"+e.slotTarget+","),e.scopedSlots&&(n+=Cr(e.scopedSlots,t)+","),e.model&&(n+="model:{value:"+e.model.value+",callback:"+e.model.callback+",expression:"+e.model.expression+"},"),e.inlineTemplate){var o=kr(e,t);o&&(n+=o+",")}return n=n.replace(/,$/,"")+"}",e.wrapData&&(n=e.wrapData(n)),e.wrapListeners&&(n=e.wrapListeners(n)),n}function wr(e,t){var n=e.directives;if(n){var i,r,o,a,l="directives:[",s=!1;for(i=0,r=n.length;i<r;i++){o=n[i],a=!0;var u=t.directives[o.name];u&&(a=!!u(e,o,t.warn)),a&&(s=!0,l+='{name:"'+o.name+'",rawName:"'+o.rawName+'"'+(o.value?",value:("+o.value+"),expression:"+JSON.stringify(o.value):"")+(o.arg?',arg:"'+o.arg+'"':"")+(o.modifiers?",modifiers:"+JSON.stringify(o.modifiers):"")+"},")}return s?l.slice(0,-1)+"]":void 0}}function kr(e,t){var n=e.children[0];if(1===n.type){var i=hr(n,t.options);return"inlineTemplate:{render:function(){"+i.render+"},staticRenderFns:["+i.staticRenderFns.map(function(e){return"function(){"+e+"}"}).join(",")+"]}"}}function Cr(e,t){return"scopedSlots:_u(["+Object.keys(e).map(function(n){return qr(n,e[n],t)}).join(",")+"])"}function qr(e,t,n){return t.for&&!t.forProcessed?Sr(e,t,n):"{key:"+e+",fn:function("+String(t.attrsMap.scope)+"){return "+("template"===t.tag?Or(t,n)||"void 0":mr(t,n))+"}}"}function Sr(e,t,n){var i=t.for,r=t.alias,o=t.iterator1?","+t.iterator1:"",a=t.iterator2?","+t.iterator2:"";return t.forProcessed=!0,"_l(("+i+"),function("+r+o+a+"){return "+qr(e,t,n)+"})"}function Or(e,t,n,i,r){var o=e.children;if(o.length){var a=o[0];if(1===o.length&&a.for&&"template"!==a.tag&&"slot"!==a.tag)return(i||mr)(a,t);var l=n?Mr(o,t.maybeComponent):0,s=r||Tr;return"["+o.map(function(e){return s(e,t)}).join(",")+"]"+(l?","+l:"")}}function Mr(e,t){for(var n=0,i=0;i<e.length;i++){var r=e[i];if(1===r.type){if(Er(r)||r.ifConditions&&r.ifConditions.some(function(e){return Er(e.block)})){n=2;break}(t(r)||r.ifConditions&&r.ifConditions.some(function(e){return t(e.block)}))&&(n=1)}}return n}function Er(e){return void 0!==e.for||"template"===e.tag||"slot"===e.tag}function Tr(e,t){return 1===e.type?mr(e,t):3===e.type&&e.isComment?Ar(e):Nr(e)}function Nr(e){return"_v("+(2===e.type?e.expression:$r(JSON.stringify(e.text)))+")"}function Ar(e){return"_e("+JSON.stringify(e.text)+")"}function Ir(e,t){var n=e.slotName||'"default"',i=Or(e,t),r="_t("+n+(i?","+i:""),o=e.attrs&&"{"+e.attrs.map(function(e){return Ur(e.name)+":"+e.value}).join(",")+"}",a=e.attrsMap["v-bind"];return!o&&!a||i||(r+=",null"),o&&(r+=","+o),a&&(r+=(o?"":",null")+","+a),r+")"}function Dr(e,t,n){var i=t.inlineTemplate?null:Or(t,n,!0);return"_c("+e+","+xr(t,n)+(i?","+i:"")+")"}function jr(e){for(var t="",n=0;n<e.length;n++){var i=e[n];t+='"'+i.name+'":'+$r(i.value)+","}return t.slice(0,-1)}function $r(e){return e.replace(/\u2028/g,"\\u2028").replace(/\u2029/g,"\\u2029")}function Pr(e,t){try{return new Function(e)}catch(n){return t.push({err:n,code:e}),x}}function Lr(e){var t=Object.create(null);return function(n,i,r){i=i||{};var o=i.delimiters?String(i.delimiters)+n:n;if(t[o])return t[o];var a=e(n,i),l={},s=[];return l.render=Pr(a.render,s),l.staticRenderFns=a.staticRenderFns.map(function(e){return Pr(e,s)}),t[o]=l}}function zr(e){if(e.outerHTML)return e.outerHTML;var t=document.createElement("div");return t.appendChild(e.cloneNode(!0)),t.innerHTML}var Rr=Object.prototype.toString,Br=p("slot,component",!0),Fr=p("key,ref,slot,is"),Vr=Object.prototype.hasOwnProperty,Hr=/-(\w)/g,Ur=v(function(e){return e.replace(Hr,function(e,t){return t?t.toUpperCase():""})}),Wr=v(function(e){return e.charAt(0).toUpperCase()+e.slice(1)}),Yr=/\B([A-Z])/g,Gr=v(function(e){return e.replace(Yr,"-$1").toLowerCase()}),Kr=function(e,t,n){return!1},Zr=function(e){return e},Qr="data-server-rendered",Xr=["component","directive","filter"],Jr=["beforeCreate","created","beforeMount","mounted","beforeUpdate","updated","beforeDestroy","destroyed","activated","deactivated"],eo={optionMergeStrategies:Object.create(null),silent:!1,productionTip:!1,devtools:!1,performance:!1,errorHandler:null,warnHandler:null,ignoredElements:[],keyCodes:Object.create(null),isReservedTag:Kr,isReservedAttr:Kr,isUnknownElement:Kr,getTagNamespace:x,parsePlatformTagName:Zr,mustUseProp:Kr,_lifecycleHooks:Jr},to=Object.freeze({}),no=/[^\w.$]/,io=x,ro="__proto__"in{},oo="undefined"!=typeof window,ao=oo&&window.navigator.userAgent.toLowerCase(),lo=ao&&/msie|trident/.test(ao),so=ao&&ao.indexOf("msie 9.0")>0,uo=ao&&ao.indexOf("edge/")>0,co=ao&&ao.indexOf("android")>0,fo=ao&&/iphone|ipad|ipod|ios/.test(ao),po=ao&&/chrome\/\d+/.test(ao)&&!uo,ho={}.watch,mo=!1;if(oo)try{var vo={};Object.defineProperty(vo,"passive",{get:function(){mo=!0}}),window.addEventListener("test-passive",null,vo)}catch(e){}var go,bo,yo=function(){return void 0===go&&(go=!oo&&void 0!==t&&"server"===t.process.env.VUE_ENV),go},_o=oo&&window.__VUE_DEVTOOLS_GLOBAL_HOOK__,xo="undefined"!=typeof Symbol&&E(Symbol)&&"undefined"!=typeof Reflect&&E(Reflect.ownKeys),wo=function(){function e(){i=!1;var e=n.slice(0);n.length=0;for(var t=0;t<e.length;t++)e[t]()}var t,n=[],i=!1;if("undefined"!=typeof Promise&&E(Promise)){var r=Promise.resolve(),o=function(e){};t=function(){r.then(e).catch(o),fo&&setTimeout(x)}}else if(lo||"undefined"==typeof MutationObserver||!E(MutationObserver)&&"[object MutationObserverConstructor]"!==MutationObserver.toString())t=function(){setTimeout(e,0)};else{var a=1,l=new MutationObserver(e),s=document.createTextNode(String(a));l.observe(s,{characterData:!0}),t=function(){a=(a+1)%2,s.data=String(a)}}return function(e,r){var o;if(n.push(function(){if(e)try{e.call(r)}catch(e){M(e,r,"nextTick")}else o&&o(r)}),i||(i=!0,t()),!e&&"undefined"!=typeof Promise)return new Promise(function(e,t){o=e})}}();bo="undefined"!=typeof Set&&E(Set)?Set:function(){function e(){this.set=Object.create(null)}return e.prototype.has=function(e){return!0===this.set[e]},e.prototype.add=function(e){this.set[e]=!0},e.prototype.clear=function(){this.set=Object.create(null)},e}();var ko=0,Co=function(){this.id=ko++,this.subs=[]};Co.prototype.addSub=function(e){this.subs.push(e)},Co.prototype.removeSub=function(e){h(this.subs,e)},Co.prototype.depend=function(){Co.target&&Co.target.addDep(this)},Co.prototype.notify=function(){for(var e=this.subs.slice(),t=0,n=e.length;t<n;t++)e[t].update()},Co.target=null;var qo=[],So=Array.prototype,Oo=Object.create(So);["push","pop","shift","unshift","splice","sort","reverse"].forEach(function(e){var t=So[e];S(Oo,e,function(){for(var n=[],i=arguments.length;i--;)n[i]=arguments[i];var r,o=t.apply(this,n),a=this.__ob__;switch(e){case"push":case"unshift":r=n;break;case"splice":r=n.slice(2)}return r&&a.observeArray(r),a.dep.notify(),o})});var Mo=Object.getOwnPropertyNames(Oo),Eo={shouldConvert:!0},To=function(e){if(this.value=e,this.dep=new Co,this.vmCount=0,S(e,"__ob__",this),Array.isArray(e)){(ro?A:I)(e,Oo,Mo),this.observeArray(e)}else this.walk(e)};To.prototype.walk=function(e){for(var t=Object.keys(e),n=0;n<t.length;n++)j(e,t[n],e[t[n]])},To.prototype.observeArray=function(e){for(var t=0,n=e.length;t<n;t++)D(e[t])};var No=eo.optionMergeStrategies;No.data=function(e,t,n){return n?R(e,t,n):t&&"function"!=typeof t?e:R.call(this,e,t)},Jr.forEach(function(e){No[e]=B}),Xr.forEach(function(e){No[e+"s"]=F}),No.watch=function(e,t){if(e===ho&&(e=void 0),t===ho&&(t=void 0),!t)return Object.create(e||null);if(!e)return t;var n={};y(n,e);for(var i in t){var r=n[i],o=t[i];r&&!Array.isArray(r)&&(r=[r]),n[i]=r?r.concat(o):Array.isArray(o)?o:[o]}return n},No.props=No.methods=No.inject=No.computed=function(e,t){if(!e)return t;var n=Object.create(null);return y(n,e),t&&y(n,t),n},No.provide=R;var Ao=function(e,t){return void 0===t?e:t},Io=function(e,t,n,i,r,o,a,l){this.tag=e,this.data=t,this.children=n,this.text=i,this.elm=r,this.ns=void 0,this.context=o,this.functionalContext=void 0,this.key=t&&t.key,this.componentOptions=a,this.componentInstance=void 0,this.parent=void 0,this.raw=!1,this.isStatic=!1,this.isRootInsert=!0,this.isComment=!1,this.isCloned=!1,this.isOnce=!1,this.asyncFactory=l,this.asyncMeta=void 0,this.isAsyncPlaceholder=!1},Do={child:{}};Do.child.get=function(){return this.componentInstance},Object.defineProperties(Io.prototype,Do);var jo,$o=function(e){void 0===e&&(e="");var t=new Io;return t.text=e,t.isComment=!0,t},Po=v(function(e){var t="&"===e.charAt(0);e=t?e.slice(1):e;var n="~"===e.charAt(0);e=n?e.slice(1):e;var i="!"===e.charAt(0);return e=i?e.slice(1):e,{name:e,plain:!(t||n||i),once:n,capture:i,passive:t}}),Lo=null,zo=[],Ro=[],Bo={},Fo=!1,Vo=!1,Ho=0,Uo=0,Wo=function(e,t,n,i){this.vm=e,e._watchers.push(this),i?(this.deep=!!i.deep,this.user=!!i.user,this.lazy=!!i.lazy,this.sync=!!i.sync):this.deep=this.user=this.lazy=this.sync=!1,this.cb=n,this.id=++Uo,this.active=!0,this.dirty=this.lazy,this.deps=[],this.newDeps=[],this.depIds=new bo,this.newDepIds=new bo,this.expression="","function"==typeof t?this.getter=t:(this.getter=O(t),this.getter||(this.getter=function(){})),this.value=this.lazy?void 0:this.get()};Wo.prototype.get=function(){T(this);var e,t=this.vm;try{e=this.getter.call(t,t)}catch(e){if(!this.user)throw e;M(e,t,'getter for watcher "'+this.expression+'"')}finally{this.deep&&$e(e),N(),this.cleanupDeps()}return e},Wo.prototype.addDep=function(e){var t=e.id;this.newDepIds.has(t)||(this.newDepIds.add(t),this.newDeps.push(e),this.depIds.has(t)||e.addSub(this))},Wo.prototype.cleanupDeps=function(){for(var e=this,t=this.deps.length;t--;){var n=e.deps[t];e.newDepIds.has(n.id)||n.removeSub(e)}var i=this.depIds;this.depIds=this.newDepIds,this.newDepIds=i,this.newDepIds.clear(),i=this.deps,this.deps=this.newDeps,this.newDeps=i,this.newDeps.length=0},Wo.prototype.update=function(){this.lazy?this.dirty=!0:this.sync?this.run():je(this)},Wo.prototype.run=function(){if(this.active){var e=this.get();if(e!==this.value||l(e)||this.deep){var t=this.value;if(this.value=e,this.user)try{this.cb.call(this.vm,e,t)}catch(e){M(e,this.vm,'callback for watcher "'+this.expression+'"')}else this.cb.call(this.vm,e,t)}}},Wo.prototype.evaluate=function(){this.value=this.get(),this.dirty=!1},Wo.prototype.depend=function(){for(var e=this,t=this.deps.length;t--;)e.deps[t].depend()},Wo.prototype.teardown=function(){var e=this;if(this.active){this.vm._isBeingDestroyed||h(this.vm._watchers,this);for(var t=this.deps.length;t--;)e.deps[t].removeSub(e);this.active=!1}};var Yo=new bo,Go={enumerable:!0,configurable:!0,get:x,set:x},Ko={lazy:!0},Zo={init:function(e,t,n,i){if(!e.componentInstance||e.componentInstance._isDestroyed){(e.componentInstance=tt(e,Lo,n,i)).$mount(t?e.elm:void 0,t)}else if(e.data.keepAlive){var r=e;Zo.prepatch(r,r)}},prepatch:function(e,t){var n=t.componentOptions;qe(t.componentInstance=e.componentInstance,n.propsData,n.listeners,t,n.children)},insert:function(e){var t=e.context,n=e.componentInstance;n._isMounted||(n._isMounted=!0,Ee(n,"mounted")),e.data.keepAlive&&(t._isMounted?Ie(n):Oe(n,!0))},destroy:function(e){var t=e.componentInstance;t._isDestroyed||(e.data.keepAlive?Me(t,!0):t.$destroy())}},Qo=Object.keys(Zo),Xo=1,Jo=2,ea=0;!function(e){e.prototype._init=function(e){var t=this;t._uid=ea++,t._isVue=!0,e&&e._isComponent?yt(t,e):t.$options=W(_t(t.constructor),e||{},t),t._renderProxy=t,t._self=t,ke(t),ve(t),bt(t),Ee(t,"beforeCreate"),Ze(t),ze(t),Ke(t),Ee(t,"created"),t.$options.el&&t.$mount(t.$options.el)}}(kt),function(e){var t={};t.get=function(){return this._data};var n={};n.get=function(){return this._props},Object.defineProperty(e.prototype,"$data",t),Object.defineProperty(e.prototype,"$props",n),e.prototype.$set=$,e.prototype.$delete=P,e.prototype.$watch=function(e,t,n){var i=this;if(s(t))return Ge(i,e,t,n);n=n||{},n.user=!0;var r=new Wo(i,e,t,n);return n.immediate&&t.call(i,r.value),function(){r.teardown()}}}(kt),function(e){var t=/^hook:/;e.prototype.$on=function(e,n){var i=this,r=this;if(Array.isArray(e))for(var o=0,a=e.length;o<a;o++)i.$on(e[o],n);else(r._events[e]||(r._events[e]=[])).push(n),t.test(e)&&(r._hasHookEvent=!0);return r},e.prototype.$once=function(e,t){function n(){i.$off(e,n),t.apply(i,arguments)}var i=this;return n.fn=t,i.$on(e,n),i},e.prototype.$off=function(e,t){var n=this,i=this;if(!arguments.length)return i._events=Object.create(null),i;if(Array.isArray(e)){for(var r=0,o=e.length;r<o;r++)n.$off(e[r],t);return i}var a=i._events[e];if(!a)return i;if(1===arguments.length)return i._events[e]=null,i;if(t)for(var l,s=a.length;s--;)if((l=a[s])===t||l.fn===t){a.splice(s,1);break}return i},e.prototype.$emit=function(e){var t=this,n=t._events[e];if(n){n=n.length>1?b(n):n;for(var i=b(arguments,1),r=0,o=n.length;r<o;r++)try{n[r].apply(t,i)}catch(n){M(n,t,'event handler for "'+e+'"')}}return t}}(kt),function(e){e.prototype._update=function(e,t){var n=this;n._isMounted&&Ee(n,"beforeUpdate");var i=n.$el,r=n._vnode,o=Lo;Lo=n,n._vnode=e,r?n.$el=n.__patch__(r,e):(n.$el=n.__patch__(n.$el,e,t,!1,n.$options._parentElm,n.$options._refElm),n.$options._parentElm=n.$options._refElm=null),Lo=o,i&&(i.__vue__=null),n.$el&&(n.$el.__vue__=n),n.$vnode&&n.$parent&&n.$vnode===n.$parent._vnode&&(n.$parent.$el=n.$el)},e.prototype.$forceUpdate=function(){var e=this;e._watcher&&e._watcher.update()},e.prototype.$destroy=function(){var e=this;if(!e._isBeingDestroyed){Ee(e,"beforeDestroy"),e._isBeingDestroyed=!0;var t=e.$parent;!t||t._isBeingDestroyed||e.$options.abstract||h(t.$children,e),e._watcher&&e._watcher.teardown();for(var n=e._watchers.length;n--;)e._watchers[n].teardown();e._data.__ob__&&e._data.__ob__.vmCount--,e._isDestroyed=!0,e.__patch__(e._vnode,null),Ee(e,"destroyed"),e.$off(),e.$el&&(e.$el.__vue__=null)}}}(kt),function(e){e.prototype.$nextTick=function(e){return wo(e,this)},e.prototype._render=function(){var e=this,t=e.$options,n=t.render,i=t.staticRenderFns,r=t._parentVnode;if(e._isMounted)for(var o in e.$slots){var a=e.$slots[o];a._rendered&&(e.$slots[o]=ee(a,!0))}e.$scopedSlots=r&&r.data.scopedSlots||to,i&&!e._staticTrees&&(e._staticTrees=[]),e.$vnode=r;var l;try{l=n.call(e._renderProxy,e.$createElement)}catch(t){M(t,e,"render function"),l=e._vnode}return l instanceof Io||(l=$o()),l.parent=r,l},e.prototype._o=ht,e.prototype._n=f,e.prototype._s=d,e.prototype._l=st,e.prototype._t=ut,e.prototype._q=w,e.prototype._i=k,e.prototype._m=pt,e.prototype._f=ct,e.prototype._k=dt,e.prototype._b=ft,e.prototype._v=X,e.prototype._e=$o,e.prototype._u=we,e.prototype._g=gt}(kt);var ta=[String,RegExp,Array],na={name:"keep-alive",abstract:!0,props:{include:ta,exclude:ta},created:function(){this.cache=Object.create(null)},destroyed:function(){var e=this;for(var t in e.cache)It(e.cache[t])},watch:{include:function(e){At(this.cache,this._vnode,function(t){return Nt(e,t)})},exclude:function(e){At(this.cache,this._vnode,function(t){return!Nt(e,t)})}},render:function(){var e=me(this.$slots.default),t=e&&e.componentOptions;if(t){var n=Tt(t);if(n&&(this.include&&!Nt(this.include,n)||this.exclude&&Nt(this.exclude,n)))return e;var i=null==e.key?t.Ctor.cid+(t.tag?"::"+t.tag:""):e.key;this.cache[i]?e.componentInstance=this.cache[i].componentInstance:this.cache[i]=e,e.data.keepAlive=!0}return e}},ia={KeepAlive:na};!function(e){var t={};t.get=function(){return eo},Object.defineProperty(e,"config",t),e.util={warn:io,extend:y,mergeOptions:W,defineReactive:j},e.set=$,e.delete=P,e.nextTick=wo,e.options=Object.create(null),Xr.forEach(function(t){e.options[t+"s"]=Object.create(null)}),e.options._base=e,y(e.options.components,ia),Ct(e),qt(e),St(e),Et(e)}(kt),Object.defineProperty(kt.prototype,"$isServer",{get:yo}),Object.defineProperty(kt.prototype,"$ssrContext",{get:function(){return this.$vnode&&this.$vnode.ssrContext}}),kt.version="2.4.4";var ra,oa,aa,la,sa,ua,ca,da,fa,pa=p("style,class"),ha=p("input,textarea,option,select,progress"),ma=function(e,t,n){return"value"===n&&ha(e)&&"button"!==t||"selected"===n&&"option"===e||"checked"===n&&"input"===e||"muted"===n&&"video"===e},va=p("contenteditable,draggable,spellcheck"),ga=p("allowfullscreen,async,autofocus,autoplay,checked,compact,controls,declare,default,defaultchecked,defaultmuted,defaultselected,defer,disabled,enabled,formnovalidate,hidden,indeterminate,inert,ismap,itemscope,loop,multiple,muted,nohref,noresize,noshade,novalidate,nowrap,open,pauseonexit,readonly,required,reversed,scoped,seamless,selected,sortable,translate,truespeed,typemustmatch,visible"),ba="http://www.w3.org/1999/xlink",ya=function(e){return":"===e.charAt(5)&&"xlink"===e.slice(0,5)},_a=function(e){return ya(e)?e.slice(6,e.length):""},xa=function(e){return null==e||!1===e},wa={svg:"http://www.w3.org/2000/svg",math:"http://www.w3.org/1998/Math/MathML"},ka=p("html,body,base,head,link,meta,style,title,address,article,aside,footer,header,h1,h2,h3,h4,h5,h6,hgroup,nav,section,div,dd,dl,dt,figcaption,figure,picture,hr,img,li,main,ol,p,pre,ul,a,b,abbr,bdi,bdo,br,cite,code,data,dfn,em,i,kbd,mark,q,rp,rt,rtc,ruby,s,samp,small,span,strong,sub,sup,time,u,var,wbr,area,audio,map,track,video,embed,object,param,source,canvas,script,noscript,del,ins,caption,col,colgroup,table,thead,tbody,td,th,tr,button,datalist,fieldset,form,input,label,legend,meter,optgroup,option,output,progress,select,textarea,details,dialog,menu,menuitem,summary,content,element,shadow,template,blockquote,iframe,tfoot"),Ca=p("svg,animate,circle,clippath,cursor,defs,desc,ellipse,filter,font-face,foreignObject,g,glyph,image,line,marker,mask,missing-glyph,path,pattern,polygon,polyline,rect,switch,symbol,text,textpath,tspan,use,view",!0),qa=function(e){return"pre"===e},Sa=function(e){return ka(e)||Ca(e)},Oa=Object.create(null),Ma=p("text,number,password,search,email,tel,url"),Ea=Object.freeze({createElement:Ht,createElementNS:Ut,createTextNode:Wt,createComment:Yt,insertBefore:Gt,removeChild:Kt,appendChild:Zt,parentNode:Qt,nextSibling:Xt,tagName:Jt,setTextContent:en,setAttribute:tn}),Ta={create:function(e,t){nn(t)},update:function(e,t){e.data.ref!==t.data.ref&&(nn(e,!0),nn(t))},destroy:function(e){nn(e,!0)}},Na=new Io("",{},[]),Aa=["create","activate","update","remove","destroy"],Ia={create:ln,update:ln,destroy:function(e){ln(e,Na)}},Da=Object.create(null),ja=[Ta,Ia],$a={create:fn,update:fn},Pa={create:hn,update:hn},La=/[\w).+\-_$\]]/,za="__r",Ra="__c",Ba={create:Bn,update:Bn},Fa={create:Fn,update:Fn},Va=v(function(e){var t={},n=/;(?![^(]*\))/g,i=/:(.+)/;return e.split(n).forEach(function(e){if(e){var n=e.split(i);n.length>1&&(t[n[0].trim()]=n[1].trim())}}),t}),Ha=/^--/,Ua=/\s*!important$/,Wa=function(e,t,n){if(Ha.test(t))e.style.setProperty(t,n);else if(Ua.test(n))e.style.setProperty(t,n.replace(Ua,""),"important");else{var i=Ga(t);if(Array.isArray(n))for(var r=0,o=n.length;r<o;r++)e.style[i]=n[r];else e.style[i]=n}},Ya=["Webkit","Moz","ms"],Ga=v(function(e){if(fa=fa||document.createElement("div").style,"filter"!==(e=Ur(e))&&e in fa)return e;for(var t=e.charAt(0).toUpperCase()+e.slice(1),n=0;n<Ya.length;n++){var i=Ya[n]+t;if(i in fa)return i}}),Ka={create:Kn,update:Kn},Za=v(function(e){return{enterClass:e+"-enter",enterToClass:e+"-enter-to",enterActiveClass:e+"-enter-active",leaveClass:e+"-leave",leaveToClass:e+"-leave-to",leaveActiveClass:e+"-leave-active"}}),Qa=oo&&!so,Xa="transition",Ja="animation",el="transition",tl="transitionend",nl="animation",il="animationend";Qa&&(void 0===window.ontransitionend&&void 0!==window.onwebkittransitionend&&(el="WebkitTransition",tl="webkitTransitionEnd"),void 0===window.onanimationend&&void 0!==window.onwebkitanimationend&&(nl="WebkitAnimation",il="webkitAnimationEnd"));var rl=oo&&window.requestAnimationFrame?window.requestAnimationFrame.bind(window):setTimeout,ol=/\b(transform|all)(,|$)/,al=oo?{create:ci,activate:ci,remove:function(e,t){!0!==e.data.show?li(e,t):t()}}:{},ll=[$a,Pa,Ba,Fa,Ka,al],sl=ll.concat(ja),ul=function(e){function t(e){return new Io(N.tagName(e).toLowerCase(),{},[],void 0,e)}function o(e,t){function n(){0==--n.listeners&&l(e)}return n.listeners=t,n}function l(e){var t=N.parentNode(e);i(t)&&N.removeChild(t,e)}function s(e,t,n,o,a){if(e.isRootInsert=!a,!u(e,t,n,o)){var l=e.data,s=e.children,c=e.tag;i(c)?(e.elm=e.ns?N.createElementNS(e.ns,c):N.createElement(c,e),g(e),h(e,s,t),i(l)&&v(e,t),f(n,e.elm,o)):r(e.isComment)?(e.elm=N.createComment(e.text),f(n,e.elm,o)):(e.elm=N.createTextNode(e.text),f(n,e.elm,o))}}function u(e,t,n,o){var a=e.data;if(i(a)){var l=i(e.componentInstance)&&a.keepAlive;if(i(a=a.hook)&&i(a=a.init)&&a(e,!1,n,o),i(e.componentInstance))return c(e,t),r(l)&&d(e,t,n,o),!0}}function c(e,t){i(e.data.pendingInsert)&&(t.push.apply(t,e.data.pendingInsert),e.data.pendingInsert=null),e.elm=e.componentInstance.$el,m(e)?(v(e,t),g(e)):(nn(e),t.push(e))}function d(e,t,n,r){for(var o,a=e;a.componentInstance;)if(a=a.componentInstance._vnode,i(o=a.data)&&i(o=o.transition)){for(o=0;o<E.activate.length;++o)E.activate[o](Na,a);t.push(a);break}f(n,e.elm,r)}function f(e,t,n){i(e)&&(i(n)?n.parentNode===e&&N.insertBefore(e,t,n):N.appendChild(e,t))}function h(e,t,n){if(Array.isArray(t))for(var i=0;i<t.length;++i)s(t[i],n,e.elm,null,!0);else a(e.text)&&N.appendChild(e.elm,N.createTextNode(e.text))}function m(e){for(;e.componentInstance;)e=e.componentInstance._vnode;return i(e.tag)}function v(e,t){for(var n=0;n<E.create.length;++n)E.create[n](Na,e);O=e.data.hook,i(O)&&(i(O.create)&&O.create(Na,e),i(O.insert)&&t.push(e))}function g(e){for(var t,n=e;n;)i(t=n.context)&&i(t=t.$options._scopeId)&&N.setAttribute(e.elm,t,""),n=n.parent;i(t=Lo)&&t!==e.context&&i(t=t.$options._scopeId)&&N.setAttribute(e.elm,t,"")}function b(e,t,n,i,r,o){for(;i<=r;++i)s(n[i],o,e,t)}function y(e){var t,n,r=e.data;if(i(r))for(i(t=r.hook)&&i(t=t.destroy)&&t(e),t=0;t<E.destroy.length;++t)E.destroy[t](e);if(i(t=e.children))for(n=0;n<e.children.length;++n)y(e.children[n])}function _(e,t,n,r){for(;n<=r;++n){var o=t[n];i(o)&&(i(o.tag)?(x(o),y(o)):l(o.elm))}}function x(e,t){if(i(t)||i(e.data)){var n,r=E.remove.length+1;for(i(t)?t.listeners+=r:t=o(e.elm,r),i(n=e.componentInstance)&&i(n=n._vnode)&&i(n.data)&&x(n,t),n=0;n<E.remove.length;++n)E.remove[n](e,t);i(n=e.data.hook)&&i(n=n.remove)?n(e,t):t()}else l(e.elm)}function w(e,t,r,o,a){for(var l,u,c,d,f=0,p=0,h=t.length-1,m=t[0],v=t[h],g=r.length-1,y=r[0],x=r[g],w=!a;f<=h&&p<=g;)n(m)?m=t[++f]:n(v)?v=t[--h]:rn(m,y)?(C(m,y,o),m=t[++f],y=r[++p]):rn(v,x)?(C(v,x,o),v=t[--h],x=r[--g]):rn(m,x)?(C(m,x,o),w&&N.insertBefore(e,m.elm,N.nextSibling(v.elm)),m=t[++f],x=r[--g]):rn(v,y)?(C(v,y,o),w&&N.insertBefore(e,v.elm,m.elm),v=t[--h],y=r[++p]):(n(l)&&(l=an(t,f,h)),u=i(y.key)?l[y.key]:k(y,t,f,h),n(u)?s(y,o,e,m.elm):(c=t[u],rn(c,y)?(C(c,y,o),t[u]=void 0,w&&N.insertBefore(e,c.elm,m.elm)):s(y,o,e,m.elm)),y=r[++p]);f>h?(d=n(r[g+1])?null:r[g+1].elm,b(e,d,r,p,g,o)):p>g&&_(e,t,f,h)}function k(e,t,n,r){for(var o=n;o<r;o++){var a=t[o];if(i(a)&&rn(e,a))return o}}function C(e,t,o,a){if(e!==t){var l=t.elm=e.elm;if(r(e.isAsyncPlaceholder))return void(i(t.asyncFactory.resolved)?S(e.elm,t,o):t.isAsyncPlaceholder=!0);if(r(t.isStatic)&&r(e.isStatic)&&t.key===e.key&&(r(t.isCloned)||r(t.isOnce)))return void(t.componentInstance=e.componentInstance);var s,u=t.data;i(u)&&i(s=u.hook)&&i(s=s.prepatch)&&s(e,t);var c=e.children,d=t.children;if(i(u)&&m(t)){for(s=0;s<E.update.length;++s)E.update[s](e,t);i(s=u.hook)&&i(s=s.update)&&s(e,t)}n(t.text)?i(c)&&i(d)?c!==d&&w(l,c,d,o,a):i(d)?(i(e.text)&&N.setTextContent(l,""),b(l,null,d,0,d.length-1,o)):i(c)?_(l,c,0,c.length-1):i(e.text)&&N.setTextContent(l,""):e.text!==t.text&&N.setTextContent(l,t.text),i(u)&&i(s=u.hook)&&i(s=s.postpatch)&&s(e,t)}}function q(e,t,n){if(r(n)&&i(e.parent))e.parent.data.pendingInsert=t;else for(var o=0;o<t.length;++o)t[o].data.hook.insert(t[o])}function S(e,t,n){if(r(t.isComment)&&i(t.asyncFactory))return t.elm=e,t.isAsyncPlaceholder=!0,!0;t.elm=e;var o=t.tag,a=t.data,l=t.children;if(i(a)&&(i(O=a.hook)&&i(O=O.init)&&O(t,!0),i(O=t.componentInstance)))return c(t,n),!0;if(i(o)){if(i(l))if(e.hasChildNodes())if(i(O=a)&&i(O=O.domProps)&&i(O=O.innerHTML)){if(O!==e.innerHTML)return!1}else{for(var s=!0,u=e.firstChild,d=0;d<l.length;d++){if(!u||!S(u,l[d],n)){s=!1;break}u=u.nextSibling}if(!s||u)return!1}else h(t,l,n);if(i(a))for(var f in a)if(!A(f)){v(t,n);break}}else e.data!==t.text&&(e.data=t.text);return!0}var O,M,E={},T=e.modules,N=e.nodeOps;for(O=0;O<Aa.length;++O)for(E[Aa[O]]=[],M=0;M<T.length;++M)i(T[M][Aa[O]])&&E[Aa[O]].push(T[M][Aa[O]]);var A=p("attrs,style,class,staticClass,staticStyle,key");return function(e,o,a,l,u,c){if(n(o))return void(i(e)&&y(e));var d=!1,f=[];if(n(e))d=!0,s(o,f,u,c);else{var p=i(e.nodeType);if(!p&&rn(e,o))C(e,o,f,l);else{if(p){if(1===e.nodeType&&e.hasAttribute(Qr)&&(e.removeAttribute(Qr),a=!0),r(a)&&S(e,o,f))return q(o,f,!0),e;e=t(e)}var h=e.elm,v=N.parentNode(h);if(s(o,f,h._leaveCb?null:v,N.nextSibling(h)),i(o.parent))for(var g=o.parent,b=m(o);g;){for(var x=0;x<E.destroy.length;++x)E.destroy[x](g);if(g.elm=o.elm,b){for(var w=0;w<E.create.length;++w)E.create[w](Na,g);var k=g.data.hook.insert;if(k.merged)for(var O=1;O<k.fns.length;O++)k.fns[O]()}g=g.parent}i(v)?_(v,[e],0,0):i(e.tag)&&y(e)}}return q(o,f,d),o.elm}}({nodeOps:Ea,modules:sl});so&&document.addEventListener("selectionchange",function(){var e=document.activeElement;e&&e.vmodel&&gi(e,"input")});var cl={inserted:function(e,t,n){"select"===n.tag?(di(e,t,n.context),e._vOptions=[].map.call(e.options,hi)):("textarea"===n.tag||Ma(e.type))&&(e._vModifiers=t.modifiers,t.modifiers.lazy||(e.addEventListener("change",vi),co||(e.addEventListener("compositionstart",mi),e.addEventListener("compositionend",vi)),so&&(e.vmodel=!0)))},componentUpdated:function(e,t,n){if("select"===n.tag){di(e,t,n.context);var i=e._vOptions,r=e._vOptions=[].map.call(e.options,hi);if(r.some(function(e,t){return!w(e,i[t])})){(e.multiple?t.value.some(function(e){return pi(e,r)}):t.value!==t.oldValue&&pi(t.value,r))&&gi(e,"change")}}}},dl={bind:function(e,t,n){var i=t.value;n=bi(n);var r=n.data&&n.data.transition,o=e.__vOriginalDisplay="none"===e.style.display?"":e.style.display;i&&r?(n.data.show=!0,ai(n,function(){e.style.display=o})):e.style.display=i?o:"none"},update:function(e,t,n){var i=t.value;i!==t.oldValue&&(n=bi(n),n.data&&n.data.transition?(n.data.show=!0,i?ai(n,function(){e.style.display=e.__vOriginalDisplay}):li(n,function(){e.style.display="none"})):e.style.display=i?e.__vOriginalDisplay:"none")},unbind:function(e,t,n,i,r){r||(e.style.display=e.__vOriginalDisplay)}},fl={model:cl,show:dl},pl={name:String,appear:Boolean,css:Boolean,mode:String,type:String,enterClass:String,leaveClass:String,enterToClass:String,leaveToClass:String,enterActiveClass:String,leaveActiveClass:String,appearClass:String,appearActiveClass:String,appearToClass:String,duration:[Number,String,Object]},hl={name:"transition",props:pl,abstract:!0,render:function(e){var t=this,n=this.$options._renderChildren;if(n&&(n=n.filter(function(e){return e.tag||he(e)}),n.length)){var i=this.mode,r=n[0];if(wi(this.$vnode))return r;var o=yi(r);if(!o)return r;if(this._leaving)return xi(e,r);var l="__transition-"+this._uid+"-";o.key=null==o.key?o.isComment?l+"comment":l+o.tag:a(o.key)?0===String(o.key).indexOf(l)?o.key:l+o.key:o.key;var s=(o.data||(o.data={})).transition=_i(this),u=this._vnode,c=yi(u);if(o.data.directives&&o.data.directives.some(function(e){return"show"===e.name})&&(o.data.show=!0),c&&c.data&&!ki(o,c)&&!he(c)){var d=c&&(c.data.transition=y({},s));if("out-in"===i)return this._leaving=!0,re(d,"afterLeave",function(){t._leaving=!1,t.$forceUpdate()}),xi(e,r);if("in-out"===i){if(he(o))return u;var f,p=function(){f()};re(s,"afterEnter",p),re(s,"enterCancelled",p),re(d,"delayLeave",function(e){f=e})}}return r}}},ml=y({tag:String,moveClass:String},pl);delete ml.mode;var vl={props:ml,render:function(e){for(var t=this.tag||this.$vnode.data.tag||"span",n=Object.create(null),i=this.prevChildren=this.children,r=this.$slots.default||[],o=this.children=[],a=_i(this),l=0;l<r.length;l++){var s=r[l];if(s.tag)if(null!=s.key&&0!==String(s.key).indexOf("__vlist"))o.push(s),n[s.key]=s,(s.data||(s.data={})).transition=a;else;}if(i){for(var u=[],c=[],d=0;d<i.length;d++){var f=i[d];f.data.transition=a,f.data.pos=f.elm.getBoundingClientRect(),n[f.key]?u.push(f):c.push(f)}this.kept=e(t,null,u),this.removed=c}return e(t,null,o)},beforeUpdate:function(){this.__patch__(this._vnode,this.kept,!1,!0),this._vnode=this.kept},updated:function(){var e=this.prevChildren,t=this.moveClass||(this.name||"v")+"-move";if(e.length&&this.hasMove(e[0].elm,t)){e.forEach(Ci),e.forEach(qi),e.forEach(Si);var n=document.body;n.offsetHeight;e.forEach(function(e){if(e.data.moved){var n=e.elm,i=n.style;ei(n,t),i.transform=i.WebkitTransform=i.transitionDuration="",n.addEventListener(tl,n._moveCb=function e(i){i&&!/transform$/.test(i.propertyName)||(n.removeEventListener(tl,e),n._moveCb=null,ti(n,t))})}})}},methods:{hasMove:function(e,t){if(!Qa)return!1;if(this._hasMove)return this._hasMove;var n=e.cloneNode();e._transitionClasses&&e._transitionClasses.forEach(function(e){Qn(n,e)}),Zn(n,t),n.style.display="none",this.$el.appendChild(n);var i=ii(n);return this.$el.removeChild(n),this._hasMove=i.hasTransform}}},gl={Transition:hl,TransitionGroup:vl};kt.config.mustUseProp=ma,kt.config.isReservedTag=Sa,kt.config.isReservedAttr=pa,kt.config.getTagNamespace=Bt,kt.config.isUnknownElement=Ft,y(kt.options.directives,fl),y(kt.options.components,gl),kt.prototype.__patch__=oo?ul:x,kt.prototype.$mount=function(e,t){return e=e&&oo?Vt(e):void 0,Ce(this,e,t)},setTimeout(function(){eo.devtools&&_o&&_o.emit("init",kt)},0);var bl,yl=!!oo&&function(e,t){var n=document.createElement("div");return n.innerHTML='<div a="'+e+'"/>',n.innerHTML.indexOf(t)>0}("\n","&#10;"),_l=/\{\{((?:.|\n)+?)\}\}/g,xl=/[-.*+?^${}()|[\]\/\\]/g,wl=v(function(e){var t=e[0].replace(xl,"\\$&"),n=e[1].replace(xl,"\\$&");return new RegExp(t+"((?:.|\\n)+?)"+n,"g")}),kl={staticKeys:["staticClass"],transformNode:Mi,genData:Ei},Cl={staticKeys:["staticStyle"],transformNode:Ti,genData:Ni},ql=[kl,Cl],Sl={model:In,text:Ai,html:Ii},Ol=p("area,base,br,col,embed,frame,hr,img,input,isindex,keygen,link,meta,param,source,track,wbr"),Ml=p("colgroup,dd,dt,li,options,p,td,tfoot,th,thead,tr,source"),El=p("address,article,aside,base,blockquote,body,caption,col,colgroup,dd,details,dialog,div,dl,dt,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,head,header,hgroup,hr,html,legend,li,menuitem,meta,optgroup,option,param,rp,rt,source,style,summary,tbody,td,tfoot,th,thead,title,tr,track"),Tl={expectHTML:!0,modules:ql,directives:Sl,isPreTag:qa,isUnaryTag:Ol,mustUseProp:ma,canBeLeftOpenTag:Ml,isReservedTag:Sa,getTagNamespace:Bt,staticKeys:function(e){return e.reduce(function(e,t){return e.concat(t.staticKeys||[])},[]).join(",")}(ql)},Nl={decode:function(e){return bl=bl||document.createElement("div"),bl.innerHTML=e,bl.textContent}},Al=/^\s*([^\s"'<>\/=]+)(?:\s*(=)\s*(?:"([^"]*)"+|'([^']*)'+|([^\s"'=<>`]+)))?/,Il="[a-zA-Z_][\\w\\-\\.]*",Dl="((?:"+Il+"\\:)?"+Il+")",jl=new RegExp("^<"+Dl),$l=/^\s*(\/?)>/,Pl=new RegExp("^<\\/"+Dl+"[^>]*>"),Ll=/^<!DOCTYPE [^>]+>/i,zl=/^<!--/,Rl=/^<!\[/,Bl=!1;"x".replace(/x(.)?/g,function(e,t){Bl=""===t});var Fl,Vl,Hl,Ul,Wl,Yl,Gl,Kl,Zl,Ql,Xl=p("script,style,textarea",!0),Jl={},es={"&lt;":"<","&gt;":">","&quot;":'"',"&amp;":"&","&#10;":"\n"},ts=/&(?:lt|gt|quot|amp);/g,ns=/&(?:lt|gt|quot|amp|#10);/g,is=p("pre,textarea",!0),rs=function(e,t){return e&&is(e)&&"\n"===t[0]},os=/^@|^v-on:/,as=/^v-|^@|^:/,ls=/(.*?)\s+(?:in|of)\s+(.*)/,ss=/\((\{[^}]*\}|[^,]*),([^,]*)(?:,([^,]*))?\)/,us=/:(.*)$/,cs=/^:|^v-bind:/,ds=/\.[^.]+/g,fs=v(Nl.decode),ps=/^xmlns:NS\d+/,hs=/^NS\d+:/,ms=v(ir),vs=/^\s*([\w$_]+|\([^)]*?\))\s*=>|^function\s*\(/,gs=/^\s*[A-Za-z_$][\w$]*(?:\.[A-Za-z_$][\w$]*|\['.*?']|\[".*?"]|\[\d+]|\[[A-Za-z_$][\w$]*])*\s*$/,bs={esc:27,tab:9,enter:13,space:32,up:38,left:37,right:39,down:40,delete:[8,46]},ys=function(e){return"if("+e+")return null;"},_s={stop:"$event.stopPropagation();",prevent:"$event.preventDefault();",self:ys("$event.target !== $event.currentTarget"),ctrl:ys("!$event.ctrlKey"),shift:ys("!$event.shiftKey"),alt:ys("!$event.altKey"),meta:ys("!$event.metaKey"),left:ys("'button' in $event && $event.button !== 0"),middle:ys("'button' in $event && $event.button !== 1"),right:ys("'button' in $event && $event.button !== 2")},xs={on:fr,bind:pr,cloak:x},ws=function(e){this.options=e,this.warn=e.warn||gn,this.transforms=bn(e.modules,"transformCode"),this.dataGenFns=bn(e.modules,"genData"),this.directives=y(y({},xs),e.directives);var t=e.isReservedTag||Kr;this.maybeComponent=function(e){return!t(e.tag)},this.onceId=0,this.staticRenderFns=[]},ks=(new RegExp("\\b"+"do,if,for,let,new,try,var,case,else,with,await,break,catch,class,const,super,throw,while,yield,delete,export,import,return,switch,default,extends,finally,continue,debugger,function,arguments".split(",").join("\\b|\\b")+"\\b"),new RegExp("\\b"+"delete,typeof,void".split(",").join("\\s*\\([^\\)]*\\)|\\b")+"\\s*\\([^\\)]*\\)"),function(e){return function(t){function n(n,i){var r=Object.create(t),o=[],a=[];if(r.warn=function(e,t){(t?a:o).push(e)},i){i.modules&&(r.modules=(t.modules||[]).concat(i.modules)),i.directives&&(r.directives=y(Object.create(t.directives),i.directives));for(var l in i)"modules"!==l&&"directives"!==l&&(r[l]=i[l])}var s=e(n,r);return s.errors=o,s.tips=a,s}return{compile:n,compileToFunctions:Lr(n)}}}(function(e,t){var n=$i(e.trim(),t);nr(n,t);var i=hr(n,t);return{ast:n,render:i.render,staticRenderFns:i.staticRenderFns}})),Cs=ks(Tl),qs=Cs.compileToFunctions,Ss=v(function(e){var t=Vt(e);return t&&t.innerHTML}),Os=kt.prototype.$mount;kt.prototype.$mount=function(e,t){if((e=e&&Vt(e))===document.body||e===document.documentElement)return this;var n=this.$options;if(!n.render){var i=n.template;if(i)if("string"==typeof i)"#"===i.charAt(0)&&(i=Ss(i));else{if(!i.nodeType)return this;i=i.innerHTML}else e&&(i=zr(e));if(i){var r=qs(i,{shouldDecodeNewlines:yl,delimiters:n.delimiters,comments:n.comments},this),o=r.render,a=r.staticRenderFns;n.render=o,n.staticRenderFns=a}}return Os.call(this,e,t)},kt.compile=qs,e.exports=kt}).call(t,n(10))},function(e,t,n){function i(e){for(var t=0;t<e.length;t++){var n=e[t],i=c[n.id];if(i){i.refs++;for(var r=0;r<i.parts.length;r++)i.parts[r](n.parts[r]);for(;r<n.parts.length;r++)i.parts.push(o(n.parts[r]));i.parts.length>n.parts.length&&(i.parts.length=n.parts.length)}else{for(var a=[],r=0;r<n.parts.length;r++)a.push(o(n.parts[r]));c[n.id]={id:n.id,refs:1,parts:a}}}}function r(){var e=document.createElement("style");return e.type="text/css",d.appendChild(e),e}function o(e){var t,n,i=document.querySelector('style[data-vue-ssr-id~="'+e.id+'"]');if(i){if(h)return m;i.parentNode.removeChild(i)}if(v){var o=p++;i=f||(f=r()),t=a.bind(null,i,o,!1),n=a.bind(null,i,o,!0)}else i=r(),t=l.bind(null,i),n=function(){i.parentNode.removeChild(i)};return t(e),function(i){if(i){if(i.css===e.css&&i.media===e.media&&i.sourceMap===e.sourceMap)return;t(e=i)}else n()}}function a(e,t,n,i){var r=n?"":i.css;if(e.styleSheet)e.styleSheet.cssText=g(t,r);else{var o=document.createTextNode(r),a=e.childNodes;a[t]&&e.removeChild(a[t]),a.length?e.insertBefore(o,a[t]):e.appendChild(o)}}function l(e,t){var n=t.css,i=t.media,r=t.sourceMap;if(i&&e.setAttribute("media",i),r&&(n+="\n/*# sourceURL="+r.sources[0]+" */",n+="\n/*# sourceMappingURL=data:application/json;base64,"+btoa(unescape(encodeURIComponent(JSON.stringify(r))))+" */"),e.styleSheet)e.styleSheet.cssText=n;else{for(;e.firstChild;)e.removeChild(e.firstChild);e.appendChild(document.createTextNode(n))}}var s="undefined"!=typeof document;if("undefined"!=typeof DEBUG&&DEBUG&&!s)throw new Error("vue-style-loader cannot be used in a non-browser environment. Use { target: 'node' } in your Webpack config to indicate a server-rendering environment.");var u=n(52),c={},d=s&&(document.head||document.getElementsByTagName("head")[0]),f=null,p=0,h=!1,m=function(){},v="undefined"!=typeof navigator&&/msie [6-9]\b/.test(navigator.userAgent.toLowerCase());e.exports=function(e,t,n){h=n;var r=u(e,t);return i(r),function(t){for(var n=[],o=0;o<r.length;o++){var a=r[o],l=c[a.id];l.refs--,n.push(l)}t?(r=u(e,t),i(r)):r=[];for(var o=0;o<n.length;o++){var l=n[o];if(0===l.refs){for(var s=0;s<l.parts.length;s++)l.parts[s]();delete c[l.id]}}}};var g=function(){var e=[];return function(t,n){return e[t]=n,e.filter(Boolean).join("\n")}}()},function(e,t,n){"use strict";function i(e,t){if(!e||!t)return!1;if(-1!==t.indexOf(" "))throw new Error("className should not contain space.");return e.classList?e.classList.contains(t):(" "+e.className+" ").indexOf(" "+t+" ")>-1}function r(e,t){if(e){for(var n=e.className,r=(t||"").split(" "),o=0,a=r.length;o<a;o++){var l=r[o];l&&(e.classList?e.classList.add(l):i(e,l)||(n+=" "+l))}e.classList||(e.className=n)}}function o(e,t){if(e&&t){for(var n=t.split(" "),r=" "+e.className+" ",o=0,a=n.length;o<a;o++){var l=n[o];l&&(e.classList?e.classList.remove(l):i(e,l)&&(r=r.replace(" "+l+" "," ")))}e.classList||(e.className=h(r))}}function a(e,t,n){if(e&&t)if("object"===(void 0===t?"undefined":l(t)))for(var i in t)t.hasOwnProperty(i)&&a(e,i,t[i]);else t=m(t),"opacity"===t&&p<9?e.style.filter=isNaN(n)?"":"alpha(opacity="+100*n+")":e.style[t]=n}t.__esModule=!0,t.getStyle=t.once=t.off=t.on=void 0;var l="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};t.hasClass=i,t.addClass=r,t.removeClass=o,t.setStyle=a;var s=n(5),u=function(e){return e&&e.__esModule?e:{default:e}}(s),c=u.default.prototype.$isServer,d=/([\:\-\_]+(.))/g,f=/^moz([A-Z])/,p=c?0:Number(document.documentMode),h=function(e){return(e||"").replace(/^[\s\uFEFF]+|[\s\uFEFF]+$/g,"")},m=function(e){return e.replace(d,function(e,t,n,i){return i?n.toUpperCase():n}).replace(f,"Moz$1")},v=t.on=function(){return!c&&document.addEventListener?function(e,t,n){e&&t&&n&&e.addEventListener(t,n,!1)}:function(e,t,n){e&&t&&n&&e.attachEvent("on"+t,n)}}(),g=t.off=function(){return!c&&document.removeEventListener?function(e,t,n){e&&t&&e.removeEventListener(t,n,!1)}:function(e,t,n){e&&t&&e.detachEvent("on"+t,n)}}();t.once=function(e,t,n){v(e,t,function i(){n&&n.apply(this,arguments),g(e,t,i)})},t.getStyle=p<9?function(e,t){if(!c){if(!e||!t)return null;t=m(t),"float"===t&&(t="styleFloat");try{switch(t){case"opacity":try{return e.filters.item("alpha").opacity/100}catch(e){return 1}default:return e.style[t]||e.currentStyle?e.currentStyle[t]:null}}catch(n){return e.style[t]}}}:function(e,t){if(!c){if(!e||!t)return null;t=m(t),"float"===t&&(t="cssFloat");try{var n=document.defaultView.getComputedStyle(e,"");return e.style[t]||n?n[t]:null}catch(n){return e.style[t]}}}},function(e,t,n){"use strict";function i(e,t,n){this.$children.forEach(function(r){r.$options.componentName===e?r.$emit.apply(r,[t].concat(n)):i.apply(r,[e,t].concat([n]))})}t.__esModule=!0,t.default={methods:{dispatch:function(e,t,n){for(var i=this.$parent||this.$root,r=i.$options.componentName;i&&(!r||r!==e);)(i=i.$parent)&&(r=i.$options.componentName);i&&i.$emit.apply(i,[t].concat(n))},broadcast:function(e,t,n){i.call(this,e,t,n)}}}},function(e,t,n){"use strict";function i(e,t){return a.call(e,t)}function r(e,t){for(var n in t)e[n]=t[n];return e}function o(e){for(var t={},n=0;n<e.length;n++)e[n]&&r(t,e[n]);return t}t.__esModule=!0,t.hasOwn=i,t.toObject=o;var a=Object.prototype.hasOwnProperty;t.getValueByPath=function(e,t){t=t||"";for(var n=t.split("."),i=e,r=null,o=0,a=n.length;o<a;o++){var l=n[o];if(!i)break;if(o===a-1){r=i[l];break}i=i[l]}return r}},function(e,t){var n;n=function(){return this}();try{n=n||Function("return this")()||(0,eval)("this")}catch(e){"object"==typeof window&&(n=window)}e.exports=n},function(e,t,n){"use strict";function i(e){return e&&e.__esModule?e:{default:e}}t.__esModule=!0,t.i18n=t.use=t.t=void 0;var r=n(86),o=i(r),a=n(5),l=i(a),s=n(87),u=i(s),c=n(88),d=i(c),f=(0,d.default)(l.default),p=o.default,h=!1,m=function(){var e=Object.getPrototypeOf(this||l.default).$t;if("function"==typeof e&&l.default.locale)return h||(h=!0,l.default.locale(l.default.config.lang,(0,u.default)(p,l.default.locale(l.default.config.lang)||{},{clone:!0}))),e.apply(this,arguments)},v=t.t=function(e,t){var n=m.apply(this,arguments);if(null!==n&&void 0!==n)return n;for(var i=e.split("."),r=p,o=0,a=i.length;o<a;o++){if(n=r[i[o]],o===a-1)return f(n,t);if(!n)return"";r=n}return""},g=t.use=function(e){p=e||p},b=t.i18n=function(e){m=e||m};t.default={use:g,t:v,i18n:b}},function(e,t,n){var i=n(30);e.exports=function(e,t,n){return void 0===n?i(e,t,!1):i(e,n,!1!==t)}},function(e,t,n){(function(e,i){var r;(function(){function o(e,t){return e.set(t[0],t[1]),e}function a(e,t){return e.add(t),e}function l(e,t,n){switch(n.length){case 0:return e.call(t);case 1:return e.call(t,n[0]);case 2:return e.call(t,n[0],n[1]);case 3:return e.call(t,n[0],n[1],n[2])}return e.apply(t,n)}function s(e,t,n,i){for(var r=-1,o=null==e?0:e.length;++r<o;){var a=e[r];t(i,a,n(a),e)}return i}function u(e,t){for(var n=-1,i=null==e?0:e.length;++n<i&&!1!==t(e[n],n,e););return e}function c(e,t){for(var n=null==e?0:e.length;n--&&!1!==t(e[n],n,e););return e}function d(e,t){for(var n=-1,i=null==e?0:e.length;++n<i;)if(!t(e[n],n,e))return!1;return!0}function f(e,t){for(var n=-1,i=null==e?0:e.length,r=0,o=[];++n<i;){var a=e[n];t(a,n,e)&&(o[r++]=a)}return o}function p(e,t){return!!(null==e?0:e.length)&&C(e,t,0)>-1}function h(e,t,n){for(var i=-1,r=null==e?0:e.length;++i<r;)if(n(t,e[i]))return!0;return!1}function m(e,t){for(var n=-1,i=null==e?0:e.length,r=Array(i);++n<i;)r[n]=t(e[n],n,e);return r}function v(e,t){for(var n=-1,i=t.length,r=e.length;++n<i;)e[r+n]=t[n];return e}function g(e,t,n,i){var r=-1,o=null==e?0:e.length;for(i&&o&&(n=e[++r]);++r<o;)n=t(n,e[r],r,e);return n}function b(e,t,n,i){var r=null==e?0:e.length;for(i&&r&&(n=e[--r]);r--;)n=t(n,e[r],r,e);return n}function y(e,t){for(var n=-1,i=null==e?0:e.length;++n<i;)if(t(e[n],n,e))return!0;return!1}function _(e){return e.split("")}function x(e){return e.match(Rt)||[]}function w(e,t,n){var i;return n(e,function(e,n,r){if(t(e,n,r))return i=n,!1}),i}function k(e,t,n,i){for(var r=e.length,o=n+(i?1:-1);i?o--:++o<r;)if(t(e[o],o,e))return o;return-1}function C(e,t,n){return t===t?Q(e,t,n):k(e,S,n)}function q(e,t,n,i){for(var r=n-1,o=e.length;++r<o;)if(i(e[r],t))return r;return-1}function S(e){return e!==e}function O(e,t){var n=null==e?0:e.length;return n?A(e,t)/n:je}function M(e){return function(t){return null==t?re:t[e]}}function E(e){return function(t){return null==e?re:e[t]}}function T(e,t,n,i,r){return r(e,function(e,r,o){n=i?(i=!1,e):t(n,e,r,o)}),n}function N(e,t){var n=e.length;for(e.sort(t);n--;)e[n]=e[n].value;return e}function A(e,t){for(var n,i=-1,r=e.length;++i<r;){var o=t(e[i]);o!==re&&(n=n===re?o:n+o)}return n}function I(e,t){for(var n=-1,i=Array(e);++n<e;)i[n]=t(n);return i}function D(e,t){return m(t,function(t){return[t,e[t]]})}function j(e){return function(t){return e(t)}}function $(e,t){return m(t,function(t){return e[t]})}function P(e,t){return e.has(t)}function L(e,t){for(var n=-1,i=e.length;++n<i&&C(t,e[n],0)>-1;);return n}function z(e,t){for(var n=e.length;n--&&C(t,e[n],0)>-1;);return n}function R(e,t){for(var n=e.length,i=0;n--;)e[n]===t&&++i;return i}function B(e){return"\\"+Mn[e]}function F(e,t){return null==e?re:e[t]}function V(e){return yn.test(e)}function H(e){return _n.test(e)}function U(e){for(var t,n=[];!(t=e.next()).done;)n.push(t.value);return n}function W(e){var t=-1,n=Array(e.size);return e.forEach(function(e,i){n[++t]=[i,e]}),n}function Y(e,t){return function(n){return e(t(n))}}function G(e,t){for(var n=-1,i=e.length,r=0,o=[];++n<i;){var a=e[n];a!==t&&a!==ce||(e[n]=ce,o[r++]=n)}return o}function K(e){var t=-1,n=Array(e.size);return e.forEach(function(e){n[++t]=e}),n}function Z(e){var t=-1,n=Array(e.size);return e.forEach(function(e){n[++t]=[e,e]}),n}function Q(e,t,n){for(var i=n-1,r=e.length;++i<r;)if(e[i]===t)return i;return-1}function X(e,t,n){for(var i=n+1;i--;)if(e[i]===t)return i;return i}function J(e){return V(e)?te(e):Un(e)}function ee(e){return V(e)?ne(e):_(e)}function te(e){for(var t=gn.lastIndex=0;gn.test(e);)++t;return t}function ne(e){return e.match(gn)||[]}function ie(e){return e.match(bn)||[]}var re,oe=200,ae="Unsupported core-js use. Try https://npms.io/search?q=ponyfill.",le="Expected a function",se="__lodash_hash_undefined__",ue=500,ce="__lodash_placeholder__",de=1,fe=2,pe=4,he=1,me=2,ve=1,ge=2,be=4,ye=8,_e=16,xe=32,we=64,ke=128,Ce=256,qe=512,Se=30,Oe="...",Me=800,Ee=16,Te=1,Ne=2,Ae=1/0,Ie=9007199254740991,De=1.7976931348623157e308,je=NaN,$e=4294967295,Pe=$e-1,Le=$e>>>1,ze=[["ary",ke],["bind",ve],["bindKey",ge],["curry",ye],["curryRight",_e],["flip",qe],["partial",xe],["partialRight",we],["rearg",Ce]],Re="[object Arguments]",Be="[object Array]",Fe="[object AsyncFunction]",Ve="[object Boolean]",He="[object Date]",Ue="[object DOMException]",We="[object Error]",Ye="[object Function]",Ge="[object GeneratorFunction]",Ke="[object Map]",Ze="[object Number]",Qe="[object Null]",Xe="[object Object]",Je="[object Proxy]",et="[object RegExp]",tt="[object Set]",nt="[object String]",it="[object Symbol]",rt="[object Undefined]",ot="[object WeakMap]",at="[object WeakSet]",lt="[object ArrayBuffer]",st="[object DataView]",ut="[object Float32Array]",ct="[object Float64Array]",dt="[object Int8Array]",ft="[object Int16Array]",pt="[object Int32Array]",ht="[object Uint8Array]",mt="[object Uint8ClampedArray]",vt="[object Uint16Array]",gt="[object Uint32Array]",bt=/\b__p \+= '';/g,yt=/\b(__p \+=) '' \+/g,_t=/(__e\(.*?\)|\b__t\)) \+\n'';/g,xt=/&(?:amp|lt|gt|quot|#39);/g,wt=/[&<>"']/g,kt=RegExp(xt.source),Ct=RegExp(wt.source),qt=/<%-([\s\S]+?)%>/g,St=/<%([\s\S]+?)%>/g,Ot=/<%=([\s\S]+?)%>/g,Mt=/\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/,Et=/^\w*$/,Tt=/^\./,Nt=/[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g,At=/[\\^$.*+?()[\]{}|]/g,It=RegExp(At.source),Dt=/^\s+|\s+$/g,jt=/^\s+/,$t=/\s+$/,Pt=/\{(?:\n\/\* \[wrapped with .+\] \*\/)?\n?/,Lt=/\{\n\/\* \[wrapped with (.+)\] \*/,zt=/,? & /,Rt=/[^\x00-\x2f\x3a-\x40\x5b-\x60\x7b-\x7f]+/g,Bt=/\\(\\)?/g,Ft=/\$\{([^\\}]*(?:\\.[^\\}]*)*)\}/g,Vt=/\w*$/,Ht=/^[-+]0x[0-9a-f]+$/i,Ut=/^0b[01]+$/i,Wt=/^\[object .+?Constructor\]$/,Yt=/^0o[0-7]+$/i,Gt=/^(?:0|[1-9]\d*)$/,Kt=/[\xc0-\xd6\xd8-\xf6\xf8-\xff\u0100-\u017f]/g,Zt=/($^)/,Qt=/['\n\r\u2028\u2029\\]/g,Xt="\\u0300-\\u036f\\ufe20-\\ufe2f\\u20d0-\\u20ff",Jt="\\xac\\xb1\\xd7\\xf7\\x00-\\x2f\\x3a-\\x40\\x5b-\\x60\\x7b-\\xbf\\u2000-\\u206f \\t\\x0b\\f\\xa0\\ufeff\\n\\r\\u2028\\u2029\\u1680\\u180e\\u2000\\u2001\\u2002\\u2003\\u2004\\u2005\\u2006\\u2007\\u2008\\u2009\\u200a\\u202f\\u205f\\u3000",en="["+Jt+"]",tn="["+Xt+"]",nn="[a-z\\xdf-\\xf6\\xf8-\\xff]",rn="[^\\ud800-\\udfff"+Jt+"\\d+\\u2700-\\u27bfa-z\\xdf-\\xf6\\xf8-\\xffA-Z\\xc0-\\xd6\\xd8-\\xde]",on="\\ud83c[\\udffb-\\udfff]",an="(?:\\ud83c[\\udde6-\\uddff]){2}",ln="[\\ud800-\\udbff][\\udc00-\\udfff]",sn="[A-Z\\xc0-\\xd6\\xd8-\\xde]",un="(?:"+nn+"|"+rn+")",cn="(?:[\\u0300-\\u036f\\ufe20-\\ufe2f\\u20d0-\\u20ff]|\\ud83c[\\udffb-\\udfff])?",dn="(?:\\u200d(?:"+["[^\\ud800-\\udfff]",an,ln].join("|")+")[\\ufe0e\\ufe0f]?"+cn+")*",fn="[\\ufe0e\\ufe0f]?"+cn+dn,pn="(?:"+["[\\u2700-\\u27bf]",an,ln].join("|")+")"+fn,hn="(?:"+["[^\\ud800-\\udfff]"+tn+"?",tn,an,ln,"[\\ud800-\\udfff]"].join("|")+")",mn=RegExp("['’]","g"),vn=RegExp(tn,"g"),gn=RegExp(on+"(?="+on+")|"+hn+fn,"g"),bn=RegExp([sn+"?"+nn+"+(?:['’](?:d|ll|m|re|s|t|ve))?(?="+[en,sn,"$"].join("|")+")","(?:[A-Z\\xc0-\\xd6\\xd8-\\xde]|[^\\ud800-\\udfff\\xac\\xb1\\xd7\\xf7\\x00-\\x2f\\x3a-\\x40\\x5b-\\x60\\x7b-\\xbf\\u2000-\\u206f \\t\\x0b\\f\\xa0\\ufeff\\n\\r\\u2028\\u2029\\u1680\\u180e\\u2000\\u2001\\u2002\\u2003\\u2004\\u2005\\u2006\\u2007\\u2008\\u2009\\u200a\\u202f\\u205f\\u3000\\d+\\u2700-\\u27bfa-z\\xdf-\\xf6\\xf8-\\xffA-Z\\xc0-\\xd6\\xd8-\\xde])+(?:['’](?:D|LL|M|RE|S|T|VE))?(?="+[en,sn+un,"$"].join("|")+")",sn+"?"+un+"+(?:['’](?:d|ll|m|re|s|t|ve))?",sn+"+(?:['’](?:D|LL|M|RE|S|T|VE))?","\\d*(?:(?:1ST|2ND|3RD|(?![123])\\dTH)\\b)","\\d*(?:(?:1st|2nd|3rd|(?![123])\\dth)\\b)","\\d+",pn].join("|"),"g"),yn=RegExp("[\\u200d\\ud800-\\udfff"+Xt+"\\ufe0e\\ufe0f]"),_n=/[a-z][A-Z]|[A-Z]{2,}[a-z]|[0-9][a-zA-Z]|[a-zA-Z][0-9]|[^a-zA-Z0-9 ]/,xn=["Array","Buffer","DataView","Date","Error","Float32Array","Float64Array","Function","Int8Array","Int16Array","Int32Array","Map","Math","Object","Promise","RegExp","Set","String","Symbol","TypeError","Uint8Array","Uint8ClampedArray","Uint16Array","Uint32Array","WeakMap","_","clearTimeout","isFinite","parseInt","setTimeout"],wn=-1,kn={};kn[ut]=kn[ct]=kn[dt]=kn[ft]=kn[pt]=kn[ht]=kn[mt]=kn[vt]=kn[gt]=!0,kn[Re]=kn[Be]=kn[lt]=kn[Ve]=kn[st]=kn[He]=kn[We]=kn[Ye]=kn[Ke]=kn[Ze]=kn[Xe]=kn[et]=kn[tt]=kn[nt]=kn[ot]=!1;var Cn={};Cn[Re]=Cn[Be]=Cn[lt]=Cn[st]=Cn[Ve]=Cn[He]=Cn[ut]=Cn[ct]=Cn[dt]=Cn[ft]=Cn[pt]=Cn[Ke]=Cn[Ze]=Cn[Xe]=Cn[et]=Cn[tt]=Cn[nt]=Cn[it]=Cn[ht]=Cn[mt]=Cn[vt]=Cn[gt]=!0,Cn[We]=Cn[Ye]=Cn[ot]=!1;var qn={"À":"A","Á":"A","Â":"A","Ã":"A","Ä":"A","Å":"A","à":"a","á":"a","â":"a","ã":"a","ä":"a","å":"a","Ç":"C","ç":"c","Ð":"D","ð":"d","È":"E","É":"E","Ê":"E","Ë":"E","è":"e","é":"e","ê":"e","ë":"e","Ì":"I","Í":"I","Î":"I","Ï":"I","ì":"i","í":"i","î":"i","ï":"i","Ñ":"N","ñ":"n","Ò":"O","Ó":"O","Ô":"O","Õ":"O","Ö":"O","Ø":"O","ò":"o","ó":"o","ô":"o","õ":"o","ö":"o","ø":"o","Ù":"U","Ú":"U","Û":"U","Ü":"U","ù":"u","ú":"u","û":"u","ü":"u","Ý":"Y","ý":"y","ÿ":"y","Æ":"Ae","æ":"ae","Þ":"Th","þ":"th","ß":"ss","Ā":"A","Ă":"A","Ą":"A","ā":"a","ă":"a","ą":"a","Ć":"C","Ĉ":"C","Ċ":"C","Č":"C","ć":"c","ĉ":"c","ċ":"c","č":"c","Ď":"D","Đ":"D","ď":"d","đ":"d","Ē":"E","Ĕ":"E","Ė":"E","Ę":"E","Ě":"E","ē":"e","ĕ":"e","ė":"e","ę":"e","ě":"e","Ĝ":"G","Ğ":"G","Ġ":"G","Ģ":"G","ĝ":"g","ğ":"g","ġ":"g","ģ":"g","Ĥ":"H","Ħ":"H","ĥ":"h","ħ":"h","Ĩ":"I","Ī":"I","Ĭ":"I","Į":"I","İ":"I","ĩ":"i","ī":"i","ĭ":"i","į":"i","ı":"i","Ĵ":"J","ĵ":"j","Ķ":"K","ķ":"k","ĸ":"k","Ĺ":"L","Ļ":"L","Ľ":"L","Ŀ":"L","Ł":"L","ĺ":"l","ļ":"l","ľ":"l","ŀ":"l","ł":"l","Ń":"N","Ņ":"N","Ň":"N","Ŋ":"N","ń":"n","ņ":"n","ň":"n","ŋ":"n","Ō":"O","Ŏ":"O","Ő":"O","ō":"o","ŏ":"o","ő":"o","Ŕ":"R","Ŗ":"R","Ř":"R","ŕ":"r","ŗ":"r","ř":"r","Ś":"S","Ŝ":"S","Ş":"S","Š":"S","ś":"s","ŝ":"s","ş":"s","š":"s","Ţ":"T","Ť":"T","Ŧ":"T","ţ":"t","ť":"t","ŧ":"t","Ũ":"U","Ū":"U","Ŭ":"U","Ů":"U","Ű":"U","Ų":"U","ũ":"u","ū":"u","ŭ":"u","ů":"u","ű":"u","ų":"u","Ŵ":"W","ŵ":"w","Ŷ":"Y","ŷ":"y","Ÿ":"Y","Ź":"Z","Ż":"Z","Ž":"Z","ź":"z","ż":"z","ž":"z","IJ":"IJ","ij":"ij","Œ":"Oe","œ":"oe","ʼn":"'n","ſ":"s"},Sn={"&":"&amp;","<":"&lt;",">":"&gt;",'"':"&quot;","'":"&#39;"},On={"&amp;":"&","&lt;":"<","&gt;":">","&quot;":'"',"&#39;":"'"},Mn={"\\":"\\","'":"'","\n":"n","\r":"r","\u2028":"u2028","\u2029":"u2029"},En=parseFloat,Tn=parseInt,Nn="object"==typeof e&&e&&e.Object===Object&&e,An="object"==typeof self&&self&&self.Object===Object&&self,In=Nn||An||Function("return this")(),Dn="object"==typeof t&&t&&!t.nodeType&&t,jn=Dn&&"object"==typeof i&&i&&!i.nodeType&&i,$n=jn&&jn.exports===Dn,Pn=$n&&Nn.process,Ln=function(){try{return Pn&&Pn.binding&&Pn.binding("util")}catch(e){}}(),zn=Ln&&Ln.isArrayBuffer,Rn=Ln&&Ln.isDate,Bn=Ln&&Ln.isMap,Fn=Ln&&Ln.isRegExp,Vn=Ln&&Ln.isSet,Hn=Ln&&Ln.isTypedArray,Un=M("length"),Wn=E(qn),Yn=E(Sn),Gn=E(On),Kn=function e(t){function n(e){if(os(e)&&!gf(e)&&!(e instanceof _)){if(e instanceof r)return e;if(vc.call(e,"__wrapped__"))return na(e)}return new r(e)}function i(){}function r(e,t){this.__wrapped__=e,this.__actions__=[],this.__chain__=!!t,this.__index__=0,this.__values__=re}function _(e){this.__wrapped__=e,this.__actions__=[],this.__dir__=1,this.__filtered__=!1,this.__iteratees__=[],this.__takeCount__=$e,this.__views__=[]}function E(){var e=new _(this.__wrapped__);return e.__actions__=Pr(this.__actions__),e.__dir__=this.__dir__,e.__filtered__=this.__filtered__,e.__iteratees__=Pr(this.__iteratees__),e.__takeCount__=this.__takeCount__,e.__views__=Pr(this.__views__),e}function Q(){if(this.__filtered__){var e=new _(this);e.__dir__=-1,e.__filtered__=!0}else e=this.clone(),e.__dir__*=-1;return e}function te(){var e=this.__wrapped__.value(),t=this.__dir__,n=gf(e),i=t<0,r=n?e.length:0,o=Oo(0,r,this.__views__),a=o.start,l=o.end,s=l-a,u=i?l:a-1,c=this.__iteratees__,d=c.length,f=0,p=Wc(s,this.__takeCount__);if(!n||!i&&r==s&&p==s)return br(e,this.__actions__);var h=[];e:for(;s--&&f<p;){u+=t;for(var m=-1,v=e[u];++m<d;){var g=c[m],b=g.iteratee,y=g.type,_=b(v);if(y==Ne)v=_;else if(!_){if(y==Te)continue e;break e}}h[f++]=v}return h}function ne(e){var t=-1,n=null==e?0:e.length;for(this.clear();++t<n;){var i=e[t];this.set(i[0],i[1])}}function Rt(){this.__data__=nd?nd(null):{},this.size=0}function Xt(e){var t=this.has(e)&&delete this.__data__[e];return this.size-=t?1:0,t}function Jt(e){var t=this.__data__;if(nd){var n=t[e];return n===se?re:n}return vc.call(t,e)?t[e]:re}function en(e){var t=this.__data__;return nd?t[e]!==re:vc.call(t,e)}function tn(e,t){var n=this.__data__;return this.size+=this.has(e)?0:1,n[e]=nd&&t===re?se:t,this}function nn(e){var t=-1,n=null==e?0:e.length;for(this.clear();++t<n;){var i=e[t];this.set(i[0],i[1])}}function rn(){this.__data__=[],this.size=0}function on(e){var t=this.__data__,n=Zn(t,e);return!(n<0)&&(n==t.length-1?t.pop():Tc.call(t,n,1),--this.size,!0)}function an(e){var t=this.__data__,n=Zn(t,e);return n<0?re:t[n][1]}function ln(e){return Zn(this.__data__,e)>-1}function sn(e,t){var n=this.__data__,i=Zn(n,e);return i<0?(++this.size,n.push([e,t])):n[i][1]=t,this}function un(e){var t=-1,n=null==e?0:e.length;for(this.clear();++t<n;){var i=e[t];this.set(i[0],i[1])}}function cn(){this.size=0,this.__data__={hash:new ne,map:new(Xc||nn),string:new ne}}function dn(e){var t=ko(this,e).delete(e);return this.size-=t?1:0,t}function fn(e){return ko(this,e).get(e)}function pn(e){return ko(this,e).has(e)}function hn(e,t){var n=ko(this,e),i=n.size;return n.set(e,t),this.size+=n.size==i?0:1,this}function gn(e){var t=-1,n=null==e?0:e.length;for(this.__data__=new un;++t<n;)this.add(e[t])}function bn(e){return this.__data__.set(e,se),this}function yn(e){return this.__data__.has(e)}function _n(e){var t=this.__data__=new nn(e);this.size=t.size}function qn(){this.__data__=new nn,this.size=0}function Sn(e){var t=this.__data__,n=t.delete(e);return this.size=t.size,n}function On(e){return this.__data__.get(e)}function Mn(e){return this.__data__.has(e)}function Nn(e,t){var n=this.__data__;if(n instanceof nn){var i=n.__data__;if(!Xc||i.length<oe-1)return i.push([e,t]),this.size=++n.size,this;n=this.__data__=new un(i)}return n.set(e,t),this.size=n.size,this}function An(e,t){var n=gf(e),i=!n&&vf(e),r=!n&&!i&&yf(e),o=!n&&!i&&!r&&Cf(e),a=n||i||r||o,l=a?I(e.length,uc):[],s=l.length;for(var u in e)!t&&!vc.call(e,u)||a&&("length"==u||r&&("offset"==u||"parent"==u)||o&&("buffer"==u||"byteLength"==u||"byteOffset"==u)||jo(u,s))||l.push(u);return l}function Dn(e){var t=e.length;return t?e[Ji(0,t-1)]:re}function jn(e,t){return Xo(Pr(e),ni(t,0,e.length))}function Pn(e){return Xo(Pr(e))}function Ln(e,t,n){(n===re||Ul(e[t],n))&&(n!==re||t in e)||ei(e,t,n)}function Un(e,t,n){var i=e[t];vc.call(e,t)&&Ul(i,n)&&(n!==re||t in e)||ei(e,t,n)}function Zn(e,t){for(var n=e.length;n--;)if(Ul(e[n][0],t))return n;return-1}function Qn(e,t,n,i){return hd(e,function(e,r,o){t(i,e,n(e),o)}),i}function Xn(e,t){return e&&Lr(t,Rs(t),e)}function Jn(e,t){return e&&Lr(t,Bs(t),e)}function ei(e,t,n){"__proto__"==t&&Dc?Dc(e,t,{configurable:!0,enumerable:!0,value:n,writable:!0}):e[t]=n}function ti(e,t){for(var n=-1,i=t.length,r=nc(i),o=null==e;++n<i;)r[n]=o?re:Ps(e,t[n]);return r}function ni(e,t,n){return e===e&&(n!==re&&(e=e<=n?e:n),t!==re&&(e=e>=t?e:t)),e}function ii(e,t,n,i,r,o){var a,l=t&de,s=t&fe,c=t&pe;if(n&&(a=r?n(e,i,r,o):n(e)),a!==re)return a;if(!rs(e))return e;var d=gf(e);if(d){if(a=To(e),!l)return Pr(e,a)}else{var f=Sd(e),p=f==Ye||f==Ge;if(yf(e))return qr(e,l);if(f==Xe||f==Re||p&&!r){if(a=s||p?{}:No(e),!l)return s?Rr(e,Jn(a,e)):zr(e,Xn(a,e))}else{if(!Cn[f])return r?e:{};a=Ao(e,f,ii,l)}}o||(o=new _n);var h=o.get(e);if(h)return h;o.set(e,a);var m=c?s?yo:bo:s?Bs:Rs,v=d?re:m(e);return u(v||e,function(i,r){v&&(r=i,i=e[r]),Un(a,r,ii(i,t,n,r,e,o))}),a}function ri(e){var t=Rs(e);return function(n){return oi(n,e,t)}}function oi(e,t,n){var i=n.length;if(null==e)return!i;for(e=lc(e);i--;){var r=n[i],o=t[r],a=e[r];if(a===re&&!(r in e)||!o(a))return!1}return!0}function ai(e,t,n){if("function"!=typeof e)throw new cc(le);return Ed(function(){e.apply(re,n)},t)}function li(e,t,n,i){var r=-1,o=p,a=!0,l=e.length,s=[],u=t.length;if(!l)return s;n&&(t=m(t,j(n))),i?(o=h,a=!1):t.length>=oe&&(o=P,a=!1,t=new gn(t));e:for(;++r<l;){var c=e[r],d=null==n?c:n(c);if(c=i||0!==c?c:0,a&&d===d){for(var f=u;f--;)if(t[f]===d)continue e;s.push(c)}else o(t,d,i)||s.push(c)}return s}function si(e,t){var n=!0;return hd(e,function(e,i,r){return n=!!t(e,i,r)}),n}function ui(e,t,n){for(var i=-1,r=e.length;++i<r;){var o=e[i],a=t(o);if(null!=a&&(l===re?a===a&&!vs(a):n(a,l)))var l=a,s=o}return s}function ci(e,t,n,i){var r=e.length;for(n=ws(n),n<0&&(n=-n>r?0:r+n),i=i===re||i>r?r:ws(i),i<0&&(i+=r),i=n>i?0:ks(i);n<i;)e[n++]=t;return e}function di(e,t){var n=[];return hd(e,function(e,i,r){t(e,i,r)&&n.push(e)}),n}function fi(e,t,n,i,r){var o=-1,a=e.length;for(n||(n=Do),r||(r=[]);++o<a;){var l=e[o];t>0&&n(l)?t>1?fi(l,t-1,n,i,r):v(r,l):i||(r[r.length]=l)}return r}function pi(e,t){return e&&vd(e,t,Rs)}function hi(e,t){return e&&gd(e,t,Rs)}function mi(e,t){return f(t,function(t){return ts(e[t])})}function vi(e,t){t=kr(t,e);for(var n=0,i=t.length;null!=e&&n<i;)e=e[Jo(t[n++])];return n&&n==i?e:re}function gi(e,t,n){var i=t(e);return gf(e)?i:v(i,n(e))}function bi(e){return null==e?e===re?rt:Qe:Ic&&Ic in lc(e)?So(e):Wo(e)}function yi(e,t){return e>t}function _i(e,t){return null!=e&&vc.call(e,t)}function xi(e,t){return null!=e&&t in lc(e)}function wi(e,t,n){return e>=Wc(t,n)&&e<Uc(t,n)}function ki(e,t,n){for(var i=n?h:p,r=e[0].length,o=e.length,a=o,l=nc(o),s=1/0,u=[];a--;){var c=e[a];a&&t&&(c=m(c,j(t))),s=Wc(c.length,s),l[a]=!n&&(t||r>=120&&c.length>=120)?new gn(a&&c):re}c=e[0];var d=-1,f=l[0];e:for(;++d<r&&u.length<s;){var v=c[d],g=t?t(v):v;if(v=n||0!==v?v:0,!(f?P(f,g):i(u,g,n))){for(a=o;--a;){var b=l[a];if(!(b?P(b,g):i(e[a],g,n)))continue e}f&&f.push(g),u.push(v)}}return u}function Ci(e,t,n,i){return pi(e,function(e,r,o){t(i,n(e),r,o)}),i}function qi(e,t,n){t=kr(t,e),e=Go(e,t);var i=null==e?e:e[Jo(xa(t))];return null==i?re:l(i,e,n)}function Si(e){return os(e)&&bi(e)==Re}function Oi(e){return os(e)&&bi(e)==lt}function Mi(e){return os(e)&&bi(e)==He}function Ei(e,t,n,i,r){return e===t||(null==e||null==t||!os(e)&&!os(t)?e!==e&&t!==t:Ti(e,t,n,i,Ei,r))}function Ti(e,t,n,i,r,o){var a=gf(e),l=gf(t),s=a?Be:Sd(e),u=l?Be:Sd(t);s=s==Re?Xe:s,u=u==Re?Xe:u;var c=s==Xe,d=u==Xe,f=s==u;if(f&&yf(e)){if(!yf(t))return!1;a=!0,c=!1}if(f&&!c)return o||(o=new _n),a||Cf(e)?ho(e,t,n,i,r,o):mo(e,t,s,n,i,r,o);if(!(n&he)){var p=c&&vc.call(e,"__wrapped__"),h=d&&vc.call(t,"__wrapped__");if(p||h){var m=p?e.value():e,v=h?t.value():t;return o||(o=new _n),r(m,v,n,i,o)}}return!!f&&(o||(o=new _n),vo(e,t,n,i,r,o))}function Ni(e){return os(e)&&Sd(e)==Ke}function Ai(e,t,n,i){var r=n.length,o=r,a=!i;if(null==e)return!o;for(e=lc(e);r--;){var l=n[r];if(a&&l[2]?l[1]!==e[l[0]]:!(l[0]in e))return!1}for(;++r<o;){l=n[r];var s=l[0],u=e[s],c=l[1];if(a&&l[2]){if(u===re&&!(s in e))return!1}else{var d=new _n;if(i)var f=i(u,c,s,e,t,d);if(!(f===re?Ei(c,u,he|me,i,d):f))return!1}}return!0}function Ii(e){return!(!rs(e)||Ro(e))&&(ts(e)?wc:Wt).test(ea(e))}function Di(e){return os(e)&&bi(e)==et}function ji(e){return os(e)&&Sd(e)==tt}function $i(e){return os(e)&&is(e.length)&&!!kn[bi(e)]}function Pi(e){return"function"==typeof e?e:null==e?Tu:"object"==typeof e?gf(e)?Vi(e[0],e[1]):Fi(e):Lu(e)}function Li(e){if(!Bo(e))return Hc(e);var t=[];for(var n in lc(e))vc.call(e,n)&&"constructor"!=n&&t.push(n);return t}function zi(e){if(!rs(e))return Uo(e);var t=Bo(e),n=[];for(var i in e)("constructor"!=i||!t&&vc.call(e,i))&&n.push(i);return n}function Ri(e,t){return e<t}function Bi(e,t){var n=-1,i=Wl(e)?nc(e.length):[];return hd(e,function(e,r,o){i[++n]=t(e,r,o)}),i}function Fi(e){var t=Co(e);return 1==t.length&&t[0][2]?Vo(t[0][0],t[0][1]):function(n){return n===e||Ai(n,e,t)}}function Vi(e,t){return Po(e)&&Fo(t)?Vo(Jo(e),t):function(n){var i=Ps(n,e);return i===re&&i===t?zs(n,e):Ei(t,i,he|me)}}function Hi(e,t,n,i,r){e!==t&&vd(t,function(o,a){if(rs(o))r||(r=new _n),Ui(e,t,a,n,Hi,i,r);else{var l=i?i(e[a],o,a+"",e,t,r):re;l===re&&(l=o),Ln(e,a,l)}},Bs)}function Ui(e,t,n,i,r,o,a){var l=e[n],s=t[n],u=a.get(s);if(u)return void Ln(e,n,u);var c=o?o(l,s,n+"",e,t,a):re,d=c===re;if(d){var f=gf(s),p=!f&&yf(s),h=!f&&!p&&Cf(s);c=s,f||p||h?gf(l)?c=l:Yl(l)?c=Pr(l):p?(d=!1,c=qr(s,!0)):h?(d=!1,c=Ar(s,!0)):c=[]:ps(s)||vf(s)?(c=l,vf(l)?c=qs(l):(!rs(l)||i&&ts(l))&&(c=No(s))):d=!1}d&&(a.set(s,c),r(c,s,i,o,a),a.delete(s)),Ln(e,n,c)}function Wi(e,t){var n=e.length;if(n)return t+=t<0?n:0,jo(t,n)?e[t]:re}function Yi(e,t,n){var i=-1;return t=m(t.length?t:[Tu],j(wo())),N(Bi(e,function(e,n,r){return{criteria:m(t,function(t){return t(e)}),index:++i,value:e}}),function(e,t){return Dr(e,t,n)})}function Gi(e,t){return Ki(e,t,function(t,n){return zs(e,n)})}function Ki(e,t,n){for(var i=-1,r=t.length,o={};++i<r;){var a=t[i],l=vi(e,a);n(l,a)&&or(o,kr(a,e),l)}return o}function Zi(e){return function(t){return vi(t,e)}}function Qi(e,t,n,i){var r=i?q:C,o=-1,a=t.length,l=e;for(e===t&&(t=Pr(t)),n&&(l=m(e,j(n)));++o<a;)for(var s=0,u=t[o],c=n?n(u):u;(s=r(l,c,s,i))>-1;)l!==e&&Tc.call(l,s,1),Tc.call(e,s,1);return e}function Xi(e,t){for(var n=e?t.length:0,i=n-1;n--;){var r=t[n];if(n==i||r!==o){var o=r;jo(r)?Tc.call(e,r,1):mr(e,r)}}return e}function Ji(e,t){return e+zc(Kc()*(t-e+1))}function er(e,t,n,i){for(var r=-1,o=Uc(Lc((t-e)/(n||1)),0),a=nc(o);o--;)a[i?o:++r]=e,e+=n;return a}function tr(e,t){var n="";if(!e||t<1||t>Ie)return n;do{t%2&&(n+=e),(t=zc(t/2))&&(e+=e)}while(t);return n}function nr(e,t){return Td(Yo(e,t,Tu),e+"")}function ir(e){return Dn(Js(e))}function rr(e,t){var n=Js(e);return Xo(n,ni(t,0,n.length))}function or(e,t,n,i){if(!rs(e))return e;t=kr(t,e);for(var r=-1,o=t.length,a=o-1,l=e;null!=l&&++r<o;){var s=Jo(t[r]),u=n;if(r!=a){var c=l[s];u=i?i(c,s,l):re,u===re&&(u=rs(c)?c:jo(t[r+1])?[]:{})}Un(l,s,u),l=l[s]}return e}function ar(e){return Xo(Js(e))}function lr(e,t,n){var i=-1,r=e.length;t<0&&(t=-t>r?0:r+t),n=n>r?r:n,n<0&&(n+=r),r=t>n?0:n-t>>>0,t>>>=0;for(var o=nc(r);++i<r;)o[i]=e[i+t];return o}function sr(e,t){var n;return hd(e,function(e,i,r){return!(n=t(e,i,r))}),!!n}function ur(e,t,n){var i=0,r=null==e?i:e.length;if("number"==typeof t&&t===t&&r<=Le){for(;i<r;){var o=i+r>>>1,a=e[o];null!==a&&!vs(a)&&(n?a<=t:a<t)?i=o+1:r=o}return r}return cr(e,t,Tu,n)}function cr(e,t,n,i){t=n(t);for(var r=0,o=null==e?0:e.length,a=t!==t,l=null===t,s=vs(t),u=t===re;r<o;){var c=zc((r+o)/2),d=n(e[c]),f=d!==re,p=null===d,h=d===d,m=vs(d);if(a)var v=i||h;else v=u?h&&(i||f):l?h&&f&&(i||!p):s?h&&f&&!p&&(i||!m):!p&&!m&&(i?d<=t:d<t);v?r=c+1:o=c}return Wc(o,Pe)}function dr(e,t){for(var n=-1,i=e.length,r=0,o=[];++n<i;){var a=e[n],l=t?t(a):a;if(!n||!Ul(l,s)){var s=l;o[r++]=0===a?0:a}}return o}function fr(e){return"number"==typeof e?e:vs(e)?je:+e}function pr(e){if("string"==typeof e)return e;if(gf(e))return m(e,pr)+"";if(vs(e))return fd?fd.call(e):"";var t=e+"";return"0"==t&&1/e==-Ae?"-0":t}function hr(e,t,n){var i=-1,r=p,o=e.length,a=!0,l=[],s=l;if(n)a=!1,r=h;else if(o>=oe){var u=t?null:wd(e);if(u)return K(u);a=!1,r=P,s=new gn}else s=t?[]:l;e:for(;++i<o;){var c=e[i],d=t?t(c):c;if(c=n||0!==c?c:0,a&&d===d){for(var f=s.length;f--;)if(s[f]===d)continue e;t&&s.push(d),l.push(c)}else r(s,d,n)||(s!==l&&s.push(d),l.push(c))}return l}function mr(e,t){return t=kr(t,e),null==(e=Go(e,t))||delete e[Jo(xa(t))]}function vr(e,t,n,i){return or(e,t,n(vi(e,t)),i)}function gr(e,t,n,i){for(var r=e.length,o=i?r:-1;(i?o--:++o<r)&&t(e[o],o,e););return n?lr(e,i?0:o,i?o+1:r):lr(e,i?o+1:0,i?r:o)}function br(e,t){var n=e;return n instanceof _&&(n=n.value()),g(t,function(e,t){return t.func.apply(t.thisArg,v([e],t.args))},n)}function yr(e,t,n){var i=e.length;if(i<2)return i?hr(e[0]):[];for(var r=-1,o=nc(i);++r<i;)for(var a=e[r],l=-1;++l<i;)l!=r&&(o[r]=li(o[r]||a,e[l],t,n));return hr(fi(o,1),t,n)}function _r(e,t,n){for(var i=-1,r=e.length,o=t.length,a={};++i<r;){var l=i<o?t[i]:re;n(a,e[i],l)}return a}function xr(e){return Yl(e)?e:[]}function wr(e){return"function"==typeof e?e:Tu}function kr(e,t){return gf(e)?e:Po(e,t)?[e]:Nd(Os(e))}function Cr(e,t,n){var i=e.length;return n=n===re?i:n,!t&&n>=i?e:lr(e,t,n)}function qr(e,t){if(t)return e.slice();var n=e.length,i=Sc?Sc(n):new e.constructor(n);return e.copy(i),i}function Sr(e){var t=new e.constructor(e.byteLength);return new qc(t).set(new qc(e)),t}function Or(e,t){var n=t?Sr(e.buffer):e.buffer;return new e.constructor(n,e.byteOffset,e.byteLength)}function Mr(e,t,n){return g(t?n(W(e),de):W(e),o,new e.constructor)}function Er(e){var t=new e.constructor(e.source,Vt.exec(e));return t.lastIndex=e.lastIndex,t}function Tr(e,t,n){return g(t?n(K(e),de):K(e),a,new e.constructor)}function Nr(e){return dd?lc(dd.call(e)):{}}function Ar(e,t){var n=t?Sr(e.buffer):e.buffer;return new e.constructor(n,e.byteOffset,e.length)}function Ir(e,t){if(e!==t){var n=e!==re,i=null===e,r=e===e,o=vs(e),a=t!==re,l=null===t,s=t===t,u=vs(t);if(!l&&!u&&!o&&e>t||o&&a&&s&&!l&&!u||i&&a&&s||!n&&s||!r)return 1;if(!i&&!o&&!u&&e<t||u&&n&&r&&!i&&!o||l&&n&&r||!a&&r||!s)return-1}return 0}function Dr(e,t,n){for(var i=-1,r=e.criteria,o=t.criteria,a=r.length,l=n.length;++i<a;){var s=Ir(r[i],o[i]);if(s){if(i>=l)return s;return s*("desc"==n[i]?-1:1)}}return e.index-t.index}function jr(e,t,n,i){for(var r=-1,o=e.length,a=n.length,l=-1,s=t.length,u=Uc(o-a,0),c=nc(s+u),d=!i;++l<s;)c[l]=t[l];for(;++r<a;)(d||r<o)&&(c[n[r]]=e[r]);for(;u--;)c[l++]=e[r++];return c}function $r(e,t,n,i){for(var r=-1,o=e.length,a=-1,l=n.length,s=-1,u=t.length,c=Uc(o-l,0),d=nc(c+u),f=!i;++r<c;)d[r]=e[r];for(var p=r;++s<u;)d[p+s]=t[s];for(;++a<l;)(f||r<o)&&(d[p+n[a]]=e[r++]);return d}function Pr(e,t){var n=-1,i=e.length;for(t||(t=nc(i));++n<i;)t[n]=e[n];return t}function Lr(e,t,n,i){var r=!n;n||(n={});for(var o=-1,a=t.length;++o<a;){var l=t[o],s=i?i(n[l],e[l],l,n,e):re;s===re&&(s=e[l]),r?ei(n,l,s):Un(n,l,s)}return n}function zr(e,t){return Lr(e,Cd(e),t)}function Rr(e,t){return Lr(e,qd(e),t)}function Br(e,t){return function(n,i){var r=gf(n)?s:Qn,o=t?t():{};return r(n,e,wo(i,2),o)}}function Fr(e){return nr(function(t,n){var i=-1,r=n.length,o=r>1?n[r-1]:re,a=r>2?n[2]:re;for(o=e.length>3&&"function"==typeof o?(r--,o):re,a&&$o(n[0],n[1],a)&&(o=r<3?re:o,r=1),t=lc(t);++i<r;){var l=n[i];l&&e(t,l,i,o)}return t})}function Vr(e,t){return function(n,i){if(null==n)return n;if(!Wl(n))return e(n,i);for(var r=n.length,o=t?r:-1,a=lc(n);(t?o--:++o<r)&&!1!==i(a[o],o,a););return n}}function Hr(e){return function(t,n,i){for(var r=-1,o=lc(t),a=i(t),l=a.length;l--;){var s=a[e?l:++r];if(!1===n(o[s],s,o))break}return t}}function Ur(e,t,n){function i(){return(this&&this!==In&&this instanceof i?o:e).apply(r?n:this,arguments)}var r=t&ve,o=Gr(e);return i}function Wr(e){return function(t){t=Os(t);var n=V(t)?ee(t):re,i=n?n[0]:t.charAt(0),r=n?Cr(n,1).join(""):t.slice(1);return i[e]()+r}}function Yr(e){return function(t){return g(qu(ou(t).replace(mn,"")),e,"")}}function Gr(e){return function(){var t=arguments;switch(t.length){case 0:return new e;case 1:return new e(t[0]);case 2:return new e(t[0],t[1]);case 3:return new e(t[0],t[1],t[2]);case 4:return new e(t[0],t[1],t[2],t[3]);case 5:return new e(t[0],t[1],t[2],t[3],t[4]);case 6:return new e(t[0],t[1],t[2],t[3],t[4],t[5]);case 7:return new e(t[0],t[1],t[2],t[3],t[4],t[5],t[6])}var n=pd(e.prototype),i=e.apply(n,t);return rs(i)?i:n}}function Kr(e,t,n){function i(){for(var o=arguments.length,a=nc(o),s=o,u=xo(i);s--;)a[s]=arguments[s];var c=o<3&&a[0]!==u&&a[o-1]!==u?[]:G(a,u);return(o-=c.length)<n?ao(e,t,Xr,i.placeholder,re,a,c,re,re,n-o):l(this&&this!==In&&this instanceof i?r:e,this,a)}var r=Gr(e);return i}function Zr(e){return function(t,n,i){var r=lc(t);if(!Wl(t)){var o=wo(n,3);t=Rs(t),n=function(e){return o(r[e],e,r)}}var a=e(t,n,i);return a>-1?r[o?t[a]:a]:re}}function Qr(e){return go(function(t){var n=t.length,i=n,o=r.prototype.thru;for(e&&t.reverse();i--;){var a=t[i];if("function"!=typeof a)throw new cc(le);if(o&&!l&&"wrapper"==_o(a))var l=new r([],!0)}for(i=l?i:n;++i<n;){a=t[i];var s=_o(a),u="wrapper"==s?kd(a):re;l=u&&zo(u[0])&&u[1]==(ke|ye|xe|Ce)&&!u[4].length&&1==u[9]?l[_o(u[0])].apply(l,u[3]):1==a.length&&zo(a)?l[s]():l.thru(a)}return function(){var e=arguments,i=e[0];if(l&&1==e.length&&gf(i))return l.plant(i).value();for(var r=0,o=n?t[r].apply(this,e):i;++r<n;)o=t[r].call(this,o);return o}})}function Xr(e,t,n,i,r,o,a,l,s,u){function c(){for(var g=arguments.length,b=nc(g),y=g;y--;)b[y]=arguments[y];if(h)var _=xo(c),x=R(b,_);if(i&&(b=jr(b,i,r,h)),o&&(b=$r(b,o,a,h)),g-=x,h&&g<u){var w=G(b,_);return ao(e,t,Xr,c.placeholder,n,b,w,l,s,u-g)}var k=f?n:this,C=p?k[e]:e;return g=b.length,l?b=Ko(b,l):m&&g>1&&b.reverse(),d&&s<g&&(b.length=s),this&&this!==In&&this instanceof c&&(C=v||Gr(C)),C.apply(k,b)}var d=t&ke,f=t&ve,p=t&ge,h=t&(ye|_e),m=t&qe,v=p?re:Gr(e);return c}function Jr(e,t){return function(n,i){return Ci(n,e,t(i),{})}}function eo(e,t){return function(n,i){var r;if(n===re&&i===re)return t;if(n!==re&&(r=n),i!==re){if(r===re)return i;"string"==typeof n||"string"==typeof i?(n=pr(n),i=pr(i)):(n=fr(n),i=fr(i)),r=e(n,i)}return r}}function to(e){return go(function(t){return t=m(t,j(wo())),nr(function(n){var i=this;return e(t,function(e){return l(e,i,n)})})})}function no(e,t){t=t===re?" ":pr(t);var n=t.length;if(n<2)return n?tr(t,e):t;var i=tr(t,Lc(e/J(t)));return V(t)?Cr(ee(i),0,e).join(""):i.slice(0,e)}function io(e,t,n,i){function r(){for(var t=-1,s=arguments.length,u=-1,c=i.length,d=nc(c+s),f=this&&this!==In&&this instanceof r?a:e;++u<c;)d[u]=i[u];for(;s--;)d[u++]=arguments[++t];return l(f,o?n:this,d)}var o=t&ve,a=Gr(e);return r}function ro(e){return function(t,n,i){return i&&"number"!=typeof i&&$o(t,n,i)&&(n=i=re),t=xs(t),n===re?(n=t,t=0):n=xs(n),i=i===re?t<n?1:-1:xs(i),er(t,n,i,e)}}function oo(e){return function(t,n){return"string"==typeof t&&"string"==typeof n||(t=Cs(t),n=Cs(n)),e(t,n)}}function ao(e,t,n,i,r,o,a,l,s,u){var c=t&ye,d=c?a:re,f=c?re:a,p=c?o:re,h=c?re:o;t|=c?xe:we,(t&=~(c?we:xe))&be||(t&=~(ve|ge));var m=[e,t,r,p,d,h,f,l,s,u],v=n.apply(re,m);return zo(e)&&Md(v,m),v.placeholder=i,Zo(v,e,t)}function lo(e){var t=ac[e];return function(e,n){if(e=Cs(e),n=null==n?0:Wc(ws(n),292)){var i=(Os(e)+"e").split("e");return i=(Os(t(i[0]+"e"+(+i[1]+n)))+"e").split("e"),+(i[0]+"e"+(+i[1]-n))}return t(e)}}function so(e){return function(t){var n=Sd(t);return n==Ke?W(t):n==tt?Z(t):D(t,e(t))}}function uo(e,t,n,i,r,o,a,l){var s=t&ge;if(!s&&"function"!=typeof e)throw new cc(le);var u=i?i.length:0;if(u||(t&=~(xe|we),i=r=re),a=a===re?a:Uc(ws(a),0),l=l===re?l:ws(l),u-=r?r.length:0,t&we){var c=i,d=r;i=r=re}var f=s?re:kd(e),p=[e,t,n,i,r,c,d,o,a,l];if(f&&Ho(p,f),e=p[0],t=p[1],n=p[2],i=p[3],r=p[4],l=p[9]=p[9]===re?s?0:e.length:Uc(p[9]-u,0),!l&&t&(ye|_e)&&(t&=~(ye|_e)),t&&t!=ve)h=t==ye||t==_e?Kr(e,t,l):t!=xe&&t!=(ve|xe)||r.length?Xr.apply(re,p):io(e,t,n,i);else var h=Ur(e,t,n);return Zo((f?bd:Md)(h,p),e,t)}function co(e,t,n,i){return e===re||Ul(e,pc[n])&&!vc.call(i,n)?t:e}function fo(e,t,n,i,r,o){return rs(e)&&rs(t)&&(o.set(t,e),Hi(e,t,re,fo,o),o.delete(t)),e}function po(e){return ps(e)?re:e}function ho(e,t,n,i,r,o){var a=n&he,l=e.length,s=t.length;if(l!=s&&!(a&&s>l))return!1;var u=o.get(e);if(u&&o.get(t))return u==t;var c=-1,d=!0,f=n&me?new gn:re;for(o.set(e,t),o.set(t,e);++c<l;){var p=e[c],h=t[c];if(i)var m=a?i(h,p,c,t,e,o):i(p,h,c,e,t,o);if(m!==re){if(m)continue;d=!1;break}if(f){if(!y(t,function(e,t){if(!P(f,t)&&(p===e||r(p,e,n,i,o)))return f.push(t)})){d=!1;break}}else if(p!==h&&!r(p,h,n,i,o)){d=!1;break}}return o.delete(e),o.delete(t),d}function mo(e,t,n,i,r,o,a){switch(n){case st:if(e.byteLength!=t.byteLength||e.byteOffset!=t.byteOffset)return!1;e=e.buffer,t=t.buffer;case lt:return!(e.byteLength!=t.byteLength||!o(new qc(e),new qc(t)));case Ve:case He:case Ze:return Ul(+e,+t);case We:return e.name==t.name&&e.message==t.message;case et:case nt:return e==t+"";case Ke:var l=W;case tt:var s=i&he;if(l||(l=K),e.size!=t.size&&!s)return!1;var u=a.get(e);if(u)return u==t;i|=me,a.set(e,t);var c=ho(l(e),l(t),i,r,o,a);return a.delete(e),c;case it:if(dd)return dd.call(e)==dd.call(t)}return!1}function vo(e,t,n,i,r,o){var a=n&he,l=bo(e),s=l.length;if(s!=bo(t).length&&!a)return!1;for(var u=s;u--;){var c=l[u];if(!(a?c in t:vc.call(t,c)))return!1}var d=o.get(e);if(d&&o.get(t))return d==t;var f=!0;o.set(e,t),o.set(t,e);for(var p=a;++u<s;){c=l[u];var h=e[c],m=t[c];if(i)var v=a?i(m,h,c,t,e,o):i(h,m,c,e,t,o);if(!(v===re?h===m||r(h,m,n,i,o):v)){f=!1;break}p||(p="constructor"==c)}if(f&&!p){var g=e.constructor,b=t.constructor;g!=b&&"constructor"in e&&"constructor"in t&&!("function"==typeof g&&g instanceof g&&"function"==typeof b&&b instanceof b)&&(f=!1)}return o.delete(e),o.delete(t),f}function go(e){return Td(Yo(e,re,pa),e+"")}function bo(e){return gi(e,Rs,Cd)}function yo(e){return gi(e,Bs,qd)}function _o(e){for(var t=e.name+"",n=rd[t],i=vc.call(rd,t)?n.length:0;i--;){var r=n[i],o=r.func;if(null==o||o==e)return r.name}return t}function xo(e){return(vc.call(n,"placeholder")?n:e).placeholder}function wo(){var e=n.iteratee||Nu;return e=e===Nu?Pi:e,arguments.length?e(arguments[0],arguments[1]):e}function ko(e,t){var n=e.__data__;return Lo(t)?n["string"==typeof t?"string":"hash"]:n.map}function Co(e){for(var t=Rs(e),n=t.length;n--;){var i=t[n],r=e[i];t[n]=[i,r,Fo(r)]}return t}function qo(e,t){var n=F(e,t);return Ii(n)?n:re}function So(e){var t=vc.call(e,Ic),n=e[Ic];try{e[Ic]=re;var i=!0}catch(e){}var r=yc.call(e);return i&&(t?e[Ic]=n:delete e[Ic]),r}function Oo(e,t,n){for(var i=-1,r=n.length;++i<r;){var o=n[i],a=o.size;switch(o.type){case"drop":e+=a;break;case"dropRight":t-=a;break;case"take":t=Wc(t,e+a);break;case"takeRight":e=Uc(e,t-a)}}return{start:e,end:t}}function Mo(e){var t=e.match(Lt);return t?t[1].split(zt):[]}function Eo(e,t,n){t=kr(t,e);for(var i=-1,r=t.length,o=!1;++i<r;){var a=Jo(t[i]);if(!(o=null!=e&&n(e,a)))break;e=e[a]}return o||++i!=r?o:!!(r=null==e?0:e.length)&&is(r)&&jo(a,r)&&(gf(e)||vf(e))}function To(e){var t=e.length,n=e.constructor(t);return t&&"string"==typeof e[0]&&vc.call(e,"index")&&(n.index=e.index,n.input=e.input),n}function No(e){return"function"!=typeof e.constructor||Bo(e)?{}:pd(Oc(e))}function Ao(e,t,n,i){var r=e.constructor;switch(t){case lt:return Sr(e);case Ve:case He:return new r(+e);case st:return Or(e,i);case ut:case ct:case dt:case ft:case pt:case ht:case mt:case vt:case gt:return Ar(e,i);case Ke:return Mr(e,i,n);case Ze:case nt:return new r(e);case et:return Er(e);case tt:return Tr(e,i,n);case it:return Nr(e)}}function Io(e,t){var n=t.length;if(!n)return e;var i=n-1;return t[i]=(n>1?"& ":"")+t[i],t=t.join(n>2?", ":" "),e.replace(Pt,"{\n/* [wrapped with "+t+"] */\n")}function Do(e){return gf(e)||vf(e)||!!(Nc&&e&&e[Nc])}function jo(e,t){return!!(t=null==t?Ie:t)&&("number"==typeof e||Gt.test(e))&&e>-1&&e%1==0&&e<t}function $o(e,t,n){if(!rs(n))return!1;var i=typeof t;return!!("number"==i?Wl(n)&&jo(t,n.length):"string"==i&&t in n)&&Ul(n[t],e)}function Po(e,t){if(gf(e))return!1;var n=typeof e;return!("number"!=n&&"symbol"!=n&&"boolean"!=n&&null!=e&&!vs(e))||(Et.test(e)||!Mt.test(e)||null!=t&&e in lc(t))}function Lo(e){var t=typeof e;return"string"==t||"number"==t||"symbol"==t||"boolean"==t?"__proto__"!==e:null===e}function zo(e){var t=_o(e),i=n[t];if("function"!=typeof i||!(t in _.prototype))return!1;if(e===i)return!0;var r=kd(i);return!!r&&e===r[0]}function Ro(e){return!!bc&&bc in e}function Bo(e){var t=e&&e.constructor;return e===("function"==typeof t&&t.prototype||pc)}function Fo(e){return e===e&&!rs(e)}function Vo(e,t){return function(n){return null!=n&&(n[e]===t&&(t!==re||e in lc(n)))}}function Ho(e,t){var n=e[1],i=t[1],r=n|i,o=r<(ve|ge|ke),a=i==ke&&n==ye||i==ke&&n==Ce&&e[7].length<=t[8]||i==(ke|Ce)&&t[7].length<=t[8]&&n==ye;if(!o&&!a)return e;i&ve&&(e[2]=t[2],r|=n&ve?0:be);var l=t[3];if(l){var s=e[3];e[3]=s?jr(s,l,t[4]):l,e[4]=s?G(e[3],ce):t[4]}return l=t[5],l&&(s=e[5],e[5]=s?$r(s,l,t[6]):l,e[6]=s?G(e[5],ce):t[6]),l=t[7],l&&(e[7]=l),i&ke&&(e[8]=null==e[8]?t[8]:Wc(e[8],t[8])),null==e[9]&&(e[9]=t[9]),e[0]=t[0],e[1]=r,e}function Uo(e){var t=[];if(null!=e)for(var n in lc(e))t.push(n);return t}function Wo(e){return yc.call(e)}function Yo(e,t,n){return t=Uc(t===re?e.length-1:t,0),function(){for(var i=arguments,r=-1,o=Uc(i.length-t,0),a=nc(o);++r<o;)a[r]=i[t+r];r=-1;for(var s=nc(t+1);++r<t;)s[r]=i[r];return s[t]=n(a),l(e,this,s)}}function Go(e,t){return t.length<2?e:vi(e,lr(t,0,-1))}function Ko(e,t){for(var n=e.length,i=Wc(t.length,n),r=Pr(e);i--;){var o=t[i];e[i]=jo(o,n)?r[o]:re}return e}function Zo(e,t,n){var i=t+"";return Td(e,Io(i,ta(Mo(i),n)))}function Qo(e){var t=0,n=0;return function(){var i=Yc(),r=Ee-(i-n);if(n=i,r>0){if(++t>=Me)return arguments[0]}else t=0;return e.apply(re,arguments)}}function Xo(e,t){var n=-1,i=e.length,r=i-1;for(t=t===re?i:t;++n<t;){var o=Ji(n,r),a=e[o];e[o]=e[n],e[n]=a}return e.length=t,e}function Jo(e){if("string"==typeof e||vs(e))return e;var t=e+"";return"0"==t&&1/e==-Ae?"-0":t}function ea(e){if(null!=e){try{return mc.call(e)}catch(e){}try{return e+""}catch(e){}}return""}function ta(e,t){return u(ze,function(n){var i="_."+n[0];t&n[1]&&!p(e,i)&&e.push(i)}),e.sort()}function na(e){if(e instanceof _)return e.clone();var t=new r(e.__wrapped__,e.__chain__);return t.__actions__=Pr(e.__actions__),t.__index__=e.__index__,t.__values__=e.__values__,t}function ia(e,t,n){t=(n?$o(e,t,n):t===re)?1:Uc(ws(t),0);var i=null==e?0:e.length;if(!i||t<1)return[];for(var r=0,o=0,a=nc(Lc(i/t));r<i;)a[o++]=lr(e,r,r+=t);return a}function ra(e){for(var t=-1,n=null==e?0:e.length,i=0,r=[];++t<n;){var o=e[t];o&&(r[i++]=o)}return r}function oa(){var e=arguments.length;if(!e)return[];for(var t=nc(e-1),n=arguments[0],i=e;i--;)t[i-1]=arguments[i];return v(gf(n)?Pr(n):[n],fi(t,1))}function aa(e,t,n){var i=null==e?0:e.length;return i?(t=n||t===re?1:ws(t),lr(e,t<0?0:t,i)):[]}function la(e,t,n){var i=null==e?0:e.length;return i?(t=n||t===re?1:ws(t),t=i-t,lr(e,0,t<0?0:t)):[]}function sa(e,t){return e&&e.length?gr(e,wo(t,3),!0,!0):[]}function ua(e,t){return e&&e.length?gr(e,wo(t,3),!0):[]}function ca(e,t,n,i){var r=null==e?0:e.length;return r?(n&&"number"!=typeof n&&$o(e,t,n)&&(n=0,i=r),ci(e,t,n,i)):[]}function da(e,t,n){var i=null==e?0:e.length;if(!i)return-1;var r=null==n?0:ws(n);return r<0&&(r=Uc(i+r,0)),k(e,wo(t,3),r)}function fa(e,t,n){var i=null==e?0:e.length;if(!i)return-1;var r=i-1;return n!==re&&(r=ws(n),r=n<0?Uc(i+r,0):Wc(r,i-1)),k(e,wo(t,3),r,!0)}function pa(e){return(null==e?0:e.length)?fi(e,1):[]}function ha(e){return(null==e?0:e.length)?fi(e,Ae):[]}function ma(e,t){return(null==e?0:e.length)?(t=t===re?1:ws(t),fi(e,t)):[]}function va(e){for(var t=-1,n=null==e?0:e.length,i={};++t<n;){var r=e[t];i[r[0]]=r[1]}return i}function ga(e){return e&&e.length?e[0]:re}function ba(e,t,n){var i=null==e?0:e.length;if(!i)return-1;var r=null==n?0:ws(n);return r<0&&(r=Uc(i+r,0)),C(e,t,r)}function ya(e){return(null==e?0:e.length)?lr(e,0,-1):[]}function _a(e,t){return null==e?"":Vc.call(e,t)}function xa(e){var t=null==e?0:e.length;return t?e[t-1]:re}function wa(e,t,n){var i=null==e?0:e.length;if(!i)return-1;var r=i;return n!==re&&(r=ws(n),r=r<0?Uc(i+r,0):Wc(r,i-1)),t===t?X(e,t,r):k(e,S,r,!0)}function ka(e,t){return e&&e.length?Wi(e,ws(t)):re}function Ca(e,t){return e&&e.length&&t&&t.length?Qi(e,t):e}function qa(e,t,n){return e&&e.length&&t&&t.length?Qi(e,t,wo(n,2)):e}function Sa(e,t,n){return e&&e.length&&t&&t.length?Qi(e,t,re,n):e}function Oa(e,t){var n=[];if(!e||!e.length)return n;var i=-1,r=[],o=e.length;for(t=wo(t,3);++i<o;){var a=e[i];t(a,i,e)&&(n.push(a),r.push(i))}return Xi(e,r),n}function Ma(e){return null==e?e:Zc.call(e)}function Ea(e,t,n){var i=null==e?0:e.length;return i?(n&&"number"!=typeof n&&$o(e,t,n)?(t=0,n=i):(t=null==t?0:ws(t),n=n===re?i:ws(n)),lr(e,t,n)):[]}function Ta(e,t){return ur(e,t)}function Na(e,t,n){return cr(e,t,wo(n,2))}function Aa(e,t){var n=null==e?0:e.length;if(n){var i=ur(e,t);if(i<n&&Ul(e[i],t))return i}return-1}function Ia(e,t){return ur(e,t,!0)}function Da(e,t,n){return cr(e,t,wo(n,2),!0)}function ja(e,t){if(null==e?0:e.length){var n=ur(e,t,!0)-1;if(Ul(e[n],t))return n}return-1}function $a(e){return e&&e.length?dr(e):[]}function Pa(e,t){return e&&e.length?dr(e,wo(t,2)):[]}function La(e){var t=null==e?0:e.length;return t?lr(e,1,t):[]}function za(e,t,n){return e&&e.length?(t=n||t===re?1:ws(t),lr(e,0,t<0?0:t)):[]}function Ra(e,t,n){var i=null==e?0:e.length;return i?(t=n||t===re?1:ws(t),t=i-t,lr(e,t<0?0:t,i)):[]}function Ba(e,t){return e&&e.length?gr(e,wo(t,3),!1,!0):[]}function Fa(e,t){return e&&e.length?gr(e,wo(t,3)):[]}function Va(e){return e&&e.length?hr(e):[]}function Ha(e,t){return e&&e.length?hr(e,wo(t,2)):[]}function Ua(e,t){return t="function"==typeof t?t:re,e&&e.length?hr(e,re,t):[]}function Wa(e){if(!e||!e.length)return[];var t=0;return e=f(e,function(e){if(Yl(e))return t=Uc(e.length,t),!0}),I(t,function(t){return m(e,M(t))})}function Ya(e,t){if(!e||!e.length)return[];var n=Wa(e);return null==t?n:m(n,function(e){return l(t,re,e)})}function Ga(e,t){return _r(e||[],t||[],Un)}function Ka(e,t){return _r(e||[],t||[],or)}function Za(e){var t=n(e);return t.__chain__=!0,t}function Qa(e,t){return t(e),e}function Xa(e,t){return t(e)}function Ja(){return Za(this)}function el(){return new r(this.value(),this.__chain__)}function tl(){this.__values__===re&&(this.__values__=_s(this.value()));var e=this.__index__>=this.__values__.length;return{done:e,value:e?re:this.__values__[this.__index__++]}}function nl(){return this}function il(e){for(var t,n=this;n instanceof i;){var r=na(n);r.__index__=0,r.__values__=re,t?o.__wrapped__=r:t=r;var o=r;n=n.__wrapped__}return o.__wrapped__=e,t}function rl(){var e=this.__wrapped__;if(e instanceof _){var t=e;return this.__actions__.length&&(t=new _(this)),t=t.reverse(),t.__actions__.push({func:Xa,args:[Ma],thisArg:re}),new r(t,this.__chain__)}return this.thru(Ma)}function ol(){return br(this.__wrapped__,this.__actions__)}function al(e,t,n){var i=gf(e)?d:si;return n&&$o(e,t,n)&&(t=re),i(e,wo(t,3))}function ll(e,t){return(gf(e)?f:di)(e,wo(t,3))}function sl(e,t){return fi(hl(e,t),1)}function ul(e,t){return fi(hl(e,t),Ae)}function cl(e,t,n){return n=n===re?1:ws(n),fi(hl(e,t),n)}function dl(e,t){return(gf(e)?u:hd)(e,wo(t,3))}function fl(e,t){return(gf(e)?c:md)(e,wo(t,3))}function pl(e,t,n,i){e=Wl(e)?e:Js(e),n=n&&!i?ws(n):0;var r=e.length;return n<0&&(n=Uc(r+n,0)),ms(e)?n<=r&&e.indexOf(t,n)>-1:!!r&&C(e,t,n)>-1}function hl(e,t){return(gf(e)?m:Bi)(e,wo(t,3))}function ml(e,t,n,i){return null==e?[]:(gf(t)||(t=null==t?[]:[t]),n=i?re:n,gf(n)||(n=null==n?[]:[n]),Yi(e,t,n))}function vl(e,t,n){var i=gf(e)?g:T,r=arguments.length<3;return i(e,wo(t,4),n,r,hd)}function gl(e,t,n){var i=gf(e)?b:T,r=arguments.length<3;return i(e,wo(t,4),n,r,md)}function bl(e,t){return(gf(e)?f:di)(e,Al(wo(t,3)))}function yl(e){return(gf(e)?Dn:ir)(e)}function _l(e,t,n){return t=(n?$o(e,t,n):t===re)?1:ws(t),(gf(e)?jn:rr)(e,t)}function xl(e){return(gf(e)?Pn:ar)(e)}function wl(e){if(null==e)return 0;if(Wl(e))return ms(e)?J(e):e.length;var t=Sd(e);return t==Ke||t==tt?e.size:Li(e).length}function kl(e,t,n){var i=gf(e)?y:sr;return n&&$o(e,t,n)&&(t=re),i(e,wo(t,3))}function Cl(e,t){if("function"!=typeof t)throw new cc(le);return e=ws(e),function(){if(--e<1)return t.apply(this,arguments)}}function ql(e,t,n){return t=n?re:t,t=e&&null==t?e.length:t,uo(e,ke,re,re,re,re,t)}function Sl(e,t){var n;if("function"!=typeof t)throw new cc(le);return e=ws(e),function(){return--e>0&&(n=t.apply(this,arguments)),e<=1&&(t=re),n}}function Ol(e,t,n){t=n?re:t;var i=uo(e,ye,re,re,re,re,re,t);return i.placeholder=Ol.placeholder,i}function Ml(e,t,n){t=n?re:t;var i=uo(e,_e,re,re,re,re,re,t);return i.placeholder=Ml.placeholder,i}function El(e,t,n){function i(t){var n=f,i=p;return f=p=re,b=t,m=e.apply(i,n)}function r(e){return b=e,v=Ed(l,t),y?i(e):m}function o(e){var n=e-g,i=e-b,r=t-n;return _?Wc(r,h-i):r}function a(e){var n=e-g,i=e-b;return g===re||n>=t||n<0||_&&i>=h}function l(){var e=of();if(a(e))return s(e);v=Ed(l,o(e))}function s(e){return v=re,x&&f?i(e):(f=p=re,m)}function u(){v!==re&&xd(v),b=0,f=g=p=v=re}function c(){return v===re?m:s(of())}function d(){var e=of(),n=a(e);if(f=arguments,p=this,g=e,n){if(v===re)return r(g);if(_)return v=Ed(l,t),i(g)}return v===re&&(v=Ed(l,t)),m}var f,p,h,m,v,g,b=0,y=!1,_=!1,x=!0;if("function"!=typeof e)throw new cc(le);return t=Cs(t)||0,rs(n)&&(y=!!n.leading,_="maxWait"in n,h=_?Uc(Cs(n.maxWait)||0,t):h,x="trailing"in n?!!n.trailing:x),d.cancel=u,d.flush=c,d}function Tl(e){return uo(e,qe)}function Nl(e,t){if("function"!=typeof e||null!=t&&"function"!=typeof t)throw new cc(le);var n=function(){var i=arguments,r=t?t.apply(this,i):i[0],o=n.cache;if(o.has(r))return o.get(r);var a=e.apply(this,i);return n.cache=o.set(r,a)||o,a};return n.cache=new(Nl.Cache||un),n}function Al(e){if("function"!=typeof e)throw new cc(le);return function(){var t=arguments;switch(t.length){case 0:return!e.call(this);case 1:return!e.call(this,t[0]);case 2:return!e.call(this,t[0],t[1]);case 3:return!e.call(this,t[0],t[1],t[2])}return!e.apply(this,t)}}function Il(e){return Sl(2,e)}function Dl(e,t){if("function"!=typeof e)throw new cc(le);return t=t===re?t:ws(t),nr(e,t)}function jl(e,t){if("function"!=typeof e)throw new cc(le);return t=null==t?0:Uc(ws(t),0),nr(function(n){var i=n[t],r=Cr(n,0,t);return i&&v(r,i),l(e,this,r)})}function $l(e,t,n){var i=!0,r=!0;if("function"!=typeof e)throw new cc(le);return rs(n)&&(i="leading"in n?!!n.leading:i,r="trailing"in n?!!n.trailing:r),El(e,t,{leading:i,maxWait:t,trailing:r})}function Pl(e){return ql(e,1)}function Ll(e,t){return df(wr(t),e)}function zl(){if(!arguments.length)return[];var e=arguments[0];return gf(e)?e:[e]}function Rl(e){return ii(e,pe)}function Bl(e,t){return t="function"==typeof t?t:re,ii(e,pe,t)}function Fl(e){return ii(e,de|pe)}function Vl(e,t){return t="function"==typeof t?t:re,ii(e,de|pe,t)}function Hl(e,t){return null==t||oi(e,t,Rs(t))}function Ul(e,t){return e===t||e!==e&&t!==t}function Wl(e){return null!=e&&is(e.length)&&!ts(e)}function Yl(e){return os(e)&&Wl(e)}function Gl(e){return!0===e||!1===e||os(e)&&bi(e)==Ve}function Kl(e){return os(e)&&1===e.nodeType&&!ps(e)}function Zl(e){if(null==e)return!0;if(Wl(e)&&(gf(e)||"string"==typeof e||"function"==typeof e.splice||yf(e)||Cf(e)||vf(e)))return!e.length;var t=Sd(e);if(t==Ke||t==tt)return!e.size;if(Bo(e))return!Li(e).length;for(var n in e)if(vc.call(e,n))return!1;return!0}function Ql(e,t){return Ei(e,t)}function Xl(e,t,n){n="function"==typeof n?n:re;var i=n?n(e,t):re;return i===re?Ei(e,t,re,n):!!i}function Jl(e){if(!os(e))return!1;var t=bi(e);return t==We||t==Ue||"string"==typeof e.message&&"string"==typeof e.name&&!ps(e)}function es(e){return"number"==typeof e&&Fc(e)}function ts(e){if(!rs(e))return!1;var t=bi(e);return t==Ye||t==Ge||t==Fe||t==Je}function ns(e){return"number"==typeof e&&e==ws(e)}function is(e){return"number"==typeof e&&e>-1&&e%1==0&&e<=Ie}function rs(e){var t=typeof e;return null!=e&&("object"==t||"function"==t)}function os(e){return null!=e&&"object"==typeof e}function as(e,t){return e===t||Ai(e,t,Co(t))}function ls(e,t,n){return n="function"==typeof n?n:re,Ai(e,t,Co(t),n)}function ss(e){return fs(e)&&e!=+e}function us(e){if(Od(e))throw new rc(ae);return Ii(e)}function cs(e){return null===e}function ds(e){return null==e}function fs(e){return"number"==typeof e||os(e)&&bi(e)==Ze}function ps(e){if(!os(e)||bi(e)!=Xe)return!1;var t=Oc(e);if(null===t)return!0;var n=vc.call(t,"constructor")&&t.constructor;return"function"==typeof n&&n instanceof n&&mc.call(n)==_c}function hs(e){return ns(e)&&e>=-Ie&&e<=Ie}function ms(e){return"string"==typeof e||!gf(e)&&os(e)&&bi(e)==nt}function vs(e){return"symbol"==typeof e||os(e)&&bi(e)==it}function gs(e){return e===re}function bs(e){return os(e)&&Sd(e)==ot}function ys(e){return os(e)&&bi(e)==at}function _s(e){if(!e)return[];if(Wl(e))return ms(e)?ee(e):Pr(e);if(Ac&&e[Ac])return U(e[Ac]());var t=Sd(e);return(t==Ke?W:t==tt?K:Js)(e)}function xs(e){if(!e)return 0===e?e:0;if((e=Cs(e))===Ae||e===-Ae){return(e<0?-1:1)*De}return e===e?e:0}function ws(e){var t=xs(e),n=t%1;return t===t?n?t-n:t:0}function ks(e){return e?ni(ws(e),0,$e):0}function Cs(e){if("number"==typeof e)return e;if(vs(e))return je;if(rs(e)){var t="function"==typeof e.valueOf?e.valueOf():e;e=rs(t)?t+"":t}if("string"!=typeof e)return 0===e?e:+e;e=e.replace(Dt,"");var n=Ut.test(e);return n||Yt.test(e)?Tn(e.slice(2),n?2:8):Ht.test(e)?je:+e}function qs(e){return Lr(e,Bs(e))}function Ss(e){return e?ni(ws(e),-Ie,Ie):0===e?e:0}function Os(e){return null==e?"":pr(e)}function Ms(e,t){var n=pd(e);return null==t?n:Xn(n,t)}function Es(e,t){return w(e,wo(t,3),pi)}function Ts(e,t){return w(e,wo(t,3),hi)}function Ns(e,t){return null==e?e:vd(e,wo(t,3),Bs)}function As(e,t){return null==e?e:gd(e,wo(t,3),Bs)}function Is(e,t){return e&&pi(e,wo(t,3))}function Ds(e,t){return e&&hi(e,wo(t,3))}function js(e){return null==e?[]:mi(e,Rs(e))}function $s(e){return null==e?[]:mi(e,Bs(e))}function Ps(e,t,n){var i=null==e?re:vi(e,t);return i===re?n:i}function Ls(e,t){return null!=e&&Eo(e,t,_i)}function zs(e,t){return null!=e&&Eo(e,t,xi)}function Rs(e){return Wl(e)?An(e):Li(e)}function Bs(e){return Wl(e)?An(e,!0):zi(e)}function Fs(e,t){var n={};return t=wo(t,3),pi(e,function(e,i,r){ei(n,t(e,i,r),e)}),n}function Vs(e,t){var n={};return t=wo(t,3),pi(e,function(e,i,r){ei(n,i,t(e,i,r))}),n}function Hs(e,t){return Us(e,Al(wo(t)))}function Us(e,t){if(null==e)return{};var n=m(yo(e),function(e){return[e]});return t=wo(t),Ki(e,n,function(e,n){return t(e,n[0])})}function Ws(e,t,n){t=kr(t,e);var i=-1,r=t.length;for(r||(r=1,e=re);++i<r;){var o=null==e?re:e[Jo(t[i])];o===re&&(i=r,o=n),e=ts(o)?o.call(e):o}return e}function Ys(e,t,n){return null==e?e:or(e,t,n)}function Gs(e,t,n,i){return i="function"==typeof i?i:re,null==e?e:or(e,t,n,i)}function Ks(e,t,n){var i=gf(e),r=i||yf(e)||Cf(e);if(t=wo(t,4),null==n){var o=e&&e.constructor;n=r?i?new o:[]:rs(e)&&ts(o)?pd(Oc(e)):{}}return(r?u:pi)(e,function(e,i,r){return t(n,e,i,r)}),n}function Zs(e,t){return null==e||mr(e,t)}function Qs(e,t,n){return null==e?e:vr(e,t,wr(n))}function Xs(e,t,n,i){return i="function"==typeof i?i:re,null==e?e:vr(e,t,wr(n),i)}function Js(e){return null==e?[]:$(e,Rs(e))}function eu(e){return null==e?[]:$(e,Bs(e))}function tu(e,t,n){return n===re&&(n=t,t=re),n!==re&&(n=Cs(n),n=n===n?n:0),t!==re&&(t=Cs(t),t=t===t?t:0),ni(Cs(e),t,n)}function nu(e,t,n){return t=xs(t),n===re?(n=t,t=0):n=xs(n),e=Cs(e),wi(e,t,n)}function iu(e,t,n){if(n&&"boolean"!=typeof n&&$o(e,t,n)&&(t=n=re),n===re&&("boolean"==typeof t?(n=t,t=re):"boolean"==typeof e&&(n=e,e=re)),e===re&&t===re?(e=0,t=1):(e=xs(e),t===re?(t=e,e=0):t=xs(t)),e>t){var i=e;e=t,t=i}if(n||e%1||t%1){var r=Kc();return Wc(e+r*(t-e+En("1e-"+((r+"").length-1))),t)}return Ji(e,t)}function ru(e){return Zf(Os(e).toLowerCase())}function ou(e){return(e=Os(e))&&e.replace(Kt,Wn).replace(vn,"")}function au(e,t,n){e=Os(e),t=pr(t);var i=e.length;n=n===re?i:ni(ws(n),0,i);var r=n;return(n-=t.length)>=0&&e.slice(n,r)==t}function lu(e){return e=Os(e),e&&Ct.test(e)?e.replace(wt,Yn):e}function su(e){return e=Os(e),e&&It.test(e)?e.replace(At,"\\$&"):e}function uu(e,t,n){e=Os(e),t=ws(t);var i=t?J(e):0;if(!t||i>=t)return e;var r=(t-i)/2;return no(zc(r),n)+e+no(Lc(r),n)}function cu(e,t,n){e=Os(e),t=ws(t);var i=t?J(e):0;return t&&i<t?e+no(t-i,n):e}function du(e,t,n){e=Os(e),t=ws(t);var i=t?J(e):0;return t&&i<t?no(t-i,n)+e:e}function fu(e,t,n){return n||null==t?t=0:t&&(t=+t),Gc(Os(e).replace(jt,""),t||0)}function pu(e,t,n){return t=(n?$o(e,t,n):t===re)?1:ws(t),tr(Os(e),t)}function hu(){var e=arguments,t=Os(e[0]);return e.length<3?t:t.replace(e[1],e[2])}function mu(e,t,n){return n&&"number"!=typeof n&&$o(e,t,n)&&(t=n=re),(n=n===re?$e:n>>>0)?(e=Os(e),e&&("string"==typeof t||null!=t&&!wf(t))&&!(t=pr(t))&&V(e)?Cr(ee(e),0,n):e.split(t,n)):[]}function vu(e,t,n){return e=Os(e),n=null==n?0:ni(ws(n),0,e.length),t=pr(t),e.slice(n,n+t.length)==t}function gu(e,t,i){var r=n.templateSettings;i&&$o(e,t,i)&&(t=re),e=Os(e),t=Ef({},t,r,co);var o,a,l=Ef({},t.imports,r.imports,co),s=Rs(l),u=$(l,s),c=0,d=t.interpolate||Zt,f="__p += '",p=sc((t.escape||Zt).source+"|"+d.source+"|"+(d===Ot?Ft:Zt).source+"|"+(t.evaluate||Zt).source+"|$","g"),h="//# sourceURL="+("sourceURL"in t?t.sourceURL:"lodash.templateSources["+ ++wn+"]")+"\n";e.replace(p,function(t,n,i,r,l,s){return i||(i=r),f+=e.slice(c,s).replace(Qt,B),n&&(o=!0,f+="' +\n__e("+n+") +\n'"),l&&(a=!0,f+="';\n"+l+";\n__p += '"),i&&(f+="' +\n((__t = ("+i+")) == null ? '' : __t) +\n'"),c=s+t.length,t}),f+="';\n";var m=t.variable;m||(f="with (obj) {\n"+f+"\n}\n"),f=(a?f.replace(bt,""):f).replace(yt,"$1").replace(_t,"$1;"),f="function("+(m||"obj")+") {\n"+(m?"":"obj || (obj = {});\n")+"var __t, __p = ''"+(o?", __e = _.escape":"")+(a?", __j = Array.prototype.join;\nfunction print() { __p += __j.call(arguments, '') }\n":";\n")+f+"return __p\n}";var v=Qf(function(){return oc(s,h+"return "+f).apply(re,u)});if(v.source=f,Jl(v))throw v;return v}function bu(e){return Os(e).toLowerCase()}function yu(e){return Os(e).toUpperCase()}function _u(e,t,n){if((e=Os(e))&&(n||t===re))return e.replace(Dt,"");if(!e||!(t=pr(t)))return e;var i=ee(e),r=ee(t);return Cr(i,L(i,r),z(i,r)+1).join("")}function xu(e,t,n){if((e=Os(e))&&(n||t===re))return e.replace($t,"");if(!e||!(t=pr(t)))return e;var i=ee(e);return Cr(i,0,z(i,ee(t))+1).join("")}function wu(e,t,n){if((e=Os(e))&&(n||t===re))return e.replace(jt,"");if(!e||!(t=pr(t)))return e;var i=ee(e);return Cr(i,L(i,ee(t))).join("")}function ku(e,t){var n=Se,i=Oe;if(rs(t)){var r="separator"in t?t.separator:r;n="length"in t?ws(t.length):n,i="omission"in t?pr(t.omission):i}e=Os(e);var o=e.length;if(V(e)){var a=ee(e);o=a.length}if(n>=o)return e;var l=n-J(i);if(l<1)return i;var s=a?Cr(a,0,l).join(""):e.slice(0,l);if(r===re)return s+i;if(a&&(l+=s.length-l),wf(r)){if(e.slice(l).search(r)){var u,c=s;for(r.global||(r=sc(r.source,Os(Vt.exec(r))+"g")),r.lastIndex=0;u=r.exec(c);)var d=u.index;s=s.slice(0,d===re?l:d)}}else if(e.indexOf(pr(r),l)!=l){var f=s.lastIndexOf(r);f>-1&&(s=s.slice(0,f))}return s+i}function Cu(e){return e=Os(e),e&&kt.test(e)?e.replace(xt,Gn):e}function qu(e,t,n){return e=Os(e),t=n?re:t,t===re?H(e)?ie(e):x(e):e.match(t)||[]}function Su(e){var t=null==e?0:e.length,n=wo();return e=t?m(e,function(e){if("function"!=typeof e[1])throw new cc(le);return[n(e[0]),e[1]]}):[],nr(function(n){for(var i=-1;++i<t;){var r=e[i];if(l(r[0],this,n))return l(r[1],this,n)}})}function Ou(e){return ri(ii(e,de))}function Mu(e){return function(){return e}}function Eu(e,t){return null==e||e!==e?t:e}function Tu(e){return e}function Nu(e){return Pi("function"==typeof e?e:ii(e,de))}function Au(e){return Fi(ii(e,de))}function Iu(e,t){return Vi(e,ii(t,de))}function Du(e,t,n){var i=Rs(t),r=mi(t,i);null!=n||rs(t)&&(r.length||!i.length)||(n=t,t=e,e=this,r=mi(t,Rs(t)));var o=!(rs(n)&&"chain"in n&&!n.chain),a=ts(e);return u(r,function(n){var i=t[n];e[n]=i,a&&(e.prototype[n]=function(){var t=this.__chain__;if(o||t){var n=e(this.__wrapped__);return(n.__actions__=Pr(this.__actions__)).push({func:i,args:arguments,thisArg:e}),n.__chain__=t,n}return i.apply(e,v([this.value()],arguments))})}),e}function ju(){return In._===this&&(In._=xc),this}function $u(){}function Pu(e){return e=ws(e),nr(function(t){return Wi(t,e)})}function Lu(e){return Po(e)?M(Jo(e)):Zi(e)}function zu(e){return function(t){return null==e?re:vi(e,t)}}function Ru(){return[]}function Bu(){return!1}function Fu(){return{}}function Vu(){return""}function Hu(){return!0}function Uu(e,t){if((e=ws(e))<1||e>Ie)return[];var n=$e,i=Wc(e,$e);t=wo(t),e-=$e;for(var r=I(i,t);++n<e;)t(n);return r}function Wu(e){return gf(e)?m(e,Jo):vs(e)?[e]:Pr(Nd(Os(e)))}function Yu(e){var t=++gc;return Os(e)+t}function Gu(e){return e&&e.length?ui(e,Tu,yi):re}function Ku(e,t){return e&&e.length?ui(e,wo(t,2),yi):re}function Zu(e){return O(e,Tu)}function Qu(e,t){return O(e,wo(t,2))}function Xu(e){return e&&e.length?ui(e,Tu,Ri):re}function Ju(e,t){return e&&e.length?ui(e,wo(t,2),Ri):re}function ec(e){return e&&e.length?A(e,Tu):0}function tc(e,t){return e&&e.length?A(e,wo(t,2)):0}t=null==t?In:Kn.defaults(In.Object(),t,Kn.pick(In,xn));var nc=t.Array,ic=t.Date,rc=t.Error,oc=t.Function,ac=t.Math,lc=t.Object,sc=t.RegExp,uc=t.String,cc=t.TypeError,dc=nc.prototype,fc=oc.prototype,pc=lc.prototype,hc=t["__core-js_shared__"],mc=fc.toString,vc=pc.hasOwnProperty,gc=0,bc=function(){var e=/[^.]+$/.exec(hc&&hc.keys&&hc.keys.IE_PROTO||"");return e?"Symbol(src)_1."+e:""}(),yc=pc.toString,_c=mc.call(lc),xc=In._,wc=sc("^"+mc.call(vc).replace(At,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$"),kc=$n?t.Buffer:re,Cc=t.Symbol,qc=t.Uint8Array,Sc=kc?kc.allocUnsafe:re,Oc=Y(lc.getPrototypeOf,lc),Mc=lc.create,Ec=pc.propertyIsEnumerable,Tc=dc.splice,Nc=Cc?Cc.isConcatSpreadable:re,Ac=Cc?Cc.iterator:re,Ic=Cc?Cc.toStringTag:re,Dc=function(){try{var e=qo(lc,"defineProperty");return e({},"",{}),e}catch(e){}}(),jc=t.clearTimeout!==In.clearTimeout&&t.clearTimeout,$c=ic&&ic.now!==In.Date.now&&ic.now,Pc=t.setTimeout!==In.setTimeout&&t.setTimeout,Lc=ac.ceil,zc=ac.floor,Rc=lc.getOwnPropertySymbols,Bc=kc?kc.isBuffer:re,Fc=t.isFinite,Vc=dc.join,Hc=Y(lc.keys,lc),Uc=ac.max,Wc=ac.min,Yc=ic.now,Gc=t.parseInt,Kc=ac.random,Zc=dc.reverse,Qc=qo(t,"DataView"),Xc=qo(t,"Map"),Jc=qo(t,"Promise"),ed=qo(t,"Set"),td=qo(t,"WeakMap"),nd=qo(lc,"create"),id=td&&new td,rd={},od=ea(Qc),ad=ea(Xc),ld=ea(Jc),sd=ea(ed),ud=ea(td),cd=Cc?Cc.prototype:re,dd=cd?cd.valueOf:re,fd=cd?cd.toString:re,pd=function(){function e(){}return function(t){if(!rs(t))return{};if(Mc)return Mc(t);e.prototype=t;var n=new e;return e.prototype=re,n}}();n.templateSettings={escape:qt,evaluate:St,interpolate:Ot,variable:"",imports:{_:n}},n.prototype=i.prototype,n.prototype.constructor=n,r.prototype=pd(i.prototype),r.prototype.constructor=r,_.prototype=pd(i.prototype),_.prototype.constructor=_,ne.prototype.clear=Rt,ne.prototype.delete=Xt,ne.prototype.get=Jt,ne.prototype.has=en,ne.prototype.set=tn,nn.prototype.clear=rn,nn.prototype.delete=on,nn.prototype.get=an,nn.prototype.has=ln,nn.prototype.set=sn,un.prototype.clear=cn,un.prototype.delete=dn,un.prototype.get=fn,un.prototype.has=pn,un.prototype.set=hn,gn.prototype.add=gn.prototype.push=bn,gn.prototype.has=yn,_n.prototype.clear=qn,_n.prototype.delete=Sn,_n.prototype.get=On,_n.prototype.has=Mn,_n.prototype.set=Nn;var hd=Vr(pi),md=Vr(hi,!0),vd=Hr(),gd=Hr(!0),bd=id?function(e,t){return id.set(e,t),e}:Tu,yd=Dc?function(e,t){return Dc(e,"toString",{configurable:!0,enumerable:!1,value:Mu(t),writable:!0})}:Tu,_d=nr,xd=jc||function(e){return In.clearTimeout(e)},wd=ed&&1/K(new ed([,-0]))[1]==Ae?function(e){return new ed(e)}:$u,kd=id?function(e){return id.get(e)}:$u,Cd=Rc?function(e){return null==e?[]:(e=lc(e),f(Rc(e),function(t){return Ec.call(e,t)}))}:Ru,qd=Rc?function(e){for(var t=[];e;)v(t,Cd(e)),e=Oc(e);return t}:Ru,Sd=bi;(Qc&&Sd(new Qc(new ArrayBuffer(1)))!=st||Xc&&Sd(new Xc)!=Ke||Jc&&"[object Promise]"!=Sd(Jc.resolve())||ed&&Sd(new ed)!=tt||td&&Sd(new td)!=ot)&&(Sd=function(e){var t=bi(e),n=t==Xe?e.constructor:re,i=n?ea(n):"";if(i)switch(i){case od:return st;case ad:return Ke;case ld:return"[object Promise]";case sd:return tt;case ud:return ot}return t});var Od=hc?ts:Bu,Md=Qo(bd),Ed=Pc||function(e,t){return In.setTimeout(e,t)},Td=Qo(yd),Nd=function(e){var t=Nl(e,function(e){return n.size===ue&&n.clear(),e}),n=t.cache;return t}(function(e){var t=[];return Tt.test(e)&&t.push(""),e.replace(Nt,function(e,n,i,r){t.push(i?r.replace(Bt,"$1"):n||e)}),t}),Ad=nr(function(e,t){return Yl(e)?li(e,fi(t,1,Yl,!0)):[]}),Id=nr(function(e,t){var n=xa(t);return Yl(n)&&(n=re),Yl(e)?li(e,fi(t,1,Yl,!0),wo(n,2)):[]}),Dd=nr(function(e,t){var n=xa(t);return Yl(n)&&(n=re),Yl(e)?li(e,fi(t,1,Yl,!0),re,n):[]}),jd=nr(function(e){var t=m(e,xr);return t.length&&t[0]===e[0]?ki(t):[]}),$d=nr(function(e){var t=xa(e),n=m(e,xr);return t===xa(n)?t=re:n.pop(),n.length&&n[0]===e[0]?ki(n,wo(t,2)):[]}),Pd=nr(function(e){var t=xa(e),n=m(e,xr);return t="function"==typeof t?t:re,t&&n.pop(),n.length&&n[0]===e[0]?ki(n,re,t):[]}),Ld=nr(Ca),zd=go(function(e,t){var n=null==e?0:e.length,i=ti(e,t);return Xi(e,m(t,function(e){return jo(e,n)?+e:e}).sort(Ir)),i}),Rd=nr(function(e){return hr(fi(e,1,Yl,!0))}),Bd=nr(function(e){var t=xa(e);return Yl(t)&&(t=re),hr(fi(e,1,Yl,!0),wo(t,2))}),Fd=nr(function(e){var t=xa(e);return t="function"==typeof t?t:re,hr(fi(e,1,Yl,!0),re,t)}),Vd=nr(function(e,t){return Yl(e)?li(e,t):[]}),Hd=nr(function(e){return yr(f(e,Yl))}),Ud=nr(function(e){var t=xa(e);return Yl(t)&&(t=re),yr(f(e,Yl),wo(t,2))}),Wd=nr(function(e){var t=xa(e);return t="function"==typeof t?t:re,yr(f(e,Yl),re,t)}),Yd=nr(Wa),Gd=nr(function(e){var t=e.length,n=t>1?e[t-1]:re;return n="function"==typeof n?(e.pop(),n):re,Ya(e,n)}),Kd=go(function(e){var t=e.length,n=t?e[0]:0,i=this.__wrapped__,o=function(t){return ti(t,e)};return!(t>1||this.__actions__.length)&&i instanceof _&&jo(n)?(i=i.slice(n,+n+(t?1:0)),i.__actions__.push({func:Xa,args:[o],thisArg:re}),new r(i,this.__chain__).thru(function(e){return t&&!e.length&&e.push(re),e})):this.thru(o)}),Zd=Br(function(e,t,n){vc.call(e,n)?++e[n]:ei(e,n,1)}),Qd=Zr(da),Xd=Zr(fa),Jd=Br(function(e,t,n){vc.call(e,n)?e[n].push(t):ei(e,n,[t])}),ef=nr(function(e,t,n){var i=-1,r="function"==typeof t,o=Wl(e)?nc(e.length):[];return hd(e,function(e){o[++i]=r?l(t,e,n):qi(e,t,n)}),o}),tf=Br(function(e,t,n){ei(e,n,t)}),nf=Br(function(e,t,n){e[n?0:1].push(t)},function(){return[[],[]]}),rf=nr(function(e,t){if(null==e)return[];var n=t.length;return n>1&&$o(e,t[0],t[1])?t=[]:n>2&&$o(t[0],t[1],t[2])&&(t=[t[0]]),Yi(e,fi(t,1),[])}),of=$c||function(){return In.Date.now()},af=nr(function(e,t,n){var i=ve;if(n.length){var r=G(n,xo(af));i|=xe}return uo(e,i,t,n,r)}),lf=nr(function(e,t,n){var i=ve|ge;if(n.length){var r=G(n,xo(lf));i|=xe}return uo(t,i,e,n,r)}),sf=nr(function(e,t){return ai(e,1,t)}),uf=nr(function(e,t,n){return ai(e,Cs(t)||0,n)});Nl.Cache=un;var cf=_d(function(e,t){t=1==t.length&&gf(t[0])?m(t[0],j(wo())):m(fi(t,1),j(wo()));var n=t.length;return nr(function(i){for(var r=-1,o=Wc(i.length,n);++r<o;)i[r]=t[r].call(this,i[r]);return l(e,this,i)})}),df=nr(function(e,t){var n=G(t,xo(df));return uo(e,xe,re,t,n)}),ff=nr(function(e,t){var n=G(t,xo(ff));return uo(e,we,re,t,n)}),pf=go(function(e,t){return uo(e,Ce,re,re,re,t)}),hf=oo(yi),mf=oo(function(e,t){return e>=t}),vf=Si(function(){return arguments}())?Si:function(e){return os(e)&&vc.call(e,"callee")&&!Ec.call(e,"callee")},gf=nc.isArray,bf=zn?j(zn):Oi,yf=Bc||Bu,_f=Rn?j(Rn):Mi,xf=Bn?j(Bn):Ni,wf=Fn?j(Fn):Di,kf=Vn?j(Vn):ji,Cf=Hn?j(Hn):$i,qf=oo(Ri),Sf=oo(function(e,t){return e<=t}),Of=Fr(function(e,t){if(Bo(t)||Wl(t))return void Lr(t,Rs(t),e);for(var n in t)vc.call(t,n)&&Un(e,n,t[n])}),Mf=Fr(function(e,t){Lr(t,Bs(t),e)}),Ef=Fr(function(e,t,n,i){Lr(t,Bs(t),e,i)}),Tf=Fr(function(e,t,n,i){Lr(t,Rs(t),e,i)}),Nf=go(ti),Af=nr(function(e){return e.push(re,co),l(Ef,re,e)}),If=nr(function(e){return e.push(re,fo),l(Lf,re,e)}),Df=Jr(function(e,t,n){e[t]=n},Mu(Tu)),jf=Jr(function(e,t,n){vc.call(e,t)?e[t].push(n):e[t]=[n]},wo),$f=nr(qi),Pf=Fr(function(e,t,n){Hi(e,t,n)}),Lf=Fr(function(e,t,n,i){Hi(e,t,n,i)}),zf=go(function(e,t){var n={};if(null==e)return n;var i=!1;t=m(t,function(t){return t=kr(t,e),i||(i=t.length>1),t}),Lr(e,yo(e),n),i&&(n=ii(n,de|fe|pe,po));for(var r=t.length;r--;)mr(n,t[r]);return n}),Rf=go(function(e,t){return null==e?{}:Gi(e,t)}),Bf=so(Rs),Ff=so(Bs),Vf=Yr(function(e,t,n){return t=t.toLowerCase(),e+(n?ru(t):t)}),Hf=Yr(function(e,t,n){return e+(n?"-":"")+t.toLowerCase()}),Uf=Yr(function(e,t,n){return e+(n?" ":"")+t.toLowerCase()}),Wf=Wr("toLowerCase"),Yf=Yr(function(e,t,n){return e+(n?"_":"")+t.toLowerCase()}),Gf=Yr(function(e,t,n){return e+(n?" ":"")+Zf(t)}),Kf=Yr(function(e,t,n){return e+(n?" ":"")+t.toUpperCase()}),Zf=Wr("toUpperCase"),Qf=nr(function(e,t){try{return l(e,re,t)}catch(e){return Jl(e)?e:new rc(e)}}),Xf=go(function(e,t){return u(t,function(t){t=Jo(t),ei(e,t,af(e[t],e))}),e}),Jf=Qr(),ep=Qr(!0),tp=nr(function(e,t){return function(n){return qi(n,e,t)}}),np=nr(function(e,t){return function(n){return qi(e,n,t)}}),ip=to(m),rp=to(d),op=to(y),ap=ro(),lp=ro(!0),sp=eo(function(e,t){return e+t},0),up=lo("ceil"),cp=eo(function(e,t){return e/t},1),dp=lo("floor"),fp=eo(function(e,t){return e*t},1),pp=lo("round"),hp=eo(function(e,t){return e-t},0);return n.after=Cl,n.ary=ql,n.assign=Of,n.assignIn=Mf,n.assignInWith=Ef,n.assignWith=Tf,n.at=Nf,n.before=Sl,n.bind=af,n.bindAll=Xf,n.bindKey=lf,n.castArray=zl,n.chain=Za,n.chunk=ia,n.compact=ra,n.concat=oa,n.cond=Su,n.conforms=Ou,n.constant=Mu,n.countBy=Zd,n.create=Ms,n.curry=Ol,n.curryRight=Ml,n.debounce=El,n.defaults=Af,n.defaultsDeep=If,n.defer=sf,n.delay=uf,n.difference=Ad,n.differenceBy=Id,n.differenceWith=Dd,n.drop=aa,n.dropRight=la,n.dropRightWhile=sa,n.dropWhile=ua,n.fill=ca,n.filter=ll,n.flatMap=sl,n.flatMapDeep=ul,n.flatMapDepth=cl,n.flatten=pa,n.flattenDeep=ha,n.flattenDepth=ma,n.flip=Tl,n.flow=Jf,n.flowRight=ep,n.fromPairs=va,n.functions=js,n.functionsIn=$s,n.groupBy=Jd,n.initial=ya,n.intersection=jd,n.intersectionBy=$d,n.intersectionWith=Pd,n.invert=Df,n.invertBy=jf,n.invokeMap=ef,n.iteratee=Nu,n.keyBy=tf,n.keys=Rs,n.keysIn=Bs,n.map=hl,n.mapKeys=Fs,n.mapValues=Vs,n.matches=Au,n.matchesProperty=Iu,n.memoize=Nl,n.merge=Pf,n.mergeWith=Lf,n.method=tp,n.methodOf=np,n.mixin=Du,n.negate=Al,n.nthArg=Pu,n.omit=zf,n.omitBy=Hs,n.once=Il,n.orderBy=ml,n.over=ip,n.overArgs=cf,n.overEvery=rp,n.overSome=op,n.partial=df,n.partialRight=ff,n.partition=nf,n.pick=Rf,n.pickBy=Us,n.property=Lu,n.propertyOf=zu,n.pull=Ld,n.pullAll=Ca,n.pullAllBy=qa,n.pullAllWith=Sa,n.pullAt=zd,n.range=ap,n.rangeRight=lp,n.rearg=pf,n.reject=bl,n.remove=Oa,n.rest=Dl,n.reverse=Ma,n.sampleSize=_l,n.set=Ys,n.setWith=Gs,n.shuffle=xl,n.slice=Ea,n.sortBy=rf,n.sortedUniq=$a,n.sortedUniqBy=Pa,n.split=mu,n.spread=jl,n.tail=La,n.take=za,n.takeRight=Ra,n.takeRightWhile=Ba,n.takeWhile=Fa,n.tap=Qa,n.throttle=$l,n.thru=Xa,n.toArray=_s,n.toPairs=Bf,n.toPairsIn=Ff,n.toPath=Wu,n.toPlainObject=qs,n.transform=Ks,n.unary=Pl,n.union=Rd,n.unionBy=Bd,n.unionWith=Fd,n.uniq=Va,n.uniqBy=Ha,n.uniqWith=Ua,n.unset=Zs,n.unzip=Wa,n.unzipWith=Ya,n.update=Qs,n.updateWith=Xs,n.values=Js,n.valuesIn=eu,n.without=Vd,n.words=qu,n.wrap=Ll,n.xor=Hd,n.xorBy=Ud,n.xorWith=Wd,n.zip=Yd,n.zipObject=Ga,n.zipObjectDeep=Ka,n.zipWith=Gd,n.entries=Bf,n.entriesIn=Ff,n.extend=Mf,n.extendWith=Ef,Du(n,n),n.add=sp,n.attempt=Qf,n.camelCase=Vf,n.capitalize=ru,n.ceil=up,n.clamp=tu,n.clone=Rl,n.cloneDeep=Fl,n.cloneDeepWith=Vl,n.cloneWith=Bl,n.conformsTo=Hl,n.deburr=ou,n.defaultTo=Eu,n.divide=cp,n.endsWith=au,n.eq=Ul,n.escape=lu,n.escapeRegExp=su,n.every=al,n.find=Qd,n.findIndex=da,n.findKey=Es,n.findLast=Xd,n.findLastIndex=fa,n.findLastKey=Ts,n.floor=dp,n.forEach=dl,n.forEachRight=fl,n.forIn=Ns,n.forInRight=As,n.forOwn=Is,n.forOwnRight=Ds,n.get=Ps,n.gt=hf,n.gte=mf,n.has=Ls,n.hasIn=zs,n.head=ga,n.identity=Tu,n.includes=pl,n.indexOf=ba,n.inRange=nu,n.invoke=$f,n.isArguments=vf,n.isArray=gf,n.isArrayBuffer=bf,n.isArrayLike=Wl,n.isArrayLikeObject=Yl,n.isBoolean=Gl,n.isBuffer=yf,n.isDate=_f,n.isElement=Kl,n.isEmpty=Zl,n.isEqual=Ql,n.isEqualWith=Xl,n.isError=Jl,n.isFinite=es,n.isFunction=ts,n.isInteger=ns,n.isLength=is,n.isMap=xf,n.isMatch=as,n.isMatchWith=ls,n.isNaN=ss,n.isNative=us,n.isNil=ds,n.isNull=cs,n.isNumber=fs,n.isObject=rs,n.isObjectLike=os,n.isPlainObject=ps,n.isRegExp=wf,n.isSafeInteger=hs,n.isSet=kf,n.isString=ms,n.isSymbol=vs,n.isTypedArray=Cf,n.isUndefined=gs,n.isWeakMap=bs,n.isWeakSet=ys,n.join=_a,n.kebabCase=Hf,n.last=xa,n.lastIndexOf=wa,n.lowerCase=Uf,n.lowerFirst=Wf,n.lt=qf,n.lte=Sf,n.max=Gu,n.maxBy=Ku,n.mean=Zu,n.meanBy=Qu,n.min=Xu,n.minBy=Ju,n.stubArray=Ru,n.stubFalse=Bu,n.stubObject=Fu,n.stubString=Vu,n.stubTrue=Hu,n.multiply=fp,n.nth=ka,n.noConflict=ju,n.noop=$u,n.now=of,n.pad=uu,n.padEnd=cu,n.padStart=du,n.parseInt=fu,n.random=iu,n.reduce=vl,n.reduceRight=gl,n.repeat=pu,n.replace=hu,n.result=Ws,n.round=pp,n.runInContext=e,n.sample=yl,n.size=wl,n.snakeCase=Yf,n.some=kl,n.sortedIndex=Ta,n.sortedIndexBy=Na,n.sortedIndexOf=Aa,n.sortedLastIndex=Ia,n.sortedLastIndexBy=Da,n.sortedLastIndexOf=ja,n.startCase=Gf,n.startsWith=vu,n.subtract=hp,n.sum=ec,n.sumBy=tc,n.template=gu,n.times=Uu,n.toFinite=xs,n.toInteger=ws,n.toLength=ks,n.toLower=bu,n.toNumber=Cs,n.toSafeInteger=Ss,n.toString=Os,n.toUpper=yu,n.trim=_u,n.trimEnd=xu,n.trimStart=wu,n.truncate=ku,n.unescape=Cu,n.uniqueId=Yu,n.upperCase=Kf,n.upperFirst=Zf,n.each=dl,n.eachRight=fl,n.first=ga,Du(n,function(){var e={};return pi(n,function(t,i){vc.call(n.prototype,i)||(e[i]=t)}),e}(),{chain:!1}),n.VERSION="4.17.4",u(["bind","bindKey","curry","curryRight","partial","partialRight"],function(e){n[e].placeholder=n}),u(["drop","take"],function(e,t){_.prototype[e]=function(n){n=n===re?1:Uc(ws(n),0);var i=this.__filtered__&&!t?new _(this):this.clone();return i.__filtered__?i.__takeCount__=Wc(n,i.__takeCount__):i.__views__.push({size:Wc(n,$e),type:e+(i.__dir__<0?"Right":"")}),i},_.prototype[e+"Right"]=function(t){return this.reverse()[e](t).reverse()}}),u(["filter","map","takeWhile"],function(e,t){var n=t+1,i=n==Te||3==n;_.prototype[e]=function(e){var t=this.clone();return t.__iteratees__.push({iteratee:wo(e,3),type:n}),t.__filtered__=t.__filtered__||i,t}}),u(["head","last"],function(e,t){var n="take"+(t?"Right":"");_.prototype[e]=function(){return this[n](1).value()[0]}}),u(["initial","tail"],function(e,t){var n="drop"+(t?"":"Right");_.prototype[e]=function(){return this.__filtered__?new _(this):this[n](1)}}),_.prototype.compact=function(){return this.filter(Tu)},_.prototype.find=function(e){return this.filter(e).head()},_.prototype.findLast=function(e){return this.reverse().find(e)},_.prototype.invokeMap=nr(function(e,t){return"function"==typeof e?new _(this):this.map(function(n){return qi(n,e,t)})}),_.prototype.reject=function(e){return this.filter(Al(wo(e)))},_.prototype.slice=function(e,t){e=ws(e);var n=this;return n.__filtered__&&(e>0||t<0)?new _(n):(e<0?n=n.takeRight(-e):e&&(n=n.drop(e)),t!==re&&(t=ws(t),n=t<0?n.dropRight(-t):n.take(t-e)),n)},_.prototype.takeRightWhile=function(e){return this.reverse().takeWhile(e).reverse()},_.prototype.toArray=function(){return this.take($e)},pi(_.prototype,function(e,t){var i=/^(?:filter|find|map|reject)|While$/.test(t),o=/^(?:head|last)$/.test(t),a=n[o?"take"+("last"==t?"Right":""):t],l=o||/^find/.test(t);a&&(n.prototype[t]=function(){var t=this.__wrapped__,s=o?[1]:arguments,u=t instanceof _,c=s[0],d=u||gf(t),f=function(e){var t=a.apply(n,v([e],s));return o&&p?t[0]:t};d&&i&&"function"==typeof c&&1!=c.length&&(u=d=!1);var p=this.__chain__,h=!!this.__actions__.length,m=l&&!p,g=u&&!h;if(!l&&d){t=g?t:new _(this);var b=e.apply(t,s);return b.__actions__.push({func:Xa,args:[f],thisArg:re}),new r(b,p)}return m&&g?e.apply(this,s):(b=this.thru(f),m?o?b.value()[0]:b.value():b)})}),u(["pop","push","shift","sort","splice","unshift"],function(e){var t=dc[e],i=/^(?:push|sort|unshift)$/.test(e)?"tap":"thru",r=/^(?:pop|shift)$/.test(e);n.prototype[e]=function(){var e=arguments;if(r&&!this.__chain__){var n=this.value();return t.apply(gf(n)?n:[],e)}return this[i](function(n){return t.apply(gf(n)?n:[],e)})}}),pi(_.prototype,function(e,t){var i=n[t];if(i){var r=i.name+"";(rd[r]||(rd[r]=[])).push({name:t,func:i})}}),rd[Xr(re,ge).name]=[{name:"wrapper",func:re}],_.prototype.clone=E,_.prototype.reverse=Q,_.prototype.value=te,n.prototype.at=Kd,n.prototype.chain=Ja,n.prototype.commit=el,n.prototype.next=tl,n.prototype.plant=il,n.prototype.reverse=rl,n.prototype.toJSON=n.prototype.valueOf=n.prototype.value=ol,n.prototype.first=n.prototype.head,Ac&&(n.prototype[Ac]=nl),n}();In._=Kn,(r=function(){return Kn}.call(t,n,t,i))!==re&&(i.exports=r)}).call(this)}).call(t,n(10),n(20)(e))},function(e,t,n){e.exports=function(e){function t(i){if(n[i])return n[i].exports;var r=n[i]={exports:{},id:i,loaded:!1};return e[i].call(r.exports,r,r.exports,t),r.loaded=!0,r.exports}var n={};return t.m=e,t.c=n,t.p="/dist/",t(0)}({0:function(e,t,n){e.exports=n(166)},3:function(e,t){e.exports=function(e,t,n,i,r){var o,a=e=e||{},l=typeof e.default;"object"!==l&&"function"!==l||(o=e,a=e.default);var s="function"==typeof a?a.options:a;t&&(s.render=t.render,s.staticRenderFns=t.staticRenderFns),i&&(s._scopeId=i);var u;if(r?(u=function(e){e=e||this.$vnode&&this.$vnode.ssrContext,e||"undefined"==typeof __VUE_SSR_CONTEXT__||(e=__VUE_SSR_CONTEXT__),n&&n.call(this,e),e&&e._registeredComponents&&e._registeredComponents.add(r)},s._ssrRegister=u):n&&(u=n),u){var c=s.beforeCreate;s.beforeCreate=c?[].concat(c,u):[u]}return{esModule:o,exports:a,options:s}}},14:function(e,t){e.exports=n(8)},166:function(e,t,n){"use strict";t.__esModule=!0;var i=n(167),r=function(e){return e&&e.__esModule?e:{default:e}}(i);r.default.install=function(e){e.component(r.default.name,r.default)},t.default=r.default},167:function(e,t,n){var i=n(3)(n(168),n(171),null,null,null);e.exports=i.exports},168:function(e,t,n){"use strict";function i(e){return e&&e.__esModule?e:{default:e}}t.__esModule=!0;var r=n(14),o=i(r),a=n(169),l=i(a),s=n(170),u=i(s);t.default={name:"ElInput",componentName:"ElInput",mixins:[o.default],data:function(){return{currentValue:this.value,textareaCalcStyle:{}}},props:{value:[String,Number],placeholder:String,size:String,resize:String,readonly:Boolean,autofocus:Boolean,icon:String,disabled:Boolean,type:{type:String,default:"text"},name:String,autosize:{type:[Boolean,Object],default:!1},rows:{type:Number,default:2},autoComplete:{type:String,default:"off"},form:String,maxlength:Number,minlength:Number,max:{},min:{},step:{},validateEvent:{type:Boolean,default:!0},onIconClick:Function},computed:{validating:function(){return"validating"===this.$parent.validateState},textareaStyle:function(){return(0,u.default)({},this.textareaCalcStyle,{resize:this.resize})}},watch:{value:function(e,t){this.setCurrentValue(e)}},methods:{handleBlur:function(e){this.$emit("blur",e),this.validateEvent&&this.dispatch("ElFormItem","el.form.blur",[this.currentValue])},inputSelect:function(){this.$refs.input.select()},resizeTextarea:function(){if(!this.$isServer){var e=this.autosize,t=this.type;if(e&&"textarea"===t){var n=e.minRows,i=e.maxRows;this.textareaCalcStyle=(0,l.default)(this.$refs.textarea,n,i)}}},handleFocus:function(e){this.$emit("focus",e)},handleInput:function(e){var t=e.target.value;this.$emit("input",t),this.setCurrentValue(t),this.$emit("change",t)},handleIconClick:function(e){this.onIconClick&&this.onIconClick(e),this.$emit("click",e)},setCurrentValue:function(e){var t=this;e!==this.currentValue&&(this.$nextTick(function(e){t.resizeTextarea()}),this.currentValue=e,this.validateEvent&&this.dispatch("ElFormItem","el.form.change",[e]))}},created:function(){this.$on("inputSelect",this.inputSelect)},mounted:function(){this.resizeTextarea()}}},169:function(e,t){"use strict";function n(e){var t=window.getComputedStyle(e),n=t.getPropertyValue("box-sizing"),i=parseFloat(t.getPropertyValue("padding-bottom"))+parseFloat(t.getPropertyValue("padding-top")),r=parseFloat(t.getPropertyValue("border-bottom-width"))+parseFloat(t.getPropertyValue("border-top-width"));return{contextStyle:a.map(function(e){return e+":"+t.getPropertyValue(e)}).join(";"),paddingSize:i,borderSize:r,boxSizing:n}}function i(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null,i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:null;r||(r=document.createElement("textarea"),document.body.appendChild(r));var a=n(e),l=a.paddingSize,s=a.borderSize,u=a.boxSizing,c=a.contextStyle;r.setAttribute("style",c+";"+o),r.value=e.value||e.placeholder||"";var d=r.scrollHeight;"border-box"===u?d+=s:"content-box"===u&&(d-=l),r.value="";var f=r.scrollHeight-l;if(null!==t){var p=f*t;"border-box"===u&&(p=p+l+s),d=Math.max(p,d)}if(null!==i){var h=f*i;"border-box"===u&&(h=h+l+s),d=Math.min(h,d)}return{height:d+"px"}}t.__esModule=!0,t.default=i;var r=void 0,o="\n height:0 !important;\n visibility:hidden !important;\n overflow:hidden !important;\n position:absolute !important;\n z-index:-1000 !important;\n top:0 !important;\n right:0 !important\n",a=["letter-spacing","line-height","padding-top","padding-bottom","font-family","font-weight","font-size","text-rendering","text-transform","width","text-indent","padding-left","padding-right","border-width","box-sizing"]},170:function(e,t){e.exports=n(15)},171:function(e,t){e.exports={render:function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{class:["textarea"===e.type?"el-textarea":"el-input",e.size?"el-input--"+e.size:"",{"is-disabled":e.disabled,"el-input-group":e.$slots.prepend||e.$slots.append,"el-input-group--append":e.$slots.append,"el-input-group--prepend":e.$slots.prepend}]},["textarea"!==e.type?[e.$slots.prepend?n("div",{staticClass:"el-input-group__prepend"},[e._t("prepend")],2):e._e(),e._t("icon",[e.icon?n("i",{staticClass:"el-input__icon",class:["el-icon-"+e.icon,e.onIconClick?"is-clickable":""],on:{click:e.handleIconClick}}):e._e()]),"textarea"!==e.type?n("input",e._b({ref:"input",staticClass:"el-input__inner",attrs:{autocomplete:e.autoComplete},domProps:{value:e.currentValue},on:{input:e.handleInput,focus:e.handleFocus,blur:e.handleBlur}},"input",e.$props)):e._e(),e.validating?n("i",{staticClass:"el-input__icon el-icon-loading"}):e._e(),e.$slots.append?n("div",{staticClass:"el-input-group__append"},[e._t("append")],2):e._e()]:n("textarea",e._b({ref:"textarea",staticClass:"el-textarea__inner",style:e.textareaStyle,domProps:{value:e.currentValue},on:{input:e.handleInput,focus:e.handleFocus,blur:e.handleBlur}},"textarea",e.$props))],2)},staticRenderFns:[]}}})},function(e,t,n){"use strict";t.__esModule=!0,t.default=function(e){for(var t=1,n=arguments.length;t<n;t++){var i=arguments[t]||{};for(var r in i)if(i.hasOwnProperty(r)){var o=i[r];void 0!==o&&(e[r]=o)}}return e}},function(e,t,n){"use strict";t.__esModule=!0;var i=n(5),r=function(e){return e&&e.__esModule?e:{default:e}}(i),o=n(26),a=r.default.prototype.$isServer?function(){}:n(85),l=function(e){return e.stopPropagation()};t.default={props:{placement:{type:String,default:"bottom"},boundariesPadding:{type:Number,default:5},reference:{},popper:{},offset:{default:0},value:Boolean,visibleArrow:Boolean,transition:String,appendToBody:{type:Boolean,default:!0},popperOptions:{type:Object,default:function(){return{gpuAcceleration:!1}}}},data:function(){return{showPopper:!1,currentPlacement:""}},watch:{value:{immediate:!0,handler:function(e){this.showPopper=e,this.$emit("input",e)}},showPopper:function(e){e?this.updatePopper():this.destroyPopper(),this.$emit("input",e)}},methods:{createPopper:function(){var e=this;if(!this.$isServer&&(this.currentPlacement=this.currentPlacement||this.placement,/^(top|bottom|left|right)(-start|-end)?$/g.test(this.currentPlacement))){var t=this.popperOptions,n=this.popperElm=this.popperElm||this.popper||this.$refs.popper,i=this.referenceElm=this.referenceElm||this.reference||this.$refs.reference;!i&&this.$slots.reference&&this.$slots.reference[0]&&(i=this.referenceElm=this.$slots.reference[0].elm),n&&i&&(this.visibleArrow&&this.appendArrow(n),this.appendToBody&&document.body.appendChild(this.popperElm),this.popperJS&&this.popperJS.destroy&&this.popperJS.destroy(),t.placement=this.currentPlacement,t.offset=this.offset,this.popperJS=new a(i,n,t),this.popperJS.onCreate(function(t){e.$emit("created",e),e.resetTransformOrigin(),e.$nextTick(e.updatePopper)}),"function"==typeof t.onUpdate&&this.popperJS.onUpdate(t.onUpdate),this.popperJS._popper.style.zIndex=o.PopupManager.nextZIndex(),this.popperElm.addEventListener("click",l))}},updatePopper:function(){this.popperJS?this.popperJS.update():this.createPopper()},doDestroy:function(){!this.showPopper&&this.popperJS&&(this.popperJS.destroy(),this.popperJS=null)},destroyPopper:function(){this.popperJS&&this.resetTransformOrigin()},resetTransformOrigin:function(){var e={top:"bottom",bottom:"top",left:"right",right:"left"},t=this.popperJS._popper.getAttribute("x-placement").split("-")[0],n=e[t];this.popperJS._popper.style.transformOrigin=["top","bottom"].indexOf(t)>-1?"center "+n:n+" center"},appendArrow:function(e){var t=void 0;if(!this.appended){this.appended=!0;for(var n in e.attributes)if(/^_v-/.test(e.attributes[n].name)){t=e.attributes[n].name;break}var i=document.createElement("div");t&&i.setAttribute(t,""),i.setAttribute("x-arrow",""),i.className="popper__arrow",e.appendChild(i)}}},beforeDestroy:function(){this.doDestroy(),this.popperElm&&this.popperElm.parentNode===document.body&&(this.popperElm.removeEventListener("click",l),document.body.removeChild(this.popperElm))},deactivated:function(){this.$options.beforeDestroy[0].call(this)}}},function(e,t,n){"use strict";t.__esModule=!0,t.default=function(){if(r.default.prototype.$isServer)return 0;if(void 0!==o)return o;var e=document.createElement("div");e.className="el-scrollbar__wrap",e.style.visibility="hidden",e.style.width="100px",e.style.position="absolute",e.style.top="-9999px",document.body.appendChild(e);var t=e.offsetWidth;e.style.overflow="scroll";var n=document.createElement("div");n.style.width="100%",e.appendChild(n);var i=n.offsetWidth;return e.parentNode.removeChild(e),o=t-i};var i=n(5),r=function(e){return e&&e.__esModule?e:{default:e}}(i),o=void 0},function(e,t,n){"use strict";t.__esModule=!0;var i="undefined"==typeof window,r=function(){if(!i){var e=window.requestAnimationFrame||window.mozRequestAnimationFrame||window.webkitRequestAnimationFrame||function(e){return window.setTimeout(e,20)};return function(t){return e(t)}}}(),o=function(){if(!i){var e=window.cancelAnimationFrame||window.mozCancelAnimationFrame||window.webkitCancelAnimationFrame||window.clearTimeout;return function(t){return e(t)}}}(),a=function(e){var t=e.__resizeTrigger__,n=t.firstElementChild,i=t.lastElementChild,r=n.firstElementChild;i.scrollLeft=i.scrollWidth,i.scrollTop=i.scrollHeight,r.style.width=n.offsetWidth+1+"px",r.style.height=n.offsetHeight+1+"px",n.scrollLeft=n.scrollWidth,n.scrollTop=n.scrollHeight},l=function(e){return e.offsetWidth!==e.__resizeLast__.width||e.offsetHeight!==e.__resizeLast__.height},s=function(e){var t=this;a(this),this.__resizeRAF__&&o(this.__resizeRAF__),this.__resizeRAF__=r(function(){l(t)&&(t.__resizeLast__.width=t.offsetWidth,t.__resizeLast__.height=t.offsetHeight,t.__resizeListeners__.forEach(function(n){n.call(t,e)}))})},u=i?{}:document.attachEvent,c="Webkit Moz O ms".split(" "),d="webkitAnimationStart animationstart oAnimationStart MSAnimationStart".split(" "),f=!1,p="",h="animationstart";if(!u&&!i){var m=document.createElement("fakeelement");if(void 0!==m.style.animationName&&(f=!0),!1===f)for(var v="",g=0;g<c.length;g++)if(void 0!==m.style[c[g]+"AnimationName"]){v=c[g],p="-"+v.toLowerCase()+"-",h=d[g],f=!0;break}}var b=!1,y=function(){if(!b&&!i){var e="@"+p+"keyframes resizeanim { from { opacity: 0; } to { opacity: 0; } } ",t=p+"animation: 1ms resizeanim;",n=e+"\n .resize-triggers { "+t+' visibility: hidden; opacity: 0; }\n .resize-triggers, .resize-triggers > div, .contract-trigger:before { content: " "; display: block; position: absolute; top: 0; left: 0; height: 100%; width: 100%; overflow: hidden; z-index: -1 }\n .resize-triggers > div { background: #eee; overflow: auto; }\n .contract-trigger:before { width: 200%; height: 200%; }',r=document.head||document.getElementsByTagName("head")[0],o=document.createElement("style");o.type="text/css",o.styleSheet?o.styleSheet.cssText=n:o.appendChild(document.createTextNode(n)),r.appendChild(o),b=!0}};t.addResizeListener=function(e,t){if(!i)if(u)e.attachEvent("onresize",t);else{if(!e.__resizeTrigger__){"static"===getComputedStyle(e).position&&(e.style.position="relative"),y(),e.__resizeLast__={},e.__resizeListeners__=[];var n=e.__resizeTrigger__=document.createElement("div");n.className="resize-triggers",n.innerHTML='<div class="expand-trigger"><div></div></div><div class="contract-trigger"></div>',e.appendChild(n),a(e),e.addEventListener("scroll",s,!0),h&&n.addEventListener(h,function(t){"resizeanim"===t.animationName&&a(e)})}e.__resizeListeners__.push(t)}},t.removeResizeListener=function(e,t){u?e.detachEvent("onresize",t):(e.__resizeListeners__.splice(e.__resizeListeners__.indexOf(t),1),e.__resizeListeners__.length||(e.removeEventListener("scroll",s),e.__resizeTrigger__=!e.removeChild(e.__resizeTrigger__)))}},function(e,t,n){"use strict";function i(e,t,n,i,r){var l=e.type,s=[];if(e.required||!e.required&&i.hasOwnProperty(e.field)){if((0,a.isEmptyValue)(t,l)&&!e.required)return n();o.default.required(e,t,i,s,r,l),(0,a.isEmptyValue)(t,l)||o.default.type(e,t,i,s,r)}n(s)}Object.defineProperty(t,"__esModule",{value:!0});var r=n(3),o=function(e){return e&&e.__esModule?e:{default:e}}(r),a=n(1);t.default=i,e.exports=t.default},function(e,t){e.exports=function(e){return e.webpackPolyfill||(e.deprecate=function(){},e.paths=[],e.children||(e.children=[]),Object.defineProperty(e,"loaded",{enumerable:!0,get:function(){return e.l}}),Object.defineProperty(e,"id",{enumerable:!0,get:function(){return e.i}}),e.webpackPolyfill=1),e}},function(e,t,n){"use strict";n.d(t,"b",function(){return r}),n.d(t,"a",function(){return o});var i=n(13),r=(n.n(i),function(){var e={footable:{title:"Footable",description:"A responsive table plugin built on jQuery",supports:{ajax:!1,sorting:!0,search:!0},css_libs:{bootstrap3:{title:"Bootstrap 3",description:"Apply Twitter Bootstrap 3 styles in the table",styles:[{key:"table-striped",title:"Striped rows",description:"add zebra-striping to any table row"},{key:"table-bordered",title:"Bordered table",description:"borders on all sides of the table and cells"},{key:"table-hover",title:"Hover rows",description:"enable a hover state on table rows"},{key:"table-condensed",title:"Condensed table",description:"make tables more compact by cutting cell padding in half"}]},bootstrap4:{title:"Bootstrap 4",description:"Apply Twitter Bootstrap 4 styles in the table",styles:[{key:"table-striped",title:"Striped rows",description:"add zebra-striping to any table row"},{key:"table-bordered",title:"Bordered table",description:"borders on all sides of the table and cells"},{key:"table-hover",title:"Hover rows",description:"enable a hover state on table rows"},{key:"table-sm",title:"Small table",description:"make tables more compact by cutting cell padding in half"}]},semantic_ui:{title:"Semantic UI",description:"Apply Semantic UI styles in the table",styles:[{key:"single line",title:"Single Line Cells",description:"A table can specify that its cell contents should remain on a single line, and not wrap."},{key:"fixed",title:"Fixed Layout",description:"A special faster form of table rendering that does not resize table cells based on content."},{key:"selectable",title:"Hover rows",description:"enable a hover state on table rows"},{key:"celled",title:"Bordered table",description:"borders on all sides of the table and cells"},{key:"striped",title:"Striped rows",description:"add zebra-striping to any table row"},{key:"compact",title:"Compact Table",description:"make tables more compact by cutting cell padding in half"}]}},colors:{ninja_no_color_table:"Default",red:"Red",orange:"Orange",yellow:"Yellow",olive:"Olive",green:"Green",teal:"Teal",blue:"Blue",violet:"Violet",purple:"Purple",pink:"Pink",grey:"Grey",black:"Black"}}},t=window.ninjaFormSettings.getTableLibs();return Object(i.assign)(t,e)}),o={}},function(e,t,n){function i(e){return null==e?void 0===e?s:l:u&&u in Object(e)?o(e):a(e)}var r=n(36),o=n(199),a=n(200),l="[object Null]",s="[object Undefined]",u=r?r.toStringTag:void 0;e.exports=i},function(e,t){function n(e){return null!=e&&"object"==typeof e}e.exports=n},function(e,t,n){(function(t){!function(t,n){e.exports=n()}(0,function(){return function(e){function t(i){if(n[i])return n[i].exports;var r=n[i]={i:i,l:!1,exports:{}};return e[i].call(r.exports,r,r.exports,t),r.l=!0,r.exports}var n={};return t.m=e,t.c=n,t.d=function(e,n,i){t.o(e,n)||Object.defineProperty(e,n,{configurable:!1,enumerable:!0,get:i})},t.n=function(e){var n=e&&e.__esModule?function(){return e.default}:function(){return e};return t.d(n,"a",n),n},t.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},t.p="",t(t.s=109)}([function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var i=n(17),r=n(18),o=n(19),a=n(45),l=n(46),s=n(47),u=n(48),c=n(49),d=n(12),f=n(32),p=n(33),h=n(31),m=n(1),v={Scope:m.Scope,create:m.create,find:m.find,query:m.query,register:m.register,Container:i.default,Format:r.default,Leaf:o.default,Embed:u.default,Scroll:a.default,Block:s.default,Inline:l.default,Text:c.default,Attributor:{Attribute:d.default,Class:f.default,Style:p.default,Store:h.default}};t.default=v},function(e,t,n){"use strict";function i(e,t){var n=o(e);if(null==n)throw new s("Unable to create "+e+" blot");var i=n;return new i(e instanceof Node||e.nodeType===Node.TEXT_NODE?e:i.create(t),t)}function r(e,n){return void 0===n&&(n=!1),null==e?null:null!=e[t.DATA_KEY]?e[t.DATA_KEY].blot:n?r(e.parentNode,n):null}function o(e,t){void 0===t&&(t=p.ANY);var n;if("string"==typeof e)n=f[e]||u[e];else if(e instanceof Text||e.nodeType===Node.TEXT_NODE)n=f.text;else if("number"==typeof e)e&p.LEVEL&p.BLOCK?n=f.block:e&p.LEVEL&p.INLINE&&(n=f.inline);else if(e instanceof HTMLElement){var i=(e.getAttribute("class")||"").split(/\s+/);for(var r in i)if(n=c[i[r]])break;n=n||d[e.tagName]}return null==n?null:t&p.LEVEL&n.scope&&t&p.TYPE&n.scope?n:null}function a(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t];if(e.length>1)return e.map(function(e){return a(e)});var n=e[0];if("string"!=typeof n.blotName&&"string"!=typeof n.attrName)throw new s("Invalid definition");if("abstract"===n.blotName)throw new s("Cannot register abstract class");if(f[n.blotName||n.attrName]=n,"string"==typeof n.keyName)u[n.keyName]=n;else if(null!=n.className&&(c[n.className]=n),null!=n.tagName){Array.isArray(n.tagName)?n.tagName=n.tagName.map(function(e){return e.toUpperCase()}):n.tagName=n.tagName.toUpperCase();var i=Array.isArray(n.tagName)?n.tagName:[n.tagName];i.forEach(function(e){null!=d[e]&&null!=n.className||(d[e]=n)})}return n}var l=this&&this.__extends||function(){var e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])};return function(t,n){function i(){this.constructor=t}e(t,n),t.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}();Object.defineProperty(t,"__esModule",{value:!0});var s=function(e){function t(t){var n=this;return t="[Parchment] "+t,n=e.call(this,t)||this,n.message=t,n.name=n.constructor.name,n}return l(t,e),t}(Error);t.ParchmentError=s;var u={},c={},d={},f={};t.DATA_KEY="__blot";var p;!function(e){e[e.TYPE=3]="TYPE",e[e.LEVEL=12]="LEVEL",e[e.ATTRIBUTE=13]="ATTRIBUTE",e[e.BLOT=14]="BLOT",e[e.INLINE=7]="INLINE",e[e.BLOCK=11]="BLOCK",e[e.BLOCK_BLOT=10]="BLOCK_BLOT",e[e.INLINE_BLOT=6]="INLINE_BLOT",e[e.BLOCK_ATTRIBUTE=9]="BLOCK_ATTRIBUTE",e[e.INLINE_ATTRIBUTE=5]="INLINE_ATTRIBUTE",e[e.ANY=15]="ANY"}(p=t.Scope||(t.Scope={})),t.create=i,t.find=r,t.query=o,t.register=a},function(e,t,n){var i=n(51),r=n(11),o=n(3),a=n(20),l=String.fromCharCode(0),s=function(e){Array.isArray(e)?this.ops=e:null!=e&&Array.isArray(e.ops)?this.ops=e.ops:this.ops=[]};s.prototype.insert=function(e,t){var n={};return 0===e.length?this:(n.insert=e,null!=t&&"object"==typeof t&&Object.keys(t).length>0&&(n.attributes=t),this.push(n))},s.prototype.delete=function(e){return e<=0?this:this.push({delete:e})},s.prototype.retain=function(e,t){if(e<=0)return this;var n={retain:e};return null!=t&&"object"==typeof t&&Object.keys(t).length>0&&(n.attributes=t),this.push(n)},s.prototype.push=function(e){var t=this.ops.length,n=this.ops[t-1];if(e=o(!0,{},e),"object"==typeof n){if("number"==typeof e.delete&&"number"==typeof n.delete)return this.ops[t-1]={delete:n.delete+e.delete},this;if("number"==typeof n.delete&&null!=e.insert&&(t-=1,"object"!=typeof(n=this.ops[t-1])))return this.ops.unshift(e),this;if(r(e.attributes,n.attributes)){if("string"==typeof e.insert&&"string"==typeof n.insert)return this.ops[t-1]={insert:n.insert+e.insert},"object"==typeof e.attributes&&(this.ops[t-1].attributes=e.attributes),this;if("number"==typeof e.retain&&"number"==typeof n.retain)return this.ops[t-1]={retain:n.retain+e.retain},"object"==typeof e.attributes&&(this.ops[t-1].attributes=e.attributes),this}}return t===this.ops.length?this.ops.push(e):this.ops.splice(t,0,e),this},s.prototype.chop=function(){var e=this.ops[this.ops.length-1];return e&&e.retain&&!e.attributes&&this.ops.pop(),this},s.prototype.filter=function(e){return this.ops.filter(e)},s.prototype.forEach=function(e){this.ops.forEach(e)},s.prototype.map=function(e){return this.ops.map(e)},s.prototype.partition=function(e){var t=[],n=[];return this.forEach(function(i){(e(i)?t:n).push(i)}),[t,n]},s.prototype.reduce=function(e,t){return this.ops.reduce(e,t)},s.prototype.changeLength=function(){return this.reduce(function(e,t){return t.insert?e+a.length(t):t.delete?e-t.delete:e},0)},s.prototype.length=function(){return this.reduce(function(e,t){return e+a.length(t)},0)},s.prototype.slice=function(e,t){e=e||0,"number"!=typeof t&&(t=1/0);for(var n=[],i=a.iterator(this.ops),r=0;r<t&&i.hasNext();){var o;r<e?o=i.next(e-r):(o=i.next(t-r),n.push(o)),r+=a.length(o)}return new s(n)},s.prototype.compose=function(e){for(var t=a.iterator(this.ops),n=a.iterator(e.ops),i=new s;t.hasNext()||n.hasNext();)if("insert"===n.peekType())i.push(n.next());else if("delete"===t.peekType())i.push(t.next());else{var r=Math.min(t.peekLength(),n.peekLength()),o=t.next(r),l=n.next(r);if("number"==typeof l.retain){var u={};"number"==typeof o.retain?u.retain=r:u.insert=o.insert;var c=a.attributes.compose(o.attributes,l.attributes,"number"==typeof o.retain);c&&(u.attributes=c),i.push(u)}else"number"==typeof l.delete&&"number"==typeof o.retain&&i.push(l)}return i.chop()},s.prototype.concat=function(e){var t=new s(this.ops.slice());return e.ops.length>0&&(t.push(e.ops[0]),t.ops=t.ops.concat(e.ops.slice(1))),t},s.prototype.diff=function(e,t){if(this.ops===e.ops)return new s;var n=[this,e].map(function(t){return t.map(function(n){if(null!=n.insert)return"string"==typeof n.insert?n.insert:l;var i=t===e?"on":"with";throw new Error("diff() called "+i+" non-document")}).join("")}),o=new s,u=i(n[0],n[1],t),c=a.iterator(this.ops),d=a.iterator(e.ops);return u.forEach(function(e){for(var t=e[1].length;t>0;){var n=0;switch(e[0]){case i.INSERT:n=Math.min(d.peekLength(),t),o.push(d.next(n));break;case i.DELETE:n=Math.min(t,c.peekLength()),c.next(n),o.delete(n);break;case i.EQUAL:n=Math.min(c.peekLength(),d.peekLength(),t);var l=c.next(n),s=d.next(n);r(l.insert,s.insert)?o.retain(n,a.attributes.diff(l.attributes,s.attributes)):o.push(s).delete(n)}t-=n}}),o.chop()},s.prototype.eachLine=function(e,t){t=t||"\n";for(var n=a.iterator(this.ops),i=new s,r=0;n.hasNext();){if("insert"!==n.peekType())return;var o=n.peek(),l=a.length(o)-n.peekLength(),u="string"==typeof o.insert?o.insert.indexOf(t,l)-l:-1;if(u<0)i.push(n.next());else if(u>0)i.push(n.next(u));else{if(!1===e(i,n.next(1).attributes||{},r))return;r+=1,i=new s}}i.length()>0&&e(i,{},r)},s.prototype.transform=function(e,t){if(t=!!t,"number"==typeof e)return this.transformPosition(e,t);for(var n=a.iterator(this.ops),i=a.iterator(e.ops),r=new s;n.hasNext()||i.hasNext();)if("insert"!==n.peekType()||!t&&"insert"===i.peekType())if("insert"===i.peekType())r.push(i.next());else{var o=Math.min(n.peekLength(),i.peekLength()),l=n.next(o),u=i.next(o);if(l.delete)continue;u.delete?r.push(u):r.retain(o,a.attributes.transform(l.attributes,u.attributes,t))}else r.retain(a.length(n.next()));return r.chop()},s.prototype.transformPosition=function(e,t){t=!!t;for(var n=a.iterator(this.ops),i=0;n.hasNext()&&i<=e;){var r=n.peekLength(),o=n.peekType();n.next(),"delete"!==o?("insert"===o&&(i<e||!t)&&(e+=r),i+=r):e-=Math.min(r,e-i)}return e},e.exports=s},function(e,t){"use strict";var n=Object.prototype.hasOwnProperty,i=Object.prototype.toString,r=function(e){return"function"==typeof Array.isArray?Array.isArray(e):"[object Array]"===i.call(e)},o=function(e){if(!e||"[object Object]"!==i.call(e))return!1;var t=n.call(e,"constructor"),r=e.constructor&&e.constructor.prototype&&n.call(e.constructor.prototype,"isPrototypeOf");if(e.constructor&&!t&&!r)return!1;var o;for(o in e);return void 0===o||n.call(e,o)};e.exports=function e(){var t,n,i,a,l,s,u=arguments[0],c=1,d=arguments.length,f=!1;for("boolean"==typeof u&&(f=u,u=arguments[1]||{},c=2),(null==u||"object"!=typeof u&&"function"!=typeof u)&&(u={});c<d;++c)if(null!=(t=arguments[c]))for(n in t)i=u[n],a=t[n],u!==a&&(f&&a&&(o(a)||(l=r(a)))?(l?(l=!1,s=i&&r(i)?i:[]):s=i&&o(i)?i:{},u[n]=e(f,s,a)):void 0!==a&&(u[n]=a));return u}},function(e,t,n){"use strict";function i(e){return e&&e.__esModule?e:{default:e}}function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function o(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function a(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}function l(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return null==e?t:("function"==typeof e.formats&&(t=(0,d.default)(t,e.formats())),null==e.parent||"scroll"==e.parent.blotName||e.parent.statics.scope!==e.statics.scope?t:l(e.parent,t))}Object.defineProperty(t,"__esModule",{value:!0}),t.default=t.BlockEmbed=t.bubbleFormats=void 0;var s=function(){function e(e,t){for(var n=0;n<t.length;n++){var i=t[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}return function(t,n,i){return n&&e(t.prototype,n),i&&e(t,i),t}}(),u=function e(t,n,i){null===t&&(t=Function.prototype);var r=Object.getOwnPropertyDescriptor(t,n);if(void 0===r){var o=Object.getPrototypeOf(t);return null===o?void 0:e(o,n,i)}if("value"in r)return r.value;var a=r.get;if(void 0!==a)return a.call(i)},c=n(3),d=i(c),f=n(2),p=i(f),h=n(0),m=i(h),v=n(16),g=i(v),b=n(6),y=i(b),_=n(7),x=i(_),w=function(e){function t(){return r(this,t),o(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}return a(t,e),s(t,[{key:"attach",value:function(){u(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"attach",this).call(this),this.attributes=new m.default.Attributor.Store(this.domNode)}},{key:"delta",value:function(){return(new p.default).insert(this.value(),(0,d.default)(this.formats(),this.attributes.values()))}},{key:"format",value:function(e,t){var n=m.default.query(e,m.default.Scope.BLOCK_ATTRIBUTE);null!=n&&this.attributes.attribute(n,t)}},{key:"formatAt",value:function(e,t,n,i){this.format(n,i)}},{key:"insertAt",value:function(e,n,i){if("string"==typeof n&&n.endsWith("\n")){var r=m.default.create(k.blotName);this.parent.insertBefore(r,0===e?this:this.next),r.insertAt(0,n.slice(0,-1))}else u(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"insertAt",this).call(this,e,n,i)}}]),t}(m.default.Embed);w.scope=m.default.Scope.BLOCK_BLOT;var k=function(e){function t(e){r(this,t);var n=o(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e));return n.cache={},n}return a(t,e),s(t,[{key:"delta",value:function(){return null==this.cache.delta&&(this.cache.delta=this.descendants(m.default.Leaf).reduce(function(e,t){return 0===t.length()?e:e.insert(t.value(),l(t))},new p.default).insert("\n",l(this))),this.cache.delta}},{key:"deleteAt",value:function(e,n){u(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"deleteAt",this).call(this,e,n),this.cache={}}},{key:"formatAt",value:function(e,n,i,r){n<=0||(m.default.query(i,m.default.Scope.BLOCK)?e+n===this.length()&&this.format(i,r):u(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"formatAt",this).call(this,e,Math.min(n,this.length()-e-1),i,r),this.cache={})}},{key:"insertAt",value:function(e,n,i){if(null!=i)return u(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"insertAt",this).call(this,e,n,i);if(0!==n.length){var r=n.split("\n"),o=r.shift();o.length>0&&(e<this.length()-1||null==this.children.tail?u(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"insertAt",this).call(this,Math.min(e,this.length()-1),o):this.children.tail.insertAt(this.children.tail.length(),o),this.cache={});var a=this;r.reduce(function(e,t){return a=a.split(e,!0),a.insertAt(0,t),t.length},e+o.length)}}},{key:"insertBefore",value:function(e,n){var i=this.children.head;u(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"insertBefore",this).call(this,e,n),i instanceof g.default&&i.remove(),this.cache={}}},{key:"length",value:function(){return null==this.cache.length&&(this.cache.length=u(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"length",this).call(this)+1),this.cache.length}},{key:"moveChildren",value:function(e,n){u(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"moveChildren",this).call(this,e,n),this.cache={}}},{key:"optimize",value:function(e){u(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"optimize",this).call(this,e),this.cache={}}},{key:"path",value:function(e){return u(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"path",this).call(this,e,!0)}},{key:"removeChild",value:function(e){u(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"removeChild",this).call(this,e),this.cache={}}},{key:"split",value:function(e){var n=arguments.length>1&&void 0!==arguments[1]&&arguments[1];if(n&&(0===e||e>=this.length()-1)){var i=this.clone();return 0===e?(this.parent.insertBefore(i,this),this):(this.parent.insertBefore(i,this.next),i)}var r=u(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"split",this).call(this,e,n);return this.cache={},r}}]),t}(m.default.Block);k.blotName="block",k.tagName="P",k.defaultChild="break",k.allowedChildren=[y.default,m.default.Embed,x.default],t.bubbleFormats=l,t.BlockEmbed=w,t.default=k},function(e,t,n){"use strict";function i(e){return e&&e.__esModule?e:{default:e}}function r(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function o(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function a(e,t){if(t=(0,S.default)(!0,{container:e,modules:{clipboard:!0,keyboard:!0,history:!0}},t),t.theme&&t.theme!==A.DEFAULTS.theme){if(t.theme=A.import("themes/"+t.theme),null==t.theme)throw new Error("Invalid theme "+t.theme+". Did you register it?")}else t.theme=T.default;var n=(0,S.default)(!0,{},t.theme.DEFAULTS);[n,t].forEach(function(e){e.modules=e.modules||{},Object.keys(e.modules).forEach(function(t){!0===e.modules[t]&&(e.modules[t]={})})});var i=Object.keys(n.modules).concat(Object.keys(t.modules)),r=i.reduce(function(e,t){var n=A.import("modules/"+t);return null==n?N.error("Cannot load "+t+" module. Are you sure you registered it?"):e[t]=n.DEFAULTS||{},e},{});return null!=t.modules&&t.modules.toolbar&&t.modules.toolbar.constructor!==Object&&(t.modules.toolbar={container:t.modules.toolbar}),t=(0,S.default)(!0,{},A.DEFAULTS,{modules:r},n,t),["bounds","container","scrollingContainer"].forEach(function(e){"string"==typeof t[e]&&(t[e]=document.querySelector(t[e]))}),t.modules=Object.keys(t.modules).reduce(function(e,n){return t.modules[n]&&(e[n]=t.modules[n]),e},{}),t}function l(e,t,n,i){if(this.options.strict&&!this.isEnabled()&&t===b.default.sources.USER)return new h.default;var r=null==n?null:this.getSelection(),o=this.editor.delta,a=e();if(null!=r&&(!0===n&&(n=r.index),null==i?r=u(r,a,t):0!==i&&(r=u(r,n,i,t)),this.setSelection(r,b.default.sources.SILENT)),a.length()>0){var l,s=[b.default.events.TEXT_CHANGE,a,o,t];if((l=this.emitter).emit.apply(l,[b.default.events.EDITOR_CHANGE].concat(s)),t!==b.default.sources.SILENT){var c;(c=this.emitter).emit.apply(c,s)}}return a}function s(e,t,n,i,r){var o={};return"number"==typeof e.index&&"number"==typeof e.length?"number"!=typeof t?(r=i,i=n,n=t,t=e.length,e=e.index):(t=e.length,e=e.index):"number"!=typeof t&&(r=i,i=n,n=t,t=0),"object"===(void 0===n?"undefined":c(n))?(o=n,r=i):"string"==typeof n&&(null!=i?o[n]=i:r=n),r=r||b.default.sources.API,[e,t,o,r]}function u(e,t,n,i){if(null==e)return null;var r=void 0,o=void 0;if(t instanceof h.default){var a=[e.index,e.index+e.length].map(function(e){return t.transformPosition(e,i!==b.default.sources.USER)}),l=d(a,2);r=l[0],o=l[1]}else{var s=[e.index,e.index+e.length].map(function(e){return e<t||e===t&&i===b.default.sources.USER?e:n>=0?e+n:Math.max(t,e+n)}),u=d(s,2);r=u[0],o=u[1]}return new k.Range(r,o-r)}Object.defineProperty(t,"__esModule",{value:!0}),t.default=t.overload=t.expandConfig=void 0;var c="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},d=function(){function e(e,t){var n=[],i=!0,r=!1,o=void 0;try{for(var a,l=e[Symbol.iterator]();!(i=(a=l.next()).done)&&(n.push(a.value),!t||n.length!==t);i=!0);}catch(e){r=!0,o=e}finally{try{!i&&l.return&&l.return()}finally{if(r)throw o}}return n}return function(t,n){if(Array.isArray(t))return t;if(Symbol.iterator in Object(t))return e(t,n);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}(),f=function(){function e(e,t){for(var n=0;n<t.length;n++){var i=t[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}return function(t,n,i){return n&&e(t.prototype,n),i&&e(t,i),t}}();n(50);var p=n(2),h=i(p),m=n(14),v=i(m),g=n(8),b=i(g),y=n(9),_=i(y),x=n(0),w=i(x),k=n(15),C=i(k),q=n(3),S=i(q),O=n(10),M=i(O),E=n(34),T=i(E),N=(0,M.default)("quill"),A=function(){function e(t){var n=this,i=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};if(o(this,e),this.options=a(t,i),this.container=this.options.container,null==this.container)return N.error("Invalid Quill container",t);this.options.debug&&e.debug(this.options.debug);var r=this.container.innerHTML.trim();this.container.classList.add("ql-container"),this.container.innerHTML="",this.container.__quill=this,this.root=this.addContainer("ql-editor"),this.root.classList.add("ql-blank"),this.root.setAttribute("data-gramm",!1),this.scrollingContainer=this.options.scrollingContainer||this.root,this.emitter=new b.default,this.scroll=w.default.create(this.root,{emitter:this.emitter,whitelist:this.options.formats}),this.editor=new v.default(this.scroll),this.selection=new C.default(this.scroll,this.emitter),this.theme=new this.options.theme(this,this.options),this.keyboard=this.theme.addModule("keyboard"),this.clipboard=this.theme.addModule("clipboard"),this.history=this.theme.addModule("history"),this.theme.init(),this.emitter.on(b.default.events.EDITOR_CHANGE,function(e){e===b.default.events.TEXT_CHANGE&&n.root.classList.toggle("ql-blank",n.editor.isBlank())}),this.emitter.on(b.default.events.SCROLL_UPDATE,function(e,t){var i=n.selection.lastRange,r=i&&0===i.length?i.index:void 0;l.call(n,function(){return n.editor.update(null,t,r)},e)});var s=this.clipboard.convert("<div class='ql-editor' style=\"white-space: normal;\">"+r+"<p><br></p></div>");this.setContents(s),this.history.clear(),this.options.placeholder&&this.root.setAttribute("data-placeholder",this.options.placeholder),this.options.readOnly&&this.disable()}return f(e,null,[{key:"debug",value:function(e){!0===e&&(e="log"),M.default.level(e)}},{key:"find",value:function(e){return e.__quill||w.default.find(e)}},{key:"import",value:function(e){return null==this.imports[e]&&N.error("Cannot import "+e+". Are you sure it was registered?"),this.imports[e]}},{key:"register",value:function(e,t){var n=this,i=arguments.length>2&&void 0!==arguments[2]&&arguments[2];if("string"!=typeof e){var r=e.attrName||e.blotName;"string"==typeof r?this.register("formats/"+r,e,t):Object.keys(e).forEach(function(i){n.register(i,e[i],t)})}else null==this.imports[e]||i||N.warn("Overwriting "+e+" with",t),this.imports[e]=t,(e.startsWith("blots/")||e.startsWith("formats/"))&&"abstract"!==t.blotName?w.default.register(t):e.startsWith("modules")&&"function"==typeof t.register&&t.register()}}]),f(e,[{key:"addContainer",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;if("string"==typeof e){var n=e;e=document.createElement("div"),e.classList.add(n)}return this.container.insertBefore(e,t),e}},{key:"blur",value:function(){this.selection.setRange(null)}},{key:"deleteText",value:function(e,t,n){var i=this,r=s(e,t,n),o=d(r,4);return e=o[0],t=o[1],n=o[3],l.call(this,function(){return i.editor.deleteText(e,t)},n,e,-1*t)}},{key:"disable",value:function(){this.enable(!1)}},{key:"enable",value:function(){var e=!(arguments.length>0&&void 0!==arguments[0])||arguments[0];this.scroll.enable(e),this.container.classList.toggle("ql-disabled",!e)}},{key:"focus",value:function(){var e=this.scrollingContainer.scrollTop;this.selection.focus(),this.scrollingContainer.scrollTop=e,this.scrollIntoView()}},{key:"format",value:function(e,t){var n=this,i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:b.default.sources.API;return l.call(this,function(){var i=n.getSelection(!0),o=new h.default;if(null==i)return o;if(w.default.query(e,w.default.Scope.BLOCK))o=n.editor.formatLine(i.index,i.length,r({},e,t));else{if(0===i.length)return n.selection.format(e,t),o;o=n.editor.formatText(i.index,i.length,r({},e,t))}return n.setSelection(i,b.default.sources.SILENT),o},i)}},{key:"formatLine",value:function(e,t,n,i,r){var o=this,a=void 0,u=s(e,t,n,i,r),c=d(u,4);return e=c[0],t=c[1],a=c[2],r=c[3],l.call(this,function(){return o.editor.formatLine(e,t,a)},r,e,0)}},{key:"formatText",value:function(e,t,n,i,r){var o=this,a=void 0,u=s(e,t,n,i,r),c=d(u,4);return e=c[0],t=c[1],a=c[2],r=c[3],l.call(this,function(){return o.editor.formatText(e,t,a)},r,e,0)}},{key:"getBounds",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0,n=void 0;n="number"==typeof e?this.selection.getBounds(e,t):this.selection.getBounds(e.index,e.length);var i=this.container.getBoundingClientRect();return{bottom:n.bottom-i.top,height:n.height,left:n.left-i.left,right:n.right-i.left,top:n.top-i.top,width:n.width}}},{key:"getContents",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0,t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:this.getLength()-e,n=s(e,t),i=d(n,2);return e=i[0],t=i[1],this.editor.getContents(e,t)}},{key:"getFormat",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:this.getSelection(),t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0;return"number"==typeof e?this.editor.getFormat(e,t):this.editor.getFormat(e.index,e.length)}},{key:"getIndex",value:function(e){return e.offset(this.scroll)}},{key:"getLength",value:function(){return this.scroll.length()}},{key:"getLeaf",value:function(e){return this.scroll.leaf(e)}},{key:"getLine",value:function(e){return this.scroll.line(e)}},{key:"getLines",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0,t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:Number.MAX_VALUE;return"number"!=typeof e?this.scroll.lines(e.index,e.length):this.scroll.lines(e,t)}},{key:"getModule",value:function(e){return this.theme.modules[e]}},{key:"getSelection",value:function(){return arguments.length>0&&void 0!==arguments[0]&&arguments[0]&&this.focus(),this.update(),this.selection.getRange()[0]}},{key:"getText",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0,t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:this.getLength()-e,n=s(e,t),i=d(n,2);return e=i[0],t=i[1],this.editor.getText(e,t)}},{key:"hasFocus",value:function(){return this.selection.hasFocus()}},{key:"insertEmbed",value:function(t,n,i){var r=this,o=arguments.length>3&&void 0!==arguments[3]?arguments[3]:e.sources.API;return l.call(this,function(){return r.editor.insertEmbed(t,n,i)},o,t)}},{key:"insertText",value:function(e,t,n,i,r){var o=this,a=void 0,u=s(e,0,n,i,r),c=d(u,4);return e=c[0],a=c[2],r=c[3],l.call(this,function(){return o.editor.insertText(e,t,a)},r,e,t.length)}},{key:"isEnabled",value:function(){return!this.container.classList.contains("ql-disabled")}},{key:"off",value:function(){return this.emitter.off.apply(this.emitter,arguments)}},{key:"on",value:function(){return this.emitter.on.apply(this.emitter,arguments)}},{key:"once",value:function(){return this.emitter.once.apply(this.emitter,arguments)}},{key:"pasteHTML",value:function(e,t,n){this.clipboard.dangerouslyPasteHTML(e,t,n)}},{key:"removeFormat",value:function(e,t,n){var i=this,r=s(e,t,n),o=d(r,4);return e=o[0],t=o[1],n=o[3],l.call(this,function(){return i.editor.removeFormat(e,t)},n,e)}},{key:"scrollIntoView",value:function(){this.selection.scrollIntoView(this.scrollingContainer)}},{key:"setContents",value:function(e){var t=this,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:b.default.sources.API;return l.call(this,function(){e=new h.default(e);var n=t.getLength(),i=t.editor.deleteText(0,n),r=t.editor.applyDelta(e),o=r.ops[r.ops.length-1];return null!=o&&"string"==typeof o.insert&&"\n"===o.insert[o.insert.length-1]&&(t.editor.deleteText(t.getLength()-1,1),r.delete(1)),i.compose(r)},n)}},{key:"setSelection",value:function(t,n,i){if(null==t)this.selection.setRange(null,n||e.sources.API);else{var r=s(t,n,i),o=d(r,4);t=o[0],n=o[1],i=o[3],this.selection.setRange(new k.Range(t,n),i),i!==b.default.sources.SILENT&&this.selection.scrollIntoView(this.scrollingContainer)}}},{key:"setText",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:b.default.sources.API,n=(new h.default).insert(e);return this.setContents(n,t)}},{key:"update",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:b.default.sources.USER,t=this.scroll.update(e);return this.selection.update(e),t}},{key:"updateContents",value:function(e){var t=this,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:b.default.sources.API;return l.call(this,function(){return e=new h.default(e),t.editor.applyDelta(e,n)},n,!0)}}]),e}();A.DEFAULTS={bounds:null,formats:null,modules:{},placeholder:"",readOnly:!1,scrollingContainer:null,strict:!0,theme:"default"},A.events=b.default.events,A.sources=b.default.sources,A.version="1.3.2",A.imports={delta:h.default,parchment:w.default,"core/module":_.default,"core/theme":T.default},t.expandConfig=a,t.overload=s,t.default=A},function(e,t,n){"use strict";function i(e){return e&&e.__esModule?e:{default:e}}function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function o(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function a(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}Object.defineProperty(t,"__esModule",{value:!0});var l=function(){function e(e,t){for(var n=0;n<t.length;n++){var i=t[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}return function(t,n,i){return n&&e(t.prototype,n),i&&e(t,i),t}}(),s=function e(t,n,i){null===t&&(t=Function.prototype);var r=Object.getOwnPropertyDescriptor(t,n);if(void 0===r){var o=Object.getPrototypeOf(t);return null===o?void 0:e(o,n,i)}if("value"in r)return r.value;var a=r.get;if(void 0!==a)return a.call(i)},u=n(7),c=i(u),d=n(0),f=i(d),p=function(e){function t(){return r(this,t),o(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}return a(t,e),l(t,[{key:"formatAt",value:function(e,n,i,r){if(t.compare(this.statics.blotName,i)<0&&f.default.query(i,f.default.Scope.BLOT)){var o=this.isolate(e,n);r&&o.wrap(i,r)}else s(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"formatAt",this).call(this,e,n,i,r)}},{key:"optimize",value:function(e){if(s(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"optimize",this).call(this,e),this.parent instanceof t&&t.compare(this.statics.blotName,this.parent.statics.blotName)>0){var n=this.parent.isolate(this.offset(),this.length());this.moveChildren(n),n.wrap(this)}}}],[{key:"compare",value:function(e,n){var i=t.order.indexOf(e),r=t.order.indexOf(n);return i>=0||r>=0?i-r:e===n?0:e<n?-1:1}}]),t}(f.default.Inline);p.allowedChildren=[p,f.default.Embed,c.default],p.order=["cursor","inline","underline","strike","italic","bold","script","link","code"],t.default=p},function(e,t,n){"use strict";function i(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function r(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function o(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}Object.defineProperty(t,"__esModule",{value:!0});var a=n(0),l=function(e){return e&&e.__esModule?e:{default:e}}(a),s=function(e){function t(){return i(this,t),r(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}return o(t,e),t}(l.default.Text);t.default=s},function(e,t,n){"use strict";function i(e){return e&&e.__esModule?e:{default:e}}function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function o(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function a(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}Object.defineProperty(t,"__esModule",{value:!0});var l=function(){function e(e,t){for(var n=0;n<t.length;n++){var i=t[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}return function(t,n,i){return n&&e(t.prototype,n),i&&e(t,i),t}}(),s=function e(t,n,i){null===t&&(t=Function.prototype);var r=Object.getOwnPropertyDescriptor(t,n);if(void 0===r){var o=Object.getPrototypeOf(t);return null===o?void 0:e(o,n,i)}if("value"in r)return r.value;var a=r.get;if(void 0!==a)return a.call(i)},u=n(54),c=i(u),d=n(10),f=i(d),p=(0,f.default)("quill:events");["selectionchange","mousedown","mouseup"].forEach(function(e){document.addEventListener(e,function(){for(var e=arguments.length,t=Array(e),n=0;n<e;n++)t[n]=arguments[n];[].slice.call(document.querySelectorAll(".ql-container")).forEach(function(e){if(e.__quill&&e.__quill.emitter){var n;(n=e.__quill.emitter).handleDOM.apply(n,t)}})})});var h=function(e){function t(){r(this,t);var e=o(this,(t.__proto__||Object.getPrototypeOf(t)).call(this));return e.listeners={},e.on("error",p.error),e}return a(t,e),l(t,[{key:"emit",value:function(){p.log.apply(p,arguments),s(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"emit",this).apply(this,arguments)}},{key:"handleDOM",value:function(e){for(var t=arguments.length,n=Array(t>1?t-1:0),i=1;i<t;i++)n[i-1]=arguments[i];(this.listeners[e.type]||[]).forEach(function(t){var i=t.node,r=t.handler;(e.target===i||i.contains(e.target))&&r.apply(void 0,[e].concat(n))})}},{key:"listenDOM",value:function(e,t,n){this.listeners[e]||(this.listeners[e]=[]),this.listeners[e].push({node:t,handler:n})}}]),t}(c.default);h.events={EDITOR_CHANGE:"editor-change",SCROLL_BEFORE_UPDATE:"scroll-before-update",SCROLL_OPTIMIZE:"scroll-optimize",SCROLL_UPDATE:"scroll-update",SELECTION_CHANGE:"selection-change",TEXT_CHANGE:"text-change"},h.sources={API:"api",SILENT:"silent",USER:"user"},t.default=h},function(e,t,n){"use strict";function i(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}Object.defineProperty(t,"__esModule",{value:!0});var r=function e(t){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};i(this,e),this.quill=t,this.options=n};r.DEFAULTS={},t.default=r},function(e,t,n){"use strict";function i(e){if(o.indexOf(e)<=o.indexOf(a)){for(var t,n=arguments.length,i=Array(n>1?n-1:0),r=1;r<n;r++)i[r-1]=arguments[r];(t=console)[e].apply(t,i)}}function r(e){return o.reduce(function(t,n){return t[n]=i.bind(console,n,e),t},{})}Object.defineProperty(t,"__esModule",{value:!0});var o=["error","warn","log","info"],a="warn";i.level=r.level=function(e){a=e},t.default=r},function(e,t,n){function i(e){return null===e||void 0===e}function r(e){return!(!e||"object"!=typeof e||"number"!=typeof e.length)&&("function"==typeof e.copy&&"function"==typeof e.slice&&!(e.length>0&&"number"!=typeof e[0]))}function o(e,t,n){var o,c;if(i(e)||i(t))return!1;if(e.prototype!==t.prototype)return!1;if(s(e))return!!s(t)&&(e=a.call(e),t=a.call(t),u(e,t,n));if(r(e)){if(!r(t))return!1;if(e.length!==t.length)return!1;for(o=0;o<e.length;o++)if(e[o]!==t[o])return!1;return!0}try{var d=l(e),f=l(t)}catch(e){return!1}if(d.length!=f.length)return!1;for(d.sort(),f.sort(),o=d.length-1;o>=0;o--)if(d[o]!=f[o])return!1;for(o=d.length-1;o>=0;o--)if(c=d[o],!u(e[c],t[c],n))return!1;return typeof e==typeof t}var a=Array.prototype.slice,l=n(52),s=n(53),u=e.exports=function(e,t,n){return n||(n={}),e===t||(e instanceof Date&&t instanceof Date?e.getTime()===t.getTime():!e||!t||"object"!=typeof e&&"object"!=typeof t?n.strict?e===t:e==t:o(e,t,n))}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var i=n(1),r=function(){function e(e,t,n){void 0===n&&(n={}),this.attrName=e,this.keyName=t;var r=i.Scope.TYPE&i.Scope.ATTRIBUTE;null!=n.scope?this.scope=n.scope&i.Scope.LEVEL|r:this.scope=i.Scope.ATTRIBUTE,null!=n.whitelist&&(this.whitelist=n.whitelist)}return e.keys=function(e){return[].map.call(e.attributes,function(e){return e.name})},e.prototype.add=function(e,t){return!!this.canAdd(e,t)&&(e.setAttribute(this.keyName,t),!0)},e.prototype.canAdd=function(e,t){return null!=i.query(e,i.Scope.BLOT&(this.scope|i.Scope.TYPE))&&(null==this.whitelist||this.whitelist.indexOf(t)>-1)},e.prototype.remove=function(e){e.removeAttribute(this.keyName)},e.prototype.value=function(e){var t=e.getAttribute(this.keyName);return this.canAdd(e,t)?t:""},e}();t.default=r},function(e,t,n){"use strict";function i(e){return e&&e.__esModule?e:{default:e}}function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function o(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function a(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}Object.defineProperty(t,"__esModule",{value:!0}),t.default=t.Code=void 0;var l=function(){function e(e,t){var n=[],i=!0,r=!1,o=void 0;try{for(var a,l=e[Symbol.iterator]();!(i=(a=l.next()).done)&&(n.push(a.value),!t||n.length!==t);i=!0);}catch(e){r=!0,o=e}finally{try{!i&&l.return&&l.return()}finally{if(r)throw o}}return n}return function(t,n){if(Array.isArray(t))return t;if(Symbol.iterator in Object(t))return e(t,n);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}(),s=function(){function e(e,t){for(var n=0;n<t.length;n++){var i=t[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}return function(t,n,i){return n&&e(t.prototype,n),i&&e(t,i),t}}(),u=function e(t,n,i){null===t&&(t=Function.prototype);var r=Object.getOwnPropertyDescriptor(t,n);if(void 0===r){var o=Object.getPrototypeOf(t);return null===o?void 0:e(o,n,i)}if("value"in r)return r.value;var a=r.get;if(void 0!==a)return a.call(i)},c=n(2),d=i(c),f=n(0),p=i(f),h=n(4),m=i(h),v=n(6),g=i(v),b=n(7),y=i(b),_=function(e){function t(){return r(this,t),o(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}return a(t,e),t}(g.default);_.blotName="code",_.tagName="CODE";var x=function(e){function t(){return r(this,t),o(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}return a(t,e),s(t,[{key:"delta",value:function(){var e=this,t=this.domNode.textContent;return t.endsWith("\n")&&(t=t.slice(0,-1)),t.split("\n").reduce(function(t,n){return t.insert(n).insert("\n",e.formats())},new d.default)}},{key:"format",value:function(e,n){if(e!==this.statics.blotName||!n){var i=this.descendant(y.default,this.length()-1),r=l(i,1),o=r[0];null!=o&&o.deleteAt(o.length()-1,1),u(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"format",this).call(this,e,n)}}},{key:"formatAt",value:function(e,n,i,r){if(0!==n&&null!=p.default.query(i,p.default.Scope.BLOCK)&&(i!==this.statics.blotName||r!==this.statics.formats(this.domNode))){var o=this.newlineIndex(e);if(!(o<0||o>=e+n)){var a=this.newlineIndex(e,!0)+1,l=o-a+1,s=this.isolate(a,l),u=s.next;s.format(i,r),u instanceof t&&u.formatAt(0,e-a+n-l,i,r)}}}},{key:"insertAt",value:function(e,t,n){if(null==n){var i=this.descendant(y.default,e),r=l(i,2),o=r[0],a=r[1];o.insertAt(a,t)}}},{key:"length",value:function(){var e=this.domNode.textContent.length;return this.domNode.textContent.endsWith("\n")?e:e+1}},{key:"newlineIndex",value:function(e){if(arguments.length>1&&void 0!==arguments[1]&&arguments[1])return this.domNode.textContent.slice(0,e).lastIndexOf("\n");var t=this.domNode.textContent.slice(e).indexOf("\n");return t>-1?e+t:-1}},{key:"optimize",value:function(e){this.domNode.textContent.endsWith("\n")||this.appendChild(p.default.create("text","\n")),u(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"optimize",this).call(this,e);var n=this.next;null!=n&&n.prev===this&&n.statics.blotName===this.statics.blotName&&this.statics.formats(this.domNode)===n.statics.formats(n.domNode)&&(n.optimize(e),n.moveChildren(this),n.remove())}},{key:"replace",value:function(e){u(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"replace",this).call(this,e),[].slice.call(this.domNode.querySelectorAll("*")).forEach(function(e){var t=p.default.find(e);null==t?e.parentNode.removeChild(e):t instanceof p.default.Embed?t.remove():t.unwrap()})}}],[{key:"create",value:function(e){var n=u(t.__proto__||Object.getPrototypeOf(t),"create",this).call(this,e);return n.setAttribute("spellcheck",!1),n}},{key:"formats",value:function(){return!0}}]),t}(m.default);x.blotName="code-block",x.tagName="PRE",x.TAB=" ",t.Code=_,t.default=x},function(e,t,n){"use strict";function i(e){return e&&e.__esModule?e:{default:e}}function r(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function o(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function a(e,t){return Object.keys(t).reduce(function(n,i){return null==e[i]?n:(t[i]===e[i]?n[i]=t[i]:Array.isArray(t[i])?t[i].indexOf(e[i])<0&&(n[i]=t[i].concat([e[i]])):n[i]=[t[i],e[i]],n)},{})}function l(e){return e.reduce(function(e,t){if(1===t.insert){var n=(0,S.default)(t.attributes);return delete n.image,e.insert({image:t.attributes.image},n)}if(null==t.attributes||!0!==t.attributes.list&&!0!==t.attributes.bullet||(t=(0,S.default)(t),t.attributes.list?t.attributes.list="ordered":(t.attributes.list="bullet",delete t.attributes.bullet)),"string"==typeof t.insert){var i=t.insert.replace(/\r\n/g,"\n").replace(/\r/g,"\n");return e.insert(i,t.attributes)}return e.push(t)},new f.default)}Object.defineProperty(t,"__esModule",{value:!0});var s="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},u=function(){function e(e,t){var n=[],i=!0,r=!1,o=void 0;try{for(var a,l=e[Symbol.iterator]();!(i=(a=l.next()).done)&&(n.push(a.value),!t||n.length!==t);i=!0);}catch(e){r=!0,o=e}finally{try{!i&&l.return&&l.return()}finally{if(r)throw o}}return n}return function(t,n){if(Array.isArray(t))return t;if(Symbol.iterator in Object(t))return e(t,n);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}(),c=function(){function e(e,t){for(var n=0;n<t.length;n++){var i=t[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}return function(t,n,i){return n&&e(t.prototype,n),i&&e(t,i),t}}(),d=n(2),f=i(d),p=n(20),h=i(p),m=n(0),v=i(m),g=n(13),b=i(g),y=n(23),_=i(y),x=n(4),w=i(x),k=n(16),C=i(k),q=n(21),S=i(q),O=n(11),M=i(O),E=n(3),T=i(E),N=/^[ -~]*$/,A=function(){function e(t){o(this,e),this.scroll=t,this.delta=this.getDelta()}return c(e,[{key:"applyDelta",value:function(e){var t=this,n=!1;this.scroll.update();var i=this.scroll.length();return this.scroll.batchStart(),e=l(e),e.reduce(function(e,r){var o=r.retain||r.delete||r.insert.length||1,a=r.attributes||{};if(null!=r.insert){if("string"==typeof r.insert){var l=r.insert;l.endsWith("\n")&&n&&(n=!1,l=l.slice(0,-1)),e>=i&&!l.endsWith("\n")&&(n=!0),t.scroll.insertAt(e,l);var c=t.scroll.line(e),d=u(c,2),f=d[0],p=d[1],m=(0,T.default)({},(0,x.bubbleFormats)(f));if(f instanceof w.default){var g=f.descendant(v.default.Leaf,p),b=u(g,1),y=b[0];m=(0,T.default)(m,(0,x.bubbleFormats)(y))}a=h.default.attributes.diff(m,a)||{}}else if("object"===s(r.insert)){var _=Object.keys(r.insert)[0];if(null==_)return e;t.scroll.insertAt(e,_,r.insert[_])}i+=o}return Object.keys(a).forEach(function(n){t.scroll.formatAt(e,o,n,a[n])}),e+o},0),e.reduce(function(e,n){return"number"==typeof n.delete?(t.scroll.deleteAt(e,n.delete),e):e+(n.retain||n.insert.length||1)},0),this.scroll.batchEnd(),this.update(e)}},{key:"deleteText",value:function(e,t){return this.scroll.deleteAt(e,t),this.update((new f.default).retain(e).delete(t))}},{key:"formatLine",value:function(e,t){var n=this,i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};return this.scroll.update(),Object.keys(i).forEach(function(r){if(null==n.scroll.whitelist||n.scroll.whitelist[r]){var o=n.scroll.lines(e,Math.max(t,1)),a=t;o.forEach(function(t){var o=t.length();if(t instanceof b.default){var l=e-t.offset(n.scroll),s=t.newlineIndex(l+a)-l+1;t.formatAt(l,s,r,i[r])}else t.format(r,i[r]);a-=o})}}),this.scroll.optimize(),this.update((new f.default).retain(e).retain(t,(0,S.default)(i)))}},{key:"formatText",value:function(e,t){var n=this,i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};return Object.keys(i).forEach(function(r){n.scroll.formatAt(e,t,r,i[r])}),this.update((new f.default).retain(e).retain(t,(0,S.default)(i)))}},{key:"getContents",value:function(e,t){return this.delta.slice(e,e+t)}},{key:"getDelta",value:function(){return this.scroll.lines().reduce(function(e,t){return e.concat(t.delta())},new f.default)}},{key:"getFormat",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0,n=[],i=[];0===t?this.scroll.path(e).forEach(function(e){var t=u(e,1),r=t[0];r instanceof w.default?n.push(r):r instanceof v.default.Leaf&&i.push(r)}):(n=this.scroll.lines(e,t),i=this.scroll.descendants(v.default.Leaf,e,t));var r=[n,i].map(function(e){if(0===e.length)return{};for(var t=(0,x.bubbleFormats)(e.shift());Object.keys(t).length>0;){var n=e.shift();if(null==n)return t;t=a((0,x.bubbleFormats)(n),t)}return t});return T.default.apply(T.default,r)}},{key:"getText",value:function(e,t){return this.getContents(e,t).filter(function(e){return"string"==typeof e.insert}).map(function(e){return e.insert}).join("")}},{key:"insertEmbed",value:function(e,t,n){return this.scroll.insertAt(e,t,n),this.update((new f.default).retain(e).insert(r({},t,n)))}},{key:"insertText",value:function(e,t){var n=this,i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};return t=t.replace(/\r\n/g,"\n").replace(/\r/g,"\n"),this.scroll.insertAt(e,t),Object.keys(i).forEach(function(r){n.scroll.formatAt(e,t.length,r,i[r])}),this.update((new f.default).retain(e).insert(t,(0,S.default)(i)))}},{key:"isBlank",value:function(){if(0==this.scroll.children.length)return!0;if(this.scroll.children.length>1)return!1;var e=this.scroll.children.head;return e.statics.blotName===w.default.blotName&&(!(e.children.length>1)&&e.children.head instanceof C.default)}},{key:"removeFormat",value:function(e,t){var n=this.getText(e,t),i=this.scroll.line(e+t),r=u(i,2),o=r[0],a=r[1],l=0,s=new f.default;null!=o&&(l=o instanceof b.default?o.newlineIndex(a)-a+1:o.length()-a,s=o.delta().slice(a,a+l-1).insert("\n"));var c=this.getContents(e,t+l),d=c.diff((new f.default).insert(n).concat(s)),p=(new f.default).retain(e).concat(d);return this.applyDelta(p)}},{key:"update",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:[],n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:void 0,i=this.delta;if(1===t.length&&"characterData"===t[0].type&&t[0].target.data.match(N)&&v.default.find(t[0].target)){var r=v.default.find(t[0].target),o=(0,x.bubbleFormats)(r),a=r.offset(this.scroll),l=t[0].oldValue.replace(_.default.CONTENTS,""),s=(new f.default).insert(l),u=(new f.default).insert(r.value());e=(new f.default).retain(a).concat(s.diff(u,n)).reduce(function(e,t){return t.insert?e.insert(t.insert,o):e.push(t)},new f.default),this.delta=i.compose(e)}else this.delta=this.getDelta(),e&&(0,M.default)(i.compose(e),this.delta)||(e=i.diff(this.delta,n));return e}}]),e}();t.default=A},function(e,t,n){"use strict";function i(e){return e&&e.__esModule?e:{default:e}}function r(e){if(Array.isArray(e)){for(var t=0,n=Array(e.length);t<e.length;t++)n[t]=e[t];return n}return Array.from(e)}function o(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function a(e,t){try{t.parentNode}catch(e){return!1}return t instanceof Text&&(t=t.parentNode),e.contains(t)}Object.defineProperty(t,"__esModule",{value:!0}),t.default=t.Range=void 0;var l=function(){function e(e,t){var n=[],i=!0,r=!1,o=void 0;try{for(var a,l=e[Symbol.iterator]();!(i=(a=l.next()).done)&&(n.push(a.value),!t||n.length!==t);i=!0);}catch(e){r=!0,o=e}finally{try{!i&&l.return&&l.return()}finally{if(r)throw o}}return n}return function(t,n){if(Array.isArray(t))return t;if(Symbol.iterator in Object(t))return e(t,n);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}(),s=function(){function e(e,t){for(var n=0;n<t.length;n++){var i=t[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}return function(t,n,i){return n&&e(t.prototype,n),i&&e(t,i),t}}(),u=n(0),c=i(u),d=n(21),f=i(d),p=n(11),h=i(p),m=n(8),v=i(m),g=n(10),b=i(g),y=(0,b.default)("quill:selection"),_=function e(t){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0;o(this,e),this.index=t,this.length=n},x=function(){function e(t,n){var i=this;o(this,e),this.emitter=n,this.scroll=t,this.composing=!1,this.mouseDown=!1,this.root=this.scroll.domNode,this.cursor=c.default.create("cursor",this),this.lastRange=this.savedRange=new _(0,0),this.handleComposition(),this.handleDragging(),this.handleEmbedSelection(),this.emitter.listenDOM("selectionchange",document,function(){i.mouseDown||setTimeout(i.update.bind(i,v.default.sources.USER),1)}),this.emitter.on(v.default.events.EDITOR_CHANGE,function(e,t){e===v.default.events.TEXT_CHANGE&&t.length()>0&&i.update(v.default.sources.SILENT)}),this.emitter.on(v.default.events.SCROLL_BEFORE_UPDATE,function(){if(i.hasFocus()){var e=i.getNativeRange();null!=e&&e.start.node!==i.cursor.textNode&&i.emitter.once(v.default.events.SCROLL_UPDATE,function(){try{i.setNativeRange(e.start.node,e.start.offset,e.end.node,e.end.offset)}catch(e){}})}}),this.emitter.on(v.default.events.SCROLL_OPTIMIZE,function(e,t){if(t.range){var n=t.range,r=n.startNode,o=n.startOffset,a=n.endNode,l=n.endOffset;i.setNativeRange(r,o,a,l)}}),this.update(v.default.sources.SILENT)}return s(e,[{key:"handleComposition",value:function(){var e=this;this.root.addEventListener("compositionstart",function(){e.composing=!0}),this.root.addEventListener("compositionend",function(){if(e.composing=!1,e.cursor.parent){var t=e.cursor.restore();if(!t)return;setTimeout(function(){e.setNativeRange(t.startNode,t.startOffset,t.endNode,t.endOffset)},1)}})}},{key:"handleDragging",value:function(){var e=this;this.emitter.listenDOM("mousedown",document.body,function(){e.mouseDown=!0}),this.emitter.listenDOM("mouseup",document.body,function(){e.mouseDown=!1,e.update(v.default.sources.USER)})}},{key:"handleEmbedSelection",value:function(){var e=this;this.emitter.on(v.default.events.SELECTION_CHANGE,function(){var e=document.querySelector(".ql-embed-selected");e&&e.classList.remove("ql-embed-selected")}),this.root.addEventListener("click",function(t){var n=c.default.find(t.target,!0);if(n instanceof c.default.Embed){var i=new _(n.offset(scroll),n.length());e.setRange(i,v.default.sources.USER),n.domNode.classList.add("ql-embed-selected")}})}},{key:"focus",value:function(){this.hasFocus()||(this.root.focus(),this.setRange(this.savedRange))}},{key:"format",value:function(e,t){if(null==this.scroll.whitelist||this.scroll.whitelist[e]){this.scroll.update();var n=this.getNativeRange();if(null!=n&&n.native.collapsed&&!c.default.query(e,c.default.Scope.BLOCK)){if(n.start.node!==this.cursor.textNode){var i=c.default.find(n.start.node,!1);if(null==i)return;if(i instanceof c.default.Leaf){var r=i.split(n.start.offset);i.parent.insertBefore(this.cursor,r)}else i.insertBefore(this.cursor,n.start.node);this.cursor.attach()}this.cursor.format(e,t),this.scroll.optimize(),this.setNativeRange(this.cursor.textNode,this.cursor.textNode.data.length),this.update()}}}},{key:"getBounds",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0,n=this.scroll.length();e=Math.min(e,n-1),t=Math.min(e+t,n-1)-e;var i=void 0,r=this.scroll.leaf(e),o=l(r,2),a=o[0],s=o[1];if(null==a)return null;var u=a.position(s,!0),c=l(u,2);i=c[0],s=c[1];var d=document.createRange();if(t>0){d.setStart(i,s);var f=this.scroll.leaf(e+t),p=l(f,2);if(a=p[0],s=p[1],null==a)return null;var h=a.position(s,!0),m=l(h,2);return i=m[0],s=m[1],d.setEnd(i,s),d.getBoundingClientRect()}var v="left",g=void 0;return i instanceof Text?(s<i.data.length?(d.setStart(i,s),d.setEnd(i,s+1)):(d.setStart(i,s-1),d.setEnd(i,s),v="right"),g=d.getBoundingClientRect()):(g=a.domNode.getBoundingClientRect(),s>0&&(v="right")),{bottom:g.top+g.height,height:g.height,left:g[v],right:g[v],top:g.top,width:0}}},{key:"getNativeRange",value:function(){var e=document.getSelection();if(null==e||e.rangeCount<=0)return null;var t=e.getRangeAt(0);if(null==t)return null;var n=this.normalizeNative(t);return y.info("getNativeRange",n),n}},{key:"getRange",value:function(){var e=this.getNativeRange();return null==e?[null,null]:[this.normalizedToRange(e),e]}},{key:"hasFocus",value:function(){return document.activeElement===this.root}},{key:"normalizedToRange",value:function(e){var t=this,n=[[e.start.node,e.start.offset]];e.native.collapsed||n.push([e.end.node,e.end.offset]);var i=n.map(function(e){var n=l(e,2),i=n[0],r=n[1],o=c.default.find(i,!0),a=o.offset(t.scroll);return 0===r?a:o instanceof c.default.Container?a+o.length():a+o.index(i,r)}),o=Math.min(Math.max.apply(Math,r(i)),this.scroll.length()-1),a=Math.min.apply(Math,[o].concat(r(i)));return new _(a,o-a)}},{key:"normalizeNative",value:function(e){if(!a(this.root,e.startContainer)||!e.collapsed&&!a(this.root,e.endContainer))return null;var t={start:{node:e.startContainer,offset:e.startOffset},end:{node:e.endContainer,offset:e.endOffset},native:e};return[t.start,t.end].forEach(function(e){for(var t=e.node,n=e.offset;!(t instanceof Text)&&t.childNodes.length>0;)if(t.childNodes.length>n)t=t.childNodes[n],n=0;else{if(t.childNodes.length!==n)break;t=t.lastChild,n=t instanceof Text?t.data.length:t.childNodes.length+1}e.node=t,e.offset=n}),t}},{key:"rangeToNative",value:function(e){var t=this,n=e.collapsed?[e.index]:[e.index,e.index+e.length],i=[],r=this.scroll.length();return n.forEach(function(e,n){e=Math.min(r-1,e);var o=void 0,a=t.scroll.leaf(e),s=l(a,2),u=s[0],c=s[1],d=u.position(c,0!==n),f=l(d,2);o=f[0],c=f[1],i.push(o,c)}),i.length<2&&(i=i.concat(i)),i}},{key:"scrollIntoView",value:function(e){var t=this.lastRange;if(null!=t){var n=this.getBounds(t.index,t.length);if(null!=n){var i=this.scroll.length()-1,r=this.scroll.line(Math.min(t.index,i)),o=l(r,1),a=o[0],s=a;if(t.length>0){var u=this.scroll.line(Math.min(t.index+t.length,i));s=l(u,1)[0]}if(null!=a&&null!=s){var c=e.getBoundingClientRect();n.top<c.top?e.scrollTop-=c.top-n.top:n.bottom>c.bottom&&(e.scrollTop+=n.bottom-c.bottom)}}}}},{key:"setNativeRange",value:function(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:e,i=arguments.length>3&&void 0!==arguments[3]?arguments[3]:t,r=arguments.length>4&&void 0!==arguments[4]&&arguments[4];if(y.info("setNativeRange",e,t,n,i),null==e||null!=this.root.parentNode&&null!=e.parentNode&&null!=n.parentNode){var o=document.getSelection();if(null!=o)if(null!=e){this.hasFocus()||this.root.focus();var a=(this.getNativeRange()||{}).native;if(null==a||r||e!==a.startContainer||t!==a.startOffset||n!==a.endContainer||i!==a.endOffset){"BR"==e.tagName&&(t=[].indexOf.call(e.parentNode.childNodes,e),e=e.parentNode),"BR"==n.tagName&&(i=[].indexOf.call(n.parentNode.childNodes,n),n=n.parentNode);var l=document.createRange();l.setStart(e,t),l.setEnd(n,i),o.removeAllRanges(),o.addRange(l)}}else o.removeAllRanges(),this.root.blur(),document.body.focus()}}},{key:"setRange",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]&&arguments[1],n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:v.default.sources.API;if("string"==typeof t&&(n=t,t=!1),y.info("setRange",e),null!=e){var i=this.rangeToNative(e);this.setNativeRange.apply(this,r(i).concat([t]))}else this.setNativeRange(null);this.update(n)}},{key:"update",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:v.default.sources.USER,t=this.lastRange,n=this.getRange(),i=l(n,2),r=i[0],o=i[1];if(this.lastRange=r,null!=this.lastRange&&(this.savedRange=this.lastRange),!(0,h.default)(t,this.lastRange)){var a;!this.composing&&null!=o&&o.native.collapsed&&o.start.node!==this.cursor.textNode&&this.cursor.restore();var s=[v.default.events.SELECTION_CHANGE,(0,f.default)(this.lastRange),(0,f.default)(t),e];if((a=this.emitter).emit.apply(a,[v.default.events.EDITOR_CHANGE].concat(s)),e!==v.default.sources.SILENT){var u;(u=this.emitter).emit.apply(u,s)}}}}]),e}();t.Range=_,t.default=x},function(e,t,n){"use strict";function i(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function r(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function o(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}Object.defineProperty(t,"__esModule",{value:!0});var a=function(){function e(e,t){for(var n=0;n<t.length;n++){var i=t[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}return function(t,n,i){return n&&e(t.prototype,n),i&&e(t,i),t}}(),l=function e(t,n,i){null===t&&(t=Function.prototype);var r=Object.getOwnPropertyDescriptor(t,n);if(void 0===r){var o=Object.getPrototypeOf(t);return null===o?void 0:e(o,n,i)}if("value"in r)return r.value;var a=r.get;if(void 0!==a)return a.call(i)},s=n(0),u=function(e){return e&&e.__esModule?e:{default:e}}(s),c=function(e){function t(){return i(this,t),r(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}return o(t,e),a(t,[{key:"insertInto",value:function(e,n){0===e.children.length?l(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"insertInto",this).call(this,e,n):this.remove()}},{key:"length",value:function(){return 0}},{key:"value",value:function(){return""}}],[{key:"value",value:function(){}}]),t}(u.default.Embed);c.blotName="break",c.tagName="BR",t.default=c},function(e,t,n){"use strict";function i(e){var t=l.find(e);if(null==t)try{t=l.create(e)}catch(n){t=l.create(l.Scope.INLINE),[].slice.call(e.childNodes).forEach(function(e){t.domNode.appendChild(e)}),e.parentNode.replaceChild(t.domNode,e),t.attach()}return t}var r=this&&this.__extends||function(){var e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])};return function(t,n){function i(){this.constructor=t}e(t,n),t.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}();Object.defineProperty(t,"__esModule",{value:!0});var o=n(44),a=n(30),l=n(1),s=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return r(t,e),t.prototype.appendChild=function(e){this.insertBefore(e)},t.prototype.attach=function(){var t=this;e.prototype.attach.call(this),this.children=new o.default,[].slice.call(this.domNode.childNodes).reverse().forEach(function(e){try{var n=i(e);t.insertBefore(n,t.children.head)}catch(e){if(e instanceof l.ParchmentError)return;throw e}})},t.prototype.deleteAt=function(e,t){if(0===e&&t===this.length())return this.remove();this.children.forEachAt(e,t,function(e,t,n){e.deleteAt(t,n)})},t.prototype.descendant=function(e,n){var i=this.children.find(n),r=i[0],o=i[1];return null==e.blotName&&e(r)||null!=e.blotName&&r instanceof e?[r,o]:r instanceof t?r.descendant(e,o):[null,-1]},t.prototype.descendants=function(e,n,i){void 0===n&&(n=0),void 0===i&&(i=Number.MAX_VALUE);var r=[],o=i;return this.children.forEachAt(n,i,function(n,i,a){(null==e.blotName&&e(n)||null!=e.blotName&&n instanceof e)&&r.push(n),n instanceof t&&(r=r.concat(n.descendants(e,i,o))),o-=a}),r},t.prototype.detach=function(){this.children.forEach(function(e){e.detach()}),e.prototype.detach.call(this)},t.prototype.formatAt=function(e,t,n,i){this.children.forEachAt(e,t,function(e,t,r){e.formatAt(t,r,n,i)})},t.prototype.insertAt=function(e,t,n){var i=this.children.find(e),r=i[0],o=i[1];if(r)r.insertAt(o,t,n);else{var a=null==n?l.create("text",t):l.create(t,n);this.appendChild(a)}},t.prototype.insertBefore=function(e,t){if(null!=this.statics.allowedChildren&&!this.statics.allowedChildren.some(function(t){return e instanceof t}))throw new l.ParchmentError("Cannot insert "+e.statics.blotName+" into "+this.statics.blotName);e.insertInto(this,t)},t.prototype.length=function(){return this.children.reduce(function(e,t){return e+t.length()},0)},t.prototype.moveChildren=function(e,t){this.children.forEach(function(n){e.insertBefore(n,t)})},t.prototype.optimize=function(t){if(e.prototype.optimize.call(this,t),0===this.children.length)if(null!=this.statics.defaultChild){var n=l.create(this.statics.defaultChild);this.appendChild(n),n.optimize(t)}else this.remove()},t.prototype.path=function(e,n){void 0===n&&(n=!1);var i=this.children.find(e,n),r=i[0],o=i[1],a=[[this,e]];return r instanceof t?a.concat(r.path(o,n)):(null!=r&&a.push([r,o]),a)},t.prototype.removeChild=function(e){this.children.remove(e)},t.prototype.replace=function(n){n instanceof t&&n.moveChildren(this),e.prototype.replace.call(this,n)},t.prototype.split=function(e,t){if(void 0===t&&(t=!1),!t){if(0===e)return this;if(e===this.length())return this.next}var n=this.clone();return this.parent.insertBefore(n,this.next),this.children.forEachAt(e,this.length(),function(e,i,r){e=e.split(i,t),n.appendChild(e)}),n},t.prototype.unwrap=function(){this.moveChildren(this.parent,this.next),this.remove()},t.prototype.update=function(e,t){var n=this,r=[],o=[];e.forEach(function(e){e.target===n.domNode&&"childList"===e.type&&(r.push.apply(r,e.addedNodes),o.push.apply(o,e.removedNodes))}),o.forEach(function(e){if(!(null!=e.parentNode&&"IFRAME"!==e.tagName&&document.body.compareDocumentPosition(e)&Node.DOCUMENT_POSITION_CONTAINED_BY)){var t=l.find(e);null!=t&&(null!=t.domNode.parentNode&&t.domNode.parentNode!==n.domNode||t.detach())}}),r.filter(function(e){return e.parentNode==n.domNode}).sort(function(e,t){return e===t?0:e.compareDocumentPosition(t)&Node.DOCUMENT_POSITION_FOLLOWING?1:-1}).forEach(function(e){var t=null;null!=e.nextSibling&&(t=l.find(e.nextSibling));var r=i(e);r.next==t&&null!=r.next||(null!=r.parent&&r.parent.removeChild(n),n.insertBefore(r,t))})},t}(a.default);t.default=s},function(e,t,n){"use strict";var i=this&&this.__extends||function(){var e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])};return function(t,n){function i(){this.constructor=t}e(t,n),t.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}();Object.defineProperty(t,"__esModule",{value:!0});var r=n(12),o=n(31),a=n(17),l=n(1),s=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return i(t,e),t.formats=function(e){return"string"==typeof this.tagName||(Array.isArray(this.tagName)?e.tagName.toLowerCase():void 0)},t.prototype.attach=function(){e.prototype.attach.call(this),this.attributes=new o.default(this.domNode)},t.prototype.format=function(e,t){var n=l.query(e);n instanceof r.default?this.attributes.attribute(n,t):t&&(null==n||e===this.statics.blotName&&this.formats()[e]===t||this.replaceWith(e,t))},t.prototype.formats=function(){var e=this.attributes.values(),t=this.statics.formats(this.domNode);return null!=t&&(e[this.statics.blotName]=t),e},t.prototype.replaceWith=function(t,n){var i=e.prototype.replaceWith.call(this,t,n);return this.attributes.copy(i),i},t.prototype.update=function(t,n){var i=this;e.prototype.update.call(this,t,n),t.some(function(e){return e.target===i.domNode&&"attributes"===e.type})&&this.attributes.build()},t.prototype.wrap=function(n,i){var r=e.prototype.wrap.call(this,n,i);return r instanceof t&&r.statics.scope===this.statics.scope&&this.attributes.move(r),r},t}(a.default);t.default=s},function(e,t,n){"use strict";var i=this&&this.__extends||function(){var e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])};return function(t,n){function i(){this.constructor=t}e(t,n),t.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}();Object.defineProperty(t,"__esModule",{value:!0});var r=n(30),o=n(1),a=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return i(t,e),t.value=function(e){return!0},t.prototype.index=function(e,t){return this.domNode===e||this.domNode.compareDocumentPosition(e)&Node.DOCUMENT_POSITION_CONTAINED_BY?Math.min(t,1):-1},t.prototype.position=function(e,t){var n=[].indexOf.call(this.parent.domNode.childNodes,this.domNode);return e>0&&(n+=1),[this.parent.domNode,n]},t.prototype.value=function(){return e={},e[this.statics.blotName]=this.statics.value(this.domNode)||!0,e;var e},t.scope=o.Scope.INLINE_BLOT,t}(r.default);t.default=a},function(e,t,n){function i(e){this.ops=e,this.index=0,this.offset=0}var r=n(11),o=n(3),a={attributes:{compose:function(e,t,n){"object"!=typeof e&&(e={}),"object"!=typeof t&&(t={});var i=o(!0,{},t);n||(i=Object.keys(i).reduce(function(e,t){return null!=i[t]&&(e[t]=i[t]),e},{}));for(var r in e)void 0!==e[r]&&void 0===t[r]&&(i[r]=e[r]);return Object.keys(i).length>0?i:void 0},diff:function(e,t){"object"!=typeof e&&(e={}),"object"!=typeof t&&(t={});var n=Object.keys(e).concat(Object.keys(t)).reduce(function(n,i){return r(e[i],t[i])||(n[i]=void 0===t[i]?null:t[i]),n},{});return Object.keys(n).length>0?n:void 0},transform:function(e,t,n){if("object"!=typeof e)return t;if("object"==typeof t){if(!n)return t;var i=Object.keys(t).reduce(function(n,i){return void 0===e[i]&&(n[i]=t[i]),n},{});return Object.keys(i).length>0?i:void 0}}},iterator:function(e){return new i(e)},length:function(e){return"number"==typeof e.delete?e.delete:"number"==typeof e.retain?e.retain:"string"==typeof e.insert?e.insert.length:1}};i.prototype.hasNext=function(){return this.peekLength()<1/0},i.prototype.next=function(e){e||(e=1/0);var t=this.ops[this.index];if(t){var n=this.offset,i=a.length(t);if(e>=i-n?(e=i-n,this.index+=1,this.offset=0):this.offset+=e,"number"==typeof t.delete)return{delete:e};var r={};return t.attributes&&(r.attributes=t.attributes),"number"==typeof t.retain?r.retain=e:"string"==typeof t.insert?r.insert=t.insert.substr(n,e):r.insert=t.insert,r}return{retain:1/0}},i.prototype.peek=function(){return this.ops[this.index]},i.prototype.peekLength=function(){return this.ops[this.index]?a.length(this.ops[this.index])-this.offset:1/0},i.prototype.peekType=function(){return this.ops[this.index]?"number"==typeof this.ops[this.index].delete?"delete":"number"==typeof this.ops[this.index].retain?"retain":"insert":"retain"},e.exports=a},function(e,n){var i=function(){"use strict";function e(e,t){return null!=t&&e instanceof t}function n(i,r,o,a,d){function f(i,o){if(null===i)return null;if(0===o)return i;var v,g;if("object"!=typeof i)return i;if(e(i,s))v=new s;else if(e(i,u))v=new u;else if(e(i,c))v=new c(function(e,t){i.then(function(t){e(f(t,o-1))},function(e){t(f(e,o-1))})});else if(n.__isArray(i))v=[];else if(n.__isRegExp(i))v=new RegExp(i.source,l(i)),i.lastIndex&&(v.lastIndex=i.lastIndex);else if(n.__isDate(i))v=new Date(i.getTime());else{if(m&&t.isBuffer(i))return v=new t(i.length),i.copy(v),v;e(i,Error)?v=Object.create(i):void 0===a?(g=Object.getPrototypeOf(i),v=Object.create(g)):(v=Object.create(a),g=a)}if(r){var b=p.indexOf(i);if(-1!=b)return h[b];p.push(i),h.push(v)}e(i,s)&&i.forEach(function(e,t){var n=f(t,o-1),i=f(e,o-1);v.set(n,i)}),e(i,u)&&i.forEach(function(e){var t=f(e,o-1);v.add(t)});for(var y in i){var _;g&&(_=Object.getOwnPropertyDescriptor(g,y)),_&&null==_.set||(v[y]=f(i[y],o-1))}if(Object.getOwnPropertySymbols)for(var x=Object.getOwnPropertySymbols(i),y=0;y<x.length;y++){var w=x[y],k=Object.getOwnPropertyDescriptor(i,w);(!k||k.enumerable||d)&&(v[w]=f(i[w],o-1),k.enumerable||Object.defineProperty(v,w,{enumerable:!1}))}if(d)for(var C=Object.getOwnPropertyNames(i),y=0;y<C.length;y++){var q=C[y],k=Object.getOwnPropertyDescriptor(i,q);k&&k.enumerable||(v[q]=f(i[q],o-1),Object.defineProperty(v,q,{enumerable:!1}))}return v}"object"==typeof r&&(o=r.depth,a=r.prototype,d=r.includeNonEnumerable,r=r.circular);var p=[],h=[],m=void 0!==t;return void 0===r&&(r=!0),void 0===o&&(o=1/0),f(i,o)}function i(e){return Object.prototype.toString.call(e)}function r(e){return"object"==typeof e&&"[object Date]"===i(e)}function o(e){return"object"==typeof e&&"[object Array]"===i(e)}function a(e){return"object"==typeof e&&"[object RegExp]"===i(e)}function l(e){var t="";return e.global&&(t+="g"),e.ignoreCase&&(t+="i"),e.multiline&&(t+="m"),t}var s;try{s=Map}catch(e){s=function(){}}var u;try{u=Set}catch(e){u=function(){}}var c;try{c=Promise}catch(e){c=function(){}}return n.clonePrototype=function(e){if(null===e)return null;var t=function(){};return t.prototype=e,new t},n.__objToStr=i,n.__isDate=r,n.__isArray=o,n.__isRegExp=a,n.__getRegExpFlags=l,n}();"object"==typeof e&&e.exports&&(e.exports=i)},function(e,t,n){"use strict";function i(e){return e&&e.__esModule?e:{default:e}}function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function o(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function a(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}function l(e){return e instanceof v.default||e instanceof m.BlockEmbed}Object.defineProperty(t,"__esModule",{value:!0});var s=function(){function e(e,t){var n=[],i=!0,r=!1,o=void 0;try{for(var a,l=e[Symbol.iterator]();!(i=(a=l.next()).done)&&(n.push(a.value),!t||n.length!==t);i=!0);}catch(e){r=!0,o=e}finally{try{!i&&l.return&&l.return()}finally{if(r)throw o}}return n}return function(t,n){if(Array.isArray(t))return t;if(Symbol.iterator in Object(t))return e(t,n);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}(),u=function(){function e(e,t){for(var n=0;n<t.length;n++){var i=t[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}return function(t,n,i){return n&&e(t.prototype,n),i&&e(t,i),t}}(),c=function e(t,n,i){null===t&&(t=Function.prototype);var r=Object.getOwnPropertyDescriptor(t,n);if(void 0===r){var o=Object.getPrototypeOf(t);return null===o?void 0:e(o,n,i)}if("value"in r)return r.value;var a=r.get;if(void 0!==a)return a.call(i)},d=n(0),f=i(d),p=n(8),h=i(p),m=n(4),v=i(m),g=n(16),b=i(g),y=n(13),_=i(y),x=n(24),w=i(x),k=function(e){function t(e,n){r(this,t);var i=o(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e));return i.emitter=n.emitter,Array.isArray(n.whitelist)&&(i.whitelist=n.whitelist.reduce(function(e,t){return e[t]=!0,e},{})),i.domNode.addEventListener("DOMNodeInserted",function(){}),i.optimize(),i.enable(),i}return a(t,e),u(t,[{key:"batchStart",value:function(){this.batch=!0}},{key:"batchEnd",value:function(){this.batch=!1,this.optimize()}},{key:"deleteAt",value:function(e,n){var i=this.line(e),r=s(i,2),o=r[0],a=r[1],l=this.line(e+n),u=s(l,1),d=u[0];if(c(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"deleteAt",this).call(this,e,n),null!=d&&o!==d&&a>0){if(o instanceof m.BlockEmbed||d instanceof m.BlockEmbed)return void this.optimize();if(o instanceof _.default){var f=o.newlineIndex(o.length(),!0);if(f>-1&&(o=o.split(f+1))===d)return void this.optimize()}else if(d instanceof _.default){var p=d.newlineIndex(0);p>-1&&d.split(p+1)}var h=d.children.head instanceof b.default?null:d.children.head;o.moveChildren(d,h),o.remove()}this.optimize()}},{key:"enable",value:function(){var e=!(arguments.length>0&&void 0!==arguments[0])||arguments[0];this.domNode.setAttribute("contenteditable",e)}},{key:"formatAt",value:function(e,n,i,r){(null==this.whitelist||this.whitelist[i])&&(c(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"formatAt",this).call(this,e,n,i,r),this.optimize())}},{key:"insertAt",value:function(e,n,i){if(null==i||null==this.whitelist||this.whitelist[n]){if(e>=this.length())if(null==i||null==f.default.query(n,f.default.Scope.BLOCK)){var r=f.default.create(this.statics.defaultChild);this.appendChild(r),null==i&&n.endsWith("\n")&&(n=n.slice(0,-1)),r.insertAt(0,n,i)}else{var o=f.default.create(n,i);this.appendChild(o)}else c(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"insertAt",this).call(this,e,n,i);this.optimize()}}},{key:"insertBefore",value:function(e,n){if(e.statics.scope===f.default.Scope.INLINE_BLOT){var i=f.default.create(this.statics.defaultChild);i.appendChild(e),e=i}c(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"insertBefore",this).call(this,e,n)}},{key:"leaf",value:function(e){return this.path(e).pop()||[null,-1]}},{key:"line",value:function(e){return e===this.length()?this.line(e-1):this.descendant(l,e)}},{key:"lines",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0,t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:Number.MAX_VALUE;return function e(t,n,i){var r=[],o=i;return t.children.forEachAt(n,i,function(t,n,i){l(t)?r.push(t):t instanceof f.default.Container&&(r=r.concat(e(t,n,o))),o-=i}),r}(this,e,t)}},{key:"optimize",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[],n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};!0!==this.batch&&(c(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"optimize",this).call(this,e,n),e.length>0&&this.emitter.emit(h.default.events.SCROLL_OPTIMIZE,e,n))}},{key:"path",value:function(e){return c(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"path",this).call(this,e).slice(1)}},{key:"update",value:function(e){if(!0!==this.batch){var n=h.default.sources.USER;"string"==typeof e&&(n=e),Array.isArray(e)||(e=this.observer.takeRecords()),e.length>0&&this.emitter.emit(h.default.events.SCROLL_BEFORE_UPDATE,n,e),c(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"update",this).call(this,e.concat([])),e.length>0&&this.emitter.emit(h.default.events.SCROLL_UPDATE,n,e)}}}]),t}(f.default.Scroll);k.blotName="scroll",k.className="ql-editor",k.tagName="DIV",k.defaultChild="block",k.allowedChildren=[v.default,m.BlockEmbed,w.default],t.default=k},function(e,t,n){"use strict";function i(e){return e&&e.__esModule?e:{default:e}}function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function o(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function a(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}Object.defineProperty(t,"__esModule",{value:!0});var l=function(){function e(e,t){var n=[],i=!0,r=!1,o=void 0;try{for(var a,l=e[Symbol.iterator]();!(i=(a=l.next()).done)&&(n.push(a.value),!t||n.length!==t);i=!0);}catch(e){r=!0,o=e}finally{try{!i&&l.return&&l.return()}finally{if(r)throw o}}return n}return function(t,n){if(Array.isArray(t))return t;if(Symbol.iterator in Object(t))return e(t,n);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}(),s=function e(t,n,i){null===t&&(t=Function.prototype);var r=Object.getOwnPropertyDescriptor(t,n);if(void 0===r){var o=Object.getPrototypeOf(t);return null===o?void 0:e(o,n,i)}if("value"in r)return r.value;var a=r.get;if(void 0!==a)return a.call(i)},u=function(){function e(e,t){for(var n=0;n<t.length;n++){var i=t[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}return function(t,n,i){return n&&e(t.prototype,n),i&&e(t,i),t}}(),c=n(0),d=i(c),f=n(7),p=i(f),h=function(e){function t(e,n){r(this,t);var i=o(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e));return i.selection=n,i.textNode=document.createTextNode(t.CONTENTS),i.domNode.appendChild(i.textNode),i._length=0,i}return a(t,e),u(t,null,[{key:"value",value:function(){}}]),u(t,[{key:"detach",value:function(){null!=this.parent&&this.parent.removeChild(this)}},{key:"format",value:function(e,n){if(0!==this._length)return s(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"format",this).call(this,e,n);for(var i=this,r=0;null!=i&&i.statics.scope!==d.default.Scope.BLOCK_BLOT;)r+=i.offset(i.parent),i=i.parent;null!=i&&(this._length=t.CONTENTS.length,i.optimize(),i.formatAt(r,t.CONTENTS.length,e,n),this._length=0)}},{key:"index",value:function(e,n){return e===this.textNode?0:s(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"index",this).call(this,e,n)}},{key:"length",value:function(){return this._length}},{key:"position",value:function(){return[this.textNode,this.textNode.data.length]}},{key:"remove",value:function(){s(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"remove",this).call(this),this.parent=null}},{key:"restore",value:function(){if(!this.selection.composing&&null!=this.parent){var e=this.textNode,n=this.selection.getNativeRange(),i=void 0,r=void 0,o=void 0;if(null!=n&&n.start.node===e&&n.end.node===e){var a=[e,n.start.offset,n.end.offset];i=a[0],r=a[1],o=a[2]}for(;null!=this.domNode.lastChild&&this.domNode.lastChild!==this.textNode;)this.domNode.parentNode.insertBefore(this.domNode.lastChild,this.domNode);if(this.textNode.data!==t.CONTENTS){var s=this.textNode.data.split(t.CONTENTS).join("");this.next instanceof p.default?(i=this.next.domNode,this.next.insertAt(0,s),this.textNode.data=t.CONTENTS):(this.textNode.data=s,this.parent.insertBefore(d.default.create(this.textNode),this),this.textNode=document.createTextNode(t.CONTENTS),this.domNode.appendChild(this.textNode))}if(this.remove(),null!=r){var u=[r,o].map(function(e){return Math.max(0,Math.min(i.data.length,e-1))}),c=l(u,2);return r=c[0],o=c[1],{startNode:i,startOffset:r,endNode:i,endOffset:o}}}}},{key:"update",value:function(e,t){var n=this;if(e.some(function(e){return"characterData"===e.type&&e.target===n.textNode})){var i=this.restore();i&&(t.range=i)}}},{key:"value",value:function(){return""}}]),t}(d.default.Embed);h.blotName="cursor",h.className="ql-cursor",h.tagName="span",h.CONTENTS="\ufeff",t.default=h},function(e,t,n){"use strict";function i(e){return e&&e.__esModule?e:{default:e}}function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function o(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function a(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}Object.defineProperty(t,"__esModule",{value:!0});var l=n(0),s=i(l),u=n(4),c=i(u),d=function(e){function t(){return r(this,t),o(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}return a(t,e),t}(s.default.Container);d.allowedChildren=[c.default,u.BlockEmbed,d],t.default=d},function(e,t,n){"use strict";function i(e){return e&&e.__esModule?e:{default:e}}function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function o(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function a(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}Object.defineProperty(t,"__esModule",{value:!0});var l=function(){function e(e,t){for(var n=0;n<t.length;n++){var i=t[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}return function(t,n,i){return n&&e(t.prototype,n),i&&e(t,i),t}}(),s=function e(t,n,i){null===t&&(t=Function.prototype);var r=Object.getOwnPropertyDescriptor(t,n);if(void 0===r){var o=Object.getPrototypeOf(t);return null===o?void 0:e(o,n,i)}if("value"in r)return r.value;var a=r.get;if(void 0!==a)return a.call(i)},u=n(0),c=i(u),d=n(7),f=i(d),p="\ufeff",h=function(e){function t(e){r(this,t);var n=o(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e)),i=document.createElement("span");return i.setAttribute("contenteditable",!1),[].slice.call(n.domNode.childNodes).forEach(function(e){i.appendChild(e)}),n.leftGuard=document.createTextNode(p),n.rightGuard=document.createTextNode(p),n.domNode.appendChild(n.leftGuard),n.domNode.appendChild(i),n.domNode.appendChild(n.rightGuard),n}return a(t,e),l(t,[{key:"index",value:function(e,n){return e===this.leftGuard?0:e===this.rightGuard?1:s(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"index",this).call(this,e,n)}},{key:"restore",value:function(e){var t=void 0,n=void 0,i=e.data.split(p).join("");if(e===this.leftGuard)if(this.prev instanceof f.default){var r=this.prev.length();this.prev.insertAt(r,i),t={startNode:this.prev.domNode,startOffset:r+i.length}}else n=document.createTextNode(i),this.parent.insertBefore(c.default.create(n),this),t={startNode:n,startOffset:i.length};else e===this.rightGuard&&(this.next instanceof f.default?(this.next.insertAt(0,i),t={startNode:this.next.domNode,startOffset:i.length}):(n=document.createTextNode(i),this.parent.insertBefore(c.default.create(n),this.next),t={startNode:n,startOffset:i.length}));return e.data=p,t}},{key:"update",value:function(e,t){var n=this;e.forEach(function(e){if("characterData"===e.type&&(e.target===n.leftGuard||e.target===n.rightGuard)){var i=n.restore(e.target);i&&(t.range=i)}})}}]),t}(c.default.Embed);t.default=h},function(e,t,n){"use strict";function i(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function r(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function o(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}Object.defineProperty(t,"__esModule",{value:!0}),t.ColorStyle=t.ColorClass=t.ColorAttributor=void 0;var a=function(){function e(e,t){for(var n=0;n<t.length;n++){var i=t[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}return function(t,n,i){return n&&e(t.prototype,n),i&&e(t,i),t}}(),l=function e(t,n,i){null===t&&(t=Function.prototype);var r=Object.getOwnPropertyDescriptor(t,n);if(void 0===r){var o=Object.getPrototypeOf(t);return null===o?void 0:e(o,n,i)}if("value"in r)return r.value;var a=r.get;if(void 0!==a)return a.call(i)},s=n(0),u=function(e){return e&&e.__esModule?e:{default:e}}(s),c=function(e){function t(){return i(this,t),r(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}return o(t,e),a(t,[{key:"value",value:function(e){var n=l(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"value",this).call(this,e);return n.startsWith("rgb(")?(n=n.replace(/^[^\d]+/,"").replace(/[^\d]+$/,""),"#"+n.split(",").map(function(e){return("00"+parseInt(e).toString(16)).slice(-2)}).join("")):n}}]),t}(u.default.Attributor.Style),d=new u.default.Attributor.Class("color","ql-color",{scope:u.default.Scope.INLINE}),f=new c("color","color",{scope:u.default.Scope.INLINE});t.ColorAttributor=c,t.ColorClass=d,t.ColorStyle=f},function(e,t,n){"use strict";function i(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function r(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function o(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}function a(e,t){var n=document.createElement("a");n.href=e;var i=n.href.slice(0,n.href.indexOf(":"));return t.indexOf(i)>-1}Object.defineProperty(t,"__esModule",{value:!0}),t.sanitize=t.default=void 0;var l=function(){function e(e,t){for(var n=0;n<t.length;n++){var i=t[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}return function(t,n,i){return n&&e(t.prototype,n),i&&e(t,i),t}}(),s=function e(t,n,i){null===t&&(t=Function.prototype);var r=Object.getOwnPropertyDescriptor(t,n);if(void 0===r){var o=Object.getPrototypeOf(t);return null===o?void 0:e(o,n,i)}if("value"in r)return r.value;var a=r.get;if(void 0!==a)return a.call(i)},u=n(6),c=function(e){return e&&e.__esModule?e:{default:e}}(u),d=function(e){function t(){return i(this,t),r(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}return o(t,e),l(t,[{key:"format",value:function(e,n){if(e!==this.statics.blotName||!n)return s(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"format",this).call(this,e,n);n=this.constructor.sanitize(n),this.domNode.setAttribute("href",n)}}],[{key:"create",value:function(e){var n=s(t.__proto__||Object.getPrototypeOf(t),"create",this).call(this,e);return e=this.sanitize(e),n.setAttribute("href",e),n.setAttribute("target","_blank"),n}},{key:"formats",value:function(e){return e.getAttribute("href")}},{key:"sanitize",value:function(e){return a(e,this.PROTOCOL_WHITELIST)?e:this.SANITIZED_URL}}]),t}(c.default);d.blotName="link",d.tagName="A",d.SANITIZED_URL="about:blank",d.PROTOCOL_WHITELIST=["http","https","mailto","tel"],t.default=d,t.sanitize=a},function(e,t,n){"use strict";function i(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}Object.defineProperty(t,"__esModule",{value:!0});var r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},o=function(){function e(e,t){for(var n=0;n<t.length;n++){var i=t[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}return function(t,n,i){return n&&e(t.prototype,n),i&&e(t,i),t}}(),a=n(107),l=function(e){return e&&e.__esModule?e:{default:e}}(a),s=function(){function e(t){var n=this;i(this,e),this.select=t,this.container=document.createElement("span"),this.buildPicker(),this.select.style.display="none",this.select.parentNode.insertBefore(this.container,this.select),this.label.addEventListener("mousedown",function(){n.container.classList.toggle("ql-expanded")}),this.select.addEventListener("change",this.update.bind(this))}return o(e,[{key:"buildItem",value:function(e){var t=this,n=document.createElement("span");return n.classList.add("ql-picker-item"),e.hasAttribute("value")&&n.setAttribute("data-value",e.getAttribute("value")),e.textContent&&n.setAttribute("data-label",e.textContent),n.addEventListener("click",function(){t.selectItem(n,!0)}),n}},{key:"buildLabel",value:function(){var e=document.createElement("span");return e.classList.add("ql-picker-label"),e.innerHTML=l.default,this.container.appendChild(e),e}},{key:"buildOptions",value:function(){var e=this,t=document.createElement("span");t.classList.add("ql-picker-options"),[].slice.call(this.select.options).forEach(function(n){var i=e.buildItem(n);t.appendChild(i),!0===n.selected&&e.selectItem(i)}),this.container.appendChild(t)}},{key:"buildPicker",value:function(){var e=this;[].slice.call(this.select.attributes).forEach(function(t){e.container.setAttribute(t.name,t.value)}),this.container.classList.add("ql-picker"),this.label=this.buildLabel(),this.buildOptions()}},{key:"close",value:function(){this.container.classList.remove("ql-expanded")}},{key:"selectItem",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]&&arguments[1],n=this.container.querySelector(".ql-selected");if(e!==n&&(null!=n&&n.classList.remove("ql-selected"),null!=e&&(e.classList.add("ql-selected"),this.select.selectedIndex=[].indexOf.call(e.parentNode.children,e),e.hasAttribute("data-value")?this.label.setAttribute("data-value",e.getAttribute("data-value")):this.label.removeAttribute("data-value"),e.hasAttribute("data-label")?this.label.setAttribute("data-label",e.getAttribute("data-label")):this.label.removeAttribute("data-label"),t))){if("function"==typeof Event)this.select.dispatchEvent(new Event("change"));else if("object"===("undefined"==typeof Event?"undefined":r(Event))){var i=document.createEvent("Event");i.initEvent("change",!0,!0),this.select.dispatchEvent(i)}this.close()}}},{key:"update",value:function(){var e=void 0;if(this.select.selectedIndex>-1){var t=this.container.querySelector(".ql-picker-options").children[this.select.selectedIndex];e=this.select.options[this.select.selectedIndex],this.selectItem(t)}else this.selectItem(null);var n=null!=e&&e!==this.select.querySelector("option[selected]");this.label.classList.toggle("ql-active",n)}}]),e}();t.default=s},function(e,t,n){"use strict";function i(e){return e&&e.__esModule?e:{default:e}}var r=n(0),o=i(r),a=n(5),l=i(a),s=n(4),u=i(s),c=n(16),d=i(c),f=n(24),p=i(f),h=n(23),m=i(h),v=n(25),g=i(v),b=n(6),y=i(b),_=n(22),x=i(_),w=n(7),k=i(w),C=n(55),q=i(C),S=n(42),O=i(S),M=n(35),E=i(M);l.default.register({"blots/block":u.default,"blots/block/embed":s.BlockEmbed,"blots/break":d.default,"blots/container":p.default,"blots/cursor":m.default,"blots/embed":g.default,"blots/inline":y.default,"blots/scroll":x.default,"blots/text":k.default,"modules/clipboard":q.default,"modules/history":O.default,"modules/keyboard":E.default}),o.default.register(u.default,d.default,m.default,y.default,x.default,k.default),e.exports=l.default},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var i=n(1),r=function(){function e(e){this.domNode=e,this.attach()}return Object.defineProperty(e.prototype,"statics",{get:function(){return this.constructor},enumerable:!0,configurable:!0}),e.create=function(e){if(null==this.tagName)throw new i.ParchmentError("Blot definition missing tagName");var t;return Array.isArray(this.tagName)?("string"==typeof e&&(e=e.toUpperCase(),parseInt(e).toString()===e&&(e=parseInt(e))),t="number"==typeof e?document.createElement(this.tagName[e-1]):this.tagName.indexOf(e)>-1?document.createElement(e):document.createElement(this.tagName[0])):t=document.createElement(this.tagName),this.className&&t.classList.add(this.className),t},e.prototype.attach=function(){this.domNode[i.DATA_KEY]={blot:this}},e.prototype.clone=function(){var e=this.domNode.cloneNode(!1);return i.create(e)},e.prototype.detach=function(){null!=this.parent&&this.parent.removeChild(this),delete this.domNode[i.DATA_KEY]},e.prototype.deleteAt=function(e,t){this.isolate(e,t).remove()},e.prototype.formatAt=function(e,t,n,r){var o=this.isolate(e,t);if(null!=i.query(n,i.Scope.BLOT)&&r)o.wrap(n,r);else if(null!=i.query(n,i.Scope.ATTRIBUTE)){var a=i.create(this.statics.scope);o.wrap(a),a.format(n,r)}},e.prototype.insertAt=function(e,t,n){var r=null==n?i.create("text",t):i.create(t,n),o=this.split(e);this.parent.insertBefore(r,o)},e.prototype.insertInto=function(e,t){if(null!=this.parent&&this.parent.children.remove(this),e.children.insertBefore(this,t),null!=t)var n=t.domNode;null!=this.next&&this.domNode.nextSibling==n||e.domNode.insertBefore(this.domNode,void 0!==n?n:null),this.parent=e},e.prototype.isolate=function(e,t){var n=this.split(e);return n.split(t),n},e.prototype.length=function(){return 1},e.prototype.offset=function(e){return void 0===e&&(e=this.parent),null==this.parent||this==e?0:this.parent.children.offset(this)+this.parent.offset(e)},e.prototype.optimize=function(e){null!=this.domNode[i.DATA_KEY]&&delete this.domNode[i.DATA_KEY].mutations},e.prototype.remove=function(){null!=this.domNode.parentNode&&this.domNode.parentNode.removeChild(this.domNode),this.detach()},e.prototype.replace=function(e){null!=e.parent&&(e.parent.insertBefore(this,e.next),e.remove())},e.prototype.replaceWith=function(e,t){var n="string"==typeof e?i.create(e,t):e;return n.replace(this),n},e.prototype.split=function(e,t){return 0===e?this:this.next},e.prototype.update=function(e,t){},e.prototype.wrap=function(e,t){var n="string"==typeof e?i.create(e,t):e;return null!=this.parent&&this.parent.insertBefore(n,this.next),n.appendChild(this),n},e.blotName="abstract",e}();t.default=r},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var i=n(12),r=n(32),o=n(33),a=n(1),l=function(){function e(e){this.attributes={},this.domNode=e,this.build()}return e.prototype.attribute=function(e,t){t?e.add(this.domNode,t)&&(null!=e.value(this.domNode)?this.attributes[e.attrName]=e:delete this.attributes[e.attrName]):(e.remove(this.domNode),delete this.attributes[e.attrName])},e.prototype.build=function(){var e=this;this.attributes={};var t=i.default.keys(this.domNode),n=r.default.keys(this.domNode),l=o.default.keys(this.domNode);t.concat(n).concat(l).forEach(function(t){var n=a.query(t,a.Scope.ATTRIBUTE);n instanceof i.default&&(e.attributes[n.attrName]=n)})},e.prototype.copy=function(e){var t=this;Object.keys(this.attributes).forEach(function(n){var i=t.attributes[n].value(t.domNode);e.format(n,i)})},e.prototype.move=function(e){var t=this;this.copy(e),Object.keys(this.attributes).forEach(function(e){t.attributes[e].remove(t.domNode)}),this.attributes={}},e.prototype.values=function(){var e=this;return Object.keys(this.attributes).reduce(function(t,n){return t[n]=e.attributes[n].value(e.domNode),t},{})},e}();t.default=l},function(e,t,n){"use strict";function i(e,t){return(e.getAttribute("class")||"").split(/\s+/).filter(function(e){return 0===e.indexOf(t+"-")})}var r=this&&this.__extends||function(){var e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])};return function(t,n){function i(){this.constructor=t}e(t,n),t.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}();Object.defineProperty(t,"__esModule",{value:!0});var o=n(12),a=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return r(t,e),t.keys=function(e){return(e.getAttribute("class")||"").split(/\s+/).map(function(e){return e.split("-").slice(0,-1).join("-")})},t.prototype.add=function(e,t){return!!this.canAdd(e,t)&&(this.remove(e),e.classList.add(this.keyName+"-"+t),!0)},t.prototype.remove=function(e){i(e,this.keyName).forEach(function(t){e.classList.remove(t)}),0===e.classList.length&&e.removeAttribute("class")},t.prototype.value=function(e){var t=i(e,this.keyName)[0]||"",n=t.slice(this.keyName.length+1);return this.canAdd(e,n)?n:""},t}(o.default);t.default=a},function(e,t,n){"use strict";function i(e){var t=e.split("-"),n=t.slice(1).map(function(e){return e[0].toUpperCase()+e.slice(1)}).join("");return t[0]+n}var r=this&&this.__extends||function(){var e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])};return function(t,n){function i(){this.constructor=t}e(t,n),t.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}();Object.defineProperty(t,"__esModule",{value:!0});var o=n(12),a=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return r(t,e),t.keys=function(e){return(e.getAttribute("style")||"").split(";").map(function(e){return e.split(":")[0].trim()})},t.prototype.add=function(e,t){return!!this.canAdd(e,t)&&(e.style[i(this.keyName)]=t,!0)},t.prototype.remove=function(e){e.style[i(this.keyName)]="",e.getAttribute("style")||e.removeAttribute("style")},t.prototype.value=function(e){var t=e.style[i(this.keyName)];return this.canAdd(e,t)?t:""},t}(o.default);t.default=a},function(e,t,n){"use strict";function i(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}Object.defineProperty(t,"__esModule",{value:!0});var r=function(){function e(e,t){for(var n=0;n<t.length;n++){var i=t[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}return function(t,n,i){return n&&e(t.prototype,n),i&&e(t,i),t}}(),o=function(){function e(t,n){i(this,e),this.quill=t,this.options=n,this.modules={}}return r(e,[{key:"init",value:function(){var e=this;Object.keys(this.options.modules).forEach(function(t){null==e.modules[t]&&e.addModule(t)})}},{key:"addModule",value:function(e){var t=this.quill.constructor.import("modules/"+e);return this.modules[e]=new t(this.quill,this.options.modules[e]||{}),this.modules[e]}}]),e}();o.DEFAULTS={modules:{}},o.themes={default:o},t.default=o},function(e,t,n){"use strict";function i(e){return e&&e.__esModule?e:{default:e}}function r(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function o(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function a(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function l(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}function s(e,t){var n,i=e===B.keys.LEFT?"prefix":"suffix";return n={key:e,shiftKey:t},r(n,i,/^$/),r(n,"handler",function(n){var i=n.index;e===B.keys.RIGHT&&(i+=n.length+1);var r=this.quill.getLeaf(i);return!(g(r,1)[0]instanceof A.default)||(e===B.keys.LEFT?t?this.quill.setSelection(n.index-1,n.length+1,D.default.sources.USER):this.quill.setSelection(n.index-1,D.default.sources.USER):t?this.quill.setSelection(n.index,n.length+1,D.default.sources.USER):this.quill.setSelection(n.index+n.length+1,D.default.sources.USER),!1)}),n}function u(e,t){if(!(0===e.index||this.quill.getLength()<=1)){var n=this.quill.getLine(e.index),i=g(n,1),r=i[0],o={};if(0===t.offset){var a=this.quill.getLine(e.index-1),l=g(a,1),s=l[0];if(null!=s&&s.length()>1){var u=r.formats(),c=this.quill.getFormat(e.index-1,1);o=M.default.attributes.diff(u,c)||{}}}var d=/[\uD800-\uDBFF][\uDC00-\uDFFF]$/.test(t.prefix)?2:1;this.quill.deleteText(e.index-d,d,D.default.sources.USER),Object.keys(o).length>0&&this.quill.formatLine(e.index-d,d,o,D.default.sources.USER),this.quill.focus()}}function c(e,t){var n=/^[\uD800-\uDBFF][\uDC00-\uDFFF]/.test(t.suffix)?2:1;if(!(e.index>=this.quill.getLength()-n)){var i={},r=0,o=this.quill.getLine(e.index),a=g(o,1),l=a[0];if(t.offset>=l.length()-1){var s=this.quill.getLine(e.index+1),u=g(s,1),c=u[0];if(c){var d=l.formats(),f=this.quill.getFormat(e.index,1);i=M.default.attributes.diff(d,f)||{},r=c.length()}}this.quill.deleteText(e.index,n,D.default.sources.USER),Object.keys(i).length>0&&this.quill.formatLine(e.index+r-1,n,i,D.default.sources.USER)}}function d(e){var t=this.quill.getLines(e),n={};if(t.length>1){var i=t[0].formats(),r=t[t.length-1].formats();n=M.default.attributes.diff(r,i)||{}}this.quill.deleteText(e,D.default.sources.USER),Object.keys(n).length>0&&this.quill.formatLine(e.index,1,n,D.default.sources.USER),this.quill.setSelection(e.index,D.default.sources.SILENT),this.quill.focus()}function f(e,t){var n=this;e.length>0&&this.quill.scroll.deleteAt(e.index,e.length);var i=Object.keys(t.format).reduce(function(e,n){return T.default.query(n,T.default.Scope.BLOCK)&&!Array.isArray(t.format[n])&&(e[n]=t.format[n]),e},{});this.quill.insertText(e.index,"\n",i,D.default.sources.USER),this.quill.setSelection(e.index+1,D.default.sources.SILENT),this.quill.focus(),Object.keys(t.format).forEach(function(e){null==i[e]&&(Array.isArray(t.format[e])||"link"!==e&&n.quill.format(e,t.format[e],D.default.sources.USER))})}function p(e){return{key:B.keys.TAB,shiftKey:!e,format:{"code-block":!0},handler:function(t){var n=T.default.query("code-block"),i=t.index,r=t.length,o=this.quill.scroll.descendant(n,i),a=g(o,2),l=a[0],s=a[1];if(null!=l){var u=this.quill.getIndex(l),c=l.newlineIndex(s,!0)+1,d=l.newlineIndex(u+s+r),f=l.domNode.textContent.slice(c,d).split("\n");s=0,f.forEach(function(t,o){e?(l.insertAt(c+s,n.TAB),s+=n.TAB.length,0===o?i+=n.TAB.length:r+=n.TAB.length):t.startsWith(n.TAB)&&(l.deleteAt(c+s,n.TAB.length),s-=n.TAB.length,0===o?i-=n.TAB.length:r-=n.TAB.length),s+=t.length+1}),this.quill.update(D.default.sources.USER),this.quill.setSelection(i,r,D.default.sources.SILENT)}}}}function h(e){return{key:e[0].toUpperCase(),shortKey:!0,handler:function(t,n){this.quill.format(e,!n.format[e],D.default.sources.USER)}}}function m(e){if("string"==typeof e||"number"==typeof e)return m({key:e});if("object"===(void 0===e?"undefined":v(e))&&(e=(0,_.default)(e,!1)),"string"==typeof e.key)if(null!=B.keys[e.key.toUpperCase()])e.key=B.keys[e.key.toUpperCase()];else{if(1!==e.key.length)return null;e.key=e.key.toUpperCase().charCodeAt(0)}return e.shortKey&&(e[R]=e.shortKey,delete e.shortKey),e}Object.defineProperty(t,"__esModule",{value:!0}),t.SHORTKEY=t.default=void 0;var v="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},g=function(){function e(e,t){var n=[],i=!0,r=!1,o=void 0;try{for(var a,l=e[Symbol.iterator]();!(i=(a=l.next()).done)&&(n.push(a.value),!t||n.length!==t);i=!0);}catch(e){r=!0,o=e}finally{try{!i&&l.return&&l.return()}finally{if(r)throw o}}return n}return function(t,n){if(Array.isArray(t))return t;if(Symbol.iterator in Object(t))return e(t,n);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}(),b=function(){function e(e,t){for(var n=0;n<t.length;n++){var i=t[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}return function(t,n,i){return n&&e(t.prototype,n),i&&e(t,i),t}}(),y=n(21),_=i(y),x=n(11),w=i(x),k=n(3),C=i(k),q=n(2),S=i(q),O=n(20),M=i(O),E=n(0),T=i(E),N=n(25),A=i(N),I=n(5),D=i(I),j=n(10),$=i(j),P=n(9),L=i(P),z=(0,$.default)("quill:keyboard"),R=/Mac/i.test(navigator.platform)?"metaKey":"ctrlKey",B=function(e){function t(e,n){o(this,t);var i=a(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e,n));return i.bindings={},Object.keys(i.options.bindings).forEach(function(t){("list autofill"!==t||null==e.scroll.whitelist||e.scroll.whitelist.list)&&i.options.bindings[t]&&i.addBinding(i.options.bindings[t])}),i.addBinding({key:t.keys.ENTER,shiftKey:null},f),i.addBinding({key:t.keys.ENTER,metaKey:null,ctrlKey:null,altKey:null},function(){}),/Firefox/i.test(navigator.userAgent)?(i.addBinding({key:t.keys.BACKSPACE},{collapsed:!0},u),i.addBinding({key:t.keys.DELETE},{collapsed:!0},c)):(i.addBinding({key:t.keys.BACKSPACE},{collapsed:!0,prefix:/^.?$/},u),i.addBinding({key:t.keys.DELETE},{collapsed:!0,suffix:/^.?$/},c)),i.addBinding({key:t.keys.BACKSPACE},{collapsed:!1},d),i.addBinding({key:t.keys.DELETE},{collapsed:!1},d),i.addBinding({key:t.keys.BACKSPACE,altKey:null,ctrlKey:null,metaKey:null,shiftKey:null},{collapsed:!0,offset:0},u),i.listen(),i}return l(t,e),b(t,null,[{key:"match",value:function(e,t){return t=m(t),!["altKey","ctrlKey","metaKey","shiftKey"].some(function(n){return!!t[n]!==e[n]&&null!==t[n]})&&t.key===(e.which||e.keyCode)}}]),b(t,[{key:"addBinding",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},i=m(e);if(null==i||null==i.key)return z.warn("Attempted to add invalid keyboard binding",i);"function"==typeof t&&(t={handler:t}),"function"==typeof n&&(n={handler:n}),i=(0,C.default)(i,t,n),this.bindings[i.key]=this.bindings[i.key]||[],this.bindings[i.key].push(i)}},{key:"listen",value:function(){var e=this;this.quill.root.addEventListener("keydown",function(n){if(!n.defaultPrevented){var i=n.which||n.keyCode,r=(e.bindings[i]||[]).filter(function(e){return t.match(n,e)});if(0!==r.length){var o=e.quill.getSelection();if(null!=o&&e.quill.hasFocus()){var a=e.quill.getLine(o.index),l=g(a,2),s=l[0],u=l[1],c=e.quill.getLeaf(o.index),d=g(c,2),f=d[0],p=d[1],h=0===o.length?[f,p]:e.quill.getLeaf(o.index+o.length),m=g(h,2),b=m[0],y=m[1],_=f instanceof T.default.Text?f.value().slice(0,p):"",x=b instanceof T.default.Text?b.value().slice(y):"",k={collapsed:0===o.length,empty:0===o.length&&s.length()<=1,format:e.quill.getFormat(o),offset:u,prefix:_,suffix:x};r.some(function(t){if(null!=t.collapsed&&t.collapsed!==k.collapsed)return!1;if(null!=t.empty&&t.empty!==k.empty)return!1;if(null!=t.offset&&t.offset!==k.offset)return!1;if(Array.isArray(t.format)){if(t.format.every(function(e){return null==k.format[e]}))return!1}else if("object"===v(t.format)&&!Object.keys(t.format).every(function(e){return!0===t.format[e]?null!=k.format[e]:!1===t.format[e]?null==k.format[e]:(0,w.default)(t.format[e],k.format[e])}))return!1;return!(null!=t.prefix&&!t.prefix.test(k.prefix))&&(!(null!=t.suffix&&!t.suffix.test(k.suffix))&&!0!==t.handler.call(e,o,k))})&&n.preventDefault()}}}})}}]),t}(L.default);B.keys={BACKSPACE:8,TAB:9,ENTER:13,ESCAPE:27,LEFT:37,UP:38,RIGHT:39,DOWN:40,DELETE:46},B.DEFAULTS={bindings:{bold:h("bold"),italic:h("italic"),underline:h("underline"),indent:{key:B.keys.TAB,format:["blockquote","indent","list"],handler:function(e,t){if(t.collapsed&&0!==t.offset)return!0;this.quill.format("indent","+1",D.default.sources.USER)}},outdent:{key:B.keys.TAB,shiftKey:!0,format:["blockquote","indent","list"],handler:function(e,t){if(t.collapsed&&0!==t.offset)return!0;this.quill.format("indent","-1",D.default.sources.USER)}},"outdent backspace":{key:B.keys.BACKSPACE,collapsed:!0,shiftKey:null,metaKey:null,ctrlKey:null,altKey:null,format:["indent","list"],offset:0,handler:function(e,t){null!=t.format.indent?this.quill.format("indent","-1",D.default.sources.USER):null!=t.format.list&&this.quill.format("list",!1,D.default.sources.USER)}},"indent code-block":p(!0),"outdent code-block":p(!1),"remove tab":{key:B.keys.TAB,shiftKey:!0,collapsed:!0,prefix:/\t$/,handler:function(e){this.quill.deleteText(e.index-1,1,D.default.sources.USER)}},tab:{key:B.keys.TAB,handler:function(e){this.quill.history.cutoff();var t=(new S.default).retain(e.index).delete(e.length).insert("\t");this.quill.updateContents(t,D.default.sources.USER),this.quill.history.cutoff(),this.quill.setSelection(e.index+1,D.default.sources.SILENT)}},"list empty enter":{key:B.keys.ENTER,collapsed:!0,format:["list"],empty:!0,handler:function(e,t){this.quill.format("list",!1,D.default.sources.USER),t.format.indent&&this.quill.format("indent",!1,D.default.sources.USER)}},"checklist enter":{key:B.keys.ENTER,collapsed:!0,format:{list:"checked"},handler:function(e){var t=this.quill.getLine(e.index),n=g(t,2),i=n[0],r=n[1],o=(new S.default).retain(e.index).insert("\n",{list:"checked"}).retain(i.length()-r-1).retain(1,{list:"unchecked"});this.quill.updateContents(o,D.default.sources.USER),this.quill.setSelection(e.index+1,D.default.sources.SILENT),this.quill.scrollIntoView()}},"header enter":{key:B.keys.ENTER,collapsed:!0,format:["header"],suffix:/^$/,handler:function(e,t){var n=this.quill.getLine(e.index),i=g(n,2),r=i[0],o=i[1],a=(new S.default).retain(e.index).insert("\n",t.format).retain(r.length()-o-1).retain(1,{header:null});this.quill.updateContents(a,D.default.sources.USER),this.quill.setSelection(e.index+1,D.default.sources.SILENT),this.quill.scrollIntoView()}},"list autofill":{key:" ",collapsed:!0,format:{list:!1},prefix:/^\s*?(1\.|-|\[ ?\]|\[x\])$/,handler:function(e,t){var n=t.prefix.length,i=void 0;switch(t.prefix.trim()){case"[]":case"[ ]":i="unchecked";break;case"[x]":i="checked";break;case"-":i="bullet";break;default:i="ordered"}this.quill.insertText(e.index," ",D.default.sources.USER),this.quill.history.cutoff();var r=this.quill.getLine(e.index+1),o=g(r,2),a=o[0],l=o[1],s=(new S.default).retain(e.index+1-l).delete(n+1).retain(a.length()-1-l).retain(1,{list:i});this.quill.updateContents(s,D.default.sources.USER),this.quill.history.cutoff(),this.quill.setSelection(e.index-n,D.default.sources.SILENT)}},"code exit":{key:B.keys.ENTER,collapsed:!0,format:["code-block"],prefix:/\n\n$/,suffix:/^\s+$/,handler:function(e){var t=this.quill.getLine(e.index),n=g(t,2),i=n[0],r=n[1],o=(new S.default).retain(e.index+i.length()-r-2).retain(1,{"code-block":null}).delete(1);this.quill.updateContents(o,D.default.sources.USER)}},"embed left":s(B.keys.LEFT,!1),"embed left shift":s(B.keys.LEFT,!0),"embed right":s(B.keys.RIGHT,!1),"embed right shift":s(B.keys.RIGHT,!0)}},t.default=B,t.SHORTKEY=R},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.AlignStyle=t.AlignClass=t.AlignAttribute=void 0;var i=n(0),r=function(e){return e&&e.__esModule?e:{default:e}}(i),o={scope:r.default.Scope.BLOCK,whitelist:["right","center","justify"]},a=new r.default.Attributor.Attribute("align","align",o),l=new r.default.Attributor.Class("align","ql-align",o),s=new r.default.Attributor.Style("align","text-align",o);t.AlignAttribute=a,t.AlignClass=l,t.AlignStyle=s},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.BackgroundStyle=t.BackgroundClass=void 0;var i=n(0),r=function(e){return e&&e.__esModule?e:{default:e}}(i),o=n(26),a=new r.default.Attributor.Class("background","ql-bg",{scope:r.default.Scope.INLINE}),l=new o.ColorAttributor("background","background-color",{scope:r.default.Scope.INLINE});t.BackgroundClass=a,t.BackgroundStyle=l},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.DirectionStyle=t.DirectionClass=t.DirectionAttribute=void 0;var i=n(0),r=function(e){return e&&e.__esModule?e:{default:e}}(i),o={scope:r.default.Scope.BLOCK,whitelist:["rtl"]},a=new r.default.Attributor.Attribute("direction","dir",o),l=new r.default.Attributor.Class("direction","ql-direction",o),s=new r.default.Attributor.Style("direction","direction",o);t.DirectionAttribute=a,t.DirectionClass=l,t.DirectionStyle=s},function(e,t,n){"use strict";function i(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function r(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function o(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}Object.defineProperty(t,"__esModule",{value:!0}),t.FontClass=t.FontStyle=void 0;var a=function(){function e(e,t){for(var n=0;n<t.length;n++){var i=t[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}return function(t,n,i){return n&&e(t.prototype,n),i&&e(t,i),t}}(),l=function e(t,n,i){null===t&&(t=Function.prototype);var r=Object.getOwnPropertyDescriptor(t,n);if(void 0===r){var o=Object.getPrototypeOf(t);return null===o?void 0:e(o,n,i)}if("value"in r)return r.value;var a=r.get;if(void 0!==a)return a.call(i)},s=n(0),u=function(e){return e&&e.__esModule?e:{default:e}}(s),c={scope:u.default.Scope.INLINE,whitelist:["serif","monospace"]},d=new u.default.Attributor.Class("font","ql-font",c),f=function(e){function t(){return i(this,t),r(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}return o(t,e),a(t,[{key:"value",value:function(e){return l(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"value",this).call(this,e).replace(/["']/g,"")}}]),t}(u.default.Attributor.Style),p=new f("font","font-family",c);t.FontStyle=p,t.FontClass=d},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.SizeStyle=t.SizeClass=void 0;var i=n(0),r=function(e){return e&&e.__esModule?e:{default:e}}(i),o=new r.default.Attributor.Class("size","ql-size",{scope:r.default.Scope.INLINE,whitelist:["small","large","huge"]}),a=new r.default.Attributor.Style("size","font-size",{scope:r.default.Scope.INLINE,whitelist:["10px","18px","32px"]});t.SizeClass=o,t.SizeStyle=a},function(e,t,n){"use strict";e.exports={align:{"":n(76),center:n(77),right:n(78),justify:n(79)},background:n(80),blockquote:n(81),bold:n(82),clean:n(83),code:n(58),"code-block":n(58),color:n(84),direction:{"":n(85),rtl:n(86)},float:{center:n(87),full:n(88),left:n(89),right:n(90)},formula:n(91),header:{1:n(92),2:n(93)},italic:n(94),image:n(95),indent:{"+1":n(96),"-1":n(97)},link:n(98),list:{ordered:n(99),bullet:n(100),check:n(101)},script:{sub:n(102),super:n(103)},strike:n(104),underline:n(105),video:n(106)}},function(e,t,n){"use strict";function i(e){return e&&e.__esModule?e:{default:e}}function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function o(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function a(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}function l(e){var t=e.ops[e.ops.length-1];return null!=t&&(null!=t.insert?"string"==typeof t.insert&&t.insert.endsWith("\n"):null!=t.attributes&&Object.keys(t.attributes).some(function(e){return null!=d.default.query(e,d.default.Scope.BLOCK)}))}function s(e){var t=e.reduce(function(e,t){return e+=t.delete||0},0),n=e.length()-t;return l(e)&&(n-=1),n}Object.defineProperty(t,"__esModule",{value:!0}),t.getLastChangeIndex=t.default=void 0;var u=function(){function e(e,t){for(var n=0;n<t.length;n++){var i=t[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}return function(t,n,i){return n&&e(t.prototype,n),i&&e(t,i),t}}(),c=n(0),d=i(c),f=n(5),p=i(f),h=n(9),m=i(h),v=function(e){function t(e,n){r(this,t);var i=o(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e,n));return i.lastRecorded=0,i.ignoreChange=!1,i.clear(),i.quill.on(p.default.events.EDITOR_CHANGE,function(e,t,n,r){e!==p.default.events.TEXT_CHANGE||i.ignoreChange||(i.options.userOnly&&r!==p.default.sources.USER?i.transform(t):i.record(t,n))}),i.quill.keyboard.addBinding({key:"Z",shortKey:!0},i.undo.bind(i)),i.quill.keyboard.addBinding({key:"Z",shortKey:!0,shiftKey:!0},i.redo.bind(i)),/Win/i.test(navigator.platform)&&i.quill.keyboard.addBinding({key:"Y",shortKey:!0},i.redo.bind(i)),i}return a(t,e),u(t,[{key:"change",value:function(e,t){if(0!==this.stack[e].length){var n=this.stack[e].pop();this.lastRecorded=0,this.ignoreChange=!0,this.quill.updateContents(n[e],p.default.sources.USER),this.ignoreChange=!1;var i=s(n[e]);this.quill.setSelection(i),this.stack[t].push(n)}}},{key:"clear",value:function(){this.stack={undo:[],redo:[]}}},{key:"cutoff",value:function(){this.lastRecorded=0}},{key:"record",value:function(e,t){if(0!==e.ops.length){this.stack.redo=[];var n=this.quill.getContents().diff(t),i=Date.now();if(this.lastRecorded+this.options.delay>i&&this.stack.undo.length>0){var r=this.stack.undo.pop();n=n.compose(r.undo),e=r.redo.compose(e)}else this.lastRecorded=i;this.stack.undo.push({redo:e,undo:n}),this.stack.undo.length>this.options.maxStack&&this.stack.undo.shift()}}},{key:"redo",value:function(){this.change("redo","undo")}},{key:"transform",value:function(e){this.stack.undo.forEach(function(t){t.undo=e.transform(t.undo,!0),t.redo=e.transform(t.redo,!0)}),this.stack.redo.forEach(function(t){t.undo=e.transform(t.undo,!0),t.redo=e.transform(t.redo,!0)})}},{key:"undo",value:function(){this.change("undo","redo")}}]),t}(m.default);v.DEFAULTS={delay:1e3,maxStack:100,userOnly:!1},t.default=v,t.getLastChangeIndex=s},function(e,t,n){"use strict";function i(e){return e&&e.__esModule?e:{default:e}}function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function o(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function a(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}function l(e){var t=e.match(/^(?:(https?):\/\/)?(?:(?:www|m)\.)?youtube\.com\/watch.*v=([a-zA-Z0-9_-]+)/)||e.match(/^(?:(https?):\/\/)?(?:(?:www|m)\.)?youtu\.be\/([a-zA-Z0-9_-]+)/);return t?(t[1]||"https")+"://www.youtube.com/embed/"+t[2]+"?showinfo=0":(t=e.match(/^(?:(https?):\/\/)?(?:www\.)?vimeo\.com\/(\d+)/))?(t[1]||"https")+"://player.vimeo.com/video/"+t[2]+"/":e}function s(e,t){var n=arguments.length>2&&void 0!==arguments[2]&&arguments[2];t.forEach(function(t){var i=document.createElement("option");t===n?i.setAttribute("selected","selected"):i.setAttribute("value",t),e.appendChild(i)})}Object.defineProperty(t,"__esModule",{value:!0}),t.default=t.BaseTooltip=void 0;var u=function(){function e(e,t){for(var n=0;n<t.length;n++){var i=t[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}return function(t,n,i){return n&&e(t.prototype,n),i&&e(t,i),t}}(),c=function e(t,n,i){null===t&&(t=Function.prototype);var r=Object.getOwnPropertyDescriptor(t,n);if(void 0===r){var o=Object.getPrototypeOf(t);return null===o?void 0:e(o,n,i)}if("value"in r)return r.value;var a=r.get;if(void 0!==a)return a.call(i)},d=n(3),f=i(d),p=n(2),h=i(p),m=n(8),v=i(m),g=n(35),b=i(g),y=n(34),_=i(y),x=n(59),w=i(x),k=n(60),C=i(k),q=n(28),S=i(q),O=n(61),M=i(O),E=[!1,"center","right","justify"],T=["#000000","#e60000","#ff9900","#ffff00","#008a00","#0066cc","#9933ff","#ffffff","#facccc","#ffebcc","#ffffcc","#cce8cc","#cce0f5","#ebd6ff","#bbbbbb","#f06666","#ffc266","#ffff66","#66b966","#66a3e0","#c285ff","#888888","#a10000","#b26b00","#b2b200","#006100","#0047b2","#6b24b2","#444444","#5c0000","#663d00","#666600","#003700","#002966","#3d1466"],N=[!1,"serif","monospace"],A=["1","2","3",!1],I=["small",!1,"large","huge"],D=function(e){function t(e,n){r(this,t);var i=o(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e,n)),a=function t(n){if(!document.body.contains(e.root))return document.body.removeEventListener("click",t);null==i.tooltip||i.tooltip.root.contains(n.target)||document.activeElement===i.tooltip.textbox||i.quill.hasFocus()||i.tooltip.hide(),null!=i.pickers&&i.pickers.forEach(function(e){e.container.contains(n.target)||e.close()})};return document.body.addEventListener("click",a),i}return a(t,e),u(t,[{key:"addModule",value:function(e){var n=c(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"addModule",this).call(this,e);return"toolbar"===e&&this.extendToolbar(n),n}},{key:"buildButtons",value:function(e,t){e.forEach(function(e){(e.getAttribute("class")||"").split(/\s+/).forEach(function(n){if(n.startsWith("ql-")&&(n=n.slice("ql-".length),null!=t[n]))if("direction"===n)e.innerHTML=t[n][""]+t[n].rtl;else if("string"==typeof t[n])e.innerHTML=t[n];else{var i=e.value||"";null!=i&&t[n][i]&&(e.innerHTML=t[n][i])}})})}},{key:"buildPickers",value:function(e,t){var n=this;this.pickers=e.map(function(e){if(e.classList.contains("ql-align"))return null==e.querySelector("option")&&s(e,E),new C.default(e,t.align);if(e.classList.contains("ql-background")||e.classList.contains("ql-color")){var n=e.classList.contains("ql-background")?"background":"color";return null==e.querySelector("option")&&s(e,T,"background"===n?"#ffffff":"#000000"),new w.default(e,t[n])}return null==e.querySelector("option")&&(e.classList.contains("ql-font")?s(e,N):e.classList.contains("ql-header")?s(e,A):e.classList.contains("ql-size")&&s(e,I)),new S.default(e)});var i=function(){n.pickers.forEach(function(e){e.update()})};this.quill.on(v.default.events.EDITOR_CHANGE,i)}}]),t}(_.default);D.DEFAULTS=(0,f.default)(!0,{},_.default.DEFAULTS,{modules:{toolbar:{handlers:{formula:function(){this.quill.theme.tooltip.edit("formula")},image:function(){var e=this,t=this.container.querySelector("input.ql-image[type=file]");null==t&&(t=document.createElement("input"),t.setAttribute("type","file"),t.setAttribute("accept","image/png, image/gif, image/jpeg, image/bmp, image/x-icon"),t.classList.add("ql-image"),t.addEventListener("change",function(){if(null!=t.files&&null!=t.files[0]){var n=new FileReader;n.onload=function(n){var i=e.quill.getSelection(!0);e.quill.updateContents((new h.default).retain(i.index).delete(i.length).insert({image:n.target.result}),v.default.sources.USER),e.quill.setSelection(i.index+1,v.default.sources.SILENT),t.value=""},n.readAsDataURL(t.files[0])}}),this.container.appendChild(t)),t.click()},video:function(){this.quill.theme.tooltip.edit("video")}}}}});var j=function(e){function t(e,n){r(this,t);var i=o(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e,n));return i.textbox=i.root.querySelector('input[type="text"]'),i.listen(),i}return a(t,e),u(t,[{key:"listen",value:function(){var e=this;this.textbox.addEventListener("keydown",function(t){b.default.match(t,"enter")?(e.save(),t.preventDefault()):b.default.match(t,"escape")&&(e.cancel(),t.preventDefault())})}},{key:"cancel",value:function(){this.hide()}},{key:"edit",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"link",t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;this.root.classList.remove("ql-hidden"),this.root.classList.add("ql-editing"),null!=t?this.textbox.value=t:e!==this.root.getAttribute("data-mode")&&(this.textbox.value=""),this.position(this.quill.getBounds(this.quill.selection.savedRange)),this.textbox.select(),this.textbox.setAttribute("placeholder",this.textbox.getAttribute("data-"+e)||""),this.root.setAttribute("data-mode",e)}},{key:"restoreFocus",value:function(){var e=this.quill.scrollingContainer.scrollTop;this.quill.focus(),this.quill.scrollingContainer.scrollTop=e}},{key:"save",value:function(){var e=this.textbox.value;switch(this.root.getAttribute("data-mode")){case"link":var t=this.quill.root.scrollTop;this.linkRange?(this.quill.formatText(this.linkRange,"link",e,v.default.sources.USER),delete this.linkRange):(this.restoreFocus(),this.quill.format("link",e,v.default.sources.USER)),this.quill.root.scrollTop=t;break;case"video":e=l(e);case"formula":if(!e)break;var n=this.quill.getSelection(!0);if(null!=n){var i=n.index+n.length;this.quill.insertEmbed(i,this.root.getAttribute("data-mode"),e,v.default.sources.USER),"formula"===this.root.getAttribute("data-mode")&&this.quill.insertText(i+1," ",v.default.sources.USER),this.quill.setSelection(i+2,v.default.sources.USER)}}this.textbox.value="",this.hide()}}]),t}(M.default);t.BaseTooltip=j,t.default=D},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var i=function(){function e(){this.head=this.tail=void 0,this.length=0}return e.prototype.append=function(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t];this.insertBefore(e[0],void 0),e.length>1&&this.append.apply(this,e.slice(1))},e.prototype.contains=function(e){for(var t,n=this.iterator();t=n();)if(t===e)return!0;return!1},e.prototype.insertBefore=function(e,t){e.next=t,null!=t?(e.prev=t.prev,null!=t.prev&&(t.prev.next=e),t.prev=e,t===this.head&&(this.head=e)):null!=this.tail?(this.tail.next=e,e.prev=this.tail,this.tail=e):(e.prev=void 0,this.head=this.tail=e),this.length+=1},e.prototype.offset=function(e){for(var t=0,n=this.head;null!=n;){if(n===e)return t;t+=n.length(),n=n.next}return-1},e.prototype.remove=function(e){this.contains(e)&&(null!=e.prev&&(e.prev.next=e.next),null!=e.next&&(e.next.prev=e.prev),e===this.head&&(this.head=e.next),e===this.tail&&(this.tail=e.prev),this.length-=1)},e.prototype.iterator=function(e){return void 0===e&&(e=this.head),function(){var t=e;return null!=e&&(e=e.next),t}},e.prototype.find=function(e,t){void 0===t&&(t=!1);for(var n,i=this.iterator();n=i();){var r=n.length();if(e<r||t&&e===r&&(null==n.next||0!==n.next.length()))return[n,e];e-=r}return[null,0]},e.prototype.forEach=function(e){for(var t,n=this.iterator();t=n();)e(t)},e.prototype.forEachAt=function(e,t,n){if(!(t<=0))for(var i,r=this.find(e),o=r[0],a=r[1],l=e-a,s=this.iterator(o);(i=s())&&l<e+t;){var u=i.length();e>l?n(i,e-l,Math.min(t,l+u-e)):n(i,0,Math.min(u,e+t-l)),l+=u}},e.prototype.map=function(e){return this.reduce(function(t,n){return t.push(e(n)),t},[])},e.prototype.reduce=function(e,t){for(var n,i=this.iterator();n=i();)t=e(t,n);return t},e}();t.default=i},function(e,t,n){"use strict";var i=this&&this.__extends||function(){var e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])};return function(t,n){function i(){this.constructor=t}e(t,n),t.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}();Object.defineProperty(t,"__esModule",{value:!0});var r=n(17),o=n(1),a={attributes:!0,characterData:!0,characterDataOldValue:!0,childList:!0,subtree:!0},l=function(e){function t(t){var n=e.call(this,t)||this;return n.parent=null,n.observer=new MutationObserver(function(e){n.update(e)}),n.observer.observe(n.domNode,a),n}return i(t,e),t.prototype.detach=function(){e.prototype.detach.call(this),this.observer.disconnect()},t.prototype.deleteAt=function(t,n){this.update(),0===t&&n===this.length()?this.children.forEach(function(e){e.remove()}):e.prototype.deleteAt.call(this,t,n)},t.prototype.formatAt=function(t,n,i,r){this.update(),e.prototype.formatAt.call(this,t,n,i,r)},t.prototype.insertAt=function(t,n,i){this.update(),e.prototype.insertAt.call(this,t,n,i)},t.prototype.optimize=function(t,n){var i=this;void 0===t&&(t=[]),void 0===n&&(n={}),e.prototype.optimize.call(this,n);for(var a=[].slice.call(this.observer.takeRecords());a.length>0;)t.push(a.pop());for(var l=function(e,t){void 0===t&&(t=!0),null!=e&&e!==i&&null!=e.domNode.parentNode&&(null==e.domNode[o.DATA_KEY].mutations&&(e.domNode[o.DATA_KEY].mutations=[]),t&&l(e.parent))},s=function(e){null!=e.domNode[o.DATA_KEY]&&null!=e.domNode[o.DATA_KEY].mutations&&(e instanceof r.default&&e.children.forEach(s),e.optimize(n))},u=t,c=0;u.length>0;c+=1){if(c>=100)throw new Error("[Parchment] Maximum optimize iterations reached");for(u.forEach(function(e){var t=o.find(e.target,!0);null!=t&&(t.domNode===e.target&&("childList"===e.type?(l(o.find(e.previousSibling,!1)),[].forEach.call(e.addedNodes,function(e){var t=o.find(e,!1);l(t,!1),t instanceof r.default&&t.children.forEach(function(e){l(e,!1)})})):"attributes"===e.type&&l(t.prev)),l(t))}),this.children.forEach(s),u=[].slice.call(this.observer.takeRecords()),a=u.slice();a.length>0;)t.push(a.pop())}},t.prototype.update=function(t,n){var i=this;void 0===n&&(n={}),t=t||this.observer.takeRecords(),t.map(function(e){var t=o.find(e.target,!0);if(null!=t)return null==t.domNode[o.DATA_KEY].mutations?(t.domNode[o.DATA_KEY].mutations=[e],t):(t.domNode[o.DATA_KEY].mutations.push(e),null)}).forEach(function(e){null!=e&&e!==i&&null!=e.domNode[o.DATA_KEY]&&e.update(e.domNode[o.DATA_KEY].mutations||[],n)}),null!=this.domNode[o.DATA_KEY].mutations&&e.prototype.update.call(this,this.domNode[o.DATA_KEY].mutations,n),this.optimize(t,n)},t.blotName="scroll",t.defaultChild="block",t.scope=o.Scope.BLOCK_BLOT,t.tagName="DIV",t}(r.default);t.default=l},function(e,t,n){"use strict";function i(e,t){if(Object.keys(e).length!==Object.keys(t).length)return!1;for(var n in e)if(e[n]!==t[n])return!1;return!0}var r=this&&this.__extends||function(){var e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])};return function(t,n){function i(){this.constructor=t}e(t,n),t.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}();Object.defineProperty(t,"__esModule",{value:!0});var o=n(18),a=n(1),l=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return r(t,e),t.formats=function(n){if(n.tagName!==t.tagName)return e.formats.call(this,n)},t.prototype.format=function(n,i){var r=this;n!==this.statics.blotName||i?e.prototype.format.call(this,n,i):(this.children.forEach(function(e){e instanceof o.default||(e=e.wrap(t.blotName,!0)),r.attributes.copy(e)}),this.unwrap())},t.prototype.formatAt=function(t,n,i,r){if(null!=this.formats()[i]||a.query(i,a.Scope.ATTRIBUTE)){this.isolate(t,n).format(i,r)}else e.prototype.formatAt.call(this,t,n,i,r)},t.prototype.optimize=function(n){e.prototype.optimize.call(this,n);var r=this.formats();if(0===Object.keys(r).length)return this.unwrap();var o=this.next;o instanceof t&&o.prev===this&&i(r,o.formats())&&(o.moveChildren(this),o.remove())},t.blotName="inline",t.scope=a.Scope.INLINE_BLOT,t.tagName="SPAN",t}(o.default);t.default=l},function(e,t,n){"use strict";var i=this&&this.__extends||function(){var e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])};return function(t,n){function i(){this.constructor=t}e(t,n),t.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}();Object.defineProperty(t,"__esModule",{value:!0});var r=n(18),o=n(1),a=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return i(t,e),t.formats=function(n){var i=o.query(t.blotName).tagName;if(n.tagName!==i)return e.formats.call(this,n)},t.prototype.format=function(n,i){null!=o.query(n,o.Scope.BLOCK)&&(n!==this.statics.blotName||i?e.prototype.format.call(this,n,i):this.replaceWith(t.blotName))},t.prototype.formatAt=function(t,n,i,r){null!=o.query(i,o.Scope.BLOCK)?this.format(i,r):e.prototype.formatAt.call(this,t,n,i,r)},t.prototype.insertAt=function(t,n,i){if(null==i||null!=o.query(n,o.Scope.INLINE))e.prototype.insertAt.call(this,t,n,i);else{var r=this.split(t),a=o.create(n,i);r.parent.insertBefore(a,r)}},t.prototype.update=function(t,n){navigator.userAgent.match(/Trident/)?this.attach():e.prototype.update.call(this,t,n)},t.blotName="block",t.scope=o.Scope.BLOCK_BLOT,t.tagName="P",t}(r.default);t.default=a},function(e,t,n){"use strict";var i=this&&this.__extends||function(){var e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])};return function(t,n){function i(){this.constructor=t}e(t,n),t.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}();Object.defineProperty(t,"__esModule",{value:!0});var r=n(19),o=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return i(t,e),t.formats=function(e){},t.prototype.format=function(t,n){e.prototype.formatAt.call(this,0,this.length(),t,n)},t.prototype.formatAt=function(t,n,i,r){0===t&&n===this.length()?this.format(i,r):e.prototype.formatAt.call(this,t,n,i,r)},t.prototype.formats=function(){return this.statics.formats(this.domNode)},t}(r.default);t.default=o},function(e,t,n){"use strict";var i=this&&this.__extends||function(){var e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])};return function(t,n){function i(){this.constructor=t}e(t,n),t.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}}();Object.defineProperty(t,"__esModule",{value:!0});var r=n(19),o=n(1),a=function(e){function t(t){var n=e.call(this,t)||this;return n.text=n.statics.value(n.domNode),n}return i(t,e),t.create=function(e){return document.createTextNode(e)},t.value=function(e){var t=e.data;return t.normalize&&(t=t.normalize()),t},t.prototype.deleteAt=function(e,t){this.domNode.data=this.text=this.text.slice(0,e)+this.text.slice(e+t)},t.prototype.index=function(e,t){return this.domNode===e?t:-1},t.prototype.insertAt=function(t,n,i){null==i?(this.text=this.text.slice(0,t)+n+this.text.slice(t),this.domNode.data=this.text):e.prototype.insertAt.call(this,t,n,i)},t.prototype.length=function(){return this.text.length},t.prototype.optimize=function(n){e.prototype.optimize.call(this,n),this.text=this.statics.value(this.domNode),0===this.text.length?this.remove():this.next instanceof t&&this.next.prev===this&&(this.insertAt(this.length(),this.next.value()),this.next.remove())},t.prototype.position=function(e,t){return void 0===t&&(t=!1),[this.domNode,e]},t.prototype.split=function(e,t){if(void 0===t&&(t=!1),!t){if(0===e)return this;if(e===this.length())return this.next}var n=o.create(this.domNode.splitText(e));return this.parent.insertBefore(n,this.next),this.text=this.statics.value(this.domNode),n},t.prototype.update=function(e,t){var n=this;e.some(function(e){return"characterData"===e.type&&e.target===n.domNode})&&(this.text=this.statics.value(this.domNode))},t.prototype.value=function(){return this.text},t.blotName="text",t.scope=o.Scope.INLINE_BLOT,t}(r.default);t.default=a},function(e,t,n){"use strict";var i=document.createElement("div");if(i.classList.toggle("test-class",!1),i.classList.contains("test-class")){var r=DOMTokenList.prototype.toggle;DOMTokenList.prototype.toggle=function(e,t){return arguments.length>1&&!this.contains(e)==!t?t:r.call(this,e)}}String.prototype.startsWith||(String.prototype.startsWith=function(e,t){return t=t||0,this.substr(t,e.length)===e}),String.prototype.endsWith||(String.prototype.endsWith=function(e,t){var n=this.toString();("number"!=typeof t||!isFinite(t)||Math.floor(t)!==t||t>n.length)&&(t=n.length),t-=e.length;var i=n.indexOf(e,t);return-1!==i&&i===t}),Array.prototype.find||Object.defineProperty(Array.prototype,"find",{value:function(e){if(null===this)throw new TypeError("Array.prototype.find called on null or undefined");if("function"!=typeof e)throw new TypeError("predicate must be a function");for(var t,n=Object(this),i=n.length>>>0,r=arguments[1],o=0;o<i;o++)if(t=n[o],e.call(r,t,o,n))return t}}),document.addEventListener("DOMContentLoaded",function(){document.execCommand("enableObjectResizing",!1,!1),document.execCommand("autoUrlDetect",!1,!1)})},function(e,t){function n(e,t,n){if(e==t)return e?[[m,e]]:[];(n<0||e.length<n)&&(n=null);var r=a(e,t),o=e.substring(0,r);e=e.substring(r),t=t.substring(r),r=l(e,t);var s=e.substring(e.length-r);e=e.substring(0,e.length-r),t=t.substring(0,t.length-r);var c=i(e,t);return o&&c.unshift([m,o]),s&&c.push([m,s]),u(c),null!=n&&(c=d(c,n)),c}function i(e,t){var i;if(!e)return[[h,t]];if(!t)return[[p,e]];var o=e.length>t.length?e:t,a=e.length>t.length?t:e,l=o.indexOf(a);if(-1!=l)return i=[[h,o.substring(0,l)],[m,a],[h,o.substring(l+a.length)]],e.length>t.length&&(i[0][0]=i[2][0]=p),i;if(1==a.length)return[[p,e],[h,t]];var u=s(e,t);if(u){var c=u[0],d=u[1],f=u[2],v=u[3],g=u[4],b=n(c,f),y=n(d,v);return b.concat([[m,g]],y)}return r(e,t)}function r(e,t){for(var n=e.length,i=t.length,r=Math.ceil((n+i)/2),a=r,l=2*r,s=new Array(l),u=new Array(l),c=0;c<l;c++)s[c]=-1,u[c]=-1;s[a+1]=0,u[a+1]=0;for(var d=n-i,f=d%2!=0,m=0,v=0,g=0,b=0,y=0;y<r;y++){for(var _=-y+m;_<=y-v;_+=2){var x,w=a+_;x=_==-y||_!=y&&s[w-1]<s[w+1]?s[w+1]:s[w-1]+1;for(var k=x-_;x<n&&k<i&&e.charAt(x)==t.charAt(k);)x++,k++;if(s[w]=x,x>n)v+=2;else if(k>i)m+=2;else if(f){var C=a+d-_;if(C>=0&&C<l&&-1!=u[C]){var q=n-u[C];if(x>=q)return o(e,t,x,k)}}}for(var S=-y+g;S<=y-b;S+=2){var q,C=a+S;q=S==-y||S!=y&&u[C-1]<u[C+1]?u[C+1]:u[C-1]+1;for(var O=q-S;q<n&&O<i&&e.charAt(n-q-1)==t.charAt(i-O-1);)q++,O++;if(u[C]=q,q>n)b+=2;else if(O>i)g+=2;else if(!f){var w=a+d-S;if(w>=0&&w<l&&-1!=s[w]){var x=s[w],k=a+x-w;if(q=n-q,x>=q)return o(e,t,x,k)}}}}return[[p,e],[h,t]]}function o(e,t,i,r){var o=e.substring(0,i),a=t.substring(0,r),l=e.substring(i),s=t.substring(r),u=n(o,a),c=n(l,s);return u.concat(c)}function a(e,t){if(!e||!t||e.charAt(0)!=t.charAt(0))return 0;for(var n=0,i=Math.min(e.length,t.length),r=i,o=0;n<r;)e.substring(o,r)==t.substring(o,r)?(n=r,o=n):i=r,r=Math.floor((i-n)/2+n);return r}function l(e,t){if(!e||!t||e.charAt(e.length-1)!=t.charAt(t.length-1))return 0;for(var n=0,i=Math.min(e.length,t.length),r=i,o=0;n<r;)e.substring(e.length-r,e.length-o)==t.substring(t.length-r,t.length-o)?(n=r,o=n):i=r,r=Math.floor((i-n)/2+n);return r}function s(e,t){function n(e,t,n){for(var i,r,o,s,u=e.substring(n,n+Math.floor(e.length/4)),c=-1,d="";-1!=(c=t.indexOf(u,c+1));){var f=a(e.substring(n),t.substring(c)),p=l(e.substring(0,n),t.substring(0,c));d.length<p+f&&(d=t.substring(c-p,c)+t.substring(c,c+f),i=e.substring(0,n-p),r=e.substring(n+f),o=t.substring(0,c-p),s=t.substring(c+f))}return 2*d.length>=e.length?[i,r,o,s,d]:null}var i=e.length>t.length?e:t,r=e.length>t.length?t:e;if(i.length<4||2*r.length<i.length)return null;var o,s=n(i,r,Math.ceil(i.length/4)),u=n(i,r,Math.ceil(i.length/2));if(!s&&!u)return null;o=u?s&&s[4].length>u[4].length?s:u:s;var c,d,f,p;return e.length>t.length?(c=o[0],d=o[1],f=o[2],p=o[3]):(f=o[0],p=o[1],c=o[2],d=o[3]),[c,d,f,p,o[4]]}function u(e){e.push([m,""]);for(var t,n=0,i=0,r=0,o="",s="";n<e.length;)switch(e[n][0]){case h:r++,s+=e[n][1],n++;break;case p:i++,o+=e[n][1],n++;break;case m:i+r>1?(0!==i&&0!==r&&(t=a(s,o),0!==t&&(n-i-r>0&&e[n-i-r-1][0]==m?e[n-i-r-1][1]+=s.substring(0,t):(e.splice(0,0,[m,s.substring(0,t)]),n++),s=s.substring(t),o=o.substring(t)),0!==(t=l(s,o))&&(e[n][1]=s.substring(s.length-t)+e[n][1],s=s.substring(0,s.length-t),o=o.substring(0,o.length-t))),0===i?e.splice(n-r,i+r,[h,s]):0===r?e.splice(n-i,i+r,[p,o]):e.splice(n-i-r,i+r,[p,o],[h,s]),n=n-i-r+(i?1:0)+(r?1:0)+1):0!==n&&e[n-1][0]==m?(e[n-1][1]+=e[n][1],e.splice(n,1)):n++,r=0,i=0,o="",s=""}""===e[e.length-1][1]&&e.pop();var c=!1;for(n=1;n<e.length-1;)e[n-1][0]==m&&e[n+1][0]==m&&(e[n][1].substring(e[n][1].length-e[n-1][1].length)==e[n-1][1]?(e[n][1]=e[n-1][1]+e[n][1].substring(0,e[n][1].length-e[n-1][1].length),e[n+1][1]=e[n-1][1]+e[n+1][1],e.splice(n-1,1),c=!0):e[n][1].substring(0,e[n+1][1].length)==e[n+1][1]&&(e[n-1][1]+=e[n+1][1],e[n][1]=e[n][1].substring(e[n+1][1].length)+e[n+1][1],e.splice(n+1,1),c=!0)),n++;c&&u(e)}function c(e,t){if(0===t)return[m,e];for(var n=0,i=0;i<e.length;i++){var r=e[i];if(r[0]===p||r[0]===m){var o=n+r[1].length;if(t===o)return[i+1,e];if(t<o){e=e.slice();var a=t-n,l=[r[0],r[1].slice(0,a)],s=[r[0],r[1].slice(a)];return e.splice(i,1,l,s),[i+1,e]}n=o}}throw new Error("cursor_pos is out of bounds!")}function d(e,t){var n=c(e,t),i=n[1],r=n[0],o=i[r],a=i[r+1];if(null==o)return e;if(o[0]!==m)return e;if(null!=a&&o[1]+a[1]===a[1]+o[1])return i.splice(r,2,a,o),f(i,r,2);if(null!=a&&0===a[1].indexOf(o[1])){i.splice(r,2,[a[0],o[1]],[0,o[1]]);var l=a[1].slice(o[1].length);return l.length>0&&i.splice(r+2,0,[a[0],l]),f(i,r,3)}return e}function f(e,t,n){for(var i=t+n-1;i>=0&&i>=t-1;i--)if(i+1<e.length){var r=e[i],o=e[i+1];r[0]===o[1]&&e.splice(i,2,[r[0],r[1]+o[1]])}return e}var p=-1,h=1,m=0,v=n;v.INSERT=h,v.DELETE=p,v.EQUAL=m,e.exports=v},function(e,t){function n(e){var t=[];for(var n in e)t.push(n);return t}t=e.exports="function"==typeof Object.keys?Object.keys:n,t.shim=n},function(e,t){function n(e){return"[object Arguments]"==Object.prototype.toString.call(e)}function i(e){return e&&"object"==typeof e&&"number"==typeof e.length&&Object.prototype.hasOwnProperty.call(e,"callee")&&!Object.prototype.propertyIsEnumerable.call(e,"callee")||!1}var r="[object Arguments]"==function(){return Object.prototype.toString.call(arguments)}();t=e.exports=r?n:i,t.supported=n,t.unsupported=i},function(e,t){"use strict";function n(){}function i(e,t,n){this.fn=e,this.context=t,this.once=n||!1}function r(){this._events=new n,this._eventsCount=0}var o=Object.prototype.hasOwnProperty,a="~";Object.create&&(n.prototype=Object.create(null),(new n).__proto__||(a=!1)),r.prototype.eventNames=function(){var e,t,n=[];if(0===this._eventsCount)return n;for(t in e=this._events)o.call(e,t)&&n.push(a?t.slice(1):t);return Object.getOwnPropertySymbols?n.concat(Object.getOwnPropertySymbols(e)):n},r.prototype.listeners=function(e,t){var n=a?a+e:e,i=this._events[n];if(t)return!!i;if(!i)return[];if(i.fn)return[i.fn];for(var r=0,o=i.length,l=new Array(o);r<o;r++)l[r]=i[r].fn;return l},r.prototype.emit=function(e,t,n,i,r,o){var l=a?a+e:e;if(!this._events[l])return!1;var s,u,c=this._events[l],d=arguments.length;if(c.fn){switch(c.once&&this.removeListener(e,c.fn,void 0,!0),d){case 1:return c.fn.call(c.context),!0;case 2:return c.fn.call(c.context,t),!0;case 3:return c.fn.call(c.context,t,n),!0;case 4:return c.fn.call(c.context,t,n,i),!0;case 5:return c.fn.call(c.context,t,n,i,r),!0;case 6:return c.fn.call(c.context,t,n,i,r,o),!0}for(u=1,s=new Array(d-1);u<d;u++)s[u-1]=arguments[u];c.fn.apply(c.context,s)}else{var f,p=c.length;for(u=0;u<p;u++)switch(c[u].once&&this.removeListener(e,c[u].fn,void 0,!0),d){case 1:c[u].fn.call(c[u].context);break;case 2:c[u].fn.call(c[u].context,t);break;case 3:c[u].fn.call(c[u].context,t,n);break;case 4:c[u].fn.call(c[u].context,t,n,i);break;default:if(!s)for(f=1,s=new Array(d-1);f<d;f++)s[f-1]=arguments[f];c[u].fn.apply(c[u].context,s)}}return!0},r.prototype.on=function(e,t,n){var r=new i(t,n||this),o=a?a+e:e;return this._events[o]?this._events[o].fn?this._events[o]=[this._events[o],r]:this._events[o].push(r):(this._events[o]=r,this._eventsCount++),this},r.prototype.once=function(e,t,n){var r=new i(t,n||this,!0),o=a?a+e:e;return this._events[o]?this._events[o].fn?this._events[o]=[this._events[o],r]:this._events[o].push(r):(this._events[o]=r,this._eventsCount++),this},r.prototype.removeListener=function(e,t,i,r){var o=a?a+e:e;if(!this._events[o])return this;if(!t)return 0==--this._eventsCount?this._events=new n:delete this._events[o],this;var l=this._events[o];if(l.fn)l.fn!==t||r&&!l.once||i&&l.context!==i||(0==--this._eventsCount?this._events=new n:delete this._events[o]);else{for(var s=0,u=[],c=l.length;s<c;s++)(l[s].fn!==t||r&&!l[s].once||i&&l[s].context!==i)&&u.push(l[s]);u.length?this._events[o]=1===u.length?u[0]:u:0==--this._eventsCount?this._events=new n:delete this._events[o]}return this},r.prototype.removeAllListeners=function(e){var t;return e?(t=a?a+e:e,this._events[t]&&(0==--this._eventsCount?this._events=new n:delete this._events[t])):(this._events=new n,this._eventsCount=0),this},r.prototype.off=r.prototype.removeListener,r.prototype.addListener=r.prototype.on,r.prototype.setMaxListeners=function(){return this},r.prefixed=a,r.EventEmitter=r,void 0!==e&&(e.exports=r)},function(e,t,n){"use strict";function i(e){return e&&e.__esModule?e:{default:e}}function r(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function o(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function a(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function l(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}function s(e,t,n){return"object"===(void 0===t?"undefined":k(t))?Object.keys(t).reduce(function(e,n){return s(e,n,t[n])},e):e.reduce(function(e,i){return i.attributes&&i.attributes[t]?e.push(i):e.insert(i.insert,(0,O.default)({},r({},t,n),i.attributes))},new E.default)}function u(e){if(e.nodeType!==Node.ELEMENT_NODE)return{};return e["__ql-computed-style"]||(e["__ql-computed-style"]=window.getComputedStyle(e))}function c(e,t){for(var n="",i=e.ops.length-1;i>=0&&n.length<t.length;--i){var r=e.ops[i];if("string"!=typeof r.insert)break;n=r.insert+n}return n.slice(-1*t.length)===t}function d(e){return 0!==e.childNodes.length&&["block","list-item"].indexOf(u(e).display)>-1}function f(e,t,n){return e.nodeType===e.TEXT_NODE?n.reduce(function(t,n){return n(e,t)},new E.default):e.nodeType===e.ELEMENT_NODE?[].reduce.call(e.childNodes||[],function(i,r){var o=f(r,t,n);return r.nodeType===e.ELEMENT_NODE&&(o=t.reduce(function(e,t){return t(r,e)},o),o=(r[Y]||[]).reduce(function(e,t){return t(r,e)},o)),i.concat(o)},new E.default):new E.default}function p(e,t,n){return s(n,e,!0)}function h(e,t){var n=N.default.Attributor.Attribute.keys(e),i=N.default.Attributor.Class.keys(e),r=N.default.Attributor.Style.keys(e),o={};return n.concat(i).concat(r).forEach(function(t){var n=N.default.query(t,N.default.Scope.ATTRIBUTE);null!=n&&(o[n.attrName]=n.value(e),o[n.attrName])||(n=K[t],null!=n&&n.attrName===t&&(o[n.attrName]=n.value(e)||void 0),null!=(n=Z[t])&&n.attrName===t&&(n=Z[t],o[n.attrName]=n.value(e)||void 0))}),Object.keys(o).length>0&&(t=s(t,o)),t}function m(e,t){var n=N.default.query(e);if(null==n)return t;if(n.prototype instanceof N.default.Embed){var i={},r=n.value(e);null!=r&&(i[n.blotName]=r,t=(new E.default).insert(i,n.formats(e)))}else"function"==typeof n.formats&&(t=s(t,n.blotName,n.formats(e)));return t}function v(e,t){return c(t,"\n")||t.insert("\n"),t}function g(){return new E.default}function b(e,t){var n=N.default.query(e);if(null==n||"list-item"!==n.blotName||!c(t,"\n"))return t;for(var i=-1,r=e.parentNode;!r.classList.contains("ql-clipboard");)"list"===(N.default.query(r)||{}).blotName&&(i+=1),r=r.parentNode;return i<=0?t:t.compose((new E.default).retain(t.length()-1).retain(1,{indent:i}))}function y(e,t){return c(t,"\n")||(d(e)||t.length()>0&&e.nextSibling&&d(e.nextSibling))&&t.insert("\n"),t}function _(e,t){if(d(e)&&null!=e.nextElementSibling&&!c(t,"\n\n")){var n=e.offsetHeight+parseFloat(u(e).marginTop)+parseFloat(u(e).marginBottom);e.nextElementSibling.offsetTop>e.offsetTop+1.5*n&&t.insert("\n")}return t}function x(e,t){var n={},i=e.style||{};return i.fontStyle&&"italic"===u(e).fontStyle&&(n.italic=!0),i.fontWeight&&(u(e).fontWeight.startsWith("bold")||parseInt(u(e).fontWeight)>=700)&&(n.bold=!0),Object.keys(n).length>0&&(t=s(t,n)),parseFloat(i.textIndent||0)>0&&(t=(new E.default).insert("\t").concat(t)),t}function w(e,t){var n=e.data;if("O:P"===e.parentNode.tagName)return t.insert(n.trim());if(0===n.trim().length&&e.parentNode.classList.contains("ql-clipboard"))return t;if(!u(e.parentNode).whiteSpace.startsWith("pre")){var i=function(e,t){return t=t.replace(/[^\u00a0]/g,""),t.length<1&&e?" ":t};n=n.replace(/\r\n/g," ").replace(/\n/g," "),n=n.replace(/\s\s+/g,i.bind(i,!0)),(null==e.previousSibling&&d(e.parentNode)||null!=e.previousSibling&&d(e.previousSibling))&&(n=n.replace(/^\s+/,i.bind(i,!1))),(null==e.nextSibling&&d(e.parentNode)||null!=e.nextSibling&&d(e.nextSibling))&&(n=n.replace(/\s+$/,i.bind(i,!1)))}return t.insert(n)}Object.defineProperty(t,"__esModule",{value:!0}),t.matchText=t.matchSpacing=t.matchNewline=t.matchBlot=t.matchAttributor=t.default=void 0;var k="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},C=function(){function e(e,t){var n=[],i=!0,r=!1,o=void 0;try{for(var a,l=e[Symbol.iterator]();!(i=(a=l.next()).done)&&(n.push(a.value),!t||n.length!==t);i=!0);}catch(e){r=!0,o=e}finally{try{!i&&l.return&&l.return()}finally{if(r)throw o}}return n}return function(t,n){if(Array.isArray(t))return t;if(Symbol.iterator in Object(t))return e(t,n);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}(),q=function(){function e(e,t){for(var n=0;n<t.length;n++){var i=t[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}return function(t,n,i){return n&&e(t.prototype,n),i&&e(t,i),t}}(),S=n(3),O=i(S),M=n(2),E=i(M),T=n(0),N=i(T),A=n(5),I=i(A),D=n(10),j=i(D),$=n(9),P=i($),L=n(36),z=n(37),R=n(13),B=i(R),F=n(26),V=n(38),H=n(39),U=n(40),W=(0,j.default)("quill:clipboard"),Y="__ql-matcher",G=[[Node.TEXT_NODE,w],[Node.TEXT_NODE,y],["br",v],[Node.ELEMENT_NODE,y],[Node.ELEMENT_NODE,m],[Node.ELEMENT_NODE,_],[Node.ELEMENT_NODE,h],[Node.ELEMENT_NODE,x],["li",b],["b",p.bind(p,"bold")],["i",p.bind(p,"italic")],["style",g]],K=[L.AlignAttribute,V.DirectionAttribute].reduce(function(e,t){return e[t.keyName]=t,e},{}),Z=[L.AlignStyle,z.BackgroundStyle,F.ColorStyle,V.DirectionStyle,H.FontStyle,U.SizeStyle].reduce(function(e,t){return e[t.keyName]=t,e},{}),Q=function(e){function t(e,n){o(this,t);var i=a(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e,n));return i.quill.root.addEventListener("paste",i.onPaste.bind(i)),i.container=i.quill.addContainer("ql-clipboard"),i.container.setAttribute("contenteditable",!0),i.container.setAttribute("tabindex",-1),i.matchers=[],G.concat(i.options.matchers).forEach(function(e){var t=C(e,2),r=t[0],o=t[1];(n.matchVisual||o!==_)&&i.addMatcher(r,o)}),i}return l(t,e),q(t,[{key:"addMatcher",value:function(e,t){this.matchers.push([e,t])}},{key:"convert",value:function(e){if("string"==typeof e)return this.container.innerHTML=e.replace(/\>\r?\n +\</g,"><"),this.convert();var t=this.quill.getFormat(this.quill.selection.savedRange.index);if(t[B.default.blotName]){var n=this.container.innerText;return this.container.innerHTML="",(new E.default).insert(n,r({},B.default.blotName,t[B.default.blotName]))}var i=this.prepareMatching(),o=C(i,2),a=o[0],l=o[1],s=f(this.container,a,l);return c(s,"\n")&&null==s.ops[s.ops.length-1].attributes&&(s=s.compose((new E.default).retain(s.length()-1).delete(1))),W.log("convert",this.container.innerHTML,s),this.container.innerHTML="",s}},{key:"dangerouslyPasteHTML",value:function(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:I.default.sources.API;if("string"==typeof e)return this.quill.setContents(this.convert(e),t);var i=this.convert(t);return this.quill.updateContents((new E.default).retain(e).concat(i),n)}},{key:"onPaste",value:function(e){var t=this;if(!e.defaultPrevented&&this.quill.isEnabled()){var n=this.quill.getSelection(),i=(new E.default).retain(n.index),r=this.quill.scrollingContainer.scrollTop;this.container.focus(),this.quill.selection.update(I.default.sources.SILENT),setTimeout(function(){i=i.concat(t.convert()).delete(n.length),t.quill.updateContents(i,I.default.sources.USER),t.quill.setSelection(i.length()-n.length,I.default.sources.SILENT),t.quill.scrollingContainer.scrollTop=r,t.quill.focus()},1)}}},{key:"prepareMatching",value:function(){var e=this,t=[],n=[];return this.matchers.forEach(function(i){var r=C(i,2),o=r[0],a=r[1];switch(o){case Node.TEXT_NODE:n.push(a);break;case Node.ELEMENT_NODE:t.push(a);break;default:[].forEach.call(e.container.querySelectorAll(o),function(e){e[Y]=e[Y]||[],e[Y].push(a)})}}),[t,n]}}]),t}(P.default);Q.DEFAULTS={matchers:[],matchVisual:!0},t.default=Q,t.matchAttributor=h,t.matchBlot=m,t.matchNewline=y,t.matchSpacing=_,t.matchText=w},function(e,t,n){"use strict";function i(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function r(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function o(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}Object.defineProperty(t,"__esModule",{value:!0});var a=function(){function e(e,t){for(var n=0;n<t.length;n++){var i=t[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}return function(t,n,i){return n&&e(t.prototype,n),i&&e(t,i),t}}(),l=function e(t,n,i){null===t&&(t=Function.prototype);var r=Object.getOwnPropertyDescriptor(t,n);if(void 0===r){var o=Object.getPrototypeOf(t);return null===o?void 0:e(o,n,i)}if("value"in r)return r.value;var a=r.get;if(void 0!==a)return a.call(i)},s=n(6),u=function(e){return e&&e.__esModule?e:{default:e}}(s),c=function(e){function t(){return i(this,t),r(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}return o(t,e),a(t,[{key:"optimize",value:function(e){l(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"optimize",this).call(this,e),this.domNode.tagName!==this.statics.tagName[0]&&this.replaceWith(this.statics.blotName)}}],[{key:"create",value:function(){return l(t.__proto__||Object.getPrototypeOf(t),"create",this).call(this)}},{key:"formats",value:function(){return!0}}]),t}(u.default);c.blotName="bold",c.tagName=["STRONG","B"],t.default=c},function(e,t,n){"use strict";function i(e){return e&&e.__esModule?e:{default:e}}function r(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function o(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function a(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function l(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}function s(e,t,n){var i=document.createElement("button");i.setAttribute("type","button"),i.classList.add("ql-"+t),null!=n&&(i.value=n),e.appendChild(i)}function u(e,t){Array.isArray(t[0])||(t=[t]),t.forEach(function(t){var n=document.createElement("span");n.classList.add("ql-formats"),t.forEach(function(e){if("string"==typeof e)s(n,e);else{var t=Object.keys(e)[0],i=e[t];Array.isArray(i)?c(n,t,i):s(n,t,i)}}),e.appendChild(n)})}function c(e,t,n){var i=document.createElement("select");i.classList.add("ql-"+t),n.forEach(function(e){var t=document.createElement("option");!1!==e?t.setAttribute("value",e):t.setAttribute("selected","selected"),i.appendChild(t)}),e.appendChild(i)}Object.defineProperty(t,"__esModule",{value:!0}),t.addControls=t.default=void 0;var d=function(){function e(e,t){var n=[],i=!0,r=!1,o=void 0;try{for(var a,l=e[Symbol.iterator]();!(i=(a=l.next()).done)&&(n.push(a.value),!t||n.length!==t);i=!0);}catch(e){r=!0,o=e}finally{try{!i&&l.return&&l.return()}finally{if(r)throw o}}return n}return function(t,n){if(Array.isArray(t))return t;if(Symbol.iterator in Object(t))return e(t,n);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}(),f=function(){function e(e,t){for(var n=0;n<t.length;n++){var i=t[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}return function(t,n,i){return n&&e(t.prototype,n),i&&e(t,i),t}}(),p=n(2),h=i(p),m=n(0),v=i(m),g=n(5),b=i(g),y=n(10),_=i(y),x=n(9),w=i(x),k=(0,_.default)("quill:toolbar"),C=function(e){function t(e,n){o(this,t);var i=a(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e,n));if(Array.isArray(i.options.container)){var r=document.createElement("div");u(r,i.options.container),e.container.parentNode.insertBefore(r,e.container),i.container=r}else"string"==typeof i.options.container?i.container=document.querySelector(i.options.container):i.container=i.options.container;if(!(i.container instanceof HTMLElement)){var l;return l=k.error("Container required for toolbar",i.options),a(i,l)}return i.container.classList.add("ql-toolbar"),i.controls=[],i.handlers={},Object.keys(i.options.handlers).forEach(function(e){i.addHandler(e,i.options.handlers[e])}),[].forEach.call(i.container.querySelectorAll("button, select"),function(e){i.attach(e)}),i.quill.on(b.default.events.EDITOR_CHANGE,function(e,t){e===b.default.events.SELECTION_CHANGE&&i.update(t)}),i.quill.on(b.default.events.SCROLL_OPTIMIZE,function(){var e=i.quill.selection.getRange(),t=d(e,1),n=t[0];i.update(n)}),i}return l(t,e),f(t,[{key:"addHandler",value:function(e,t){this.handlers[e]=t}},{key:"attach",value:function(e){var t=this,n=[].find.call(e.classList,function(e){return 0===e.indexOf("ql-")});if(n){if(n=n.slice("ql-".length),"BUTTON"===e.tagName&&e.setAttribute("type","button"),null==this.handlers[n]){if(null!=this.quill.scroll.whitelist&&null==this.quill.scroll.whitelist[n])return void k.warn("ignoring attaching to disabled format",n,e);if(null==v.default.query(n))return void k.warn("ignoring attaching to nonexistent format",n,e)}var i="SELECT"===e.tagName?"change":"click";e.addEventListener(i,function(i){var o=void 0;if("SELECT"===e.tagName){if(e.selectedIndex<0)return;var a=e.options[e.selectedIndex];o=!a.hasAttribute("selected")&&(a.value||!1)}else o=!e.classList.contains("ql-active")&&(e.value||!e.hasAttribute("value")),i.preventDefault();t.quill.focus();var l=t.quill.selection.getRange(),s=d(l,1),u=s[0];if(null!=t.handlers[n])t.handlers[n].call(t,o);else if(v.default.query(n).prototype instanceof v.default.Embed){if(!(o=prompt("Enter "+n)))return;t.quill.updateContents((new h.default).retain(u.index).delete(u.length).insert(r({},n,o)),b.default.sources.USER)}else t.quill.format(n,o,b.default.sources.USER);t.update(u)}),this.controls.push([n,e])}}},{key:"update",value:function(e){var t=null==e?{}:this.quill.getFormat(e);this.controls.forEach(function(n){var i=d(n,2),r=i[0],o=i[1];if("SELECT"===o.tagName){var a=void 0;if(null==e)a=null;else if(null==t[r])a=o.querySelector("option[selected]");else if(!Array.isArray(t[r])){var l=t[r];"string"==typeof l&&(l=l.replace(/\"/g,'\\"')),a=o.querySelector('option[value="'+l+'"]')}null==a?(o.value="",o.selectedIndex=-1):a.selected=!0}else if(null==e)o.classList.remove("ql-active");else if(o.hasAttribute("value")){var s=t[r]===o.getAttribute("value")||null!=t[r]&&t[r].toString()===o.getAttribute("value")||null==t[r]&&!o.getAttribute("value");o.classList.toggle("ql-active",s)}else o.classList.toggle("ql-active",null!=t[r])})}}]),t}(w.default);C.DEFAULTS={},C.DEFAULTS={container:null,handlers:{clean:function(){var e=this,t=this.quill.getSelection();if(null!=t)if(0==t.length){var n=this.quill.getFormat();Object.keys(n).forEach(function(t){null!=v.default.query(t,v.default.Scope.INLINE)&&e.quill.format(t,!1)})}else this.quill.removeFormat(t,b.default.sources.USER)},direction:function(e){var t=this.quill.getFormat().align;"rtl"===e&&null==t?this.quill.format("align","right",b.default.sources.USER):e||"right"!==t||this.quill.format("align",!1,b.default.sources.USER),this.quill.format("direction",e,b.default.sources.USER)},indent:function(e){var t=this.quill.getSelection(),n=this.quill.getFormat(t),i=parseInt(n.indent||0);if("+1"===e||"-1"===e){var r="+1"===e?1:-1;"rtl"===n.direction&&(r*=-1),this.quill.format("indent",i+r,b.default.sources.USER)}},link:function(e){!0===e&&(e=prompt("Enter link URL:")),this.quill.format("link",e,b.default.sources.USER)},list:function(e){var t=this.quill.getSelection(),n=this.quill.getFormat(t);"check"===e?"checked"===n.list||"unchecked"===n.list?this.quill.format("list",!1,b.default.sources.USER):this.quill.format("list","unchecked",b.default.sources.USER):this.quill.format("list",e,b.default.sources.USER)}}},t.default=C,t.addControls=u},function(e,t){e.exports='<svg viewbox="0 0 18 18"> <polyline class="ql-even ql-stroke" points="5 7 3 9 5 11"></polyline> <polyline class="ql-even ql-stroke" points="13 7 15 9 13 11"></polyline> <line class=ql-stroke x1=10 x2=8 y1=5 y2=13></line> </svg>'},function(e,t,n){"use strict";function i(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function r(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function o(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}Object.defineProperty(t,"__esModule",{value:!0});var a=function(){function e(e,t){for(var n=0;n<t.length;n++){var i=t[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}return function(t,n,i){return n&&e(t.prototype,n),i&&e(t,i),t}}(),l=function e(t,n,i){null===t&&(t=Function.prototype);var r=Object.getOwnPropertyDescriptor(t,n);if(void 0===r){var o=Object.getPrototypeOf(t);return null===o?void 0:e(o,n,i)}if("value"in r)return r.value;var a=r.get;if(void 0!==a)return a.call(i)},s=n(28),u=function(e){return e&&e.__esModule?e:{default:e}}(s),c=function(e){function t(e,n){i(this,t);var o=r(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e));return o.label.innerHTML=n,o.container.classList.add("ql-color-picker"),[].slice.call(o.container.querySelectorAll(".ql-picker-item"),0,7).forEach(function(e){e.classList.add("ql-primary")}),o}return o(t,e),a(t,[{key:"buildItem",value:function(e){var n=l(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"buildItem",this).call(this,e);return n.style.backgroundColor=e.getAttribute("value")||"",n}},{key:"selectItem",value:function(e,n){l(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"selectItem",this).call(this,e,n);var i=this.label.querySelector(".ql-color-label"),r=e?e.getAttribute("data-value")||"":"";i&&("line"===i.tagName?i.style.stroke=r:i.style.fill=r)}}]),t}(u.default);t.default=c},function(e,t,n){"use strict";function i(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function r(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function o(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}Object.defineProperty(t,"__esModule",{value:!0});var a=function(){function e(e,t){for(var n=0;n<t.length;n++){var i=t[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}return function(t,n,i){return n&&e(t.prototype,n),i&&e(t,i),t}}(),l=function e(t,n,i){null===t&&(t=Function.prototype);var r=Object.getOwnPropertyDescriptor(t,n);if(void 0===r){var o=Object.getPrototypeOf(t);return null===o?void 0:e(o,n,i)}if("value"in r)return r.value;var a=r.get;if(void 0!==a)return a.call(i)},s=n(28),u=function(e){return e&&e.__esModule?e:{default:e}}(s),c=function(e){function t(e,n){i(this,t);var o=r(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e));return o.container.classList.add("ql-icon-picker"),[].forEach.call(o.container.querySelectorAll(".ql-picker-item"),function(e){e.innerHTML=n[e.getAttribute("data-value")||""]}),o.defaultItem=o.container.querySelector(".ql-selected"),o.selectItem(o.defaultItem),o}return o(t,e),a(t,[{key:"selectItem",value:function(e,n){l(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"selectItem",this).call(this,e,n),e=e||this.defaultItem,this.label.innerHTML=e.innerHTML}}]),t}(u.default);t.default=c},function(e,t,n){"use strict";function i(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}Object.defineProperty(t,"__esModule",{value:!0});var r=function(){function e(e,t){for(var n=0;n<t.length;n++){var i=t[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}return function(t,n,i){return n&&e(t.prototype,n),i&&e(t,i),t}}(),o=function(){function e(t,n){var r=this;i(this,e),this.quill=t,this.boundsContainer=n||document.body,this.root=t.addContainer("ql-tooltip"),this.root.innerHTML=this.constructor.TEMPLATE,this.quill.root===this.quill.scrollingContainer&&this.quill.root.addEventListener("scroll",function(){r.root.style.marginTop=-1*r.quill.root.scrollTop+"px"}),this.hide()}return r(e,[{key:"hide",value:function(){this.root.classList.add("ql-hidden")}},{key:"position",value:function(e){var t=e.left+e.width/2-this.root.offsetWidth/2,n=e.bottom+this.quill.root.scrollTop;this.root.style.left=t+"px",this.root.style.top=n+"px",this.root.classList.remove("ql-flip");var i=this.boundsContainer.getBoundingClientRect(),r=this.root.getBoundingClientRect(),o=0;if(r.right>i.right&&(o=i.right-r.right,this.root.style.left=t+o+"px"),r.left<i.left&&(o=i.left-r.left,this.root.style.left=t+o+"px"),r.bottom>i.bottom){var a=r.bottom-r.top,l=e.bottom-e.top+a;this.root.style.top=n-l+"px",this.root.classList.add("ql-flip")}return o}},{key:"show",value:function(){this.root.classList.remove("ql-editing"),this.root.classList.remove("ql-hidden")}}]),e}();t.default=o},function(e,t,n){"use strict";function i(e){return e&&e.__esModule?e:{default:e}}function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function o(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function a(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}Object.defineProperty(t,"__esModule",{value:!0});var l=function(){function e(e,t){var n=[],i=!0,r=!1,o=void 0;try{for(var a,l=e[Symbol.iterator]();!(i=(a=l.next()).done)&&(n.push(a.value),!t||n.length!==t);i=!0);}catch(e){r=!0,o=e}finally{try{!i&&l.return&&l.return()}finally{if(r)throw o}}return n}return function(t,n){if(Array.isArray(t))return t;if(Symbol.iterator in Object(t))return e(t,n);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}(),s=function e(t,n,i){null===t&&(t=Function.prototype);var r=Object.getOwnPropertyDescriptor(t,n);if(void 0===r){var o=Object.getPrototypeOf(t);return null===o?void 0:e(o,n,i)}if("value"in r)return r.value;var a=r.get;if(void 0!==a)return a.call(i)},u=function(){function e(e,t){for(var n=0;n<t.length;n++){var i=t[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}return function(t,n,i){return n&&e(t.prototype,n),i&&e(t,i),t}}(),c=n(3),d=i(c),f=n(8),p=i(f),h=n(43),m=i(h),v=n(27),g=i(v),b=n(15),y=n(41),_=i(y),x=[[{header:["1","2","3",!1]}],["bold","italic","underline","link"],[{list:"ordered"},{list:"bullet"}],["clean"]],w=function(e){function t(e,n){r(this,t),null!=n.modules.toolbar&&null==n.modules.toolbar.container&&(n.modules.toolbar.container=x);var i=o(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e,n));return i.quill.container.classList.add("ql-snow"),i}return a(t,e),u(t,[{key:"extendToolbar",value:function(e){e.container.classList.add("ql-snow"),this.buildButtons([].slice.call(e.container.querySelectorAll("button")),_.default),this.buildPickers([].slice.call(e.container.querySelectorAll("select")),_.default),this.tooltip=new k(this.quill,this.options.bounds),e.container.querySelector(".ql-link")&&this.quill.keyboard.addBinding({key:"K",shortKey:!0},function(t,n){e.handlers.link.call(e,!n.format.link)})}}]),t}(m.default);w.DEFAULTS=(0,d.default)(!0,{},m.default.DEFAULTS,{modules:{toolbar:{handlers:{link:function(e){if(e){var t=this.quill.getSelection();if(null==t||0==t.length)return;var n=this.quill.getText(t);/^\S+@\S+\.\S+$/.test(n)&&0!==n.indexOf("mailto:")&&(n="mailto:"+n);this.quill.theme.tooltip.edit("link",n)}else this.quill.format("link",!1)}}}}});var k=function(e){function t(e,n){r(this,t);var i=o(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e,n));return i.preview=i.root.querySelector("a.ql-preview"),i}return a(t,e),u(t,[{key:"listen",value:function(){var e=this;s(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"listen",this).call(this),this.root.querySelector("a.ql-action").addEventListener("click",function(t){e.root.classList.contains("ql-editing")?e.save():e.edit("link",e.preview.textContent),t.preventDefault()}),this.root.querySelector("a.ql-remove").addEventListener("click",function(t){if(null!=e.linkRange){var n=e.linkRange;e.restoreFocus(),e.quill.formatText(n,"link",!1,p.default.sources.USER),delete e.linkRange}t.preventDefault(),e.hide()}),this.quill.on(p.default.events.SELECTION_CHANGE,function(t,n,i){if(null!=t){if(0===t.length&&i===p.default.sources.USER){var r=e.quill.scroll.descendant(g.default,t.index),o=l(r,2),a=o[0],s=o[1];if(null!=a){e.linkRange=new b.Range(t.index-s,a.length());var u=g.default.formats(a.domNode);return e.preview.textContent=u,e.preview.setAttribute("href",u),e.show(),void e.position(e.quill.getBounds(e.linkRange))}}else delete e.linkRange;e.hide()}})}},{key:"show",value:function(){s(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"show",this).call(this),this.root.removeAttribute("data-mode")}}]),t}(h.BaseTooltip);k.TEMPLATE=['<a class="ql-preview" target="_blank" href="about:blank"></a>','<input type="text" data-formula="e=mc^2" data-link="https://quilljs.com" data-video="Embed URL">','<a class="ql-action"></a>','<a class="ql-remove"></a>'].join(""),t.default=w},function(e,t,n){"use strict";function i(e){return e&&e.__esModule?e:{default:e}}var r=n(29),o=i(r),a=n(36),l=n(38),s=n(64),u=n(65),c=i(u),d=n(66),f=i(d),p=n(67),h=i(p),m=n(37),v=n(26),g=n(39),b=n(40),y=n(56),_=i(y),x=n(68),w=i(x),k=n(27),C=i(k),q=n(69),S=i(q),O=n(70),M=i(O),E=n(71),T=i(E),N=n(72),A=i(N),I=n(73),D=i(I),j=n(13),$=i(j),P=n(74),L=i(P),z=n(75),R=i(z),B=n(57),F=i(B),V=n(41),H=i(V),U=n(28),W=i(U),Y=n(59),G=i(Y),K=n(60),Z=i(K),Q=n(61),X=i(Q),J=n(108),ee=i(J),te=n(62),ne=i(te);o.default.register({"attributors/attribute/direction":l.DirectionAttribute,"attributors/class/align":a.AlignClass,"attributors/class/background":m.BackgroundClass,"attributors/class/color":v.ColorClass,"attributors/class/direction":l.DirectionClass,"attributors/class/font":g.FontClass,"attributors/class/size":b.SizeClass,"attributors/style/align":a.AlignStyle,"attributors/style/background":m.BackgroundStyle,"attributors/style/color":v.ColorStyle,"attributors/style/direction":l.DirectionStyle,"attributors/style/font":g.FontStyle,"attributors/style/size":b.SizeStyle},!0),o.default.register({"formats/align":a.AlignClass,"formats/direction":l.DirectionClass,"formats/indent":s.IndentClass,"formats/background":m.BackgroundStyle,"formats/color":v.ColorStyle,"formats/font":g.FontClass,"formats/size":b.SizeClass,"formats/blockquote":c.default,"formats/code-block":$.default,"formats/header":f.default,"formats/list":h.default,"formats/bold":_.default,"formats/code":j.Code,"formats/italic":w.default,"formats/link":C.default,"formats/script":S.default,"formats/strike":M.default,"formats/underline":T.default,"formats/image":A.default,"formats/video":D.default,"formats/list/item":p.ListItem,"modules/formula":L.default,"modules/syntax":R.default,"modules/toolbar":F.default,"themes/bubble":ee.default,"themes/snow":ne.default,"ui/icons":H.default,"ui/picker":W.default,"ui/icon-picker":Z.default,"ui/color-picker":G.default,"ui/tooltip":X.default},!0),e.exports=o.default},function(e,t,n){"use strict";function i(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function r(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function o(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}Object.defineProperty(t,"__esModule",{value:!0}),t.IndentClass=void 0;var a=function(){function e(e,t){for(var n=0;n<t.length;n++){var i=t[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}return function(t,n,i){return n&&e(t.prototype,n),i&&e(t,i),t}}(),l=function e(t,n,i){null===t&&(t=Function.prototype);var r=Object.getOwnPropertyDescriptor(t,n);if(void 0===r){var o=Object.getPrototypeOf(t);return null===o?void 0:e(o,n,i)}if("value"in r)return r.value;var a=r.get;if(void 0!==a)return a.call(i)},s=n(0),u=function(e){return e&&e.__esModule?e:{default:e}}(s),c=function(e){function t(){return i(this,t),r(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}return o(t,e),a(t,[{key:"add",value:function(e,n){if("+1"===n||"-1"===n){var i=this.value(e)||0;n="+1"===n?i+1:i-1}return 0===n?(this.remove(e),!0):l(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"add",this).call(this,e,n)}},{key:"canAdd",value:function(e,n){return l(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"canAdd",this).call(this,e,n)||l(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"canAdd",this).call(this,e,parseInt(n))}},{key:"value",value:function(e){return parseInt(l(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"value",this).call(this,e))||void 0}}]),t}(u.default.Attributor.Class),d=new c("indent","ql-indent",{scope:u.default.Scope.BLOCK,whitelist:[1,2,3,4,5,6,7,8]});t.IndentClass=d},function(e,t,n){"use strict";function i(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function r(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function o(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}Object.defineProperty(t,"__esModule",{value:!0});var a=n(4),l=function(e){return e&&e.__esModule?e:{default:e}}(a),s=function(e){function t(){return i(this,t),r(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}return o(t,e),t}(l.default);s.blotName="blockquote",s.tagName="blockquote",t.default=s},function(e,t,n){"use strict";function i(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function r(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function o(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}Object.defineProperty(t,"__esModule",{value:!0});var a=function(){function e(e,t){for(var n=0;n<t.length;n++){var i=t[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}return function(t,n,i){return n&&e(t.prototype,n),i&&e(t,i),t}}(),l=n(4),s=function(e){return e&&e.__esModule?e:{default:e}}(l),u=function(e){function t(){return i(this,t),r(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}return o(t,e),a(t,null,[{key:"formats",value:function(e){return this.tagName.indexOf(e.tagName)+1}}]),t}(s.default);u.blotName="header",u.tagName=["H1","H2","H3","H4","H5","H6"],t.default=u},function(e,t,n){"use strict";function i(e){return e&&e.__esModule?e:{default:e}}function r(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function o(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function a(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function l(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}Object.defineProperty(t,"__esModule",{value:!0}),t.default=t.ListItem=void 0;var s=function(){function e(e,t){for(var n=0;n<t.length;n++){var i=t[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}return function(t,n,i){return n&&e(t.prototype,n),i&&e(t,i),t}}(),u=function e(t,n,i){null===t&&(t=Function.prototype);var r=Object.getOwnPropertyDescriptor(t,n);if(void 0===r){var o=Object.getPrototypeOf(t);return null===o?void 0:e(o,n,i)}if("value"in r)return r.value;var a=r.get;if(void 0!==a)return a.call(i)},c=n(0),d=i(c),f=n(4),p=i(f),h=n(24),m=i(h),v=function(e){function t(){return o(this,t),a(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}return l(t,e),s(t,[{key:"format",value:function(e,n){e!==g.blotName||n?u(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"format",this).call(this,e,n):this.replaceWith(d.default.create(this.statics.scope))}},{key:"remove",value:function(){null==this.prev&&null==this.next?this.parent.remove():u(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"remove",this).call(this)}},{key:"replaceWith",value:function(e,n){return this.parent.isolate(this.offset(this.parent),this.length()),e===this.parent.statics.blotName?(this.parent.replaceWith(e,n),this):(this.parent.unwrap(),u(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"replaceWith",this).call(this,e,n))}}],[{key:"formats",value:function(e){return e.tagName===this.tagName?void 0:u(t.__proto__||Object.getPrototypeOf(t),"formats",this).call(this,e)}}]),t}(p.default);v.blotName="list-item",v.tagName="LI";var g=function(e){function t(e){o(this,t);var n=a(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e));return e.addEventListener("click",function(t){if(t.target.parentNode===e){var i=n.statics.formats(e),r=d.default.find(t.target);"checked"===i?r.format("list","unchecked"):"unchecked"===i&&r.format("list","checked")}}),n}return l(t,e),s(t,null,[{key:"create",value:function(e){var n="ordered"===e?"OL":"UL",i=u(t.__proto__||Object.getPrototypeOf(t),"create",this).call(this,n);return"checked"!==e&&"unchecked"!==e||i.setAttribute("data-checked","checked"===e),i}},{key:"formats",value:function(e){return"OL"===e.tagName?"ordered":"UL"===e.tagName?e.hasAttribute("data-checked")?"true"===e.getAttribute("data-checked")?"checked":"unchecked":"bullet":void 0}}]),s(t,[{key:"format",value:function(e,t){this.children.length>0&&this.children.tail.format(e,t)}},{key:"formats",value:function(){return r({},this.statics.blotName,this.statics.formats(this.domNode))}},{key:"insertBefore",value:function(e,n){if(e instanceof v)u(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"insertBefore",this).call(this,e,n);else{var i=null==n?this.length():n.offset(this),r=this.split(i);r.parent.insertBefore(e,r)}}},{key:"optimize",value:function(e){u(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"optimize",this).call(this,e);var n=this.next;null!=n&&n.prev===this&&n.statics.blotName===this.statics.blotName&&n.domNode.tagName===this.domNode.tagName&&n.domNode.getAttribute("data-checked")===this.domNode.getAttribute("data-checked")&&(n.moveChildren(this),n.remove())}},{key:"replace",value:function(e){if(e.statics.blotName!==this.statics.blotName){var n=d.default.create(this.statics.defaultChild);e.moveChildren(n),this.appendChild(n)}u(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"replace",this).call(this,e)}}]),t}(m.default);g.blotName="list",g.scope=d.default.Scope.BLOCK_BLOT,g.tagName=["OL","UL"],g.defaultChild="list-item",g.allowedChildren=[v],t.ListItem=v,t.default=g},function(e,t,n){"use strict";function i(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function r(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function o(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}Object.defineProperty(t,"__esModule",{value:!0});var a=n(56),l=function(e){return e&&e.__esModule?e:{default:e}}(a),s=function(e){function t(){return i(this,t),r(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}return o(t,e),t}(l.default);s.blotName="italic",s.tagName=["EM","I"],t.default=s},function(e,t,n){"use strict";function i(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function r(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function o(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}Object.defineProperty(t,"__esModule",{value:!0});var a=function(){function e(e,t){for(var n=0;n<t.length;n++){var i=t[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}return function(t,n,i){return n&&e(t.prototype,n),i&&e(t,i),t}}(),l=function e(t,n,i){null===t&&(t=Function.prototype);var r=Object.getOwnPropertyDescriptor(t,n);if(void 0===r){var o=Object.getPrototypeOf(t);return null===o?void 0:e(o,n,i)}if("value"in r)return r.value;var a=r.get;if(void 0!==a)return a.call(i)},s=n(6),u=function(e){return e&&e.__esModule?e:{default:e}}(s),c=function(e){function t(){return i(this,t),r(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}return o(t,e),a(t,null,[{key:"create",value:function(e){return"super"===e?document.createElement("sup"):"sub"===e?document.createElement("sub"):l(t.__proto__||Object.getPrototypeOf(t),"create",this).call(this,e)}},{key:"formats",value:function(e){return"SUB"===e.tagName?"sub":"SUP"===e.tagName?"super":void 0}}]),t}(u.default);c.blotName="script",c.tagName=["SUB","SUP"],t.default=c},function(e,t,n){"use strict";function i(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function r(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function o(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}Object.defineProperty(t,"__esModule",{value:!0});var a=n(6),l=function(e){return e&&e.__esModule?e:{default:e}}(a),s=function(e){function t(){return i(this,t),r(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}return o(t,e),t}(l.default);s.blotName="strike",s.tagName="S",t.default=s},function(e,t,n){"use strict";function i(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function r(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function o(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}Object.defineProperty(t,"__esModule",{value:!0});var a=n(6),l=function(e){return e&&e.__esModule?e:{default:e}}(a),s=function(e){function t(){return i(this,t),r(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}return o(t,e),t}(l.default);s.blotName="underline",s.tagName="U",t.default=s},function(e,t,n){"use strict";function i(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function r(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function o(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}Object.defineProperty(t,"__esModule",{value:!0});var a=function(){function e(e,t){for(var n=0;n<t.length;n++){var i=t[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}return function(t,n,i){return n&&e(t.prototype,n),i&&e(t,i),t}}(),l=function e(t,n,i){null===t&&(t=Function.prototype);var r=Object.getOwnPropertyDescriptor(t,n);if(void 0===r){var o=Object.getPrototypeOf(t);return null===o?void 0:e(o,n,i)}if("value"in r)return r.value;var a=r.get;if(void 0!==a)return a.call(i)},s=n(0),u=function(e){return e&&e.__esModule?e:{default:e}}(s),c=n(27),d=["alt","height","width"],f=function(e){function t(){return i(this,t),r(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}return o(t,e),a(t,[{key:"format",value:function(e,n){d.indexOf(e)>-1?n?this.domNode.setAttribute(e,n):this.domNode.removeAttribute(e):l(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"format",this).call(this,e,n)}}],[{key:"create",value:function(e){var n=l(t.__proto__||Object.getPrototypeOf(t),"create",this).call(this,e);return"string"==typeof e&&n.setAttribute("src",this.sanitize(e)),n}},{key:"formats",value:function(e){return d.reduce(function(t,n){return e.hasAttribute(n)&&(t[n]=e.getAttribute(n)),t},{})}},{key:"match",value:function(e){return/\.(jpe?g|gif|png)$/.test(e)||/^data:image\/.+;base64/.test(e)}},{key:"sanitize",value:function(e){return(0,c.sanitize)(e,["http","https","data"])?e:"//:0"}},{key:"value",value:function(e){return e.getAttribute("src")}}]),t}(u.default.Embed);f.blotName="image",f.tagName="IMG",t.default=f},function(e,t,n){"use strict";function i(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function r(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function o(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}Object.defineProperty(t,"__esModule",{value:!0});var a=function(){function e(e,t){for(var n=0;n<t.length;n++){var i=t[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}return function(t,n,i){return n&&e(t.prototype,n),i&&e(t,i),t}}(),l=function e(t,n,i){null===t&&(t=Function.prototype);var r=Object.getOwnPropertyDescriptor(t,n);if(void 0===r){var o=Object.getPrototypeOf(t);return null===o?void 0:e(o,n,i)}if("value"in r)return r.value;var a=r.get;if(void 0!==a)return a.call(i)},s=n(4),u=n(27),c=function(e){return e&&e.__esModule?e:{default:e}}(u),d=["height","width"],f=function(e){function t(){return i(this,t),r(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}return o(t,e),a(t,[{key:"format",value:function(e,n){d.indexOf(e)>-1?n?this.domNode.setAttribute(e,n):this.domNode.removeAttribute(e):l(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"format",this).call(this,e,n)}}],[{key:"create",value:function(e){var n=l(t.__proto__||Object.getPrototypeOf(t),"create",this).call(this,e);return n.setAttribute("frameborder","0"),n.setAttribute("allowfullscreen",!0),n.setAttribute("src",this.sanitize(e)),n}},{key:"formats",value:function(e){return d.reduce(function(t,n){return e.hasAttribute(n)&&(t[n]=e.getAttribute(n)),t},{})}},{key:"sanitize",value:function(e){return c.default.sanitize(e)}},{key:"value",value:function(e){return e.getAttribute("src")}}]),t}(s.BlockEmbed);f.blotName="video",f.className="ql-video",f.tagName="IFRAME",t.default=f},function(e,t,n){"use strict";function i(e){return e&&e.__esModule?e:{default:e}}function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function o(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function a(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}Object.defineProperty(t,"__esModule",{value:!0}),t.default=t.FormulaBlot=void 0;var l=function(){function e(e,t){for(var n=0;n<t.length;n++){var i=t[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}return function(t,n,i){return n&&e(t.prototype,n),i&&e(t,i),t}}(),s=function e(t,n,i){null===t&&(t=Function.prototype);var r=Object.getOwnPropertyDescriptor(t,n);if(void 0===r){var o=Object.getPrototypeOf(t);return null===o?void 0:e(o,n,i)}if("value"in r)return r.value;var a=r.get;if(void 0!==a)return a.call(i)},u=n(25),c=i(u),d=n(5),f=i(d),p=n(9),h=i(p),m=function(e){function t(){return r(this,t),o(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}return a(t,e),l(t,null,[{key:"create",value:function(e){var n=s(t.__proto__||Object.getPrototypeOf(t),"create",this).call(this,e);return"string"==typeof e&&(window.katex.render(e,n),n.setAttribute("data-value",e)),n}},{key:"value",value:function(e){return e.getAttribute("data-value")}}]),t}(c.default);m.blotName="formula",m.className="ql-formula",m.tagName="SPAN";var v=function(e){function t(){r(this,t);var e=o(this,(t.__proto__||Object.getPrototypeOf(t)).call(this));if(null==window.katex)throw new Error("Formula module requires KaTeX.");return e}return a(t,e),l(t,null,[{key:"register",value:function(){f.default.register(m,!0)}}]),t}(h.default);t.FormulaBlot=m,t.default=v},function(e,t,n){"use strict";function i(e){return e&&e.__esModule?e:{default:e}}function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function o(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function a(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}Object.defineProperty(t,"__esModule",{value:!0}),t.default=t.CodeToken=t.CodeBlock=void 0;var l=function(){function e(e,t){for(var n=0;n<t.length;n++){var i=t[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}return function(t,n,i){return n&&e(t.prototype,n),i&&e(t,i),t}}(),s=function e(t,n,i){null===t&&(t=Function.prototype);var r=Object.getOwnPropertyDescriptor(t,n);if(void 0===r){var o=Object.getPrototypeOf(t);return null===o?void 0:e(o,n,i)}if("value"in r)return r.value;var a=r.get;if(void 0!==a)return a.call(i)},u=n(0),c=i(u),d=n(5),f=i(d),p=n(9),h=i(p),m=n(13),v=i(m),g=function(e){function t(){return r(this,t),o(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}return a(t,e),l(t,[{key:"replaceWith",value:function(e){this.domNode.textContent=this.domNode.textContent,this.attach(),s(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"replaceWith",this).call(this,e)}},{key:"highlight",value:function(e){var t=this.domNode.textContent;this.cachedText!==t&&((t.trim().length>0||null==this.cachedText)&&(this.domNode.innerHTML=e(t),this.domNode.normalize(),this.attach()),this.cachedText=t)}}]),t}(v.default);g.className="ql-syntax";var b=new c.default.Attributor.Class("token","hljs",{scope:c.default.Scope.INLINE}),y=function(e){function t(e,n){r(this,t);var i=o(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e,n));if("function"!=typeof i.options.highlight)throw new Error("Syntax module requires highlight.js. Please include the library on the page before Quill.");var a=null;return i.quill.on(f.default.events.SCROLL_OPTIMIZE,function(){clearTimeout(a),a=setTimeout(function(){i.highlight(),a=null},i.options.interval)}),i.highlight(),i}return a(t,e),l(t,null,[{key:"register",value:function(){f.default.register(b,!0),f.default.register(g,!0)}}]),l(t,[{key:"highlight",value:function(){var e=this;if(!this.quill.selection.composing){this.quill.update(f.default.sources.USER);var t=this.quill.getSelection();this.quill.scroll.descendants(g).forEach(function(t){t.highlight(e.options.highlight)}),this.quill.update(f.default.sources.SILENT),null!=t&&this.quill.setSelection(t,f.default.sources.SILENT)}}}]),t}(h.default);y.DEFAULTS={highlight:function(){return null==window.hljs?null:function(e){return window.hljs.highlightAuto(e).value}}(),interval:1e3},t.CodeBlock=g,t.CodeToken=b,t.default=y},function(e,t){e.exports='<svg viewbox="0 0 18 18"> <line class=ql-stroke x1=3 x2=15 y1=9 y2=9></line> <line class=ql-stroke x1=3 x2=13 y1=14 y2=14></line> <line class=ql-stroke x1=3 x2=9 y1=4 y2=4></line> </svg>'},function(e,t){e.exports='<svg viewbox="0 0 18 18"> <line class=ql-stroke x1=15 x2=3 y1=9 y2=9></line> <line class=ql-stroke x1=14 x2=4 y1=14 y2=14></line> <line class=ql-stroke x1=12 x2=6 y1=4 y2=4></line> </svg>'},function(e,t){e.exports='<svg viewbox="0 0 18 18"> <line class=ql-stroke x1=15 x2=3 y1=9 y2=9></line> <line class=ql-stroke x1=15 x2=5 y1=14 y2=14></line> <line class=ql-stroke x1=15 x2=9 y1=4 y2=4></line> </svg>'},function(e,t){e.exports='<svg viewbox="0 0 18 18"> <line class=ql-stroke x1=15 x2=3 y1=9 y2=9></line> <line class=ql-stroke x1=15 x2=3 y1=14 y2=14></line> <line class=ql-stroke x1=15 x2=3 y1=4 y2=4></line> </svg>'},function(e,t){e.exports='<svg viewbox="0 0 18 18"> <g class="ql-fill ql-color-label"> <polygon points="6 6.868 6 6 5 6 5 7 5.942 7 6 6.868"></polygon> <rect height=1 width=1 x=4 y=4></rect> <polygon points="6.817 5 6 5 6 6 6.38 6 6.817 5"></polygon> <rect height=1 width=1 x=2 y=6></rect> <rect height=1 width=1 x=3 y=5></rect> <rect height=1 width=1 x=4 y=7></rect> <polygon points="4 11.439 4 11 3 11 3 12 3.755 12 4 11.439"></polygon> <rect height=1 width=1 x=2 y=12></rect> <rect height=1 width=1 x=2 y=9></rect> <rect height=1 width=1 x=2 y=15></rect> <polygon points="4.63 10 4 10 4 11 4.192 11 4.63 10"></polygon> <rect height=1 width=1 x=3 y=8></rect> <path d=M10.832,4.2L11,4.582V4H10.708A1.948,1.948,0,0,1,10.832,4.2Z></path> <path d=M7,4.582L7.168,4.2A1.929,1.929,0,0,1,7.292,4H7V4.582Z></path> <path d=M8,13H7.683l-0.351.8a1.933,1.933,0,0,1-.124.2H8V13Z></path> <rect height=1 width=1 x=12 y=2></rect> <rect height=1 width=1 x=11 y=3></rect> <path d=M9,3H8V3.282A1.985,1.985,0,0,1,9,3Z></path> <rect height=1 width=1 x=2 y=3></rect> <rect height=1 width=1 x=6 y=2></rect> <rect height=1 width=1 x=3 y=2></rect> <rect height=1 width=1 x=5 y=3></rect> <rect height=1 width=1 x=9 y=2></rect> <rect height=1 width=1 x=15 y=14></rect> <polygon points="13.447 10.174 13.469 10.225 13.472 10.232 13.808 11 14 11 14 10 13.37 10 13.447 10.174"></polygon> <rect height=1 width=1 x=13 y=7></rect> <rect height=1 width=1 x=15 y=5></rect> <rect height=1 width=1 x=14 y=6></rect> <rect height=1 width=1 x=15 y=8></rect> <rect height=1 width=1 x=14 y=9></rect> <path d=M3.775,14H3v1H4V14.314A1.97,1.97,0,0,1,3.775,14Z></path> <rect height=1 width=1 x=14 y=3></rect> <polygon points="12 6.868 12 6 11.62 6 12 6.868"></polygon> <rect height=1 width=1 x=15 y=2></rect> <rect height=1 width=1 x=12 y=5></rect> <rect height=1 width=1 x=13 y=4></rect> <polygon points="12.933 9 13 9 13 8 12.495 8 12.933 9"></polygon> <rect height=1 width=1 x=9 y=14></rect> <rect height=1 width=1 x=8 y=15></rect> <path d=M6,14.926V15H7V14.316A1.993,1.993,0,0,1,6,14.926Z></path> <rect height=1 width=1 x=5 y=15></rect> <path d=M10.668,13.8L10.317,13H10v1h0.792A1.947,1.947,0,0,1,10.668,13.8Z></path> <rect height=1 width=1 x=11 y=15></rect> <path d=M14.332,12.2a1.99,1.99,0,0,1,.166.8H15V12H14.245Z></path> <rect height=1 width=1 x=14 y=15></rect> <rect height=1 width=1 x=15 y=11></rect> </g> <polyline class=ql-stroke points="5.5 13 9 5 12.5 13"></polyline> <line class=ql-stroke x1=11.63 x2=6.38 y1=11 y2=11></line> </svg>'},function(e,t){e.exports='<svg viewbox="0 0 18 18"> <rect class="ql-fill ql-stroke" height=3 width=3 x=4 y=5></rect> <rect class="ql-fill ql-stroke" height=3 width=3 x=11 y=5></rect> <path class="ql-even ql-fill ql-stroke" d=M7,8c0,4.031-3,5-3,5></path> <path class="ql-even ql-fill ql-stroke" d=M14,8c0,4.031-3,5-3,5></path> </svg>'},function(e,t){e.exports='<svg viewbox="0 0 18 18"> <path class=ql-stroke d=M5,4H9.5A2.5,2.5,0,0,1,12,6.5v0A2.5,2.5,0,0,1,9.5,9H5A0,0,0,0,1,5,9V4A0,0,0,0,1,5,4Z></path> <path class=ql-stroke d=M5,9h5.5A2.5,2.5,0,0,1,13,11.5v0A2.5,2.5,0,0,1,10.5,14H5a0,0,0,0,1,0,0V9A0,0,0,0,1,5,9Z></path> </svg>'},function(e,t){e.exports='<svg class="" viewbox="0 0 18 18"> <line class=ql-stroke x1=5 x2=13 y1=3 y2=3></line> <line class=ql-stroke x1=6 x2=9.35 y1=12 y2=3></line> <line class=ql-stroke x1=11 x2=15 y1=11 y2=15></line> <line class=ql-stroke x1=15 x2=11 y1=11 y2=15></line> <rect class=ql-fill height=1 rx=0.5 ry=0.5 width=7 x=2 y=14></rect> </svg>'},function(e,t){e.exports='<svg viewbox="0 0 18 18"> <line class="ql-color-label ql-stroke ql-transparent" x1=3 x2=15 y1=15 y2=15></line> <polyline class=ql-stroke points="5.5 11 9 3 12.5 11"></polyline> <line class=ql-stroke x1=11.63 x2=6.38 y1=9 y2=9></line> </svg>'},function(e,t){e.exports='<svg viewbox="0 0 18 18"> <polygon class="ql-stroke ql-fill" points="3 11 5 9 3 7 3 11"></polygon> <line class="ql-stroke ql-fill" x1=15 x2=11 y1=4 y2=4></line> <path class=ql-fill d=M11,3a3,3,0,0,0,0,6h1V3H11Z></path> <rect class=ql-fill height=11 width=1 x=11 y=4></rect> <rect class=ql-fill height=11 width=1 x=13 y=4></rect> </svg>'},function(e,t){e.exports='<svg viewbox="0 0 18 18"> <polygon class="ql-stroke ql-fill" points="15 12 13 10 15 8 15 12"></polygon> <line class="ql-stroke ql-fill" x1=9 x2=5 y1=4 y2=4></line> <path class=ql-fill d=M5,3A3,3,0,0,0,5,9H6V3H5Z></path> <rect class=ql-fill height=11 width=1 x=5 y=4></rect> <rect class=ql-fill height=11 width=1 x=7 y=4></rect> </svg>'},function(e,t){e.exports='<svg viewbox="0 0 18 18"> <path class=ql-fill d=M14,16H4a1,1,0,0,1,0-2H14A1,1,0,0,1,14,16Z /> <path class=ql-fill d=M14,4H4A1,1,0,0,1,4,2H14A1,1,0,0,1,14,4Z /> <rect class=ql-fill x=3 y=6 width=12 height=6 rx=1 ry=1 /> </svg>'},function(e,t){e.exports='<svg viewbox="0 0 18 18"> <path class=ql-fill d=M13,16H5a1,1,0,0,1,0-2h8A1,1,0,0,1,13,16Z /> <path class=ql-fill d=M13,4H5A1,1,0,0,1,5,2h8A1,1,0,0,1,13,4Z /> <rect class=ql-fill x=2 y=6 width=14 height=6 rx=1 ry=1 /> </svg>'},function(e,t){e.exports='<svg viewbox="0 0 18 18"> <path class=ql-fill d=M15,8H13a1,1,0,0,1,0-2h2A1,1,0,0,1,15,8Z /> <path class=ql-fill d=M15,12H13a1,1,0,0,1,0-2h2A1,1,0,0,1,15,12Z /> <path class=ql-fill d=M15,16H5a1,1,0,0,1,0-2H15A1,1,0,0,1,15,16Z /> <path class=ql-fill d=M15,4H5A1,1,0,0,1,5,2H15A1,1,0,0,1,15,4Z /> <rect class=ql-fill x=2 y=6 width=8 height=6 rx=1 ry=1 /> </svg>'},function(e,t){e.exports='<svg viewbox="0 0 18 18"> <path class=ql-fill d=M5,8H3A1,1,0,0,1,3,6H5A1,1,0,0,1,5,8Z /> <path class=ql-fill d=M5,12H3a1,1,0,0,1,0-2H5A1,1,0,0,1,5,12Z /> <path class=ql-fill d=M13,16H3a1,1,0,0,1,0-2H13A1,1,0,0,1,13,16Z /> <path class=ql-fill d=M13,4H3A1,1,0,0,1,3,2H13A1,1,0,0,1,13,4Z /> <rect class=ql-fill x=8 y=6 width=8 height=6 rx=1 ry=1 transform="translate(24 18) rotate(-180)"/> </svg>'},function(e,t){e.exports='<svg viewbox="0 0 18 18"> <path class=ql-fill d=M11.759,2.482a2.561,2.561,0,0,0-3.53.607A7.656,7.656,0,0,0,6.8,6.2C6.109,9.188,5.275,14.677,4.15,14.927a1.545,1.545,0,0,0-1.3-.933A0.922,0.922,0,0,0,2,15.036S1.954,16,4.119,16s3.091-2.691,3.7-5.553c0.177-.826.36-1.726,0.554-2.6L8.775,6.2c0.381-1.421.807-2.521,1.306-2.676a1.014,1.014,0,0,0,1.02.56A0.966,0.966,0,0,0,11.759,2.482Z></path> <rect class=ql-fill height=1.6 rx=0.8 ry=0.8 width=5 x=5.15 y=6.2></rect> <path class=ql-fill d=M13.663,12.027a1.662,1.662,0,0,1,.266-0.276q0.193,0.069.456,0.138a2.1,2.1,0,0,0,.535.069,1.075,1.075,0,0,0,.767-0.3,1.044,1.044,0,0,0,.314-0.8,0.84,0.84,0,0,0-.238-0.619,0.8,0.8,0,0,0-.594-0.239,1.154,1.154,0,0,0-.781.3,4.607,4.607,0,0,0-.781,1q-0.091.15-.218,0.346l-0.246.38c-0.068-.288-0.137-0.582-0.212-0.885-0.459-1.847-2.494-.984-2.941-0.8-0.482.2-.353,0.647-0.094,0.529a0.869,0.869,0,0,1,1.281.585c0.217,0.751.377,1.436,0.527,2.038a5.688,5.688,0,0,1-.362.467,2.69,2.69,0,0,1-.264.271q-0.221-.08-0.471-0.147a2.029,2.029,0,0,0-.522-0.066,1.079,1.079,0,0,0-.768.3A1.058,1.058,0,0,0,9,15.131a0.82,0.82,0,0,0,.832.852,1.134,1.134,0,0,0,.787-0.3,5.11,5.11,0,0,0,.776-0.993q0.141-.219.215-0.34c0.046-.076.122-0.194,0.223-0.346a2.786,2.786,0,0,0,.918,1.726,2.582,2.582,0,0,0,2.376-.185c0.317-.181.212-0.565,0-0.494A0.807,0.807,0,0,1,14.176,15a5.159,5.159,0,0,1-.913-2.446l0,0Q13.487,12.24,13.663,12.027Z></path> </svg>'},function(e,t){e.exports='<svg viewbox="0 0 18 18"> <line class=ql-stroke x1=3 x2=3 y1=4 y2=14></line> <line class=ql-stroke x1=11 x2=11 y1=4 y2=14></line> <line class=ql-stroke x1=11 x2=3 y1=9 y2=9></line> <line class="ql-stroke ql-thin" x1=13.5 x2=15.5 y1=14.5 y2=14.5></line> <path class=ql-fill d=M14.5,15a0.5,0.5,0,0,1-.5-0.5V12.085l-0.276.138A0.5,0.5,0,0,1,13.053,12c-0.124-.247-0.023-0.324.224-0.447l1-.5A0.5,0.5,0,0,1,15,11.5v3A0.5,0.5,0,0,1,14.5,15Z></path> </svg>'},function(e,t){e.exports='<svg viewbox="0 0 18 18"> <line class=ql-stroke x1=3 x2=3 y1=4 y2=14></line> <line class=ql-stroke x1=11 x2=11 y1=4 y2=14></line> <line class=ql-stroke x1=11 x2=3 y1=9 y2=9></line> <path class="ql-stroke ql-thin" d=M15.5,14.5h-2c0-.234,1.85-1.076,1.85-2.234a0.959,0.959,0,0,0-1.85-.109></path> </svg>'},function(e,t){e.exports='<svg viewbox="0 0 18 18"> <line class=ql-stroke x1=7 x2=13 y1=4 y2=4></line> <line class=ql-stroke x1=5 x2=11 y1=14 y2=14></line> <line class=ql-stroke x1=8 x2=10 y1=14 y2=4></line> </svg>'},function(e,t){e.exports='<svg viewbox="0 0 18 18"> <rect class=ql-stroke height=10 width=12 x=3 y=4></rect> <circle class=ql-fill cx=6 cy=7 r=1></circle> <polyline class="ql-even ql-fill" points="5 12 5 11 7 9 8 10 11 7 13 9 13 12 5 12"></polyline> </svg>'},function(e,t){e.exports='<svg viewbox="0 0 18 18"> <line class=ql-stroke x1=3 x2=15 y1=14 y2=14></line> <line class=ql-stroke x1=3 x2=15 y1=4 y2=4></line> <line class=ql-stroke x1=9 x2=15 y1=9 y2=9></line> <polyline class="ql-fill ql-stroke" points="3 7 3 11 5 9 3 7"></polyline> </svg>'},function(e,t){e.exports='<svg viewbox="0 0 18 18"> <line class=ql-stroke x1=3 x2=15 y1=14 y2=14></line> <line class=ql-stroke x1=3 x2=15 y1=4 y2=4></line> <line class=ql-stroke x1=9 x2=15 y1=9 y2=9></line> <polyline class=ql-stroke points="5 7 5 11 3 9 5 7"></polyline> </svg>'},function(e,t){e.exports='<svg viewbox="0 0 18 18"> <line class=ql-stroke x1=7 x2=11 y1=7 y2=11></line> <path class="ql-even ql-stroke" d=M8.9,4.577a3.476,3.476,0,0,1,.36,4.679A3.476,3.476,0,0,1,4.577,8.9C3.185,7.5,2.035,6.4,4.217,4.217S7.5,3.185,8.9,4.577Z></path> <path class="ql-even ql-stroke" d=M13.423,9.1a3.476,3.476,0,0,0-4.679-.36,3.476,3.476,0,0,0,.36,4.679c1.392,1.392,2.5,2.542,4.679.36S14.815,10.5,13.423,9.1Z></path> </svg>'},function(e,t){e.exports='<svg viewbox="0 0 18 18"> <line class=ql-stroke x1=7 x2=15 y1=4 y2=4></line> <line class=ql-stroke x1=7 x2=15 y1=9 y2=9></line> <line class=ql-stroke x1=7 x2=15 y1=14 y2=14></line> <line class="ql-stroke ql-thin" x1=2.5 x2=4.5 y1=5.5 y2=5.5></line> <path class=ql-fill d=M3.5,6A0.5,0.5,0,0,1,3,5.5V3.085l-0.276.138A0.5,0.5,0,0,1,2.053,3c-0.124-.247-0.023-0.324.224-0.447l1-.5A0.5,0.5,0,0,1,4,2.5v3A0.5,0.5,0,0,1,3.5,6Z></path> <path class="ql-stroke ql-thin" d=M4.5,10.5h-2c0-.234,1.85-1.076,1.85-2.234A0.959,0.959,0,0,0,2.5,8.156></path> <path class="ql-stroke ql-thin" d=M2.5,14.846a0.959,0.959,0,0,0,1.85-.109A0.7,0.7,0,0,0,3.75,14a0.688,0.688,0,0,0,.6-0.736,0.959,0.959,0,0,0-1.85-.109></path> </svg>'},function(e,t){e.exports='<svg viewbox="0 0 18 18"> <line class=ql-stroke x1=6 x2=15 y1=4 y2=4></line> <line class=ql-stroke x1=6 x2=15 y1=9 y2=9></line> <line class=ql-stroke x1=6 x2=15 y1=14 y2=14></line> <line class=ql-stroke x1=3 x2=3 y1=4 y2=4></line> <line class=ql-stroke x1=3 x2=3 y1=9 y2=9></line> <line class=ql-stroke x1=3 x2=3 y1=14 y2=14></line> </svg>'},function(e,t){e.exports='<svg class="" viewbox="0 0 18 18"> <line class=ql-stroke x1=9 x2=15 y1=4 y2=4></line> <polyline class=ql-stroke points="3 4 4 5 6 3"></polyline> <line class=ql-stroke x1=9 x2=15 y1=14 y2=14></line> <polyline class=ql-stroke points="3 14 4 15 6 13"></polyline> <line class=ql-stroke x1=9 x2=15 y1=9 y2=9></line> <polyline class=ql-stroke points="3 9 4 10 6 8"></polyline> </svg>'},function(e,t){e.exports='<svg viewbox="0 0 18 18"> <path class=ql-fill d=M15.5,15H13.861a3.858,3.858,0,0,0,1.914-2.975,1.8,1.8,0,0,0-1.6-1.751A1.921,1.921,0,0,0,12.021,11.7a0.50013,0.50013,0,1,0,.957.291h0a0.914,0.914,0,0,1,1.053-.725,0.81,0.81,0,0,1,.744.762c0,1.076-1.16971,1.86982-1.93971,2.43082A1.45639,1.45639,0,0,0,12,15.5a0.5,0.5,0,0,0,.5.5h3A0.5,0.5,0,0,0,15.5,15Z /> <path class=ql-fill d=M9.65,5.241a1,1,0,0,0-1.409.108L6,7.964,3.759,5.349A1,1,0,0,0,2.192,6.59178Q2.21541,6.6213,2.241,6.649L4.684,9.5,2.241,12.35A1,1,0,0,0,3.71,13.70722q0.02557-.02768.049-0.05722L6,11.036,8.241,13.65a1,1,0,1,0,1.567-1.24277Q9.78459,12.3777,9.759,12.35L7.316,9.5,9.759,6.651A1,1,0,0,0,9.65,5.241Z /> </svg>'},function(e,t){e.exports='<svg viewbox="0 0 18 18"> <path class=ql-fill d=M15.5,7H13.861a4.015,4.015,0,0,0,1.914-2.975,1.8,1.8,0,0,0-1.6-1.751A1.922,1.922,0,0,0,12.021,3.7a0.5,0.5,0,1,0,.957.291,0.917,0.917,0,0,1,1.053-.725,0.81,0.81,0,0,1,.744.762c0,1.077-1.164,1.925-1.934,2.486A1.423,1.423,0,0,0,12,7.5a0.5,0.5,0,0,0,.5.5h3A0.5,0.5,0,0,0,15.5,7Z /> <path class=ql-fill d=M9.651,5.241a1,1,0,0,0-1.41.108L6,7.964,3.759,5.349a1,1,0,1,0-1.519,1.3L4.683,9.5,2.241,12.35a1,1,0,1,0,1.519,1.3L6,11.036,8.241,13.65a1,1,0,0,0,1.519-1.3L7.317,9.5,9.759,6.651A1,1,0,0,0,9.651,5.241Z /> </svg>'},function(e,t){e.exports='<svg viewbox="0 0 18 18"> <line class="ql-stroke ql-thin" x1=15.5 x2=2.5 y1=8.5 y2=9.5></line> <path class=ql-fill d=M9.007,8C6.542,7.791,6,7.519,6,6.5,6,5.792,7.283,5,9,5c1.571,0,2.765.679,2.969,1.309a1,1,0,0,0,1.9-.617C13.356,4.106,11.354,3,9,3,6.2,3,4,4.538,4,6.5a3.2,3.2,0,0,0,.5,1.843Z></path> <path class=ql-fill d=M8.984,10C11.457,10.208,12,10.479,12,11.5c0,0.708-1.283,1.5-3,1.5-1.571,0-2.765-.679-2.969-1.309a1,1,0,1,0-1.9.617C4.644,13.894,6.646,15,9,15c2.8,0,5-1.538,5-3.5a3.2,3.2,0,0,0-.5-1.843Z></path> </svg>'},function(e,t){e.exports='<svg viewbox="0 0 18 18"> <path class=ql-stroke d=M5,3V9a4.012,4.012,0,0,0,4,4H9a4.012,4.012,0,0,0,4-4V3></path> <rect class=ql-fill height=1 rx=0.5 ry=0.5 width=12 x=3 y=15></rect> </svg>'},function(e,t){e.exports='<svg viewbox="0 0 18 18"> <rect class=ql-stroke height=12 width=12 x=3 y=3></rect> <rect class=ql-fill height=12 width=1 x=5 y=3></rect> <rect class=ql-fill height=12 width=1 x=12 y=3></rect> <rect class=ql-fill height=2 width=8 x=5 y=8></rect> <rect class=ql-fill height=1 width=3 x=3 y=5></rect> <rect class=ql-fill height=1 width=3 x=3 y=7></rect> <rect class=ql-fill height=1 width=3 x=3 y=10></rect> <rect class=ql-fill height=1 width=3 x=3 y=12></rect> <rect class=ql-fill height=1 width=3 x=12 y=5></rect> <rect class=ql-fill height=1 width=3 x=12 y=7></rect> <rect class=ql-fill height=1 width=3 x=12 y=10></rect> <rect class=ql-fill height=1 width=3 x=12 y=12></rect> </svg>'},function(e,t){e.exports='<svg viewbox="0 0 18 18"> <polygon class=ql-stroke points="7 11 9 13 11 11 7 11"></polygon> <polygon class=ql-stroke points="7 7 9 5 11 7 7 7"></polygon> </svg>'},function(e,t,n){"use strict";function i(e){return e&&e.__esModule?e:{default:e}}function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function o(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}function a(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}Object.defineProperty(t,"__esModule",{value:!0}),t.default=t.BubbleTooltip=void 0;var l=function e(t,n,i){null===t&&(t=Function.prototype);var r=Object.getOwnPropertyDescriptor(t,n);if(void 0===r){var o=Object.getPrototypeOf(t);return null===o?void 0:e(o,n,i)}if("value"in r)return r.value;var a=r.get;if(void 0!==a)return a.call(i)},s=function(){function e(e,t){for(var n=0;n<t.length;n++){var i=t[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}return function(t,n,i){return n&&e(t.prototype,n),i&&e(t,i),t}}(),u=n(3),c=i(u),d=n(8),f=i(d),p=n(43),h=i(p),m=n(15),v=n(41),g=i(v),b=[["bold","italic","link"],[{header:1},{header:2},"blockquote"]],y=function(e){function t(e,n){r(this,t),null!=n.modules.toolbar&&null==n.modules.toolbar.container&&(n.modules.toolbar.container=b);var i=o(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e,n));return i.quill.container.classList.add("ql-bubble"),i}return a(t,e),s(t,[{key:"extendToolbar",value:function(e){this.tooltip=new _(this.quill,this.options.bounds),this.tooltip.root.appendChild(e.container),this.buildButtons([].slice.call(e.container.querySelectorAll("button")),g.default),this.buildPickers([].slice.call(e.container.querySelectorAll("select")),g.default)}}]),t}(h.default);y.DEFAULTS=(0,c.default)(!0,{},h.default.DEFAULTS,{modules:{toolbar:{handlers:{link:function(e){e?this.quill.theme.tooltip.edit():this.quill.format("link",!1)}}}}});var _=function(e){function t(e,n){r(this,t);var i=o(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e,n));return i.quill.on(f.default.events.EDITOR_CHANGE,function(e,t,n,r){if(e===f.default.events.SELECTION_CHANGE)if(null!=t&&t.length>0&&r===f.default.sources.USER){i.show(),i.root.style.left="0px",i.root.style.width="",i.root.style.width=i.root.offsetWidth+"px";var o=i.quill.getLines(t.index,t.length);if(1===o.length)i.position(i.quill.getBounds(t));else{var a=o[o.length-1],l=i.quill.getIndex(a),s=Math.min(a.length()-1,t.index+t.length-l),u=i.quill.getBounds(new m.Range(l,s));i.position(u)}}else document.activeElement!==i.textbox&&i.quill.hasFocus()&&i.hide()}),i}return a(t,e),s(t,[{key:"listen",value:function(){var e=this;l(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"listen",this).call(this),this.root.querySelector(".ql-close").addEventListener("click",function(){e.root.classList.remove("ql-editing")}),this.quill.on(f.default.events.SCROLL_OPTIMIZE,function(){setTimeout(function(){if(!e.root.classList.contains("ql-hidden")){var t=e.quill.getSelection();null!=t&&e.position(e.quill.getBounds(t))}},1)})}},{key:"cancel",value:function(){this.show()}},{key:"position",value:function(e){var n=l(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),"position",this).call(this,e),i=this.root.querySelector(".ql-tooltip-arrow");if(i.style.marginLeft="",0===n)return n;i.style.marginLeft=-1*n-i.offsetWidth/2+"px"}}]),t}(p.BaseTooltip);_.TEMPLATE=['<span class="ql-tooltip-arrow"></span>','<div class="ql-tooltip-editor">','<input type="text" data-formula="e=mc^2" data-link="https://quilljs.com" data-video="Embed URL">','<a class="ql-close"></a>',"</div>"].join(""),t.BubbleTooltip=_,t.default=y},function(e,t,n){e.exports=n(63)}])})}).call(t,n(45).Buffer)},function(e,t,n){"use strict";t.__esModule=!0;var i=n(5),r=function(e){return e&&e.__esModule?e:{default:e}}(i),o=n(7),a=[],l="@@clickoutsideContext",s=void 0,u=0;!r.default.prototype.$isServer&&(0,o.on)(document,"mousedown",function(e){return s=e}),!r.default.prototype.$isServer&&(0,o.on)(document,"mouseup",function(e){a.forEach(function(t){return t[l].documentHandler(e,s)})}),t.default={bind:function(e,t,n){a.push(e);var i=u++,r=function(){var i=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};!(n.context&&i.target&&r.target)||e.contains(i.target)||e.contains(r.target)||e===i.target||n.context.popperElm&&(n.context.popperElm.contains(i.target)||n.context.popperElm.contains(r.target))||(t.expression&&e[l].methodName&&n.context[e[l].methodName]?n.context[e[l].methodName]():e[l].bindingFn&&e[l].bindingFn())};e[l]={id:i,documentHandler:r,methodName:t.expression,bindingFn:t.value}},update:function(e,t){e[l].methodName=t.expression,e[l].bindingFn=t.value},unbind:function(e){for(var t=a.length,n=0;n<t;n++)if(a[n][l].id===e[l].id){a.splice(n,1);break}}}},function(e,t,n){"use strict";function i(e){return e&&e.__esModule?e:{default:e}}t.__esModule=!0,t.PopupManager=void 0;var r=n(5),o=i(r),a=n(15),l=i(a),s=n(84),u=i(s),c=n(17),d=i(c),f=n(7),p=1,h=[],m=function(e){if(-1===h.indexOf(e)){var t=function(e){var t=e.__vue__;if(!t){var n=e.previousSibling;n.__vue__&&(t=n.__vue__)}return t};o.default.transition(e,{afterEnter:function(e){var n=t(e);n&&n.doAfterOpen&&n.doAfterOpen()},afterLeave:function(e){var n=t(e);n&&n.doAfterClose&&n.doAfterClose()}})}},v=void 0,g=function e(t){return 3===t.nodeType&&(t=t.nextElementSibling||t.nextSibling,e(t)),t};t.default={model:{prop:"visible",event:"visible-change"},props:{visible:{type:Boolean,default:!1},transition:{type:String,default:""},openDelay:{},closeDelay:{},zIndex:{},modal:{type:Boolean,default:!1},modalFade:{type:Boolean,default:!0},modalClass:{},modalAppendToBody:{type:Boolean,default:!1},lockScroll:{type:Boolean,default:!0},closeOnPressEscape:{type:Boolean,default:!1},closeOnClickModal:{type:Boolean,default:!1}},created:function(){this.transition&&m(this.transition)},beforeMount:function(){this._popupId="popup-"+p++,u.default.register(this._popupId,this)},beforeDestroy:function(){u.default.deregister(this._popupId),u.default.closeModal(this._popupId),this.modal&&null!==this.bodyOverflow&&"hidden"!==this.bodyOverflow&&(document.body.style.overflow=this.bodyOverflow,document.body.style.paddingRight=this.bodyPaddingRight),this.bodyOverflow=null,this.bodyPaddingRight=null},data:function(){return{opened:!1,bodyOverflow:null,bodyPaddingRight:null,rendered:!1}},watch:{visible:function(e){var t=this;if(e){if(this._opening)return;this.rendered?this.open():(this.rendered=!0,o.default.nextTick(function(){t.open()}))}else this.close()}},methods:{open:function(e){var t=this;this.rendered||(this.rendered=!0,this.$emit("visible-change",!0));var n=(0,l.default)({},this.$props||this,e);this._closeTimer&&(clearTimeout(this._closeTimer),this._closeTimer=null),clearTimeout(this._openTimer);var i=Number(n.openDelay);i>0?this._openTimer=setTimeout(function(){t._openTimer=null,t.doOpen(n)},i):this.doOpen(n)},doOpen:function(e){if(!this.$isServer&&(!this.willOpen||this.willOpen())&&!this.opened){this._opening=!0,this.$emit("visible-change",!0);var t=g(this.$el),n=e.modal,i=e.zIndex;if(i&&(u.default.zIndex=i),n&&(this._closing&&(u.default.closeModal(this._popupId),this._closing=!1),u.default.openModal(this._popupId,u.default.nextZIndex(),this.modalAppendToBody?void 0:t,e.modalClass,e.modalFade),e.lockScroll)){this.bodyOverflow||(this.bodyPaddingRight=document.body.style.paddingRight,this.bodyOverflow=document.body.style.overflow),v=(0,d.default)();var r=document.documentElement.clientHeight<document.body.scrollHeight,o=(0,f.getStyle)(document.body,"overflowY");v>0&&(r||"scroll"===o)&&(document.body.style.paddingRight=v+"px"),document.body.style.overflow="hidden"}"static"===getComputedStyle(t).position&&(t.style.position="absolute"),t.style.zIndex=u.default.nextZIndex(),this.opened=!0,this.onOpen&&this.onOpen(),this.transition||this.doAfterOpen()}},doAfterOpen:function(){this._opening=!1},close:function(){var e=this;if(!this.willClose||this.willClose()){null!==this._openTimer&&(clearTimeout(this._openTimer),this._openTimer=null),clearTimeout(this._closeTimer);var t=Number(this.closeDelay);t>0?this._closeTimer=setTimeout(function(){e._closeTimer=null,e.doClose()},t):this.doClose()}},doClose:function(){var e=this;this.$emit("visible-change",!1),this._closing=!0,this.onClose&&this.onClose(),this.lockScroll&&setTimeout(function(){e.modal&&"hidden"!==e.bodyOverflow&&(document.body.style.overflow=e.bodyOverflow,document.body.style.paddingRight=e.bodyPaddingRight),e.bodyOverflow=null,e.bodyPaddingRight=null},200),this.opened=!1,this.transition||this.doAfterClose()},doAfterClose:function(){u.default.closeModal(this._popupId),this._closing=!1}}},t.PopupManager=u.default},function(e,t,n){e.exports=function(e){function t(i){if(n[i])return n[i].exports;var r=n[i]={exports:{},id:i,loaded:!1};return e[i].call(r.exports,r,r.exports,t),r.loaded=!0,r.exports}var n={};return t.m=e,t.c=n,t.p="/dist/",t(0)}({0:function(e,t,n){e.exports=n(259)},46:function(e,t){e.exports=n(18)},123:function(e,t){e.exports=n(7)},219:function(e,t){e.exports=n(9)},259:function(e,t,n){"use strict";t.__esModule=!0;var i=n(260),r=function(e){return e&&e.__esModule?e:{default:e}}(i);r.default.install=function(e){e.component(r.default.name,r.default)},t.default=r.default},260:function(e,t,n){"use strict";function i(e){return e&&e.__esModule?e:{default:e}}t.__esModule=!0;var r=n(46),o=n(261),a=i(o),l=n(219),s=n(262),u=i(s);t.default={name:"ElScrollbar",components:{Bar:u.default},props:{native:Boolean,wrapStyle:{},wrapClass:{},viewClass:{},viewStyle:{},noresize:Boolean,tag:{type:String,default:"div"}},data:function(){return{sizeWidth:"0",sizeHeight:"0",moveX:0,moveY:0}},computed:{wrap:function(){return this.$refs.wrap}},render:function(e){var t=(0,a.default)(),n=this.wrapStyle;if(t){var i="-"+t+"px",r="margin-bottom: "+i+"; margin-right: "+i+";";Array.isArray(this.wrapStyle)?(n=(0,l.toObject)(this.wrapStyle),n.marginRight=n.marginBottom=i):"string"==typeof this.wrapStyle?n+=r:n=r}var o=e(this.tag,{class:["el-scrollbar__view",this.viewClass],style:this.viewStyle,ref:"resize"},this.$slots.default),s=e("div",{ref:"wrap",style:n,on:{scroll:this.handleScroll},class:[this.wrapClass,"el-scrollbar__wrap",t?"":"el-scrollbar__wrap--hidden-default"]},[[o]]),c=void 0;return c=this.native?[e("div",{ref:"wrap",class:[this.wrapClass,"el-scrollbar__wrap"],style:n},[[o]])]:[s,e(u.default,{attrs:{move:this.moveX,size:this.sizeWidth}},[]),e(u.default,{attrs:{vertical:!0,move:this.moveY,size:this.sizeHeight}},[])],e("div",{class:"el-scrollbar"},c)},methods:{handleScroll:function(){var e=this.wrap;this.moveY=100*e.scrollTop/e.clientHeight,this.moveX=100*e.scrollLeft/e.clientWidth},update:function(){var e=void 0,t=void 0,n=this.wrap;n&&(e=100*n.clientHeight/n.scrollHeight,t=100*n.clientWidth/n.scrollWidth,this.sizeHeight=e<100?e+"%":"",this.sizeWidth=t<100?t+"%":"")}},mounted:function(){this.native||(this.$nextTick(this.update),!this.noresize&&(0,r.addResizeListener)(this.$refs.resize,this.update))},beforeDestroy:function(){this.native||!this.noresize&&(0,r.removeResizeListener)(this.$refs.resize,this.update)}}},261:function(e,t){e.exports=n(17)},262:function(e,t,n){"use strict";t.__esModule=!0;var i=n(123),r=n(263);t.default={name:"Bar",props:{vertical:Boolean,size:String,move:Number},computed:{bar:function(){return r.BAR_MAP[this.vertical?"vertical":"horizontal"]},wrap:function(){return this.$parent.wrap}},render:function(e){var t=this.size,n=this.move,i=this.bar;return e("div",{class:["el-scrollbar__bar","is-"+i.key],on:{mousedown:this.clickTrackHandler}},[e("div",{ref:"thumb",class:"el-scrollbar__thumb",on:{mousedown:this.clickThumbHandler},style:(0,r.renderThumbStyle)({size:t,move:n,bar:i})},[])])},methods:{clickThumbHandler:function(e){this.startDrag(e),this[this.bar.axis]=e.currentTarget[this.bar.offset]-(e[this.bar.client]-e.currentTarget.getBoundingClientRect()[this.bar.direction])},clickTrackHandler:function(e){var t=Math.abs(e.target.getBoundingClientRect()[this.bar.direction]-e[this.bar.client]),n=this.$refs.thumb[this.bar.offset]/2,i=100*(t-n)/this.$el[this.bar.offset];this.wrap[this.bar.scroll]=i*this.wrap[this.bar.scrollSize]/100},startDrag:function(e){e.stopImmediatePropagation(),this.cursorDown=!0,(0,i.on)(document,"mousemove",this.mouseMoveDocumentHandler),(0,i.on)(document,"mouseup",this.mouseUpDocumentHandler),document.onselectstart=function(){return!1}},mouseMoveDocumentHandler:function(e){if(!1!==this.cursorDown){var t=this[this.bar.axis];if(t){var n=-1*(this.$el.getBoundingClientRect()[this.bar.direction]-e[this.bar.client]),i=this.$refs.thumb[this.bar.offset]-t,r=100*(n-i)/this.$el[this.bar.offset];this.wrap[this.bar.scroll]=r*this.wrap[this.bar.scrollSize]/100}}},mouseUpDocumentHandler:function(e){this.cursorDown=!1,this[this.bar.axis]=0,(0,i.off)(document,"mousemove",this.mouseMoveDocumentHandler),document.onselectstart=null}},destroyed:function(){(0,i.off)(document,"mouseup",this.mouseUpDocumentHandler)}}},263:function(e,t){"use strict";function n(e){var t=e.move,n=e.size,i=e.bar,r={},o="translate"+i.axis+"("+t+"%)";return r[i.size]=n,r.transform=o,r.msTransform=o,r.webkitTransform=o,r}t.__esModule=!0,t.renderThumbStyle=n;t.BAR_MAP={vertical:{offset:"offsetHeight",scroll:"scrollTop",scrollSize:"scrollHeight",size:"height",key:"vertical",axis:"Y",client:"clientY",direction:"top"},horizontal:{offset:"offsetWidth",scroll:"scrollLeft",scrollSize:"scrollWidth",size:"width",key:"horizontal",axis:"X",client:"clientX",direction:"left"}}}})},function(e,t,n){"use strict";function i(e,t){if(!o.default.prototype.$isServer){if(!t)return void(e.scrollTop=0);var n=t.offsetTop,i=t.offsetTop+t.offsetHeight,r=e.scrollTop,a=r+e.clientHeight;n<r?e.scrollTop=n:i>a&&(e.scrollTop=i-e.clientHeight)}}t.__esModule=!0,t.default=i;var r=n(5),o=function(e){return e&&e.__esModule?e:{default:e}}(r)},function(e,t,n){"use strict";t.__esModule=!0;var i=n(11);t.default={methods:{t:function(){for(var e=arguments.length,t=Array(e),n=0;n<e;n++)t[n]=arguments[n];return i.t.apply(this,t)}}}},function(e,t){e.exports=function(e,t,n,i){function r(){function r(){a=Number(new Date),n.apply(s,c)}function l(){o=void 0}var s=this,u=Number(new Date)-a,c=arguments;i&&!o&&r(),o&&clearTimeout(o),void 0===i&&u>e?r():!0!==t&&(o=setTimeout(i?l:r,void 0===i?e-u:e))}var o,a=0;return"boolean"!=typeof t&&(i=n,n=t,t=void 0),r}},function(e,t){e.exports=function(e){function t(i){if(n[i])return n[i].exports;var r=n[i]={exports:{},id:i,loaded:!1};return e[i].call(r.exports,r,r.exports,t),r.loaded=!0,r.exports}var n={};return t.m=e,t.c=n,t.p="/dist/",t(0)}({0:function(e,t,n){e.exports=n(331)},3:function(e,t){e.exports=function(e,t,n,i,r){var o,a=e=e||{},l=typeof e.default;"object"!==l&&"function"!==l||(o=e,a=e.default);var s="function"==typeof a?a.options:a;t&&(s.render=t.render,s.staticRenderFns=t.staticRenderFns),i&&(s._scopeId=i);var u;if(r?(u=function(e){e=e||this.$vnode&&this.$vnode.ssrContext,e||"undefined"==typeof __VUE_SSR_CONTEXT__||(e=__VUE_SSR_CONTEXT__),n&&n.call(this,e),e&&e._registeredComponents&&e._registeredComponents.add(r)},s._ssrRegister=u):n&&(u=n),u){var c=s.beforeCreate;s.beforeCreate=c?[].concat(c,u):[u]}return{esModule:o,exports:a,options:s}}},331:function(e,t,n){"use strict";t.__esModule=!0;var i=n(332),r=function(e){return e&&e.__esModule?e:{default:e}}(i);r.default.install=function(e){e.component(r.default.name,r.default)},t.default=r.default},332:function(e,t,n){var i=n(3)(n(333),n(334),null,null,null);e.exports=i.exports},333:function(e,t){"use strict";t.__esModule=!0,t.default={name:"ElTag",props:{text:String,closable:Boolean,type:String,hit:Boolean,closeTransition:Boolean,color:String},methods:{handleClose:function(e){this.$emit("close",e)}}}},334:function(e,t){e.exports={render:function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("transition",{attrs:{name:e.closeTransition?"":"el-zoom-in-center"}},[n("span",{staticClass:"el-tag",class:[e.type?"el-tag--"+e.type:"",{"is-hit":e.hit}],style:{backgroundColor:e.color}},[e._t("default"),e.closable?n("i",{staticClass:"el-tag__close el-icon-close",on:{click:e.handleClose}}):e._e()],2)])},staticRenderFns:[]}}})},function(e,t,n){"use strict";function i(e){return"object"===(void 0===e?"undefined":o(e))&&(0,a.hasOwn)(e,"componentOptions")}function r(e){return e&&e.filter(function(e){return e&&e.tag})[0]}t.__esModule=!0;var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};t.isVNode=i,t.getFirstComponentChild=r;var a=n(9)},function(e,t,n){"use strict";function i(e,t,n,i,r,a){!e.required||n.hasOwnProperty(e.field)&&!o.isEmptyValue(t,a||e.type)||i.push(o.format(r.messages.required,e.fullField))}Object.defineProperty(t,"__esModule",{value:!0});var r=n(1),o=function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n]);return t.default=e,t}(r);t.default=i,e.exports=t.default},function(e,t,n){var i=n(2),r=n(133),o=n(134),a=i(r,o,null,null,null);e.exports=a.exports},function(e,t,n){var i=n(2),r=n(136),o=n(137),a=i(r,o,null,null,null);e.exports=a.exports},function(e,t,n){var i=n(37),r=i.Symbol;e.exports=r},function(e,t,n){var i=n(38),r="object"==typeof self&&self&&self.Object===Object&&self,o=i||r||Function("return this")();e.exports=o},function(e,t,n){(function(t){var n="object"==typeof t&&t&&t.Object===Object&&t;e.exports=n}).call(t,n(10))},function(e,t){var n=Array.isArray;e.exports=n},function(e,t){function n(e){return"number"==typeof e&&e>-1&&e%1==0&&e<=i}var i=9007199254740991;e.exports=n},function(e,t,n){function i(e){return null!=e&&o(e.length)&&!r(e)}var r=n(212),o=n(40);e.exports=i},function(e,t,n){n(43),n(226),e.exports=n(227)},function(e,t,n){"use strict";function i(e,t){}function r(e){return Object.prototype.toString.call(e).indexOf("Error")>-1}function o(e,t){switch(typeof t){case"undefined":return;case"object":return t;case"function":return t(e);case"boolean":return t?e.params:void 0}}function a(e,t,n){void 0===t&&(t={});var i,r=n||l;try{i=r(e||"")}catch(e){i={}}for(var o in t){var a=t[o];i[o]=Array.isArray(a)?a.slice():a}return i}function l(e){var t={};return(e=e.trim().replace(/^(\?|#|&)/,""))?(e.split("&").forEach(function(e){var n=e.replace(/\+/g," ").split("="),i=Le(n.shift()),r=n.length>0?Le(n.join("=")):null;void 0===t[i]?t[i]=r:Array.isArray(t[i])?t[i].push(r):t[i]=[t[i],r]}),t):t}function s(e){var t=e?Object.keys(e).map(function(t){var n=e[t];if(void 0===n)return"";if(null===n)return Pe(t);if(Array.isArray(n)){var i=[];return n.forEach(function(e){void 0!==e&&(null===e?i.push(Pe(t)):i.push(Pe(t)+"="+Pe(e)))}),i.join("&")}return Pe(t)+"="+Pe(n)}).filter(function(e){return e.length>0}).join("&"):null;return t?"?"+t:""}function u(e,t,n,i){var r=i&&i.options.stringifyQuery,o={name:t.name||e&&e.name,meta:e&&e.meta||{},path:t.path||"/",hash:t.hash||"",query:t.query||{},params:t.params||{},fullPath:d(t,r),matched:e?c(e):[]};return n&&(o.redirectedFrom=d(n,r)),Object.freeze(o)}function c(e){for(var t=[];e;)t.unshift(e),e=e.parent;return t}function d(e,t){var n=e.path,i=e.query;void 0===i&&(i={});var r=e.hash;void 0===r&&(r="");var o=t||s;return(n||"/")+o(i)+r}function f(e,t){return t===Re?e===t:!!t&&(e.path&&t.path?e.path.replace(ze,"")===t.path.replace(ze,"")&&e.hash===t.hash&&p(e.query,t.query):!(!e.name||!t.name)&&(e.name===t.name&&e.hash===t.hash&&p(e.query,t.query)&&p(e.params,t.params)))}function p(e,t){void 0===e&&(e={}),void 0===t&&(t={});var n=Object.keys(e),i=Object.keys(t);return n.length===i.length&&n.every(function(n){var i=e[n],r=t[n];return"object"==typeof i&&"object"==typeof r?p(i,r):String(i)===String(r)})}function h(e,t){return 0===e.path.replace(ze,"/").indexOf(t.path.replace(ze,"/"))&&(!t.hash||e.hash===t.hash)&&m(e.query,t.query)}function m(e,t){for(var n in t)if(!(n in e))return!1;return!0}function v(e){if(!(e.metaKey||e.altKey||e.ctrlKey||e.shiftKey||e.defaultPrevented||void 0!==e.button&&0!==e.button)){if(e.currentTarget&&e.currentTarget.getAttribute){if(/\b_blank\b/i.test(e.currentTarget.getAttribute("target")))return}return e.preventDefault&&e.preventDefault(),!0}}function g(e){if(e)for(var t,n=0;n<e.length;n++){if(t=e[n],"a"===t.tag)return t;if(t.children&&(t=g(t.children)))return t}}function b(e){if(!b.installed){b.installed=!0,Te=e;var t=function(e){return void 0!==e},n=function(e,n){var i=e.$options._parentVnode;t(i)&&t(i=i.data)&&t(i=i.registerRouteInstance)&&i(e,n)};e.mixin({beforeCreate:function(){t(this.$options.router)?(this._routerRoot=this,this._router=this.$options.router,this._router.init(this),e.util.defineReactive(this,"_route",this._router.history.current)):this._routerRoot=this.$parent&&this.$parent._routerRoot||this,n(this,this)},destroyed:function(){n(this)}}),Object.defineProperty(e.prototype,"$router",{get:function(){return this._routerRoot._router}}),Object.defineProperty(e.prototype,"$route",{get:function(){return this._routerRoot._route}}),e.component("router-view",Ie),e.component("router-link",Ve);var i=e.config.optionMergeStrategies;i.beforeRouteEnter=i.beforeRouteLeave=i.beforeRouteUpdate=i.created}}function y(e,t,n){var i=e.charAt(0);if("/"===i)return e;if("?"===i||"#"===i)return t+e;var r=t.split("/");n&&r[r.length-1]||r.pop();for(var o=e.replace(/^\//,"").split("/"),a=0;a<o.length;a++){var l=o[a];".."===l?r.pop():"."!==l&&r.push(l)}return""!==r[0]&&r.unshift(""),r.join("/")}function _(e){var t="",n="",i=e.indexOf("#");i>=0&&(t=e.slice(i),e=e.slice(0,i));var r=e.indexOf("?");return r>=0&&(n=e.slice(r+1),e=e.slice(0,r)),{path:e,query:n,hash:t}}function x(e){return e.replace(/\/\//g,"/")}function w(e,t){for(var n,i=[],r=0,o=0,a="",l=t&&t.delimiter||"/";null!=(n=Qe.exec(e));){var s=n[0],u=n[1],c=n.index;if(a+=e.slice(o,c),o=c+s.length,u)a+=u[1];else{var d=e[o],f=n[2],p=n[3],h=n[4],m=n[5],v=n[6],g=n[7];a&&(i.push(a),a="");var b=null!=f&&null!=d&&d!==f,y="+"===v||"*"===v,_="?"===v||"*"===v,x=n[2]||l,w=h||m;i.push({name:p||r++,prefix:f||"",delimiter:x,optional:_,repeat:y,partial:b,asterisk:!!g,pattern:w?M(w):g?".*":"[^"+O(x)+"]+?"})}}return o<e.length&&(a+=e.substr(o)),a&&i.push(a),i}function k(e,t){return S(w(e,t))}function C(e){return encodeURI(e).replace(/[\/?#]/g,function(e){return"%"+e.charCodeAt(0).toString(16).toUpperCase()})}function q(e){return encodeURI(e).replace(/[?#]/g,function(e){return"%"+e.charCodeAt(0).toString(16).toUpperCase()})}function S(e){for(var t=new Array(e.length),n=0;n<e.length;n++)"object"==typeof e[n]&&(t[n]=new RegExp("^(?:"+e[n].pattern+")$"));return function(n,i){for(var r="",o=n||{},a=i||{},l=a.pretty?C:encodeURIComponent,s=0;s<e.length;s++){var u=e[s];if("string"!=typeof u){var c,d=o[u.name];if(null==d){if(u.optional){u.partial&&(r+=u.prefix);continue}throw new TypeError('Expected "'+u.name+'" to be defined')}if(Ue(d)){if(!u.repeat)throw new TypeError('Expected "'+u.name+'" to not repeat, but received `'+JSON.stringify(d)+"`");if(0===d.length){if(u.optional)continue;throw new TypeError('Expected "'+u.name+'" to not be empty')}for(var f=0;f<d.length;f++){if(c=l(d[f]),!t[s].test(c))throw new TypeError('Expected all "'+u.name+'" to match "'+u.pattern+'", but received `'+JSON.stringify(c)+"`");r+=(0===f?u.prefix:u.delimiter)+c}}else{if(c=u.asterisk?q(d):l(d),!t[s].test(c))throw new TypeError('Expected "'+u.name+'" to match "'+u.pattern+'", but received "'+c+'"');r+=u.prefix+c}}else r+=u}return r}}function O(e){return e.replace(/([.+*?=^!:${}()[\]|\/\\])/g,"\\$1")}function M(e){return e.replace(/([=!:$\/()])/g,"\\$1")}function E(e,t){return e.keys=t,e}function T(e){return e.sensitive?"":"i"}function N(e,t){var n=e.source.match(/\((?!\?)/g);if(n)for(var i=0;i<n.length;i++)t.push({name:i,prefix:null,delimiter:null,optional:!1,repeat:!1,partial:!1,asterisk:!1,pattern:null});return E(e,t)}function A(e,t,n){for(var i=[],r=0;r<e.length;r++)i.push(j(e[r],t,n).source);return E(new RegExp("(?:"+i.join("|")+")",T(n)),t)}function I(e,t,n){return D(w(e,n),t,n)}function D(e,t,n){Ue(t)||(n=t||n,t=[]),n=n||{};for(var i=n.strict,r=!1!==n.end,o="",a=0;a<e.length;a++){var l=e[a];if("string"==typeof l)o+=O(l);else{var s=O(l.prefix),u="(?:"+l.pattern+")";t.push(l),l.repeat&&(u+="(?:"+s+u+")*"),u=l.optional?l.partial?s+"("+u+")?":"(?:"+s+"("+u+"))?":s+"("+u+")",o+=u}}var c=O(n.delimiter||"/"),d=o.slice(-c.length)===c;return i||(o=(d?o.slice(0,-c.length):o)+"(?:"+c+"(?=$))?"),o+=r?"$":i&&d?"":"(?="+c+"|$)",E(new RegExp("^"+o,T(n)),t)}function j(e,t,n){return Ue(t)||(n=t||n,t=[]),n=n||{},e instanceof RegExp?N(e,t):Ue(e)?A(e,t,n):I(e,t,n)}function $(e,t,n){try{return(Xe[e]||(Xe[e]=We.compile(e)))(t||{},{pretty:!0})}catch(e){return""}}function P(e,t,n,i){var r=t||[],o=n||Object.create(null),a=i||Object.create(null);e.forEach(function(e){L(r,o,a,e)});for(var l=0,s=r.length;l<s;l++)"*"===r[l]&&(r.push(r.splice(l,1)[0]),s--,l--);return{pathList:r,pathMap:o,nameMap:a}}function L(e,t,n,i,r,o){var a=i.path,l=i.name,s=R(a,r),u=i.pathToRegexpOptions||{};"boolean"==typeof i.caseSensitive&&(u.sensitive=i.caseSensitive);var c={path:s,regex:z(s,u),components:i.components||{default:i.component},instances:{},name:l,parent:r,matchAs:o,redirect:i.redirect,beforeEnter:i.beforeEnter,meta:i.meta||{},props:null==i.props?{}:i.components?i.props:{default:i.props}};if(i.children&&i.children.forEach(function(i){var r=o?x(o+"/"+i.path):void 0;L(e,t,n,i,c,r)}),void 0!==i.alias){(Array.isArray(i.alias)?i.alias:[i.alias]).forEach(function(o){var a={path:o,children:i.children};L(e,t,n,a,r,c.path||"/")})}t[c.path]||(e.push(c.path),t[c.path]=c),l&&(n[l]||(n[l]=c))}function z(e,t){var n=We(e,[],t);return n}function R(e,t){return e=e.replace(/\/$/,""),"/"===e[0]?e:null==t?e:x(t.path+"/"+e)}function B(e,t,n,i){var r="string"==typeof e?{path:e}:e;if(r.name||r._normalized)return r;if(!r.path&&r.params&&t){r=F({},r),r._normalized=!0;var o=F(F({},t.params),r.params);if(t.name)r.name=t.name,r.params=o;else if(t.matched.length){var l=t.matched[t.matched.length-1].path;r.path=$(l,o,"path "+t.path)}return r}var s=_(r.path||""),u=t&&t.path||"/",c=s.path?y(s.path,u,n||r.append):u,d=a(s.query,r.query,i&&i.options.parseQuery),f=r.hash||s.hash;return f&&"#"!==f.charAt(0)&&(f="#"+f),{_normalized:!0,path:c,query:d,hash:f}}function F(e,t){for(var n in t)e[n]=t[n];return e}function V(e,t){function n(e){P(e,s,c,d)}function i(e,n,i){var r=B(e,n,!1,t),o=r.name;if(o){var l=d[o];if(!l)return a(null,r);var u=l.regex.keys.filter(function(e){return!e.optional}).map(function(e){return e.name});if("object"!=typeof r.params&&(r.params={}),n&&"object"==typeof n.params)for(var f in n.params)!(f in r.params)&&u.indexOf(f)>-1&&(r.params[f]=n.params[f]);if(l)return r.path=$(l.path,r.params,'named route "'+o+'"'),a(l,r,i)}else if(r.path){r.params={};for(var p=0;p<s.length;p++){var h=s[p],m=c[h];if(H(m.regex,r.path,r.params))return a(m,r,i)}}return a(null,r)}function r(e,n){var r=e.redirect,o="function"==typeof r?r(u(e,n,null,t)):r;if("string"==typeof o&&(o={path:o}),!o||"object"!=typeof o)return a(null,n);var l=o,s=l.name,c=l.path,f=n.query,p=n.hash,h=n.params;if(f=l.hasOwnProperty("query")?l.query:f,p=l.hasOwnProperty("hash")?l.hash:p,h=l.hasOwnProperty("params")?l.params:h,s){d[s];return i({_normalized:!0,name:s,query:f,hash:p,params:h},void 0,n)}if(c){var m=U(c,e);return i({_normalized:!0,path:$(m,h,'redirect route with path "'+m+'"'),query:f,hash:p},void 0,n)}return a(null,n)}function o(e,t,n){var r=$(n,t.params,'aliased route with path "'+n+'"'),o=i({_normalized:!0,path:r});if(o){var l=o.matched,s=l[l.length-1];return t.params=o.params,a(s,t)}return a(null,t)}function a(e,n,i){return e&&e.redirect?r(e,i||n):e&&e.matchAs?o(e,n,e.matchAs):u(e,n,i,t)}var l=P(e),s=l.pathList,c=l.pathMap,d=l.nameMap;return{match:i,addRoutes:n}}function H(e,t,n){var i=t.match(e);if(!i)return!1;if(!n)return!0;for(var r=1,o=i.length;r<o;++r){var a=e.keys[r-1],l="string"==typeof i[r]?decodeURIComponent(i[r]):i[r];a&&(n[a.name]=l)}return!0}function U(e,t){return y(e,t.parent?t.parent.path:"/",!0)}function W(){window.addEventListener("popstate",function(e){G(),e.state&&e.state.key&&ie(e.state.key)})}function Y(e,t,n,i){if(e.app){var r=e.options.scrollBehavior;r&&e.app.$nextTick(function(){var e=K(),o=r(t,n,i?e:null);if(o){var a="object"==typeof o;if(a&&"string"==typeof o.selector){var l=document.querySelector(o.selector);if(l){var s=o.offset&&"object"==typeof o.offset?o.offset:{};s=J(s),e=Z(l,s)}else Q(o)&&(e=X(o))}else a&&Q(o)&&(e=X(o));e&&window.scrollTo(e.x,e.y)}})}}function G(){var e=ne();e&&(Je[e]={x:window.pageXOffset,y:window.pageYOffset})}function K(){var e=ne();if(e)return Je[e]}function Z(e,t){var n=document.documentElement,i=n.getBoundingClientRect(),r=e.getBoundingClientRect();return{x:r.left-i.left-t.x,y:r.top-i.top-t.y}}function Q(e){return ee(e.x)||ee(e.y)}function X(e){return{x:ee(e.x)?e.x:window.pageXOffset,y:ee(e.y)?e.y:window.pageYOffset}}function J(e){return{x:ee(e.x)?e.x:0,y:ee(e.y)?e.y:0}}function ee(e){return"number"==typeof e}function te(){return tt.now().toFixed(3)}function ne(){return nt}function ie(e){nt=e}function re(e,t){G();var n=window.history;try{t?n.replaceState({key:nt},"",e):(nt=te(),n.pushState({key:nt},"",e))}catch(n){window.location[t?"replace":"assign"](e)}}function oe(e){re(e,!0)}function ae(e,t,n){var i=function(r){r>=e.length?n():e[r]?t(e[r],function(){i(r+1)}):i(r+1)};i(0)}function le(e){return function(t,n,i){var o=!1,a=0,l=null;se(e,function(e,t,n,s){if("function"==typeof e&&void 0===e.cid){o=!0,a++;var u,c=ce(function(t){t.__esModule&&t.default&&(t=t.default),e.resolved="function"==typeof t?t:Te.extend(t),n.components[s]=t,--a<=0&&i()}),d=ce(function(e){var t="Failed to resolve async component "+s+": "+e;l||(l=r(e)?e:new Error(t),i(l))});try{u=e(c,d)}catch(e){d(e)}if(u)if("function"==typeof u.then)u.then(c,d);else{var f=u.component;f&&"function"==typeof f.then&&f.then(c,d)}}}),o||i()}}function se(e,t){return ue(e.map(function(e){return Object.keys(e.components).map(function(n){return t(e.components[n],e.instances[n],e,n)})}))}function ue(e){return Array.prototype.concat.apply([],e)}function ce(e){var t=!1;return function(){for(var n=[],i=arguments.length;i--;)n[i]=arguments[i];if(!t)return t=!0,e.apply(this,n)}}function de(e){if(!e)if(He){var t=document.querySelector("base");e=t&&t.getAttribute("href")||"/",e=e.replace(/^https?:\/\/[^\/]+/,"")}else e="/";return"/"!==e.charAt(0)&&(e="/"+e),e.replace(/\/$/,"")}function fe(e,t){var n,i=Math.max(e.length,t.length);for(n=0;n<i&&e[n]===t[n];n++);return{updated:t.slice(0,n),activated:t.slice(n),deactivated:e.slice(n)}}function pe(e,t,n,i){var r=se(e,function(e,i,r,o){var a=he(e,t);if(a)return Array.isArray(a)?a.map(function(e){return n(e,i,r,o)}):n(a,i,r,o)});return ue(i?r.reverse():r)}function he(e,t){return"function"!=typeof e&&(e=Te.extend(e)),e.options[t]}function me(e){return pe(e,"beforeRouteLeave",ge,!0)}function ve(e){return pe(e,"beforeRouteUpdate",ge)}function ge(e,t){if(t)return function(){return e.apply(t,arguments)}}function be(e,t,n){return pe(e,"beforeRouteEnter",function(e,i,r,o){return ye(e,r,o,t,n)})}function ye(e,t,n,i,r){return function(o,a,l){return e(o,a,function(e){l(e),"function"==typeof e&&i.push(function(){_e(e,t.instances,n,r)})})}}function _e(e,t,n,i){t[n]?e(t[n]):i()&&setTimeout(function(){_e(e,t,n,i)},16)}function xe(e){var t=window.location.pathname;return e&&0===t.indexOf(e)&&(t=t.slice(e.length)),(t||"/")+window.location.search+window.location.hash}function we(e){var t=xe(e);if(!/^\/#/.test(t))return window.location.replace(x(e+"/#"+t)),!0}function ke(){var e=Ce();return"/"===e.charAt(0)||(Se("/"+e),!1)}function Ce(){var e=window.location.href,t=e.indexOf("#");return-1===t?"":e.slice(t+1)}function qe(e){window.location.hash=e}function Se(e){var t=window.location.href,n=t.indexOf("#"),i=n>=0?t.slice(0,n):t;window.location.replace(i+"#"+e)}function Oe(e,t){return e.push(t),function(){var n=e.indexOf(t);n>-1&&e.splice(n,1)}}function Me(e,t,n){var i="hash"===n?"#"+t:t;return e?x(e+"/"+i):i}function Ee(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}Object.defineProperty(t,"__esModule",{value:!0});var Te,Ne=n(5),Ae=n.n(Ne),Ie={name:"router-view",functional:!0,props:{name:{type:String,default:"default"}},render:function(e,t){var n=t.props,i=t.children,r=t.parent,a=t.data;a.routerView=!0;for(var l=r.$createElement,s=n.name,u=r.$route,c=r._routerViewCache||(r._routerViewCache={}),d=0,f=!1;r&&r._routerRoot!==r;)r.$vnode&&r.$vnode.data.routerView&&d++,r._inactive&&(f=!0),r=r.$parent;if(a.routerViewDepth=d,f)return l(c[s],a,i);var p=u.matched[d];if(!p)return c[s]=null,l();var h=c[s]=p.components[s];return a.registerRouteInstance=function(e,t){var n=p.instances[s];(t&&n!==e||!t&&n===e)&&(p.instances[s]=t)},(a.hook||(a.hook={})).prepatch=function(e,t){p.instances[s]=t.componentInstance},a.props=o(u,p.props&&p.props[s]),l(h,a,i)}},De=/[!'()*]/g,je=function(e){return"%"+e.charCodeAt(0).toString(16)},$e=/%2C/g,Pe=function(e){return encodeURIComponent(e).replace(De,je).replace($e,",")},Le=decodeURIComponent,ze=/\/?$/,Re=u(null,{path:"/"}),Be=[String,Object],Fe=[String,Array],Ve={name:"router-link",props:{to:{type:Be,required:!0},tag:{type:String,default:"a"},exact:Boolean,append:Boolean,replace:Boolean,activeClass:String,exactActiveClass:String,event:{type:Fe,default:"click"}},render:function(e){var t=this,n=this.$router,i=this.$route,r=n.resolve(this.to,i,this.append),o=r.location,a=r.route,l=r.href,s={},c=n.options.linkActiveClass,d=n.options.linkExactActiveClass,p=null==c?"router-link-active":c,m=null==d?"router-link-exact-active":d,b=null==this.activeClass?p:this.activeClass,y=null==this.exactActiveClass?m:this.exactActiveClass,_=o.path?u(null,o,null,n):a;s[y]=f(i,_),s[b]=this.exact?s[y]:h(i,_);var x=function(e){v(e)&&(t.replace?n.replace(o):n.push(o))},w={click:v};Array.isArray(this.event)?this.event.forEach(function(e){w[e]=x}):w[this.event]=x;var k={class:s};if("a"===this.tag)k.on=w,k.attrs={href:l};else{var C=g(this.$slots.default);if(C){C.isStatic=!1;var q=Te.util.extend;(C.data=q({},C.data)).on=w;(C.data.attrs=q({},C.data.attrs)).href=l}else k.on=w}return e(this.tag,k,this.$slots.default)}},He="undefined"!=typeof window,Ue=Array.isArray||function(e){return"[object Array]"==Object.prototype.toString.call(e)},We=j,Ye=w,Ge=k,Ke=S,Ze=D,Qe=new RegExp(["(\\\\.)","([\\/.])?(?:(?:\\:(\\w+)(?:\\(((?:\\\\.|[^\\\\()])+)\\))?|\\(((?:\\\\.|[^\\\\()])+)\\))([+*?])?|(\\*))"].join("|"),"g");We.parse=Ye,We.compile=Ge,We.tokensToFunction=Ke,We.tokensToRegExp=Ze;var Xe=Object.create(null),Je=Object.create(null),et=He&&function(){var e=window.navigator.userAgent;return(-1===e.indexOf("Android 2.")&&-1===e.indexOf("Android 4.0")||-1===e.indexOf("Mobile Safari")||-1!==e.indexOf("Chrome")||-1!==e.indexOf("Windows Phone"))&&(window.history&&"pushState"in window.history)}(),tt=He&&window.performance&&window.performance.now?window.performance:Date,nt=te(),it=function(e,t){this.router=e,this.base=de(t),this.current=Re,this.pending=null,this.ready=!1,this.readyCbs=[],this.readyErrorCbs=[],this.errorCbs=[]};it.prototype.listen=function(e){this.cb=e},it.prototype.onReady=function(e,t){this.ready?e():(this.readyCbs.push(e),t&&this.readyErrorCbs.push(t))},it.prototype.onError=function(e){this.errorCbs.push(e)},it.prototype.transitionTo=function(e,t,n){var i=this,r=this.router.match(e,this.current);this.confirmTransition(r,function(){i.updateRoute(r),t&&t(r),i.ensureURL(),i.ready||(i.ready=!0,i.readyCbs.forEach(function(e){e(r)}))},function(e){n&&n(e),e&&!i.ready&&(i.ready=!0,i.readyErrorCbs.forEach(function(t){t(e)}))})},it.prototype.confirmTransition=function(e,t,n){var o=this,a=this.current,l=function(e){r(e)&&(o.errorCbs.length?o.errorCbs.forEach(function(t){t(e)}):i(!1,"uncaught error during route navigation:")),n&&n(e)};if(f(e,a)&&e.matched.length===a.matched.length)return this.ensureURL(),l();var s=fe(this.current.matched,e.matched),u=s.updated,c=s.deactivated,d=s.activated,p=[].concat(me(c),this.router.beforeHooks,ve(u),d.map(function(e){return e.beforeEnter}),le(d));this.pending=e;var h=function(t,n){if(o.pending!==e)return l();try{t(e,a,function(e){!1===e||r(e)?(o.ensureURL(!0),l(e)):"string"==typeof e||"object"==typeof e&&("string"==typeof e.path||"string"==typeof e.name)?(l(),"object"==typeof e&&e.replace?o.replace(e):o.push(e)):n(e)})}catch(e){l(e)}};ae(p,h,function(){var n=[];ae(be(d,n,function(){return o.current===e}).concat(o.router.resolveHooks),h,function(){if(o.pending!==e)return l();o.pending=null,t(e),o.router.app&&o.router.app.$nextTick(function(){n.forEach(function(e){e()})})})})},it.prototype.updateRoute=function(e){var t=this.current;this.current=e,this.cb&&this.cb(e),this.router.afterHooks.forEach(function(n){n&&n(e,t)})};var rt=function(e){function t(t,n){var i=this;e.call(this,t,n);var r=t.options.scrollBehavior;r&&W(),window.addEventListener("popstate",function(e){var n=i.current;i.transitionTo(xe(i.base),function(e){r&&Y(t,e,n,!0)})})}return e&&(t.__proto__=e),t.prototype=Object.create(e&&e.prototype),t.prototype.constructor=t,t.prototype.go=function(e){window.history.go(e)},t.prototype.push=function(e,t,n){var i=this,r=this,o=r.current;this.transitionTo(e,function(e){re(x(i.base+e.fullPath)),Y(i.router,e,o,!1),t&&t(e)},n)},t.prototype.replace=function(e,t,n){var i=this,r=this,o=r.current;this.transitionTo(e,function(e){oe(x(i.base+e.fullPath)),Y(i.router,e,o,!1),t&&t(e)},n)},t.prototype.ensureURL=function(e){if(xe(this.base)!==this.current.fullPath){var t=x(this.base+this.current.fullPath);e?re(t):oe(t)}},t.prototype.getCurrentLocation=function(){return xe(this.base)},t}(it),ot=function(e){function t(t,n,i){e.call(this,t,n),i&&we(this.base)||ke()}return e&&(t.__proto__=e),t.prototype=Object.create(e&&e.prototype),t.prototype.constructor=t,t.prototype.setupListeners=function(){var e=this;window.addEventListener("hashchange",function(){ke()&&e.transitionTo(Ce(),function(e){Se(e.fullPath)})})},t.prototype.push=function(e,t,n){this.transitionTo(e,function(e){qe(e.fullPath),t&&t(e)},n)},t.prototype.replace=function(e,t,n){this.transitionTo(e,function(e){Se(e.fullPath),t&&t(e)},n)},t.prototype.go=function(e){window.history.go(e)},t.prototype.ensureURL=function(e){var t=this.current.fullPath;Ce()!==t&&(e?qe(t):Se(t))},t.prototype.getCurrentLocation=function(){return Ce()},t}(it),at=function(e){function t(t,n){e.call(this,t,n),this.stack=[],this.index=-1}return e&&(t.__proto__=e),t.prototype=Object.create(e&&e.prototype),t.prototype.constructor=t,t.prototype.push=function(e,t,n){var i=this;this.transitionTo(e,function(e){i.stack=i.stack.slice(0,i.index+1).concat(e),i.index++,t&&t(e)},n)},t.prototype.replace=function(e,t,n){var i=this;this.transitionTo(e,function(e){i.stack=i.stack.slice(0,i.index).concat(e),t&&t(e)},n)},t.prototype.go=function(e){var t=this,n=this.index+e;if(!(n<0||n>=this.stack.length)){var i=this.stack[n];this.confirmTransition(i,function(){t.index=n,t.updateRoute(i)})}},t.prototype.getCurrentLocation=function(){var e=this.stack[this.stack.length-1];return e?e.fullPath:"/"},t.prototype.ensureURL=function(){},t}(it),lt=function(e){void 0===e&&(e={}),this.app=null,this.apps=[],this.options=e,this.beforeHooks=[],this.resolveHooks=[],this.afterHooks=[],this.matcher=V(e.routes||[],this);var t=e.mode||"hash";switch(this.fallback="history"===t&&!et&&!1!==e.fallback,this.fallback&&(t="hash"),He||(t="abstract"),this.mode=t,t){case"history":this.history=new rt(this,e.base);break;case"hash":this.history=new ot(this,e.base,this.fallback);break;case"abstract":this.history=new at(this,e.base)}},st={currentRoute:{}};lt.prototype.match=function(e,t,n){return this.matcher.match(e,t,n)},st.currentRoute.get=function(){return this.history&&this.history.current},lt.prototype.init=function(e){var t=this;if(this.apps.push(e),!this.app){this.app=e;var n=this.history;if(n instanceof rt)n.transitionTo(n.getCurrentLocation());else if(n instanceof ot){var i=function(){n.setupListeners()};n.transitionTo(n.getCurrentLocation(),i,i)}n.listen(function(e){t.apps.forEach(function(t){t._route=e})})}},lt.prototype.beforeEach=function(e){return Oe(this.beforeHooks,e)},lt.prototype.beforeResolve=function(e){return Oe(this.resolveHooks,e)},lt.prototype.afterEach=function(e){return Oe(this.afterHooks,e)},lt.prototype.onReady=function(e,t){this.history.onReady(e,t)},lt.prototype.onError=function(e){this.history.onError(e)},lt.prototype.push=function(e,t,n){this.history.push(e,t,n)},lt.prototype.replace=function(e,t,n){this.history.replace(e,t,n)},lt.prototype.go=function(e){this.history.go(e)},lt.prototype.back=function(){this.go(-1)},lt.prototype.forward=function(){this.go(1)},lt.prototype.getMatchedComponents=function(e){var t=e?e.matched?e:this.resolve(e).route:this.currentRoute;return t?[].concat.apply([],t.matched.map(function(e){return Object.keys(e.components).map(function(t){return e.components[t]})})):[]},lt.prototype.resolve=function(e,t,n){var i=B(e,t||this.history.current,n,this),r=this.match(i,t),o=r.redirectedFrom||r.fullPath;return{location:i,route:r,href:Me(this.history.base,o,this.mode),normalizedTo:i,resolved:r}},lt.prototype.addRoutes=function(e){this.matcher.addRoutes(e),this.history.current!==Re&&this.history.transitionTo(this.history.getCurrentLocation())},Object.defineProperties(lt.prototype,st),lt.install=b,lt.version="2.7.0",He&&window.Vue&&window.Vue.use(lt);var ut=lt,ct=n(44),dt=n.n(ct),ft=(n(62),n(64),n(66),n(68),n(70),n(72),n(74),n(76),n(78),n(80),n(82)),pt=n(123),ht=n.n(pt),mt=n(11),vt=n.n(mt),gt=n(124),bt=n(129),yt=n(139),_t=n(144),xt=n(149),wt=n(167),kt=n(174),Ct=n(185),qt=n(218),St=[{path:"/",component:gt,props:!0,children:[{path:"/",name:"home",component:bt},{path:"/tools",name:"tools",component:yt},{path:"/help",name:"help",component:qt}]},{path:"/tables/:table_id",component:_t,props:!0,children:[{path:"/",name:"data_items",component:xt},{path:"columns",name:"data_columns",component:wt},{path:"import-export",name:"import-export",component:kt},{path:"tab",name:"custom_tab",component:Ct}]}],Ot=n(221),Mt=n.n(Ot),Et=function(){function e(e,t){for(var n=0;n<t.length;n++){var i=t[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}return function(t,n,i){return n&&e(t.prototype,n),i&&e(t,i),t}}();Ae.a.use(ut),Ae.a.use(dt.a),vt.a.use(ht.a),Ae.a.use(ft.Table),Ae.a.use(ft.Pagination),Ae.a.use(ft.TableColumn),Ae.a.use(ft.Popover),Ae.a.use(ft.Loading),Ae.a.use(ft.Icon),Ae.a.use(ft.Tooltip),Ae.a.use(ft.Collapse),Ae.a.use(ft.CollapseItem),Ae.a.use(ft.Dialog),Ae.a.prototype.$message=ft.Message,Ae.a.prototype.$msgbox=ft.MessageBox,Ae.a.prototype.$alert=ft.MessageBox.alert,Ae.a.prototype.$confirm=ft.MessageBox.confirm,Ae.a.prototype.$prompt=ft.MessageBox.prompt;!function(){var e=[],t={},n=function(){function n(){Ee(this,n)}return Et(n,[{key:"addHomeComponents",value:function(t){e.push(t)}},{key:"getHomeComponent",value:function(){return e}},{key:"addTableLib",value:function(e){t[e.key]=e.settings}},{key:"getTableLibs",value:function(){return t}}]),n}();window.ninjaFormSettings=new n}();Ae.a.mixin({methods:{$t:function(e){return e}},data:function(){return{public_components:{home:{temp1:{name:"temp_1",template:"<div><h1>First</h1></div>"},temp2:{name:"temp2",template:"<div><h1>second</h1></div>"}}}}},filters:{ucFirst:function(e){return e.charAt(0).toUpperCase()+e.slice(1)}}});var Tt=new ut({routes:St,linkActiveClass:"active"});window.ninjaTableBus=new Ae.a,Mt.a.router=Tt,window.ninjaApp=new Ae.a(Mt.a).$mount("#data-tables-app")},function(e,t,n){window.Quill=n(24);var i=n(49);i=i.default||i;var r={Quill:Quill,quillEditor:i,install:function(e){e.component(i.name,i)}};e.exports=r},function(e,t,n){"use strict";(function(e){function i(){return o.TYPED_ARRAY_SUPPORT?2147483647:1073741823}function r(e,t){if(i()<t)throw new RangeError("Invalid typed array length");return o.TYPED_ARRAY_SUPPORT?(e=new Uint8Array(t),e.__proto__=o.prototype):(null===e&&(e=new o(t)),e.length=t),e}function o(e,t,n){if(!(o.TYPED_ARRAY_SUPPORT||this instanceof o))return new o(e,t,n);if("number"==typeof e){if("string"==typeof t)throw new Error("If encoding is specified then the first argument must be a string");return u(this,e)}return a(this,e,t,n)}function a(e,t,n,i){if("number"==typeof t)throw new TypeError('"value" argument must not be a number');return"undefined"!=typeof ArrayBuffer&&t instanceof ArrayBuffer?f(e,t,n,i):"string"==typeof t?c(e,t,n):p(e,t)}function l(e){if("number"!=typeof e)throw new TypeError('"size" argument must be a number');if(e<0)throw new RangeError('"size" argument must not be negative')}function s(e,t,n,i){return l(t),t<=0?r(e,t):void 0!==n?"string"==typeof i?r(e,t).fill(n,i):r(e,t).fill(n):r(e,t)}function u(e,t){if(l(t),e=r(e,t<0?0:0|h(t)),!o.TYPED_ARRAY_SUPPORT)for(var n=0;n<t;++n)e[n]=0;return e}function c(e,t,n){if("string"==typeof n&&""!==n||(n="utf8"),!o.isEncoding(n))throw new TypeError('"encoding" must be a valid string encoding');var i=0|v(t,n);e=r(e,i);var a=e.write(t,n);return a!==i&&(e=e.slice(0,a)),e}function d(e,t){var n=t.length<0?0:0|h(t.length);e=r(e,n);for(var i=0;i<n;i+=1)e[i]=255&t[i];return e}function f(e,t,n,i){if(t.byteLength,n<0||t.byteLength<n)throw new RangeError("'offset' is out of bounds");if(t.byteLength<n+(i||0))throw new RangeError("'length' is out of bounds");return t=void 0===n&&void 0===i?new Uint8Array(t):void 0===i?new Uint8Array(t,n):new Uint8Array(t,n,i),o.TYPED_ARRAY_SUPPORT?(e=t,e.__proto__=o.prototype):e=d(e,t),e}function p(e,t){if(o.isBuffer(t)){var n=0|h(t.length);return e=r(e,n),0===e.length?e:(t.copy(e,0,0,n),e)}if(t){if("undefined"!=typeof ArrayBuffer&&t.buffer instanceof ArrayBuffer||"length"in t)return"number"!=typeof t.length||K(t.length)?r(e,0):d(e,t);if("Buffer"===t.type&&X(t.data))return d(e,t.data)}throw new TypeError("First argument must be a string, Buffer, ArrayBuffer, Array, or array-like object.")}function h(e){if(e>=i())throw new RangeError("Attempt to allocate Buffer larger than maximum size: 0x"+i().toString(16)+" bytes");return 0|e}function m(e){return+e!=e&&(e=0),o.alloc(+e)}function v(e,t){if(o.isBuffer(e))return e.length;if("undefined"!=typeof ArrayBuffer&&"function"==typeof ArrayBuffer.isView&&(ArrayBuffer.isView(e)||e instanceof ArrayBuffer))return e.byteLength;"string"!=typeof e&&(e=""+e);var n=e.length;if(0===n)return 0;for(var i=!1;;)switch(t){case"ascii":case"latin1":case"binary":return n;case"utf8":case"utf-8":case void 0:return H(e).length;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return 2*n;case"hex":return n>>>1;case"base64":return Y(e).length;default:if(i)return H(e).length;t=(""+t).toLowerCase(),i=!0}}function g(e,t,n){var i=!1;if((void 0===t||t<0)&&(t=0),t>this.length)return"";if((void 0===n||n>this.length)&&(n=this.length),n<=0)return"";if(n>>>=0,t>>>=0,n<=t)return"";for(e||(e="utf8");;)switch(e){case"hex":return A(this,t,n);case"utf8":case"utf-8":return M(this,t,n);case"ascii":return T(this,t,n);case"latin1":case"binary":return N(this,t,n);case"base64":return O(this,t,n);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return I(this,t,n);default:if(i)throw new TypeError("Unknown encoding: "+e);e=(e+"").toLowerCase(),i=!0}}function b(e,t,n){var i=e[t];e[t]=e[n],e[n]=i}function y(e,t,n,i,r){if(0===e.length)return-1;if("string"==typeof n?(i=n,n=0):n>2147483647?n=2147483647:n<-2147483648&&(n=-2147483648),n=+n,isNaN(n)&&(n=r?0:e.length-1),n<0&&(n=e.length+n),n>=e.length){if(r)return-1;n=e.length-1}else if(n<0){if(!r)return-1;n=0}if("string"==typeof t&&(t=o.from(t,i)),o.isBuffer(t))return 0===t.length?-1:_(e,t,n,i,r);if("number"==typeof t)return t&=255,o.TYPED_ARRAY_SUPPORT&&"function"==typeof Uint8Array.prototype.indexOf?r?Uint8Array.prototype.indexOf.call(e,t,n):Uint8Array.prototype.lastIndexOf.call(e,t,n):_(e,[t],n,i,r);throw new TypeError("val must be string, number or Buffer")}function _(e,t,n,i,r){function o(e,t){return 1===a?e[t]:e.readUInt16BE(t*a)}var a=1,l=e.length,s=t.length;if(void 0!==i&&("ucs2"===(i=String(i).toLowerCase())||"ucs-2"===i||"utf16le"===i||"utf-16le"===i)){if(e.length<2||t.length<2)return-1;a=2,l/=2,s/=2,n/=2}var u;if(r){var c=-1;for(u=n;u<l;u++)if(o(e,u)===o(t,-1===c?0:u-c)){if(-1===c&&(c=u),u-c+1===s)return c*a}else-1!==c&&(u-=u-c),c=-1}else for(n+s>l&&(n=l-s),u=n;u>=0;u--){for(var d=!0,f=0;f<s;f++)if(o(e,u+f)!==o(t,f)){d=!1;break}if(d)return u}return-1}function x(e,t,n,i){n=Number(n)||0;var r=e.length-n;i?(i=Number(i))>r&&(i=r):i=r;var o=t.length;if(o%2!=0)throw new TypeError("Invalid hex string");i>o/2&&(i=o/2);for(var a=0;a<i;++a){var l=parseInt(t.substr(2*a,2),16);if(isNaN(l))return a;e[n+a]=l}return a}function w(e,t,n,i){return G(H(t,e.length-n),e,n,i)}function k(e,t,n,i){return G(U(t),e,n,i)}function C(e,t,n,i){return k(e,t,n,i)}function q(e,t,n,i){return G(Y(t),e,n,i)}function S(e,t,n,i){return G(W(t,e.length-n),e,n,i)}function O(e,t,n){return 0===t&&n===e.length?Z.fromByteArray(e):Z.fromByteArray(e.slice(t,n))}function M(e,t,n){n=Math.min(e.length,n);for(var i=[],r=t;r<n;){var o=e[r],a=null,l=o>239?4:o>223?3:o>191?2:1;if(r+l<=n){var s,u,c,d;switch(l){case 1:o<128&&(a=o);break;case 2:s=e[r+1],128==(192&s)&&(d=(31&o)<<6|63&s)>127&&(a=d);break;case 3:s=e[r+1],u=e[r+2],128==(192&s)&&128==(192&u)&&(d=(15&o)<<12|(63&s)<<6|63&u)>2047&&(d<55296||d>57343)&&(a=d);break;case 4:s=e[r+1],u=e[r+2],c=e[r+3],128==(192&s)&&128==(192&u)&&128==(192&c)&&(d=(15&o)<<18|(63&s)<<12|(63&u)<<6|63&c)>65535&&d<1114112&&(a=d)}}null===a?(a=65533,l=1):a>65535&&(a-=65536,i.push(a>>>10&1023|55296),a=56320|1023&a),i.push(a),r+=l}return E(i)}function E(e){var t=e.length;if(t<=J)return String.fromCharCode.apply(String,e);for(var n="",i=0;i<t;)n+=String.fromCharCode.apply(String,e.slice(i,i+=J));return n}function T(e,t,n){var i="";n=Math.min(e.length,n);for(var r=t;r<n;++r)i+=String.fromCharCode(127&e[r]);return i}function N(e,t,n){var i="";n=Math.min(e.length,n);for(var r=t;r<n;++r)i+=String.fromCharCode(e[r]);return i}function A(e,t,n){var i=e.length;(!t||t<0)&&(t=0),(!n||n<0||n>i)&&(n=i);for(var r="",o=t;o<n;++o)r+=V(e[o]);return r}function I(e,t,n){for(var i=e.slice(t,n),r="",o=0;o<i.length;o+=2)r+=String.fromCharCode(i[o]+256*i[o+1]);return r}function D(e,t,n){if(e%1!=0||e<0)throw new RangeError("offset is not uint");if(e+t>n)throw new RangeError("Trying to access beyond buffer length")}function j(e,t,n,i,r,a){if(!o.isBuffer(e))throw new TypeError('"buffer" argument must be a Buffer instance');if(t>r||t<a)throw new RangeError('"value" argument is out of bounds');if(n+i>e.length)throw new RangeError("Index out of range")}function $(e,t,n,i){t<0&&(t=65535+t+1);for(var r=0,o=Math.min(e.length-n,2);r<o;++r)e[n+r]=(t&255<<8*(i?r:1-r))>>>8*(i?r:1-r)}function P(e,t,n,i){t<0&&(t=4294967295+t+1);for(var r=0,o=Math.min(e.length-n,4);r<o;++r)e[n+r]=t>>>8*(i?r:3-r)&255}function L(e,t,n,i,r,o){if(n+i>e.length)throw new RangeError("Index out of range");if(n<0)throw new RangeError("Index out of range")}function z(e,t,n,i,r){return r||L(e,t,n,4,3.4028234663852886e38,-3.4028234663852886e38),Q.write(e,t,n,i,23,4),n+4}function R(e,t,n,i,r){return r||L(e,t,n,8,1.7976931348623157e308,-1.7976931348623157e308),Q.write(e,t,n,i,52,8),n+8}function B(e){if(e=F(e).replace(ee,""),e.length<2)return"";for(;e.length%4!=0;)e+="=";return e}function F(e){return e.trim?e.trim():e.replace(/^\s+|\s+$/g,"")}function V(e){return e<16?"0"+e.toString(16):e.toString(16)}function H(e,t){t=t||1/0;for(var n,i=e.length,r=null,o=[],a=0;a<i;++a){if((n=e.charCodeAt(a))>55295&&n<57344){if(!r){if(n>56319){(t-=3)>-1&&o.push(239,191,189);continue}if(a+1===i){(t-=3)>-1&&o.push(239,191,189);continue}r=n;continue}if(n<56320){(t-=3)>-1&&o.push(239,191,189),r=n;continue}n=65536+(r-55296<<10|n-56320)}else r&&(t-=3)>-1&&o.push(239,191,189);if(r=null,n<128){if((t-=1)<0)break;o.push(n)}else if(n<2048){if((t-=2)<0)break;o.push(n>>6|192,63&n|128)}else if(n<65536){if((t-=3)<0)break;o.push(n>>12|224,n>>6&63|128,63&n|128)}else{if(!(n<1114112))throw new Error("Invalid code point");if((t-=4)<0)break;o.push(n>>18|240,n>>12&63|128,n>>6&63|128,63&n|128)}}return o}function U(e){for(var t=[],n=0;n<e.length;++n)t.push(255&e.charCodeAt(n));return t}function W(e,t){for(var n,i,r,o=[],a=0;a<e.length&&!((t-=2)<0);++a)n=e.charCodeAt(a),i=n>>8,r=n%256,o.push(r),o.push(i);return o}function Y(e){return Z.toByteArray(B(e))}function G(e,t,n,i){for(var r=0;r<i&&!(r+n>=t.length||r>=e.length);++r)t[r+n]=e[r];return r}function K(e){return e!==e}var Z=n(46),Q=n(47),X=n(48);t.Buffer=o,t.SlowBuffer=m,t.INSPECT_MAX_BYTES=50,o.TYPED_ARRAY_SUPPORT=void 0!==e.TYPED_ARRAY_SUPPORT?e.TYPED_ARRAY_SUPPORT:function(){try{var e=new Uint8Array(1);return e.__proto__={__proto__:Uint8Array.prototype,foo:function(){return 42}},42===e.foo()&&"function"==typeof e.subarray&&0===e.subarray(1,1).byteLength}catch(e){return!1}}(),t.kMaxLength=i(),o.poolSize=8192,o._augment=function(e){return e.__proto__=o.prototype,e},o.from=function(e,t,n){return a(null,e,t,n)},o.TYPED_ARRAY_SUPPORT&&(o.prototype.__proto__=Uint8Array.prototype,o.__proto__=Uint8Array,"undefined"!=typeof Symbol&&Symbol.species&&o[Symbol.species]===o&&Object.defineProperty(o,Symbol.species,{value:null,configurable:!0})),o.alloc=function(e,t,n){return s(null,e,t,n)},o.allocUnsafe=function(e){return u(null,e)},o.allocUnsafeSlow=function(e){return u(null,e)},o.isBuffer=function(e){return!(null==e||!e._isBuffer)},o.compare=function(e,t){if(!o.isBuffer(e)||!o.isBuffer(t))throw new TypeError("Arguments must be Buffers");if(e===t)return 0;for(var n=e.length,i=t.length,r=0,a=Math.min(n,i);r<a;++r)if(e[r]!==t[r]){n=e[r],i=t[r];break}return n<i?-1:i<n?1:0},o.isEncoding=function(e){switch(String(e).toLowerCase()){case"hex":case"utf8":case"utf-8":case"ascii":case"latin1":case"binary":case"base64":case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return!0;default:return!1}},o.concat=function(e,t){if(!X(e))throw new TypeError('"list" argument must be an Array of Buffers');if(0===e.length)return o.alloc(0);var n;if(void 0===t)for(t=0,n=0;n<e.length;++n)t+=e[n].length;var i=o.allocUnsafe(t),r=0;for(n=0;n<e.length;++n){var a=e[n];if(!o.isBuffer(a))throw new TypeError('"list" argument must be an Array of Buffers');a.copy(i,r),r+=a.length}return i},o.byteLength=v,o.prototype._isBuffer=!0,o.prototype.swap16=function(){var e=this.length;if(e%2!=0)throw new RangeError("Buffer size must be a multiple of 16-bits");for(var t=0;t<e;t+=2)b(this,t,t+1);return this},o.prototype.swap32=function(){var e=this.length;if(e%4!=0)throw new RangeError("Buffer size must be a multiple of 32-bits");for(var t=0;t<e;t+=4)b(this,t,t+3),b(this,t+1,t+2);return this},o.prototype.swap64=function(){var e=this.length;if(e%8!=0)throw new RangeError("Buffer size must be a multiple of 64-bits");for(var t=0;t<e;t+=8)b(this,t,t+7),b(this,t+1,t+6),b(this,t+2,t+5),b(this,t+3,t+4);return this},o.prototype.toString=function(){var e=0|this.length;return 0===e?"":0===arguments.length?M(this,0,e):g.apply(this,arguments)},o.prototype.equals=function(e){if(!o.isBuffer(e))throw new TypeError("Argument must be a Buffer");return this===e||0===o.compare(this,e)},o.prototype.inspect=function(){var e="",n=t.INSPECT_MAX_BYTES;return this.length>0&&(e=this.toString("hex",0,n).match(/.{2}/g).join(" "),this.length>n&&(e+=" ... ")),"<Buffer "+e+">"},o.prototype.compare=function(e,t,n,i,r){if(!o.isBuffer(e))throw new TypeError("Argument must be a Buffer");if(void 0===t&&(t=0),void 0===n&&(n=e?e.length:0),void 0===i&&(i=0),void 0===r&&(r=this.length),t<0||n>e.length||i<0||r>this.length)throw new RangeError("out of range index");if(i>=r&&t>=n)return 0;if(i>=r)return-1;if(t>=n)return 1;if(t>>>=0,n>>>=0,i>>>=0,r>>>=0,this===e)return 0;for(var a=r-i,l=n-t,s=Math.min(a,l),u=this.slice(i,r),c=e.slice(t,n),d=0;d<s;++d)if(u[d]!==c[d]){a=u[d],l=c[d];break}return a<l?-1:l<a?1:0},o.prototype.includes=function(e,t,n){return-1!==this.indexOf(e,t,n)},o.prototype.indexOf=function(e,t,n){return y(this,e,t,n,!0)},o.prototype.lastIndexOf=function(e,t,n){return y(this,e,t,n,!1)},o.prototype.write=function(e,t,n,i){if(void 0===t)i="utf8",n=this.length,t=0;else if(void 0===n&&"string"==typeof t)i=t,n=this.length,t=0;else{if(!isFinite(t))throw new Error("Buffer.write(string, encoding, offset[, length]) is no longer supported");t|=0,isFinite(n)?(n|=0,void 0===i&&(i="utf8")):(i=n,n=void 0)}var r=this.length-t;if((void 0===n||n>r)&&(n=r),e.length>0&&(n<0||t<0)||t>this.length)throw new RangeError("Attempt to write outside buffer bounds");i||(i="utf8");for(var o=!1;;)switch(i){case"hex":return x(this,e,t,n);case"utf8":case"utf-8":return w(this,e,t,n);case"ascii":return k(this,e,t,n);case"latin1":case"binary":return C(this,e,t,n);case"base64":return q(this,e,t,n);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return S(this,e,t,n);default:if(o)throw new TypeError("Unknown encoding: "+i);i=(""+i).toLowerCase(),o=!0}},o.prototype.toJSON=function(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}};var J=4096;o.prototype.slice=function(e,t){var n=this.length;e=~~e,t=void 0===t?n:~~t,e<0?(e+=n)<0&&(e=0):e>n&&(e=n),t<0?(t+=n)<0&&(t=0):t>n&&(t=n),t<e&&(t=e);var i;if(o.TYPED_ARRAY_SUPPORT)i=this.subarray(e,t),i.__proto__=o.prototype;else{var r=t-e;i=new o(r,void 0);for(var a=0;a<r;++a)i[a]=this[a+e]}return i},o.prototype.readUIntLE=function(e,t,n){e|=0,t|=0,n||D(e,t,this.length);for(var i=this[e],r=1,o=0;++o<t&&(r*=256);)i+=this[e+o]*r;return i},o.prototype.readUIntBE=function(e,t,n){e|=0,t|=0,n||D(e,t,this.length);for(var i=this[e+--t],r=1;t>0&&(r*=256);)i+=this[e+--t]*r;return i},o.prototype.readUInt8=function(e,t){return t||D(e,1,this.length),this[e]},o.prototype.readUInt16LE=function(e,t){return t||D(e,2,this.length),this[e]|this[e+1]<<8},o.prototype.readUInt16BE=function(e,t){return t||D(e,2,this.length),this[e]<<8|this[e+1]},o.prototype.readUInt32LE=function(e,t){return t||D(e,4,this.length),(this[e]|this[e+1]<<8|this[e+2]<<16)+16777216*this[e+3]},o.prototype.readUInt32BE=function(e,t){return t||D(e,4,this.length),16777216*this[e]+(this[e+1]<<16|this[e+2]<<8|this[e+3])},o.prototype.readIntLE=function(e,t,n){e|=0,t|=0,n||D(e,t,this.length);for(var i=this[e],r=1,o=0;++o<t&&(r*=256);)i+=this[e+o]*r;return r*=128,i>=r&&(i-=Math.pow(2,8*t)),i},o.prototype.readIntBE=function(e,t,n){e|=0,t|=0,n||D(e,t,this.length);for(var i=t,r=1,o=this[e+--i];i>0&&(r*=256);)o+=this[e+--i]*r;return r*=128,o>=r&&(o-=Math.pow(2,8*t)),o},o.prototype.readInt8=function(e,t){return t||D(e,1,this.length),128&this[e]?-1*(255-this[e]+1):this[e]},o.prototype.readInt16LE=function(e,t){t||D(e,2,this.length);var n=this[e]|this[e+1]<<8;return 32768&n?4294901760|n:n},o.prototype.readInt16BE=function(e,t){t||D(e,2,this.length);var n=this[e+1]|this[e]<<8;return 32768&n?4294901760|n:n},o.prototype.readInt32LE=function(e,t){return t||D(e,4,this.length),this[e]|this[e+1]<<8|this[e+2]<<16|this[e+3]<<24},o.prototype.readInt32BE=function(e,t){return t||D(e,4,this.length),this[e]<<24|this[e+1]<<16|this[e+2]<<8|this[e+3]},o.prototype.readFloatLE=function(e,t){return t||D(e,4,this.length),Q.read(this,e,!0,23,4)},o.prototype.readFloatBE=function(e,t){return t||D(e,4,this.length),Q.read(this,e,!1,23,4)},o.prototype.readDoubleLE=function(e,t){return t||D(e,8,this.length),Q.read(this,e,!0,52,8)},o.prototype.readDoubleBE=function(e,t){return t||D(e,8,this.length),Q.read(this,e,!1,52,8)},o.prototype.writeUIntLE=function(e,t,n,i){if(e=+e,t|=0,n|=0,!i){j(this,e,t,n,Math.pow(2,8*n)-1,0)}var r=1,o=0;for(this[t]=255&e;++o<n&&(r*=256);)this[t+o]=e/r&255;return t+n},o.prototype.writeUIntBE=function(e,t,n,i){if(e=+e,t|=0,n|=0,!i){j(this,e,t,n,Math.pow(2,8*n)-1,0)}var r=n-1,o=1;for(this[t+r]=255&e;--r>=0&&(o*=256);)this[t+r]=e/o&255;return t+n},o.prototype.writeUInt8=function(e,t,n){return e=+e,t|=0,n||j(this,e,t,1,255,0),o.TYPED_ARRAY_SUPPORT||(e=Math.floor(e)),this[t]=255&e,t+1},o.prototype.writeUInt16LE=function(e,t,n){return e=+e,t|=0,n||j(this,e,t,2,65535,0),o.TYPED_ARRAY_SUPPORT?(this[t]=255&e,this[t+1]=e>>>8):$(this,e,t,!0),t+2},o.prototype.writeUInt16BE=function(e,t,n){return e=+e,t|=0,n||j(this,e,t,2,65535,0),o.TYPED_ARRAY_SUPPORT?(this[t]=e>>>8,this[t+1]=255&e):$(this,e,t,!1),t+2},o.prototype.writeUInt32LE=function(e,t,n){return e=+e,t|=0,n||j(this,e,t,4,4294967295,0),o.TYPED_ARRAY_SUPPORT?(this[t+3]=e>>>24,this[t+2]=e>>>16,this[t+1]=e>>>8,this[t]=255&e):P(this,e,t,!0),t+4},o.prototype.writeUInt32BE=function(e,t,n){return e=+e,t|=0,n||j(this,e,t,4,4294967295,0),o.TYPED_ARRAY_SUPPORT?(this[t]=e>>>24,this[t+1]=e>>>16,this[t+2]=e>>>8,this[t+3]=255&e):P(this,e,t,!1),t+4},o.prototype.writeIntLE=function(e,t,n,i){if(e=+e,t|=0,!i){var r=Math.pow(2,8*n-1);j(this,e,t,n,r-1,-r)}var o=0,a=1,l=0;for(this[t]=255&e;++o<n&&(a*=256);)e<0&&0===l&&0!==this[t+o-1]&&(l=1),this[t+o]=(e/a>>0)-l&255;return t+n},o.prototype.writeIntBE=function(e,t,n,i){if(e=+e,t|=0,!i){var r=Math.pow(2,8*n-1);j(this,e,t,n,r-1,-r)}var o=n-1,a=1,l=0;for(this[t+o]=255&e;--o>=0&&(a*=256);)e<0&&0===l&&0!==this[t+o+1]&&(l=1),this[t+o]=(e/a>>0)-l&255;return t+n},o.prototype.writeInt8=function(e,t,n){return e=+e,t|=0,n||j(this,e,t,1,127,-128),o.TYPED_ARRAY_SUPPORT||(e=Math.floor(e)),e<0&&(e=255+e+1),this[t]=255&e,t+1},o.prototype.writeInt16LE=function(e,t,n){return e=+e,t|=0,n||j(this,e,t,2,32767,-32768),o.TYPED_ARRAY_SUPPORT?(this[t]=255&e,this[t+1]=e>>>8):$(this,e,t,!0),t+2},o.prototype.writeInt16BE=function(e,t,n){return e=+e,t|=0,n||j(this,e,t,2,32767,-32768),o.TYPED_ARRAY_SUPPORT?(this[t]=e>>>8,this[t+1]=255&e):$(this,e,t,!1),t+2},o.prototype.writeInt32LE=function(e,t,n){return e=+e,t|=0,n||j(this,e,t,4,2147483647,-2147483648),o.TYPED_ARRAY_SUPPORT?(this[t]=255&e,this[t+1]=e>>>8,this[t+2]=e>>>16,this[t+3]=e>>>24):P(this,e,t,!0),t+4},o.prototype.writeInt32BE=function(e,t,n){return e=+e,t|=0,n||j(this,e,t,4,2147483647,-2147483648),e<0&&(e=4294967295+e+1),o.TYPED_ARRAY_SUPPORT?(this[t]=e>>>24,this[t+1]=e>>>16,this[t+2]=e>>>8,this[t+3]=255&e):P(this,e,t,!1),t+4},o.prototype.writeFloatLE=function(e,t,n){return z(this,e,t,!0,n)},o.prototype.writeFloatBE=function(e,t,n){return z(this,e,t,!1,n)},o.prototype.writeDoubleLE=function(e,t,n){return R(this,e,t,!0,n)},o.prototype.writeDoubleBE=function(e,t,n){return R(this,e,t,!1,n)},o.prototype.copy=function(e,t,n,i){if(n||(n=0),i||0===i||(i=this.length),t>=e.length&&(t=e.length),t||(t=0),i>0&&i<n&&(i=n),i===n)return 0;if(0===e.length||0===this.length)return 0;if(t<0)throw new RangeError("targetStart out of bounds");if(n<0||n>=this.length)throw new RangeError("sourceStart out of bounds");if(i<0)throw new RangeError("sourceEnd out of bounds");i>this.length&&(i=this.length),e.length-t<i-n&&(i=e.length-t+n);var r,a=i-n;if(this===e&&n<t&&t<i)for(r=a-1;r>=0;--r)e[r+t]=this[r+n];else if(a<1e3||!o.TYPED_ARRAY_SUPPORT)for(r=0;r<a;++r)e[r+t]=this[r+n];else Uint8Array.prototype.set.call(e,this.subarray(n,n+a),t);return a},o.prototype.fill=function(e,t,n,i){if("string"==typeof e){if("string"==typeof t?(i=t,t=0,n=this.length):"string"==typeof n&&(i=n,n=this.length),1===e.length){var r=e.charCodeAt(0);r<256&&(e=r)}if(void 0!==i&&"string"!=typeof i)throw new TypeError("encoding must be a string");if("string"==typeof i&&!o.isEncoding(i))throw new TypeError("Unknown encoding: "+i)}else"number"==typeof e&&(e&=255);if(t<0||this.length<t||this.length<n)throw new RangeError("Out of range index");if(n<=t)return this;t>>>=0,n=void 0===n?this.length:n>>>0,e||(e=0);var a;if("number"==typeof e)for(a=t;a<n;++a)this[a]=e;else{var l=o.isBuffer(e)?e:H(new o(e,i).toString()),s=l.length;for(a=0;a<n-t;++a)this[a+t]=l[a%s]}return this};var ee=/[^+\/0-9A-Za-z-_]/g}).call(t,n(10))},function(e,t,n){"use strict";function i(e){var t=e.length;if(t%4>0)throw new Error("Invalid string. Length must be a multiple of 4");return"="===e[t-2]?2:"="===e[t-1]?1:0}function r(e){return 3*e.length/4-i(e)}function o(e){var t,n,r,o,a,l=e.length;o=i(e),a=new d(3*l/4-o),n=o>0?l-4:l;var s=0;for(t=0;t<n;t+=4)r=c[e.charCodeAt(t)]<<18|c[e.charCodeAt(t+1)]<<12|c[e.charCodeAt(t+2)]<<6|c[e.charCodeAt(t+3)],a[s++]=r>>16&255,a[s++]=r>>8&255,a[s++]=255&r;return 2===o?(r=c[e.charCodeAt(t)]<<2|c[e.charCodeAt(t+1)]>>4,a[s++]=255&r):1===o&&(r=c[e.charCodeAt(t)]<<10|c[e.charCodeAt(t+1)]<<4|c[e.charCodeAt(t+2)]>>2,a[s++]=r>>8&255,a[s++]=255&r),a}function a(e){return u[e>>18&63]+u[e>>12&63]+u[e>>6&63]+u[63&e]}function l(e,t,n){for(var i,r=[],o=t;o<n;o+=3)i=(e[o]<<16)+(e[o+1]<<8)+e[o+2],r.push(a(i));return r.join("")}function s(e){for(var t,n=e.length,i=n%3,r="",o=[],a=0,s=n-i;a<s;a+=16383)o.push(l(e,a,a+16383>s?s:a+16383));return 1===i?(t=e[n-1],r+=u[t>>2],r+=u[t<<4&63],r+="=="):2===i&&(t=(e[n-2]<<8)+e[n-1],r+=u[t>>10],r+=u[t>>4&63],r+=u[t<<2&63],r+="="),o.push(r),o.join("")}t.byteLength=r,t.toByteArray=o,t.fromByteArray=s;for(var u=[],c=[],d="undefined"!=typeof Uint8Array?Uint8Array:Array,f="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",p=0,h=f.length;p<h;++p)u[p]=f[p],c[f.charCodeAt(p)]=p;c["-".charCodeAt(0)]=62,c["_".charCodeAt(0)]=63},function(e,t){t.read=function(e,t,n,i,r){var o,a,l=8*r-i-1,s=(1<<l)-1,u=s>>1,c=-7,d=n?r-1:0,f=n?-1:1,p=e[t+d];for(d+=f,o=p&(1<<-c)-1,p>>=-c,c+=l;c>0;o=256*o+e[t+d],d+=f,c-=8);for(a=o&(1<<-c)-1,o>>=-c,c+=i;c>0;a=256*a+e[t+d],d+=f,c-=8);if(0===o)o=1-u;else{if(o===s)return a?NaN:1/0*(p?-1:1);a+=Math.pow(2,i),o-=u}return(p?-1:1)*a*Math.pow(2,o-i)},t.write=function(e,t,n,i,r,o){var a,l,s,u=8*o-r-1,c=(1<<u)-1,d=c>>1,f=23===r?Math.pow(2,-24)-Math.pow(2,-77):0,p=i?0:o-1,h=i?1:-1,m=t<0||0===t&&1/t<0?1:0;for(t=Math.abs(t),isNaN(t)||t===1/0?(l=isNaN(t)?1:0,a=c):(a=Math.floor(Math.log(t)/Math.LN2),t*(s=Math.pow(2,-a))<1&&(a--,s*=2),t+=a+d>=1?f/s:f*Math.pow(2,1-d),t*s>=2&&(a++,s/=2),a+d>=c?(l=0,a=c):a+d>=1?(l=(t*s-1)*Math.pow(2,r),a+=d):(l=t*Math.pow(2,d-1)*Math.pow(2,r),a=0));r>=8;e[n+p]=255&l,p+=h,l/=256,r-=8);for(a=a<<r|l,u+=r;u>0;e[n+p]=255&a,p+=h,a/=256,u-=8);e[n+p-h]|=128*m}},function(e,t){var n={}.toString;e.exports=Array.isArray||function(e){return"[object Array]"==n.call(e)}},function(e,t,n){function i(e){n(50)}var r=n(2),o=n(53),a=n(61),l=i,s=r(o,a,l,null,null);e.exports=s.exports},function(e,t,n){var i=n(51);"string"==typeof i&&(i=[[e.i,i,""]]),i.locals&&(e.exports=i.locals);n(6)("d75e3e40",i,!0)},function(e,t,n){t=e.exports=n(0)(void 0),t.push([e.i,".quill-editor img{max-width:100%}",""])},function(e,t){e.exports=function(e,t){for(var n=[],i={},r=0;r<t.length;r++){var o=t[r],a=o[0],l=o[1],s=o[2],u=o[3],c={id:e+":"+r,css:l,media:s,sourceMap:u};i[a]?i[a].parts.push(c):n.push(i[a]={id:a,parts:[c]})}return n}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),n(54),n(57),n(59),window.Quill||(window.Quill=n(24)),t.default={name:"quill-editor",data:function(){return{_content:"",defaultModules:{toolbar:[["bold","italic","underline","strike"],["blockquote","code-block"],[{header:1},{header:2}],[{list:"ordered"},{list:"bullet"}],[{script:"sub"},{script:"super"}],[{indent:"-1"},{indent:"+1"}],[{direction:"rtl"}],[{size:["small",!1,"large","huge"]}],[{header:[1,2,3,4,5,6,!1]}],[{color:[]},{background:[]}],[{font:[]}],[{align:[]}],["clean"],["link","image","video"]]}}},props:{content:String,value:String,disabled:Boolean,options:{type:Object,required:!1,default:function(){return{}}}},mounted:function(){this.initialize()},beforeDestroy:function(){this.quill=null},methods:{initialize:function(){if(this.$el){var e=this;e.options.theme=e.options.theme||"snow",e.options.boundary=e.options.boundary||document.body,e.options.modules=e.options.modules||e.defaultModules,e.options.modules.toolbar=void 0!==e.options.modules.toolbar?e.options.modules.toolbar:e.defaultModules.toolbar,e.options.placeholder=e.options.placeholder||"Insert text here ...",e.options.readOnly=void 0!==e.options.readOnly&&e.options.readOnly,e.quill=new Quill(e.$refs.editor,e.options),(e.value||e.content)&&e.quill.pasteHTML(e.value||e.content),e.quill.on("selection-change",function(t){t?e.$emit("focus",e.quill):e.$emit("blur",e.quill)}),e.quill.on("text-change",function(t,n,i){var r=e.$refs.editor.children[0].innerHTML,o=e.quill.getText();"<p><br></p>"===r&&(r=""),e._content=r,e.$emit("input",e._content),e.$emit("change",{editor:e.quill,html:r,text:o})}),this.disabled&&this.quill.enable(!1),e.$emit("ready",e.quill)}}},watch:{content:function(e,t){this.quill&&(e&&e!==this._content?(this._content=e,this.quill.pasteHTML(e)):e||this.quill.setText(""))},value:function(e,t){this.quill&&(e&&e!==this._content?(this._content=e,this.quill.pasteHTML(e)):e||this.quill.setText(""))},disabled:function(e,t){this.quill&&this.quill.enable(!e)}}}},function(e,t,n){var i=n(55);"string"==typeof i&&(i=[[e.i,i,""]]);var r={};r.transform=void 0;n(4)(i,r);i.locals&&(e.exports=i.locals)},function(e,t,n){t=e.exports=n(0)(void 0),t.push([e.i,'/*!\n * Quill Editor v1.3.2\n * https://quilljs.com/\n * Copyright (c) 2014, Jason Chen\n * Copyright (c) 2013, salesforce.com\n */.ql-container{box-sizing:border-box;font-family:Helvetica,Arial,sans-serif;font-size:13px;height:100%;margin:0;position:relative}.ql-container.ql-disabled .ql-tooltip{visibility:hidden}.ql-container.ql-disabled .ql-editor ul[data-checked]>li:before{pointer-events:none}.ql-clipboard{left:-100000px;height:1px;overflow-y:hidden;position:absolute;top:50%}.ql-clipboard p{margin:0;padding:0}.ql-editor{box-sizing:border-box;line-height:1.42;height:100%;outline:none;overflow-y:auto;padding:12px 15px;tab-size:4;-moz-tab-size:4;text-align:left;white-space:pre-wrap;word-wrap:break-word}.ql-editor>*{cursor:text}.ql-editor blockquote,.ql-editor h1,.ql-editor h2,.ql-editor h3,.ql-editor h4,.ql-editor h5,.ql-editor h6,.ql-editor ol,.ql-editor p,.ql-editor pre,.ql-editor ul{margin:0;padding:0;counter-reset:list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9}.ql-editor ol,.ql-editor ul{padding-left:1.5em}.ql-editor ol>li,.ql-editor ul>li{list-style-type:none}.ql-editor ul>li:before{content:"\\2022"}.ql-editor ul[data-checked=false],.ql-editor ul[data-checked=true]{pointer-events:none}.ql-editor ul[data-checked=false]>li *,.ql-editor ul[data-checked=true]>li *{pointer-events:all}.ql-editor ul[data-checked=false]>li:before,.ql-editor ul[data-checked=true]>li:before{color:#777;cursor:pointer;pointer-events:all}.ql-editor ul[data-checked=true]>li:before{content:"\\2611"}.ql-editor ul[data-checked=false]>li:before{content:"\\2610"}.ql-editor li:before{display:inline-block;white-space:nowrap;width:1.2em}.ql-editor li:not(.ql-direction-rtl):before{margin-left:-1.5em;margin-right:.3em;text-align:right}.ql-editor li.ql-direction-rtl:before{margin-left:.3em;margin-right:-1.5em}.ql-editor ol li:not(.ql-direction-rtl),.ql-editor ul li:not(.ql-direction-rtl){padding-left:1.5em}.ql-editor ol li.ql-direction-rtl,.ql-editor ul li.ql-direction-rtl{padding-right:1.5em}.ql-editor ol li{counter-reset:list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;counter-increment:list-0}.ql-editor ol li:before{content:counter(list-0,decimal) ". "}.ql-editor ol li.ql-indent-1{counter-increment:list-1}.ql-editor ol li.ql-indent-1:before{content:counter(list-1,lower-alpha) ". "}.ql-editor ol li.ql-indent-1{counter-reset:list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9}.ql-editor ol li.ql-indent-2{counter-increment:list-2}.ql-editor ol li.ql-indent-2:before{content:counter(list-2,lower-roman) ". "}.ql-editor ol li.ql-indent-2{counter-reset:list-3 list-4 list-5 list-6 list-7 list-8 list-9}.ql-editor ol li.ql-indent-3{counter-increment:list-3}.ql-editor ol li.ql-indent-3:before{content:counter(list-3,decimal) ". "}.ql-editor ol li.ql-indent-3{counter-reset:list-4 list-5 list-6 list-7 list-8 list-9}.ql-editor ol li.ql-indent-4{counter-increment:list-4}.ql-editor ol li.ql-indent-4:before{content:counter(list-4,lower-alpha) ". "}.ql-editor ol li.ql-indent-4{counter-reset:list-5 list-6 list-7 list-8 list-9}.ql-editor ol li.ql-indent-5{counter-increment:list-5}.ql-editor ol li.ql-indent-5:before{content:counter(list-5,lower-roman) ". "}.ql-editor ol li.ql-indent-5{counter-reset:list-6 list-7 list-8 list-9}.ql-editor ol li.ql-indent-6{counter-increment:list-6}.ql-editor ol li.ql-indent-6:before{content:counter(list-6,decimal) ". "}.ql-editor ol li.ql-indent-6{counter-reset:list-7 list-8 list-9}.ql-editor ol li.ql-indent-7{counter-increment:list-7}.ql-editor ol li.ql-indent-7:before{content:counter(list-7,lower-alpha) ". "}.ql-editor ol li.ql-indent-7{counter-reset:list-8 list-9}.ql-editor ol li.ql-indent-8{counter-increment:list-8}.ql-editor ol li.ql-indent-8:before{content:counter(list-8,lower-roman) ". "}.ql-editor ol li.ql-indent-8{counter-reset:list-9}.ql-editor ol li.ql-indent-9{counter-increment:list-9}.ql-editor ol li.ql-indent-9:before{content:counter(list-9,decimal) ". "}.ql-editor .ql-indent-1:not(.ql-direction-rtl){padding-left:3em}.ql-editor li.ql-indent-1:not(.ql-direction-rtl){padding-left:4.5em}.ql-editor .ql-indent-1.ql-direction-rtl.ql-align-right{padding-right:3em}.ql-editor li.ql-indent-1.ql-direction-rtl.ql-align-right{padding-right:4.5em}.ql-editor .ql-indent-2:not(.ql-direction-rtl){padding-left:6em}.ql-editor li.ql-indent-2:not(.ql-direction-rtl){padding-left:7.5em}.ql-editor .ql-indent-2.ql-direction-rtl.ql-align-right{padding-right:6em}.ql-editor li.ql-indent-2.ql-direction-rtl.ql-align-right{padding-right:7.5em}.ql-editor .ql-indent-3:not(.ql-direction-rtl){padding-left:9em}.ql-editor li.ql-indent-3:not(.ql-direction-rtl){padding-left:10.5em}.ql-editor .ql-indent-3.ql-direction-rtl.ql-align-right{padding-right:9em}.ql-editor li.ql-indent-3.ql-direction-rtl.ql-align-right{padding-right:10.5em}.ql-editor .ql-indent-4:not(.ql-direction-rtl){padding-left:12em}.ql-editor li.ql-indent-4:not(.ql-direction-rtl){padding-left:13.5em}.ql-editor .ql-indent-4.ql-direction-rtl.ql-align-right{padding-right:12em}.ql-editor li.ql-indent-4.ql-direction-rtl.ql-align-right{padding-right:13.5em}.ql-editor .ql-indent-5:not(.ql-direction-rtl){padding-left:15em}.ql-editor li.ql-indent-5:not(.ql-direction-rtl){padding-left:16.5em}.ql-editor .ql-indent-5.ql-direction-rtl.ql-align-right{padding-right:15em}.ql-editor li.ql-indent-5.ql-direction-rtl.ql-align-right{padding-right:16.5em}.ql-editor .ql-indent-6:not(.ql-direction-rtl){padding-left:18em}.ql-editor li.ql-indent-6:not(.ql-direction-rtl){padding-left:19.5em}.ql-editor .ql-indent-6.ql-direction-rtl.ql-align-right{padding-right:18em}.ql-editor li.ql-indent-6.ql-direction-rtl.ql-align-right{padding-right:19.5em}.ql-editor .ql-indent-7:not(.ql-direction-rtl){padding-left:21em}.ql-editor li.ql-indent-7:not(.ql-direction-rtl){padding-left:22.5em}.ql-editor .ql-indent-7.ql-direction-rtl.ql-align-right{padding-right:21em}.ql-editor li.ql-indent-7.ql-direction-rtl.ql-align-right{padding-right:22.5em}.ql-editor .ql-indent-8:not(.ql-direction-rtl){padding-left:24em}.ql-editor li.ql-indent-8:not(.ql-direction-rtl){padding-left:25.5em}.ql-editor .ql-indent-8.ql-direction-rtl.ql-align-right{padding-right:24em}.ql-editor li.ql-indent-8.ql-direction-rtl.ql-align-right{padding-right:25.5em}.ql-editor .ql-indent-9:not(.ql-direction-rtl){padding-left:27em}.ql-editor li.ql-indent-9:not(.ql-direction-rtl){padding-left:28.5em}.ql-editor .ql-indent-9.ql-direction-rtl.ql-align-right{padding-right:27em}.ql-editor li.ql-indent-9.ql-direction-rtl.ql-align-right{padding-right:28.5em}.ql-editor .ql-video{display:block;max-width:100%}.ql-editor .ql-video.ql-align-center{margin:0 auto}.ql-editor .ql-video.ql-align-right{margin:0 0 0 auto}.ql-editor .ql-bg-black{background-color:#000}.ql-editor .ql-bg-red{background-color:#e60000}.ql-editor .ql-bg-orange{background-color:#f90}.ql-editor .ql-bg-yellow{background-color:#ff0}.ql-editor .ql-bg-green{background-color:#008a00}.ql-editor .ql-bg-blue{background-color:#06c}.ql-editor .ql-bg-purple{background-color:#93f}.ql-editor .ql-color-white{color:#fff}.ql-editor .ql-color-red{color:#e60000}.ql-editor .ql-color-orange{color:#f90}.ql-editor .ql-color-yellow{color:#ff0}.ql-editor .ql-color-green{color:#008a00}.ql-editor .ql-color-blue{color:#06c}.ql-editor .ql-color-purple{color:#93f}.ql-editor .ql-font-serif{font-family:Georgia,Times New Roman,serif}.ql-editor .ql-font-monospace{font-family:Monaco,Courier New,monospace}.ql-editor .ql-size-small{font-size:.75em}.ql-editor .ql-size-large{font-size:1.5em}.ql-editor .ql-size-huge{font-size:2.5em}.ql-editor .ql-direction-rtl{direction:rtl;text-align:inherit}.ql-editor .ql-align-center{text-align:center}.ql-editor .ql-align-justify{text-align:justify}.ql-editor .ql-align-right{text-align:right}.ql-editor .ql-embed-selected{border:2px solid #777;user-select:none}.ql-editor.ql-blank:before{color:rgba(0,0,0,.6);content:attr(data-placeholder);font-style:italic;left:15px;pointer-events:none;position:absolute;right:15px}.ql-snow.ql-toolbar:after,.ql-snow .ql-toolbar:after{clear:both;content:"";display:table}.ql-snow.ql-toolbar button,.ql-snow .ql-toolbar button{background:none;border:none;cursor:pointer;display:inline-block;float:left;height:24px;padding:3px 5px;width:28px}.ql-snow.ql-toolbar button svg,.ql-snow .ql-toolbar button svg{float:left;height:100%}.ql-snow.ql-toolbar button:active:hover,.ql-snow .ql-toolbar button:active:hover{outline:none}.ql-snow.ql-toolbar input.ql-image[type=file],.ql-snow .ql-toolbar input.ql-image[type=file]{display:none}.ql-snow.ql-toolbar .ql-picker-item.ql-selected,.ql-snow .ql-toolbar .ql-picker-item.ql-selected,.ql-snow.ql-toolbar .ql-picker-item:hover,.ql-snow .ql-toolbar .ql-picker-item:hover,.ql-snow.ql-toolbar .ql-picker-label.ql-active,.ql-snow .ql-toolbar .ql-picker-label.ql-active,.ql-snow.ql-toolbar .ql-picker-label:hover,.ql-snow .ql-toolbar .ql-picker-label:hover,.ql-snow.ql-toolbar button.ql-active,.ql-snow .ql-toolbar button.ql-active,.ql-snow.ql-toolbar button:focus,.ql-snow .ql-toolbar button:focus,.ql-snow.ql-toolbar button:hover,.ql-snow .ql-toolbar button:hover{color:#06c}.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-fill,.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-fill,.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke.ql-fill,.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke.ql-fill,.ql-snow.ql-toolbar .ql-picker-item:hover .ql-fill,.ql-snow .ql-toolbar .ql-picker-item:hover .ql-fill,.ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke.ql-fill,.ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke.ql-fill,.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-fill,.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-fill,.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke.ql-fill,.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke.ql-fill,.ql-snow.ql-toolbar .ql-picker-label:hover .ql-fill,.ql-snow .ql-toolbar .ql-picker-label:hover .ql-fill,.ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke.ql-fill,.ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke.ql-fill,.ql-snow.ql-toolbar button.ql-active .ql-fill,.ql-snow .ql-toolbar button.ql-active .ql-fill,.ql-snow.ql-toolbar button.ql-active .ql-stroke.ql-fill,.ql-snow .ql-toolbar button.ql-active .ql-stroke.ql-fill,.ql-snow.ql-toolbar button:focus .ql-fill,.ql-snow .ql-toolbar button:focus .ql-fill,.ql-snow.ql-toolbar button:focus .ql-stroke.ql-fill,.ql-snow .ql-toolbar button:focus .ql-stroke.ql-fill,.ql-snow.ql-toolbar button:hover .ql-fill,.ql-snow .ql-toolbar button:hover .ql-fill,.ql-snow.ql-toolbar button:hover .ql-stroke.ql-fill,.ql-snow .ql-toolbar button:hover .ql-stroke.ql-fill{fill:#06c}.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke,.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke,.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke-miter,.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke-miter,.ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke,.ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke,.ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke-miter,.ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke-miter,.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke,.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke,.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke-miter,.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke-miter,.ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke,.ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke,.ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke-miter,.ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke-miter,.ql-snow.ql-toolbar button.ql-active .ql-stroke,.ql-snow .ql-toolbar button.ql-active .ql-stroke,.ql-snow.ql-toolbar button.ql-active .ql-stroke-miter,.ql-snow .ql-toolbar button.ql-active .ql-stroke-miter,.ql-snow.ql-toolbar button:focus .ql-stroke,.ql-snow .ql-toolbar button:focus .ql-stroke,.ql-snow.ql-toolbar button:focus .ql-stroke-miter,.ql-snow .ql-toolbar button:focus .ql-stroke-miter,.ql-snow.ql-toolbar button:hover .ql-stroke,.ql-snow .ql-toolbar button:hover .ql-stroke,.ql-snow.ql-toolbar button:hover .ql-stroke-miter,.ql-snow .ql-toolbar button:hover .ql-stroke-miter{stroke:#06c}@media (pointer:coarse){.ql-snow.ql-toolbar button:hover:not(.ql-active),.ql-snow .ql-toolbar button:hover:not(.ql-active){color:#444}.ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-fill,.ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-fill,.ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke.ql-fill,.ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke.ql-fill{fill:#444}.ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke,.ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke,.ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke-miter,.ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke-miter{stroke:#444}}.ql-snow,.ql-snow *{box-sizing:border-box}.ql-snow .ql-hidden{display:none}.ql-snow .ql-out-bottom,.ql-snow .ql-out-top{visibility:hidden}.ql-snow .ql-tooltip{position:absolute;transform:translateY(10px)}.ql-snow .ql-tooltip a{cursor:pointer;text-decoration:none}.ql-snow .ql-tooltip.ql-flip{transform:translateY(-10px)}.ql-snow .ql-formats{display:inline-block;vertical-align:middle}.ql-snow .ql-formats:after{clear:both;content:"";display:table}.ql-snow .ql-stroke{fill:none;stroke:#444;stroke-linecap:round;stroke-linejoin:round;stroke-width:2}.ql-snow .ql-stroke-miter{fill:none;stroke:#444;stroke-miterlimit:10;stroke-width:2}.ql-snow .ql-fill,.ql-snow .ql-stroke.ql-fill{fill:#444}.ql-snow .ql-empty{fill:none}.ql-snow .ql-even{fill-rule:evenodd}.ql-snow .ql-stroke.ql-thin,.ql-snow .ql-thin{stroke-width:1}.ql-snow .ql-transparent{opacity:.4}.ql-snow .ql-direction svg:last-child{display:none}.ql-snow .ql-direction.ql-active svg:last-child{display:inline}.ql-snow .ql-direction.ql-active svg:first-child{display:none}.ql-snow .ql-editor h1{font-size:2em}.ql-snow .ql-editor h2{font-size:1.5em}.ql-snow .ql-editor h3{font-size:1.17em}.ql-snow .ql-editor h4{font-size:1em}.ql-snow .ql-editor h5{font-size:.83em}.ql-snow .ql-editor h6{font-size:.67em}.ql-snow .ql-editor a{text-decoration:underline}.ql-snow .ql-editor blockquote{border-left:4px solid #ccc;margin-bottom:5px;margin-top:5px;padding-left:16px}.ql-snow .ql-editor code,.ql-snow .ql-editor pre{background-color:#f0f0f0;border-radius:3px}.ql-snow .ql-editor pre{white-space:pre-wrap;margin-bottom:5px;margin-top:5px;padding:5px 10px}.ql-snow .ql-editor code{font-size:85%;padding:2px 4px}.ql-snow .ql-editor pre.ql-syntax{background-color:#23241f;color:#f8f8f2;overflow:visible}.ql-snow .ql-editor img{max-width:100%}.ql-snow .ql-picker{color:#444;display:inline-block;float:left;font-size:14px;font-weight:500;height:24px;position:relative;vertical-align:middle}.ql-snow .ql-picker-label{cursor:pointer;display:inline-block;height:100%;padding-left:8px;padding-right:2px;position:relative;width:100%}.ql-snow .ql-picker-label:before{display:inline-block;line-height:22px}.ql-snow .ql-picker-options{background-color:#fff;display:none;min-width:100%;padding:4px 8px;position:absolute;white-space:nowrap}.ql-snow .ql-picker-options .ql-picker-item{cursor:pointer;display:block;padding-bottom:5px;padding-top:5px}.ql-snow .ql-picker.ql-expanded .ql-picker-label{color:#ccc;z-index:2}.ql-snow .ql-picker.ql-expanded .ql-picker-label .ql-fill{fill:#ccc}.ql-snow .ql-picker.ql-expanded .ql-picker-label .ql-stroke{stroke:#ccc}.ql-snow .ql-picker.ql-expanded .ql-picker-options{display:block;margin-top:-1px;top:100%;z-index:1}.ql-snow .ql-color-picker,.ql-snow .ql-icon-picker{width:28px}.ql-snow .ql-color-picker .ql-picker-label,.ql-snow .ql-icon-picker .ql-picker-label{padding:2px 4px}.ql-snow .ql-color-picker .ql-picker-label svg,.ql-snow .ql-icon-picker .ql-picker-label svg{right:4px}.ql-snow .ql-icon-picker .ql-picker-options{padding:4px 0}.ql-snow .ql-icon-picker .ql-picker-item{height:24px;width:24px;padding:2px 4px}.ql-snow .ql-color-picker .ql-picker-options{padding:3px 5px;width:152px}.ql-snow .ql-color-picker .ql-picker-item{border:1px solid transparent;float:left;height:16px;margin:2px;padding:0;width:16px}.ql-snow .ql-picker:not(.ql-color-picker):not(.ql-icon-picker) svg{position:absolute;margin-top:-9px;right:0;top:50%;width:18px}.ql-snow .ql-picker.ql-font .ql-picker-item[data-label]:not([data-label=""]):before,.ql-snow .ql-picker.ql-font .ql-picker-label[data-label]:not([data-label=""]):before,.ql-snow .ql-picker.ql-header .ql-picker-item[data-label]:not([data-label=""]):before,.ql-snow .ql-picker.ql-header .ql-picker-label[data-label]:not([data-label=""]):before,.ql-snow .ql-picker.ql-size .ql-picker-item[data-label]:not([data-label=""]):before,.ql-snow .ql-picker.ql-size .ql-picker-label[data-label]:not([data-label=""]):before{content:attr(data-label)}.ql-snow .ql-picker.ql-header{width:98px}.ql-snow .ql-picker.ql-header .ql-picker-item:before,.ql-snow .ql-picker.ql-header .ql-picker-label:before{content:"Normal"}.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="1"]:before,.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="1"]:before{content:"Heading 1"}.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="2"]:before,.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="2"]:before{content:"Heading 2"}.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="3"]:before,.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="3"]:before{content:"Heading 3"}.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="4"]:before,.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="4"]:before{content:"Heading 4"}.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="5"]:before,.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="5"]:before{content:"Heading 5"}.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="6"]:before,.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="6"]:before{content:"Heading 6"}.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="1"]:before{font-size:2em}.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="2"]:before{font-size:1.5em}.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="3"]:before{font-size:1.17em}.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="4"]:before{font-size:1em}.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="5"]:before{font-size:.83em}.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="6"]:before{font-size:.67em}.ql-snow .ql-picker.ql-font{width:108px}.ql-snow .ql-picker.ql-font .ql-picker-item:before,.ql-snow .ql-picker.ql-font .ql-picker-label:before{content:"Sans Serif"}.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=serif]:before,.ql-snow .ql-picker.ql-font .ql-picker-label[data-value=serif]:before{content:"Serif"}.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=monospace]:before,.ql-snow .ql-picker.ql-font .ql-picker-label[data-value=monospace]:before{content:"Monospace"}.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=serif]:before{font-family:Georgia,Times New Roman,serif}.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=monospace]:before{font-family:Monaco,Courier New,monospace}.ql-snow .ql-picker.ql-size{width:98px}.ql-snow .ql-picker.ql-size .ql-picker-item:before,.ql-snow .ql-picker.ql-size .ql-picker-label:before{content:"Normal"}.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=small]:before,.ql-snow .ql-picker.ql-size .ql-picker-label[data-value=small]:before{content:"Small"}.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=large]:before,.ql-snow .ql-picker.ql-size .ql-picker-label[data-value=large]:before{content:"Large"}.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=huge]:before,.ql-snow .ql-picker.ql-size .ql-picker-label[data-value=huge]:before{content:"Huge"}.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=small]:before{font-size:10px}.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=large]:before{font-size:18px}.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=huge]:before{font-size:32px}.ql-snow .ql-color-picker.ql-background .ql-picker-item{background-color:#fff}.ql-snow .ql-color-picker.ql-color .ql-picker-item{background-color:#000}.ql-toolbar.ql-snow{border:1px solid #ccc;box-sizing:border-box;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;padding:8px}.ql-toolbar.ql-snow .ql-formats{margin-right:15px}.ql-toolbar.ql-snow .ql-picker-label{border:1px solid transparent}.ql-toolbar.ql-snow .ql-picker-options{border:1px solid transparent;box-shadow:0 2px 8px rgba(0,0,0,.2)}.ql-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-label,.ql-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-options{border-color:#ccc}.ql-toolbar.ql-snow .ql-color-picker .ql-picker-item.ql-selected,.ql-toolbar.ql-snow .ql-color-picker .ql-picker-item:hover{border-color:#000}.ql-toolbar.ql-snow+.ql-container.ql-snow{border-top:0}.ql-snow .ql-tooltip{background-color:#fff;border:1px solid #ccc;box-shadow:0 0 5px #ddd;color:#444;padding:5px 12px;white-space:nowrap}.ql-snow .ql-tooltip:before{content:"Visit URL:";line-height:26px;margin-right:8px}.ql-snow .ql-tooltip input[type=text]{display:none;border:1px solid #ccc;font-size:13px;height:26px;margin:0;padding:3px 5px;width:170px}.ql-snow .ql-tooltip a.ql-preview{display:inline-block;max-width:200px;overflow-x:hidden;text-overflow:ellipsis;vertical-align:top}.ql-snow .ql-tooltip a.ql-action:after{border-right:1px solid #ccc;content:"Edit";margin-left:16px;padding-right:8px}.ql-snow .ql-tooltip a.ql-remove:before{content:"Remove";margin-left:8px}.ql-snow .ql-tooltip a{line-height:26px}.ql-snow .ql-tooltip.ql-editing a.ql-preview,.ql-snow .ql-tooltip.ql-editing a.ql-remove{display:none}.ql-snow .ql-tooltip.ql-editing input[type=text]{display:inline-block}.ql-snow .ql-tooltip.ql-editing a.ql-action:after{border-right:0;content:"Save";padding-right:0}.ql-snow .ql-tooltip[data-mode=link]:before{content:"Enter link:"}.ql-snow .ql-tooltip[data-mode=formula]:before{content:"Enter formula:"}.ql-snow .ql-tooltip[data-mode=video]:before{content:"Enter video:"}.ql-snow a{color:#06c}.ql-container.ql-snow{border:1px solid #ccc}',""])},function(e,t){e.exports=function(e){var t="undefined"!=typeof window&&window.location;if(!t)throw new Error("fixUrls requires window.location");if(!e||"string"!=typeof e)return e;var n=t.protocol+"//"+t.host,i=n+t.pathname.replace(/\/[^\/]*$/,"/");return e.replace(/url\s*\(((?:[^)(]|\((?:[^)(]+|\([^)(]*\))*\))*)\)/gi,function(e,t){var r=t.trim().replace(/^"(.*)"$/,function(e,t){return t}).replace(/^'(.*)'$/,function(e,t){return t});if(/^(#|data:|http:\/\/|https:\/\/|file:\/\/\/)/i.test(r))return e;var o;return o=0===r.indexOf("//")?r:0===r.indexOf("/")?n+r:i+r.replace(/^\.\//,""),"url("+JSON.stringify(o)+")"})}},function(e,t,n){var i=n(58);"string"==typeof i&&(i=[[e.i,i,""]]);var r={};r.transform=void 0;n(4)(i,r);i.locals&&(e.exports=i.locals)},function(e,t,n){t=e.exports=n(0)(void 0),t.push([e.i,'/*!\n * Quill Editor v1.3.2\n * https://quilljs.com/\n * Copyright (c) 2014, Jason Chen\n * Copyright (c) 2013, salesforce.com\n */.ql-container{box-sizing:border-box;font-family:Helvetica,Arial,sans-serif;font-size:13px;height:100%;margin:0;position:relative}.ql-container.ql-disabled .ql-tooltip{visibility:hidden}.ql-container.ql-disabled .ql-editor ul[data-checked]>li:before{pointer-events:none}.ql-clipboard{left:-100000px;height:1px;overflow-y:hidden;position:absolute;top:50%}.ql-clipboard p{margin:0;padding:0}.ql-editor{box-sizing:border-box;line-height:1.42;height:100%;outline:none;overflow-y:auto;padding:12px 15px;tab-size:4;-moz-tab-size:4;text-align:left;white-space:pre-wrap;word-wrap:break-word}.ql-editor>*{cursor:text}.ql-editor blockquote,.ql-editor h1,.ql-editor h2,.ql-editor h3,.ql-editor h4,.ql-editor h5,.ql-editor h6,.ql-editor ol,.ql-editor p,.ql-editor pre,.ql-editor ul{margin:0;padding:0;counter-reset:list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9}.ql-editor ol,.ql-editor ul{padding-left:1.5em}.ql-editor ol>li,.ql-editor ul>li{list-style-type:none}.ql-editor ul>li:before{content:"\\2022"}.ql-editor ul[data-checked=false],.ql-editor ul[data-checked=true]{pointer-events:none}.ql-editor ul[data-checked=false]>li *,.ql-editor ul[data-checked=true]>li *{pointer-events:all}.ql-editor ul[data-checked=false]>li:before,.ql-editor ul[data-checked=true]>li:before{color:#777;cursor:pointer;pointer-events:all}.ql-editor ul[data-checked=true]>li:before{content:"\\2611"}.ql-editor ul[data-checked=false]>li:before{content:"\\2610"}.ql-editor li:before{display:inline-block;white-space:nowrap;width:1.2em}.ql-editor li:not(.ql-direction-rtl):before{margin-left:-1.5em;margin-right:.3em;text-align:right}.ql-editor li.ql-direction-rtl:before{margin-left:.3em;margin-right:-1.5em}.ql-editor ol li:not(.ql-direction-rtl),.ql-editor ul li:not(.ql-direction-rtl){padding-left:1.5em}.ql-editor ol li.ql-direction-rtl,.ql-editor ul li.ql-direction-rtl{padding-right:1.5em}.ql-editor ol li{counter-reset:list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;counter-increment:list-0}.ql-editor ol li:before{content:counter(list-0,decimal) ". "}.ql-editor ol li.ql-indent-1{counter-increment:list-1}.ql-editor ol li.ql-indent-1:before{content:counter(list-1,lower-alpha) ". "}.ql-editor ol li.ql-indent-1{counter-reset:list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9}.ql-editor ol li.ql-indent-2{counter-increment:list-2}.ql-editor ol li.ql-indent-2:before{content:counter(list-2,lower-roman) ". "}.ql-editor ol li.ql-indent-2{counter-reset:list-3 list-4 list-5 list-6 list-7 list-8 list-9}.ql-editor ol li.ql-indent-3{counter-increment:list-3}.ql-editor ol li.ql-indent-3:before{content:counter(list-3,decimal) ". "}.ql-editor ol li.ql-indent-3{counter-reset:list-4 list-5 list-6 list-7 list-8 list-9}.ql-editor ol li.ql-indent-4{counter-increment:list-4}.ql-editor ol li.ql-indent-4:before{content:counter(list-4,lower-alpha) ". "}.ql-editor ol li.ql-indent-4{counter-reset:list-5 list-6 list-7 list-8 list-9}.ql-editor ol li.ql-indent-5{counter-increment:list-5}.ql-editor ol li.ql-indent-5:before{content:counter(list-5,lower-roman) ". "}.ql-editor ol li.ql-indent-5{counter-reset:list-6 list-7 list-8 list-9}.ql-editor ol li.ql-indent-6{counter-increment:list-6}.ql-editor ol li.ql-indent-6:before{content:counter(list-6,decimal) ". "}.ql-editor ol li.ql-indent-6{counter-reset:list-7 list-8 list-9}.ql-editor ol li.ql-indent-7{counter-increment:list-7}.ql-editor ol li.ql-indent-7:before{content:counter(list-7,lower-alpha) ". "}.ql-editor ol li.ql-indent-7{counter-reset:list-8 list-9}.ql-editor ol li.ql-indent-8{counter-increment:list-8}.ql-editor ol li.ql-indent-8:before{content:counter(list-8,lower-roman) ". "}.ql-editor ol li.ql-indent-8{counter-reset:list-9}.ql-editor ol li.ql-indent-9{counter-increment:list-9}.ql-editor ol li.ql-indent-9:before{content:counter(list-9,decimal) ". "}.ql-editor .ql-indent-1:not(.ql-direction-rtl){padding-left:3em}.ql-editor li.ql-indent-1:not(.ql-direction-rtl){padding-left:4.5em}.ql-editor .ql-indent-1.ql-direction-rtl.ql-align-right{padding-right:3em}.ql-editor li.ql-indent-1.ql-direction-rtl.ql-align-right{padding-right:4.5em}.ql-editor .ql-indent-2:not(.ql-direction-rtl){padding-left:6em}.ql-editor li.ql-indent-2:not(.ql-direction-rtl){padding-left:7.5em}.ql-editor .ql-indent-2.ql-direction-rtl.ql-align-right{padding-right:6em}.ql-editor li.ql-indent-2.ql-direction-rtl.ql-align-right{padding-right:7.5em}.ql-editor .ql-indent-3:not(.ql-direction-rtl){padding-left:9em}.ql-editor li.ql-indent-3:not(.ql-direction-rtl){padding-left:10.5em}.ql-editor .ql-indent-3.ql-direction-rtl.ql-align-right{padding-right:9em}.ql-editor li.ql-indent-3.ql-direction-rtl.ql-align-right{padding-right:10.5em}.ql-editor .ql-indent-4:not(.ql-direction-rtl){padding-left:12em}.ql-editor li.ql-indent-4:not(.ql-direction-rtl){padding-left:13.5em}.ql-editor .ql-indent-4.ql-direction-rtl.ql-align-right{padding-right:12em}.ql-editor li.ql-indent-4.ql-direction-rtl.ql-align-right{padding-right:13.5em}.ql-editor .ql-indent-5:not(.ql-direction-rtl){padding-left:15em}.ql-editor li.ql-indent-5:not(.ql-direction-rtl){padding-left:16.5em}.ql-editor .ql-indent-5.ql-direction-rtl.ql-align-right{padding-right:15em}.ql-editor li.ql-indent-5.ql-direction-rtl.ql-align-right{padding-right:16.5em}.ql-editor .ql-indent-6:not(.ql-direction-rtl){padding-left:18em}.ql-editor li.ql-indent-6:not(.ql-direction-rtl){padding-left:19.5em}.ql-editor .ql-indent-6.ql-direction-rtl.ql-align-right{padding-right:18em}.ql-editor li.ql-indent-6.ql-direction-rtl.ql-align-right{padding-right:19.5em}.ql-editor .ql-indent-7:not(.ql-direction-rtl){padding-left:21em}.ql-editor li.ql-indent-7:not(.ql-direction-rtl){padding-left:22.5em}.ql-editor .ql-indent-7.ql-direction-rtl.ql-align-right{padding-right:21em}.ql-editor li.ql-indent-7.ql-direction-rtl.ql-align-right{padding-right:22.5em}.ql-editor .ql-indent-8:not(.ql-direction-rtl){padding-left:24em}.ql-editor li.ql-indent-8:not(.ql-direction-rtl){padding-left:25.5em}.ql-editor .ql-indent-8.ql-direction-rtl.ql-align-right{padding-right:24em}.ql-editor li.ql-indent-8.ql-direction-rtl.ql-align-right{padding-right:25.5em}.ql-editor .ql-indent-9:not(.ql-direction-rtl){padding-left:27em}.ql-editor li.ql-indent-9:not(.ql-direction-rtl){padding-left:28.5em}.ql-editor .ql-indent-9.ql-direction-rtl.ql-align-right{padding-right:27em}.ql-editor li.ql-indent-9.ql-direction-rtl.ql-align-right{padding-right:28.5em}.ql-editor .ql-video{display:block;max-width:100%}.ql-editor .ql-video.ql-align-center{margin:0 auto}.ql-editor .ql-video.ql-align-right{margin:0 0 0 auto}.ql-editor .ql-bg-black{background-color:#000}.ql-editor .ql-bg-red{background-color:#e60000}.ql-editor .ql-bg-orange{background-color:#f90}.ql-editor .ql-bg-yellow{background-color:#ff0}.ql-editor .ql-bg-green{background-color:#008a00}.ql-editor .ql-bg-blue{background-color:#06c}.ql-editor .ql-bg-purple{background-color:#93f}.ql-editor .ql-color-white{color:#fff}.ql-editor .ql-color-red{color:#e60000}.ql-editor .ql-color-orange{color:#f90}.ql-editor .ql-color-yellow{color:#ff0}.ql-editor .ql-color-green{color:#008a00}.ql-editor .ql-color-blue{color:#06c}.ql-editor .ql-color-purple{color:#93f}.ql-editor .ql-font-serif{font-family:Georgia,Times New Roman,serif}.ql-editor .ql-font-monospace{font-family:Monaco,Courier New,monospace}.ql-editor .ql-size-small{font-size:.75em}.ql-editor .ql-size-large{font-size:1.5em}.ql-editor .ql-size-huge{font-size:2.5em}.ql-editor .ql-direction-rtl{direction:rtl;text-align:inherit}.ql-editor .ql-align-center{text-align:center}.ql-editor .ql-align-justify{text-align:justify}.ql-editor .ql-align-right{text-align:right}.ql-editor .ql-embed-selected{border:2px solid #777;user-select:none}.ql-editor.ql-blank:before{color:rgba(0,0,0,.6);content:attr(data-placeholder);font-style:italic;left:15px;pointer-events:none;position:absolute;right:15px}.ql-bubble.ql-toolbar:after,.ql-bubble .ql-toolbar:after{clear:both;content:"";display:table}.ql-bubble.ql-toolbar button,.ql-bubble .ql-toolbar button{background:none;border:none;cursor:pointer;display:inline-block;float:left;height:24px;padding:3px 5px;width:28px}.ql-bubble.ql-toolbar button svg,.ql-bubble .ql-toolbar button svg{float:left;height:100%}.ql-bubble.ql-toolbar button:active:hover,.ql-bubble .ql-toolbar button:active:hover{outline:none}.ql-bubble.ql-toolbar input.ql-image[type=file],.ql-bubble .ql-toolbar input.ql-image[type=file]{display:none}.ql-bubble.ql-toolbar .ql-picker-item.ql-selected,.ql-bubble .ql-toolbar .ql-picker-item.ql-selected,.ql-bubble.ql-toolbar .ql-picker-item:hover,.ql-bubble .ql-toolbar .ql-picker-item:hover,.ql-bubble.ql-toolbar .ql-picker-label.ql-active,.ql-bubble .ql-toolbar .ql-picker-label.ql-active,.ql-bubble.ql-toolbar .ql-picker-label:hover,.ql-bubble .ql-toolbar .ql-picker-label:hover,.ql-bubble.ql-toolbar button.ql-active,.ql-bubble .ql-toolbar button.ql-active,.ql-bubble.ql-toolbar button:focus,.ql-bubble .ql-toolbar button:focus,.ql-bubble.ql-toolbar button:hover,.ql-bubble .ql-toolbar button:hover{color:#fff}.ql-bubble.ql-toolbar .ql-picker-item.ql-selected .ql-fill,.ql-bubble .ql-toolbar .ql-picker-item.ql-selected .ql-fill,.ql-bubble.ql-toolbar .ql-picker-item.ql-selected .ql-stroke.ql-fill,.ql-bubble .ql-toolbar .ql-picker-item.ql-selected .ql-stroke.ql-fill,.ql-bubble.ql-toolbar .ql-picker-item:hover .ql-fill,.ql-bubble .ql-toolbar .ql-picker-item:hover .ql-fill,.ql-bubble.ql-toolbar .ql-picker-item:hover .ql-stroke.ql-fill,.ql-bubble .ql-toolbar .ql-picker-item:hover .ql-stroke.ql-fill,.ql-bubble.ql-toolbar .ql-picker-label.ql-active .ql-fill,.ql-bubble .ql-toolbar .ql-picker-label.ql-active .ql-fill,.ql-bubble.ql-toolbar .ql-picker-label.ql-active .ql-stroke.ql-fill,.ql-bubble .ql-toolbar .ql-picker-label.ql-active .ql-stroke.ql-fill,.ql-bubble.ql-toolbar .ql-picker-label:hover .ql-fill,.ql-bubble .ql-toolbar .ql-picker-label:hover .ql-fill,.ql-bubble.ql-toolbar .ql-picker-label:hover .ql-stroke.ql-fill,.ql-bubble .ql-toolbar .ql-picker-label:hover .ql-stroke.ql-fill,.ql-bubble.ql-toolbar button.ql-active .ql-fill,.ql-bubble .ql-toolbar button.ql-active .ql-fill,.ql-bubble.ql-toolbar button.ql-active .ql-stroke.ql-fill,.ql-bubble .ql-toolbar button.ql-active .ql-stroke.ql-fill,.ql-bubble.ql-toolbar button:focus .ql-fill,.ql-bubble .ql-toolbar button:focus .ql-fill,.ql-bubble.ql-toolbar button:focus .ql-stroke.ql-fill,.ql-bubble .ql-toolbar button:focus .ql-stroke.ql-fill,.ql-bubble.ql-toolbar button:hover .ql-fill,.ql-bubble .ql-toolbar button:hover .ql-fill,.ql-bubble.ql-toolbar button:hover .ql-stroke.ql-fill,.ql-bubble .ql-toolbar button:hover .ql-stroke.ql-fill{fill:#fff}.ql-bubble.ql-toolbar .ql-picker-item.ql-selected .ql-stroke,.ql-bubble .ql-toolbar .ql-picker-item.ql-selected .ql-stroke,.ql-bubble.ql-toolbar .ql-picker-item.ql-selected .ql-stroke-miter,.ql-bubble .ql-toolbar .ql-picker-item.ql-selected .ql-stroke-miter,.ql-bubble.ql-toolbar .ql-picker-item:hover .ql-stroke,.ql-bubble .ql-toolbar .ql-picker-item:hover .ql-stroke,.ql-bubble.ql-toolbar .ql-picker-item:hover .ql-stroke-miter,.ql-bubble .ql-toolbar .ql-picker-item:hover .ql-stroke-miter,.ql-bubble.ql-toolbar .ql-picker-label.ql-active .ql-stroke,.ql-bubble .ql-toolbar .ql-picker-label.ql-active .ql-stroke,.ql-bubble.ql-toolbar .ql-picker-label.ql-active .ql-stroke-miter,.ql-bubble .ql-toolbar .ql-picker-label.ql-active .ql-stroke-miter,.ql-bubble.ql-toolbar .ql-picker-label:hover .ql-stroke,.ql-bubble .ql-toolbar .ql-picker-label:hover .ql-stroke,.ql-bubble.ql-toolbar .ql-picker-label:hover .ql-stroke-miter,.ql-bubble .ql-toolbar .ql-picker-label:hover .ql-stroke-miter,.ql-bubble.ql-toolbar button.ql-active .ql-stroke,.ql-bubble .ql-toolbar button.ql-active .ql-stroke,.ql-bubble.ql-toolbar button.ql-active .ql-stroke-miter,.ql-bubble .ql-toolbar button.ql-active .ql-stroke-miter,.ql-bubble.ql-toolbar button:focus .ql-stroke,.ql-bubble .ql-toolbar button:focus .ql-stroke,.ql-bubble.ql-toolbar button:focus .ql-stroke-miter,.ql-bubble .ql-toolbar button:focus .ql-stroke-miter,.ql-bubble.ql-toolbar button:hover .ql-stroke,.ql-bubble .ql-toolbar button:hover .ql-stroke,.ql-bubble.ql-toolbar button:hover .ql-stroke-miter,.ql-bubble .ql-toolbar button:hover .ql-stroke-miter{stroke:#fff}@media (pointer:coarse){.ql-bubble.ql-toolbar button:hover:not(.ql-active),.ql-bubble .ql-toolbar button:hover:not(.ql-active){color:#ccc}.ql-bubble.ql-toolbar button:hover:not(.ql-active) .ql-fill,.ql-bubble .ql-toolbar button:hover:not(.ql-active) .ql-fill,.ql-bubble.ql-toolbar button:hover:not(.ql-active) .ql-stroke.ql-fill,.ql-bubble .ql-toolbar button:hover:not(.ql-active) .ql-stroke.ql-fill{fill:#ccc}.ql-bubble.ql-toolbar button:hover:not(.ql-active) .ql-stroke,.ql-bubble .ql-toolbar button:hover:not(.ql-active) .ql-stroke,.ql-bubble.ql-toolbar button:hover:not(.ql-active) .ql-stroke-miter,.ql-bubble .ql-toolbar button:hover:not(.ql-active) .ql-stroke-miter{stroke:#ccc}}.ql-bubble,.ql-bubble *{box-sizing:border-box}.ql-bubble .ql-hidden{display:none}.ql-bubble .ql-out-bottom,.ql-bubble .ql-out-top{visibility:hidden}.ql-bubble .ql-tooltip{position:absolute;transform:translateY(10px)}.ql-bubble .ql-tooltip a{cursor:pointer;text-decoration:none}.ql-bubble .ql-tooltip.ql-flip{transform:translateY(-10px)}.ql-bubble .ql-formats{display:inline-block;vertical-align:middle}.ql-bubble .ql-formats:after{clear:both;content:"";display:table}.ql-bubble .ql-stroke{fill:none;stroke:#ccc;stroke-linecap:round;stroke-linejoin:round;stroke-width:2}.ql-bubble .ql-stroke-miter{fill:none;stroke:#ccc;stroke-miterlimit:10;stroke-width:2}.ql-bubble .ql-fill,.ql-bubble .ql-stroke.ql-fill{fill:#ccc}.ql-bubble .ql-empty{fill:none}.ql-bubble .ql-even{fill-rule:evenodd}.ql-bubble .ql-stroke.ql-thin,.ql-bubble .ql-thin{stroke-width:1}.ql-bubble .ql-transparent{opacity:.4}.ql-bubble .ql-direction svg:last-child{display:none}.ql-bubble .ql-direction.ql-active svg:last-child{display:inline}.ql-bubble .ql-direction.ql-active svg:first-child{display:none}.ql-bubble .ql-editor h1{font-size:2em}.ql-bubble .ql-editor h2{font-size:1.5em}.ql-bubble .ql-editor h3{font-size:1.17em}.ql-bubble .ql-editor h4{font-size:1em}.ql-bubble .ql-editor h5{font-size:.83em}.ql-bubble .ql-editor h6{font-size:.67em}.ql-bubble .ql-editor a{text-decoration:underline}.ql-bubble .ql-editor blockquote{border-left:4px solid #ccc;margin-bottom:5px;margin-top:5px;padding-left:16px}.ql-bubble .ql-editor code,.ql-bubble .ql-editor pre{background-color:#f0f0f0;border-radius:3px}.ql-bubble .ql-editor pre{white-space:pre-wrap;margin-bottom:5px;margin-top:5px;padding:5px 10px}.ql-bubble .ql-editor code{font-size:85%;padding:2px 4px}.ql-bubble .ql-editor pre.ql-syntax{background-color:#23241f;color:#f8f8f2;overflow:visible}.ql-bubble .ql-editor img{max-width:100%}.ql-bubble .ql-picker{color:#ccc;display:inline-block;float:left;font-size:14px;font-weight:500;height:24px;position:relative;vertical-align:middle}.ql-bubble .ql-picker-label{cursor:pointer;display:inline-block;height:100%;padding-left:8px;padding-right:2px;position:relative;width:100%}.ql-bubble .ql-picker-label:before{display:inline-block;line-height:22px}.ql-bubble .ql-picker-options{background-color:#444;display:none;min-width:100%;padding:4px 8px;position:absolute;white-space:nowrap}.ql-bubble .ql-picker-options .ql-picker-item{cursor:pointer;display:block;padding-bottom:5px;padding-top:5px}.ql-bubble .ql-picker.ql-expanded .ql-picker-label{color:#777;z-index:2}.ql-bubble .ql-picker.ql-expanded .ql-picker-label .ql-fill{fill:#777}.ql-bubble .ql-picker.ql-expanded .ql-picker-label .ql-stroke{stroke:#777}.ql-bubble .ql-picker.ql-expanded .ql-picker-options{display:block;margin-top:-1px;top:100%;z-index:1}.ql-bubble .ql-color-picker,.ql-bubble .ql-icon-picker{width:28px}.ql-bubble .ql-color-picker .ql-picker-label,.ql-bubble .ql-icon-picker .ql-picker-label{padding:2px 4px}.ql-bubble .ql-color-picker .ql-picker-label svg,.ql-bubble .ql-icon-picker .ql-picker-label svg{right:4px}.ql-bubble .ql-icon-picker .ql-picker-options{padding:4px 0}.ql-bubble .ql-icon-picker .ql-picker-item{height:24px;width:24px;padding:2px 4px}.ql-bubble .ql-color-picker .ql-picker-options{padding:3px 5px;width:152px}.ql-bubble .ql-color-picker .ql-picker-item{border:1px solid transparent;float:left;height:16px;margin:2px;padding:0;width:16px}.ql-bubble .ql-picker:not(.ql-color-picker):not(.ql-icon-picker) svg{position:absolute;margin-top:-9px;right:0;top:50%;width:18px}.ql-bubble .ql-picker.ql-font .ql-picker-item[data-label]:not([data-label=""]):before,.ql-bubble .ql-picker.ql-font .ql-picker-label[data-label]:not([data-label=""]):before,.ql-bubble .ql-picker.ql-header .ql-picker-item[data-label]:not([data-label=""]):before,.ql-bubble .ql-picker.ql-header .ql-picker-label[data-label]:not([data-label=""]):before,.ql-bubble .ql-picker.ql-size .ql-picker-item[data-label]:not([data-label=""]):before,.ql-bubble .ql-picker.ql-size .ql-picker-label[data-label]:not([data-label=""]):before{content:attr(data-label)}.ql-bubble .ql-picker.ql-header{width:98px}.ql-bubble .ql-picker.ql-header .ql-picker-item:before,.ql-bubble .ql-picker.ql-header .ql-picker-label:before{content:"Normal"}.ql-bubble .ql-picker.ql-header .ql-picker-item[data-value="1"]:before,.ql-bubble .ql-picker.ql-header .ql-picker-label[data-value="1"]:before{content:"Heading 1"}.ql-bubble .ql-picker.ql-header .ql-picker-item[data-value="2"]:before,.ql-bubble .ql-picker.ql-header .ql-picker-label[data-value="2"]:before{content:"Heading 2"}.ql-bubble .ql-picker.ql-header .ql-picker-item[data-value="3"]:before,.ql-bubble .ql-picker.ql-header .ql-picker-label[data-value="3"]:before{content:"Heading 3"}.ql-bubble .ql-picker.ql-header .ql-picker-item[data-value="4"]:before,.ql-bubble .ql-picker.ql-header .ql-picker-label[data-value="4"]:before{content:"Heading 4"}.ql-bubble .ql-picker.ql-header .ql-picker-item[data-value="5"]:before,.ql-bubble .ql-picker.ql-header .ql-picker-label[data-value="5"]:before{content:"Heading 5"}.ql-bubble .ql-picker.ql-header .ql-picker-item[data-value="6"]:before,.ql-bubble .ql-picker.ql-header .ql-picker-label[data-value="6"]:before{content:"Heading 6"}.ql-bubble .ql-picker.ql-header .ql-picker-item[data-value="1"]:before{font-size:2em}.ql-bubble .ql-picker.ql-header .ql-picker-item[data-value="2"]:before{font-size:1.5em}.ql-bubble .ql-picker.ql-header .ql-picker-item[data-value="3"]:before{font-size:1.17em}.ql-bubble .ql-picker.ql-header .ql-picker-item[data-value="4"]:before{font-size:1em}.ql-bubble .ql-picker.ql-header .ql-picker-item[data-value="5"]:before{font-size:.83em}.ql-bubble .ql-picker.ql-header .ql-picker-item[data-value="6"]:before{font-size:.67em}.ql-bubble .ql-picker.ql-font{width:108px}.ql-bubble .ql-picker.ql-font .ql-picker-item:before,.ql-bubble .ql-picker.ql-font .ql-picker-label:before{content:"Sans Serif"}.ql-bubble .ql-picker.ql-font .ql-picker-item[data-value=serif]:before,.ql-bubble .ql-picker.ql-font .ql-picker-label[data-value=serif]:before{content:"Serif"}.ql-bubble .ql-picker.ql-font .ql-picker-item[data-value=monospace]:before,.ql-bubble .ql-picker.ql-font .ql-picker-label[data-value=monospace]:before{content:"Monospace"}.ql-bubble .ql-picker.ql-font .ql-picker-item[data-value=serif]:before{font-family:Georgia,Times New Roman,serif}.ql-bubble .ql-picker.ql-font .ql-picker-item[data-value=monospace]:before{font-family:Monaco,Courier New,monospace}.ql-bubble .ql-picker.ql-size{width:98px}.ql-bubble .ql-picker.ql-size .ql-picker-item:before,.ql-bubble .ql-picker.ql-size .ql-picker-label:before{content:"Normal"}.ql-bubble .ql-picker.ql-size .ql-picker-item[data-value=small]:before,.ql-bubble .ql-picker.ql-size .ql-picker-label[data-value=small]:before{content:"Small"}.ql-bubble .ql-picker.ql-size .ql-picker-item[data-value=large]:before,.ql-bubble .ql-picker.ql-size .ql-picker-label[data-value=large]:before{content:"Large"}.ql-bubble .ql-picker.ql-size .ql-picker-item[data-value=huge]:before,.ql-bubble .ql-picker.ql-size .ql-picker-label[data-value=huge]:before{content:"Huge"}.ql-bubble .ql-picker.ql-size .ql-picker-item[data-value=small]:before{font-size:10px}.ql-bubble .ql-picker.ql-size .ql-picker-item[data-value=large]:before{font-size:18px}.ql-bubble .ql-picker.ql-size .ql-picker-item[data-value=huge]:before{font-size:32px}.ql-bubble .ql-color-picker.ql-background .ql-picker-item{background-color:#fff}.ql-bubble .ql-color-picker.ql-color .ql-picker-item{background-color:#000}.ql-bubble .ql-toolbar .ql-formats{margin:8px 12px 8px 0}.ql-bubble .ql-toolbar .ql-formats:first-child{margin-left:12px}.ql-bubble .ql-color-picker svg{margin:1px}.ql-bubble .ql-color-picker .ql-picker-item.ql-selected,.ql-bubble .ql-color-picker .ql-picker-item:hover{border-color:#fff}.ql-bubble .ql-tooltip{background-color:#444;border-radius:25px;color:#fff}.ql-bubble .ql-tooltip-arrow{border-left:6px solid transparent;border-right:6px solid transparent;content:" ";display:block;left:50%;margin-left:-6px;position:absolute}.ql-bubble .ql-tooltip:not(.ql-flip) .ql-tooltip-arrow{border-bottom:6px solid #444;top:-6px}.ql-bubble .ql-tooltip.ql-flip .ql-tooltip-arrow{border-top:6px solid #444;bottom:-6px}.ql-bubble .ql-tooltip.ql-editing .ql-tooltip-editor{display:block}.ql-bubble .ql-tooltip.ql-editing .ql-formats{visibility:hidden}.ql-bubble .ql-tooltip-editor{display:none}.ql-bubble .ql-tooltip-editor input[type=text]{background:transparent;border:none;color:#fff;font-size:13px;height:100%;outline:none;padding:10px 20px;position:absolute;width:100%}.ql-bubble .ql-tooltip-editor a{top:10px;position:absolute;right:20px}.ql-bubble .ql-tooltip-editor a:before{color:#ccc;content:"\\D7";font-size:16px;font-weight:700}.ql-container.ql-bubble:not(.ql-disabled) a{position:relative;white-space:nowrap}.ql-container.ql-bubble:not(.ql-disabled) a:before{background-color:#444;border-radius:15px;top:-5px;font-size:12px;color:#fff;content:attr(href);font-weight:400;overflow:hidden;padding:5px 15px;text-decoration:none;z-index:1}.ql-container.ql-bubble:not(.ql-disabled) a:after{border-top:6px solid #444;border-left:6px solid transparent;border-right:6px solid transparent;top:0;content:" ";height:0;width:0}.ql-container.ql-bubble:not(.ql-disabled) a:after,.ql-container.ql-bubble:not(.ql-disabled) a:before{left:0;margin-left:50%;position:absolute;transform:translate(-50%,-100%);transition:visibility 0s ease .2s;visibility:hidden}.ql-container.ql-bubble:not(.ql-disabled) a:hover:after,.ql-container.ql-bubble:not(.ql-disabled) a:hover:before{visibility:visible}',""])},function(e,t,n){var i=n(60);"string"==typeof i&&(i=[[e.i,i,""]]);var r={};r.transform=void 0;n(4)(i,r);i.locals&&(e.exports=i.locals)},function(e,t,n){t=e.exports=n(0)(void 0),t.push([e.i,'/*!\n * Quill Editor v1.3.2\n * https://quilljs.com/\n * Copyright (c) 2014, Jason Chen\n * Copyright (c) 2013, salesforce.com\n */.ql-container{box-sizing:border-box;font-family:Helvetica,Arial,sans-serif;font-size:13px;height:100%;margin:0;position:relative}.ql-container.ql-disabled .ql-tooltip{visibility:hidden}.ql-container.ql-disabled .ql-editor ul[data-checked]>li:before{pointer-events:none}.ql-clipboard{left:-100000px;height:1px;overflow-y:hidden;position:absolute;top:50%}.ql-clipboard p{margin:0;padding:0}.ql-editor{box-sizing:border-box;line-height:1.42;height:100%;outline:none;overflow-y:auto;padding:12px 15px;tab-size:4;-moz-tab-size:4;text-align:left;white-space:pre-wrap;word-wrap:break-word}.ql-editor>*{cursor:text}.ql-editor blockquote,.ql-editor h1,.ql-editor h2,.ql-editor h3,.ql-editor h4,.ql-editor h5,.ql-editor h6,.ql-editor ol,.ql-editor p,.ql-editor pre,.ql-editor ul{margin:0;padding:0;counter-reset:list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9}.ql-editor ol,.ql-editor ul{padding-left:1.5em}.ql-editor ol>li,.ql-editor ul>li{list-style-type:none}.ql-editor ul>li:before{content:"\\2022"}.ql-editor ul[data-checked=false],.ql-editor ul[data-checked=true]{pointer-events:none}.ql-editor ul[data-checked=false]>li *,.ql-editor ul[data-checked=true]>li *{pointer-events:all}.ql-editor ul[data-checked=false]>li:before,.ql-editor ul[data-checked=true]>li:before{color:#777;cursor:pointer;pointer-events:all}.ql-editor ul[data-checked=true]>li:before{content:"\\2611"}.ql-editor ul[data-checked=false]>li:before{content:"\\2610"}.ql-editor li:before{display:inline-block;white-space:nowrap;width:1.2em}.ql-editor li:not(.ql-direction-rtl):before{margin-left:-1.5em;margin-right:.3em;text-align:right}.ql-editor li.ql-direction-rtl:before{margin-left:.3em;margin-right:-1.5em}.ql-editor ol li:not(.ql-direction-rtl),.ql-editor ul li:not(.ql-direction-rtl){padding-left:1.5em}.ql-editor ol li.ql-direction-rtl,.ql-editor ul li.ql-direction-rtl{padding-right:1.5em}.ql-editor ol li{counter-reset:list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;counter-increment:list-0}.ql-editor ol li:before{content:counter(list-0,decimal) ". "}.ql-editor ol li.ql-indent-1{counter-increment:list-1}.ql-editor ol li.ql-indent-1:before{content:counter(list-1,lower-alpha) ". "}.ql-editor ol li.ql-indent-1{counter-reset:list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9}.ql-editor ol li.ql-indent-2{counter-increment:list-2}.ql-editor ol li.ql-indent-2:before{content:counter(list-2,lower-roman) ". "}.ql-editor ol li.ql-indent-2{counter-reset:list-3 list-4 list-5 list-6 list-7 list-8 list-9}.ql-editor ol li.ql-indent-3{counter-increment:list-3}.ql-editor ol li.ql-indent-3:before{content:counter(list-3,decimal) ". "}.ql-editor ol li.ql-indent-3{counter-reset:list-4 list-5 list-6 list-7 list-8 list-9}.ql-editor ol li.ql-indent-4{counter-increment:list-4}.ql-editor ol li.ql-indent-4:before{content:counter(list-4,lower-alpha) ". "}.ql-editor ol li.ql-indent-4{counter-reset:list-5 list-6 list-7 list-8 list-9}.ql-editor ol li.ql-indent-5{counter-increment:list-5}.ql-editor ol li.ql-indent-5:before{content:counter(list-5,lower-roman) ". "}.ql-editor ol li.ql-indent-5{counter-reset:list-6 list-7 list-8 list-9}.ql-editor ol li.ql-indent-6{counter-increment:list-6}.ql-editor ol li.ql-indent-6:before{content:counter(list-6,decimal) ". "}.ql-editor ol li.ql-indent-6{counter-reset:list-7 list-8 list-9}.ql-editor ol li.ql-indent-7{counter-increment:list-7}.ql-editor ol li.ql-indent-7:before{content:counter(list-7,lower-alpha) ". "}.ql-editor ol li.ql-indent-7{counter-reset:list-8 list-9}.ql-editor ol li.ql-indent-8{counter-increment:list-8}.ql-editor ol li.ql-indent-8:before{content:counter(list-8,lower-roman) ". "}.ql-editor ol li.ql-indent-8{counter-reset:list-9}.ql-editor ol li.ql-indent-9{counter-increment:list-9}.ql-editor ol li.ql-indent-9:before{content:counter(list-9,decimal) ". "}.ql-editor .ql-indent-1:not(.ql-direction-rtl){padding-left:3em}.ql-editor li.ql-indent-1:not(.ql-direction-rtl){padding-left:4.5em}.ql-editor .ql-indent-1.ql-direction-rtl.ql-align-right{padding-right:3em}.ql-editor li.ql-indent-1.ql-direction-rtl.ql-align-right{padding-right:4.5em}.ql-editor .ql-indent-2:not(.ql-direction-rtl){padding-left:6em}.ql-editor li.ql-indent-2:not(.ql-direction-rtl){padding-left:7.5em}.ql-editor .ql-indent-2.ql-direction-rtl.ql-align-right{padding-right:6em}.ql-editor li.ql-indent-2.ql-direction-rtl.ql-align-right{padding-right:7.5em}.ql-editor .ql-indent-3:not(.ql-direction-rtl){padding-left:9em}.ql-editor li.ql-indent-3:not(.ql-direction-rtl){padding-left:10.5em}.ql-editor .ql-indent-3.ql-direction-rtl.ql-align-right{padding-right:9em}.ql-editor li.ql-indent-3.ql-direction-rtl.ql-align-right{padding-right:10.5em}.ql-editor .ql-indent-4:not(.ql-direction-rtl){padding-left:12em}.ql-editor li.ql-indent-4:not(.ql-direction-rtl){padding-left:13.5em}.ql-editor .ql-indent-4.ql-direction-rtl.ql-align-right{padding-right:12em}.ql-editor li.ql-indent-4.ql-direction-rtl.ql-align-right{padding-right:13.5em}.ql-editor .ql-indent-5:not(.ql-direction-rtl){padding-left:15em}.ql-editor li.ql-indent-5:not(.ql-direction-rtl){padding-left:16.5em}.ql-editor .ql-indent-5.ql-direction-rtl.ql-align-right{padding-right:15em}.ql-editor li.ql-indent-5.ql-direction-rtl.ql-align-right{padding-right:16.5em}.ql-editor .ql-indent-6:not(.ql-direction-rtl){padding-left:18em}.ql-editor li.ql-indent-6:not(.ql-direction-rtl){padding-left:19.5em}.ql-editor .ql-indent-6.ql-direction-rtl.ql-align-right{padding-right:18em}.ql-editor li.ql-indent-6.ql-direction-rtl.ql-align-right{padding-right:19.5em}.ql-editor .ql-indent-7:not(.ql-direction-rtl){padding-left:21em}.ql-editor li.ql-indent-7:not(.ql-direction-rtl){padding-left:22.5em}.ql-editor .ql-indent-7.ql-direction-rtl.ql-align-right{padding-right:21em}.ql-editor li.ql-indent-7.ql-direction-rtl.ql-align-right{padding-right:22.5em}.ql-editor .ql-indent-8:not(.ql-direction-rtl){padding-left:24em}.ql-editor li.ql-indent-8:not(.ql-direction-rtl){padding-left:25.5em}.ql-editor .ql-indent-8.ql-direction-rtl.ql-align-right{padding-right:24em}.ql-editor li.ql-indent-8.ql-direction-rtl.ql-align-right{padding-right:25.5em}.ql-editor .ql-indent-9:not(.ql-direction-rtl){padding-left:27em}.ql-editor li.ql-indent-9:not(.ql-direction-rtl){padding-left:28.5em}.ql-editor .ql-indent-9.ql-direction-rtl.ql-align-right{padding-right:27em}.ql-editor li.ql-indent-9.ql-direction-rtl.ql-align-right{padding-right:28.5em}.ql-editor .ql-video{display:block;max-width:100%}.ql-editor .ql-video.ql-align-center{margin:0 auto}.ql-editor .ql-video.ql-align-right{margin:0 0 0 auto}.ql-editor .ql-bg-black{background-color:#000}.ql-editor .ql-bg-red{background-color:#e60000}.ql-editor .ql-bg-orange{background-color:#f90}.ql-editor .ql-bg-yellow{background-color:#ff0}.ql-editor .ql-bg-green{background-color:#008a00}.ql-editor .ql-bg-blue{background-color:#06c}.ql-editor .ql-bg-purple{background-color:#93f}.ql-editor .ql-color-white{color:#fff}.ql-editor .ql-color-red{color:#e60000}.ql-editor .ql-color-orange{color:#f90}.ql-editor .ql-color-yellow{color:#ff0}.ql-editor .ql-color-green{color:#008a00}.ql-editor .ql-color-blue{color:#06c}.ql-editor .ql-color-purple{color:#93f}.ql-editor .ql-font-serif{font-family:Georgia,Times New Roman,serif}.ql-editor .ql-font-monospace{font-family:Monaco,Courier New,monospace}.ql-editor .ql-size-small{font-size:.75em}.ql-editor .ql-size-large{font-size:1.5em}.ql-editor .ql-size-huge{font-size:2.5em}.ql-editor .ql-direction-rtl{direction:rtl;text-align:inherit}.ql-editor .ql-align-center{text-align:center}.ql-editor .ql-align-justify{text-align:justify}.ql-editor .ql-align-right{text-align:right}.ql-editor .ql-embed-selected{border:2px solid #777;user-select:none}.ql-editor.ql-blank:before{color:rgba(0,0,0,.6);content:attr(data-placeholder);font-style:italic;left:15px;pointer-events:none;position:absolute;right:15px}',""])},function(e,t){var n=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"quill-editor"},[e._t("toolbar"),e._v(" "),n("div",{ref:"editor"})],2)},i=[];e.exports={render:n,staticRenderFns:i}},function(e,t,n){var i=n(63);"string"==typeof i&&(i=[[e.i,i,""]]);var r={};r.transform=void 0;n(4)(i,r);i.locals&&(e.exports=i.locals)},function(e,t,n){t=e.exports=n(0)(void 0),t.push([e.i,'.el-checkbox,.el-checkbox__input{cursor:pointer;display:inline-block;position:relative}.el-checkbox,.el-checkbox-button__inner{-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none;white-space:nowrap}.el-table--hidden,.el-table .hidden-columns,.el-table td.is-hidden>*,.el-table th.is-hidden>*{visibility:hidden}.el-checkbox{color:#1f2d3d}.el-checkbox+.el-checkbox{margin-left:15px}.el-checkbox__input{white-space:nowrap;outline:0;line-height:1;vertical-align:middle}.el-checkbox__input.is-indeterminate .el-checkbox__inner{background-color:#20a0ff;border-color:#0190fe}.el-checkbox__input.is-indeterminate .el-checkbox__inner:before{content:"";position:absolute;display:block;border:1px solid #fff;margin-top:-1px;left:3px;right:3px;top:50%}.el-checkbox__input.is-indeterminate .el-checkbox__inner:after{display:none}.el-checkbox__input.is-focus .el-checkbox__inner{border-color:#20a0ff}.el-checkbox__input.is-checked .el-checkbox__inner{background-color:#20a0ff;border-color:#0190fe}.el-checkbox__input.is-checked .el-checkbox__inner:after{-ms-transform:rotate(45deg) scaleY(1);transform:rotate(45deg) scaleY(1)}.el-checkbox__input.is-disabled .el-checkbox__inner{background-color:#eef1f6;border-color:#d1dbe5;cursor:not-allowed}.el-checkbox__input.is-disabled .el-checkbox__inner:after{cursor:not-allowed;border-color:#eef1f6}.el-checkbox__input.is-disabled .el-checkbox__inner+.el-checkbox__label{cursor:not-allowed}.el-checkbox__input.is-disabled.is-checked .el-checkbox__inner{background-color:#d1dbe5;border-color:#d1dbe5}.el-checkbox__input.is-disabled.is-checked .el-checkbox__inner:after{border-color:#fff}.el-checkbox__input.is-disabled.is-indeterminate .el-checkbox__inner{background-color:#d1dbe5;border-color:#d1dbe5}.el-checkbox__input.is-disabled.is-indeterminate .el-checkbox__inner:before{border-color:#fff}.el-checkbox__input.is-disabled+.el-checkbox__label{color:#bbb;cursor:not-allowed}.el-checkbox__inner{display:inline-block;position:relative;border:1px solid #bfcbd9;border-radius:4px;box-sizing:border-box;width:18px;height:18px;background-color:#fff;z-index:1;transition:border-color .25s cubic-bezier(.71,-.46,.29,1.46),background-color .25s cubic-bezier(.71,-.46,.29,1.46)}.el-checkbox__inner:hover{border-color:#20a0ff}.el-checkbox__inner:after{box-sizing:content-box;content:"";border:2px solid #fff;border-left:0;border-top:0;height:8px;left:5px;position:absolute;top:1px;-ms-transform:rotate(45deg) scaleY(0);transform:rotate(45deg) scaleY(0);width:4px;transition:transform .15s cubic-bezier(.71,-.46,.88,.6) .05s;-ms-transform-origin:center;transform-origin:center}.el-table,.el-table td,.el-table th,.el-tag{box-sizing:border-box}.el-checkbox__original{opacity:0;outline:0;position:absolute;margin:0;width:0;height:0;left:-999px}.el-checkbox-button,.el-checkbox-button__inner{position:relative;display:inline-block}.el-checkbox__label{font-size:14px;padding-left:5px}.el-checkbox-button.is-checked .el-checkbox-button__inner{color:#fff;background-color:#20a0ff;border-color:#20a0ff;box-shadow:-1px 0 0 0 #20a0ff}.el-checkbox-button.is-disabled .el-checkbox-button__inner{color:#bfcbd9;cursor:not-allowed;background-image:none;background-color:#eef1f6;border-color:#d1dbe5;box-shadow:none}.el-checkbox-button.is-focus .el-checkbox-button__inner{border-color:#20a0ff}.el-checkbox-button:first-child .el-checkbox-button__inner{border-left:1px solid #bfcbd9;border-radius:4px 0 0 4px;box-shadow:none!important}.el-checkbox-button:last-child .el-checkbox-button__inner{border-radius:0 4px 4px 0}.el-checkbox-button__inner{line-height:1;vertical-align:middle;background:#fff;border:1px solid #bfcbd9;border-left:0;color:#1f2d3d;-webkit-appearance:none;text-align:center;box-sizing:border-box;outline:0;margin:0;cursor:pointer;transition:all .3s cubic-bezier(.645,.045,.355,1);padding:10px 15px;font-size:14px;border-radius:0}.el-checkbox-button__inner:hover{color:#20a0ff}.el-checkbox-button__inner [class*=el-icon-]{line-height:.9}.el-checkbox-button__inner [class*=el-icon-]+span{margin-left:5px}.el-checkbox-button__original{opacity:0;outline:0;position:absolute;margin:0;visibility:hidden;left:-999px}.el-checkbox-button--large .el-checkbox-button__inner{padding:11px 19px;font-size:16px;border-radius:0}.el-checkbox-button--small .el-checkbox-button__inner{padding:7px 9px;font-size:12px;border-radius:0}.el-checkbox-button--mini .el-checkbox-button__inner{padding:4px;font-size:12px;border-radius:0}.el-tag{background-color:#8391a5;display:inline-block;padding:0 5px;height:24px;line-height:22px;font-size:12px;color:#fff;border-radius:4px;border:1px solid transparent;white-space:nowrap}.el-tag .el-icon-close{border-radius:50%;text-align:center;position:relative;cursor:pointer;font-size:12px;-ms-transform:scale(.75);transform:scale(.75);height:18px;width:18px;line-height:18px;vertical-align:middle;top:-1px;right:-2px}.el-tag .el-icon-close:hover{background-color:#fff;color:#8391a5}.el-tag--gray{background-color:#e4e8f1;border-color:#e4e8f1;color:#48576a}.el-tag--gray .el-tag__close:hover{background-color:#48576a;color:#fff}.el-tag--gray.is-hit{border-color:#48576a}.el-tag--primary{background-color:rgba(32,160,255,.1);border-color:rgba(32,160,255,.2);color:#20a0ff}.el-tag--primary .el-tag__close:hover{background-color:#20a0ff;color:#fff}.el-tag--primary.is-hit{border-color:#20a0ff}.el-tag--success{background-color:rgba(18,206,102,.1);border-color:rgba(18,206,102,.2);color:#13ce66}.el-tag--success .el-tag__close:hover{background-color:#13ce66;color:#fff}.el-tag--success.is-hit{border-color:#13ce66}.el-tag--warning{background-color:rgba(247,186,41,.1);border-color:rgba(247,186,41,.2);color:#f7ba2a}.el-tag--warning .el-tag__close:hover{background-color:#f7ba2a;color:#fff}.el-tag--warning.is-hit{border-color:#f7ba2a}.el-tag--danger{background-color:rgba(255,73,73,.1);border-color:rgba(255,73,73,.2);color:#ff4949}.el-tag--danger .el-tag__close:hover{background-color:#ff4949;color:#fff}.el-tag--danger.is-hit{border-color:#ff4949}.el-table{position:relative;overflow:hidden;width:100%;max-width:100%;background-color:#fff;border:1px solid #dfe6ec;font-size:14px;color:#1f2d3d}.el-table .el-tooltip.cell{white-space:nowrap;min-width:50px}.el-table td,.el-table th{height:40px;min-width:0;text-overflow:ellipsis;vertical-align:middle;position:relative}.el-table:after,.el-table:before{content:"";position:absolute;background-color:#dfe6ec;z-index:1}.el-table td.is-right,.el-table th.is-right{text-align:right}.el-table td.is-left,.el-table th.is-left{text-align:left}.el-table td.is-center,.el-table th.is-center{text-align:center}.el-table td,.el-table th.is-leaf{border-bottom:1px solid #dfe6ec}.el-table td.gutter,.el-table th.gutter{width:15px;border-right-width:0;border-bottom-width:0;padding:0}.el-table .cell,.el-table th>div{box-sizing:border-box;text-overflow:ellipsis;padding-left:18px;padding-right:18px}.el-table:before{left:0;bottom:0;width:100%;height:1px}.el-table:after{top:0;right:0;width:1px;height:100%}.el-table .caret-wrapper,.el-table th>.cell{position:relative;vertical-align:middle;display:inline-block}.el-table th{white-space:nowrap;overflow:hidden;background-color:#eef1f6;text-align:left}.el-table th.is-sortable{cursor:pointer}.el-table th>div{display:inline-block;line-height:40px;overflow:hidden;white-space:nowrap}.el-table td>div{box-sizing:border-box}.el-table th.required>div:before{display:inline-block;content:"";width:8px;height:8px;border-radius:50%;background:#ff4d51;margin-right:5px;vertical-align:middle}.el-table th>.cell{word-wrap:normal;text-overflow:ellipsis;line-height:30px;width:100%;box-sizing:border-box}.el-table th>.cell.highlight{color:#20a0ff}.el-table .caret-wrapper{cursor:pointer;margin-left:5px;margin-top:-2px;width:16px;height:30px;overflow:visible;overflow:initial}.el-table .cell,.el-table__footer-wrapper,.el-table__header-wrapper{overflow:hidden}.el-table .sort-caret{display:inline-block;width:0;height:0;border:0;content:"";position:absolute;left:3px;z-index:2}.el-table .sort-caret.ascending,.el-table .sort-caret.descending{border-right:5px solid transparent;border-left:5px solid transparent}.el-table .sort-caret.ascending{top:9px;border-top:none;border-bottom:5px solid #97a8be}.el-table .sort-caret.descending{bottom:9px;border-top:5px solid #97a8be;border-bottom:none}.el-table .ascending .sort-caret.ascending{border-bottom-color:#48576a}.el-table .descending .sort-caret.descending{border-top-color:#48576a}.el-table td.gutter{width:0}.el-table .cell{white-space:normal;word-break:break-all;line-height:24px}.el-table tr input[type=checkbox]{margin:0}.el-table tr{background-color:#fff}.el-table .hidden-columns{position:absolute;z-index:-1}.el-table__empty-block{position:relative;min-height:60px;text-align:center;width:100%;height:100%}.el-table__empty-text{position:absolute;left:50%;top:50%;-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%);color:#5e7382}.el-table__expand-column .cell{padding:0;text-align:center}.el-table__expand-icon{position:relative;cursor:pointer;color:#666;font-size:12px;transition:transform .2s ease-in-out;height:40px}.el-table__expand-icon>.el-icon{position:absolute;left:50%;top:50%;margin-left:-5px;margin-top:-5px}.el-table__expand-icon--expanded{-ms-transform:rotate(90deg);transform:rotate(90deg)}.el-table__expanded-cell{padding:20px 50px;background-color:#fbfdff;box-shadow:inset 0 2px 0 #f4f4f4}.el-table__expanded-cell:hover{background-color:#fbfdff!important}.el-table--fit{border-right:0;border-bottom:0}.el-table--border th,.el-table__fixed-right-patch{border-bottom:1px solid #dfe6ec}.el-table--fit td.gutter,.el-table--fit th.gutter{border-right-width:1px}.el-table--border td,.el-table--border th{border-right:1px solid #dfe6ec}.el-table__fixed,.el-table__fixed-right{position:absolute;top:0;left:0;box-shadow:1px 0 8px #d3d4d6;overflow-x:hidden}.el-table__fixed-right:before,.el-table__fixed:before{content:"";position:absolute;left:0;bottom:0;width:100%;height:1px;background-color:#dfe6ec;z-index:4}.el-table__fixed-right-patch{position:absolute;top:-1px;right:0;background-color:#eef1f6}.el-table__fixed-right{top:0;left:auto;right:0;box-shadow:-1px 0 8px #d3d4d6}.el-table__fixed-right .el-table__fixed-body-wrapper,.el-table__fixed-right .el-table__fixed-footer-wrapper,.el-table__fixed-right .el-table__fixed-header-wrapper{left:auto;right:0}.el-table__fixed-header-wrapper{position:absolute;left:0;top:0;z-index:3}.el-table__fixed-header-wrapper thead div{background-color:#eef1f6;color:#1f2d3d}.el-table__fixed-footer-wrapper{position:absolute;left:0;bottom:0;z-index:3}.el-table__fixed-footer-wrapper tbody td{border-top:1px solid #dfe6ec;background-color:#fbfdff;color:#1f2d3d}.el-table__fixed-body-wrapper{position:absolute;left:0;top:37px;overflow:hidden;z-index:3}.el-table__body-wrapper,.el-table__footer-wrapper,.el-table__header-wrapper{width:100%}.el-table__footer-wrapper{margin-top:-1px}.el-table__footer-wrapper td{border-top:1px solid #dfe6ec}.el-table__body,.el-table__footer,.el-table__header{table-layout:fixed}.el-table__footer-wrapper thead div,.el-table__header-wrapper thead div{background-color:#eef1f6;color:#1f2d3d}.el-table__footer-wrapper tbody td,.el-table__header-wrapper tbody td{background-color:#fbfdff;color:#1f2d3d}.el-table__body-wrapper{overflow:auto;position:relative}.el-table--striped .el-table__body tr.el-table__row--striped td{background:#fafafa;background-clip:padding-box}.el-table--striped .el-table__body tr.el-table__row--striped.current-row td{background:#edf7ff}.el-table__body tr.hover-row.current-row>td,.el-table__body tr.hover-row.el-table__row--striped.current-row>td,.el-table__body tr.hover-row.el-table__row--striped>td,.el-table__body tr.hover-row>td{background-color:#eef1f6}.el-table__body tr.current-row>td{background:#edf7ff}.el-table__column-resize-proxy{position:absolute;left:200px;top:0;bottom:0;width:0;border-left:1px solid #dfe6ec;z-index:10}.el-table__column-filter-trigger{display:inline-block;line-height:34px;margin-left:5px;cursor:pointer}.el-table__column-filter-trigger i{color:#97a8be}.el-table--enable-row-transition .el-table__body td{transition:background-color .25s ease}.el-table--enable-row-hover .el-table__body tr:hover>td{background-color:#eef1f6;background-clip:padding-box}.el-table--fluid-height .el-table__fixed,.el-table--fluid-height .el-table__fixed-right{bottom:0;overflow:hidden}',""])},function(e,t,n){var i=n(65);"string"==typeof i&&(i=[[e.i,i,""]]);var r={};r.transform=void 0;n(4)(i,r);i.locals&&(e.exports=i.locals)},function(e,t,n){t=e.exports=n(0)(void 0),t.push([e.i,'.el-popover{position:absolute;background:#fff;min-width:150px;border-radius:2px;border:1px solid #d1dbe5;padding:10px;z-index:2000;font-size:12px;box-shadow:0 2px 4px 0 rgba(0,0,0,.12),0 0 6px 0 rgba(0,0,0,.04)}.el-popover .popper__arrow,.el-popover .popper__arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.el-popover .popper__arrow{border-width:6px}.el-popover .popper__arrow:after{content:" ";border-width:6px}.el-popover[x-placement^=top]{margin-bottom:12px}.el-popover[x-placement^=top] .popper__arrow{bottom:-6px;left:50%;margin-right:3px;border-top-color:#d1dbe5;border-bottom-width:0}.el-popover[x-placement^=top] .popper__arrow:after{bottom:1px;margin-left:-6px;border-top-color:#fff;border-bottom-width:0}.el-popover[x-placement^=bottom]{margin-top:12px}.el-popover[x-placement^=bottom] .popper__arrow{top:-6px;left:50%;margin-right:3px;border-top-width:0;border-bottom-color:#d1dbe5}.el-popover[x-placement^=bottom] .popper__arrow:after{top:1px;margin-left:-6px;border-top-width:0;border-bottom-color:#fff}.el-popover[x-placement^=right]{margin-left:12px}.el-popover[x-placement^=right] .popper__arrow{top:50%;left:-6px;margin-bottom:3px;border-right-color:#d1dbe5;border-left-width:0}.el-popover[x-placement^=right] .popper__arrow:after{bottom:-6px;left:1px;border-right-color:#fff;border-left-width:0}.el-popover[x-placement^=left]{margin-right:12px}.el-popover[x-placement^=left] .popper__arrow{top:50%;right:-6px;margin-bottom:3px;border-right-width:0;border-left-color:#d1dbe5}.el-popover[x-placement^=left] .popper__arrow:after{right:1px;bottom:-6px;margin-left:-6px;border-right-width:0;border-left-color:#fff}.el-popover__title{color:#1f2d3d;font-size:13px;line-height:1;margin-bottom:9px}',""])},function(e,t,n){var i=n(67);"string"==typeof i&&(i=[[e.i,i,""]]);var r={};r.transform=void 0;n(4)(i,r);i.locals&&(e.exports=i.locals)},function(e,t,n){t=e.exports=n(0)(void 0),t.push([e.i,".el-loading-mask{position:absolute;z-index:10000;background-color:hsla(0,0%,100%,.9);margin:0;top:0;right:0;bottom:0;left:0;transition:opacity .3s}.el-loading-mask.is-fullscreen{position:fixed}.el-loading-mask.is-fullscreen .el-loading-spinner{margin-top:-25px}.el-loading-mask.is-fullscreen .el-loading-spinner .circular{width:50px;height:50px}.el-loading-spinner{top:50%;margin-top:-21px;width:100%;text-align:center;position:absolute}.el-loading-spinner .el-loading-text{color:#20a0ff;margin:3px 0;font-size:14px}.el-loading-spinner .circular{width:42px;height:42px;animation:loading-rotate 2s linear infinite}.el-loading-spinner .path{animation:loading-dash 1.5s ease-in-out infinite;stroke-dasharray:90,150;stroke-dashoffset:0;stroke-width:2;stroke:#20a0ff;stroke-linecap:round}.el-loading-fade-enter,.el-loading-fade-leave-active{opacity:0}@keyframes loading-rotate{to{transform:rotate(1turn)}}@keyframes loading-dash{0%{stroke-dasharray:1,200;stroke-dashoffset:0}50%{stroke-dasharray:90,150;stroke-dashoffset:-40px}to{stroke-dasharray:90,150;stroke-dashoffset:-120px}}",""])},function(e,t,n){var i=n(69);"string"==typeof i&&(i=[[e.i,i,""]]);var r={};r.transform=void 0;n(4)(i,r);i.locals&&(e.exports=i.locals)},function(e,t,n){t=e.exports=n(0)(void 0),t.push([e.i,".el-message{box-shadow:0 2px 4px rgba(0,0,0,.12),0 0 6px rgba(0,0,0,.04);min-width:300px;padding:10px 12px;box-sizing:border-box;border-radius:2px;position:fixed;left:50%;top:20px;-ms-transform:translateX(-50%);transform:translateX(-50%);background-color:#fff;transition:opacity .3s,transform .4s;overflow:hidden}.el-message .el-icon-circle-check{color:#13ce66}.el-message .el-icon-circle-cross{color:#ff4949}.el-message .el-icon-information{color:#50bfff}.el-message .el-icon-warning{color:#f7ba2a}.el-message__group{margin-left:38px;position:relative;height:20px;line-height:20px;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center}.el-message__group p{font-size:14px;margin:0 34px 0 0;white-space:nowrap;color:#8391a5;text-align:justify}.el-message__group.is-with-icon{margin-left:0}.el-message__img{width:40px;height:40px;position:absolute;left:0;top:0}.el-message__icon{vertical-align:middle;margin-right:8px}.el-message__closeBtn{top:3px;right:0;position:absolute;cursor:pointer;color:#bfcbd9;font-size:14px}.el-message__closeBtn:hover{color:#97a8be}.el-message-fade-enter,.el-message-fade-leave-active{opacity:0;-ms-transform:translate(-50%,-100%);transform:translate(-50%,-100%)}",""])},function(e,t,n){var i=n(71);"string"==typeof i&&(i=[[e.i,i,""]]);var r={};r.transform=void 0;n(4)(i,r);i.locals&&(e.exports=i.locals)},function(e,t,n){t=e.exports=n(0)(void 0),t.push([e.i,'.el-button,.el-input__inner{-webkit-appearance:none;line-height:1;outline:0}.el-button-group:after,.el-button-group:before{display:table;content:""}.el-button,.el-button-group,.el-input,.el-input__inner{display:inline-block}.el-button-group:after{clear:both}.v-modal-enter{animation:v-modal-in .2s ease}.v-modal-leave{animation:v-modal-out .2s ease forwards}@keyframes v-modal-in{0%{opacity:0}}@keyframes v-modal-out{to{opacity:0}}.v-modal{position:fixed;left:0;top:0;width:100%;height:100%;opacity:.5;background:#000}.el-button{white-space:nowrap;cursor:pointer;background:#fff;border:1px solid #c4c4c4;color:#1f2d3d;text-align:center;box-sizing:border-box;margin:0;-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none;padding:10px 15px;font-size:14px;border-radius:4px}.el-button+.el-button{margin-left:10px}.el-button:focus,.el-button:hover{color:#20a0ff;border-color:#20a0ff}.el-button:active{color:#1d90e6;border-color:#1d90e6;outline:0}.el-button::-moz-focus-inner{border:0}.el-button [class*=el-icon-]+span{margin-left:5px}.el-button.is-loading{position:relative;pointer-events:none}.el-button.is-loading:before{pointer-events:none;content:"";position:absolute;left:-1px;top:-1px;right:-1px;bottom:-1px;border-radius:inherit;background-color:hsla(0,0%,100%,.35)}.el-button.is-disabled,.el-button.is-disabled:focus,.el-button.is-disabled:hover{color:#bfcbd9;cursor:not-allowed;background-image:none;background-color:#eef1f6;border-color:#d1dbe5}.el-button.is-disabled.el-button--text{background-color:transparent}.el-button.is-disabled.is-plain,.el-button.is-disabled.is-plain:focus,.el-button.is-disabled.is-plain:hover{background-color:#fff;border-color:#d1dbe5;color:#bfcbd9}.el-button.is-active{color:#1d90e6;border-color:#1d90e6}.el-button.is-plain:focus,.el-button.is-plain:hover{background:#fff;border-color:#20a0ff;color:#20a0ff}.el-button.is-plain:active{background:#fff;border-color:#1d90e6;color:#1d90e6;outline:0}.el-button--primary{color:#fff;background-color:#20a0ff;border-color:#20a0ff}.el-button--primary:focus,.el-button--primary:hover{background:#4db3ff;border-color:#4db3ff;color:#fff}.el-button--primary.is-active,.el-button--primary:active{background:#1d90e6;border-color:#1d90e6;color:#fff}.el-button--primary:active{outline:0}.el-button--primary.is-plain{background:#fff;border:1px solid #bfcbd9;color:#1f2d3d}.el-button--primary.is-plain:focus,.el-button--primary.is-plain:hover{background:#fff;border-color:#20a0ff;color:#20a0ff}.el-button--primary.is-plain:active{background:#fff;border-color:#1d90e6;color:#1d90e6;outline:0}.el-button--success{color:#fff;background-color:#13ce66;border-color:#13ce66}.el-button--success:focus,.el-button--success:hover{background:#42d885;border-color:#42d885;color:#fff}.el-button--success.is-active,.el-button--success:active{background:#11b95c;border-color:#11b95c;color:#fff}.el-button--success:active{outline:0}.el-button--success.is-plain{background:#fff;border:1px solid #bfcbd9;color:#1f2d3d}.el-button--success.is-plain:focus,.el-button--success.is-plain:hover{background:#fff;border-color:#13ce66;color:#13ce66}.el-button--success.is-plain:active{background:#fff;border-color:#11b95c;color:#11b95c;outline:0}.el-button--warning{color:#fff;background-color:#f7ba2a;border-color:#f7ba2a}.el-button--warning:focus,.el-button--warning:hover{background:#f9c855;border-color:#f9c855;color:#fff}.el-button--warning.is-active,.el-button--warning:active{background:#dea726;border-color:#dea726;color:#fff}.el-button--warning:active{outline:0}.el-button--warning.is-plain{background:#fff;border:1px solid #bfcbd9;color:#1f2d3d}.el-button--warning.is-plain:focus,.el-button--warning.is-plain:hover{background:#fff;border-color:#f7ba2a;color:#f7ba2a}.el-button--warning.is-plain:active{background:#fff;border-color:#dea726;color:#dea726;outline:0}.el-button--danger{color:#fff;background-color:#ff4949;border-color:#ff4949}.el-button--danger:focus,.el-button--danger:hover{background:#ff6d6d;border-color:#ff6d6d;color:#fff}.el-button--danger.is-active,.el-button--danger:active{background:#e64242;border-color:#e64242;color:#fff}.el-button--danger:active{outline:0}.el-button--danger.is-plain{background:#fff;border:1px solid #bfcbd9;color:#1f2d3d}.el-button--danger.is-plain:focus,.el-button--danger.is-plain:hover{background:#fff;border-color:#ff4949;color:#ff4949}.el-button--danger.is-plain:active{background:#fff;border-color:#e64242;color:#e64242;outline:0}.el-button--info{color:#fff;background-color:#50bfff;border-color:#50bfff}.el-button--info:focus,.el-button--info:hover{background:#73ccff;border-color:#73ccff;color:#fff}.el-button--info.is-active,.el-button--info:active{background:#48ace6;border-color:#48ace6;color:#fff}.el-button--info:active{outline:0}.el-button--info.is-plain{background:#fff;border:1px solid #bfcbd9;color:#1f2d3d}.el-button--info.is-plain:focus,.el-button--info.is-plain:hover{background:#fff;border-color:#50bfff;color:#50bfff}.el-button--info.is-plain:active{background:#fff;border-color:#48ace6;color:#48ace6;outline:0}.el-button--large{padding:11px 19px;font-size:16px;border-radius:4px}.el-button--small{padding:7px 9px;font-size:12px;border-radius:4px}.el-button--mini{padding:4px;font-size:12px;border-radius:4px}.el-button--text{border:none;color:#20a0ff;background:0 0;padding-left:0;padding-right:0}.el-input__inner,.el-textarea__inner{box-sizing:border-box;background-image:none}.el-button--text:focus,.el-button--text:hover{color:#4db3ff}.el-button--text:active{color:#1d90e6}.el-button-group{vertical-align:middle}.el-button-group .el-button--primary:first-child{border-right-color:hsla(0,0%,100%,.5)}.el-button-group .el-button--primary:last-child{border-left-color:hsla(0,0%,100%,.5)}.el-button-group .el-button--primary:not(:first-child):not(:last-child){border-left-color:hsla(0,0%,100%,.5);border-right-color:hsla(0,0%,100%,.5)}.el-button-group .el-button--success:first-child{border-right-color:hsla(0,0%,100%,.5)}.el-button-group .el-button--success:last-child{border-left-color:hsla(0,0%,100%,.5)}.el-button-group .el-button--success:not(:first-child):not(:last-child){border-left-color:hsla(0,0%,100%,.5);border-right-color:hsla(0,0%,100%,.5)}.el-button-group .el-button--warning:first-child{border-right-color:hsla(0,0%,100%,.5)}.el-button-group .el-button--warning:last-child{border-left-color:hsla(0,0%,100%,.5)}.el-button-group .el-button--warning:not(:first-child):not(:last-child){border-left-color:hsla(0,0%,100%,.5);border-right-color:hsla(0,0%,100%,.5)}.el-button-group .el-button--danger:first-child{border-right-color:hsla(0,0%,100%,.5)}.el-button-group .el-button--danger:last-child{border-left-color:hsla(0,0%,100%,.5)}.el-button-group .el-button--danger:not(:first-child):not(:last-child){border-left-color:hsla(0,0%,100%,.5);border-right-color:hsla(0,0%,100%,.5)}.el-button-group .el-button--info:first-child{border-right-color:hsla(0,0%,100%,.5)}.el-button-group .el-button--info:last-child{border-left-color:hsla(0,0%,100%,.5)}.el-button-group .el-button--info:not(:first-child):not(:last-child){border-left-color:hsla(0,0%,100%,.5);border-right-color:hsla(0,0%,100%,.5)}.el-button-group .el-button{float:left;position:relative}.el-button-group .el-button+.el-button{margin-left:0}.el-button-group .el-button:first-child{border-top-right-radius:0;border-bottom-right-radius:0}.el-button-group .el-button:last-child{border-top-left-radius:0;border-bottom-left-radius:0}.el-button-group .el-button:not(:first-child):not(:last-child){border-radius:0}.el-button-group .el-button:not(:last-child){margin-right:-1px}.el-button-group .el-button.is-active,.el-button-group .el-button:active,.el-button-group .el-button:focus,.el-button-group .el-button:hover{z-index:1}.el-input{position:relative;font-size:14px;width:100%}.el-input-group__append .el-button,.el-input-group__append .el-input,.el-input-group__prepend .el-button,.el-input-group__prepend .el-input,.el-input__inner{font-size:inherit}.el-input.is-disabled .el-input__inner{background-color:#eef1f6;border-color:#d1dbe5;color:#bbb;cursor:not-allowed}.el-input.is-disabled .el-input__inner::-webkit-input-placeholder{color:#bfcbd9}.el-input.is-disabled .el-input__inner::-moz-placeholder{color:#bfcbd9}.el-input.is-disabled .el-input__inner:-ms-input-placeholder{color:#bfcbd9}.el-input.is-disabled .el-input__inner::placeholder{color:#bfcbd9}.el-input.is-active .el-input__inner{outline:0;border-color:#20a0ff}.el-input__inner{-moz-appearance:none;appearance:none;background-color:#fff;border-radius:4px;border:1px solid #bfcbd9;color:#1f2d3d;height:36px;padding:3px 10px;transition:border-color .2s cubic-bezier(.645,.045,.355,1);width:100%}.el-input__inner::-webkit-input-placeholder{color:#97a8be}.el-input__inner::-moz-placeholder{color:#97a8be}.el-input__inner:-ms-input-placeholder{color:#97a8be}.el-input__inner::placeholder{color:#97a8be}.el-input__inner:hover{border-color:#8391a5}.el-input__inner:focus{outline:0;border-color:#20a0ff}.el-input__icon{position:absolute;width:35px;height:100%;right:0;top:0;text-align:center;color:#bfcbd9;transition:all .3s}.el-input__icon:after{content:"";height:100%;width:0;display:inline-block;vertical-align:middle}.el-input__icon+.el-input__inner{padding-right:35px}.el-input__icon.is-clickable:hover{cursor:pointer;color:#8391a5}.el-input__icon.is-clickable:hover+.el-input__inner{border-color:#8391a5}.el-input--large{font-size:16px}.el-input--large .el-input__inner{height:42px}.el-input--small{font-size:13px}.el-input--small .el-input__inner{height:30px}.el-input--mini{font-size:12px}.el-input--mini .el-input__inner{height:22px}.el-input-group{line-height:normal;display:inline-table;width:100%;border-collapse:separate}.el-input-group>.el-input__inner{vertical-align:middle;display:table-cell}.el-input-group__append,.el-input-group__prepend{background-color:#fbfdff;color:#97a8be;vertical-align:middle;display:table-cell;position:relative;border:1px solid #bfcbd9;border-radius:4px;padding:0 10px;width:1px;white-space:nowrap}.el-input-group--prepend .el-input__inner,.el-input-group__append{border-top-left-radius:0;border-bottom-left-radius:0}.el-input-group--append .el-input__inner,.el-input-group__prepend{border-top-right-radius:0;border-bottom-right-radius:0}.el-input-group__append .el-button,.el-input-group__append .el-select,.el-input-group__prepend .el-button,.el-input-group__prepend .el-select{display:block;margin:-10px}.el-input-group__append button.el-button,.el-input-group__append div.el-select .el-input__inner,.el-input-group__append div.el-select:hover .el-input__inner,.el-input-group__prepend button.el-button,.el-input-group__prepend div.el-select .el-input__inner,.el-input-group__prepend div.el-select:hover .el-input__inner{border-color:transparent;background-color:transparent;color:inherit;border-top:0;border-bottom:0}.el-input-group__prepend{border-right:0}.el-input-group__append{border-left:0}.el-textarea{display:inline-block;width:100%;vertical-align:bottom}.el-textarea.is-disabled .el-textarea__inner{background-color:#eef1f6;border-color:#d1dbe5;color:#bbb;cursor:not-allowed}.el-textarea.is-disabled .el-textarea__inner::-webkit-input-placeholder{color:#bfcbd9}.el-textarea.is-disabled .el-textarea__inner::-moz-placeholder{color:#bfcbd9}.el-textarea.is-disabled .el-textarea__inner:-ms-input-placeholder{color:#bfcbd9}.el-textarea.is-disabled .el-textarea__inner::placeholder{color:#bfcbd9}.el-textarea__inner{display:block;resize:vertical;padding:5px 7px;line-height:1.5;width:100%;font-size:14px;color:#1f2d3d;background-color:#fff;border:1px solid #bfcbd9;border-radius:4px;transition:border-color .2s cubic-bezier(.645,.045,.355,1)}.el-textarea__inner::-webkit-input-placeholder{color:#97a8be}.el-textarea__inner::-moz-placeholder{color:#97a8be}.el-textarea__inner:-ms-input-placeholder{color:#97a8be}.el-textarea__inner::placeholder{color:#97a8be}.el-textarea__inner:hover{border-color:#8391a5}.el-textarea__inner:focus{outline:0;border-color:#20a0ff}.el-message-box{text-align:left;display:inline-block;vertical-align:middle;background-color:#fff;width:420px;border-radius:3px;font-size:16px;overflow:hidden;-webkit-backface-visibility:hidden;backface-visibility:hidden}.el-message-box__wrapper{position:fixed;top:0;bottom:0;left:0;right:0;text-align:center}.el-message-box__wrapper:after{content:"";display:inline-block;height:100%;width:0;vertical-align:middle}.el-message-box__header{position:relative;padding:20px 20px 0}.el-message-box__headerbtn{position:absolute;top:19px;right:20px;background:0 0;border:none;outline:0;padding:0;cursor:pointer}.el-message-box__headerbtn .el-message-box__close{color:#999}.el-message-box__headerbtn:focus .el-message-box__close,.el-message-box__headerbtn:hover .el-message-box__close{color:#20a0ff}.el-message-box__content{padding:30px 20px;color:#48576a;font-size:14px;position:relative}.el-message-box__input{padding-top:15px}.el-message-box__input input.invalid,.el-message-box__input input.invalid:focus{border-color:#ff4949}.el-message-box__errormsg{color:#ff4949;font-size:12px;min-height:18px;margin-top:2px}.el-message-box__title{padding-left:0;margin-bottom:0;font-size:16px;font-weight:700;height:18px;color:#333}.el-message-box__message{margin:0}.el-message-box__message p{margin:0;line-height:1.4}.el-message-box__btns{padding:10px 20px 15px;text-align:right}.el-message-box__btns button:nth-child(2){margin-left:10px}.el-message-box__btns-reverse{-ms-flex-direction:row-reverse;flex-direction:row-reverse}.el-message-box__status{position:absolute;top:50%;-ms-transform:translateY(-50%);transform:translateY(-50%);font-size:36px!important}.el-message-box__status.el-icon-circle-check{color:#13ce66}.el-message-box__status.el-icon-information{color:#50bfff}.el-message-box__status.el-icon-warning{color:#f7ba2a}.el-message-box__status.el-icon-circle-cross{color:#ff4949}.msgbox-fade-enter-active{animation:msgbox-fade-in .3s}.msgbox-fade-leave-active{animation:msgbox-fade-out .3s}@keyframes msgbox-fade-in{0%{transform:translate3d(0,-20px,0);opacity:0}to{transform:translateZ(0);opacity:1}}@keyframes msgbox-fade-out{0%{transform:translateZ(0);opacity:1}to{transform:translate3d(0,-20px,0);opacity:0}}',""])},function(e,t,n){var i=n(73);"string"==typeof i&&(i=[[e.i,i,""]]);var r={};r.transform=void 0;n(4)(i,r);i.locals&&(e.exports=i.locals)},function(e,t,n){t=e.exports=n(0)(void 0),t.push([e.i,'.el-tooltip__popper{position:absolute;border-radius:4px;padding:10px;z-index:2000;font-size:12px;line-height:1.2}.el-tooltip__popper .popper__arrow,.el-tooltip__popper .popper__arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.el-tooltip__popper .popper__arrow{border-width:6px}.el-tooltip__popper .popper__arrow:after{content:" ";border-width:5px}.el-tooltip__popper[x-placement^=top]{margin-bottom:12px}.el-tooltip__popper[x-placement^=top] .popper__arrow{bottom:-6px;border-top-color:#1f2d3d;border-bottom-width:0}.el-tooltip__popper[x-placement^=top] .popper__arrow:after{bottom:1px;margin-left:-5px;border-top-color:#1f2d3d;border-bottom-width:0}.el-tooltip__popper[x-placement^=bottom]{margin-top:12px}.el-tooltip__popper[x-placement^=bottom] .popper__arrow{top:-6px;border-top-width:0;border-bottom-color:#1f2d3d}.el-tooltip__popper[x-placement^=bottom] .popper__arrow:after{top:1px;margin-left:-5px;border-top-width:0;border-bottom-color:#1f2d3d}.el-tooltip__popper[x-placement^=right]{margin-left:12px}.el-tooltip__popper[x-placement^=right] .popper__arrow{left:-6px;border-right-color:#1f2d3d;border-left-width:0}.el-tooltip__popper[x-placement^=right] .popper__arrow:after{bottom:-5px;left:1px;border-right-color:#1f2d3d;border-left-width:0}.el-tooltip__popper[x-placement^=left]{margin-right:12px}.el-tooltip__popper[x-placement^=left] .popper__arrow{right:-6px;border-right-width:0;border-left-color:#1f2d3d}.el-tooltip__popper[x-placement^=left] .popper__arrow:after{right:1px;bottom:-5px;margin-left:-5px;border-right-width:0;border-left-color:#1f2d3d}.el-tooltip__popper.is-light{background:#fff;border:1px solid #1f2d3d}.el-tooltip__popper.is-light[x-placement^=top] .popper__arrow{border-top-color:#1f2d3d}.el-tooltip__popper.is-light[x-placement^=top] .popper__arrow:after{border-top-color:#fff}.el-tooltip__popper.is-light[x-placement^=bottom] .popper__arrow{border-bottom-color:#1f2d3d}.el-tooltip__popper.is-light[x-placement^=bottom] .popper__arrow:after{border-bottom-color:#fff}.el-tooltip__popper.is-light[x-placement^=left] .popper__arrow{border-left-color:#1f2d3d}.el-tooltip__popper.is-light[x-placement^=left] .popper__arrow:after{border-left-color:#fff}.el-tooltip__popper.is-light[x-placement^=right] .popper__arrow{border-right-color:#1f2d3d}.el-tooltip__popper.is-light[x-placement^=right] .popper__arrow:after{border-right-color:#fff}.el-tooltip__popper.is-dark{background:#1f2d3d;color:#fff}',""])},function(e,t,n){var i=n(75);"string"==typeof i&&(i=[[e.i,i,""]]);var r={};r.transform=void 0;n(4)(i,r);i.locals&&(e.exports=i.locals)},function(e,t,n){t=e.exports=n(0)(void 0),t.push([e.i,'.el-input__inner,.el-textarea__inner{background-image:none;box-sizing:border-box}.el-input,.el-input__inner{width:100%;display:inline-block}.el-pagination:after,.el-pagination:before{display:table;content:""}.el-pagination:after{clear:both}.el-select-dropdown{position:absolute;z-index:1001;border:1px solid #d1dbe5;border-radius:2px;background-color:#fff;box-shadow:0 2px 4px rgba(0,0,0,.12),0 0 6px rgba(0,0,0,.04);box-sizing:border-box;margin:5px 0}.el-select-dropdown .el-scrollbar.is-empty .el-select-dropdown__list{padding:0}.el-select-dropdown.is-multiple .el-select-dropdown__item.selected{color:#20a0ff;background-color:#fff}.el-select-dropdown.is-multiple .el-select-dropdown__item.selected.hover{background-color:#e4e8f1}.el-select-dropdown.is-multiple .el-select-dropdown__item.selected:after{position:absolute;right:10px;font-family:element-icons;content:"\\E608";font-size:11px;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.el-select-dropdown__empty{padding:10px 0;margin:0;text-align:center;color:#999;font-size:14px}.el-select-dropdown__wrap{max-height:274px}.el-select-dropdown__list{list-style:none;padding:6px 0;margin:0;box-sizing:border-box}.el-input{position:relative;font-size:14px}.el-input.is-disabled .el-input__inner{background-color:#eef1f6;border-color:#d1dbe5;color:#bbb;cursor:not-allowed}.el-input.is-disabled .el-input__inner::-webkit-input-placeholder{color:#bfcbd9}.el-input.is-disabled .el-input__inner::-moz-placeholder{color:#bfcbd9}.el-input.is-disabled .el-input__inner:-ms-input-placeholder{color:#bfcbd9}.el-input.is-disabled .el-input__inner::placeholder{color:#bfcbd9}.el-input.is-active .el-input__inner{outline:0;border-color:#20a0ff}.el-input__inner{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#fff;border-radius:4px;border:1px solid #bfcbd9;color:#1f2d3d;font-size:inherit;height:36px;line-height:1;outline:0;padding:3px 10px;transition:border-color .2s cubic-bezier(.645,.045,.355,1)}.el-input__inner::-webkit-input-placeholder{color:#97a8be}.el-input__inner::-moz-placeholder{color:#97a8be}.el-input__inner:-ms-input-placeholder{color:#97a8be}.el-input__inner::placeholder{color:#97a8be}.el-input__inner:hover{border-color:#8391a5}.el-input__inner:focus{outline:0;border-color:#20a0ff}.el-input__icon{position:absolute;width:35px;height:100%;right:0;top:0;text-align:center;color:#bfcbd9;transition:all .3s}.el-input__icon:after{content:"";height:100%;width:0;display:inline-block;vertical-align:middle}.el-input__icon+.el-input__inner{padding-right:35px}.el-input__icon.is-clickable:hover{cursor:pointer;color:#8391a5}.el-input__icon.is-clickable:hover+.el-input__inner{border-color:#8391a5}.el-input--large{font-size:16px}.el-input--large .el-input__inner{height:42px}.el-input--small{font-size:13px}.el-input--small .el-input__inner{height:30px}.el-input--mini{font-size:12px}.el-input--mini .el-input__inner{height:22px}.el-input-group{line-height:normal;display:inline-table;width:100%;border-collapse:separate}.el-input-group>.el-input__inner{vertical-align:middle;display:table-cell}.el-input-group__append,.el-input-group__prepend{background-color:#fbfdff;color:#97a8be;vertical-align:middle;display:table-cell;position:relative;border:1px solid #bfcbd9;border-radius:4px;padding:0 10px;width:1px;white-space:nowrap}.el-input-group--prepend .el-input__inner,.el-input-group__append{border-top-left-radius:0;border-bottom-left-radius:0}.el-input-group--append .el-input__inner,.el-input-group__prepend{border-top-right-radius:0;border-bottom-right-radius:0}.el-input-group__append .el-button,.el-input-group__append .el-select,.el-input-group__prepend .el-button,.el-input-group__prepend .el-select{display:block;margin:-10px}.el-input-group__append button.el-button,.el-input-group__append div.el-select .el-input__inner,.el-input-group__append div.el-select:hover .el-input__inner,.el-input-group__prepend button.el-button,.el-input-group__prepend div.el-select .el-input__inner,.el-input-group__prepend div.el-select:hover .el-input__inner{border-color:transparent;background-color:transparent;color:inherit;border-top:0;border-bottom:0}.el-input-group__append .el-button,.el-input-group__append .el-input,.el-input-group__prepend .el-button,.el-input-group__prepend .el-input{font-size:inherit}.el-input-group__prepend{border-right:0}.el-input-group__append{border-left:0}.el-textarea{display:inline-block;width:100%;vertical-align:bottom}.el-textarea.is-disabled .el-textarea__inner{background-color:#eef1f6;border-color:#d1dbe5;color:#bbb;cursor:not-allowed}.el-textarea.is-disabled .el-textarea__inner::-webkit-input-placeholder{color:#bfcbd9}.el-textarea.is-disabled .el-textarea__inner::-moz-placeholder{color:#bfcbd9}.el-textarea.is-disabled .el-textarea__inner:-ms-input-placeholder{color:#bfcbd9}.el-textarea.is-disabled .el-textarea__inner::placeholder{color:#bfcbd9}.el-textarea__inner{display:block;resize:vertical;padding:5px 7px;line-height:1.5;width:100%;font-size:14px;color:#1f2d3d;background-color:#fff;border:1px solid #bfcbd9;border-radius:4px;transition:border-color .2s cubic-bezier(.645,.045,.355,1)}.el-textarea__inner::-webkit-input-placeholder{color:#97a8be}.el-textarea__inner::-moz-placeholder{color:#97a8be}.el-textarea__inner:-ms-input-placeholder{color:#97a8be}.el-textarea__inner::placeholder{color:#97a8be}.el-textarea__inner:hover{border-color:#8391a5}.el-textarea__inner:focus{outline:0;border-color:#20a0ff}.el-tag{background-color:#8391a5;display:inline-block;padding:0 5px;height:24px;line-height:22px;font-size:12px;color:#fff;border-radius:4px;box-sizing:border-box;border:1px solid transparent;white-space:nowrap}.el-tag .el-icon-close{border-radius:50%;text-align:center;position:relative;cursor:pointer;font-size:12px;-ms-transform:scale(.75);transform:scale(.75);height:18px;width:18px;line-height:18px;vertical-align:middle;top:-1px;right:-2px}.el-tag .el-icon-close:hover{background-color:#fff;color:#8391a5}.el-tag--gray{background-color:#e4e8f1;border-color:#e4e8f1;color:#48576a}.el-tag--gray .el-tag__close:hover{background-color:#48576a;color:#fff}.el-tag--gray.is-hit{border-color:#48576a}.el-tag--primary{background-color:rgba(32,160,255,.1);border-color:rgba(32,160,255,.2);color:#20a0ff}.el-tag--primary .el-tag__close:hover{background-color:#20a0ff;color:#fff}.el-tag--primary.is-hit{border-color:#20a0ff}.el-tag--success{background-color:rgba(18,206,102,.1);border-color:rgba(18,206,102,.2);color:#13ce66}.el-tag--success .el-tag__close:hover{background-color:#13ce66;color:#fff}.el-tag--success.is-hit{border-color:#13ce66}.el-tag--warning{background-color:rgba(247,186,41,.1);border-color:rgba(247,186,41,.2);color:#f7ba2a}.el-tag--warning .el-tag__close:hover{background-color:#f7ba2a;color:#fff}.el-tag--warning.is-hit{border-color:#f7ba2a}.el-tag--danger{background-color:rgba(255,73,73,.1);border-color:rgba(255,73,73,.2);color:#ff4949}.el-tag--danger .el-tag__close:hover{background-color:#ff4949;color:#fff}.el-tag--danger.is-hit{border-color:#ff4949}.el-select-dropdown__item{font-size:14px;padding:8px 10px;position:relative;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;color:#48576a;height:36px;line-height:1.5;box-sizing:border-box;cursor:pointer}.el-select-dropdown__item.hover,.el-select-dropdown__item:hover{background-color:#e4e8f1}.el-select-dropdown__item.selected{color:#fff;background-color:#20a0ff}.el-select-dropdown__item.selected.hover{background-color:#1c8de0}.el-select-dropdown__item span{line-height:1.5!important}.el-select-dropdown__item.is-disabled{color:#bfcbd9;cursor:not-allowed}.el-select-dropdown__item.is-disabled:hover{background-color:#fff}.el-select-group{margin:0;padding:0}.el-select-group .el-select-dropdown__item{padding-left:20px}.el-select-group__wrap{list-style:none;margin:0;padding:0}.el-select-group__title{padding-left:10px;font-size:12px;color:#999;height:30px;line-height:30px}.el-scrollbar{overflow:hidden;position:relative}.el-scrollbar:active .el-scrollbar__bar,.el-scrollbar:focus .el-scrollbar__bar,.el-scrollbar:hover .el-scrollbar__bar{opacity:1;transition:opacity .34s ease-out}.el-scrollbar__wrap{overflow:scroll}.el-scrollbar__wrap--hidden-default::-webkit-scrollbar{width:0;height:0}.el-scrollbar__thumb{position:relative;display:block;width:0;height:0;cursor:pointer;border-radius:inherit;background-color:rgba(151,168,190,.3);transition:background-color .3s}.el-scrollbar__thumb:hover{background-color:rgba(151,168,190,.5)}.el-scrollbar__bar{position:absolute;right:2px;bottom:2px;z-index:1;border-radius:4px;opacity:0;transition:opacity .12s ease-out}.el-scrollbar__bar.is-horizontal{height:6px;left:2px}.el-scrollbar__bar.is-horizontal>div{height:100%}.el-scrollbar__bar.is-vertical{width:6px;top:2px}.el-scrollbar__bar.is-vertical>div{width:100%}.el-select{display:inline-block;position:relative}.el-select:hover .el-input__inner{border-color:#8391a5}.el-select .el-input__inner{cursor:pointer;padding-right:35px}.el-select .el-input__inner:focus{border-color:#20a0ff}.el-select .el-input .el-input__icon{font-size:12px;transition:transform .3s;line-height:16px;top:50%;cursor:pointer}.el-select .el-input .el-input__icon,.el-select .el-input .el-input__icon.is-show-close{color:#bfcbd9;-ms-transform:translateY(-50%) rotate(180deg);transform:translateY(-50%) rotate(180deg)}.el-select .el-input .el-input__icon.is-show-close{transition:0s;width:16px;height:16px;font-size:14px;right:8px;text-align:center;border-radius:100%}.el-select .el-input .el-input__icon.is-show-close:hover{color:#97a8be}.el-select .el-input .el-input__icon.is-reverse{-ms-transform:translateY(-50%);transform:translateY(-50%)}.el-select .el-input.is-disabled .el-input__inner{cursor:not-allowed}.el-select .el-input.is-disabled .el-input__inner:hover{border-color:#d1dbe5}.el-select>.el-input{display:block}.el-select .el-tag__close{margin-top:-2px}.el-select .el-tag{height:24px;line-height:24px;box-sizing:border-box;margin:3px 0 3px 6px}.el-select__input{border:none;outline:0;padding:0;margin-left:10px;color:#666;font-size:14px;vertical-align:baseline;-webkit-appearance:none;-moz-appearance:none;appearance:none;height:28px;background-color:transparent}.el-select__input.is-mini{height:14px}.el-select__close{cursor:pointer;position:absolute;top:8px;z-index:1000;right:25px;color:#bfcbd9;line-height:18px;font-size:12px}.el-select__close:hover{color:#97a8be}.el-select__tags{position:absolute;line-height:normal;white-space:normal;z-index:1;top:50%;-ms-transform:translateY(-50%);transform:translateY(-50%)}.el-select__tag{display:inline-block;height:24px;line-height:24px;font-size:14px;border-radius:4px;color:#fff;background-color:#20a0ff}.el-select__tag .el-icon-close{font-size:12px}.el-pagination{white-space:nowrap;padding:2px 5px;color:#48576a}.el-pagination button,.el-pagination span{display:inline-block;font-size:13px;min-width:28px;height:28px;line-height:28px;vertical-align:top;box-sizing:border-box}.el-pagination .el-select .el-input{width:110px}.el-pagination .el-select .el-input input{padding-right:25px;border-radius:2px;height:28px}.el-pagination button{border:none;padding:0 6px;background:0 0}.el-pagination button:focus{outline:0}.el-pagination button:hover{color:#20a0ff}.el-pagination button.disabled{color:#e4e4e4;background-color:#fff;cursor:not-allowed}.el-pager li,.el-pager li.btn-quicknext:hover,.el-pager li.btn-quickprev:hover{cursor:pointer}.el-pagination .btn-next,.el-pagination .btn-prev{background:50% no-repeat #fff;background-size:16px;border:1px solid #d1dbe5;cursor:pointer;margin:0;color:#97a8be}.el-pagination .btn-next .el-icon,.el-pagination .btn-prev .el-icon{display:block;font-size:12px}.el-pagination .btn-prev{border-radius:2px 0 0 2px;border-right:0}.el-pagination .btn-next{border-radius:0 2px 2px 0;border-left:0}.el-pagination--small .btn-next,.el-pagination--small .btn-prev,.el-pagination--small .el-pager li,.el-pagination--small .el-pager li:last-child{border-color:transparent;font-size:12px;line-height:22px;height:22px;min-width:22px}.el-pagination--small .arrow.disabled{visibility:hidden}.el-pagination--small .el-pager li{border-radius:2px}.el-pagination__sizes{margin:0 10px 0 0}.el-pagination__sizes .el-input .el-input__inner{font-size:13px;border-color:#d1dbe5}.el-pagination__sizes .el-input .el-input__inner:hover{border-color:#20a0ff}.el-pagination__jump{margin-left:10px}.el-pagination__total{margin:0 10px}.el-pagination__rightwrapper{float:right}.el-pagination__editor{border:1px solid #d1dbe5;border-radius:2px;line-height:18px;padding:4px 2px;width:30px;text-align:center;margin:0 6px;box-sizing:border-box;transition:border .3s;-moz-appearance:textfield}.el-pager,.el-pager li{vertical-align:top;display:inline-block;margin:0}.el-pagination__editor::-webkit-inner-spin-button,.el-pagination__editor::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}.el-pagination__editor:focus{outline:0;border-color:#20a0ff}.el-pager{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;list-style:none;font-size:0;padding:0}.el-pager li{padding:0 4px;border:1px solid #d1dbe5;border-right:0;background:#fff;font-size:13px;min-width:28px;height:28px;line-height:28px;box-sizing:border-box;text-align:center}.el-pager li:last-child{border-right:1px solid #d1dbe5}.el-pager li.btn-quicknext,.el-pager li.btn-quickprev{line-height:28px;color:#97a8be}.el-pager li.active+li{border-left:0;padding-left:5px}.el-pager li:hover{color:#20a0ff}.el-pager li.active{border-color:#20a0ff;background-color:#20a0ff;color:#fff;cursor:default}',""])},function(e,t,n){var i=n(77);"string"==typeof i&&(i=[[e.i,i,""]]);var r={};r.transform=void 0;n(4)(i,r);i.locals&&(e.exports=i.locals)},function(e,t,n){t=e.exports=n(0)(void 0),t.push([e.i,".el-collapse{border:1px solid #dfe6ec;border-radius:0}.el-collapse-item:last-child{margin-bottom:-1px}.el-collapse-item.is-active>.el-collapse-item__header .el-collapse-item__header__arrow{-ms-transform:rotate(90deg);transform:rotate(90deg)}.el-collapse-item__header{height:43px;line-height:43px;padding-left:15px;background-color:#fff;color:#48576a;cursor:pointer;border-bottom:1px solid #dfe6ec;font-size:13px}.el-collapse-item__header__arrow{margin-right:8px;transition:transform .3s}.el-collapse-item__wrap{will-change:height;background-color:#fbfdff;overflow:hidden;box-sizing:border-box;border-bottom:1px solid #dfe6ec}.el-collapse-item__content{padding:10px 15px;font-size:13px;color:#1f2d3d;line-height:1.769230769230769}",""])},function(e,t,n){var i=n(79);"string"==typeof i&&(i=[[e.i,i,""]]);var r={};r.transform=void 0;n(4)(i,r);i.locals&&(e.exports=i.locals)},function(e,t,n){t=e.exports=n(0)(void 0),t.push([e.i,"",""])},function(e,t,n){var i=n(81);"string"==typeof i&&(i=[[e.i,i,""]]);var r={};r.transform=void 0;n(4)(i,r);i.locals&&(e.exports=i.locals)},function(e,t,n){t=e.exports=n(0)(void 0),t.push([e.i,'.v-modal-enter{animation:v-modal-in .2s ease}.v-modal-leave{animation:v-modal-out .2s ease forwards}@keyframes v-modal-in{0%{opacity:0}}@keyframes v-modal-out{to{opacity:0}}.v-modal{position:fixed;left:0;top:0;width:100%;height:100%;opacity:.5;background:#000}.el-dialog{position:absolute;left:50%;-ms-transform:translateX(-50%);transform:translateX(-50%);background:#fff;border-radius:2px;box-shadow:0 1px 3px rgba(0,0,0,.3);box-sizing:border-box;margin-bottom:50px}.el-dialog--tiny{width:30%}.el-dialog--small{width:50%}.el-dialog--large{width:90%}.el-dialog--full{width:100%;top:0;margin-bottom:0;height:100%;overflow:auto}.el-dialog__wrapper{top:0;right:0;bottom:0;left:0;position:fixed;overflow:auto;margin:0}.el-dialog__header{padding:20px 20px 0}.el-dialog__header:after,.el-dialog__header:before{display:table;content:""}.el-dialog__header:after{clear:both}.el-dialog__headerbtn{float:right;background:0 0;border:none;outline:0;padding:0;cursor:pointer;font-size:16px}.el-dialog__headerbtn .el-dialog__close{color:#bfcbd9}.el-dialog__headerbtn:focus .el-dialog__close,.el-dialog__headerbtn:hover .el-dialog__close{color:#20a0ff}.el-dialog__title{line-height:1;font-size:16px;font-weight:700;color:#1f2d3d}.el-dialog__body{padding:30px 20px;color:#48576a;font-size:14px}.el-dialog__footer{padding:10px 20px 15px;text-align:right;box-sizing:border-box}.dialog-fade-enter-active{animation:dialog-fade-in .3s}.dialog-fade-leave-active{animation:dialog-fade-out .3s}@keyframes dialog-fade-in{0%{transform:translate3d(0,-20px,0);opacity:0}to{transform:translateZ(0);opacity:1}}@keyframes dialog-fade-out{0%{transform:translateZ(0);opacity:1}to{transform:translate3d(0,-20px,0);opacity:0}}',""])},function(e,t,n){e.exports=function(e){function t(i){if(n[i])return n[i].exports;var r=n[i]={exports:{},id:i,loaded:!1};return e[i].call(r.exports,r,r.exports,t),r.loaded=!0,r.exports}var n={};return t.m=e,t.c=n,t.p="/dist/",t(0)}([function(e,t,n){e.exports=n(1)},function(e,t,n){"use strict";function i(e){return e&&e.__esModule?e:{default:e}}var r=n(2),o=i(r),a=n(11),l=i(a),s=n(17),u=i(s),c=n(28),d=i(c),f=n(33),p=i(f),h=n(37),m=i(h),v=n(41),g=i(v),b=n(46),y=i(b),_=n(52),x=i(_),w=n(56),k=i(w),C=n(60),q=i(C),S=n(66),O=i(S),M=n(71),E=i(M),T=n(75),N=i(T),A=n(79),I=i(A),D=n(83),j=i(D),$=n(87),P=i($),L=n(91),z=i(L),R=n(95),B=i(R),F=n(99),V=i(F),H=n(114),U=i(H),W=n(115),Y=i(W),G=n(119),K=i(G),Z=n(123),Q=i(Z),X=n(127),J=i(X),ee=n(147),te=i(ee),ne=n(149),ie=i(ne),re=n(177),oe=i(re),ae=n(182),le=i(ae),se=n(187),ue=i(se),ce=n(192),de=i(ce),fe=n(195),pe=i(fe),he=n(200),me=i(he),ve=n(204),ge=i(ve),be=n(208),ye=i(be),_e=n(212),xe=i(_e),we=n(217),ke=i(we),Ce=n(225),qe=i(Ce),Se=n(229),Oe=i(Se),Me=n(233),Ee=i(Me),Te=n(243),Ne=i(Te),Ae=n(247),Ie=i(Ae),De=n(252),je=i(De),$e=n(260),Pe=i($e),Le=n(266),ze=i(Le),Re=n(270),Be=i(Re),Fe=n(272),Ve=i(Fe),He=n(274),Ue=i(He),We=n(290),Ye=i(We),Ge=n(294),Ke=i(Ge),Ze=n(298),Qe=i(Ze),Xe=n(308),Je=i(Xe),et=n(312),tt=i(et),nt=n(316),it=i(nt),rt=n(320),ot=i(rt),at=n(324),lt=i(at),st=n(328),ut=i(st),ct=n(332),dt=i(ct),ft=n(336),pt=i(ft),ht=n(340),mt=i(ht),vt=n(344),gt=i(vt),bt=n(348),yt=i(bt),_t=n(356),xt=i(_t),wt=n(374),kt=i(wt),Ct=n(111),qt=i(Ct),St=n(49),Ot=i(St),Mt=[o.default,l.default,u.default,d.default,p.default,m.default,g.default,y.default,x.default,k.default,q.default,O.default,E.default,N.default,I.default,j.default,P.default,z.default,B.default,V.default,U.default,Y.default,K.default,Q.default,J.default,te.default,ie.default,oe.default,le.default,ue.default,de.default,me.default,ge.default,ye.default,xe.default,ke.default,qe.default,Oe.default,Ee.default,Ne.default,je.default,ze.default,Be.default,Ve.default,Ue.default,Ye.default,Ke.default,Je.default,tt.default,it.default,ot.default,lt.default,ut.default,dt.default,pt.default,mt.default,gt.default,yt.default,xt.default,kt.default,Ot.default],Et=function e(t){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};e.installed||(qt.default.use(n.locale),qt.default.i18n(n.i18n),Mt.map(function(e){t.component(e.name,e)}),t.use(Pe.default.directive),t.prototype.$loading=Pe.default.service,t.prototype.$msgbox=pe.default,t.prototype.$alert=pe.default.alert,t.prototype.$confirm=pe.default.confirm,t.prototype.$prompt=pe.default.prompt,t.prototype.$notify=Ie.default,t.prototype.$message=Qe.default)};"undefined"!=typeof window&&window.Vue&&Et(window.Vue),e.exports={version:"1.4.6",locale:qt.default.use,i18n:qt.default.i18n,install:Et,CollapseTransition:Ot.default,Loading:Pe.default,Pagination:o.default,Dialog:l.default,Autocomplete:u.default,Dropdown:d.default,DropdownMenu:p.default,DropdownItem:m.default,Menu:g.default,Submenu:y.default,MenuItem:x.default,MenuItemGroup:k.default,Input:q.default,InputNumber:O.default,Radio:E.default,RadioGroup:N.default,RadioButton:I.default,Checkbox:j.default,CheckboxButton:P.default,CheckboxGroup:z.default,Switch:B.default,Select:V.default,Option:U.default,OptionGroup:Y.default,Button:K.default,ButtonGroup:Q.default,Table:J.default,TableColumn:te.default,DatePicker:ie.default,TimeSelect:oe.default,TimePicker:le.default,Popover:ue.default,Tooltip:de.default,MessageBox:pe.default,Breadcrumb:me.default,BreadcrumbItem:ge.default,Form:ye.default,FormItem:xe.default,Tabs:ke.default,TabPane:qe.default,Tag:Oe.default,Tree:Ee.default,Alert:Ne.default,Notification:Ie.default,Slider:je.default,Icon:ze.default,Row:Be.default,Col:Ve.default,Upload:Ue.default,Progress:Ye.default,Spinner:Ke.default,Message:Qe.default,Badge:Je.default,Card:tt.default,Rate:it.default,Steps:ot.default,Step:lt.default,Carousel:ut.default,Scrollbar:dt.default,CarouselItem:pt.default,Collapse:mt.default,CollapseItem:gt.default,Cascader:yt.default,ColorPicker:xt.default,Transfer:kt.default}},function(e,t,n){"use strict";t.__esModule=!0;var i=n(3),r=function(e){return e&&e.__esModule?e:{default:e}}(i);r.default.install=function(e){e.component(r.default.name,r.default)},t.default=r.default},function(e,t,n){"use strict";function i(e){return e&&e.__esModule?e:{default:e}}t.__esModule=!0;var r=n(4),o=i(r),a=n(8),l=i(a),s=n(9),u=i(s),c=n(10),d=i(c);t.default={name:"ElPagination",props:{pageSize:{type:Number,default:10},small:Boolean,total:Number,pageCount:Number,currentPage:{type:Number,default:1},layout:{default:"prev, pager, next, jumper, ->, total"},pageSizes:{type:Array,default:function(){return[10,20,30,40,50,100]}}},data:function(){return{internalCurrentPage:1,internalPageSize:0}},render:function(e){var t=e("div",{class:"el-pagination"},[]),n=this.layout||"";if(n){var i={prev:e("prev",null,[]),jumper:e("jumper",null,[]),pager:e("pager",{attrs:{currentPage:this.internalCurrentPage,pageCount:this.internalPageCount},on:{change:this.handleCurrentChange}},[]),next:e("next",null,[]),sizes:e("sizes",{attrs:{pageSizes:this.pageSizes}},[]),slot:e("my-slot",null,[]),total:e("total",null,[])},r=n.split(",").map(function(e){return e.trim()}),o=e("div",{class:"el-pagination__rightwrapper"},[]),a=!1;return this.small&&(t.data.class+=" el-pagination--small"),r.forEach(function(e){if("->"===e)return void(a=!0);a?o.children.push(i[e]):t.children.push(i[e])}),a&&t.children.unshift(o),t}},components:{MySlot:{render:function(e){return this.$parent.$slots.default?this.$parent.$slots.default[0]:""}},Prev:{render:function(e){return e("button",{attrs:{type:"button"},class:["btn-prev",{disabled:this.$parent.internalCurrentPage<=1}],on:{click:this.$parent.prev}},[e("i",{class:"el-icon el-icon-arrow-left"},[])])}},Next:{render:function(e){return e("button",{attrs:{type:"button"},class:["btn-next",{disabled:this.$parent.internalCurrentPage===this.$parent.internalPageCount||0===this.$parent.internalPageCount}],on:{click:this.$parent.next}},[e("i",{class:"el-icon el-icon-arrow-right"},[])])}},Sizes:{mixins:[d.default],props:{pageSizes:Array},watch:{pageSizes:{immediate:!0,handler:function(e){Array.isArray(e)&&(this.$parent.internalPageSize=e.indexOf(this.$parent.pageSize)>-1?this.$parent.pageSize:this.pageSizes[0])}}},render:function(e){var t=this;return e("span",{class:"el-pagination__sizes"},[e("el-select",{attrs:{value:this.$parent.internalPageSize},on:{input:this.handleChange}},[this.pageSizes.map(function(n){return e("el-option",{attrs:{value:n,label:n+" "+t.t("el.pagination.pagesize")}},[])})])])},components:{ElSelect:l.default,ElOption:u.default},methods:{handleChange:function(e){e!==this.$parent.internalPageSize&&(this.$parent.internalPageSize=e=parseInt(e,10),this.$parent.$emit("size-change",e))}}},Jumper:{mixins:[d.default],data:function(){return{oldValue:null}},methods:{handleFocus:function(e){this.oldValue=e.target.value},handleBlur:function(e){var t=e.target;this.reassignMaxValue(t)},handleKeyUp:function(e){var t=e.key||"",n=e.keyCode||"";(t&&"Enter"===t||n&&13===n)&&(this.reassignMaxValue(e.target),this.handleChange({target:e.target}))},handleChange:function(e){var t=e.target;this.$parent.internalCurrentPage=this.$parent.getValidCurrentPage(t.value),this.oldValue=null},reassignMaxValue:function(e){+e.value>this.$parent.internalPageCount&&(e.value=this.$parent.internalPageCount)}},render:function(e){return e("span",{class:"el-pagination__jump"},[this.t("el.pagination.goto"),e("input",{class:"el-pagination__editor",attrs:{type:"number",min:1,max:this.$parent.internalPageCount,value:this.$parent.internalCurrentPage,number:!0},domProps:{value:this.$parent.internalCurrentPage},on:{change:this.handleChange,focus:this.handleFocus,blur:this.handleBlur,keyup:this.handleKeyUp}},[]),this.t("el.pagination.pageClassifier")])}},Total:{mixins:[d.default],render:function(e){return"number"==typeof this.$parent.total?e("span",{class:"el-pagination__total"},[this.t("el.pagination.total",{total:this.$parent.total})]):""}},Pager:o.default},methods:{handleCurrentChange:function(e){this.internalCurrentPage=this.getValidCurrentPage(e)},prev:function(){var e=this.internalCurrentPage-1;this.internalCurrentPage=this.getValidCurrentPage(e)},next:function(){var e=this.internalCurrentPage+1;this.internalCurrentPage=this.getValidCurrentPage(e)},getValidCurrentPage:function(e){e=parseInt(e,10);var t="number"==typeof this.internalPageCount,n=void 0;return t?e<1?n=1:e>this.internalPageCount&&(n=this.internalPageCount):(isNaN(e)||e<1)&&(n=1),void 0===n&&isNaN(e)?n=1:0===n&&(n=1),void 0===n?e:n}},computed:{internalPageCount:function(){return"number"==typeof this.total?Math.ceil(this.total/this.internalPageSize):"number"==typeof this.pageCount?this.pageCount:null}},watch:{currentPage:{immediate:!0,handler:function(e){this.internalCurrentPage=e}},pageSize:{immediate:!0,handler:function(e){this.internalPageSize=e}},internalCurrentPage:function(e,t){var n=this;e=parseInt(e,10),e=isNaN(e)?t||1:this.getValidCurrentPage(e),void 0!==e?this.$nextTick(function(){n.internalCurrentPage=e,t!==e&&(n.$emit("update:currentPage",e),n.$emit("current-change",n.internalCurrentPage))}):(this.$emit("update:currentPage",e),this.$emit("current-change",this.internalCurrentPage))},internalPageCount:function(e){var t=this.internalCurrentPage;e>0&&0===t?this.internalCurrentPage=1:t>e&&(this.internalCurrentPage=0===e?1:e)}}}},function(e,t,n){var i=n(5)(n(6),n(7),null,null,null);e.exports=i.exports},function(e,t){e.exports=function(e,t,n,i,r){var o,a=e=e||{},l=typeof e.default;"object"!==l&&"function"!==l||(o=e,a=e.default);var s="function"==typeof a?a.options:a;t&&(s.render=t.render,s.staticRenderFns=t.staticRenderFns),i&&(s._scopeId=i);var u;if(r?(u=function(e){e=e||this.$vnode&&this.$vnode.ssrContext,e||"undefined"==typeof __VUE_SSR_CONTEXT__||(e=__VUE_SSR_CONTEXT__),n&&n.call(this,e),e&&e._registeredComponents&&e._registeredComponents.add(r)},s._ssrRegister=u):n&&(u=n),u){var c=s.beforeCreate;s.beforeCreate=c?[].concat(c,u):[u]}return{esModule:o,exports:a,options:s}}},function(e,t){"use strict";t.__esModule=!0,t.default={name:"ElPager",props:{currentPage:Number,pageCount:Number},watch:{showPrevMore:function(e){e||(this.quickprevIconClass="el-icon-more")},showNextMore:function(e){e||(this.quicknextIconClass="el-icon-more")}},methods:{onPagerClick:function(e){var t=e.target;if("UL"!==t.tagName){var n=Number(e.target.textContent),i=this.pageCount,r=this.currentPage;-1!==t.className.indexOf("more")&&(-1!==t.className.indexOf("quickprev")?n=r-5:-1!==t.className.indexOf("quicknext")&&(n=r+5)),isNaN(n)||(n<1&&(n=1),n>i&&(n=i)),n!==r&&this.$emit("change",n)}}},computed:{pagers:function(){var e=Number(this.currentPage),t=Number(this.pageCount),n=!1,i=!1;t>7&&(e>4&&(n=!0),e<t-3&&(i=!0));var r=[];if(n&&!i)for(var o=t-5,a=o;a<t;a++)r.push(a);else if(!n&&i)for(var l=2;l<7;l++)r.push(l);else if(n&&i)for(var s=Math.floor(3.5)-1,u=e-s;u<=e+s;u++)r.push(u);else for(var c=2;c<t;c++)r.push(c);return this.showPrevMore=n,this.showNextMore=i,r}},data:function(){return{current:null,showPrevMore:!1,showNextMore:!1,quicknextIconClass:"el-icon-more",quickprevIconClass:"el-icon-more"}}}},function(e,t){e.exports={render:function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("ul",{staticClass:"el-pager",on:{click:e.onPagerClick}},[e.pageCount>0?n("li",{staticClass:"number",class:{active:1===e.currentPage}},[e._v("1")]):e._e(),e.showPrevMore?n("li",{staticClass:"el-icon more btn-quickprev",class:[e.quickprevIconClass],on:{mouseenter:function(t){e.quickprevIconClass="el-icon-d-arrow-left"},mouseleave:function(t){e.quickprevIconClass="el-icon-more"}}}):e._e(),e._l(e.pagers,function(t){return n("li",{staticClass:"number",class:{active:e.currentPage===t}},[e._v(e._s(t))])}),e.showNextMore?n("li",{staticClass:"el-icon more btn-quicknext",class:[e.quicknextIconClass],on:{mouseenter:function(t){e.quicknextIconClass="el-icon-d-arrow-right"},mouseleave:function(t){e.quicknextIconClass="el-icon-more"}}}):e._e(),e.pageCount>1?n("li",{staticClass:"number",class:{active:e.currentPage===e.pageCount}},[e._v(e._s(e.pageCount))]):e._e()],2)},staticRenderFns:[]}},function(e,t){e.exports=n(83)},function(e,t){e.exports=n(89)},function(e,t){e.exports=n(29)},function(e,t,n){"use strict";t.__esModule=!0;var i=n(12),r=function(e){return e&&e.__esModule?e:{default:e}}(i);r.default.install=function(e){e.component(r.default.name,r.default)},t.default=r.default},function(e,t,n){var i=n(5)(n(13),n(16),null,null,null);e.exports=i.exports},function(e,t,n){"use strict";function i(e){return e&&e.__esModule?e:{default:e}}t.__esModule=!0;var r=n(14),o=i(r),a=n(15),l=i(a);t.default={name:"ElDialog",mixins:[o.default,l.default],props:{title:{type:String,default:""},modal:{type:Boolean,default:!0},modalAppendToBody:{type:Boolean,default:!0},lockScroll:{type:Boolean,default:!0},closeOnClickModal:{type:Boolean,default:!0},closeOnPressEscape:{type:Boolean,default:!0},showClose:{type:Boolean,default:!0},size:{type:String,default:"small"},customClass:{type:String,default:""},top:{type:String,default:"15%"},beforeClose:Function},watch:{visible:function(e){var t=this;this.$emit("update:visible",e),e?(this.$emit("open"),this.$el.addEventListener("scroll",this.updatePopper),this.$nextTick(function(){t.$refs.dialog.scrollTop=0})):(this.$el.removeEventListener("scroll",this.updatePopper),this.$emit("close"))}},computed:{sizeClass:function(){return"el-dialog--"+this.size},style:function(){return"full"===this.size?{}:{top:this.top}}},methods:{handleWrapperClick:function(){this.closeOnClickModal&&this.handleClose()},handleClose:function(){"function"==typeof this.beforeClose?this.beforeClose(this.hide):this.hide()},hide:function(e){!1!==e&&(this.$emit("update:visible",!1),this.$emit("visible-change",!1))},updatePopper:function(){this.broadcast("ElSelectDropdown","updatePopper"),this.broadcast("ElDropdownMenu","updatePopper")}},mounted:function(){this.visible&&(this.rendered=!0,this.open())}}},function(e,t){e.exports=n(26)},function(e,t){e.exports=n(8)},function(e,t){e.exports={render:function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("transition",{attrs:{name:"dialog-fade"}},[n("div",{directives:[{name:"show",rawName:"v-show",value:e.visible,expression:"visible"}],staticClass:"el-dialog__wrapper",on:{click:function(t){if(t.target!==t.currentTarget)return null;e.handleWrapperClick(t)}}},[n("div",{ref:"dialog",staticClass:"el-dialog",class:[e.sizeClass,e.customClass],style:e.style},[n("div",{staticClass:"el-dialog__header"},[e._t("title",[n("span",{staticClass:"el-dialog__title"},[e._v(e._s(e.title))])]),e.showClose?n("button",{staticClass:"el-dialog__headerbtn",attrs:{type:"button","aria-label":"Close"},on:{click:e.handleClose}},[n("i",{staticClass:"el-dialog__close el-icon el-icon-close"})]):e._e()],2),e.rendered?n("div",{staticClass:"el-dialog__body"},[e._t("default")],2):e._e(),e.$slots.footer?n("div",{staticClass:"el-dialog__footer"},[e._t("footer")],2):e._e()])])])},staticRenderFns:[]}},function(e,t,n){"use strict";t.__esModule=!0;var i=n(18),r=function(e){return e&&e.__esModule?e:{default:e}}(i);r.default.install=function(e){e.component(r.default.name,r.default)},t.default=r.default},function(e,t,n){var i=n(5)(n(19),n(27),null,null,null);e.exports=i.exports},function(e,t,n){"use strict";function i(e){return e&&e.__esModule?e:{default:e}}t.__esModule=!0;var r=n(20),o=i(r),a=n(21),l=i(a),s=n(22),u=i(s),c=n(15),d=i(c);t.default={name:"ElAutocomplete",mixins:[d.default],componentName:"ElAutocomplete",components:{ElInput:o.default,ElAutocompleteSuggestions:u.default},directives:{Clickoutside:l.default},props:{props:{type:Object,default:function(){return{label:"value",value:"value"}}},popperClass:String,placeholder:String,disabled:Boolean,name:String,size:String,value:String,autofocus:Boolean,fetchSuggestions:Function,triggerOnFocus:{type:Boolean,default:!0},customItem:String,icon:String,onIconClick:Function,selectWhenUnmatched:{type:Boolean,default:!1}},data:function(){return{activated:!1,isOnComposition:!1,suggestions:[],loading:!1,highlightedIndex:-1}},computed:{suggestionVisible:function(){var e=this.suggestions;return(Array.isArray(e)&&e.length>0||this.loading)&&this.activated}},watch:{suggestionVisible:function(e){this.broadcast("ElAutocompleteSuggestions","visible",[e,this.$refs.input.$refs.input.offsetWidth])}},methods:{getData:function(e){var t=this;this.loading=!0,this.fetchSuggestions(e,function(e){t.loading=!1,Array.isArray(e)&&(t.suggestions=e)})},handleComposition:function(e){"compositionend"===e.type?(this.isOnComposition=!1,this.handleChange(this.value)):this.isOnComposition=!0},handleChange:function(e){if(this.$emit("input",e),this.isOnComposition||!this.triggerOnFocus&&!e)return void(this.suggestions=[]);this.getData(e)},handleFocus:function(){this.activated=!0,this.triggerOnFocus&&this.getData(this.value)},close:function(e){this.activated=!1},handleKeyEnter:function(e){var t=this;this.suggestionVisible&&this.highlightedIndex>=0&&this.highlightedIndex<this.suggestions.length?(e.preventDefault(),this.select(this.suggestions[this.highlightedIndex])):this.selectWhenUnmatched&&(this.$emit("select",{value:this.value}),this.$nextTick(function(e){t.suggestions=[],t.highlightedIndex=-1}))},select:function(e){var t=this;this.$emit("input",e[this.props.value]),this.$emit("select",e),this.$nextTick(function(e){t.suggestions=[],t.highlightedIndex=-1})},highlight:function(e){if(this.suggestionVisible&&!this.loading){if(e<0)return void(this.highlightedIndex=-1);e>=this.suggestions.length&&(e=this.suggestions.length-1);var t=this.$refs.suggestions.$el.querySelector(".el-autocomplete-suggestion__wrap"),n=t.querySelectorAll(".el-autocomplete-suggestion__list li"),i=n[e],r=t.scrollTop,o=i.offsetTop;o+i.scrollHeight>r+t.clientHeight&&(t.scrollTop+=i.scrollHeight),o<r&&(t.scrollTop-=i.scrollHeight),this.highlightedIndex=e}}},mounted:function(){var e=this;this.$on("item-click",function(t){e.select(t)})},beforeDestroy:function(){this.$refs.suggestions.$destroy()}}},function(e,t){e.exports=n(14)},function(e,t){e.exports=n(25)},function(e,t,n){var i=n(5)(n(23),n(26),null,null,null);e.exports=i.exports},function(e,t,n){"use strict";function i(e){return e&&e.__esModule?e:{default:e}}t.__esModule=!0;var r=n(24),o=i(r),a=n(15),l=i(a),s=n(25),u=i(s);t.default={components:{ElScrollbar:u.default},mixins:[o.default,l.default],componentName:"ElAutocompleteSuggestions",data:function(){return{parent:this.$parent,dropdownWidth:""}},props:{props:Object,suggestions:Array,options:{default:function(){return{gpuAcceleration:!1}}}},methods:{select:function(e){this.dispatch("ElAutocomplete","item-click",e)}},updated:function(){var e=this;this.$nextTick(function(t){e.updatePopper()})},mounted:function(){this.$parent.popperElm=this.popperElm=this.$el,this.referenceElm=this.$parent.$refs.input.$refs.input},created:function(){var e=this;this.$on("visible",function(t,n){e.dropdownWidth=n+"px",e.showPopper=t})}}},function(e,t){e.exports=n(16)},function(e,t){e.exports=n(27)},function(e,t){e.exports={render:function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("transition",{attrs:{name:"el-zoom-in-top"},on:{"after-leave":e.doDestroy}},[n("div",{directives:[{name:"show",rawName:"v-show",value:e.showPopper,expression:"showPopper"}],staticClass:"el-autocomplete-suggestion",class:{"is-loading":e.parent.loading},style:{width:e.dropdownWidth}},[n("el-scrollbar",{attrs:{tag:"ul","wrap-class":"el-autocomplete-suggestion__wrap","view-class":"el-autocomplete-suggestion__list"}},[e.parent.loading?n("li",[n("i",{staticClass:"el-icon-loading"})]):e._l(e.suggestions,function(t,i){return[e.parent.customItem?n(e.parent.customItem,{tag:"component",class:{highlighted:e.parent.highlightedIndex===i},attrs:{item:t,index:i},on:{click:function(n){e.select(t)}}}):n("li",{class:{highlighted:e.parent.highlightedIndex===i},on:{click:function(n){e.select(t)}}},[e._v("\n "+e._s(t[e.props.label])+"\n ")])]})],2)],1)])},staticRenderFns:[]}},function(e,t){e.exports={render:function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{directives:[{name:"clickoutside",rawName:"v-clickoutside",value:e.close,expression:"close"}],staticClass:"el-autocomplete"},[n("el-input",e._b({ref:"input",on:{change:e.handleChange,focus:e.handleFocus},nativeOn:{compositionstart:function(t){e.handleComposition(t)},compositionupdate:function(t){e.handleComposition(t)},compositionend:function(t){e.handleComposition(t)},keydown:[function(t){if(!("button"in t)&&e._k(t.keyCode,"up",38))return null;t.preventDefault(),e.highlight(e.highlightedIndex-1)},function(t){if(!("button"in t)&&e._k(t.keyCode,"down",40))return null;t.preventDefault(),e.highlight(e.highlightedIndex+1)},function(t){if(!("button"in t)&&e._k(t.keyCode,"enter",13))return null;e.handleKeyEnter(t)},function(t){if(!("button"in t)&&e._k(t.keyCode,"tab",9))return null;e.close(t)}]}},"el-input",e.$props),[e.$slots.prepend?n("template",{slot:"prepend"},[e._t("prepend")],2):e._e(),e.$slots.append?n("template",{slot:"append"},[e._t("append")],2):e._e()],2),n("el-autocomplete-suggestions",{ref:"suggestions",class:[e.popperClass?e.popperClass:""],attrs:{props:e.props,suggestions:e.suggestions}})],1)},staticRenderFns:[]}},function(e,t,n){"use strict";t.__esModule=!0;var i=n(29),r=function(e){return e&&e.__esModule?e:{default:e}}(i);r.default.install=function(e){e.component(r.default.name,r.default)},t.default=r.default},function(e,t,n){var i=n(5)(n(30),null,null,null,null);e.exports=i.exports},function(e,t,n){"use strict";function i(e){return e&&e.__esModule?e:{default:e}}t.__esModule=!0;var r=n(21),o=i(r),a=n(15),l=i(a),s=n(31),u=i(s),c=n(32),d=i(c);t.default={name:"ElDropdown",componentName:"ElDropdown",mixins:[l.default],directives:{Clickoutside:o.default},components:{ElButton:u.default,ElButtonGroup:d.default},props:{trigger:{type:String,default:"hover"},menuAlign:{type:String,default:"end"},type:String,size:String,splitButton:Boolean,hideOnClick:{type:Boolean,default:!0}},data:function(){return{timeout:null,visible:!1,triggerElm:null}},mounted:function(){this.$on("menu-item-click",this.handleMenuItemClick),this.initEvent()},watch:{visible:function(e){this.broadcast("ElDropdownMenu","visible",e),this.$emit("visible-change",e)}},methods:{show:function(){var e=this;this.triggerElm.disabled||(clearTimeout(this.timeout),this.timeout=setTimeout(function(){e.visible=!0},250))},hide:function(){var e=this;this.triggerElm.disabled||(clearTimeout(this.timeout),this.timeout=setTimeout(function(){e.visible=!1},150))},handleClick:function(){this.triggerElm.disabled||(this.visible=!this.visible)},initEvent:function(){var e=this.trigger,t=this.show,n=this.hide,i=this.handleClick,r=this.splitButton;if(this.triggerElm=r?this.$refs.trigger.$el:this.$slots.default[0].elm,"hover"===e){this.triggerElm.addEventListener("mouseenter",t),this.triggerElm.addEventListener("mouseleave",n);var o=this.$slots.dropdown[0].elm;o.addEventListener("mouseenter",t),o.addEventListener("mouseleave",n)}else"click"===e&&this.triggerElm.addEventListener("click",i)},handleMenuItemClick:function(e,t){this.hideOnClick&&(this.visible=!1),this.$emit("command",e,t)}},render:function(e){var t=this,n=this.hide,i=this.splitButton,r=this.type,o=this.size,a=function(e){t.$emit("click")};return e("div",{class:"el-dropdown",directives:[{name:"clickoutside",value:n}]},[i?e("el-button-group",null,[e("el-button",{attrs:{type:r,size:o},nativeOn:{click:a}},[this.$slots.default]),e("el-button",{ref:"trigger",attrs:{type:r,size:o},class:"el-dropdown__caret-button"},[e("i",{class:"el-dropdown__icon el-icon-caret-bottom"},[])])]):this.$slots.default,this.$slots.dropdown])}}},function(e,t){e.exports=n(90)},function(e,t){e.exports=n(91)},function(e,t,n){"use strict";t.__esModule=!0;var i=n(34),r=function(e){return e&&e.__esModule?e:{default:e}}(i);r.default.install=function(e){e.component(r.default.name,r.default)},t.default=r.default},function(e,t,n){var i=n(5)(n(35),n(36),null,null,null);e.exports=i.exports},function(e,t,n){"use strict";t.__esModule=!0;var i=n(24),r=function(e){return e&&e.__esModule?e:{default:e}}(i);t.default={name:"ElDropdownMenu",componentName:"ElDropdownMenu",mixins:[r.default],created:function(){var e=this;this.$on("updatePopper",function(){e.showPopper&&e.updatePopper()}),this.$on("visible",function(t){e.showPopper=t})},mounted:function(){this.$parent.popperElm=this.popperElm=this.$el,this.referenceElm=this.$parent.$el},watch:{"$parent.menuAlign":{immediate:!0,handler:function(e){this.currentPlacement="bottom-"+e}}}}},function(e,t){e.exports={render:function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("transition",{attrs:{name:"el-zoom-in-top"},on:{"after-leave":e.doDestroy}},[n("ul",{directives:[{name:"show",rawName:"v-show",value:e.showPopper,expression:"showPopper"}],staticClass:"el-dropdown-menu"},[e._t("default")],2)])},staticRenderFns:[]}},function(e,t,n){"use strict";t.__esModule=!0;var i=n(38),r=function(e){return e&&e.__esModule?e:{default:e}}(i);r.default.install=function(e){e.component(r.default.name,r.default)},t.default=r.default},function(e,t,n){var i=n(5)(n(39),n(40),null,null,null);e.exports=i.exports},function(e,t,n){"use strict";t.__esModule=!0;var i=n(15),r=function(e){return e&&e.__esModule?e:{default:e}}(i);t.default={name:"ElDropdownItem",mixins:[r.default],props:{command:{},disabled:Boolean,divided:Boolean},methods:{handleClick:function(e){this.dispatch("ElDropdown","menu-item-click",[this.command,this])}}}},function(e,t){e.exports={render:function(){var e=this,t=e.$createElement;return(e._self._c||t)("li",{staticClass:"el-dropdown-menu__item",class:{"is-disabled":e.disabled,"el-dropdown-menu__item--divided":e.divided},on:{click:e.handleClick}},[e._t("default")],2)},staticRenderFns:[]}},function(e,t,n){"use strict";t.__esModule=!0;var i=n(42),r=function(e){return e&&e.__esModule?e:{default:e}}(i);r.default.install=function(e){e.component(r.default.name,r.default)},t.default=r.default},function(e,t,n){var i=n(5)(n(43),n(45),null,null,null);e.exports=i.exports},function(e,t,n){"use strict";t.__esModule=!0;var i=n(15),r=function(e){return e&&e.__esModule?e:{default:e}}(i),o=n(44);t.default={name:"ElMenu",componentName:"ElMenu",mixins:[r.default],provide:function(){return{rootMenu:this}},components:{"el-menu-collapse-transition":{functional:!0,render:function(e,t){return e("transition",{props:{mode:"out-in"},on:{beforeEnter:function(e){e.style.opacity=.2},enter:function(e){(0,o.addClass)(e,"el-opacity-transition"),e.style.opacity=1},afterEnter:function(e){(0,o.removeClass)(e,"el-opacity-transition"),e.style.opacity=""},beforeLeave:function(e){e.dataset||(e.dataset={}),(0,o.hasClass)(e,"el-menu--collapse")&&((0,o.removeClass)(e,"el-menu--collapse"),e.dataset.oldOverflow=e.style.overflow,e.dataset.scrollWidth=e.scrollWidth,(0,o.addClass)(e,"el-menu--collapse")),e.style.width=e.scrollWidth+"px",e.style.overflow="hidden"},leave:function(e){(0,o.hasClass)(e,"el-menu--collapse")?((0,o.addClass)(e,"horizontal-collapse-transition"),e.style.width=e.dataset.scrollWidth+"px"):((0,o.addClass)(e,"horizontal-collapse-transition"),e.style.width="64px")},afterLeave:function(e){(0,o.removeClass)(e,"horizontal-collapse-transition"),(0,o.hasClass)(e,"el-menu--collapse")?e.style.width=e.dataset.scrollWidth+"px":e.style.width="64px",e.style.overflow=e.dataset.oldOverflow}}},t.children)}}},props:{mode:{type:String,default:"vertical"},defaultActive:{type:String,default:""},defaultOpeneds:Array,theme:{type:String,default:"light"},uniqueOpened:Boolean,router:Boolean,menuTrigger:{type:String,default:"hover"},collapse:Boolean},data:function(){return{activeIndex:this.defaultActive,openedMenus:this.defaultOpeneds?this.defaultOpeneds.slice(0):[],items:{},submenus:{}}},watch:{defaultActive:function(e){var t=this.items[e];t?(this.activeIndex=t.index,this.initOpenedMenu()):this.activeIndex=""},defaultOpeneds:function(e){this.openedMenus=e},collapse:function(e){e&&(this.openedMenus=[])}},methods:{addItem:function(e){this.$set(this.items,e.index,e)},removeItem:function(e){delete this.items[e.index]},addSubmenu:function(e){this.$set(this.submenus,e.index,e)},removeSubmenu:function(e){delete this.submenus[e.index]},openMenu:function(e,t){var n=this.openedMenus;-1===n.indexOf(e)&&(this.uniqueOpened&&(this.openedMenus=n.filter(function(e){return-1!==t.indexOf(e)})),this.openedMenus.push(e))},closeMenu:function(e){this.openedMenus.splice(this.openedMenus.indexOf(e),1)},handleSubmenuClick:function(e){var t=e.index,n=e.indexPath;-1!==this.openedMenus.indexOf(t)?(this.closeMenu(t),this.$emit("close",t,n)):(this.openMenu(t,n),this.$emit("open",t,n))},handleItemClick:function(e){var t=e.index,n=e.indexPath;this.activeIndex=e.index,this.$emit("select",t,n,e),("horizontal"===this.mode||this.collapse)&&(this.openedMenus=[]),this.router&&this.routeToItem(e)},initOpenedMenu:function(){var e=this,t=this.activeIndex,n=this.items[t];if(n&&"horizontal"!==this.mode&&!this.collapse){n.indexPath.forEach(function(t){var n=e.submenus[t];n&&e.openMenu(t,n.indexPath)})}},routeToItem:function(e){var t=e.route||e.index;try{this.$router.push(t)}catch(e){}}},mounted:function(){this.initOpenedMenu(),this.$on("item-click",this.handleItemClick),this.$on("submenu-click",this.handleSubmenuClick)}}},function(e,t){e.exports=n(7)},function(e,t){e.exports={render:function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("el-menu-collapse-transition",[n("ul",{key:+e.collapse,staticClass:"el-menu",class:{"el-menu--horizontal":"horizontal"===e.mode,"el-menu--dark":"dark"===e.theme,"el-menu--collapse":e.collapse}},[e._t("default")],2)])},staticRenderFns:[]}},function(e,t,n){"use strict";t.__esModule=!0;var i=n(47),r=function(e){return e&&e.__esModule?e:{default:e}}(i);r.default.install=function(e){e.component(r.default.name,r.default)},t.default=r.default},function(e,t,n){var i=n(5)(n(48),n(51),null,null,null);e.exports=i.exports},function(e,t,n){"use strict";function i(e){return e&&e.__esModule?e:{default:e}}t.__esModule=!0;var r=n(49),o=i(r),a=n(50),l=i(a),s=n(15),u=i(s);t.default={name:"ElSubmenu",componentName:"ElSubmenu",mixins:[l.default,u.default],components:{ElCollapseTransition:o.default},props:{index:{type:String,required:!0}},data:function(){return{timeout:null,items:{},submenus:{}}},computed:{menuTransitionName:function(){return this.rootMenu.collapse?"el-zoom-in-left":"el-zoom-in-top"},opened:function(){return this.rootMenu.openedMenus.indexOf(this.index)>-1},active:{cache:!1,get:function(){var e=!1,t=this.submenus,n=this.items;return Object.keys(n).forEach(function(t){n[t].active&&(e=!0)}),Object.keys(t).forEach(function(n){t[n].active&&(e=!0)}),e}}},methods:{addItem:function(e){this.$set(this.items,e.index,e)},removeItem:function(e){delete this.items[e.index]},addSubmenu:function(e){this.$set(this.submenus,e.index,e)},removeSubmenu:function(e){delete this.submenus[e.index]},handleClick:function(){var e=this.rootMenu;"hover"===e.menuTrigger&&"horizontal"===e.mode||e.collapse&&"vertical"===e.mode||this.dispatch("ElMenu","submenu-click",this)},handleMouseenter:function(){var e=this,t=this.rootMenu;"click"===t.menuTrigger&&"horizontal"===t.mode||!t.collapse&&"vertical"===t.mode||(clearTimeout(this.timeout),this.timeout=setTimeout(function(){e.rootMenu.openMenu(e.index,e.indexPath)},300))},handleMouseleave:function(){var e=this,t=this.rootMenu;"click"===t.menuTrigger&&"horizontal"===t.mode||!t.collapse&&"vertical"===t.mode||(clearTimeout(this.timeout),this.timeout=setTimeout(function(){e.rootMenu.closeMenu(e.index)},300))}},created:function(){this.parentMenu.addSubmenu(this),this.rootMenu.addSubmenu(this)},beforeDestroy:function(){this.parentMenu.removeSubmenu(this),this.rootMenu.removeSubmenu(this)}}},function(e,t){e.exports=n(92)},function(e,t){"use strict";t.__esModule=!0,t.default={computed:{indexPath:function(){for(var e=[this.index],t=this.$parent;"ElMenu"!==t.$options.componentName;)t.index&&e.unshift(t.index),t=t.$parent;return e},rootMenu:function(){for(var e=this.$parent;e&&"ElMenu"!==e.$options.componentName;)e=e.$parent;return e},parentMenu:function(){for(var e=this.$parent;e&&-1===["ElMenu","ElSubmenu"].indexOf(e.$options.componentName);)e=e.$parent;return e},paddingStyle:function(){if("vertical"!==this.rootMenu.mode)return{};var e=20,t=this.$parent;if(this.rootMenu.collapse)e=20;else for(;t&&"ElMenu"!==t.$options.componentName;)"ElSubmenu"===t.$options.componentName&&(e+=20),t=t.$parent;return{paddingLeft:e+"px"}}}}},function(e,t){e.exports={render:function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("li",{class:{"el-submenu":!0,"is-active":e.active,"is-opened":e.opened},on:{mouseenter:e.handleMouseenter,mouseleave:e.handleMouseleave}},[n("div",{ref:"submenu-title",staticClass:"el-submenu__title",style:e.paddingStyle,on:{click:e.handleClick}},[e._t("title"),n("i",{class:{"el-submenu__icon-arrow":!0,"el-icon-caret-bottom":"horizontal"===e.rootMenu.mode,"el-icon-arrow-down":"vertical"===e.rootMenu.mode&&!e.rootMenu.collapse,"el-icon-caret-right":"vertical"===e.rootMenu.mode&&e.rootMenu.collapse}})],2),"horizontal"===e.rootMenu.mode||"vertical"===e.rootMenu.mode&&e.rootMenu.collapse?[n("transition",{attrs:{name:e.menuTransitionName}},[n("ul",{directives:[{name:"show",rawName:"v-show",value:e.opened,expression:"opened"}],staticClass:"el-menu"},[e._t("default")],2)])]:n("el-collapse-transition",[n("ul",{directives:[{name:"show",rawName:"v-show",value:e.opened,expression:"opened"}],staticClass:"el-menu"},[e._t("default")],2)])],2)},staticRenderFns:[]}},function(e,t,n){"use strict";t.__esModule=!0;var i=n(53),r=function(e){return e&&e.__esModule?e:{default:e}}(i);r.default.install=function(e){e.component(r.default.name,r.default)},t.default=r.default},function(e,t,n){var i=n(5)(n(54),n(55),null,null,null);e.exports=i.exports},function(e,t,n){"use strict";function i(e){return e&&e.__esModule?e:{default:e}}t.__esModule=!0;var r=n(50),o=i(r),a=n(15),l=i(a);t.default={name:"ElMenuItem",componentName:"ElMenuItem",mixins:[o.default,l.default],props:{index:{type:String,required:!0},route:{type:Object,required:!1},disabled:{type:Boolean,required:!1}},computed:{active:function(){return this.index===this.rootMenu.activeIndex}},methods:{handleClick:function(){this.dispatch("ElMenu","item-click",this),this.$emit("click",this)}},created:function(){this.parentMenu.addItem(this),this.rootMenu.addItem(this)},beforeDestroy:function(){this.parentMenu.removeItem(this),this.rootMenu.removeItem(this)}}},function(e,t){e.exports={render:function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("li",{staticClass:"el-menu-item",class:{"is-active":e.active,"is-disabled":e.disabled},style:e.paddingStyle,on:{click:e.handleClick}},[e.$parent===e.rootMenu&&e.rootMenu.collapse?n("el-tooltip",{attrs:{effect:"dark",placement:"right"}},[n("div",{slot:"content"},[e._t("title")],2),n("div",{staticStyle:{position:"absolute",left:"0",top:"0",height:"100%",width:"100%",display:"inline-block","box-sizing":"border-box",padding:"0 20px"}},[e._t("default")],2)]):[e._t("default"),e._t("title")]],2)},staticRenderFns:[]}},function(e,t,n){"use strict";t.__esModule=!0;var i=n(57),r=function(e){return e&&e.__esModule?e:{default:e}}(i);r.default.install=function(e){e.component(r.default.name,r.default)},t.default=r.default},function(e,t,n){var i=n(5)(n(58),n(59),null,null,null);e.exports=i.exports},function(e,t){"use strict";t.__esModule=!0,t.default={name:"ElMenuItemGroup",componentName:"ElMenuItemGroup",inject:["rootMenu"],props:{title:{type:String}},data:function(){return{paddingLeft:20}},computed:{levelPadding:function(){var e=10,t=this.$parent;if(this.rootMenu.collapse)return 20;for(;t&&"ElMenu"!==t.$options.componentName;)"ElSubmenu"===t.$options.componentName&&(e+=20),t=t.$parent;return 10===e&&(e=20),e}}}},function(e,t){e.exports={render:function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("li",{staticClass:"el-menu-item-group"},[n("div",{staticClass:"el-menu-item-group__title",style:{paddingLeft:e.levelPadding+"px"}},[e.$slots.title?e._t("title"):[e._v(e._s(e.title))]],2),n("ul",[e._t("default")],2)])},staticRenderFns:[]}},function(e,t,n){"use strict";t.__esModule=!0;var i=n(61),r=function(e){return e&&e.__esModule?e:{default:e}}(i);r.default.install=function(e){e.component(r.default.name,r.default)},t.default=r.default},function(e,t,n){var i=n(5)(n(62),n(65),null,null,null);e.exports=i.exports},function(e,t,n){"use strict";function i(e){return e&&e.__esModule?e:{default:e}}t.__esModule=!0;var r=n(15),o=i(r),a=n(63),l=i(a),s=n(64),u=i(s);t.default={name:"ElInput",componentName:"ElInput",mixins:[o.default],data:function(){return{currentValue:this.value,textareaCalcStyle:{}}},props:{value:[String,Number],placeholder:String,size:String,resize:String,readonly:Boolean,autofocus:Boolean,icon:String,disabled:Boolean,type:{type:String,default:"text"},name:String,autosize:{type:[Boolean,Object],default:!1},rows:{type:Number,default:2},autoComplete:{type:String,default:"off"},form:String,maxlength:Number,minlength:Number,max:{},min:{},step:{},validateEvent:{type:Boolean,default:!0},onIconClick:Function},computed:{validating:function(){return"validating"===this.$parent.validateState},textareaStyle:function(){return(0,u.default)({},this.textareaCalcStyle,{resize:this.resize})}},watch:{value:function(e,t){this.setCurrentValue(e)}},methods:{handleBlur:function(e){this.$emit("blur",e),this.validateEvent&&this.dispatch("ElFormItem","el.form.blur",[this.currentValue])},inputSelect:function(){this.$refs.input.select()},resizeTextarea:function(){if(!this.$isServer){var e=this.autosize,t=this.type;if(e&&"textarea"===t){var n=e.minRows,i=e.maxRows;this.textareaCalcStyle=(0,l.default)(this.$refs.textarea,n,i)}}},handleFocus:function(e){this.$emit("focus",e)},handleInput:function(e){var t=e.target.value;this.$emit("input",t),this.setCurrentValue(t),this.$emit("change",t)},handleIconClick:function(e){this.onIconClick&&this.onIconClick(e),this.$emit("click",e)},setCurrentValue:function(e){var t=this;e!==this.currentValue&&(this.$nextTick(function(e){t.resizeTextarea()}),this.currentValue=e,this.validateEvent&&this.dispatch("ElFormItem","el.form.change",[e]))}},created:function(){this.$on("inputSelect",this.inputSelect)},mounted:function(){this.resizeTextarea()}}},function(e,t){"use strict";function n(e){var t=window.getComputedStyle(e),n=t.getPropertyValue("box-sizing"),i=parseFloat(t.getPropertyValue("padding-bottom"))+parseFloat(t.getPropertyValue("padding-top")),r=parseFloat(t.getPropertyValue("border-bottom-width"))+parseFloat(t.getPropertyValue("border-top-width"));return{contextStyle:a.map(function(e){return e+":"+t.getPropertyValue(e)}).join(";"),paddingSize:i,borderSize:r,boxSizing:n}}function i(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null,i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:null;r||(r=document.createElement("textarea"),document.body.appendChild(r));var a=n(e),l=a.paddingSize,s=a.borderSize,u=a.boxSizing,c=a.contextStyle;r.setAttribute("style",c+";"+o),r.value=e.value||e.placeholder||"";var d=r.scrollHeight;"border-box"===u?d+=s:"content-box"===u&&(d-=l),r.value="";var f=r.scrollHeight-l;if(null!==t){var p=f*t;"border-box"===u&&(p=p+l+s),d=Math.max(p,d)}if(null!==i){var h=f*i;"border-box"===u&&(h=h+l+s),d=Math.min(h,d)}return{height:d+"px"}}t.__esModule=!0,t.default=i;var r=void 0,o="\n height:0 !important;\n visibility:hidden !important;\n overflow:hidden !important;\n position:absolute !important;\n z-index:-1000 !important;\n top:0 !important;\n right:0 !important\n",a=["letter-spacing","line-height","padding-top","padding-bottom","font-family","font-weight","font-size","text-rendering","text-transform","width","text-indent","padding-left","padding-right","border-width","box-sizing"]},function(e,t){e.exports=n(15)},function(e,t){e.exports={render:function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{class:["textarea"===e.type?"el-textarea":"el-input",e.size?"el-input--"+e.size:"",{"is-disabled":e.disabled,"el-input-group":e.$slots.prepend||e.$slots.append,"el-input-group--append":e.$slots.append,"el-input-group--prepend":e.$slots.prepend}]},["textarea"!==e.type?[e.$slots.prepend?n("div",{staticClass:"el-input-group__prepend"},[e._t("prepend")],2):e._e(),e._t("icon",[e.icon?n("i",{staticClass:"el-input__icon",class:["el-icon-"+e.icon,e.onIconClick?"is-clickable":""],on:{click:e.handleIconClick}}):e._e()]),"textarea"!==e.type?n("input",e._b({ref:"input",staticClass:"el-input__inner",attrs:{autocomplete:e.autoComplete},domProps:{value:e.currentValue},on:{input:e.handleInput,focus:e.handleFocus,blur:e.handleBlur}},"input",e.$props)):e._e(),e.validating?n("i",{staticClass:"el-input__icon el-icon-loading"}):e._e(),e.$slots.append?n("div",{staticClass:"el-input-group__append"},[e._t("append")],2):e._e()]:n("textarea",e._b({ref:"textarea",staticClass:"el-textarea__inner",style:e.textareaStyle,domProps:{value:e.currentValue},on:{input:e.handleInput,focus:e.handleFocus,blur:e.handleBlur}},"textarea",e.$props))],2)},staticRenderFns:[]}},function(e,t,n){"use strict";t.__esModule=!0;var i=n(67),r=function(e){return e&&e.__esModule?e:{default:e}}(i);r.default.install=function(e){e.component(r.default.name,r.default)},t.default=r.default},function(e,t,n){var i=n(5)(n(68),n(70),null,null,null);e.exports=i.exports},function(e,t,n){"use strict";function i(e){return e&&e.__esModule?e:{default:e}}t.__esModule=!0;var r=n(20),o=i(r),a=n(44),l=n(69),s=i(l);t.default={name:"ElInputNumber",directives:{repeatClick:{bind:function(e,t,n){var i=null,r=void 0,o=function(){return n.context[t.expression].apply()},l=function(){new Date-r<100&&o(),clearInterval(i),i=null};(0,a.on)(e,"mousedown",function(){r=new Date,(0,a.once)(document,"mouseup",l),clearInterval(i),i=setInterval(o,100)})}}},components:{ElInput:o.default},props:{step:{type:Number,default:1},max:{type:Number,default:1/0},min:{type:Number,default:-1/0},value:{default:0},disabled:Boolean,size:String,controls:{type:Boolean,default:!0},debounce:{type:Number,default:300}},data:function(){return{currentValue:0}},watch:{value:{immediate:!0,handler:function(e){var t=Number(e);isNaN(t)||(t>=this.max&&(t=this.max),t<=this.min&&(t=this.min),this.currentValue=t,this.$emit("input",t))}}},computed:{minDisabled:function(){return this._decrease(this.value,this.step)<this.min},maxDisabled:function(){return this._increase(this.value,this.step)>this.max},precision:function(){var e=this.value,t=this.step,n=this.getPrecision;return Math.max(n(e),n(t))}},methods:{toPrecision:function(e,t){return void 0===t&&(t=this.precision),parseFloat(parseFloat(Number(e).toFixed(t)))},getPrecision:function(e){var t=e.toString(),n=t.indexOf("."),i=0;return-1!==n&&(i=t.length-n-1),i},_increase:function(e,t){if("number"!=typeof e)return this.currentValue;var n=Math.pow(10,this.precision);return this.toPrecision((n*e+n*t)/n)},_decrease:function(e,t){if("number"!=typeof e)return this.currentValue;var n=Math.pow(10,this.precision);return this.toPrecision((n*e-n*t)/n)},increase:function(){if(!this.disabled&&!this.maxDisabled){var e=this.value||0,t=this._increase(e,this.step);t>this.max||this.setCurrentValue(t)}},decrease:function(){if(!this.disabled&&!this.minDisabled){var e=this.value||0,t=this._decrease(e,this.step);t<this.min||this.setCurrentValue(t)}},handleBlur:function(){this.$refs.input.setCurrentValue(this.currentValue)},setCurrentValue:function(e){var t=this.currentValue;if(e>=this.max&&(e=this.max),e<=this.min&&(e=this.min),t===e)return void this.$refs.input.setCurrentValue(this.currentValue);this.$emit("change",e,t),this.$emit("input",e),this.currentValue=e},handleInput:function(e){if(""!==e){var t=Number(e);isNaN(t)?this.$refs.input.setCurrentValue(this.currentValue):this.setCurrentValue(t)}}},created:function(){var e=this;this.debounceHandleInput=(0,s.default)(this.debounce,function(t){e.handleInput(t)})}}},function(e,t){e.exports=n(12)},function(e,t){e.exports={render:function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"el-input-number",class:[e.size?"el-input-number--"+e.size:"",{"is-disabled":e.disabled},{"is-without-controls":!e.controls}]},[e.controls?n("span",{directives:[{name:"repeat-click",rawName:"v-repeat-click",value:e.decrease,expression:"decrease"}],staticClass:"el-input-number__decrease",class:{"is-disabled":e.minDisabled}},[n("i",{staticClass:"el-icon-minus"})]):e._e(),e.controls?n("span",{directives:[{name:"repeat-click",rawName:"v-repeat-click",value:e.increase,expression:"increase"}],staticClass:"el-input-number__increase",class:{"is-disabled":e.maxDisabled}},[n("i",{staticClass:"el-icon-plus"})]):e._e(),n("el-input",{ref:"input",attrs:{value:e.currentValue,disabled:e.disabled,size:e.size,max:e.max,min:e.min},on:{blur:e.handleBlur,input:e.debounceHandleInput},nativeOn:{keydown:[function(t){if(!("button"in t)&&e._k(t.keyCode,"up",38))return null;t.preventDefault(),e.increase(t)},function(t){if(!("button"in t)&&e._k(t.keyCode,"down",40))return null;t.preventDefault(),e.decrease(t)}]}},[e.$slots.prepend?n("template",{slot:"prepend"},[e._t("prepend")],2):e._e(),e.$slots.append?n("template",{slot:"append"},[e._t("append")],2):e._e()],2)],1)},staticRenderFns:[]}},function(e,t,n){"use strict";t.__esModule=!0;var i=n(72),r=function(e){return e&&e.__esModule?e:{default:e}}(i);r.default.install=function(e){e.component("el-radio",r.default)},t.default=r.default},function(e,t,n){var i=n(5)(n(73),n(74),null,null,null);e.exports=i.exports},function(e,t,n){"use strict";t.__esModule=!0;var i=n(15),r=function(e){return e&&e.__esModule?e:{default:e}}(i);t.default={name:"ElRadio",mixins:[r.default],componentName:"ElRadio",props:{value:{},label:{},disabled:Boolean,name:String},data:function(){return{focus:!1}},computed:{isGroup:function(){for(var e=this.$parent;e;){if("ElRadioGroup"===e.$options.componentName)return this._radioGroup=e,!0;e=e.$parent}return!1},model:{get:function(){return this.isGroup?this._radioGroup.value:this.value},set:function(e){this.isGroup?this.dispatch("ElRadioGroup","input",[e]):this.$emit("input",e)}},isDisabled:function(){return this.isGroup?this._radioGroup.disabled||this.disabled:this.disabled}}}},function(e,t){e.exports={render:function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("label",{staticClass:"el-radio"},[n("span",{staticClass:"el-radio__input",class:{"is-disabled":e.isDisabled,"is-checked":e.model===e.label,"is-focus":e.focus}},[n("span",{staticClass:"el-radio__inner"}),n("input",{directives:[{name:"model",rawName:"v-model",value:e.model,expression:"model"}],staticClass:"el-radio__original",attrs:{type:"radio",name:e.name,disabled:e.isDisabled},domProps:{value:e.label,checked:e._q(e.model,e.label)},on:{focus:function(t){e.focus=!0},blur:function(t){e.focus=!1},__c:function(t){e.model=e.label}}})]),n("span",{staticClass:"el-radio__label"},[e._t("default"),e.$slots.default?e._e():[e._v(e._s(e.label))]],2)])},staticRenderFns:[]}},function(e,t,n){"use strict";t.__esModule=!0;var i=n(76),r=function(e){return e&&e.__esModule?e:{default:e}}(i);r.default.install=function(e){e.component(r.default.name,r.default)},t.default=r.default},function(e,t,n){var i=n(5)(n(77),n(78),null,null,null);e.exports=i.exports},function(e,t,n){"use strict";t.__esModule=!0;var i=n(15),r=function(e){return e&&e.__esModule?e:{default:e}}(i);t.default={name:"ElRadioGroup",componentName:"ElRadioGroup",mixins:[r.default],props:{value:{},size:String,fill:String,textColor:String,disabled:Boolean},watch:{value:function(e){this.$emit("change",e),this.dispatch("ElFormItem","el.form.change",[this.value])}}}},function(e,t){e.exports={render:function(){var e=this,t=e.$createElement;return(e._self._c||t)("div",{staticClass:"el-radio-group"},[e._t("default")],2)},staticRenderFns:[]}},function(e,t,n){"use strict";t.__esModule=!0;var i=n(80),r=function(e){return e&&e.__esModule?e:{default:e}}(i);r.default.install=function(e){e.component(r.default.name,r.default)},t.default=r.default},function(e,t,n){var i=n(5)(n(81),n(82),null,null,null);e.exports=i.exports},function(e,t){"use strict";t.__esModule=!0,t.default={name:"ElRadioButton",props:{label:{},disabled:Boolean,name:String},computed:{value:{get:function(){return this._radioGroup.value},set:function(e){this._radioGroup.$emit("input",e)}},_radioGroup:function(){for(var e=this.$parent;e;){if("ElRadioGroup"===e.$options.componentName)return e;e=e.$parent}return!1},activeStyle:function(){return{backgroundColor:this._radioGroup.fill||"",borderColor:this._radioGroup.fill||"",bo