├── .eslintignore
├── .eslintrc.json
├── .github
└── workflows
│ └── tests.yml
├── .gitignore
├── .prettierrc.json
├── AUTHORS
├── CONTRIBUTING.md
├── LICENSE
├── README.md
├── app.yaml
├── app
├── css
│ ├── fonts
│ │ ├── q.eot
│ │ ├── q.svg
│ │ ├── q.ttf
│ │ └── q.woff
│ ├── icons.css
│ └── style.css
├── img
│ ├── direct-header.png
│ ├── direct-header@2x.png
│ ├── ic_add.png
│ ├── ic_add_48px.svg
│ ├── ic_add_wht.png
│ ├── ic_clear.png
│ ├── ic_clear_wht.png
│ ├── ic_color_fill.png
│ ├── ic_color_fill_wht.png
│ ├── ic_content_copy_grey600_48dp.svg
│ ├── ic_delete.png
│ ├── ic_delete_grey600_48dp.svg
│ ├── ic_delete_wht.png
│ ├── ic_edit.png
│ ├── ic_edit_wht.png
│ ├── ic_movie_48px.svg
│ ├── ic_save_wht.png
│ ├── ic_settings.png
│ ├── ic_settings_wht.png
│ ├── ic_unfold_less.png
│ └── ic_unfold_more.png
├── partials
│ ├── easing-custom.html
│ ├── easing-incoming.html
│ ├── easing-none.html
│ ├── easing-outgoing.html
│ ├── easing-quantum.html
│ ├── footer.html
│ ├── group.html
│ ├── home.html
│ ├── logo-header.html
│ ├── project-list.html
│ ├── spec-code.html
│ ├── spec-content-header.html
│ ├── spec-content-info.html
│ ├── spec-content.html
│ ├── spec-embed-details.html
│ ├── spec-header.html
│ ├── spec-row.html
│ ├── spec-settings.html
│ ├── spec-sidebar.html
│ ├── spec-toast.html
│ ├── spec.html
│ └── user.html
└── ts
│ ├── app.ts
│ ├── baseCtrl.ts
│ ├── canvasDirectives.ts
│ ├── config.ts
│ ├── config_sample.ts
│ ├── filters.ts
│ ├── gapi.ts
│ ├── groupCtrl.ts
│ ├── projectListService.ts
│ ├── sidebarCtrl.ts
│ ├── specCtrl.ts
│ ├── specDirectives.ts
│ ├── specResource.ts
│ ├── specTabCtrl.ts
│ ├── storageService.ts
│ └── userCtrl.ts
├── config_sample.yaml
├── cron.yaml
├── favicon.ico
├── index.yaml
├── main.py
├── models.py
├── package-lock.json
├── package.json
├── src
└── index.ts
├── templates
└── index.html
├── test
└── index.html
├── third_party
├── angular-ui-sortable
│ ├── .bower.json
│ ├── .travis.yml
│ ├── bower.json
│ ├── sortable.js
│ └── sortable.min.js
├── css
│ └── angular-material.css
├── jquery-ui
│ ├── .bower.json
│ ├── .gitignore
│ ├── README.md
│ ├── bower.json
│ ├── component.json
│ ├── composer.json
│ ├── jquery-ui.js
│ ├── jquery-ui.min.js
│ ├── package.json
│ ├── themes
│ │ ├── base
│ │ │ ├── accordion.css
│ │ │ ├── all.css
│ │ │ ├── autocomplete.css
│ │ │ ├── base.css
│ │ │ ├── button.css
│ │ │ ├── checkboxradio.css
│ │ │ ├── controlgroup.css
│ │ │ ├── core.css
│ │ │ ├── datepicker.css
│ │ │ ├── dialog.css
│ │ │ ├── draggable.css
│ │ │ ├── images
│ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png
│ │ │ │ ├── ui-icons_444444_256x240.png
│ │ │ │ ├── ui-icons_555555_256x240.png
│ │ │ │ ├── ui-icons_777620_256x240.png
│ │ │ │ ├── ui-icons_777777_256x240.png
│ │ │ │ ├── ui-icons_cc0000_256x240.png
│ │ │ │ └── ui-icons_ffffff_256x240.png
│ │ │ ├── jquery-ui.css
│ │ │ ├── jquery-ui.min.css
│ │ │ ├── menu.css
│ │ │ ├── progressbar.css
│ │ │ ├── resizable.css
│ │ │ ├── selectable.css
│ │ │ ├── selectmenu.css
│ │ │ ├── slider.css
│ │ │ ├── sortable.css
│ │ │ ├── spinner.css
│ │ │ ├── tabs.css
│ │ │ ├── theme.css
│ │ │ └── tooltip.css
│ │ ├── black-tie
│ │ │ ├── images
│ │ │ │ ├── ui-bg_diagonals-thick_8_333333_40x40.png
│ │ │ │ ├── ui-bg_glass_40_111111_1x400.png
│ │ │ │ ├── ui-bg_glass_55_1c1c1c_1x400.png
│ │ │ │ ├── ui-bg_highlight-hard_100_f9f9f9_1x100.png
│ │ │ │ ├── ui-bg_highlight-hard_40_aaaaaa_1x100.png
│ │ │ │ ├── ui-bg_highlight-soft_50_aaaaaa_1x100.png
│ │ │ │ ├── ui-bg_inset-hard_45_cd0a0a_1x100.png
│ │ │ │ ├── ui-bg_inset-hard_55_ffeb80_1x100.png
│ │ │ │ ├── ui-icons_222222_256x240.png
│ │ │ │ ├── ui-icons_4ca300_256x240.png
│ │ │ │ ├── ui-icons_bbbbbb_256x240.png
│ │ │ │ ├── ui-icons_ededed_256x240.png
│ │ │ │ ├── ui-icons_ffcf29_256x240.png
│ │ │ │ └── ui-icons_ffffff_256x240.png
│ │ │ ├── jquery-ui.css
│ │ │ ├── jquery-ui.min.css
│ │ │ └── theme.css
│ │ ├── blitzer
│ │ │ ├── images
│ │ │ │ ├── ui-bg_diagonals-thick_75_f3d8d8_40x40.png
│ │ │ │ ├── ui-bg_dots-small_65_a6a6a6_2x2.png
│ │ │ │ ├── ui-bg_glass_55_fbf8ee_1x400.png
│ │ │ │ ├── ui-bg_highlight-hard_100_eeeeee_1x100.png
│ │ │ │ ├── ui-bg_highlight-hard_100_f6f6f6_1x100.png
│ │ │ │ ├── ui-bg_highlight-soft_15_cc0000_1x100.png
│ │ │ │ ├── ui-icons_004276_256x240.png
│ │ │ │ ├── ui-icons_cc0000_256x240.png
│ │ │ │ └── ui-icons_ffffff_256x240.png
│ │ │ ├── jquery-ui.css
│ │ │ ├── jquery-ui.min.css
│ │ │ └── theme.css
│ │ ├── cupertino
│ │ │ ├── images
│ │ │ │ ├── ui-bg_diagonals-thick_90_eeeeee_40x40.png
│ │ │ │ ├── ui-bg_glass_100_e4f1fb_1x400.png
│ │ │ │ ├── ui-bg_glass_50_3baae3_1x400.png
│ │ │ │ ├── ui-bg_glass_80_d7ebf9_1x400.png
│ │ │ │ ├── ui-bg_highlight-hard_100_f2f5f7_1x100.png
│ │ │ │ ├── ui-bg_highlight-hard_70_000000_1x100.png
│ │ │ │ ├── ui-bg_highlight-soft_100_deedf7_1x100.png
│ │ │ │ ├── ui-bg_highlight-soft_25_ffef8f_1x100.png
│ │ │ │ ├── ui-icons_2694e8_256x240.png
│ │ │ │ ├── ui-icons_2e83ff_256x240.png
│ │ │ │ ├── ui-icons_3d80b3_256x240.png
│ │ │ │ ├── ui-icons_72a7cf_256x240.png
│ │ │ │ └── ui-icons_ffffff_256x240.png
│ │ │ ├── jquery-ui.css
│ │ │ ├── jquery-ui.min.css
│ │ │ └── theme.css
│ │ ├── dark-hive
│ │ │ ├── images
│ │ │ │ ├── ui-bg_glass_40_ffc73d_1x400.png
│ │ │ │ ├── ui-bg_highlight-hard_20_0972a5_1x100.png
│ │ │ │ ├── ui-bg_highlight-soft_33_003147_1x100.png
│ │ │ │ ├── ui-bg_highlight-soft_35_222222_1x100.png
│ │ │ │ ├── ui-bg_highlight-soft_44_444444_1x100.png
│ │ │ │ ├── ui-bg_highlight-soft_80_eeeeee_1x100.png
│ │ │ │ ├── ui-bg_loop_25_000000_21x21.png
│ │ │ │ ├── ui-icons_222222_256x240.png
│ │ │ │ ├── ui-icons_4b8e0b_256x240.png
│ │ │ │ ├── ui-icons_a83300_256x240.png
│ │ │ │ ├── ui-icons_cccccc_256x240.png
│ │ │ │ └── ui-icons_ffffff_256x240.png
│ │ │ ├── jquery-ui.css
│ │ │ ├── jquery-ui.min.css
│ │ │ └── theme.css
│ │ ├── dot-luv
│ │ │ ├── images
│ │ │ │ ├── ui-bg_diagonals-thick_15_0b3e6f_40x40.png
│ │ │ │ ├── ui-bg_dots-medium_30_0b58a2_4x4.png
│ │ │ │ ├── ui-bg_dots-small_20_333333_2x2.png
│ │ │ │ ├── ui-bg_dots-small_30_a32d00_2x2.png
│ │ │ │ ├── ui-bg_dots-small_40_00498f_2x2.png
│ │ │ │ ├── ui-bg_gloss-wave_20_111111_500x100.png
│ │ │ │ ├── ui-icons_00498f_256x240.png
│ │ │ │ ├── ui-icons_98d2fb_256x240.png
│ │ │ │ ├── ui-icons_9ccdfc_256x240.png
│ │ │ │ └── ui-icons_ffffff_256x240.png
│ │ │ ├── jquery-ui.css
│ │ │ ├── jquery-ui.min.css
│ │ │ └── theme.css
│ │ ├── eggplant
│ │ │ ├── images
│ │ │ │ ├── ui-bg_gloss-wave_30_3d3644_500x100.png
│ │ │ │ ├── ui-bg_highlight-soft_100_dcd9de_1x100.png
│ │ │ │ ├── ui-bg_highlight-soft_100_eae6ea_1x100.png
│ │ │ │ ├── ui-bg_highlight-soft_25_30273a_1x100.png
│ │ │ │ ├── ui-bg_highlight-soft_45_5f5964_1x100.png
│ │ │ │ ├── ui-icons_454545_256x240.png
│ │ │ │ ├── ui-icons_734d99_256x240.png
│ │ │ │ ├── ui-icons_8d78a5_256x240.png
│ │ │ │ ├── ui-icons_a8a3ae_256x240.png
│ │ │ │ ├── ui-icons_ebccce_256x240.png
│ │ │ │ └── ui-icons_ffffff_256x240.png
│ │ │ ├── jquery-ui.css
│ │ │ ├── jquery-ui.min.css
│ │ │ └── theme.css
│ │ ├── excite-bike
│ │ │ ├── images
│ │ │ │ ├── ui-bg_diagonals-small_25_c5ddfc_40x40.png
│ │ │ │ ├── ui-bg_diagonals-thick_20_e69700_40x40.png
│ │ │ │ ├── ui-bg_diagonals-thick_22_1484e6_40x40.png
│ │ │ │ ├── ui-bg_diagonals-thick_26_2293f7_40x40.png
│ │ │ │ ├── ui-bg_highlight-soft_100_f9f9f9_1x100.png
│ │ │ │ ├── ui-bg_inset-hard_100_eeeeee_1x100.png
│ │ │ │ ├── ui-icons_0a82eb_256x240.png
│ │ │ │ ├── ui-icons_0b54d5_256x240.png
│ │ │ │ ├── ui-icons_5fa5e3_256x240.png
│ │ │ │ ├── ui-icons_fcdd4a_256x240.png
│ │ │ │ └── ui-icons_ffffff_256x240.png
│ │ │ ├── jquery-ui.css
│ │ │ ├── jquery-ui.min.css
│ │ │ └── theme.css
│ │ ├── flick
│ │ │ ├── images
│ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png
│ │ │ │ ├── ui-bg_highlight-soft_100_f6f6f6_1x100.png
│ │ │ │ ├── ui-bg_highlight-soft_25_0073ea_1x100.png
│ │ │ │ ├── ui-bg_highlight-soft_50_dddddd_1x100.png
│ │ │ │ ├── ui-icons_0073ea_256x240.png
│ │ │ │ ├── ui-icons_454545_256x240.png
│ │ │ │ ├── ui-icons_666666_256x240.png
│ │ │ │ ├── ui-icons_ff0084_256x240.png
│ │ │ │ └── ui-icons_ffffff_256x240.png
│ │ │ ├── jquery-ui.css
│ │ │ ├── jquery-ui.min.css
│ │ │ └── theme.css
│ │ ├── hot-sneaks
│ │ │ ├── images
│ │ │ │ ├── ui-bg_diagonals-small_40_db4865_40x40.png
│ │ │ │ ├── ui-bg_diagonals-small_50_93c3cd_40x40.png
│ │ │ │ ├── ui-bg_diagonals-small_50_ff3853_40x40.png
│ │ │ │ ├── ui-bg_diagonals-small_75_ccd232_40x40.png
│ │ │ │ ├── ui-bg_dots-medium_80_ffff38_4x4.png
│ │ │ │ ├── ui-bg_dots-small_35_35414f_2x2.png
│ │ │ │ ├── ui-bg_white-lines_85_f7f7ba_40x100.png
│ │ │ │ ├── ui-icons_454545_256x240.png
│ │ │ │ ├── ui-icons_88a206_256x240.png
│ │ │ │ ├── ui-icons_c02669_256x240.png
│ │ │ │ ├── ui-icons_e1e463_256x240.png
│ │ │ │ ├── ui-icons_ffeb33_256x240.png
│ │ │ │ └── ui-icons_ffffff_256x240.png
│ │ │ ├── jquery-ui.css
│ │ │ ├── jquery-ui.min.css
│ │ │ └── theme.css
│ │ ├── humanity
│ │ │ ├── images
│ │ │ │ ├── ui-bg_glass_100_f5f0e5_1x400.png
│ │ │ │ ├── ui-bg_glass_25_cb842e_1x400.png
│ │ │ │ ├── ui-bg_glass_70_ede4d4_1x400.png
│ │ │ │ ├── ui-bg_highlight-hard_100_f4f0ec_1x100.png
│ │ │ │ ├── ui-bg_highlight-hard_65_fee4bd_1x100.png
│ │ │ │ ├── ui-bg_highlight-hard_75_f5f5b5_1x100.png
│ │ │ │ ├── ui-bg_inset-soft_100_f4f0ec_1x100.png
│ │ │ │ ├── ui-icons_c47a23_256x240.png
│ │ │ │ ├── ui-icons_cb672b_256x240.png
│ │ │ │ ├── ui-icons_f08000_256x240.png
│ │ │ │ ├── ui-icons_f35f07_256x240.png
│ │ │ │ ├── ui-icons_ff7519_256x240.png
│ │ │ │ └── ui-icons_ffffff_256x240.png
│ │ │ ├── jquery-ui.css
│ │ │ ├── jquery-ui.min.css
│ │ │ └── theme.css
│ │ ├── le-frog
│ │ │ ├── images
│ │ │ │ ├── ui-bg_diagonals-small_0_aaaaaa_40x40.png
│ │ │ │ ├── ui-bg_diagonals-thick_15_444444_40x40.png
│ │ │ │ ├── ui-bg_diagonals-thick_95_ffdc2e_40x40.png
│ │ │ │ ├── ui-bg_glass_55_fbf5d0_1x400.png
│ │ │ │ ├── ui-bg_highlight-hard_30_285c00_1x100.png
│ │ │ │ ├── ui-bg_highlight-soft_33_3a8104_1x100.png
│ │ │ │ ├── ui-bg_highlight-soft_50_4eb305_1x100.png
│ │ │ │ ├── ui-bg_highlight-soft_60_4ca20b_1x100.png
│ │ │ │ ├── ui-bg_inset-soft_10_285c00_1x100.png
│ │ │ │ ├── ui-icons_4eb305_256x240.png
│ │ │ │ ├── ui-icons_72b42d_256x240.png
│ │ │ │ ├── ui-icons_cd0a0a_256x240.png
│ │ │ │ └── ui-icons_ffffff_256x240.png
│ │ │ ├── jquery-ui.css
│ │ │ ├── jquery-ui.min.css
│ │ │ └── theme.css
│ │ ├── mint-choc
│ │ │ ├── images
│ │ │ │ ├── ui-bg_glass_15_5f391b_1x400.png
│ │ │ │ ├── ui-bg_gloss-wave_20_1c160d_500x100.png
│ │ │ │ ├── ui-bg_gloss-wave_25_453326_500x100.png
│ │ │ │ ├── ui-bg_gloss-wave_30_44372c_500x100.png
│ │ │ │ ├── ui-bg_highlight-soft_20_201913_1x100.png
│ │ │ │ ├── ui-bg_highlight-soft_20_619226_1x100.png
│ │ │ │ ├── ui-bg_inset-soft_10_201913_1x100.png
│ │ │ │ ├── ui-icons_222222_256x240.png
│ │ │ │ ├── ui-icons_9bcc60_256x240.png
│ │ │ │ ├── ui-icons_add978_256x240.png
│ │ │ │ ├── ui-icons_e3ddc9_256x240.png
│ │ │ │ ├── ui-icons_f1fd86_256x240.png
│ │ │ │ └── ui-icons_ffffff_256x240.png
│ │ │ ├── jquery-ui.css
│ │ │ ├── jquery-ui.min.css
│ │ │ └── theme.css
│ │ ├── overcast
│ │ │ ├── images
│ │ │ │ ├── ui-bg_glass_100_f8f8f8_1x400.png
│ │ │ │ ├── ui-bg_glass_35_dddddd_1x400.png
│ │ │ │ ├── ui-bg_glass_60_eeeeee_1x400.png
│ │ │ │ ├── ui-bg_inset-hard_75_999999_1x100.png
│ │ │ │ ├── ui-bg_inset-soft_50_c9c9c9_1x100.png
│ │ │ │ ├── ui-icons_3383bb_256x240.png
│ │ │ │ ├── ui-icons_454545_256x240.png
│ │ │ │ ├── ui-icons_70b2e1_256x240.png
│ │ │ │ ├── ui-icons_999999_256x240.png
│ │ │ │ └── ui-icons_fbc856_256x240.png
│ │ │ ├── jquery-ui.css
│ │ │ ├── jquery-ui.min.css
│ │ │ └── theme.css
│ │ ├── pepper-grinder
│ │ │ ├── images
│ │ │ │ ├── ui-bg_diagonal-maze_20_6e4f1c_10x10.png
│ │ │ │ ├── ui-bg_diagonal-maze_40_000000_10x10.png
│ │ │ │ ├── ui-bg_fine-grain_10_eceadf_60x60.png
│ │ │ │ ├── ui-bg_fine-grain_10_f8f7f6_60x60.png
│ │ │ │ ├── ui-bg_fine-grain_15_eceadf_60x60.png
│ │ │ │ ├── ui-bg_fine-grain_15_f7f3de_60x60.png
│ │ │ │ ├── ui-bg_fine-grain_15_ffffff_60x60.png
│ │ │ │ ├── ui-bg_fine-grain_65_654b24_60x60.png
│ │ │ │ ├── ui-bg_fine-grain_68_b83400_60x60.png
│ │ │ │ ├── ui-icons_222222_256x240.png
│ │ │ │ ├── ui-icons_3572ac_256x240.png
│ │ │ │ ├── ui-icons_8c291d_256x240.png
│ │ │ │ ├── ui-icons_b83400_256x240.png
│ │ │ │ ├── ui-icons_fbdb93_256x240.png
│ │ │ │ └── ui-icons_ffffff_256x240.png
│ │ │ ├── jquery-ui.css
│ │ │ ├── jquery-ui.min.css
│ │ │ └── theme.css
│ │ ├── redmond
│ │ │ ├── images
│ │ │ │ ├── ui-bg_glass_75_d0e5f5_1x400.png
│ │ │ │ ├── ui-bg_glass_85_dfeffc_1x400.png
│ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png
│ │ │ │ ├── ui-bg_gloss-wave_55_5c9ccc_500x100.png
│ │ │ │ ├── ui-bg_inset-hard_100_f5f8f9_1x100.png
│ │ │ │ ├── ui-bg_inset-hard_100_fcfdfd_1x100.png
│ │ │ │ ├── ui-icons_217bc0_256x240.png
│ │ │ │ ├── ui-icons_2e83ff_256x240.png
│ │ │ │ ├── ui-icons_469bdd_256x240.png
│ │ │ │ ├── ui-icons_6da8d5_256x240.png
│ │ │ │ ├── ui-icons_cd0a0a_256x240.png
│ │ │ │ ├── ui-icons_d8e7f3_256x240.png
│ │ │ │ └── ui-icons_f9bd01_256x240.png
│ │ │ ├── jquery-ui.css
│ │ │ ├── jquery-ui.min.css
│ │ │ └── theme.css
│ │ ├── smoothness
│ │ │ ├── images
│ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png
│ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png
│ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png
│ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png
│ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png
│ │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png
│ │ │ │ ├── ui-icons_222222_256x240.png
│ │ │ │ ├── ui-icons_2e83ff_256x240.png
│ │ │ │ ├── ui-icons_454545_256x240.png
│ │ │ │ ├── ui-icons_888888_256x240.png
│ │ │ │ └── ui-icons_cd0a0a_256x240.png
│ │ │ ├── jquery-ui.css
│ │ │ ├── jquery-ui.min.css
│ │ │ └── theme.css
│ │ ├── south-street
│ │ │ ├── images
│ │ │ │ ├── ui-bg_glass_55_fcf0ba_1x400.png
│ │ │ │ ├── ui-bg_gloss-wave_100_ece8da_500x100.png
│ │ │ │ ├── ui-bg_highlight-hard_100_f5f3e5_1x100.png
│ │ │ │ ├── ui-bg_highlight-hard_100_fafaf4_1x100.png
│ │ │ │ ├── ui-bg_highlight-hard_15_459e00_1x100.png
│ │ │ │ ├── ui-bg_highlight-hard_95_cccccc_1x100.png
│ │ │ │ ├── ui-bg_highlight-soft_25_67b021_1x100.png
│ │ │ │ ├── ui-bg_highlight-soft_95_ffedad_1x100.png
│ │ │ │ ├── ui-bg_inset-soft_15_2b2922_1x100.png
│ │ │ │ ├── ui-icons_808080_256x240.png
│ │ │ │ ├── ui-icons_847e71_256x240.png
│ │ │ │ ├── ui-icons_8DC262_256x240.png
│ │ │ │ ├── ui-icons_cd0a0a_256x240.png
│ │ │ │ ├── ui-icons_eeeeee_256x240.png
│ │ │ │ └── ui-icons_ffffff_256x240.png
│ │ │ ├── jquery-ui.css
│ │ │ ├── jquery-ui.min.css
│ │ │ └── theme.css
│ │ ├── start
│ │ │ ├── images
│ │ │ │ ├── ui-bg_glass_45_0078ae_1x400.png
│ │ │ │ ├── ui-bg_glass_55_f8da4e_1x400.png
│ │ │ │ ├── ui-bg_glass_75_79c9ec_1x400.png
│ │ │ │ ├── ui-bg_gloss-wave_45_e14f1c_500x100.png
│ │ │ │ ├── ui-bg_gloss-wave_50_6eac2c_500x100.png
│ │ │ │ ├── ui-bg_gloss-wave_75_2191c0_500x100.png
│ │ │ │ ├── ui-bg_inset-hard_100_fcfdfd_1x100.png
│ │ │ │ ├── ui-icons_0078ae_256x240.png
│ │ │ │ ├── ui-icons_056b93_256x240.png
│ │ │ │ ├── ui-icons_d8e7f3_256x240.png
│ │ │ │ ├── ui-icons_e0fdff_256x240.png
│ │ │ │ ├── ui-icons_f5e175_256x240.png
│ │ │ │ ├── ui-icons_f7a50d_256x240.png
│ │ │ │ └── ui-icons_fcd113_256x240.png
│ │ │ ├── jquery-ui.css
│ │ │ ├── jquery-ui.min.css
│ │ │ └── theme.css
│ │ ├── sunny
│ │ │ ├── images
│ │ │ │ ├── ui-bg_diagonals-medium_20_d34d17_40x40.png
│ │ │ │ ├── ui-bg_gloss-wave_45_817865_500x100.png
│ │ │ │ ├── ui-bg_gloss-wave_60_fece2f_500x100.png
│ │ │ │ ├── ui-bg_gloss-wave_70_ffdd57_500x100.png
│ │ │ │ ├── ui-bg_gloss-wave_90_fff9e5_500x100.png
│ │ │ │ ├── ui-bg_highlight-soft_100_feeebd_1x100.png
│ │ │ │ ├── ui-bg_inset-soft_30_ffffff_1x100.png
│ │ │ │ ├── ui-icons_3d3d3d_256x240.png
│ │ │ │ ├── ui-icons_bd7b00_256x240.png
│ │ │ │ ├── ui-icons_d19405_256x240.png
│ │ │ │ ├── ui-icons_eb990f_256x240.png
│ │ │ │ ├── ui-icons_ed9f26_256x240.png
│ │ │ │ ├── ui-icons_fadc7a_256x240.png
│ │ │ │ └── ui-icons_ffe180_256x240.png
│ │ │ ├── jquery-ui.css
│ │ │ ├── jquery-ui.min.css
│ │ │ └── theme.css
│ │ ├── swanky-purse
│ │ │ ├── images
│ │ │ │ ├── ui-bg_diamond_10_4f4221_10x8.png
│ │ │ │ ├── ui-bg_diamond_20_372806_10x8.png
│ │ │ │ ├── ui-bg_diamond_25_675423_10x8.png
│ │ │ │ ├── ui-bg_diamond_25_d5ac5d_10x8.png
│ │ │ │ ├── ui-bg_diamond_8_261803_10x8.png
│ │ │ │ ├── ui-bg_diamond_8_443113_10x8.png
│ │ │ │ ├── ui-bg_highlight-hard_65_fee4bd_1x100.png
│ │ │ │ ├── ui-icons_070603_256x240.png
│ │ │ │ ├── ui-icons_e8e2b5_256x240.png
│ │ │ │ ├── ui-icons_e9cd86_256x240.png
│ │ │ │ ├── ui-icons_efec9f_256x240.png
│ │ │ │ ├── ui-icons_f2ec64_256x240.png
│ │ │ │ ├── ui-icons_f9f2bd_256x240.png
│ │ │ │ └── ui-icons_ff7519_256x240.png
│ │ │ ├── jquery-ui.css
│ │ │ ├── jquery-ui.min.css
│ │ │ └── theme.css
│ │ ├── trontastic
│ │ │ ├── images
│ │ │ │ ├── ui-bg_diagonals-small_50_262626_40x40.png
│ │ │ │ ├── ui-bg_glass_40_0a0a0a_1x400.png
│ │ │ │ ├── ui-bg_glass_55_f1fbe5_1x400.png
│ │ │ │ ├── ui-bg_glass_60_000000_1x400.png
│ │ │ │ ├── ui-bg_gloss-wave_55_000000_500x100.png
│ │ │ │ ├── ui-bg_gloss-wave_85_9fda58_500x100.png
│ │ │ │ ├── ui-bg_gloss-wave_95_f6ecd5_500x100.png
│ │ │ │ ├── ui-icons_000000_256x240.png
│ │ │ │ ├── ui-icons_1f1f1f_256x240.png
│ │ │ │ ├── ui-icons_9fda58_256x240.png
│ │ │ │ ├── ui-icons_b8ec79_256x240.png
│ │ │ │ ├── ui-icons_cd0a0a_256x240.png
│ │ │ │ └── ui-icons_ffffff_256x240.png
│ │ │ ├── jquery-ui.css
│ │ │ ├── jquery-ui.min.css
│ │ │ └── theme.css
│ │ ├── ui-darkness
│ │ │ ├── images
│ │ │ │ ├── ui-bg_glass_20_555555_1x400.png
│ │ │ │ ├── ui-bg_glass_40_0078a3_1x400.png
│ │ │ │ ├── ui-bg_glass_40_ffc73d_1x400.png
│ │ │ │ ├── ui-bg_gloss-wave_25_333333_500x100.png
│ │ │ │ ├── ui-bg_highlight-soft_80_eeeeee_1x100.png
│ │ │ │ ├── ui-bg_inset-soft_25_000000_1x100.png
│ │ │ │ ├── ui-bg_inset-soft_30_f58400_1x100.png
│ │ │ │ ├── ui-icons_222222_256x240.png
│ │ │ │ ├── ui-icons_4b8e0b_256x240.png
│ │ │ │ ├── ui-icons_a83300_256x240.png
│ │ │ │ ├── ui-icons_cccccc_256x240.png
│ │ │ │ └── ui-icons_ffffff_256x240.png
│ │ │ ├── jquery-ui.css
│ │ │ ├── jquery-ui.min.css
│ │ │ └── theme.css
│ │ ├── ui-lightness
│ │ │ ├── images
│ │ │ │ ├── ui-bg_diagonals-thick_18_b81900_40x40.png
│ │ │ │ ├── ui-bg_diagonals-thick_20_666666_40x40.png
│ │ │ │ ├── ui-bg_glass_100_f6f6f6_1x400.png
│ │ │ │ ├── ui-bg_glass_100_fdf5ce_1x400.png
│ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png
│ │ │ │ ├── ui-bg_gloss-wave_35_f6a828_500x100.png
│ │ │ │ ├── ui-bg_highlight-soft_100_eeeeee_1x100.png
│ │ │ │ ├── ui-bg_highlight-soft_75_ffe45c_1x100.png
│ │ │ │ ├── ui-icons_222222_256x240.png
│ │ │ │ ├── ui-icons_228ef1_256x240.png
│ │ │ │ ├── ui-icons_ef8c08_256x240.png
│ │ │ │ ├── ui-icons_ffd27a_256x240.png
│ │ │ │ └── ui-icons_ffffff_256x240.png
│ │ │ ├── jquery-ui.css
│ │ │ ├── jquery-ui.min.css
│ │ │ └── theme.css
│ │ └── vader
│ │ │ ├── images
│ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png
│ │ │ ├── ui-bg_gloss-wave_16_121212_500x100.png
│ │ │ ├── ui-bg_highlight-hard_15_888888_1x100.png
│ │ │ ├── ui-bg_highlight-hard_55_555555_1x100.png
│ │ │ ├── ui-bg_highlight-soft_35_adadad_1x100.png
│ │ │ ├── ui-bg_highlight-soft_60_dddddd_1x100.png
│ │ │ ├── ui-bg_inset-soft_15_121212_1x100.png
│ │ │ ├── ui-icons_666666_256x240.png
│ │ │ ├── ui-icons_aaaaaa_256x240.png
│ │ │ ├── ui-icons_bbbbbb_256x240.png
│ │ │ ├── ui-icons_c98000_256x240.png
│ │ │ ├── ui-icons_cccccc_256x240.png
│ │ │ ├── ui-icons_cd0a0a_256x240.png
│ │ │ └── ui-icons_f29a00_256x240.png
│ │ │ ├── jquery-ui.css
│ │ │ ├── jquery-ui.min.css
│ │ │ └── theme.css
│ └── ui
│ │ ├── .jshintrc
│ │ ├── core.js
│ │ ├── data.js
│ │ ├── disable-selection.js
│ │ ├── effect.js
│ │ ├── effects
│ │ ├── effect-blind.js
│ │ ├── effect-bounce.js
│ │ ├── effect-clip.js
│ │ ├── effect-drop.js
│ │ ├── effect-explode.js
│ │ ├── effect-fade.js
│ │ ├── effect-fold.js
│ │ ├── effect-highlight.js
│ │ ├── effect-puff.js
│ │ ├── effect-pulsate.js
│ │ ├── effect-scale.js
│ │ ├── effect-shake.js
│ │ ├── effect-size.js
│ │ ├── effect-slide.js
│ │ └── effect-transfer.js
│ │ ├── escape-selector.js
│ │ ├── focusable.js
│ │ ├── form-reset-mixin.js
│ │ ├── form.js
│ │ ├── i18n
│ │ ├── datepicker-af.js
│ │ ├── datepicker-ar-DZ.js
│ │ ├── datepicker-ar.js
│ │ ├── datepicker-az.js
│ │ ├── datepicker-be.js
│ │ ├── datepicker-bg.js
│ │ ├── datepicker-bs.js
│ │ ├── datepicker-ca.js
│ │ ├── datepicker-cs.js
│ │ ├── datepicker-cy-GB.js
│ │ ├── datepicker-da.js
│ │ ├── datepicker-de.js
│ │ ├── datepicker-el.js
│ │ ├── datepicker-en-AU.js
│ │ ├── datepicker-en-GB.js
│ │ ├── datepicker-en-NZ.js
│ │ ├── datepicker-eo.js
│ │ ├── datepicker-es.js
│ │ ├── datepicker-et.js
│ │ ├── datepicker-eu.js
│ │ ├── datepicker-fa.js
│ │ ├── datepicker-fi.js
│ │ ├── datepicker-fo.js
│ │ ├── datepicker-fr-CA.js
│ │ ├── datepicker-fr-CH.js
│ │ ├── datepicker-fr.js
│ │ ├── datepicker-gl.js
│ │ ├── datepicker-he.js
│ │ ├── datepicker-hi.js
│ │ ├── datepicker-hr.js
│ │ ├── datepicker-hu.js
│ │ ├── datepicker-hy.js
│ │ ├── datepicker-id.js
│ │ ├── datepicker-is.js
│ │ ├── datepicker-it-CH.js
│ │ ├── datepicker-it.js
│ │ ├── datepicker-ja.js
│ │ ├── datepicker-ka.js
│ │ ├── datepicker-kk.js
│ │ ├── datepicker-km.js
│ │ ├── datepicker-ko.js
│ │ ├── datepicker-ky.js
│ │ ├── datepicker-lb.js
│ │ ├── datepicker-lt.js
│ │ ├── datepicker-lv.js
│ │ ├── datepicker-mk.js
│ │ ├── datepicker-ml.js
│ │ ├── datepicker-ms.js
│ │ ├── datepicker-nb.js
│ │ ├── datepicker-nl-BE.js
│ │ ├── datepicker-nl.js
│ │ ├── datepicker-nn.js
│ │ ├── datepicker-no.js
│ │ ├── datepicker-pl.js
│ │ ├── datepicker-pt-BR.js
│ │ ├── datepicker-pt.js
│ │ ├── datepicker-rm.js
│ │ ├── datepicker-ro.js
│ │ ├── datepicker-ru.js
│ │ ├── datepicker-sk.js
│ │ ├── datepicker-sl.js
│ │ ├── datepicker-sq.js
│ │ ├── datepicker-sr-SR.js
│ │ ├── datepicker-sr.js
│ │ ├── datepicker-sv.js
│ │ ├── datepicker-ta.js
│ │ ├── datepicker-th.js
│ │ ├── datepicker-tj.js
│ │ ├── datepicker-tr.js
│ │ ├── datepicker-uk.js
│ │ ├── datepicker-vi.js
│ │ ├── datepicker-zh-CN.js
│ │ ├── datepicker-zh-HK.js
│ │ └── datepicker-zh-TW.js
│ │ ├── ie.js
│ │ ├── jquery-1-7.js
│ │ ├── keycode.js
│ │ ├── labels.js
│ │ ├── minified
│ │ ├── core.js
│ │ ├── data.js
│ │ ├── disable-selection.js
│ │ ├── effect.js
│ │ ├── escape-selector.js
│ │ ├── focusable.js
│ │ ├── form-reset-mixin.js
│ │ ├── form.js
│ │ ├── i18n
│ │ │ ├── datepicker-af.js
│ │ │ ├── datepicker-ar-DZ.js
│ │ │ ├── datepicker-ar.js
│ │ │ ├── datepicker-az.js
│ │ │ ├── datepicker-be.js
│ │ │ ├── datepicker-bg.js
│ │ │ ├── datepicker-bs.js
│ │ │ ├── datepicker-ca.js
│ │ │ ├── datepicker-cs.js
│ │ │ ├── datepicker-cy-GB.js
│ │ │ ├── datepicker-da.js
│ │ │ ├── datepicker-de.js
│ │ │ ├── datepicker-el.js
│ │ │ ├── datepicker-en-AU.js
│ │ │ ├── datepicker-en-GB.js
│ │ │ ├── datepicker-en-NZ.js
│ │ │ ├── datepicker-eo.js
│ │ │ ├── datepicker-es.js
│ │ │ ├── datepicker-et.js
│ │ │ ├── datepicker-eu.js
│ │ │ ├── datepicker-fa.js
│ │ │ ├── datepicker-fi.js
│ │ │ ├── datepicker-fo.js
│ │ │ ├── datepicker-fr-CA.js
│ │ │ ├── datepicker-fr-CH.js
│ │ │ ├── datepicker-fr.js
│ │ │ ├── datepicker-gl.js
│ │ │ ├── datepicker-he.js
│ │ │ ├── datepicker-hi.js
│ │ │ ├── datepicker-hr.js
│ │ │ ├── datepicker-hu.js
│ │ │ ├── datepicker-hy.js
│ │ │ ├── datepicker-id.js
│ │ │ ├── datepicker-is.js
│ │ │ ├── datepicker-it-CH.js
│ │ │ ├── datepicker-it.js
│ │ │ ├── datepicker-ja.js
│ │ │ ├── datepicker-ka.js
│ │ │ ├── datepicker-kk.js
│ │ │ ├── datepicker-km.js
│ │ │ ├── datepicker-ko.js
│ │ │ ├── datepicker-ky.js
│ │ │ ├── datepicker-lb.js
│ │ │ ├── datepicker-lt.js
│ │ │ ├── datepicker-lv.js
│ │ │ ├── datepicker-mk.js
│ │ │ ├── datepicker-ml.js
│ │ │ ├── datepicker-ms.js
│ │ │ ├── datepicker-nb.js
│ │ │ ├── datepicker-nl-BE.js
│ │ │ ├── datepicker-nl.js
│ │ │ ├── datepicker-nn.js
│ │ │ ├── datepicker-no.js
│ │ │ ├── datepicker-pl.js
│ │ │ ├── datepicker-pt-BR.js
│ │ │ ├── datepicker-pt.js
│ │ │ ├── datepicker-rm.js
│ │ │ ├── datepicker-ro.js
│ │ │ ├── datepicker-ru.js
│ │ │ ├── datepicker-sk.js
│ │ │ ├── datepicker-sl.js
│ │ │ ├── datepicker-sq.js
│ │ │ ├── datepicker-sr-SR.js
│ │ │ ├── datepicker-sr.js
│ │ │ ├── datepicker-sv.js
│ │ │ ├── datepicker-ta.js
│ │ │ ├── datepicker-th.js
│ │ │ ├── datepicker-tj.js
│ │ │ ├── datepicker-tr.js
│ │ │ ├── datepicker-uk.js
│ │ │ ├── datepicker-vi.js
│ │ │ ├── datepicker-zh-CN.js
│ │ │ ├── datepicker-zh-HK.js
│ │ │ └── datepicker-zh-TW.js
│ │ ├── ie.js
│ │ ├── jquery-1-7.js
│ │ ├── keycode.js
│ │ ├── labels.js
│ │ ├── plugin.js
│ │ ├── position.js
│ │ ├── safe-active-element.js
│ │ ├── safe-blur.js
│ │ ├── scroll-parent.js
│ │ ├── tabbable.js
│ │ ├── unique-id.js
│ │ ├── version.js
│ │ └── widget.js
│ │ ├── plugin.js
│ │ ├── position.js
│ │ ├── safe-active-element.js
│ │ ├── safe-blur.js
│ │ ├── scroll-parent.js
│ │ ├── tabbable.js
│ │ ├── unique-id.js
│ │ ├── version.js
│ │ ├── widget.js
│ │ └── widgets
│ │ ├── accordion.js
│ │ ├── autocomplete.js
│ │ ├── button.js
│ │ ├── checkboxradio.js
│ │ ├── controlgroup.js
│ │ ├── datepicker.js
│ │ ├── dialog.js
│ │ ├── draggable.js
│ │ ├── droppable.js
│ │ ├── menu.js
│ │ ├── mouse.js
│ │ ├── progressbar.js
│ │ ├── resizable.js
│ │ ├── selectable.js
│ │ ├── selectmenu.js
│ │ ├── slider.js
│ │ ├── sortable.js
│ │ ├── spinner.js
│ │ ├── tabs.js
│ │ └── tooltip.js
└── js
│ ├── angular-animate.js
│ ├── angular-aria.js
│ ├── angular-environment.min.js
│ ├── angular-local-storage.min.js
│ ├── angular-material.js
│ ├── angular-resource.js
│ ├── angular-route.js
│ ├── angular.js
│ ├── angularytics.min.js
│ ├── hammer.js
│ ├── jquery-ui.min.js
│ ├── jquery.min.js
│ ├── js-throttle-debounce.min.js
│ └── sortable.min.js
├── tsconfig.json
└── tutorial
├── direct1.png
├── direct3.png
├── direct4.png
├── direct5.png
├── direct6.png
├── index.html
└── style.css
/.eslintignore:
--------------------------------------------------------------------------------
1 | app/js/
2 |
--------------------------------------------------------------------------------
/.eslintrc.json:
--------------------------------------------------------------------------------
1 | {
2 | "extends": "./node_modules/gts/"
3 | }
4 |
--------------------------------------------------------------------------------
/.github/workflows/tests.yml:
--------------------------------------------------------------------------------
1 |
2 | name: Test
3 | on:
4 | push:
5 | branches:
6 | - master
7 | jobs:
8 | build:
9 | name: Build
10 | runs-on: ubuntu-latest
11 | steps:
12 | - name: Checkout
13 | uses: actions/checkout@master
14 | run: npm i
15 | run: npm run test
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | bower_components
2 | node_modules
3 | *.pyc
4 | .vscode
5 | .DS_Store
6 | app/js/*.js
7 | config.js
8 | config.yaml
9 |
10 | app/ts/config.ts
11 | spec.json
--------------------------------------------------------------------------------
/.prettierrc.json:
--------------------------------------------------------------------------------
1 | {
2 | "bracketSpacing": false,
3 | "singleQuote": true,
4 | "trailingComma": "es5",
5 | "arrowParens": "avoid"
6 | }
7 |
--------------------------------------------------------------------------------
/AUTHORS:
--------------------------------------------------------------------------------
1 | # This is the list of Direct authors for copyright purposes.
2 | #
3 | # This does not necessarily list everyone who has contributed code, since in
4 | # some cases, their employer may be the copyright holder. To see the full list
5 | # of contributors, see the revision history with git log.
6 |
7 | Google LLC
8 | and other contributors
9 |
--------------------------------------------------------------------------------
/app/css/fonts/q.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/app/css/fonts/q.eot
--------------------------------------------------------------------------------
/app/css/fonts/q.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/app/css/fonts/q.ttf
--------------------------------------------------------------------------------
/app/css/fonts/q.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/app/css/fonts/q.woff
--------------------------------------------------------------------------------
/app/img/direct-header.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/app/img/direct-header.png
--------------------------------------------------------------------------------
/app/img/direct-header@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/app/img/direct-header@2x.png
--------------------------------------------------------------------------------
/app/img/ic_add.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/app/img/ic_add.png
--------------------------------------------------------------------------------
/app/img/ic_add_48px.svg:
--------------------------------------------------------------------------------
1 |
5 |
--------------------------------------------------------------------------------
/app/img/ic_add_wht.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/app/img/ic_add_wht.png
--------------------------------------------------------------------------------
/app/img/ic_clear.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/app/img/ic_clear.png
--------------------------------------------------------------------------------
/app/img/ic_clear_wht.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/app/img/ic_clear_wht.png
--------------------------------------------------------------------------------
/app/img/ic_color_fill.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/app/img/ic_color_fill.png
--------------------------------------------------------------------------------
/app/img/ic_color_fill_wht.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/app/img/ic_color_fill_wht.png
--------------------------------------------------------------------------------
/app/img/ic_content_copy_grey600_48dp.svg:
--------------------------------------------------------------------------------
1 |
5 |
--------------------------------------------------------------------------------
/app/img/ic_delete.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/app/img/ic_delete.png
--------------------------------------------------------------------------------
/app/img/ic_delete_grey600_48dp.svg:
--------------------------------------------------------------------------------
1 |
5 |
--------------------------------------------------------------------------------
/app/img/ic_delete_wht.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/app/img/ic_delete_wht.png
--------------------------------------------------------------------------------
/app/img/ic_edit.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/app/img/ic_edit.png
--------------------------------------------------------------------------------
/app/img/ic_edit_wht.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/app/img/ic_edit_wht.png
--------------------------------------------------------------------------------
/app/img/ic_movie_48px.svg:
--------------------------------------------------------------------------------
1 |
5 |
--------------------------------------------------------------------------------
/app/img/ic_save_wht.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/app/img/ic_save_wht.png
--------------------------------------------------------------------------------
/app/img/ic_settings.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/app/img/ic_settings.png
--------------------------------------------------------------------------------
/app/img/ic_settings_wht.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/app/img/ic_settings_wht.png
--------------------------------------------------------------------------------
/app/img/ic_unfold_less.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/app/img/ic_unfold_less.png
--------------------------------------------------------------------------------
/app/img/ic_unfold_more.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/app/img/ic_unfold_more.png
--------------------------------------------------------------------------------
/app/partials/easing-incoming.html:
--------------------------------------------------------------------------------
1 |
Animation begins at full velocity and ends with easing.
2 |
3 |
6 |
7 |
10 |
11 |
14 |
--------------------------------------------------------------------------------
/app/partials/easing-none.html:
--------------------------------------------------------------------------------
1 | Animation has no easing.
2 |
--------------------------------------------------------------------------------
/app/partials/easing-outgoing.html:
--------------------------------------------------------------------------------
1 | Animation begins with easing and ends at full velocity.
2 |
3 |
6 |
7 |
10 |
11 |
14 |
--------------------------------------------------------------------------------
/app/partials/easing-quantum.html:
--------------------------------------------------------------------------------
1 | Animation begins and ends with easing.
2 |
3 |
6 |
7 |
10 |
11 |
14 |
--------------------------------------------------------------------------------
/app/partials/footer.html:
--------------------------------------------------------------------------------
1 |
4 |
--------------------------------------------------------------------------------
/app/partials/group.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/app/partials/logo-header.html:
--------------------------------------------------------------------------------
1 |
6 |
--------------------------------------------------------------------------------
/app/partials/spec-embed-details.html:
--------------------------------------------------------------------------------
1 |
13 |
--------------------------------------------------------------------------------
/app/partials/spec-header.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/app/partials/spec-sidebar.html:
--------------------------------------------------------------------------------
1 |
5 |
6 |
17 |
18 |
--------------------------------------------------------------------------------
/app/partials/spec-toast.html:
--------------------------------------------------------------------------------
1 |
2 |
3 | Video duration does not match timeline duration.
4 |
5 |
6 | Settings
7 |
8 |
9 | Close
10 |
11 |
12 |
--------------------------------------------------------------------------------
/app/partials/user.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/app/ts/config.ts:
--------------------------------------------------------------------------------
1 | (function (window) {
2 | window.__directConfig = window.__directConfig || {};
3 |
4 | window.__directConfig.stagingDomain = 'staging.example.com';
5 | window.__directConfig.productionDomain = 'example.com';
6 | })(
7 | // @ts-ignore
8 | this
9 | );
10 |
--------------------------------------------------------------------------------
/app/ts/config_sample.ts:
--------------------------------------------------------------------------------
1 | (function (window) {
2 | window.__directConfig = window.__directConfig || {};
3 |
4 | window.__directConfig.stagingDomain = 'staging.example.com';
5 | window.__directConfig.productionDomain = 'example.com';
6 | })(
7 | // @ts-ignore
8 | this
9 | );
10 |
--------------------------------------------------------------------------------
/app/ts/filters.ts:
--------------------------------------------------------------------------------
1 | // Copyright 2015 - present The Direct Authors. All Rights Reserved.
2 | //
3 | // Licensed under the Apache License, Version 2.0 (the 'License');
4 | // you may not use this file except in compliance with the License.
5 | // You may obtain a copy of the License at
6 | //
7 | // http://www.apache.org/licenses/LICENSE-2.0
8 | //
9 | // Unless required by applicable law or agreed to in writing, software
10 | // distributed under the License is distributed on an 'AS IS' BASIS,
11 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 | // See the License for the specific language governing permissions and
13 | // limitations under the License.
14 |
15 | import {app} from './app.js';
16 |
17 | app.filter('nl2br', [
18 | '$sce',
19 | function ($sce) {
20 | return function (text) {
21 | return text ? $sce.trustAsHtml(text.replace(/\n/g, '
')) : '';
22 | };
23 | },
24 | ]);
25 |
--------------------------------------------------------------------------------
/config_sample.yaml:
--------------------------------------------------------------------------------
1 | headers:
2 | X-Frame-Options: ALLOW-FROM https://example.com/
3 |
--------------------------------------------------------------------------------
/cron.yaml:
--------------------------------------------------------------------------------
1 | # Copyright 2015 - present The Direct Authors. All Rights Reserved.
2 | #
3 | # Licensed under the Apache License, Version 2.0 (the "License");
4 | # you may not use this file except in compliance with the License.
5 | # You may obtain a copy of the License at
6 | #
7 | # http://www.apache.org/licenses/LICENSE-2.0
8 | #
9 | # Unless required by applicable law or agreed to in writing, software
10 | # distributed under the License is distributed on an "AS IS" BASIS,
11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 | # See the License for the specific language governing permissions and
13 | # limitations under the License.
14 |
15 | # CRON job for scheduled backups
16 |
17 | cron:
18 | - description: Motion Spec Daily Backup
19 | url: /_ah/datastore_admin/backup.create?name=DailyBackupToBlobstore&kind=Spec&filesystem=blobstore
20 | schedule: every 24 hours
21 | target: ah-builtin-python-bundle
22 |
--------------------------------------------------------------------------------
/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/favicon.ico
--------------------------------------------------------------------------------
/src/index.ts:
--------------------------------------------------------------------------------
1 | console.log('Try npm run lint/fix!');
2 |
3 | const longString =
4 | 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer ut aliquet diam.';
5 |
6 | const trailing = 'Semicolon';
7 |
8 | const why = 'am I tabbed?';
9 |
10 | export function doSomeStuff(
11 | withThis: string,
12 | andThat: string,
13 | andThose: string[]
14 | ) {
15 | //function on one line
16 | if (!andThose.length) {
17 | return false;
18 | }
19 | console.log(withThis);
20 | console.log(andThat);
21 | console.dir(andThose);
22 | return;
23 | }
24 | // TODO: more examples
25 |
--------------------------------------------------------------------------------
/third_party/angular-ui-sortable/.bower.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "angular-ui-sortable",
3 | "version": "0.17.2",
4 | "main": [
5 | "./sortable.js"
6 | ],
7 | "dependencies": {
8 | "angular": ">=1.2.x",
9 | "jquery": ">=3.1.x",
10 | "jquery-ui": ">=1.12.x"
11 | },
12 | "homepage": "https://github.com/angular-ui/ui-sortable",
13 | "_release": "0.17.2",
14 | "_resolution": {
15 | "type": "version",
16 | "tag": "v0.17.2",
17 | "commit": "017fbd3f911576914915aa3dd08022c83b7fd3a3"
18 | },
19 | "_source": "https://github.com/angular-ui/ui-sortable.git",
20 | "_target": "^0.17.1",
21 | "_originalSource": "angular-ui-sortable"
22 | }
--------------------------------------------------------------------------------
/third_party/angular-ui-sortable/.travis.yml:
--------------------------------------------------------------------------------
1 | ---
2 | # blacklist the bower branch
3 | branches:
4 | only:
5 | - master
6 |
--------------------------------------------------------------------------------
/third_party/angular-ui-sortable/bower.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "angular-ui-sortable",
3 | "version": "0.17.2",
4 | "main": ["./sortable.js"],
5 | "dependencies": {
6 | "angular": ">=1.2.x",
7 | "jquery": ">=3.1.x",
8 | "jquery-ui": ">=1.12.x"
9 | }
10 | }
11 |
--------------------------------------------------------------------------------
/third_party/jquery-ui/.bower.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "jquery-ui",
3 | "version": "1.12.1",
4 | "main": [
5 | "jquery-ui.js"
6 | ],
7 | "ignore": [],
8 | "license": "MIT",
9 | "dependencies": {
10 | "jquery": ">=1.6"
11 | },
12 | "homepage": "https://github.com/components/jqueryui",
13 | "_release": "1.12.1",
14 | "_resolution": {
15 | "type": "version",
16 | "tag": "1.12.1",
17 | "commit": "44ecf3794cc56b65954cc19737234a3119d036cc"
18 | },
19 | "_source": "https://github.com/components/jqueryui.git",
20 | "_target": ">=1.12.x",
21 | "_originalSource": "jquery-ui"
22 | }
--------------------------------------------------------------------------------
/third_party/jquery-ui/.gitignore:
--------------------------------------------------------------------------------
1 | components
2 | composer.lock
3 | vendor
4 | .DS_Store
5 |
--------------------------------------------------------------------------------
/third_party/jquery-ui/README.md:
--------------------------------------------------------------------------------
1 | jQuery UI
2 | =========
3 |
4 | Shim [repository](https://github.com/components/jqueryui) for the [jQuery UI](https://jqueryui.com).
5 |
6 | Package Managers
7 | ----------------
8 |
9 | * [Bower](http://bower.io/): `jquery-ui`
10 | * [Component](https://github.com/component/component): `components/jquery-ui`
11 | * [Composer](http://packagist.org/packages/components/jquery): `components/jqueryui`
12 | * [npm](https://www.npmjs.com/): `components-jqueryui`
--------------------------------------------------------------------------------
/third_party/jquery-ui/bower.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "jquery-ui",
3 | "version": "1.12.1",
4 | "main": [
5 | "jquery-ui.js"
6 | ],
7 | "ignore": [
8 | ],
9 | "license": "MIT",
10 | "dependencies": {
11 | "jquery": ">=1.6"
12 | }
13 | }
14 |
--------------------------------------------------------------------------------
/third_party/jquery-ui/component.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "jquery-ui",
3 | "repo": "components/jqueryui",
4 | "version": "1.12.1",
5 | "license": "MIT",
6 | "scripts": [
7 | "jquery-ui.js"
8 | ],
9 | "main": "jquery-ui.js",
10 | "dependencies": {
11 | "components/jquery": "*"
12 | }
13 | }
14 |
--------------------------------------------------------------------------------
/third_party/jquery-ui/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "components-jqueryui",
3 | "description": "A curated set of user interface interactions, effects, widgets, and themes built on top of the jQuery JavaScript Library.",
4 | "version": "1.12.1",
5 | "homepage": "http://jqueryui.com",
6 | "author": {
7 | "name": "jQuery Foundation and other contributors",
8 | "url": "https://github.com/jquery/jquery-ui/blob/master/AUTHORS.txt"
9 | },
10 | "repository": {
11 | "type": "git",
12 | "url": "git://github.com/components/jqueryui.git"
13 | },
14 | "main": "jquery-ui.js",
15 | "license": "MIT"
16 | }
17 |
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/base/accordion.css:
--------------------------------------------------------------------------------
1 | /*!
2 | * jQuery UI Accordion 1.12.1
3 | * http://jqueryui.com
4 | *
5 | * Copyright jQuery Foundation and other contributors
6 | * Released under the MIT license.
7 | * http://jquery.org/license
8 | *
9 | * http://api.jqueryui.com/accordion/#theming
10 | */
11 | .ui-accordion .ui-accordion-header {
12 | display: block;
13 | cursor: pointer;
14 | position: relative;
15 | margin: 2px 0 0 0;
16 | padding: .5em .5em .5em .7em;
17 | font-size: 100%;
18 | }
19 | .ui-accordion .ui-accordion-content {
20 | padding: 1em 2.2em;
21 | border-top: 0;
22 | overflow: auto;
23 | }
24 |
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/base/all.css:
--------------------------------------------------------------------------------
1 | /*!
2 | * jQuery UI CSS Framework 1.12.1
3 | * http://jqueryui.com
4 | *
5 | * Copyright jQuery Foundation and other contributors
6 | * Released under the MIT license.
7 | * http://jquery.org/license
8 | *
9 | * http://api.jqueryui.com/category/theming/
10 | */
11 | @import "base.css";
12 | @import "theme.css";
13 |
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/base/autocomplete.css:
--------------------------------------------------------------------------------
1 | /*!
2 | * jQuery UI Autocomplete 1.12.1
3 | * http://jqueryui.com
4 | *
5 | * Copyright jQuery Foundation and other contributors
6 | * Released under the MIT license.
7 | * http://jquery.org/license
8 | *
9 | * http://api.jqueryui.com/autocomplete/#theming
10 | */
11 | .ui-autocomplete {
12 | position: absolute;
13 | top: 0;
14 | left: 0;
15 | cursor: default;
16 | }
17 |
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/base/base.css:
--------------------------------------------------------------------------------
1 | /*!
2 | * jQuery UI CSS Framework 1.12.1
3 | * http://jqueryui.com
4 | *
5 | * Copyright jQuery Foundation and other contributors
6 | * Released under the MIT license.
7 | * http://jquery.org/license
8 | *
9 | * http://api.jqueryui.com/category/theming/
10 | */
11 | @import url("core.css");
12 |
13 | @import url("accordion.css");
14 | @import url("autocomplete.css");
15 | @import url("button.css");
16 | @import url("checkboxradio.css");
17 | @import url("controlgroup.css");
18 | @import url("datepicker.css");
19 | @import url("dialog.css");
20 | @import url("draggable.css");
21 | @import url("menu.css");
22 | @import url("progressbar.css");
23 | @import url("resizable.css");
24 | @import url("selectable.css");
25 | @import url("selectmenu.css");
26 | @import url("sortable.css");
27 | @import url("slider.css");
28 | @import url("spinner.css");
29 | @import url("tabs.css");
30 | @import url("tooltip.css");
31 |
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/base/draggable.css:
--------------------------------------------------------------------------------
1 | /*!
2 | * jQuery UI Draggable 1.12.1
3 | * http://jqueryui.com
4 | *
5 | * Copyright jQuery Foundation and other contributors
6 | * Released under the MIT license.
7 | * http://jquery.org/license
8 | */
9 | .ui-draggable-handle {
10 | -ms-touch-action: none;
11 | touch-action: none;
12 | }
13 |
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/base/images/ui-icons_444444_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/base/images/ui-icons_444444_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/base/images/ui-icons_555555_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/base/images/ui-icons_555555_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/base/images/ui-icons_777620_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/base/images/ui-icons_777620_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/base/images/ui-icons_777777_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/base/images/ui-icons_777777_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/base/images/ui-icons_cc0000_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/base/images/ui-icons_cc0000_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/base/images/ui-icons_ffffff_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/base/images/ui-icons_ffffff_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/base/selectable.css:
--------------------------------------------------------------------------------
1 | /*!
2 | * jQuery UI Selectable 1.12.1
3 | * http://jqueryui.com
4 | *
5 | * Copyright jQuery Foundation and other contributors
6 | * Released under the MIT license.
7 | * http://jquery.org/license
8 | */
9 | .ui-selectable {
10 | -ms-touch-action: none;
11 | touch-action: none;
12 | }
13 | .ui-selectable-helper {
14 | position: absolute;
15 | z-index: 100;
16 | border: 1px dotted black;
17 | }
18 |
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/base/sortable.css:
--------------------------------------------------------------------------------
1 | /*!
2 | * jQuery UI Sortable 1.12.1
3 | * http://jqueryui.com
4 | *
5 | * Copyright jQuery Foundation and other contributors
6 | * Released under the MIT license.
7 | * http://jquery.org/license
8 | */
9 | .ui-sortable-handle {
10 | -ms-touch-action: none;
11 | touch-action: none;
12 | }
13 |
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/base/tooltip.css:
--------------------------------------------------------------------------------
1 | /*!
2 | * jQuery UI Tooltip 1.12.1
3 | * http://jqueryui.com
4 | *
5 | * Copyright jQuery Foundation and other contributors
6 | * Released under the MIT license.
7 | * http://jquery.org/license
8 | *
9 | * http://api.jqueryui.com/tooltip/#theming
10 | */
11 | .ui-tooltip {
12 | padding: 8px;
13 | position: absolute;
14 | z-index: 9999;
15 | max-width: 300px;
16 | }
17 | body .ui-tooltip {
18 | border-width: 2px;
19 | }
20 |
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/black-tie/images/ui-bg_diagonals-thick_8_333333_40x40.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/black-tie/images/ui-bg_diagonals-thick_8_333333_40x40.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/black-tie/images/ui-bg_glass_40_111111_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/black-tie/images/ui-bg_glass_40_111111_1x400.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/black-tie/images/ui-bg_glass_55_1c1c1c_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/black-tie/images/ui-bg_glass_55_1c1c1c_1x400.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/black-tie/images/ui-bg_highlight-hard_100_f9f9f9_1x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/black-tie/images/ui-bg_highlight-hard_100_f9f9f9_1x100.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/black-tie/images/ui-bg_highlight-hard_40_aaaaaa_1x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/black-tie/images/ui-bg_highlight-hard_40_aaaaaa_1x100.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/black-tie/images/ui-bg_highlight-soft_50_aaaaaa_1x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/black-tie/images/ui-bg_highlight-soft_50_aaaaaa_1x100.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/black-tie/images/ui-bg_inset-hard_45_cd0a0a_1x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/black-tie/images/ui-bg_inset-hard_45_cd0a0a_1x100.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/black-tie/images/ui-bg_inset-hard_55_ffeb80_1x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/black-tie/images/ui-bg_inset-hard_55_ffeb80_1x100.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/black-tie/images/ui-icons_222222_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/black-tie/images/ui-icons_222222_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/black-tie/images/ui-icons_4ca300_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/black-tie/images/ui-icons_4ca300_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/black-tie/images/ui-icons_bbbbbb_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/black-tie/images/ui-icons_bbbbbb_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/black-tie/images/ui-icons_ededed_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/black-tie/images/ui-icons_ededed_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/black-tie/images/ui-icons_ffcf29_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/black-tie/images/ui-icons_ffcf29_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/black-tie/images/ui-icons_ffffff_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/black-tie/images/ui-icons_ffffff_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/blitzer/images/ui-bg_diagonals-thick_75_f3d8d8_40x40.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/blitzer/images/ui-bg_diagonals-thick_75_f3d8d8_40x40.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/blitzer/images/ui-bg_dots-small_65_a6a6a6_2x2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/blitzer/images/ui-bg_dots-small_65_a6a6a6_2x2.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/blitzer/images/ui-bg_glass_55_fbf8ee_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/blitzer/images/ui-bg_glass_55_fbf8ee_1x400.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/blitzer/images/ui-bg_highlight-hard_100_eeeeee_1x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/blitzer/images/ui-bg_highlight-hard_100_eeeeee_1x100.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/blitzer/images/ui-bg_highlight-hard_100_f6f6f6_1x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/blitzer/images/ui-bg_highlight-hard_100_f6f6f6_1x100.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/blitzer/images/ui-bg_highlight-soft_15_cc0000_1x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/blitzer/images/ui-bg_highlight-soft_15_cc0000_1x100.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/blitzer/images/ui-icons_004276_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/blitzer/images/ui-icons_004276_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/blitzer/images/ui-icons_cc0000_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/blitzer/images/ui-icons_cc0000_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/blitzer/images/ui-icons_ffffff_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/blitzer/images/ui-icons_ffffff_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/cupertino/images/ui-bg_diagonals-thick_90_eeeeee_40x40.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/cupertino/images/ui-bg_diagonals-thick_90_eeeeee_40x40.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/cupertino/images/ui-bg_glass_100_e4f1fb_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/cupertino/images/ui-bg_glass_100_e4f1fb_1x400.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/cupertino/images/ui-bg_glass_50_3baae3_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/cupertino/images/ui-bg_glass_50_3baae3_1x400.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/cupertino/images/ui-bg_glass_80_d7ebf9_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/cupertino/images/ui-bg_glass_80_d7ebf9_1x400.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/cupertino/images/ui-bg_highlight-hard_100_f2f5f7_1x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/cupertino/images/ui-bg_highlight-hard_100_f2f5f7_1x100.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/cupertino/images/ui-bg_highlight-hard_70_000000_1x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/cupertino/images/ui-bg_highlight-hard_70_000000_1x100.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/cupertino/images/ui-bg_highlight-soft_100_deedf7_1x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/cupertino/images/ui-bg_highlight-soft_100_deedf7_1x100.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/cupertino/images/ui-bg_highlight-soft_25_ffef8f_1x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/cupertino/images/ui-bg_highlight-soft_25_ffef8f_1x100.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/cupertino/images/ui-icons_2694e8_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/cupertino/images/ui-icons_2694e8_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/cupertino/images/ui-icons_2e83ff_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/cupertino/images/ui-icons_2e83ff_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/cupertino/images/ui-icons_3d80b3_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/cupertino/images/ui-icons_3d80b3_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/cupertino/images/ui-icons_72a7cf_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/cupertino/images/ui-icons_72a7cf_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/cupertino/images/ui-icons_ffffff_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/cupertino/images/ui-icons_ffffff_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/dark-hive/images/ui-bg_glass_40_ffc73d_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/dark-hive/images/ui-bg_glass_40_ffc73d_1x400.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/dark-hive/images/ui-bg_highlight-hard_20_0972a5_1x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/dark-hive/images/ui-bg_highlight-hard_20_0972a5_1x100.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/dark-hive/images/ui-bg_highlight-soft_33_003147_1x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/dark-hive/images/ui-bg_highlight-soft_33_003147_1x100.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/dark-hive/images/ui-bg_highlight-soft_35_222222_1x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/dark-hive/images/ui-bg_highlight-soft_35_222222_1x100.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/dark-hive/images/ui-bg_highlight-soft_44_444444_1x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/dark-hive/images/ui-bg_highlight-soft_44_444444_1x100.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/dark-hive/images/ui-bg_highlight-soft_80_eeeeee_1x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/dark-hive/images/ui-bg_highlight-soft_80_eeeeee_1x100.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/dark-hive/images/ui-bg_loop_25_000000_21x21.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/dark-hive/images/ui-bg_loop_25_000000_21x21.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/dark-hive/images/ui-icons_222222_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/dark-hive/images/ui-icons_222222_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/dark-hive/images/ui-icons_4b8e0b_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/dark-hive/images/ui-icons_4b8e0b_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/dark-hive/images/ui-icons_a83300_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/dark-hive/images/ui-icons_a83300_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/dark-hive/images/ui-icons_cccccc_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/dark-hive/images/ui-icons_cccccc_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/dark-hive/images/ui-icons_ffffff_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/dark-hive/images/ui-icons_ffffff_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/dot-luv/images/ui-bg_diagonals-thick_15_0b3e6f_40x40.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/dot-luv/images/ui-bg_diagonals-thick_15_0b3e6f_40x40.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/dot-luv/images/ui-bg_dots-medium_30_0b58a2_4x4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/dot-luv/images/ui-bg_dots-medium_30_0b58a2_4x4.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/dot-luv/images/ui-bg_dots-small_20_333333_2x2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/dot-luv/images/ui-bg_dots-small_20_333333_2x2.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/dot-luv/images/ui-bg_dots-small_30_a32d00_2x2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/dot-luv/images/ui-bg_dots-small_30_a32d00_2x2.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/dot-luv/images/ui-bg_dots-small_40_00498f_2x2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/dot-luv/images/ui-bg_dots-small_40_00498f_2x2.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/dot-luv/images/ui-bg_gloss-wave_20_111111_500x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/dot-luv/images/ui-bg_gloss-wave_20_111111_500x100.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/dot-luv/images/ui-icons_00498f_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/dot-luv/images/ui-icons_00498f_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/dot-luv/images/ui-icons_98d2fb_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/dot-luv/images/ui-icons_98d2fb_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/dot-luv/images/ui-icons_9ccdfc_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/dot-luv/images/ui-icons_9ccdfc_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/dot-luv/images/ui-icons_ffffff_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/dot-luv/images/ui-icons_ffffff_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/eggplant/images/ui-bg_gloss-wave_30_3d3644_500x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/eggplant/images/ui-bg_gloss-wave_30_3d3644_500x100.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/eggplant/images/ui-bg_highlight-soft_100_dcd9de_1x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/eggplant/images/ui-bg_highlight-soft_100_dcd9de_1x100.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/eggplant/images/ui-bg_highlight-soft_100_eae6ea_1x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/eggplant/images/ui-bg_highlight-soft_100_eae6ea_1x100.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/eggplant/images/ui-bg_highlight-soft_25_30273a_1x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/eggplant/images/ui-bg_highlight-soft_25_30273a_1x100.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/eggplant/images/ui-bg_highlight-soft_45_5f5964_1x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/eggplant/images/ui-bg_highlight-soft_45_5f5964_1x100.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/eggplant/images/ui-icons_454545_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/eggplant/images/ui-icons_454545_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/eggplant/images/ui-icons_734d99_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/eggplant/images/ui-icons_734d99_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/eggplant/images/ui-icons_8d78a5_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/eggplant/images/ui-icons_8d78a5_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/eggplant/images/ui-icons_a8a3ae_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/eggplant/images/ui-icons_a8a3ae_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/eggplant/images/ui-icons_ebccce_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/eggplant/images/ui-icons_ebccce_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/eggplant/images/ui-icons_ffffff_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/eggplant/images/ui-icons_ffffff_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/excite-bike/images/ui-bg_diagonals-small_25_c5ddfc_40x40.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/excite-bike/images/ui-bg_diagonals-small_25_c5ddfc_40x40.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/excite-bike/images/ui-bg_diagonals-thick_20_e69700_40x40.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/excite-bike/images/ui-bg_diagonals-thick_20_e69700_40x40.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/excite-bike/images/ui-bg_diagonals-thick_22_1484e6_40x40.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/excite-bike/images/ui-bg_diagonals-thick_22_1484e6_40x40.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/excite-bike/images/ui-bg_diagonals-thick_26_2293f7_40x40.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/excite-bike/images/ui-bg_diagonals-thick_26_2293f7_40x40.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/excite-bike/images/ui-bg_highlight-soft_100_f9f9f9_1x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/excite-bike/images/ui-bg_highlight-soft_100_f9f9f9_1x100.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/excite-bike/images/ui-bg_inset-hard_100_eeeeee_1x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/excite-bike/images/ui-bg_inset-hard_100_eeeeee_1x100.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/excite-bike/images/ui-icons_0a82eb_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/excite-bike/images/ui-icons_0a82eb_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/excite-bike/images/ui-icons_0b54d5_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/excite-bike/images/ui-icons_0b54d5_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/excite-bike/images/ui-icons_5fa5e3_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/excite-bike/images/ui-icons_5fa5e3_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/excite-bike/images/ui-icons_fcdd4a_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/excite-bike/images/ui-icons_fcdd4a_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/excite-bike/images/ui-icons_ffffff_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/excite-bike/images/ui-icons_ffffff_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/flick/images/ui-bg_glass_65_ffffff_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/flick/images/ui-bg_glass_65_ffffff_1x400.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/flick/images/ui-bg_highlight-soft_100_f6f6f6_1x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/flick/images/ui-bg_highlight-soft_100_f6f6f6_1x100.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/flick/images/ui-bg_highlight-soft_25_0073ea_1x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/flick/images/ui-bg_highlight-soft_25_0073ea_1x100.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/flick/images/ui-bg_highlight-soft_50_dddddd_1x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/flick/images/ui-bg_highlight-soft_50_dddddd_1x100.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/flick/images/ui-icons_0073ea_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/flick/images/ui-icons_0073ea_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/flick/images/ui-icons_454545_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/flick/images/ui-icons_454545_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/flick/images/ui-icons_666666_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/flick/images/ui-icons_666666_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/flick/images/ui-icons_ff0084_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/flick/images/ui-icons_ff0084_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/flick/images/ui-icons_ffffff_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/flick/images/ui-icons_ffffff_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/hot-sneaks/images/ui-bg_diagonals-small_40_db4865_40x40.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/hot-sneaks/images/ui-bg_diagonals-small_40_db4865_40x40.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/hot-sneaks/images/ui-bg_diagonals-small_50_93c3cd_40x40.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/hot-sneaks/images/ui-bg_diagonals-small_50_93c3cd_40x40.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/hot-sneaks/images/ui-bg_diagonals-small_50_ff3853_40x40.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/hot-sneaks/images/ui-bg_diagonals-small_50_ff3853_40x40.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/hot-sneaks/images/ui-bg_diagonals-small_75_ccd232_40x40.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/hot-sneaks/images/ui-bg_diagonals-small_75_ccd232_40x40.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/hot-sneaks/images/ui-bg_dots-medium_80_ffff38_4x4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/hot-sneaks/images/ui-bg_dots-medium_80_ffff38_4x4.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/hot-sneaks/images/ui-bg_dots-small_35_35414f_2x2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/hot-sneaks/images/ui-bg_dots-small_35_35414f_2x2.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/hot-sneaks/images/ui-bg_white-lines_85_f7f7ba_40x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/hot-sneaks/images/ui-bg_white-lines_85_f7f7ba_40x100.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/hot-sneaks/images/ui-icons_454545_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/hot-sneaks/images/ui-icons_454545_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/hot-sneaks/images/ui-icons_88a206_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/hot-sneaks/images/ui-icons_88a206_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/hot-sneaks/images/ui-icons_c02669_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/hot-sneaks/images/ui-icons_c02669_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/hot-sneaks/images/ui-icons_e1e463_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/hot-sneaks/images/ui-icons_e1e463_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/hot-sneaks/images/ui-icons_ffeb33_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/hot-sneaks/images/ui-icons_ffeb33_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/hot-sneaks/images/ui-icons_ffffff_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/hot-sneaks/images/ui-icons_ffffff_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/humanity/images/ui-bg_glass_100_f5f0e5_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/humanity/images/ui-bg_glass_100_f5f0e5_1x400.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/humanity/images/ui-bg_glass_25_cb842e_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/humanity/images/ui-bg_glass_25_cb842e_1x400.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/humanity/images/ui-bg_glass_70_ede4d4_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/humanity/images/ui-bg_glass_70_ede4d4_1x400.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/humanity/images/ui-bg_highlight-hard_100_f4f0ec_1x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/humanity/images/ui-bg_highlight-hard_100_f4f0ec_1x100.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/humanity/images/ui-bg_highlight-hard_65_fee4bd_1x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/humanity/images/ui-bg_highlight-hard_65_fee4bd_1x100.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/humanity/images/ui-bg_highlight-hard_75_f5f5b5_1x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/humanity/images/ui-bg_highlight-hard_75_f5f5b5_1x100.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/humanity/images/ui-bg_inset-soft_100_f4f0ec_1x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/humanity/images/ui-bg_inset-soft_100_f4f0ec_1x100.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/humanity/images/ui-icons_c47a23_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/humanity/images/ui-icons_c47a23_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/humanity/images/ui-icons_cb672b_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/humanity/images/ui-icons_cb672b_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/humanity/images/ui-icons_f08000_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/humanity/images/ui-icons_f08000_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/humanity/images/ui-icons_f35f07_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/humanity/images/ui-icons_f35f07_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/humanity/images/ui-icons_ff7519_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/humanity/images/ui-icons_ff7519_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/humanity/images/ui-icons_ffffff_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/humanity/images/ui-icons_ffffff_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/le-frog/images/ui-bg_diagonals-small_0_aaaaaa_40x40.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/le-frog/images/ui-bg_diagonals-small_0_aaaaaa_40x40.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/le-frog/images/ui-bg_diagonals-thick_15_444444_40x40.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/le-frog/images/ui-bg_diagonals-thick_15_444444_40x40.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/le-frog/images/ui-bg_diagonals-thick_95_ffdc2e_40x40.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/le-frog/images/ui-bg_diagonals-thick_95_ffdc2e_40x40.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/le-frog/images/ui-bg_glass_55_fbf5d0_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/le-frog/images/ui-bg_glass_55_fbf5d0_1x400.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/le-frog/images/ui-bg_highlight-hard_30_285c00_1x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/le-frog/images/ui-bg_highlight-hard_30_285c00_1x100.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/le-frog/images/ui-bg_highlight-soft_33_3a8104_1x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/le-frog/images/ui-bg_highlight-soft_33_3a8104_1x100.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/le-frog/images/ui-bg_highlight-soft_50_4eb305_1x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/le-frog/images/ui-bg_highlight-soft_50_4eb305_1x100.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/le-frog/images/ui-bg_highlight-soft_60_4ca20b_1x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/le-frog/images/ui-bg_highlight-soft_60_4ca20b_1x100.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/le-frog/images/ui-bg_inset-soft_10_285c00_1x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/le-frog/images/ui-bg_inset-soft_10_285c00_1x100.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/le-frog/images/ui-icons_4eb305_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/le-frog/images/ui-icons_4eb305_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/le-frog/images/ui-icons_72b42d_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/le-frog/images/ui-icons_72b42d_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/le-frog/images/ui-icons_cd0a0a_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/le-frog/images/ui-icons_cd0a0a_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/le-frog/images/ui-icons_ffffff_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/le-frog/images/ui-icons_ffffff_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/mint-choc/images/ui-bg_glass_15_5f391b_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/mint-choc/images/ui-bg_glass_15_5f391b_1x400.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/mint-choc/images/ui-bg_gloss-wave_20_1c160d_500x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/mint-choc/images/ui-bg_gloss-wave_20_1c160d_500x100.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/mint-choc/images/ui-bg_gloss-wave_25_453326_500x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/mint-choc/images/ui-bg_gloss-wave_25_453326_500x100.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/mint-choc/images/ui-bg_gloss-wave_30_44372c_500x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/mint-choc/images/ui-bg_gloss-wave_30_44372c_500x100.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/mint-choc/images/ui-bg_highlight-soft_20_201913_1x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/mint-choc/images/ui-bg_highlight-soft_20_201913_1x100.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/mint-choc/images/ui-bg_highlight-soft_20_619226_1x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/mint-choc/images/ui-bg_highlight-soft_20_619226_1x100.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/mint-choc/images/ui-bg_inset-soft_10_201913_1x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/mint-choc/images/ui-bg_inset-soft_10_201913_1x100.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/mint-choc/images/ui-icons_222222_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/mint-choc/images/ui-icons_222222_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/mint-choc/images/ui-icons_9bcc60_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/mint-choc/images/ui-icons_9bcc60_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/mint-choc/images/ui-icons_add978_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/mint-choc/images/ui-icons_add978_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/mint-choc/images/ui-icons_e3ddc9_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/mint-choc/images/ui-icons_e3ddc9_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/mint-choc/images/ui-icons_f1fd86_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/mint-choc/images/ui-icons_f1fd86_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/mint-choc/images/ui-icons_ffffff_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/mint-choc/images/ui-icons_ffffff_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/overcast/images/ui-bg_glass_100_f8f8f8_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/overcast/images/ui-bg_glass_100_f8f8f8_1x400.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/overcast/images/ui-bg_glass_35_dddddd_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/overcast/images/ui-bg_glass_35_dddddd_1x400.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/overcast/images/ui-bg_glass_60_eeeeee_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/overcast/images/ui-bg_glass_60_eeeeee_1x400.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/overcast/images/ui-bg_inset-hard_75_999999_1x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/overcast/images/ui-bg_inset-hard_75_999999_1x100.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/overcast/images/ui-bg_inset-soft_50_c9c9c9_1x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/overcast/images/ui-bg_inset-soft_50_c9c9c9_1x100.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/overcast/images/ui-icons_3383bb_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/overcast/images/ui-icons_3383bb_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/overcast/images/ui-icons_454545_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/overcast/images/ui-icons_454545_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/overcast/images/ui-icons_70b2e1_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/overcast/images/ui-icons_70b2e1_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/overcast/images/ui-icons_999999_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/overcast/images/ui-icons_999999_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/overcast/images/ui-icons_fbc856_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/overcast/images/ui-icons_fbc856_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/pepper-grinder/images/ui-bg_diagonal-maze_20_6e4f1c_10x10.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/pepper-grinder/images/ui-bg_diagonal-maze_20_6e4f1c_10x10.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/pepper-grinder/images/ui-bg_diagonal-maze_40_000000_10x10.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/pepper-grinder/images/ui-bg_diagonal-maze_40_000000_10x10.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/pepper-grinder/images/ui-bg_fine-grain_10_eceadf_60x60.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/pepper-grinder/images/ui-bg_fine-grain_10_eceadf_60x60.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/pepper-grinder/images/ui-bg_fine-grain_10_f8f7f6_60x60.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/pepper-grinder/images/ui-bg_fine-grain_10_f8f7f6_60x60.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/pepper-grinder/images/ui-bg_fine-grain_15_eceadf_60x60.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/pepper-grinder/images/ui-bg_fine-grain_15_eceadf_60x60.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/pepper-grinder/images/ui-bg_fine-grain_15_f7f3de_60x60.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/pepper-grinder/images/ui-bg_fine-grain_15_f7f3de_60x60.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/pepper-grinder/images/ui-bg_fine-grain_15_ffffff_60x60.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/pepper-grinder/images/ui-bg_fine-grain_15_ffffff_60x60.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/pepper-grinder/images/ui-bg_fine-grain_65_654b24_60x60.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/pepper-grinder/images/ui-bg_fine-grain_65_654b24_60x60.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/pepper-grinder/images/ui-bg_fine-grain_68_b83400_60x60.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/pepper-grinder/images/ui-bg_fine-grain_68_b83400_60x60.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/pepper-grinder/images/ui-icons_222222_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/pepper-grinder/images/ui-icons_222222_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/pepper-grinder/images/ui-icons_3572ac_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/pepper-grinder/images/ui-icons_3572ac_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/pepper-grinder/images/ui-icons_8c291d_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/pepper-grinder/images/ui-icons_8c291d_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/pepper-grinder/images/ui-icons_b83400_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/pepper-grinder/images/ui-icons_b83400_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/pepper-grinder/images/ui-icons_fbdb93_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/pepper-grinder/images/ui-icons_fbdb93_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/pepper-grinder/images/ui-icons_ffffff_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/pepper-grinder/images/ui-icons_ffffff_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/redmond/images/ui-bg_glass_75_d0e5f5_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/redmond/images/ui-bg_glass_75_d0e5f5_1x400.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/redmond/images/ui-bg_glass_85_dfeffc_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/redmond/images/ui-bg_glass_85_dfeffc_1x400.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/redmond/images/ui-bg_glass_95_fef1ec_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/redmond/images/ui-bg_glass_95_fef1ec_1x400.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/redmond/images/ui-bg_gloss-wave_55_5c9ccc_500x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/redmond/images/ui-bg_gloss-wave_55_5c9ccc_500x100.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/redmond/images/ui-bg_inset-hard_100_f5f8f9_1x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/redmond/images/ui-bg_inset-hard_100_f5f8f9_1x100.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/redmond/images/ui-bg_inset-hard_100_fcfdfd_1x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/redmond/images/ui-bg_inset-hard_100_fcfdfd_1x100.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/redmond/images/ui-icons_217bc0_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/redmond/images/ui-icons_217bc0_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/redmond/images/ui-icons_2e83ff_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/redmond/images/ui-icons_2e83ff_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/redmond/images/ui-icons_469bdd_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/redmond/images/ui-icons_469bdd_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/redmond/images/ui-icons_6da8d5_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/redmond/images/ui-icons_6da8d5_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/redmond/images/ui-icons_cd0a0a_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/redmond/images/ui-icons_cd0a0a_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/redmond/images/ui-icons_d8e7f3_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/redmond/images/ui-icons_d8e7f3_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/redmond/images/ui-icons_f9bd01_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/redmond/images/ui-icons_f9bd01_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/smoothness/images/ui-bg_glass_65_ffffff_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/smoothness/images/ui-bg_glass_65_ffffff_1x400.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/smoothness/images/ui-bg_glass_75_dadada_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/smoothness/images/ui-bg_glass_75_dadada_1x400.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/smoothness/images/ui-icons_222222_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/smoothness/images/ui-icons_222222_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/smoothness/images/ui-icons_2e83ff_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/smoothness/images/ui-icons_2e83ff_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/smoothness/images/ui-icons_454545_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/smoothness/images/ui-icons_454545_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/smoothness/images/ui-icons_888888_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/smoothness/images/ui-icons_888888_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/smoothness/images/ui-icons_cd0a0a_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/smoothness/images/ui-icons_cd0a0a_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/south-street/images/ui-bg_glass_55_fcf0ba_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/south-street/images/ui-bg_glass_55_fcf0ba_1x400.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/south-street/images/ui-bg_gloss-wave_100_ece8da_500x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/south-street/images/ui-bg_gloss-wave_100_ece8da_500x100.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/south-street/images/ui-bg_highlight-hard_100_f5f3e5_1x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/south-street/images/ui-bg_highlight-hard_100_f5f3e5_1x100.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/south-street/images/ui-bg_highlight-hard_100_fafaf4_1x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/south-street/images/ui-bg_highlight-hard_100_fafaf4_1x100.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/south-street/images/ui-bg_highlight-hard_15_459e00_1x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/south-street/images/ui-bg_highlight-hard_15_459e00_1x100.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/south-street/images/ui-bg_highlight-hard_95_cccccc_1x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/south-street/images/ui-bg_highlight-hard_95_cccccc_1x100.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/south-street/images/ui-bg_highlight-soft_25_67b021_1x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/south-street/images/ui-bg_highlight-soft_25_67b021_1x100.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/south-street/images/ui-bg_highlight-soft_95_ffedad_1x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/south-street/images/ui-bg_highlight-soft_95_ffedad_1x100.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/south-street/images/ui-bg_inset-soft_15_2b2922_1x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/south-street/images/ui-bg_inset-soft_15_2b2922_1x100.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/south-street/images/ui-icons_808080_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/south-street/images/ui-icons_808080_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/south-street/images/ui-icons_847e71_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/south-street/images/ui-icons_847e71_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/south-street/images/ui-icons_8DC262_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/south-street/images/ui-icons_8DC262_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/south-street/images/ui-icons_cd0a0a_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/south-street/images/ui-icons_cd0a0a_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/south-street/images/ui-icons_eeeeee_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/south-street/images/ui-icons_eeeeee_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/south-street/images/ui-icons_ffffff_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/south-street/images/ui-icons_ffffff_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/start/images/ui-bg_glass_45_0078ae_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/start/images/ui-bg_glass_45_0078ae_1x400.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/start/images/ui-bg_glass_55_f8da4e_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/start/images/ui-bg_glass_55_f8da4e_1x400.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/start/images/ui-bg_glass_75_79c9ec_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/start/images/ui-bg_glass_75_79c9ec_1x400.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/start/images/ui-bg_gloss-wave_45_e14f1c_500x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/start/images/ui-bg_gloss-wave_45_e14f1c_500x100.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/start/images/ui-bg_gloss-wave_50_6eac2c_500x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/start/images/ui-bg_gloss-wave_50_6eac2c_500x100.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/start/images/ui-bg_gloss-wave_75_2191c0_500x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/start/images/ui-bg_gloss-wave_75_2191c0_500x100.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/start/images/ui-bg_inset-hard_100_fcfdfd_1x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/start/images/ui-bg_inset-hard_100_fcfdfd_1x100.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/start/images/ui-icons_0078ae_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/start/images/ui-icons_0078ae_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/start/images/ui-icons_056b93_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/start/images/ui-icons_056b93_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/start/images/ui-icons_d8e7f3_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/start/images/ui-icons_d8e7f3_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/start/images/ui-icons_e0fdff_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/start/images/ui-icons_e0fdff_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/start/images/ui-icons_f5e175_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/start/images/ui-icons_f5e175_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/start/images/ui-icons_f7a50d_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/start/images/ui-icons_f7a50d_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/start/images/ui-icons_fcd113_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/start/images/ui-icons_fcd113_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/sunny/images/ui-bg_diagonals-medium_20_d34d17_40x40.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/sunny/images/ui-bg_diagonals-medium_20_d34d17_40x40.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/sunny/images/ui-bg_gloss-wave_45_817865_500x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/sunny/images/ui-bg_gloss-wave_45_817865_500x100.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/sunny/images/ui-bg_gloss-wave_60_fece2f_500x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/sunny/images/ui-bg_gloss-wave_60_fece2f_500x100.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/sunny/images/ui-bg_gloss-wave_70_ffdd57_500x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/sunny/images/ui-bg_gloss-wave_70_ffdd57_500x100.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/sunny/images/ui-bg_gloss-wave_90_fff9e5_500x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/sunny/images/ui-bg_gloss-wave_90_fff9e5_500x100.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/sunny/images/ui-bg_highlight-soft_100_feeebd_1x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/sunny/images/ui-bg_highlight-soft_100_feeebd_1x100.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/sunny/images/ui-bg_inset-soft_30_ffffff_1x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/sunny/images/ui-bg_inset-soft_30_ffffff_1x100.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/sunny/images/ui-icons_3d3d3d_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/sunny/images/ui-icons_3d3d3d_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/sunny/images/ui-icons_bd7b00_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/sunny/images/ui-icons_bd7b00_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/sunny/images/ui-icons_d19405_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/sunny/images/ui-icons_d19405_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/sunny/images/ui-icons_eb990f_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/sunny/images/ui-icons_eb990f_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/sunny/images/ui-icons_ed9f26_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/sunny/images/ui-icons_ed9f26_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/sunny/images/ui-icons_fadc7a_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/sunny/images/ui-icons_fadc7a_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/sunny/images/ui-icons_ffe180_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/sunny/images/ui-icons_ffe180_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/swanky-purse/images/ui-bg_diamond_10_4f4221_10x8.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/swanky-purse/images/ui-bg_diamond_10_4f4221_10x8.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/swanky-purse/images/ui-bg_diamond_20_372806_10x8.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/swanky-purse/images/ui-bg_diamond_20_372806_10x8.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/swanky-purse/images/ui-bg_diamond_25_675423_10x8.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/swanky-purse/images/ui-bg_diamond_25_675423_10x8.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/swanky-purse/images/ui-bg_diamond_25_d5ac5d_10x8.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/swanky-purse/images/ui-bg_diamond_25_d5ac5d_10x8.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/swanky-purse/images/ui-bg_diamond_8_261803_10x8.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/swanky-purse/images/ui-bg_diamond_8_261803_10x8.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/swanky-purse/images/ui-bg_diamond_8_443113_10x8.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/swanky-purse/images/ui-bg_diamond_8_443113_10x8.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/swanky-purse/images/ui-bg_highlight-hard_65_fee4bd_1x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/swanky-purse/images/ui-bg_highlight-hard_65_fee4bd_1x100.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/swanky-purse/images/ui-icons_070603_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/swanky-purse/images/ui-icons_070603_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/swanky-purse/images/ui-icons_e8e2b5_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/swanky-purse/images/ui-icons_e8e2b5_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/swanky-purse/images/ui-icons_e9cd86_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/swanky-purse/images/ui-icons_e9cd86_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/swanky-purse/images/ui-icons_efec9f_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/swanky-purse/images/ui-icons_efec9f_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/swanky-purse/images/ui-icons_f2ec64_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/swanky-purse/images/ui-icons_f2ec64_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/swanky-purse/images/ui-icons_f9f2bd_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/swanky-purse/images/ui-icons_f9f2bd_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/swanky-purse/images/ui-icons_ff7519_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/swanky-purse/images/ui-icons_ff7519_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/trontastic/images/ui-bg_diagonals-small_50_262626_40x40.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/trontastic/images/ui-bg_diagonals-small_50_262626_40x40.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/trontastic/images/ui-bg_glass_40_0a0a0a_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/trontastic/images/ui-bg_glass_40_0a0a0a_1x400.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/trontastic/images/ui-bg_glass_55_f1fbe5_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/trontastic/images/ui-bg_glass_55_f1fbe5_1x400.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/trontastic/images/ui-bg_glass_60_000000_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/trontastic/images/ui-bg_glass_60_000000_1x400.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/trontastic/images/ui-bg_gloss-wave_55_000000_500x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/trontastic/images/ui-bg_gloss-wave_55_000000_500x100.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/trontastic/images/ui-bg_gloss-wave_85_9fda58_500x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/trontastic/images/ui-bg_gloss-wave_85_9fda58_500x100.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/trontastic/images/ui-bg_gloss-wave_95_f6ecd5_500x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/trontastic/images/ui-bg_gloss-wave_95_f6ecd5_500x100.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/trontastic/images/ui-icons_000000_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/trontastic/images/ui-icons_000000_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/trontastic/images/ui-icons_1f1f1f_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/trontastic/images/ui-icons_1f1f1f_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/trontastic/images/ui-icons_9fda58_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/trontastic/images/ui-icons_9fda58_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/trontastic/images/ui-icons_b8ec79_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/trontastic/images/ui-icons_b8ec79_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/trontastic/images/ui-icons_cd0a0a_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/trontastic/images/ui-icons_cd0a0a_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/trontastic/images/ui-icons_ffffff_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/trontastic/images/ui-icons_ffffff_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/ui-darkness/images/ui-bg_glass_20_555555_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/ui-darkness/images/ui-bg_glass_20_555555_1x400.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/ui-darkness/images/ui-bg_glass_40_0078a3_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/ui-darkness/images/ui-bg_glass_40_0078a3_1x400.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/ui-darkness/images/ui-bg_glass_40_ffc73d_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/ui-darkness/images/ui-bg_glass_40_ffc73d_1x400.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/ui-darkness/images/ui-bg_gloss-wave_25_333333_500x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/ui-darkness/images/ui-bg_gloss-wave_25_333333_500x100.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/ui-darkness/images/ui-bg_highlight-soft_80_eeeeee_1x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/ui-darkness/images/ui-bg_highlight-soft_80_eeeeee_1x100.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/ui-darkness/images/ui-bg_inset-soft_25_000000_1x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/ui-darkness/images/ui-bg_inset-soft_25_000000_1x100.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/ui-darkness/images/ui-bg_inset-soft_30_f58400_1x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/ui-darkness/images/ui-bg_inset-soft_30_f58400_1x100.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/ui-darkness/images/ui-icons_222222_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/ui-darkness/images/ui-icons_222222_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/ui-darkness/images/ui-icons_4b8e0b_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/ui-darkness/images/ui-icons_4b8e0b_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/ui-darkness/images/ui-icons_a83300_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/ui-darkness/images/ui-icons_a83300_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/ui-darkness/images/ui-icons_cccccc_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/ui-darkness/images/ui-icons_cccccc_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/ui-darkness/images/ui-icons_ffffff_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/ui-darkness/images/ui-icons_ffffff_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/ui-lightness/images/ui-bg_diagonals-thick_18_b81900_40x40.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/ui-lightness/images/ui-bg_diagonals-thick_18_b81900_40x40.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/ui-lightness/images/ui-bg_glass_100_f6f6f6_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/ui-lightness/images/ui-bg_glass_100_f6f6f6_1x400.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/ui-lightness/images/ui-bg_glass_100_fdf5ce_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/ui-lightness/images/ui-bg_glass_100_fdf5ce_1x400.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/ui-lightness/images/ui-bg_glass_65_ffffff_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/ui-lightness/images/ui-bg_glass_65_ffffff_1x400.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/ui-lightness/images/ui-bg_gloss-wave_35_f6a828_500x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/ui-lightness/images/ui-bg_gloss-wave_35_f6a828_500x100.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/ui-lightness/images/ui-bg_highlight-soft_100_eeeeee_1x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/ui-lightness/images/ui-bg_highlight-soft_100_eeeeee_1x100.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/ui-lightness/images/ui-bg_highlight-soft_75_ffe45c_1x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/ui-lightness/images/ui-bg_highlight-soft_75_ffe45c_1x100.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/ui-lightness/images/ui-icons_222222_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/ui-lightness/images/ui-icons_222222_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/ui-lightness/images/ui-icons_228ef1_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/ui-lightness/images/ui-icons_228ef1_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/ui-lightness/images/ui-icons_ef8c08_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/ui-lightness/images/ui-icons_ef8c08_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/ui-lightness/images/ui-icons_ffd27a_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/ui-lightness/images/ui-icons_ffd27a_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/ui-lightness/images/ui-icons_ffffff_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/ui-lightness/images/ui-icons_ffffff_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/vader/images/ui-bg_glass_95_fef1ec_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/vader/images/ui-bg_glass_95_fef1ec_1x400.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/vader/images/ui-bg_gloss-wave_16_121212_500x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/vader/images/ui-bg_gloss-wave_16_121212_500x100.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/vader/images/ui-bg_highlight-hard_15_888888_1x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/vader/images/ui-bg_highlight-hard_15_888888_1x100.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/vader/images/ui-bg_highlight-hard_55_555555_1x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/vader/images/ui-bg_highlight-hard_55_555555_1x100.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/vader/images/ui-bg_highlight-soft_35_adadad_1x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/vader/images/ui-bg_highlight-soft_35_adadad_1x100.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/vader/images/ui-bg_highlight-soft_60_dddddd_1x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/vader/images/ui-bg_highlight-soft_60_dddddd_1x100.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/vader/images/ui-bg_inset-soft_15_121212_1x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/vader/images/ui-bg_inset-soft_15_121212_1x100.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/vader/images/ui-icons_666666_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/vader/images/ui-icons_666666_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/vader/images/ui-icons_aaaaaa_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/vader/images/ui-icons_aaaaaa_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/vader/images/ui-icons_bbbbbb_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/vader/images/ui-icons_bbbbbb_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/vader/images/ui-icons_c98000_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/vader/images/ui-icons_c98000_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/vader/images/ui-icons_cccccc_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/vader/images/ui-icons_cccccc_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/vader/images/ui-icons_cd0a0a_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/vader/images/ui-icons_cd0a0a_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/themes/vader/images/ui-icons_f29a00_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/third_party/jquery-ui/themes/vader/images/ui-icons_f29a00_256x240.png
--------------------------------------------------------------------------------
/third_party/jquery-ui/ui/.jshintrc:
--------------------------------------------------------------------------------
1 | {
2 | "boss": true,
3 | "curly": true,
4 | "eqeqeq": true,
5 | "eqnull": true,
6 | "expr": true,
7 | "immed": true,
8 | "noarg": true,
9 | "onevar": true,
10 | "quotmark": "double",
11 | "smarttabs": true,
12 | "trailing": true,
13 | "undef": true,
14 | "unused": true,
15 |
16 | "browser": true,
17 | "es3": true,
18 | "jquery": true,
19 |
20 | "globals": {
21 | "define": false,
22 | "Globalize": false
23 | }
24 | }
25 |
--------------------------------------------------------------------------------
/third_party/jquery-ui/ui/core.js:
--------------------------------------------------------------------------------
1 | // This file is deprecated in 1.12.0 to be removed in 1.13
2 | ( function() {
3 | define( [
4 | "jquery",
5 | "./data",
6 | "./disable-selection",
7 | "./focusable",
8 | "./form",
9 | "./ie",
10 | "./keycode",
11 | "./labels",
12 | "./jquery-1-7",
13 | "./plugin",
14 | "./safe-active-element",
15 | "./safe-blur",
16 | "./scroll-parent",
17 | "./tabbable",
18 | "./unique-id",
19 | "./version"
20 | ] );
21 | } )();
22 |
--------------------------------------------------------------------------------
/third_party/jquery-ui/ui/escape-selector.js:
--------------------------------------------------------------------------------
1 | ( function( factory ) {
2 | if ( typeof define === "function" && define.amd ) {
3 |
4 | // AMD. Register as an anonymous module.
5 | define( [ "jquery", "./version" ], factory );
6 | } else {
7 |
8 | // Browser globals
9 | factory( jQuery );
10 | }
11 | } ( function( $ ) {
12 |
13 | // Internal use only
14 | return $.ui.escapeSelector = ( function() {
15 | var selectorEscape = /([!"#$%&'()*+,./:;<=>?@[\]^`{|}~])/g;
16 | return function( selector ) {
17 | return selector.replace( selectorEscape, "\\$1" );
18 | };
19 | } )();
20 |
21 | } ) );
22 |
--------------------------------------------------------------------------------
/third_party/jquery-ui/ui/form.js:
--------------------------------------------------------------------------------
1 | ( function( factory ) {
2 | if ( typeof define === "function" && define.amd ) {
3 |
4 | // AMD. Register as an anonymous module.
5 | define( [ "jquery", "./version" ], factory );
6 | } else {
7 |
8 | // Browser globals
9 | factory( jQuery );
10 | }
11 | } ( function( $ ) {
12 |
13 | // Support: IE8 Only
14 | // IE8 does not support the form attribute and when it is supplied. It overwrites the form prop
15 | // with a string, so we need to find the proper form.
16 | return $.fn.form = function() {
17 | return typeof this[ 0 ].form === "string" ? this.closest( "form" ) : $( this[ 0 ].form );
18 | };
19 |
20 | } ) );
21 |
--------------------------------------------------------------------------------
/third_party/jquery-ui/ui/ie.js:
--------------------------------------------------------------------------------
1 | ( function( factory ) {
2 | if ( typeof define === "function" && define.amd ) {
3 |
4 | // AMD. Register as an anonymous module.
5 | define( [ "jquery", "./version" ], factory );
6 | } else {
7 |
8 | // Browser globals
9 | factory( jQuery );
10 | }
11 | } ( function( $ ) {
12 |
13 | // This file is deprecated
14 | return $.ui.ie = !!/msie [\w.]+/.exec( navigator.userAgent.toLowerCase() );
15 | } ) );
16 |
--------------------------------------------------------------------------------
/third_party/jquery-ui/ui/minified/core.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.12.1 - 2016-09-15
2 | * http://jqueryui.com
3 | * Copyright jQuery Foundation and other contributors; Licensed */
4 | !function(){define(["jquery","./data","./disable-selection","./focusable","./form","./ie","./keycode","./labels","./jquery-1-7","./plugin","./safe-active-element","./safe-blur","./scroll-parent","./tabbable","./unique-id","./version"])}();
--------------------------------------------------------------------------------
/third_party/jquery-ui/ui/minified/data.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.12.1 - 2016-09-15
2 | * http://jqueryui.com
3 | * Copyright jQuery Foundation and other contributors; Licensed */
4 | !function(a){"function"==typeof define&&define.amd?define(["jquery","./version"],a):a(jQuery)}(function(a){return a.extend(a.expr[":"],{data:a.expr.createPseudo?a.expr.createPseudo(function(b){return function(c){return!!a.data(c,b)}}):function(b,c,d){return!!a.data(b,d[3])}})});
--------------------------------------------------------------------------------
/third_party/jquery-ui/ui/minified/disable-selection.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.12.1 - 2016-09-15
2 | * http://jqueryui.com
3 | * Copyright jQuery Foundation and other contributors; Licensed */
4 | !function(a){"function"==typeof define&&define.amd?define(["jquery","./version"],a):a(jQuery)}(function(a){return a.fn.extend({disableSelection:function(){var a="onselectstart"in document.createElement("div")?"selectstart":"mousedown";return function(){return this.on(a+".ui-disableSelection",function(a){a.preventDefault()})}}(),enableSelection:function(){return this.off(".ui-disableSelection")}})});
--------------------------------------------------------------------------------
/third_party/jquery-ui/ui/minified/escape-selector.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.12.1 - 2016-09-15
2 | * http://jqueryui.com
3 | * Copyright jQuery Foundation and other contributors; Licensed */
4 | !function(a){"function"==typeof define&&define.amd?define(["jquery","./version"],a):a(jQuery)}(function(a){return a.ui.escapeSelector=function(){var a=/([!"#$%&'()*+,.\/:;<=>?@[\]^`{|}~])/g;return function(b){return b.replace(a,"\\$1")}}()});
--------------------------------------------------------------------------------
/third_party/jquery-ui/ui/minified/focusable.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.12.1 - 2016-09-15
2 | * http://jqueryui.com
3 | * Copyright jQuery Foundation and other contributors; Licensed */
4 | !function(a){"function"==typeof define&&define.amd?define(["jquery","./version"],a):a(jQuery)}(function(a){function b(a){for(var b=a.css("visibility");"inherit"===b;)a=a.parent(),b=a.css("visibility");return"hidden"!==b}return a.ui.focusable=function(c,d){var e,f,g,h,i,j=c.nodeName.toLowerCase();return"area"===j?(e=c.parentNode,f=e.name,!(!c.href||!f||"map"!==e.nodeName.toLowerCase())&&(g=a("img[usemap='#"+f+"']"),g.length>0&&g.is(":visible"))):(/^(input|select|textarea|button|object)$/.test(j)?(h=!c.disabled,h&&(i=a(c).closest("fieldset")[0],i&&(h=!i.disabled))):h="a"===j?c.href||d:d,h&&a(c).is(":visible")&&b(a(c)))},a.extend(a.expr[":"],{focusable:function(b){return a.ui.focusable(b,null!=a.attr(b,"tabindex"))}}),a.ui.focusable});
--------------------------------------------------------------------------------
/third_party/jquery-ui/ui/minified/form.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.12.1 - 2016-09-15
2 | * http://jqueryui.com
3 | * Copyright jQuery Foundation and other contributors; Licensed */
4 | !function(a){"function"==typeof define&&define.amd?define(["jquery","./version"],a):a(jQuery)}(function(a){return a.fn.form=function(){return"string"==typeof this[0].form?this.closest("form"):a(this[0].form)}});
--------------------------------------------------------------------------------
/third_party/jquery-ui/ui/minified/i18n/datepicker-af.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.12.1 - 2016-09-15
2 | * http://jqueryui.com
3 | * Copyright jQuery Foundation and other contributors; Licensed */
4 | !function(a){"function"==typeof define&&define.amd?define(["../widgets/datepicker"],a):a(jQuery.datepicker)}(function(a){return a.regional.af={closeText:"Selekteer",prevText:"Vorige",nextText:"Volgende",currentText:"Vandag",monthNames:["Januarie","Februarie","Maart","April","Mei","Junie","Julie","Augustus","September","Oktober","November","Desember"],monthNamesShort:["Jan","Feb","Mrt","Apr","Mei","Jun","Jul","Aug","Sep","Okt","Nov","Des"],dayNames:["Sondag","Maandag","Dinsdag","Woensdag","Donderdag","Vrydag","Saterdag"],dayNamesShort:["Son","Maa","Din","Woe","Don","Vry","Sat"],dayNamesMin:["So","Ma","Di","Wo","Do","Vr","Sa"],weekHeader:"Wk",dateFormat:"dd/mm/yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},a.setDefaults(a.regional.af),a.regional.af});
--------------------------------------------------------------------------------
/third_party/jquery-ui/ui/minified/i18n/datepicker-ar-DZ.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.12.1 - 2016-09-15
2 | * http://jqueryui.com
3 | * Copyright jQuery Foundation and other contributors; Licensed */
4 | !function(a){"function"==typeof define&&define.amd?define(["../widgets/datepicker"],a):a(jQuery.datepicker)}(function(a){return a.regional["ar-DZ"]={closeText:"إغلاق",prevText:"<السابق",nextText:"التالي>",currentText:"اليوم",monthNames:["جانفي","فيفري","مارس","أفريل","ماي","جوان","جويلية","أوت","سبتمبر","أكتوبر","نوفمبر","ديسمبر"],monthNamesShort:["1","2","3","4","5","6","7","8","9","10","11","12"],dayNames:["الأحد","الاثنين","الثلاثاء","الأربعاء","الخميس","الجمعة","السبت"],dayNamesShort:["الأحد","الاثنين","الثلاثاء","الأربعاء","الخميس","الجمعة","السبت"],dayNamesMin:["ح","ن","ث","ر","خ","ج","س"],weekHeader:"أسبوع",dateFormat:"dd/mm/yy",firstDay:6,isRTL:!0,showMonthAfterYear:!1,yearSuffix:""},a.setDefaults(a.regional["ar-DZ"]),a.regional["ar-DZ"]});
--------------------------------------------------------------------------------
/third_party/jquery-ui/ui/minified/i18n/datepicker-ar.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.12.1 - 2016-09-15
2 | * http://jqueryui.com
3 | * Copyright jQuery Foundation and other contributors; Licensed */
4 | !function(a){"function"==typeof define&&define.amd?define(["../widgets/datepicker"],a):a(jQuery.datepicker)}(function(a){return a.regional.ar={closeText:"إغلاق",prevText:"<السابق",nextText:"التالي>",currentText:"اليوم",monthNames:["يناير","فبراير","مارس","أبريل","مايو","يونيو","يوليو","أغسطس","سبتمبر","أكتوبر","نوفمبر","ديسمبر"],monthNamesShort:["1","2","3","4","5","6","7","8","9","10","11","12"],dayNames:["الأحد","الاثنين","الثلاثاء","الأربعاء","الخميس","الجمعة","السبت"],dayNamesShort:["أحد","اثنين","ثلاثاء","أربعاء","خميس","جمعة","سبت"],dayNamesMin:["ح","ن","ث","ر","خ","ج","س"],weekHeader:"أسبوع",dateFormat:"dd/mm/yy",firstDay:0,isRTL:!0,showMonthAfterYear:!1,yearSuffix:""},a.setDefaults(a.regional.ar),a.regional.ar});
--------------------------------------------------------------------------------
/third_party/jquery-ui/ui/minified/i18n/datepicker-az.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.12.1 - 2016-09-15
2 | * http://jqueryui.com
3 | * Copyright jQuery Foundation and other contributors; Licensed */
4 | !function(a){"function"==typeof define&&define.amd?define(["../widgets/datepicker"],a):a(jQuery.datepicker)}(function(a){return a.regional.az={closeText:"Bağla",prevText:"<Geri",nextText:"İrəli>",currentText:"Bugün",monthNames:["Yanvar","Fevral","Mart","Aprel","May","İyun","İyul","Avqust","Sentyabr","Oktyabr","Noyabr","Dekabr"],monthNamesShort:["Yan","Fev","Mar","Apr","May","İyun","İyul","Avq","Sen","Okt","Noy","Dek"],dayNames:["Bazar","Bazar ertəsi","Çərşənbə axşamı","Çərşənbə","Cümə axşamı","Cümə","Şənbə"],dayNamesShort:["B","Be","Ça","Ç","Ca","C","Ş"],dayNamesMin:["B","B","Ç","С","Ç","C","Ş"],weekHeader:"Hf",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},a.setDefaults(a.regional.az),a.regional.az});
--------------------------------------------------------------------------------
/third_party/jquery-ui/ui/minified/i18n/datepicker-be.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.12.1 - 2016-09-15
2 | * http://jqueryui.com
3 | * Copyright jQuery Foundation and other contributors; Licensed */
4 | !function(a){"function"==typeof define&&define.amd?define(["../widgets/datepicker"],a):a(jQuery.datepicker)}(function(a){return a.regional.be={closeText:"Зачыніць",prevText:"←Папяр.",nextText:"Наст.→",currentText:"Сёньня",monthNames:["Студзень","Люты","Сакавік","Красавік","Травень","Чэрвень","Ліпень","Жнівень","Верасень","Кастрычнік","Лістапад","Сьнежань"],monthNamesShort:["Сту","Лют","Сак","Кра","Тра","Чэр","Ліп","Жні","Вер","Кас","Ліс","Сьн"],dayNames:["нядзеля","панядзелак","аўторак","серада","чацьвер","пятніца","субота"],dayNamesShort:["ндз","пнд","аўт","срд","чцв","птн","сбт"],dayNamesMin:["Нд","Пн","Аў","Ср","Чц","Пт","Сб"],weekHeader:"Тд",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},a.setDefaults(a.regional.be),a.regional.be});
--------------------------------------------------------------------------------
/third_party/jquery-ui/ui/minified/i18n/datepicker-bg.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.12.1 - 2016-09-15
2 | * http://jqueryui.com
3 | * Copyright jQuery Foundation and other contributors; Licensed */
4 | !function(a){"function"==typeof define&&define.amd?define(["../widgets/datepicker"],a):a(jQuery.datepicker)}(function(a){return a.regional.bg={closeText:"затвори",prevText:"<назад",nextText:"напред>",nextBigText:">>",currentText:"днес",monthNames:["Януари","Февруари","Март","Април","Май","Юни","Юли","Август","Септември","Октомври","Ноември","Декември"],monthNamesShort:["Яну","Фев","Мар","Апр","Май","Юни","Юли","Авг","Сеп","Окт","Нов","Дек"],dayNames:["Неделя","Понеделник","Вторник","Сряда","Четвъртък","Петък","Събота"],dayNamesShort:["Нед","Пон","Вто","Сря","Чет","Пет","Съб"],dayNamesMin:["Не","По","Вт","Ср","Че","Пе","Съ"],weekHeader:"Wk",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},a.setDefaults(a.regional.bg),a.regional.bg});
--------------------------------------------------------------------------------
/third_party/jquery-ui/ui/minified/i18n/datepicker-bs.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.12.1 - 2016-09-15
2 | * http://jqueryui.com
3 | * Copyright jQuery Foundation and other contributors; Licensed */
4 | !function(a){"function"==typeof define&&define.amd?define(["../widgets/datepicker"],a):a(jQuery.datepicker)}(function(a){return a.regional.bs={closeText:"Zatvori",prevText:"<",nextText:">",currentText:"Danas",monthNames:["Januar","Februar","Mart","April","Maj","Juni","Juli","August","Septembar","Oktobar","Novembar","Decembar"],monthNamesShort:["Jan","Feb","Mar","Apr","Maj","Jun","Jul","Aug","Sep","Okt","Nov","Dec"],dayNames:["Nedelja","Ponedeljak","Utorak","Srijeda","Četvrtak","Petak","Subota"],dayNamesShort:["Ned","Pon","Uto","Sri","Čet","Pet","Sub"],dayNamesMin:["Ne","Po","Ut","Sr","Če","Pe","Su"],weekHeader:"Wk",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},a.setDefaults(a.regional.bs),a.regional.bs});
--------------------------------------------------------------------------------
/third_party/jquery-ui/ui/minified/i18n/datepicker-ca.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.12.1 - 2016-09-15
2 | * http://jqueryui.com
3 | * Copyright jQuery Foundation and other contributors; Licensed */
4 | !function(a){"function"==typeof define&&define.amd?define(["../widgets/datepicker"],a):a(jQuery.datepicker)}(function(a){return a.regional.ca={closeText:"Tanca",prevText:"Anterior",nextText:"Següent",currentText:"Avui",monthNames:["gener","febrer","març","abril","maig","juny","juliol","agost","setembre","octubre","novembre","desembre"],monthNamesShort:["gen","feb","març","abr","maig","juny","jul","ag","set","oct","nov","des"],dayNames:["diumenge","dilluns","dimarts","dimecres","dijous","divendres","dissabte"],dayNamesShort:["dg","dl","dt","dc","dj","dv","ds"],dayNamesMin:["dg","dl","dt","dc","dj","dv","ds"],weekHeader:"Set",dateFormat:"dd/mm/yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},a.setDefaults(a.regional.ca),a.regional.ca});
--------------------------------------------------------------------------------
/third_party/jquery-ui/ui/minified/i18n/datepicker-cs.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.12.1 - 2016-09-15
2 | * http://jqueryui.com
3 | * Copyright jQuery Foundation and other contributors; Licensed */
4 | !function(a){"function"==typeof define&&define.amd?define(["../widgets/datepicker"],a):a(jQuery.datepicker)}(function(a){return a.regional.cs={closeText:"Zavřít",prevText:"<Dříve",nextText:"Později>",currentText:"Nyní",monthNames:["leden","únor","březen","duben","květen","červen","červenec","srpen","září","říjen","listopad","prosinec"],monthNamesShort:["led","úno","bře","dub","kvě","čer","čvc","srp","zář","říj","lis","pro"],dayNames:["neděle","pondělí","úterý","středa","čtvrtek","pátek","sobota"],dayNamesShort:["ne","po","út","st","čt","pá","so"],dayNamesMin:["ne","po","út","st","čt","pá","so"],weekHeader:"Týd",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},a.setDefaults(a.regional.cs),a.regional.cs});
--------------------------------------------------------------------------------
/third_party/jquery-ui/ui/minified/i18n/datepicker-da.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.12.1 - 2016-09-15
2 | * http://jqueryui.com
3 | * Copyright jQuery Foundation and other contributors; Licensed */
4 | !function(a){"function"==typeof define&&define.amd?define(["../widgets/datepicker"],a):a(jQuery.datepicker)}(function(a){return a.regional.da={closeText:"Luk",prevText:"<Forrige",nextText:"Næste>",currentText:"Idag",monthNames:["Januar","Februar","Marts","April","Maj","Juni","Juli","August","September","Oktober","November","December"],monthNamesShort:["Jan","Feb","Mar","Apr","Maj","Jun","Jul","Aug","Sep","Okt","Nov","Dec"],dayNames:["Søndag","Mandag","Tirsdag","Onsdag","Torsdag","Fredag","Lørdag"],dayNamesShort:["Søn","Man","Tir","Ons","Tor","Fre","Lør"],dayNamesMin:["Sø","Ma","Ti","On","To","Fr","Lø"],weekHeader:"Uge",dateFormat:"dd-mm-yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},a.setDefaults(a.regional.da),a.regional.da});
--------------------------------------------------------------------------------
/third_party/jquery-ui/ui/minified/i18n/datepicker-de.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.12.1 - 2016-09-15
2 | * http://jqueryui.com
3 | * Copyright jQuery Foundation and other contributors; Licensed */
4 | !function(a){"function"==typeof define&&define.amd?define(["../widgets/datepicker"],a):a(jQuery.datepicker)}(function(a){return a.regional.de={closeText:"Schließen",prevText:"<Zurück",nextText:"Vor>",currentText:"Heute",monthNames:["Januar","Februar","März","April","Mai","Juni","Juli","August","September","Oktober","November","Dezember"],monthNamesShort:["Jan","Feb","Mär","Apr","Mai","Jun","Jul","Aug","Sep","Okt","Nov","Dez"],dayNames:["Sonntag","Montag","Dienstag","Mittwoch","Donnerstag","Freitag","Samstag"],dayNamesShort:["So","Mo","Di","Mi","Do","Fr","Sa"],dayNamesMin:["So","Mo","Di","Mi","Do","Fr","Sa"],weekHeader:"KW",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},a.setDefaults(a.regional.de),a.regional.de});
--------------------------------------------------------------------------------
/third_party/jquery-ui/ui/minified/i18n/datepicker-en-AU.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.12.1 - 2016-09-15
2 | * http://jqueryui.com
3 | * Copyright jQuery Foundation and other contributors; Licensed */
4 | !function(a){"function"==typeof define&&define.amd?define(["../widgets/datepicker"],a):a(jQuery.datepicker)}(function(a){return a.regional["en-AU"]={closeText:"Done",prevText:"Prev",nextText:"Next",currentText:"Today",monthNames:["January","February","March","April","May","June","July","August","September","October","November","December"],monthNamesShort:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],dayNames:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],dayNamesShort:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],dayNamesMin:["Su","Mo","Tu","We","Th","Fr","Sa"],weekHeader:"Wk",dateFormat:"dd/mm/yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},a.setDefaults(a.regional["en-AU"]),a.regional["en-AU"]});
--------------------------------------------------------------------------------
/third_party/jquery-ui/ui/minified/i18n/datepicker-en-GB.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.12.1 - 2016-09-15
2 | * http://jqueryui.com
3 | * Copyright jQuery Foundation and other contributors; Licensed */
4 | !function(a){"function"==typeof define&&define.amd?define(["../widgets/datepicker"],a):a(jQuery.datepicker)}(function(a){return a.regional["en-GB"]={closeText:"Done",prevText:"Prev",nextText:"Next",currentText:"Today",monthNames:["January","February","March","April","May","June","July","August","September","October","November","December"],monthNamesShort:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],dayNames:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],dayNamesShort:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],dayNamesMin:["Su","Mo","Tu","We","Th","Fr","Sa"],weekHeader:"Wk",dateFormat:"dd/mm/yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},a.setDefaults(a.regional["en-GB"]),a.regional["en-GB"]});
--------------------------------------------------------------------------------
/third_party/jquery-ui/ui/minified/i18n/datepicker-en-NZ.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.12.1 - 2016-09-15
2 | * http://jqueryui.com
3 | * Copyright jQuery Foundation and other contributors; Licensed */
4 | !function(a){"function"==typeof define&&define.amd?define(["../widgets/datepicker"],a):a(jQuery.datepicker)}(function(a){return a.regional["en-NZ"]={closeText:"Done",prevText:"Prev",nextText:"Next",currentText:"Today",monthNames:["January","February","March","April","May","June","July","August","September","October","November","December"],monthNamesShort:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],dayNames:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],dayNamesShort:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],dayNamesMin:["Su","Mo","Tu","We","Th","Fr","Sa"],weekHeader:"Wk",dateFormat:"dd/mm/yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},a.setDefaults(a.regional["en-NZ"]),a.regional["en-NZ"]});
--------------------------------------------------------------------------------
/third_party/jquery-ui/ui/minified/i18n/datepicker-eo.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.12.1 - 2016-09-15
2 | * http://jqueryui.com
3 | * Copyright jQuery Foundation and other contributors; Licensed */
4 | !function(a){"function"==typeof define&&define.amd?define(["../widgets/datepicker"],a):a(jQuery.datepicker)}(function(a){return a.regional.eo={closeText:"Fermi",prevText:"<Anta",nextText:"Sekv>",currentText:"Nuna",monthNames:["Januaro","Februaro","Marto","Aprilo","Majo","Junio","Julio","Aŭgusto","Septembro","Oktobro","Novembro","Decembro"],monthNamesShort:["Jan","Feb","Mar","Apr","Maj","Jun","Jul","Aŭg","Sep","Okt","Nov","Dec"],dayNames:["Dimanĉo","Lundo","Mardo","Merkredo","Ĵaŭdo","Vendredo","Sabato"],dayNamesShort:["Dim","Lun","Mar","Mer","Ĵaŭ","Ven","Sab"],dayNamesMin:["Di","Lu","Ma","Me","Ĵa","Ve","Sa"],weekHeader:"Sb",dateFormat:"dd/mm/yy",firstDay:0,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},a.setDefaults(a.regional.eo),a.regional.eo});
--------------------------------------------------------------------------------
/third_party/jquery-ui/ui/minified/i18n/datepicker-es.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.12.1 - 2016-09-15
2 | * http://jqueryui.com
3 | * Copyright jQuery Foundation and other contributors; Licensed */
4 | !function(a){"function"==typeof define&&define.amd?define(["../widgets/datepicker"],a):a(jQuery.datepicker)}(function(a){return a.regional.es={closeText:"Cerrar",prevText:"<Ant",nextText:"Sig>",currentText:"Hoy",monthNames:["enero","febrero","marzo","abril","mayo","junio","julio","agosto","septiembre","octubre","noviembre","diciembre"],monthNamesShort:["ene","feb","mar","abr","may","jun","jul","ago","sep","oct","nov","dic"],dayNames:["domingo","lunes","martes","miércoles","jueves","viernes","sábado"],dayNamesShort:["dom","lun","mar","mié","jue","vie","sáb"],dayNamesMin:["D","L","M","X","J","V","S"],weekHeader:"Sm",dateFormat:"dd/mm/yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},a.setDefaults(a.regional.es),a.regional.es});
--------------------------------------------------------------------------------
/third_party/jquery-ui/ui/minified/i18n/datepicker-et.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.12.1 - 2016-09-15
2 | * http://jqueryui.com
3 | * Copyright jQuery Foundation and other contributors; Licensed */
4 | !function(a){"function"==typeof define&&define.amd?define(["../widgets/datepicker"],a):a(jQuery.datepicker)}(function(a){return a.regional.et={closeText:"Sulge",prevText:"Eelnev",nextText:"Järgnev",currentText:"Täna",monthNames:["Jaanuar","Veebruar","Märts","Aprill","Mai","Juuni","Juuli","August","September","Oktoober","November","Detsember"],monthNamesShort:["Jaan","Veebr","Märts","Apr","Mai","Juuni","Juuli","Aug","Sept","Okt","Nov","Dets"],dayNames:["Pühapäev","Esmaspäev","Teisipäev","Kolmapäev","Neljapäev","Reede","Laupäev"],dayNamesShort:["Pühap","Esmasp","Teisip","Kolmap","Neljap","Reede","Laup"],dayNamesMin:["P","E","T","K","N","R","L"],weekHeader:"näd",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},a.setDefaults(a.regional.et),a.regional.et});
--------------------------------------------------------------------------------
/third_party/jquery-ui/ui/minified/i18n/datepicker-eu.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.12.1 - 2016-09-15
2 | * http://jqueryui.com
3 | * Copyright jQuery Foundation and other contributors; Licensed */
4 | !function(a){"function"==typeof define&&define.amd?define(["../widgets/datepicker"],a):a(jQuery.datepicker)}(function(a){return a.regional.eu={closeText:"Egina",prevText:"<Aur",nextText:"Hur>",currentText:"Gaur",monthNames:["urtarrila","otsaila","martxoa","apirila","maiatza","ekaina","uztaila","abuztua","iraila","urria","azaroa","abendua"],monthNamesShort:["urt.","ots.","mar.","api.","mai.","eka.","uzt.","abu.","ira.","urr.","aza.","abe."],dayNames:["igandea","astelehena","asteartea","asteazkena","osteguna","ostirala","larunbata"],dayNamesShort:["ig.","al.","ar.","az.","og.","ol.","lr."],dayNamesMin:["ig","al","ar","az","og","ol","lr"],weekHeader:"As",dateFormat:"yy-mm-dd",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},a.setDefaults(a.regional.eu),a.regional.eu});
--------------------------------------------------------------------------------
/third_party/jquery-ui/ui/minified/i18n/datepicker-fa.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.12.1 - 2016-09-15
2 | * http://jqueryui.com
3 | * Copyright jQuery Foundation and other contributors; Licensed */
4 | !function(a){"function"==typeof define&&define.amd?define(["../widgets/datepicker"],a):a(jQuery.datepicker)}(function(a){return a.regional.fa={closeText:"بستن",prevText:"<قبلی",nextText:"بعدی>",currentText:"امروز",monthNames:["ژانویه","فوریه","مارس","آوریل","مه","ژوئن","ژوئیه","اوت","سپتامبر","اکتبر","نوامبر","دسامبر"],monthNamesShort:["1","2","3","4","5","6","7","8","9","10","11","12"],dayNames:["يکشنبه","دوشنبه","سهشنبه","چهارشنبه","پنجشنبه","جمعه","شنبه"],dayNamesShort:["ی","د","س","چ","پ","ج","ش"],dayNamesMin:["ی","د","س","چ","پ","ج","ش"],weekHeader:"هف",dateFormat:"yy/mm/dd",firstDay:6,isRTL:!0,showMonthAfterYear:!1,yearSuffix:""},a.setDefaults(a.regional.fa),a.regional.fa});
--------------------------------------------------------------------------------
/third_party/jquery-ui/ui/minified/i18n/datepicker-fo.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.12.1 - 2016-09-15
2 | * http://jqueryui.com
3 | * Copyright jQuery Foundation and other contributors; Licensed */
4 | !function(a){"function"==typeof define&&define.amd?define(["../widgets/datepicker"],a):a(jQuery.datepicker)}(function(a){return a.regional.fo={closeText:"Lat aftur",prevText:"<Fyrra",nextText:"Næsta>",currentText:"Í dag",monthNames:["Januar","Februar","Mars","Apríl","Mei","Juni","Juli","August","September","Oktober","November","Desember"],monthNamesShort:["Jan","Feb","Mar","Apr","Mei","Jun","Jul","Aug","Sep","Okt","Nov","Des"],dayNames:["Sunnudagur","Mánadagur","Týsdagur","Mikudagur","Hósdagur","Fríggjadagur","Leyardagur"],dayNamesShort:["Sun","Mán","Týs","Mik","Hós","Frí","Ley"],dayNamesMin:["Su","Má","Tý","Mi","Hó","Fr","Le"],weekHeader:"Vk",dateFormat:"dd-mm-yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},a.setDefaults(a.regional.fo),a.regional.fo});
--------------------------------------------------------------------------------
/third_party/jquery-ui/ui/minified/i18n/datepicker-fr.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.12.1 - 2016-09-15
2 | * http://jqueryui.com
3 | * Copyright jQuery Foundation and other contributors; Licensed */
4 | !function(a){"function"==typeof define&&define.amd?define(["../widgets/datepicker"],a):a(jQuery.datepicker)}(function(a){return a.regional.fr={closeText:"Fermer",prevText:"Précédent",nextText:"Suivant",currentText:"Aujourd'hui",monthNames:["janvier","février","mars","avril","mai","juin","juillet","août","septembre","octobre","novembre","décembre"],monthNamesShort:["janv.","févr.","mars","avr.","mai","juin","juil.","août","sept.","oct.","nov.","déc."],dayNames:["dimanche","lundi","mardi","mercredi","jeudi","vendredi","samedi"],dayNamesShort:["dim.","lun.","mar.","mer.","jeu.","ven.","sam."],dayNamesMin:["D","L","M","M","J","V","S"],weekHeader:"Sem.",dateFormat:"dd/mm/yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},a.setDefaults(a.regional.fr),a.regional.fr});
--------------------------------------------------------------------------------
/third_party/jquery-ui/ui/minified/i18n/datepicker-gl.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.12.1 - 2016-09-15
2 | * http://jqueryui.com
3 | * Copyright jQuery Foundation and other contributors; Licensed */
4 | !function(a){"function"==typeof define&&define.amd?define(["../widgets/datepicker"],a):a(jQuery.datepicker)}(function(a){return a.regional.gl={closeText:"Pechar",prevText:"<Ant",nextText:"Seg>",currentText:"Hoxe",monthNames:["Xaneiro","Febreiro","Marzo","Abril","Maio","Xuño","Xullo","Agosto","Setembro","Outubro","Novembro","Decembro"],monthNamesShort:["Xan","Feb","Mar","Abr","Mai","Xuñ","Xul","Ago","Set","Out","Nov","Dec"],dayNames:["Domingo","Luns","Martes","Mércores","Xoves","Venres","Sábado"],dayNamesShort:["Dom","Lun","Mar","Mér","Xov","Ven","Sáb"],dayNamesMin:["Do","Lu","Ma","Mé","Xo","Ve","Sá"],weekHeader:"Sm",dateFormat:"dd/mm/yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},a.setDefaults(a.regional.gl),a.regional.gl});
--------------------------------------------------------------------------------
/third_party/jquery-ui/ui/minified/i18n/datepicker-he.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.12.1 - 2016-09-15
2 | * http://jqueryui.com
3 | * Copyright jQuery Foundation and other contributors; Licensed */
4 | !function(a){"function"==typeof define&&define.amd?define(["../widgets/datepicker"],a):a(jQuery.datepicker)}(function(a){return a.regional.he={closeText:"סגור",prevText:"<הקודם",nextText:"הבא>",currentText:"היום",monthNames:["ינואר","פברואר","מרץ","אפריל","מאי","יוני","יולי","אוגוסט","ספטמבר","אוקטובר","נובמבר","דצמבר"],monthNamesShort:["ינו","פבר","מרץ","אפר","מאי","יוני","יולי","אוג","ספט","אוק","נוב","דצמ"],dayNames:["ראשון","שני","שלישי","רביעי","חמישי","שישי","שבת"],dayNamesShort:["א'","ב'","ג'","ד'","ה'","ו'","שבת"],dayNamesMin:["א'","ב'","ג'","ד'","ה'","ו'","שבת"],weekHeader:"Wk",dateFormat:"dd/mm/yy",firstDay:0,isRTL:!0,showMonthAfterYear:!1,yearSuffix:""},a.setDefaults(a.regional.he),a.regional.he});
--------------------------------------------------------------------------------
/third_party/jquery-ui/ui/minified/i18n/datepicker-hi.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.12.1 - 2016-09-15
2 | * http://jqueryui.com
3 | * Copyright jQuery Foundation and other contributors; Licensed */
4 | !function(a){"function"==typeof define&&define.amd?define(["../widgets/datepicker"],a):a(jQuery.datepicker)}(function(a){return a.regional.hi={closeText:"बंद",prevText:"पिछला",nextText:"अगला",currentText:"आज",monthNames:["जनवरी ","फरवरी","मार्च","अप्रेल","मई","जून","जूलाई","अगस्त ","सितम्बर","अक्टूबर","नवम्बर","दिसम्बर"],monthNamesShort:["जन","फर","मार्च","अप्रेल","मई","जून","जूलाई","अग","सित","अक्ट","नव","दि"],dayNames:["रविवार","सोमवार","मंगलवार","बुधवार","गुरुवार","शुक्रवार","शनिवार"],dayNamesShort:["रवि","सोम","मंगल","बुध","गुरु","शुक्र","शनि"],dayNamesMin:["रवि","सोम","मंगल","बुध","गुरु","शुक्र","शनि"],weekHeader:"हफ्ता",dateFormat:"dd/mm/yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},a.setDefaults(a.regional.hi),a.regional.hi});
--------------------------------------------------------------------------------
/third_party/jquery-ui/ui/minified/i18n/datepicker-hr.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.12.1 - 2016-09-15
2 | * http://jqueryui.com
3 | * Copyright jQuery Foundation and other contributors; Licensed */
4 | !function(a){"function"==typeof define&&define.amd?define(["../widgets/datepicker"],a):a(jQuery.datepicker)}(function(a){return a.regional.hr={closeText:"Zatvori",prevText:"<",nextText:">",currentText:"Danas",monthNames:["Siječanj","Veljača","Ožujak","Travanj","Svibanj","Lipanj","Srpanj","Kolovoz","Rujan","Listopad","Studeni","Prosinac"],monthNamesShort:["Sij","Velj","Ožu","Tra","Svi","Lip","Srp","Kol","Ruj","Lis","Stu","Pro"],dayNames:["Nedjelja","Ponedjeljak","Utorak","Srijeda","Četvrtak","Petak","Subota"],dayNamesShort:["Ned","Pon","Uto","Sri","Čet","Pet","Sub"],dayNamesMin:["Ne","Po","Ut","Sr","Če","Pe","Su"],weekHeader:"Tje",dateFormat:"dd.mm.yy.",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},a.setDefaults(a.regional.hr),a.regional.hr});
--------------------------------------------------------------------------------
/third_party/jquery-ui/ui/minified/i18n/datepicker-hu.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.12.1 - 2016-09-15
2 | * http://jqueryui.com
3 | * Copyright jQuery Foundation and other contributors; Licensed */
4 | !function(a){"function"==typeof define&&define.amd?define(["../widgets/datepicker"],a):a(jQuery.datepicker)}(function(a){return a.regional.hu={closeText:"bezár",prevText:"vissza",nextText:"előre",currentText:"ma",monthNames:["Január","Február","Március","Április","Május","Június","Július","Augusztus","Szeptember","Október","November","December"],monthNamesShort:["Jan","Feb","Már","Ápr","Máj","Jún","Júl","Aug","Szep","Okt","Nov","Dec"],dayNames:["Vasárnap","Hétfő","Kedd","Szerda","Csütörtök","Péntek","Szombat"],dayNamesShort:["Vas","Hét","Ked","Sze","Csü","Pén","Szo"],dayNamesMin:["V","H","K","Sze","Cs","P","Szo"],weekHeader:"Hét",dateFormat:"yy.mm.dd.",firstDay:1,isRTL:!1,showMonthAfterYear:!0,yearSuffix:""},a.setDefaults(a.regional.hu),a.regional.hu});
--------------------------------------------------------------------------------
/third_party/jquery-ui/ui/minified/i18n/datepicker-id.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.12.1 - 2016-09-15
2 | * http://jqueryui.com
3 | * Copyright jQuery Foundation and other contributors; Licensed */
4 | !function(a){"function"==typeof define&&define.amd?define(["../widgets/datepicker"],a):a(jQuery.datepicker)}(function(a){return a.regional.id={closeText:"Tutup",prevText:"<mundur",nextText:"maju>",currentText:"hari ini",monthNames:["Januari","Februari","Maret","April","Mei","Juni","Juli","Agustus","September","Oktober","Nopember","Desember"],monthNamesShort:["Jan","Feb","Mar","Apr","Mei","Jun","Jul","Agus","Sep","Okt","Nop","Des"],dayNames:["Minggu","Senin","Selasa","Rabu","Kamis","Jumat","Sabtu"],dayNamesShort:["Min","Sen","Sel","Rab","kam","Jum","Sab"],dayNamesMin:["Mg","Sn","Sl","Rb","Km","jm","Sb"],weekHeader:"Mg",dateFormat:"dd/mm/yy",firstDay:0,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},a.setDefaults(a.regional.id),a.regional.id});
--------------------------------------------------------------------------------
/third_party/jquery-ui/ui/minified/i18n/datepicker-is.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.12.1 - 2016-09-15
2 | * http://jqueryui.com
3 | * Copyright jQuery Foundation and other contributors; Licensed */
4 | !function(a){"function"==typeof define&&define.amd?define(["../widgets/datepicker"],a):a(jQuery.datepicker)}(function(a){return a.regional.is={closeText:"Loka",prevText:"< Fyrri",nextText:"Næsti >",currentText:"Í dag",monthNames:["Janúar","Febrúar","Mars","Apríl","Maí","Júní","Júlí","Ágúst","September","Október","Nóvember","Desember"],monthNamesShort:["Jan","Feb","Mar","Apr","Maí","Jún","Júl","Ágú","Sep","Okt","Nóv","Des"],dayNames:["Sunnudagur","Mánudagur","Þriðjudagur","Miðvikudagur","Fimmtudagur","Föstudagur","Laugardagur"],dayNamesShort:["Sun","Mán","Þri","Mið","Fim","Fös","Lau"],dayNamesMin:["Su","Má","Þr","Mi","Fi","Fö","La"],weekHeader:"Vika",dateFormat:"dd.mm.yy",firstDay:0,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},a.setDefaults(a.regional.is),a.regional.is});
--------------------------------------------------------------------------------
/third_party/jquery-ui/ui/minified/i18n/datepicker-it.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.12.1 - 2016-09-15
2 | * http://jqueryui.com
3 | * Copyright jQuery Foundation and other contributors; Licensed */
4 | !function(a){"function"==typeof define&&define.amd?define(["../widgets/datepicker"],a):a(jQuery.datepicker)}(function(a){return a.regional.it={closeText:"Chiudi",prevText:"<Prec",nextText:"Succ>",currentText:"Oggi",monthNames:["Gennaio","Febbraio","Marzo","Aprile","Maggio","Giugno","Luglio","Agosto","Settembre","Ottobre","Novembre","Dicembre"],monthNamesShort:["Gen","Feb","Mar","Apr","Mag","Giu","Lug","Ago","Set","Ott","Nov","Dic"],dayNames:["Domenica","Lunedì","Martedì","Mercoledì","Giovedì","Venerdì","Sabato"],dayNamesShort:["Dom","Lun","Mar","Mer","Gio","Ven","Sab"],dayNamesMin:["Do","Lu","Ma","Me","Gi","Ve","Sa"],weekHeader:"Sm",dateFormat:"dd/mm/yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},a.setDefaults(a.regional.it),a.regional.it});
--------------------------------------------------------------------------------
/third_party/jquery-ui/ui/minified/i18n/datepicker-ja.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.12.1 - 2016-09-15
2 | * http://jqueryui.com
3 | * Copyright jQuery Foundation and other contributors; Licensed */
4 | !function(a){"function"==typeof define&&define.amd?define(["../widgets/datepicker"],a):a(jQuery.datepicker)}(function(a){return a.regional.ja={closeText:"閉じる",prevText:"<前",nextText:"次>",currentText:"今日",monthNames:["1月","2月","3月","4月","5月","6月","7月","8月","9月","10月","11月","12月"],monthNamesShort:["1月","2月","3月","4月","5月","6月","7月","8月","9月","10月","11月","12月"],dayNames:["日曜日","月曜日","火曜日","水曜日","木曜日","金曜日","土曜日"],dayNamesShort:["日","月","火","水","木","金","土"],dayNamesMin:["日","月","火","水","木","金","土"],weekHeader:"週",dateFormat:"yy/mm/dd",firstDay:0,isRTL:!1,showMonthAfterYear:!0,yearSuffix:"年"},a.setDefaults(a.regional.ja),a.regional.ja});
--------------------------------------------------------------------------------
/third_party/jquery-ui/ui/minified/i18n/datepicker-kk.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.12.1 - 2016-09-15
2 | * http://jqueryui.com
3 | * Copyright jQuery Foundation and other contributors; Licensed */
4 | !function(a){"function"==typeof define&&define.amd?define(["../widgets/datepicker"],a):a(jQuery.datepicker)}(function(a){return a.regional.kk={closeText:"Жабу",prevText:"<Алдыңғы",nextText:"Келесі>",currentText:"Бүгін",monthNames:["Қаңтар","Ақпан","Наурыз","Сәуір","Мамыр","Маусым","Шілде","Тамыз","Қыркүйек","Қазан","Қараша","Желтоқсан"],monthNamesShort:["Қаң","Ақп","Нау","Сәу","Мам","Мау","Шіл","Там","Қыр","Қаз","Қар","Жел"],dayNames:["Жексенбі","Дүйсенбі","Сейсенбі","Сәрсенбі","Бейсенбі","Жұма","Сенбі"],dayNamesShort:["жкс","дсн","ссн","срс","бсн","жма","снб"],dayNamesMin:["Жк","Дс","Сс","Ср","Бс","Жм","Сн"],weekHeader:"Не",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},a.setDefaults(a.regional.kk),a.regional.kk});
--------------------------------------------------------------------------------
/third_party/jquery-ui/ui/minified/i18n/datepicker-km.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.12.1 - 2016-09-15
2 | * http://jqueryui.com
3 | * Copyright jQuery Foundation and other contributors; Licensed */
4 | !function(a){"function"==typeof define&&define.amd?define(["../widgets/datepicker"],a):a(jQuery.datepicker)}(function(a){return a.regional.km={closeText:"ធ្វើរួច",prevText:"មុន",nextText:"បន្ទាប់",currentText:"ថ្ងៃនេះ",monthNames:["មករា","កុម្ភៈ","មីនា","មេសា","ឧសភា","មិថុនា","កក្កដា","សីហា","កញ្ញា","តុលា","វិច្ឆិកា","ធ្នូ"],monthNamesShort:["មករា","កុម្ភៈ","មីនា","មេសា","ឧសភា","មិថុនា","កក្កដា","សីហា","កញ្ញា","តុលា","វិច្ឆិកា","ធ្នូ"],dayNames:["អាទិត្យ","ចន្ទ","អង្គារ","ពុធ","ព្រហស្បតិ៍","សុក្រ","សៅរ៍"],dayNamesShort:["អា","ច","អ","ពុ","ព្រហ","សុ","សៅ"],dayNamesMin:["អា","ច","អ","ពុ","ព្រហ","សុ","សៅ"],weekHeader:"សប្ដាហ៍",dateFormat:"dd-mm-yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},a.setDefaults(a.regional.km),a.regional.km});
--------------------------------------------------------------------------------
/third_party/jquery-ui/ui/minified/i18n/datepicker-ko.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.12.1 - 2016-09-15
2 | * http://jqueryui.com
3 | * Copyright jQuery Foundation and other contributors; Licensed */
4 | !function(a){"function"==typeof define&&define.amd?define(["../widgets/datepicker"],a):a(jQuery.datepicker)}(function(a){return a.regional.ko={closeText:"닫기",prevText:"이전달",nextText:"다음달",currentText:"오늘",monthNames:["1월","2월","3월","4월","5월","6월","7월","8월","9월","10월","11월","12월"],monthNamesShort:["1월","2월","3월","4월","5월","6월","7월","8월","9월","10월","11월","12월"],dayNames:["일요일","월요일","화요일","수요일","목요일","금요일","토요일"],dayNamesShort:["일","월","화","수","목","금","토"],dayNamesMin:["일","월","화","수","목","금","토"],weekHeader:"주",dateFormat:"yy. m. d.",firstDay:0,isRTL:!1,showMonthAfterYear:!0,yearSuffix:"년"},a.setDefaults(a.regional.ko),a.regional.ko});
--------------------------------------------------------------------------------
/third_party/jquery-ui/ui/minified/i18n/datepicker-ky.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.12.1 - 2016-09-15
2 | * http://jqueryui.com
3 | * Copyright jQuery Foundation and other contributors; Licensed */
4 | !function(a){"function"==typeof define&&define.amd?define(["../widgets/datepicker"],a):a(jQuery.datepicker)}(function(a){return a.regional.ky={closeText:"Жабуу",prevText:"<Мур",nextText:"Кий>",currentText:"Бүгүн",monthNames:["Январь","Февраль","Март","Апрель","Май","Июнь","Июль","Август","Сентябрь","Октябрь","Ноябрь","Декабрь"],monthNamesShort:["Янв","Фев","Мар","Апр","Май","Июн","Июл","Авг","Сен","Окт","Ноя","Дек"],dayNames:["жекшемби","дүйшөмбү","шейшемби","шаршемби","бейшемби","жума","ишемби"],dayNamesShort:["жек","дүй","шей","шар","бей","жум","ише"],dayNamesMin:["Жк","Дш","Шш","Шр","Бш","Жм","Иш"],weekHeader:"Жум",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},a.setDefaults(a.regional.ky),a.regional.ky});
--------------------------------------------------------------------------------
/third_party/jquery-ui/ui/minified/i18n/datepicker-lb.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.12.1 - 2016-09-15
2 | * http://jqueryui.com
3 | * Copyright jQuery Foundation and other contributors; Licensed */
4 | !function(a){"function"==typeof define&&define.amd?define(["../widgets/datepicker"],a):a(jQuery.datepicker)}(function(a){return a.regional.lb={closeText:"Fäerdeg",prevText:"Zréck",nextText:"Weider",currentText:"Haut",monthNames:["Januar","Februar","Mäerz","Abrëll","Mee","Juni","Juli","August","September","Oktober","November","Dezember"],monthNamesShort:["Jan","Feb","Mäe","Abr","Mee","Jun","Jul","Aug","Sep","Okt","Nov","Dez"],dayNames:["Sonndeg","Méindeg","Dënschdeg","Mëttwoch","Donneschdeg","Freideg","Samschdeg"],dayNamesShort:["Son","Méi","Dën","Mët","Don","Fre","Sam"],dayNamesMin:["So","Mé","Dë","Më","Do","Fr","Sa"],weekHeader:"W",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},a.setDefaults(a.regional.lb),a.regional.lb});
--------------------------------------------------------------------------------
/third_party/jquery-ui/ui/minified/i18n/datepicker-lv.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.12.1 - 2016-09-15
2 | * http://jqueryui.com
3 | * Copyright jQuery Foundation and other contributors; Licensed */
4 | !function(a){"function"==typeof define&&define.amd?define(["../widgets/datepicker"],a):a(jQuery.datepicker)}(function(a){return a.regional.lv={closeText:"Aizvērt",prevText:"Iepr.",nextText:"Nāk.",currentText:"Šodien",monthNames:["Janvāris","Februāris","Marts","Aprīlis","Maijs","Jūnijs","Jūlijs","Augusts","Septembris","Oktobris","Novembris","Decembris"],monthNamesShort:["Jan","Feb","Mar","Apr","Mai","Jūn","Jūl","Aug","Sep","Okt","Nov","Dec"],dayNames:["svētdiena","pirmdiena","otrdiena","trešdiena","ceturtdiena","piektdiena","sestdiena"],dayNamesShort:["svt","prm","otr","tre","ctr","pkt","sst"],dayNamesMin:["Sv","Pr","Ot","Tr","Ct","Pk","Ss"],weekHeader:"Ned.",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},a.setDefaults(a.regional.lv),a.regional.lv});
--------------------------------------------------------------------------------
/third_party/jquery-ui/ui/minified/i18n/datepicker-mk.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.12.1 - 2016-09-15
2 | * http://jqueryui.com
3 | * Copyright jQuery Foundation and other contributors; Licensed */
4 | !function(a){"function"==typeof define&&define.amd?define(["../widgets/datepicker"],a):a(jQuery.datepicker)}(function(a){return a.regional.mk={closeText:"Затвори",prevText:"<",nextText:">",currentText:"Денес",monthNames:["Јануари","Февруари","Март","Април","Мај","Јуни","Јули","Август","Септември","Октомври","Ноември","Декември"],monthNamesShort:["Јан","Фев","Мар","Апр","Мај","Јун","Јул","Авг","Сеп","Окт","Ное","Дек"],dayNames:["Недела","Понеделник","Вторник","Среда","Четврток","Петок","Сабота"],dayNamesShort:["Нед","Пон","Вто","Сре","Чет","Пет","Саб"],dayNamesMin:["Не","По","Вт","Ср","Че","Пе","Са"],weekHeader:"Сед",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},a.setDefaults(a.regional.mk),a.regional.mk});
--------------------------------------------------------------------------------
/third_party/jquery-ui/ui/minified/i18n/datepicker-ml.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.12.1 - 2016-09-15
2 | * http://jqueryui.com
3 | * Copyright jQuery Foundation and other contributors; Licensed */
4 | !function(a){"function"==typeof define&&define.amd?define(["../widgets/datepicker"],a):a(jQuery.datepicker)}(function(a){return a.regional.ml={closeText:"ശരി",prevText:"മുന്നത്തെ",nextText:"അടുത്തത് ",currentText:"ഇന്ന്",monthNames:["ജനുവരി","ഫെബ്രുവരി","മാര്ച്ച്","ഏപ്രില്","മേയ്","ജൂണ്","ജൂലൈ","ആഗസ്റ്റ്","സെപ്റ്റംബര്","ഒക്ടോബര്","നവംബര്","ഡിസംബര്"],monthNamesShort:["ജനു","ഫെബ്","മാര്","ഏപ്രി","മേയ്","ജൂണ്","ജൂലാ","ആഗ","സെപ്","ഒക്ടോ","നവം","ഡിസ"],dayNames:["ഞായര്","തിങ്കള്","ചൊവ്വ","ബുധന്","വ്യാഴം","വെള്ളി","ശനി"],dayNamesShort:["ഞായ","തിങ്ക","ചൊവ്വ","ബുധ","വ്യാഴം","വെള്ളി","ശനി"],dayNamesMin:["ഞാ","തി","ചൊ","ബു","വ്യാ","വെ","ശ"],weekHeader:"ആ",dateFormat:"dd/mm/yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},a.setDefaults(a.regional.ml),a.regional.ml});
--------------------------------------------------------------------------------
/third_party/jquery-ui/ui/minified/i18n/datepicker-ms.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.12.1 - 2016-09-15
2 | * http://jqueryui.com
3 | * Copyright jQuery Foundation and other contributors; Licensed */
4 | !function(a){"function"==typeof define&&define.amd?define(["../widgets/datepicker"],a):a(jQuery.datepicker)}(function(a){return a.regional.ms={closeText:"Tutup",prevText:"<Sebelum",nextText:"Selepas>",currentText:"hari ini",monthNames:["Januari","Februari","Mac","April","Mei","Jun","Julai","Ogos","September","Oktober","November","Disember"],monthNamesShort:["Jan","Feb","Mac","Apr","Mei","Jun","Jul","Ogo","Sep","Okt","Nov","Dis"],dayNames:["Ahad","Isnin","Selasa","Rabu","Khamis","Jumaat","Sabtu"],dayNamesShort:["Aha","Isn","Sel","Rab","kha","Jum","Sab"],dayNamesMin:["Ah","Is","Se","Ra","Kh","Ju","Sa"],weekHeader:"Mg",dateFormat:"dd/mm/yy",firstDay:0,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},a.setDefaults(a.regional.ms),a.regional.ms});
--------------------------------------------------------------------------------
/third_party/jquery-ui/ui/minified/i18n/datepicker-nb.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.12.1 - 2016-09-15
2 | * http://jqueryui.com
3 | * Copyright jQuery Foundation and other contributors; Licensed */
4 | !function(a){"function"==typeof define&&define.amd?define(["../widgets/datepicker"],a):a(jQuery.datepicker)}(function(a){return a.regional.nb={closeText:"Lukk",prevText:"«Forrige",nextText:"Neste»",currentText:"I dag",monthNames:["januar","februar","mars","april","mai","juni","juli","august","september","oktober","november","desember"],monthNamesShort:["jan","feb","mar","apr","mai","jun","jul","aug","sep","okt","nov","des"],dayNamesShort:["søn","man","tir","ons","tor","fre","lør"],dayNames:["søndag","mandag","tirsdag","onsdag","torsdag","fredag","lørdag"],dayNamesMin:["sø","ma","ti","on","to","fr","lø"],weekHeader:"Uke",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},a.setDefaults(a.regional.nb),a.regional.nb});
--------------------------------------------------------------------------------
/third_party/jquery-ui/ui/minified/i18n/datepicker-nl-BE.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.12.1 - 2016-09-15
2 | * http://jqueryui.com
3 | * Copyright jQuery Foundation and other contributors; Licensed */
4 | !function(a){"function"==typeof define&&define.amd?define(["../widgets/datepicker"],a):a(jQuery.datepicker)}(function(a){return a.regional["nl-BE"]={closeText:"Sluiten",prevText:"←",nextText:"→",currentText:"Vandaag",monthNames:["januari","februari","maart","april","mei","juni","juli","augustus","september","oktober","november","december"],monthNamesShort:["jan","feb","mrt","apr","mei","jun","jul","aug","sep","okt","nov","dec"],dayNames:["zondag","maandag","dinsdag","woensdag","donderdag","vrijdag","zaterdag"],dayNamesShort:["zon","maa","din","woe","don","vri","zat"],dayNamesMin:["zo","ma","di","wo","do","vr","za"],weekHeader:"Wk",dateFormat:"dd/mm/yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},a.setDefaults(a.regional["nl-BE"]),a.regional["nl-BE"]});
--------------------------------------------------------------------------------
/third_party/jquery-ui/ui/minified/i18n/datepicker-nl.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.12.1 - 2016-09-15
2 | * http://jqueryui.com
3 | * Copyright jQuery Foundation and other contributors; Licensed */
4 | !function(a){"function"==typeof define&&define.amd?define(["../widgets/datepicker"],a):a(jQuery.datepicker)}(function(a){return a.regional.nl={closeText:"Sluiten",prevText:"←",nextText:"→",currentText:"Vandaag",monthNames:["januari","februari","maart","april","mei","juni","juli","augustus","september","oktober","november","december"],monthNamesShort:["jan","feb","mrt","apr","mei","jun","jul","aug","sep","okt","nov","dec"],dayNames:["zondag","maandag","dinsdag","woensdag","donderdag","vrijdag","zaterdag"],dayNamesShort:["zon","maa","din","woe","don","vri","zat"],dayNamesMin:["zo","ma","di","wo","do","vr","za"],weekHeader:"Wk",dateFormat:"dd-mm-yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},a.setDefaults(a.regional.nl),a.regional.nl});
--------------------------------------------------------------------------------
/third_party/jquery-ui/ui/minified/i18n/datepicker-nn.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.12.1 - 2016-09-15
2 | * http://jqueryui.com
3 | * Copyright jQuery Foundation and other contributors; Licensed */
4 | !function(a){"function"==typeof define&&define.amd?define(["../widgets/datepicker"],a):a(jQuery.datepicker)}(function(a){return a.regional.nn={closeText:"Lukk",prevText:"«Førre",nextText:"Neste»",currentText:"I dag",monthNames:["januar","februar","mars","april","mai","juni","juli","august","september","oktober","november","desember"],monthNamesShort:["jan","feb","mar","apr","mai","jun","jul","aug","sep","okt","nov","des"],dayNamesShort:["sun","mån","tys","ons","tor","fre","lau"],dayNames:["sundag","måndag","tysdag","onsdag","torsdag","fredag","laurdag"],dayNamesMin:["su","må","ty","on","to","fr","la"],weekHeader:"Veke",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},a.setDefaults(a.regional.nn),a.regional.nn});
--------------------------------------------------------------------------------
/third_party/jquery-ui/ui/minified/i18n/datepicker-no.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.12.1 - 2016-09-15
2 | * http://jqueryui.com
3 | * Copyright jQuery Foundation and other contributors; Licensed */
4 | !function(a){"function"==typeof define&&define.amd?define(["../widgets/datepicker"],a):a(jQuery.datepicker)}(function(a){return a.regional.no={closeText:"Lukk",prevText:"«Forrige",nextText:"Neste»",currentText:"I dag",monthNames:["januar","februar","mars","april","mai","juni","juli","august","september","oktober","november","desember"],monthNamesShort:["jan","feb","mar","apr","mai","jun","jul","aug","sep","okt","nov","des"],dayNamesShort:["søn","man","tir","ons","tor","fre","lør"],dayNames:["søndag","mandag","tirsdag","onsdag","torsdag","fredag","lørdag"],dayNamesMin:["sø","ma","ti","on","to","fr","lø"],weekHeader:"Uke",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},a.setDefaults(a.regional.no),a.regional.no});
--------------------------------------------------------------------------------
/third_party/jquery-ui/ui/minified/i18n/datepicker-pl.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.12.1 - 2016-09-15
2 | * http://jqueryui.com
3 | * Copyright jQuery Foundation and other contributors; Licensed */
4 | !function(a){"function"==typeof define&&define.amd?define(["../widgets/datepicker"],a):a(jQuery.datepicker)}(function(a){return a.regional.pl={closeText:"Zamknij",prevText:"<Poprzedni",nextText:"Następny>",currentText:"Dziś",monthNames:["Styczeń","Luty","Marzec","Kwiecień","Maj","Czerwiec","Lipiec","Sierpień","Wrzesień","Październik","Listopad","Grudzień"],monthNamesShort:["Sty","Lu","Mar","Kw","Maj","Cze","Lip","Sie","Wrz","Pa","Lis","Gru"],dayNames:["Niedziela","Poniedziałek","Wtorek","Środa","Czwartek","Piątek","Sobota"],dayNamesShort:["Nie","Pn","Wt","Śr","Czw","Pt","So"],dayNamesMin:["N","Pn","Wt","Śr","Cz","Pt","So"],weekHeader:"Tydz",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},a.setDefaults(a.regional.pl),a.regional.pl});
--------------------------------------------------------------------------------
/third_party/jquery-ui/ui/minified/i18n/datepicker-rm.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.12.1 - 2016-09-15
2 | * http://jqueryui.com
3 | * Copyright jQuery Foundation and other contributors; Licensed */
4 | !function(a){"function"==typeof define&&define.amd?define(["../widgets/datepicker"],a):a(jQuery.datepicker)}(function(a){return a.regional.rm={closeText:"Serrar",prevText:"<Suandant",nextText:"Precedent>",currentText:"Actual",monthNames:["Schaner","Favrer","Mars","Avrigl","Matg","Zercladur","Fanadur","Avust","Settember","October","November","December"],monthNamesShort:["Scha","Fev","Mar","Avr","Matg","Zer","Fan","Avu","Sett","Oct","Nov","Dec"],dayNames:["Dumengia","Glindesdi","Mardi","Mesemna","Gievgia","Venderdi","Sonda"],dayNamesShort:["Dum","Gli","Mar","Mes","Gie","Ven","Som"],dayNamesMin:["Du","Gl","Ma","Me","Gi","Ve","So"],weekHeader:"emna",dateFormat:"dd/mm/yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},a.setDefaults(a.regional.rm),a.regional.rm});
--------------------------------------------------------------------------------
/third_party/jquery-ui/ui/minified/i18n/datepicker-ro.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.12.1 - 2016-09-15
2 | * http://jqueryui.com
3 | * Copyright jQuery Foundation and other contributors; Licensed */
4 | !function(a){"function"==typeof define&&define.amd?define(["../widgets/datepicker"],a):a(jQuery.datepicker)}(function(a){return a.regional.ro={closeText:"Închide",prevText:"« Luna precedentă",nextText:"Luna următoare »",currentText:"Azi",monthNames:["Ianuarie","Februarie","Martie","Aprilie","Mai","Iunie","Iulie","August","Septembrie","Octombrie","Noiembrie","Decembrie"],monthNamesShort:["Ian","Feb","Mar","Apr","Mai","Iun","Iul","Aug","Sep","Oct","Nov","Dec"],dayNames:["Duminică","Luni","Marţi","Miercuri","Joi","Vineri","Sâmbătă"],dayNamesShort:["Dum","Lun","Mar","Mie","Joi","Vin","Sâm"],dayNamesMin:["Du","Lu","Ma","Mi","Jo","Vi","Sâ"],weekHeader:"Săpt",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},a.setDefaults(a.regional.ro),a.regional.ro});
--------------------------------------------------------------------------------
/third_party/jquery-ui/ui/minified/i18n/datepicker-ru.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.12.1 - 2016-09-15
2 | * http://jqueryui.com
3 | * Copyright jQuery Foundation and other contributors; Licensed */
4 | !function(a){"function"==typeof define&&define.amd?define(["../widgets/datepicker"],a):a(jQuery.datepicker)}(function(a){return a.regional.ru={closeText:"Закрыть",prevText:"<Пред",nextText:"След>",currentText:"Сегодня",monthNames:["Январь","Февраль","Март","Апрель","Май","Июнь","Июль","Август","Сентябрь","Октябрь","Ноябрь","Декабрь"],monthNamesShort:["Янв","Фев","Мар","Апр","Май","Июн","Июл","Авг","Сен","Окт","Ноя","Дек"],dayNames:["воскресенье","понедельник","вторник","среда","четверг","пятница","суббота"],dayNamesShort:["вск","пнд","втр","срд","чтв","птн","сбт"],dayNamesMin:["Вс","Пн","Вт","Ср","Чт","Пт","Сб"],weekHeader:"Нед",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},a.setDefaults(a.regional.ru),a.regional.ru});
--------------------------------------------------------------------------------
/third_party/jquery-ui/ui/minified/i18n/datepicker-sk.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.12.1 - 2016-09-15
2 | * http://jqueryui.com
3 | * Copyright jQuery Foundation and other contributors; Licensed */
4 | !function(a){"function"==typeof define&&define.amd?define(["../widgets/datepicker"],a):a(jQuery.datepicker)}(function(a){return a.regional.sk={closeText:"Zavrieť",prevText:"<Predchádzajúci",nextText:"Nasledujúci>",currentText:"Dnes",monthNames:["január","február","marec","apríl","máj","jún","júl","august","september","október","november","december"],monthNamesShort:["Jan","Feb","Mar","Apr","Máj","Jún","Júl","Aug","Sep","Okt","Nov","Dec"],dayNames:["nedeľa","pondelok","utorok","streda","štvrtok","piatok","sobota"],dayNamesShort:["Ned","Pon","Uto","Str","Štv","Pia","Sob"],dayNamesMin:["Ne","Po","Ut","St","Št","Pia","So"],weekHeader:"Ty",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},a.setDefaults(a.regional.sk),a.regional.sk});
--------------------------------------------------------------------------------
/third_party/jquery-ui/ui/minified/i18n/datepicker-sl.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.12.1 - 2016-09-15
2 | * http://jqueryui.com
3 | * Copyright jQuery Foundation and other contributors; Licensed */
4 | !function(a){"function"==typeof define&&define.amd?define(["../widgets/datepicker"],a):a(jQuery.datepicker)}(function(a){return a.regional.sl={closeText:"Zapri",prevText:"<Prejšnji",nextText:"Naslednji>",currentText:"Trenutni",monthNames:["Januar","Februar","Marec","April","Maj","Junij","Julij","Avgust","September","Oktober","November","December"],monthNamesShort:["Jan","Feb","Mar","Apr","Maj","Jun","Jul","Avg","Sep","Okt","Nov","Dec"],dayNames:["Nedelja","Ponedeljek","Torek","Sreda","Četrtek","Petek","Sobota"],dayNamesShort:["Ned","Pon","Tor","Sre","Čet","Pet","Sob"],dayNamesMin:["Ne","Po","To","Sr","Če","Pe","So"],weekHeader:"Teden",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},a.setDefaults(a.regional.sl),a.regional.sl});
--------------------------------------------------------------------------------
/third_party/jquery-ui/ui/minified/i18n/datepicker-sq.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.12.1 - 2016-09-15
2 | * http://jqueryui.com
3 | * Copyright jQuery Foundation and other contributors; Licensed */
4 | !function(a){"function"==typeof define&&define.amd?define(["../widgets/datepicker"],a):a(jQuery.datepicker)}(function(a){return a.regional.sq={closeText:"mbylle",prevText:"<mbrapa",nextText:"Përpara>",currentText:"sot",monthNames:["Janar","Shkurt","Mars","Prill","Maj","Qershor","Korrik","Gusht","Shtator","Tetor","Nëntor","Dhjetor"],monthNamesShort:["Jan","Shk","Mar","Pri","Maj","Qer","Kor","Gus","Sht","Tet","Nën","Dhj"],dayNames:["E Diel","E Hënë","E Martë","E Mërkurë","E Enjte","E Premte","E Shtune"],dayNamesShort:["Di","Hë","Ma","Më","En","Pr","Sh"],dayNamesMin:["Di","Hë","Ma","Më","En","Pr","Sh"],weekHeader:"Ja",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},a.setDefaults(a.regional.sq),a.regional.sq});
--------------------------------------------------------------------------------
/third_party/jquery-ui/ui/minified/i18n/datepicker-sr-SR.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.12.1 - 2016-09-15
2 | * http://jqueryui.com
3 | * Copyright jQuery Foundation and other contributors; Licensed */
4 | !function(a){"function"==typeof define&&define.amd?define(["../widgets/datepicker"],a):a(jQuery.datepicker)}(function(a){return a.regional["sr-SR"]={closeText:"Zatvori",prevText:"<",nextText:">",currentText:"Danas",monthNames:["Januar","Februar","Mart","April","Maj","Jun","Jul","Avgust","Septembar","Oktobar","Novembar","Decembar"],monthNamesShort:["Jan","Feb","Mar","Apr","Maj","Jun","Jul","Avg","Sep","Okt","Nov","Dec"],dayNames:["Nedelja","Ponedeljak","Utorak","Sreda","Četvrtak","Petak","Subota"],dayNamesShort:["Ned","Pon","Uto","Sre","Čet","Pet","Sub"],dayNamesMin:["Ne","Po","Ut","Sr","Če","Pe","Su"],weekHeader:"Sed",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},a.setDefaults(a.regional["sr-SR"]),a.regional["sr-SR"]});
--------------------------------------------------------------------------------
/third_party/jquery-ui/ui/minified/i18n/datepicker-sr.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.12.1 - 2016-09-15
2 | * http://jqueryui.com
3 | * Copyright jQuery Foundation and other contributors; Licensed */
4 | !function(a){"function"==typeof define&&define.amd?define(["../widgets/datepicker"],a):a(jQuery.datepicker)}(function(a){return a.regional.sr={closeText:"Затвори",prevText:"<",nextText:">",currentText:"Данас",monthNames:["Јануар","Фебруар","Март","Април","Мај","Јун","Јул","Август","Септембар","Октобар","Новембар","Децембар"],monthNamesShort:["Јан","Феб","Мар","Апр","Мај","Јун","Јул","Авг","Сеп","Окт","Нов","Дец"],dayNames:["Недеља","Понедељак","Уторак","Среда","Четвртак","Петак","Субота"],dayNamesShort:["Нед","Пон","Уто","Сре","Чет","Пет","Суб"],dayNamesMin:["Не","По","Ут","Ср","Че","Пе","Су"],weekHeader:"Сед",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},a.setDefaults(a.regional.sr),a.regional.sr});
--------------------------------------------------------------------------------
/third_party/jquery-ui/ui/minified/i18n/datepicker-sv.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.12.1 - 2016-09-15
2 | * http://jqueryui.com
3 | * Copyright jQuery Foundation and other contributors; Licensed */
4 | !function(a){"function"==typeof define&&define.amd?define(["../widgets/datepicker"],a):a(jQuery.datepicker)}(function(a){return a.regional.sv={closeText:"Stäng",prevText:"«Förra",nextText:"Nästa»",currentText:"Idag",monthNames:["Januari","Februari","Mars","April","Maj","Juni","Juli","Augusti","September","Oktober","November","December"],monthNamesShort:["Jan","Feb","Mar","Apr","Maj","Jun","Jul","Aug","Sep","Okt","Nov","Dec"],dayNamesShort:["Sön","Mån","Tis","Ons","Tor","Fre","Lör"],dayNames:["Söndag","Måndag","Tisdag","Onsdag","Torsdag","Fredag","Lördag"],dayNamesMin:["Sö","Må","Ti","On","To","Fr","Lö"],weekHeader:"Ve",dateFormat:"yy-mm-dd",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},a.setDefaults(a.regional.sv),a.regional.sv});
--------------------------------------------------------------------------------
/third_party/jquery-ui/ui/minified/i18n/datepicker-tj.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.12.1 - 2016-09-15
2 | * http://jqueryui.com
3 | * Copyright jQuery Foundation and other contributors; Licensed */
4 | !function(a){"function"==typeof define&&define.amd?define(["../widgets/datepicker"],a):a(jQuery.datepicker)}(function(a){return a.regional.tj={closeText:"Идома",prevText:"<Қафо",nextText:"Пеш>",currentText:"Имрӯз",monthNames:["Январ","Феврал","Март","Апрел","Май","Июн","Июл","Август","Сентябр","Октябр","Ноябр","Декабр"],monthNamesShort:["Янв","Фев","Мар","Апр","Май","Июн","Июл","Авг","Сен","Окт","Ноя","Дек"],dayNames:["якшанбе","душанбе","сешанбе","чоршанбе","панҷшанбе","ҷумъа","шанбе"],dayNamesShort:["якш","душ","сеш","чор","пан","ҷум","шан"],dayNamesMin:["Як","Дш","Сш","Чш","Пш","Ҷм","Шн"],weekHeader:"Хф",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},a.setDefaults(a.regional.tj),a.regional.tj});
--------------------------------------------------------------------------------
/third_party/jquery-ui/ui/minified/i18n/datepicker-tr.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.12.1 - 2016-09-15
2 | * http://jqueryui.com
3 | * Copyright jQuery Foundation and other contributors; Licensed */
4 | !function(a){"function"==typeof define&&define.amd?define(["../widgets/datepicker"],a):a(jQuery.datepicker)}(function(a){return a.regional.tr={closeText:"kapat",prevText:"<geri",nextText:"ileri>",currentText:"bugün",monthNames:["Ocak","Şubat","Mart","Nisan","Mayıs","Haziran","Temmuz","Ağustos","Eylül","Ekim","Kasım","Aralık"],monthNamesShort:["Oca","Şub","Mar","Nis","May","Haz","Tem","Ağu","Eyl","Eki","Kas","Ara"],dayNames:["Pazar","Pazartesi","Salı","Çarşamba","Perşembe","Cuma","Cumartesi"],dayNamesShort:["Pz","Pt","Sa","Ça","Pe","Cu","Ct"],dayNamesMin:["Pz","Pt","Sa","Ça","Pe","Cu","Ct"],weekHeader:"Hf",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},a.setDefaults(a.regional.tr),a.regional.tr});
--------------------------------------------------------------------------------
/third_party/jquery-ui/ui/minified/i18n/datepicker-uk.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.12.1 - 2016-09-15
2 | * http://jqueryui.com
3 | * Copyright jQuery Foundation and other contributors; Licensed */
4 | !function(a){"function"==typeof define&&define.amd?define(["../widgets/datepicker"],a):a(jQuery.datepicker)}(function(a){return a.regional.uk={closeText:"Закрити",prevText:"<",nextText:">",currentText:"Сьогодні",monthNames:["Січень","Лютий","Березень","Квітень","Травень","Червень","Липень","Серпень","Вересень","Жовтень","Листопад","Грудень"],monthNamesShort:["Січ","Лют","Бер","Кві","Тра","Чер","Лип","Сер","Вер","Жов","Лис","Гру"],dayNames:["неділя","понеділок","вівторок","середа","четвер","п’ятниця","субота"],dayNamesShort:["нед","пнд","вів","срд","чтв","птн","сбт"],dayNamesMin:["Нд","Пн","Вт","Ср","Чт","Пт","Сб"],weekHeader:"Тиж",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},a.setDefaults(a.regional.uk),a.regional.uk});
--------------------------------------------------------------------------------
/third_party/jquery-ui/ui/minified/i18n/datepicker-zh-CN.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.12.1 - 2016-09-15
2 | * http://jqueryui.com
3 | * Copyright jQuery Foundation and other contributors; Licensed */
4 | !function(a){"function"==typeof define&&define.amd?define(["../widgets/datepicker"],a):a(jQuery.datepicker)}(function(a){return a.regional["zh-CN"]={closeText:"关闭",prevText:"<上月",nextText:"下月>",currentText:"今天",monthNames:["一月","二月","三月","四月","五月","六月","七月","八月","九月","十月","十一月","十二月"],monthNamesShort:["一月","二月","三月","四月","五月","六月","七月","八月","九月","十月","十一月","十二月"],dayNames:["星期日","星期一","星期二","星期三","星期四","星期五","星期六"],dayNamesShort:["周日","周一","周二","周三","周四","周五","周六"],dayNamesMin:["日","一","二","三","四","五","六"],weekHeader:"周",dateFormat:"yy-mm-dd",firstDay:1,isRTL:!1,showMonthAfterYear:!0,yearSuffix:"年"},a.setDefaults(a.regional["zh-CN"]),a.regional["zh-CN"]});
--------------------------------------------------------------------------------
/third_party/jquery-ui/ui/minified/i18n/datepicker-zh-HK.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.12.1 - 2016-09-15
2 | * http://jqueryui.com
3 | * Copyright jQuery Foundation and other contributors; Licensed */
4 | !function(a){"function"==typeof define&&define.amd?define(["../widgets/datepicker"],a):a(jQuery.datepicker)}(function(a){return a.regional["zh-HK"]={closeText:"關閉",prevText:"<上月",nextText:"下月>",currentText:"今天",monthNames:["一月","二月","三月","四月","五月","六月","七月","八月","九月","十月","十一月","十二月"],monthNamesShort:["一月","二月","三月","四月","五月","六月","七月","八月","九月","十月","十一月","十二月"],dayNames:["星期日","星期一","星期二","星期三","星期四","星期五","星期六"],dayNamesShort:["周日","周一","周二","周三","周四","周五","周六"],dayNamesMin:["日","一","二","三","四","五","六"],weekHeader:"周",dateFormat:"dd-mm-yy",firstDay:0,isRTL:!1,showMonthAfterYear:!0,yearSuffix:"年"},a.setDefaults(a.regional["zh-HK"]),a.regional["zh-HK"]});
--------------------------------------------------------------------------------
/third_party/jquery-ui/ui/minified/i18n/datepicker-zh-TW.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.12.1 - 2016-09-15
2 | * http://jqueryui.com
3 | * Copyright jQuery Foundation and other contributors; Licensed */
4 | !function(a){"function"==typeof define&&define.amd?define(["../widgets/datepicker"],a):a(jQuery.datepicker)}(function(a){return a.regional["zh-TW"]={closeText:"關閉",prevText:"<上月",nextText:"下月>",currentText:"今天",monthNames:["一月","二月","三月","四月","五月","六月","七月","八月","九月","十月","十一月","十二月"],monthNamesShort:["一月","二月","三月","四月","五月","六月","七月","八月","九月","十月","十一月","十二月"],dayNames:["星期日","星期一","星期二","星期三","星期四","星期五","星期六"],dayNamesShort:["周日","周一","周二","周三","周四","周五","周六"],dayNamesMin:["日","一","二","三","四","五","六"],weekHeader:"周",dateFormat:"yy/mm/dd",firstDay:1,isRTL:!1,showMonthAfterYear:!0,yearSuffix:"年"},a.setDefaults(a.regional["zh-TW"]),a.regional["zh-TW"]});
--------------------------------------------------------------------------------
/third_party/jquery-ui/ui/minified/ie.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.12.1 - 2016-09-15
2 | * http://jqueryui.com
3 | * Copyright jQuery Foundation and other contributors; Licensed */
4 | !function(a){"function"==typeof define&&define.amd?define(["jquery","./version"],a):a(jQuery)}(function(a){return a.ui.ie=!!/msie [\w.]+/.exec(navigator.userAgent.toLowerCase())});
--------------------------------------------------------------------------------
/third_party/jquery-ui/ui/minified/keycode.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.12.1 - 2016-09-15
2 | * http://jqueryui.com
3 | * Copyright jQuery Foundation and other contributors; Licensed */
4 | !function(a){"function"==typeof define&&define.amd?define(["jquery","./version"],a):a(jQuery)}(function(a){return a.ui.keyCode={BACKSPACE:8,COMMA:188,DELETE:46,DOWN:40,END:35,ENTER:13,ESCAPE:27,HOME:36,LEFT:37,PAGE_DOWN:34,PAGE_UP:33,PERIOD:190,RIGHT:39,SPACE:32,TAB:9,UP:38}});
--------------------------------------------------------------------------------
/third_party/jquery-ui/ui/minified/labels.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.12.1 - 2016-09-15
2 | * http://jqueryui.com
3 | * Copyright jQuery Foundation and other contributors; Licensed */
4 | !function(a){"function"==typeof define&&define.amd?define(["jquery","./version","./escape-selector"],a):a(jQuery)}(function(a){return a.fn.labels=function(){var b,c,d,e,f;return this[0].labels&&this[0].labels.length?this.pushStack(this[0].labels):(e=this.eq(0).parents("label"),d=this.attr("id"),d&&(b=this.eq(0).parents().last(),f=b.add(b.length?b.siblings():this.siblings()),c="label[for='"+a.ui.escapeSelector(d)+"']",e=e.add(f.find(c).addBack(c))),this.pushStack(e))}});
--------------------------------------------------------------------------------
/third_party/jquery-ui/ui/minified/plugin.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.12.1 - 2016-09-15
2 | * http://jqueryui.com
3 | * Copyright jQuery Foundation and other contributors; Licensed */
4 | !function(a){"function"==typeof define&&define.amd?define(["jquery","./version"],a):a(jQuery)}(function(a){return a.ui.plugin={add:function(b,c,d){var e,f=a.ui[b].prototype;for(e in d)f.plugins[e]=f.plugins[e]||[],f.plugins[e].push([c,d[e]])},call:function(a,b,c,d){var e,f=a.plugins[b];if(f&&(d||a.element[0].parentNode&&11!==a.element[0].parentNode.nodeType))for(e=0;e=0)&&a.ui.focusable(b,d)}})});
--------------------------------------------------------------------------------
/third_party/jquery-ui/ui/minified/unique-id.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.12.1 - 2016-09-15
2 | * http://jqueryui.com
3 | * Copyright jQuery Foundation and other contributors; Licensed */
4 | !function(a){"function"==typeof define&&define.amd?define(["jquery","./version"],a):a(jQuery)}(function(a){return a.fn.extend({uniqueId:function(){var a=0;return function(){return this.each(function(){this.id||(this.id="ui-id-"+ ++a)})}}(),removeUniqueId:function(){return this.each(function(){/^ui-id-\d+$/.test(this.id)&&a(this).removeAttr("id")})}})});
--------------------------------------------------------------------------------
/third_party/jquery-ui/ui/minified/version.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.12.1 - 2016-09-15
2 | * http://jqueryui.com
3 | * Copyright jQuery Foundation and other contributors; Licensed */
4 | !function(a){"function"==typeof define&&define.amd?define(["jquery"],a):a(jQuery)}(function(a){return a.ui=a.ui||{},a.ui.version="1.12.1"});
--------------------------------------------------------------------------------
/third_party/jquery-ui/ui/safe-blur.js:
--------------------------------------------------------------------------------
1 | ( function( factory ) {
2 | if ( typeof define === "function" && define.amd ) {
3 |
4 | // AMD. Register as an anonymous module.
5 | define( [ "jquery", "./version" ], factory );
6 | } else {
7 |
8 | // Browser globals
9 | factory( jQuery );
10 | }
11 | } ( function( $ ) {
12 | return $.ui.safeBlur = function( element ) {
13 |
14 | // Support: IE9 - 10 only
15 | // If the is blurred, IE will switch windows, see #9420
16 | if ( element && element.nodeName.toLowerCase() !== "body" ) {
17 | $( element ).trigger( "blur" );
18 | }
19 | };
20 |
21 | } ) );
22 |
--------------------------------------------------------------------------------
/third_party/jquery-ui/ui/version.js:
--------------------------------------------------------------------------------
1 | ( function( factory ) {
2 | if ( typeof define === "function" && define.amd ) {
3 |
4 | // AMD. Register as an anonymous module.
5 | define( [ "jquery" ], factory );
6 | } else {
7 |
8 | // Browser globals
9 | factory( jQuery );
10 | }
11 | } ( function( $ ) {
12 |
13 | $.ui = $.ui || {};
14 |
15 | return $.ui.version = "1.12.1";
16 |
17 | } ) );
18 |
--------------------------------------------------------------------------------
/third_party/js/js-throttle-debounce.min.js:
--------------------------------------------------------------------------------
1 | /*
2 | * js-throttle-debounce v0.1.1
3 | * https://github.com/emn178/js-throttle-debounce
4 | *
5 | * Copyright 2015, emn178@gmail.com
6 | *
7 | * Licensed under the MIT license:
8 | * http://www.opensource.org/licenses/MIT
9 | */
10 | (function(l,b){Function.prototype.throttle=function(a,e){var c=this,f=0,d;a===b&&(a=100);return function(){var b=this,k=arguments,g=function(){f=new Date;c.apply(b,k)};d&&(clearTimeout(d),d=null);var h=new Date-f;h>a?g():e||(d=setTimeout(g,a-h))}};Function.prototype.debounce=function(a){var e=this,c;a===b&&(a=100);return function(){var b=this,d=arguments;c&&(clearTimeout(c),c=null);c=setTimeout(function(){e.apply(b,d)},a)}}})(this);
11 |
--------------------------------------------------------------------------------
/tsconfig.json:
--------------------------------------------------------------------------------
1 | {
2 | "compilerOptions": {
3 | "target": "ES2015",
4 | "module": "ESNEXT",
5 | "lib": [
6 | "es5",
7 | "es6",
8 | "dom"
9 | ],
10 | "rootDir": "app/ts",
11 | "outDir": "app/js",
12 | "strict": true,
13 | "esModuleInterop": true,
14 | "noImplicitAny": false,
15 | "skipLibCheck": true,
16 | "forceConsistentCasingInFileNames": true
17 | },
18 | "include": [
19 | "app/ts/**/*.ts",
20 | "third_party/**/*.ts",
21 | "node_modules/@types/**/*.ts"
22 | ]
23 | }
--------------------------------------------------------------------------------
/tutorial/direct1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/tutorial/direct1.png
--------------------------------------------------------------------------------
/tutorial/direct3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/tutorial/direct3.png
--------------------------------------------------------------------------------
/tutorial/direct4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/tutorial/direct4.png
--------------------------------------------------------------------------------
/tutorial/direct5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/tutorial/direct5.png
--------------------------------------------------------------------------------
/tutorial/direct6.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/material-motion/direct/9344c9194f27854b57f4136ffa25fa5487cdad9d/tutorial/direct6.png
--------------------------------------------------------------------------------