├── wp-content ├── index.php ├── themes │ ├── index.php │ ├── twentyten │ │ ├── screenshot.png │ │ ├── images │ │ │ ├── wordpress.png │ │ │ └── headers │ │ │ │ ├── fern.jpg │ │ │ │ ├── path.jpg │ │ │ │ ├── berries.jpg │ │ │ │ ├── concave.jpg │ │ │ │ ├── inkwell.jpg │ │ │ │ ├── sunset.jpg │ │ │ │ ├── forestfloor.jpg │ │ │ │ ├── cherryblossoms.jpg │ │ │ │ ├── fern-thumbnail.jpg │ │ │ │ ├── path-thumbnail.jpg │ │ │ │ ├── berries-thumbnail.jpg │ │ │ │ ├── concave-thumbnail.jpg │ │ │ │ ├── inkwell-thumbnail.jpg │ │ │ │ ├── sunset-thumbnail.jpg │ │ │ │ ├── forestfloor-thumbnail.jpg │ │ │ │ └── cherryblossoms-thumbnail.jpg │ │ ├── editor-style-rtl.css │ │ ├── single.php │ │ ├── attachment.php │ │ ├── onecolumn-page.php │ │ ├── tag.php │ │ ├── page.php │ │ ├── 404.php │ │ └── index.php │ ├── twentyeleven │ │ ├── screenshot.png │ │ ├── images │ │ │ ├── search.png │ │ │ ├── wordpress.png │ │ │ ├── comment-arrow.png │ │ │ ├── headers │ │ │ │ ├── hanoi.jpg │ │ │ │ ├── shore.jpg │ │ │ │ ├── wheel.jpg │ │ │ │ ├── trolley.jpg │ │ │ │ ├── willow.jpg │ │ │ │ ├── chessboard.jpg │ │ │ │ ├── lanterns.jpg │ │ │ │ ├── pine-cone.jpg │ │ │ │ ├── hanoi-thumbnail.jpg │ │ │ │ ├── shore-thumbnail.jpg │ │ │ │ ├── wheel-thumbnail.jpg │ │ │ │ ├── trolley-thumbnail.jpg │ │ │ │ ├── willow-thumbnail.jpg │ │ │ │ ├── chessboard-thumbnail.jpg │ │ │ │ ├── lanterns-thumbnail.jpg │ │ │ │ └── pine-cone-thumbnail.jpg │ │ │ ├── comment-bubble.png │ │ │ ├── comment-arrow-dark.png │ │ │ ├── comment-arrow-rtl.png │ │ │ ├── comment-bubble-rtl.png │ │ │ ├── comment-bubble-dark.png │ │ │ ├── comment-arrow-dark-rtl.png │ │ │ ├── comment-bubble-dark-rtl.png │ │ │ ├── comment-arrow-bypostauthor.png │ │ │ ├── comment-arrow-bypostauthor-rtl.png │ │ │ ├── comment-arrow-bypostauthor-dark.png │ │ │ └── comment-arrow-bypostauthor-dark-rtl.png │ │ ├── inc │ │ │ ├── images │ │ │ │ ├── dark.png │ │ │ │ ├── light.png │ │ │ │ ├── content.png │ │ │ │ ├── content-sidebar.png │ │ │ │ └── sidebar-content.png │ │ │ ├── theme-options.css │ │ │ └── theme-customizer.js │ │ ├── editor-style-rtl.css │ │ ├── js │ │ │ └── showcase.js │ │ ├── searchform.php │ │ ├── sidebar-page.php │ │ ├── page.php │ │ ├── content-intro.php │ │ └── content-page.php │ ├── twentytwelve │ │ ├── screenshot.png │ │ ├── sidebar.php │ │ ├── editor-style-rtl.css │ │ ├── content-none.php │ │ ├── footer.php │ │ ├── page.php │ │ ├── 404.php │ │ └── page-templates │ │ │ └── full-width.php │ ├── twentyfifteen │ │ ├── screenshot.png │ │ ├── genericons │ │ │ ├── Genericons.eot │ │ │ ├── Genericons.ttf │ │ │ └── Genericons.woff │ │ ├── js │ │ │ ├── keyboard-image-navigation.js │ │ │ ├── skip-link-focus-fix.js │ │ │ └── customize-preview.js │ │ ├── 404.php │ │ └── footer.php │ ├── twentyfourteen │ │ ├── screenshot.png │ │ ├── genericons │ │ │ ├── Genericons-Regular.otf │ │ │ └── font │ │ │ │ ├── genericons-regular-webfont.eot │ │ │ │ ├── genericons-regular-webfont.ttf │ │ │ │ └── genericons-regular-webfont.woff │ │ ├── js │ │ │ ├── featured-content-admin.js │ │ │ └── keyboard-image-navigation.js │ │ ├── sidebar-content.php │ │ ├── sidebar-footer.php │ │ ├── images │ │ │ └── pattern-light.svg │ │ ├── footer.php │ │ ├── 404.php │ │ ├── sidebar.php │ │ └── content-page.php │ ├── twentysixteen │ │ ├── screenshot.png │ │ ├── genericons │ │ │ ├── Genericons.eot │ │ │ ├── Genericons.ttf │ │ │ └── Genericons.woff │ │ ├── sidebar.php │ │ ├── js │ │ │ └── keyboard-image-navigation.js │ │ ├── searchform.php │ │ ├── sidebar-content-bottom.php │ │ ├── css │ │ │ └── ie.css │ │ └── 404.php │ ├── twentythirteen │ │ ├── screenshot.png │ │ ├── images │ │ │ ├── dotted-line.png │ │ │ ├── search-icon.png │ │ │ ├── headers │ │ │ │ ├── star.png │ │ │ │ ├── circle.png │ │ │ │ ├── diamond.png │ │ │ │ ├── star-thumbnail.png │ │ │ │ ├── circle-thumbnail.png │ │ │ │ └── diamond-thumbnail.png │ │ │ ├── dotted-line-2x.png │ │ │ ├── search-icon-2x.png │ │ │ ├── dotted-line-light.png │ │ │ └── dotted-line-light-2x.png │ │ ├── genericons │ │ │ ├── Genericons-Regular.otf │ │ │ └── font │ │ │ │ ├── genericons-regular-webfont.eot │ │ │ │ ├── genericons-regular-webfont.ttf │ │ │ │ └── genericons-regular-webfont.woff │ │ ├── sidebar-main.php │ │ ├── sidebar.php │ │ ├── single.php │ │ ├── footer.php │ │ └── 404.php │ └── twentyseventeen │ │ ├── screenshot.png │ │ ├── assets │ │ ├── images │ │ │ ├── coffee.jpg │ │ │ ├── espresso.jpg │ │ │ ├── header.jpg │ │ │ └── sandwich.jpg │ │ └── js │ │ │ └── skip-link-focus-fix.js │ │ ├── template-parts │ │ ├── footer │ │ │ ├── site-info.php │ │ │ └── footer-widgets.php │ │ ├── header │ │ │ └── header-image.php │ │ └── page │ │ │ └── content-page.php │ │ └── sidebar.php └── plugins │ └── index.php ├── wp-admin ├── images │ ├── no.png │ ├── se.png │ ├── list.png │ ├── mask.png │ ├── menu.png │ ├── sort.gif │ ├── stars.png │ ├── wheel.png │ ├── xit.gif │ ├── yes.png │ ├── arrows.png │ ├── browser.png │ ├── generic.png │ ├── icons32.png │ ├── list-2x.png │ ├── loading.gif │ ├── marker.png │ ├── menu-2x.png │ ├── menu-vs.png │ ├── resize.gif │ ├── sort-2x.gif │ ├── spinner.gif │ ├── xit-2x.gif │ ├── align-left.png │ ├── align-none.png │ ├── arrows-2x.png │ ├── bubble_bg.gif │ ├── icons32-2x.png │ ├── icons32-vs.png │ ├── menu-vs-2x.png │ ├── resize-2x.gif │ ├── resize-rtl.gif │ ├── spinner-2x.gif │ ├── stars-2x.png │ ├── align-center.png │ ├── align-right.png │ ├── browser-rtl.png │ ├── bubble_bg-2x.gif │ ├── date-button.gif │ ├── media-button.png │ ├── post-formats.png │ ├── w-logo-blue.png │ ├── w-logo-white.png │ ├── wpspin_light.gif │ ├── align-center-2x.png │ ├── align-left-2x.png │ ├── align-none-2x.png │ ├── align-right-2x.png │ ├── date-button-2x.gif │ ├── icons32-vs-2x.png │ ├── imgedit-icons.png │ ├── media-button-2x.png │ ├── post-formats-vs.png │ ├── post-formats32.png │ ├── resize-rtl-2x.gif │ ├── wordpress-logo.png │ ├── wpspin_light-2x.gif │ ├── imgedit-icons-2x.png │ ├── post-formats32-vs.png │ ├── comment-grey-bubble.png │ ├── media-button-image.gif │ ├── media-button-music.gif │ ├── media-button-other.gif │ ├── media-button-video.gif │ └── comment-grey-bubble-2x.png ├── css │ ├── colors │ │ ├── midnight │ │ │ └── colors.scss │ │ ├── coffee │ │ │ └── colors.scss │ │ ├── ocean │ │ │ └── colors.scss │ │ ├── ectoplasm │ │ │ └── colors.scss │ │ ├── sunrise │ │ │ └── colors.scss │ │ └── blue │ │ │ └── colors.scss │ ├── wp-admin.css │ ├── wp-admin-rtl.css │ ├── wp-admin.min.css │ ├── farbtastic.min.css │ ├── farbtastic-rtl.min.css │ ├── wp-admin-rtl.min.css │ ├── site-icon.min.css │ ├── site-icon-rtl.min.css │ ├── farbtastic.css │ └── farbtastic-rtl.css ├── ms-admin.php ├── ms-edit.php ├── ms-sites.php ├── ms-users.php ├── ms-options.php ├── ms-themes.php ├── ms-upgrade-network.php ├── network │ ├── about.php │ ├── setup.php │ ├── credits.php │ ├── plugins.php │ ├── privacy.php │ ├── freedoms.php │ ├── profile.php │ ├── user-edit.php │ ├── update-core.php │ ├── theme-editor.php │ ├── plugin-editor.php │ ├── theme-install.php │ ├── plugin-install.php │ └── update.php ├── user │ ├── index.php │ ├── profile.php │ ├── user-edit.php │ ├── about.php │ ├── credits.php │ ├── freedoms.php │ ├── privacy.php │ ├── menu.php │ └── admin.php ├── js │ ├── wp-fullscreen-stub.min.js │ ├── language-chooser.min.js │ ├── xfn.min.js │ ├── set-post-thumbnail.min.js │ ├── media-gallery.min.js │ ├── user-suggest.min.js │ ├── xfn.js │ ├── language-chooser.js │ ├── password-strength-meter.min.js │ ├── accordion.min.js │ ├── wp-fullscreen-stub.js │ └── set-post-thumbnail.js ├── moderation.php ├── profile.php ├── upgrade-functions.php ├── includes │ └── noop.php ├── admin-functions.php ├── options-head.php └── link-add.php ├── wp-includes ├── js │ ├── tw-sack.js │ ├── jcrop │ │ └── Jcrop.gif │ ├── crop │ │ ├── marqueeVert.gif │ │ └── marqueeHoriz.gif │ ├── thickbox │ │ ├── macFFBgHack.png │ │ └── loadingAnimation.gif │ ├── tinymce │ │ ├── wp-tinymce.js.gz │ │ └── skins │ │ │ ├── lightgray │ │ │ ├── img │ │ │ │ ├── trans.gif │ │ │ │ ├── anchor.gif │ │ │ │ ├── loader.gif │ │ │ │ └── object.gif │ │ │ └── fonts │ │ │ │ ├── tinymce.eot │ │ │ │ ├── tinymce.ttf │ │ │ │ ├── tinymce.woff │ │ │ │ ├── tinymce-small.eot │ │ │ │ ├── tinymce-small.ttf │ │ │ │ └── tinymce-small.woff │ │ │ └── wordpress │ │ │ └── images │ │ │ ├── audio.png │ │ │ ├── more.png │ │ │ ├── video.png │ │ │ ├── gallery.png │ │ │ ├── more-2x.png │ │ │ ├── embedded.png │ │ │ ├── gallery-2x.png │ │ │ ├── pagebreak.png │ │ │ ├── dashicon-no.png │ │ │ ├── pagebreak-2x.png │ │ │ ├── dashicon-edit.png │ │ │ ├── playlist-audio.png │ │ │ └── playlist-video.png │ ├── mediaelement │ │ ├── mejs-controls.png │ │ └── wp-mediaelement.min.js │ ├── imgareaselect │ │ ├── border-anim-h.gif │ │ ├── border-anim-v.gif │ │ └── imgareaselect.css │ ├── wpdialog.min.js │ ├── zxcvbn-async.min.js │ ├── wp-sanitize.min.js │ ├── wpdialog.js │ ├── wp-list-revisions.min.js │ ├── jquery │ │ ├── ui │ │ │ ├── effect-fade.min.js │ │ │ ├── effect-puff.min.js │ │ │ ├── effect-highlight.min.js │ │ │ ├── effect-pulsate.min.js │ │ │ ├── effect-transfer.min.js │ │ │ ├── effect-clip.min.js │ │ │ ├── effect-slide.min.js │ │ │ └── effect-drop.min.js │ │ └── jquery.serialize-object.js │ ├── zxcvbn-async.js │ ├── wp-a11y.min.js │ ├── api-request.min.js │ ├── wp-list-revisions.js │ └── wp-util.min.js ├── images │ ├── rss.png │ ├── xit.gif │ ├── blank.gif │ ├── rss-2x.png │ ├── spinner.gif │ ├── wpicons.png │ ├── wpspin.gif │ ├── xit-2x.gif │ ├── wpspin-2x.gif │ ├── crystal │ │ ├── code.png │ │ ├── text.png │ │ ├── audio.png │ │ ├── video.png │ │ ├── archive.png │ │ ├── default.png │ │ ├── document.png │ │ ├── interactive.png │ │ ├── spreadsheet.png │ │ └── license.txt │ ├── down_arrow.gif │ ├── media │ │ ├── audio.png │ │ ├── code.png │ │ ├── text.png │ │ ├── video.png │ │ ├── archive.png │ │ ├── default.png │ │ ├── document.png │ │ ├── interactive.png │ │ └── spreadsheet.png │ ├── spinner-2x.gif │ ├── toggle-arrow.png │ ├── w-logo-blue.png │ ├── wlw │ │ ├── wp-icon.png │ │ ├── wp-comments.png │ │ └── wp-watermark.png │ ├── wpicons-2x.png │ ├── down_arrow-2x.gif │ ├── uploader-icons.png │ ├── admin-bar-sprite.png │ ├── icon-pointer-flag.png │ ├── smilies │ │ ├── frownie.png │ │ ├── icon_cool.gif │ │ ├── icon_cry.gif │ │ ├── icon_eek.gif │ │ ├── icon_evil.gif │ │ ├── icon_idea.gif │ │ ├── icon_lol.gif │ │ ├── icon_mad.gif │ │ ├── icon_razz.gif │ │ ├── icon_sad.gif │ │ ├── icon_wink.gif │ │ ├── mrgreen.png │ │ ├── rolleyes.png │ │ ├── icon_arrow.gif │ │ ├── icon_smile.gif │ │ ├── icon_biggrin.gif │ │ ├── icon_confused.gif │ │ ├── icon_exclaim.gif │ │ ├── icon_mrgreen.gif │ │ ├── icon_neutral.gif │ │ ├── icon_question.gif │ │ ├── icon_redface.gif │ │ ├── icon_rolleyes.gif │ │ ├── icon_surprised.gif │ │ ├── icon_twisted.gif │ │ └── simple-smile.png │ ├── toggle-arrow-2x.png │ ├── uploader-icons-2x.png │ ├── admin-bar-sprite-2x.png │ ├── arrow-pointer-blue.png │ ├── arrow-pointer-blue-2x.png │ └── icon-pointer-flag-2x.png ├── fonts │ ├── dashicons.eot │ ├── dashicons.ttf │ └── dashicons.woff ├── Requests │ ├── Exception │ │ ├── Transport.php │ │ └── HTTP │ │ │ ├── 410.php │ │ │ ├── 409.php │ │ │ ├── 403.php │ │ │ ├── 404.php │ │ │ ├── 305.php │ │ │ ├── 400.php │ │ │ ├── 502.php │ │ │ ├── 304.php │ │ │ ├── 401.php │ │ │ ├── 306.php │ │ │ ├── 406.php │ │ │ ├── 408.php │ │ │ ├── 411.php │ │ │ ├── 501.php │ │ │ ├── 504.php │ │ │ ├── 402.php │ │ │ ├── 405.php │ │ │ ├── 417.php │ │ │ ├── 412.php │ │ │ ├── 503.php │ │ │ ├── 414.php │ │ │ ├── 500.php │ │ │ ├── 415.php │ │ │ ├── 413.php │ │ │ ├── 505.php │ │ │ ├── 407.php │ │ │ ├── 416.php │ │ │ ├── 418.php │ │ │ ├── 428.php │ │ │ ├── 431.php │ │ │ ├── 511.php │ │ │ └── 429.php │ ├── Hooker.php │ ├── Auth.php │ └── Proxy.php ├── locale.php ├── registration.php ├── registration-functions.php ├── rss-functions.php ├── session.php ├── embed-template.php ├── theme-compat │ ├── footer-embed.php │ ├── embed.php │ └── header-embed.php ├── IXR │ └── class-IXR-base64.php ├── class-feed.php ├── customize │ ├── class-wp-customize-background-image-setting.php │ ├── class-wp-customize-filter-setting.php │ └── class-wp-customize-nav-menu-section.php ├── wp-diff.php ├── version.php ├── class-wp-text-diff-renderer-inline.php ├── rest-api │ └── fields │ │ ├── class-wp-rest-user-meta-fields.php │ │ └── class-wp-rest-comment-meta-fields.php └── class-wp-feed-cache.php ├── readme.html ├── wp-blog-header.php └── index.php /wp-content/index.php: -------------------------------------------------------------------------------- 1 | |$)/g,"").replace(/<(script|style)[^>]*>[\s\S]*?(<\/\1>|$)/gi,"").replace(/<\/?[a-z][\s\S]*?(>|$)/gi,"")},stripTagsAndEncodeText:function(a){var b=wp.sanitize.stripTags(a),c=document.createElement("textarea");try{c.innerHTML=b,b=wp.sanitize.stripTags(c.value)}catch(d){}return b}}}(); -------------------------------------------------------------------------------- /wp-admin/upgrade-functions.php: -------------------------------------------------------------------------------- 1 | 14 |
17 | -------------------------------------------------------------------------------- /wp-admin/includes/noop.php: -------------------------------------------------------------------------------- 1 | 12 | 15 | -------------------------------------------------------------------------------- /wp-content/themes/twentysixteen/sidebar.php: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | 15 | 16 | -------------------------------------------------------------------------------- /wp-admin/admin-functions.php: -------------------------------------------------------------------------------- 1 | 12 |