<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="profile" href="https://gmpg.org/xfn/11">

<title></title>
<meta name='robots' content='max-image-preview:large' />

<!-- Async WordPress.com Remote Login -->
<script id="wpcom_remote_login_js">
var wpcom_remote_login_extra_auth = '';
function wpcom_remote_login_remove_dom_node_id( element_id ) {
	var dom_node = document.getElementById( element_id );
	if ( dom_node ) { dom_node.parentNode.removeChild( dom_node ); }
}
function wpcom_remote_login_remove_dom_node_classes( class_name ) {
	var dom_nodes = document.querySelectorAll( '.' + class_name );
	for ( var i = 0; i < dom_nodes.length; i++ ) {
		dom_nodes[ i ].parentNode.removeChild( dom_nodes[ i ] );
	}
}
function wpcom_remote_login_final_cleanup() {
	wpcom_remote_login_remove_dom_node_classes( "wpcom_remote_login_msg" );
	wpcom_remote_login_remove_dom_node_id( "wpcom_remote_login_key" );
	wpcom_remote_login_remove_dom_node_id( "wpcom_remote_login_validate" );
	wpcom_remote_login_remove_dom_node_id( "wpcom_remote_login_js" );
	wpcom_remote_login_remove_dom_node_id( "wpcom_request_access_iframe" );
	wpcom_remote_login_remove_dom_node_id( "wpcom_request_access_styles" );
}

// Watch for messages back from the remote login
window.addEventListener( "message", function( e ) {
	if ( e.origin === "https://r-login.wordpress.com" ) {
		var data = {};
		try {
			data = JSON.parse( e.data );
		} catch( e ) {
			wpcom_remote_login_final_cleanup();
			return;
		}

		if ( data.msg === 'LOGIN' ) {
			// Clean up the login check iframe
			wpcom_remote_login_remove_dom_node_id( "wpcom_remote_login_key" );

			var id_regex = new RegExp( /^[0-9]+$/ );
			var token_regex = new RegExp( /^.*|.*|.*$/ );
			if (
				token_regex.test( data.token )
				&& id_regex.test( data.wpcomid )
			) {
				// We have everything we need to ask for a login
				var script = document.createElement( "script" );
				script.setAttribute( "id", "wpcom_remote_login_validate" );
				script.src = '/remote-login.php?wpcom_remote_login=validate'
					+ '&wpcomid=' + data.wpcomid
					+ '&token=' + encodeURIComponent( data.token )
					+ '&host=' + window.location.protocol
					+ '//' + window.location.hostname
					+ '&postid=228'
					+ '&is_singular=';
				document.body.appendChild( script );
			}

			return;
		}

		// Safari ITP, not logged in, so redirect
		if ( data.msg === 'LOGIN-REDIRECT' ) {
			window.location = 'https://wordpress.com/log-in?redirect_to=' + window.location.href;
			return;
		}

		// Safari ITP, storage access failed, remove the request
		if ( data.msg === 'LOGIN-REMOVE' ) {
			var css_zap = 'html { -webkit-transition: margin-top 1s; transition: margin-top 1s; } /* 9001 */ html { margin-top: 0 !important; } * html body { margin-top: 0 !important; } @media screen and ( max-width: 782px ) { html { margin-top: 0 !important; } * html body { margin-top: 0 !important; } }';
			var style_zap = document.createElement( 'style' );
			style_zap.type = 'text/css';
			style_zap.appendChild( document.createTextNode( css_zap ) );
			document.body.appendChild( style_zap );

			var e = document.getElementById( 'wpcom_request_access_iframe' );
			e.parentNode.removeChild( e );

			document.cookie = 'wordpress_com_login_access=denied; path=/; max-age=31536000';

			return;
		}

		// Safari ITP
		if ( data.msg === 'REQUEST_ACCESS' ) {
			console.log( 'request access: safari' );

			// Check ITP iframe enable/disable knob
			if ( wpcom_remote_login_extra_auth !== 'safari_itp_iframe' ) {
				return;
			}

			// If we are in a "private window" there is no ITP.
			var private_window = false;
			try {
				var opendb = window.openDatabase( null, null, null, null );
			} catch( e ) {
				private_window = true;
			}

			if ( private_window ) {
				console.log( 'private window' );
				return;
			}

			var iframe = document.createElement( 'iframe' );
			iframe.id = 'wpcom_request_access_iframe';
			iframe.setAttribute( 'scrolling', 'no' );
			iframe.setAttribute( 'sandbox', 'allow-storage-access-by-user-activation allow-scripts allow-same-origin allow-top-navigation-by-user-activation' );
			iframe.src = 'https://r-login.wordpress.com/remote-login.php?wpcom_remote_login=request_access&origin=' + encodeURIComponent( data.origin ) + '&wpcomid=' + encodeURIComponent( data.wpcomid );

			var css = 'html { -webkit-transition: margin-top 1s; transition: margin-top 1s; } /* 9001 */ html { margin-top: 46px !important; } * html body { margin-top: 46px !important; } @media screen and ( max-width: 660px ) { html { margin-top: 71px !important; } * html body { margin-top: 71px !important; } #wpcom_request_access_iframe { display: block; height: 71px !important; } } #wpcom_request_access_iframe { border: 0px; height: 46px; position: fixed; top: 0; left: 0; width: 100%; min-width: 100%; z-index: 99999; background: #23282d; } ';

			var style = document.createElement( 'style' );
			style.type = 'text/css';
			style.id = 'wpcom_request_access_styles';
			style.appendChild( document.createTextNode( css ) );
			document.body.appendChild( style );

			document.body.appendChild( iframe );
		}

		if ( data.msg === 'DONE' ) {
			wpcom_remote_login_final_cleanup();
		}
	}
}, false );

// Inject the remote login iframe after the page has had a chance to load
// more critical resources
window.addEventListener( "DOMContentLoaded", function( e ) {
	var iframe = document.createElement( "iframe" );
	iframe.style.display = "none";
	iframe.setAttribute( "scrolling", "no" );
	iframe.setAttribute( "id", "wpcom_remote_login_key" );
	iframe.src = "https://r-login.wordpress.com/remote-login.php"
		+ "?wpcom_remote_login=key"
		+ "&origin=aHR0cHM6Ly9hbWl4ZWRyZXZpZXcuY29t"
		+ "&wpcomid=147511409"
		+ "&time=" + Math.floor( Date.now() / 1000 );
	document.body.appendChild( iframe );
}, false );
</script>
<link rel='dns-prefetch' href='//s0.wp.com' />
<link rel="alternate" type="application/rss+xml" title=" &raquo; Feed" href="https://amixedreview.com/feed/" />
<link rel="alternate" type="application/rss+xml" title=" &raquo; Comments Feed" href="https://amixedreview.com/comments/feed/" />
	<script type="text/javascript">
		/* <![CDATA[ */
		function addLoadEvent(func) {
			var oldonload = window.onload;
			if (typeof window.onload != 'function') {
				window.onload = func;
			} else {
				window.onload = function () {
					oldonload();
					func();
				}
			}
		}
		/* ]]> */
	</script>
	<style id="wp-img-auto-sizes-contain-inline-css">
img:is([sizes=auto i],[sizes^="auto," i]){contain-intrinsic-size:3000px 1500px}
/*# sourceURL=wp-img-auto-sizes-contain-inline-css */
</style>
<link crossorigin='anonymous' rel='stylesheet' id='all-css-2-1' href='/wp-content/mu-plugins/jetpack-plugin/sun/modules/infinite-scroll/infinity.css?m=1777406400i&cssminify=yes' type='text/css' media='all' />
<style id="wp-emoji-styles-inline-css">

	img.wp-smiley, img.emoji {
		display: inline !important;
		border: none !important;
		box-shadow: none !important;
		height: 1em !important;
		width: 1em !important;
		margin: 0 0.07em !important;
		vertical-align: -0.1em !important;
		background: none !important;
		padding: 0 !important;
	}
/*# sourceURL=wp-emoji-styles-inline-css */
</style>
<style id="wp-block-library-inline-css">
:root{--wp-block-synced-color:#7a00df;--wp-block-synced-color--rgb:122,0,223;--wp-bound-block-color:var(--wp-block-synced-color);--wp-editor-canvas-background:#ddd;--wp-admin-theme-color:#007cba;--wp-admin-theme-color--rgb:0,124,186;--wp-admin-theme-color-darker-10:#006ba1;--wp-admin-theme-color-darker-10--rgb:0,107,160.5;--wp-admin-theme-color-darker-20:#005a87;--wp-admin-theme-color-darker-20--rgb:0,90,135;--wp-admin-border-width-focus:2px}@media (min-resolution:192dpi){:root{--wp-admin-border-width-focus:1.5px}}.wp-element-button{cursor:pointer}:root .has-very-light-gray-background-color{background-color:#eee}:root .has-very-dark-gray-background-color{background-color:#313131}:root .has-very-light-gray-color{color:#eee}:root .has-very-dark-gray-color{color:#313131}:root .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background{background:linear-gradient(135deg,#00d084,#0693e3)}:root .has-purple-crush-gradient-background{background:linear-gradient(135deg,#34e2e4,#4721fb 50%,#ab1dfe)}:root .has-hazy-dawn-gradient-background{background:linear-gradient(135deg,#faaca8,#dad0ec)}:root .has-subdued-olive-gradient-background{background:linear-gradient(135deg,#fafae1,#67a671)}:root .has-atomic-cream-gradient-background{background:linear-gradient(135deg,#fdd79a,#004a59)}:root .has-nightshade-gradient-background{background:linear-gradient(135deg,#330968,#31cdcf)}:root .has-midnight-gradient-background{background:linear-gradient(135deg,#020381,#2874fc)}:root{--wp--preset--font-size--normal:16px;--wp--preset--font-size--huge:42px}.has-regular-font-size{font-size:1em}.has-larger-font-size{font-size:2.625em}.has-normal-font-size{font-size:var(--wp--preset--font-size--normal)}.has-huge-font-size{font-size:var(--wp--preset--font-size--huge)}:root .has-text-align-center{text-align:center}:root .has-text-align-left{text-align:left}:root .has-text-align-right{text-align:right}.has-fit-text{white-space:nowrap!important}#end-resizable-editor-section{display:none}.aligncenter{clear:both}.items-justified-left{justify-content:flex-start}.items-justified-center{justify-content:center}.items-justified-right{justify-content:flex-end}.items-justified-space-between{justify-content:space-between}.screen-reader-text{word-wrap:normal!important;border:0;clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-break:normal!important}.screen-reader-text:focus{background-color:#ddd;clip-path:none;color:#444;display:block;font-size:1em;height:auto;left:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}html :where(.has-border-color){border-style:solid}html :where([style*=border-color]){border-style:solid}html :where([style*=border-top-color]){border-top-style:solid}html :where([style*=border-right-color]){border-right-style:solid}html :where([style*=border-bottom-color]){border-bottom-style:solid}html :where([style*=border-left-color]){border-left-style:solid}html :where([style*=border-width]){border-style:solid}html :where([style*=border-top-width]){border-top-style:solid}html :where([style*=border-right-width]){border-right-style:solid}html :where([style*=border-bottom-width]){border-bottom-style:solid}html :where([style*=border-left-width]){border-left-style:solid}html :where(img[class*=wp-image-]){height:auto;max-width:100%}:where(figure){margin:0 0 1em}html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:var(--wp-admin--admin-bar--height,0px)}@media screen and (max-width:600px){html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:0px}}

/*# sourceURL=/wp-content/plugins/gutenberg-core/v23.3.2/build/styles/block-library/common.min.css */
</style>
<style id="wp-block-image-inline-css">
.wp-block-image>a,.wp-block-image>figure>a{display:inline-block}.wp-block-image img{box-sizing:border-box;height:auto;max-width:100%;vertical-align:bottom}@media not (prefers-reduced-motion){.wp-block-image img.hide{visibility:hidden}.wp-block-image img.show{animation:show-content-image .4s}}.wp-block-image[style*=border-radius] img,.wp-block-image[style*=border-radius]>a{border-radius:inherit}.wp-block-image.has-custom-border img{box-sizing:border-box}.wp-block-image.aligncenter{text-align:center}.wp-block-image.alignfull>a,.wp-block-image.alignwide>a{width:100%}.wp-block-image.alignfull img,.wp-block-image.alignwide img{height:auto;width:100%}.wp-block-image .aligncenter,.wp-block-image .alignleft,.wp-block-image .alignright,.wp-block-image.aligncenter,.wp-block-image.alignleft,.wp-block-image.alignright{display:table}.wp-block-image .aligncenter>figcaption,.wp-block-image .alignleft>figcaption,.wp-block-image .alignright>figcaption,.wp-block-image.aligncenter>figcaption,.wp-block-image.alignleft>figcaption,.wp-block-image.alignright>figcaption{caption-side:bottom;display:table-caption}.wp-block-image .alignleft{float:left;margin:.5em 1em .5em 0}.wp-block-image .alignright{float:right;margin:.5em 0 .5em 1em}.wp-block-image .aligncenter{margin-left:auto;margin-right:auto}.wp-block-image :where(figcaption){margin-bottom:1em;margin-top:.5em}.wp-block-image.is-style-circle-mask img{border-radius:9999px}@supports ((-webkit-mask-image:none) or (mask-image:none)) or (-webkit-mask-image:none){.wp-block-image.is-style-circle-mask img{border-radius:0;-webkit-mask-image:url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="50"/></svg>');mask-image:url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="50"/></svg>');mask-mode:alpha;-webkit-mask-position:center;mask-position:center;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-size:contain;mask-size:contain}}:root :where(.wp-block-image.is-style-rounded img,.wp-block-image .is-style-rounded img){border-radius:9999px}.wp-block-image figure{margin:0}.wp-lightbox-container{display:flex;flex-direction:column;position:relative}.wp-lightbox-container img{cursor:zoom-in}.wp-lightbox-container img:hover+button{opacity:1}.wp-lightbox-container button{align-items:center;backdrop-filter:blur(16px) saturate(180%);background-color:#5a5a5a40;border:none;border-radius:4px;cursor:zoom-in;display:flex;height:20px;justify-content:center;opacity:0;padding:0;position:absolute;right:16px;text-align:center;top:16px;width:20px;z-index:100}@media not (prefers-reduced-motion){.wp-lightbox-container button{transition:opacity .2s ease}}.wp-lightbox-container button:focus-visible{outline:3px auto #5a5a5a40;outline:3px auto -webkit-focus-ring-color;outline-offset:3px}.wp-lightbox-container button:hover{cursor:pointer;opacity:1}.wp-lightbox-container button:focus{opacity:1}.wp-lightbox-container button:focus,.wp-lightbox-container button:hover,.wp-lightbox-container button:not(:hover):not(:active):not(.has-background){background-color:#5a5a5a40;border:none}.wp-lightbox-overlay{box-sizing:border-box;cursor:zoom-out;height:100vh;left:0;overflow:hidden;position:fixed;top:0;visibility:hidden;width:100%;z-index:100000}.wp-lightbox-overlay .wp-lightbox-close-button{align-items:center;cursor:pointer;display:flex;font-family:inherit;gap:8px;justify-content:center;line-height:1;min-height:40px;min-width:40px;padding:0 4px;position:absolute;right:calc(env(safe-area-inset-right) + 16px);top:calc(env(safe-area-inset-top) + 16px);z-index:5000000}.wp-lightbox-overlay .wp-lightbox-close-button:focus,.wp-lightbox-overlay .wp-lightbox-close-button:hover,.wp-lightbox-overlay .wp-lightbox-close-button:not(:hover):not(:active):not(.has-background){background:none;border:none}.wp-lightbox-overlay .wp-lightbox-close-button:has(.wp-lightbox-close-text:not([hidden])) .wp-lightbox-close-icon svg{height:1em;width:1em}.wp-lightbox-overlay .wp-lightbox-close-icon svg{display:block}.wp-lightbox-overlay .wp-lightbox-navigation-button-next,.wp-lightbox-overlay .wp-lightbox-navigation-button-prev{align-items:center;bottom:16px;cursor:pointer;display:flex;font-family:inherit;gap:4px;justify-content:center;line-height:1;min-height:40px;min-width:40px;padding:0 8px;position:absolute;z-index:2000002}.wp-lightbox-overlay .wp-lightbox-navigation-button-next[hidden],.wp-lightbox-overlay .wp-lightbox-navigation-button-prev[hidden]{display:none}@media (min-width:960px){.wp-lightbox-overlay .wp-lightbox-navigation-button-next,.wp-lightbox-overlay .wp-lightbox-navigation-button-prev{bottom:50%;transform:translateY(-50%)}}.wp-lightbox-overlay .wp-lightbox-navigation-button-next:focus,.wp-lightbox-overlay .wp-lightbox-navigation-button-next:hover,.wp-lightbox-overlay .wp-lightbox-navigation-button-next:not(:hover):not(:active):not(.has-background),.wp-lightbox-overlay .wp-lightbox-navigation-button-prev:focus,.wp-lightbox-overlay .wp-lightbox-navigation-button-prev:hover,.wp-lightbox-overlay .wp-lightbox-navigation-button-prev:not(:hover):not(:active):not(.has-background){background:none;border:none;padding:0 8px}.wp-lightbox-overlay .wp-lightbox-navigation-button-next:has(.wp-lightbox-navigation-text:not([hidden])) .wp-lightbox-navigation-icon svg,.wp-lightbox-overlay .wp-lightbox-navigation-button-prev:has(.wp-lightbox-navigation-text:not([hidden])) .wp-lightbox-navigation-icon svg{display:block;height:1.5em;width:1.5em}.wp-lightbox-overlay .wp-lightbox-navigation-button-prev{left:calc(env(safe-area-inset-left) + 16px)}.wp-lightbox-overlay .wp-lightbox-navigation-button-next{right:calc(env(safe-area-inset-right) + 16px)}.wp-lightbox-overlay .wp-lightbox-navigation-icon svg{vertical-align:middle}.wp-lightbox-overlay .lightbox-image-container{height:var(--wp--lightbox-container-height);left:50%;overflow:hidden;position:absolute;top:50%;transform:translate(-50%,-50%);transform-origin:top left;width:var(--wp--lightbox-container-width);z-index:2000001}.wp-lightbox-overlay .wp-block-image{align-items:center;box-sizing:border-box;display:flex;height:100%;justify-content:center;margin:0;position:relative;transform-origin:0 0;width:100%;z-index:3000000}.wp-lightbox-overlay .wp-block-image img{height:var(--wp--lightbox-image-height);min-height:var(--wp--lightbox-image-height);min-width:var(--wp--lightbox-image-width);width:var(--wp--lightbox-image-width)}.wp-lightbox-overlay .wp-block-image figcaption{display:none}.wp-lightbox-overlay button{background:none;border:none}.wp-lightbox-overlay .scrim{background-color:#fff;height:100%;opacity:.9;position:absolute;width:100%;z-index:2000000}.wp-lightbox-overlay.active{visibility:visible}@media not (prefers-reduced-motion){.wp-lightbox-overlay.active{animation:turn-on-visibility .25s both}.wp-lightbox-overlay.active img{animation:turn-on-visibility .35s both}.wp-lightbox-overlay.show-closing-animation:not(.active){animation:turn-off-visibility .35s both}.wp-lightbox-overlay.show-closing-animation:not(.active) img{animation:turn-off-visibility .25s both}.wp-lightbox-overlay.zoom.active{animation:none;opacity:1;visibility:visible}.wp-lightbox-overlay.zoom.active .lightbox-image-container{animation:lightbox-zoom-in .4s}.wp-lightbox-overlay.zoom.active .lightbox-image-container img{animation:none}.wp-lightbox-overlay.zoom.active .scrim{animation:turn-on-visibility .4s forwards}.wp-lightbox-overlay.zoom.show-closing-animation:not(.active){animation:none}.wp-lightbox-overlay.zoom.show-closing-animation:not(.active) .lightbox-image-container{animation:lightbox-zoom-out .4s}.wp-lightbox-overlay.zoom.show-closing-animation:not(.active) .lightbox-image-container img{animation:none}.wp-lightbox-overlay.zoom.show-closing-animation:not(.active) .scrim{animation:turn-off-visibility .4s forwards}}@keyframes show-content-image{0%{visibility:hidden}99%{visibility:hidden}to{visibility:visible}}@keyframes turn-on-visibility{0%{opacity:0}to{opacity:1}}@keyframes turn-off-visibility{0%{opacity:1;visibility:visible}99%{opacity:0;visibility:visible}to{opacity:0;visibility:hidden}}@keyframes lightbox-zoom-in{0%{transform:translate(calc((-100vw + var(--wp--lightbox-scrollbar-width))/2 + var(--wp--lightbox-initial-left-position)),calc(-50vh + var(--wp--lightbox-initial-top-position))) scale(var(--wp--lightbox-scale))}to{transform:translate(-50%,-50%) scale(1)}}@keyframes lightbox-zoom-out{0%{transform:translate(-50%,-50%) scale(1);visibility:visible}99%{visibility:visible}to{transform:translate(calc((-100vw + var(--wp--lightbox-scrollbar-width))/2 + var(--wp--lightbox-initial-left-position)),calc(-50vh + var(--wp--lightbox-initial-top-position))) scale(var(--wp--lightbox-scale));visibility:hidden}}
/*# sourceURL=/wp-content/plugins/gutenberg-core/v23.3.2/build/styles/block-library/image/style.min.css */
</style>
<style id="wp-block-image-theme-inline-css">
:root :where(.wp-block-image figcaption){color:#555;font-size:13px;text-align:center}.is-dark-theme :root :where(.wp-block-image figcaption){color:#ffffffa6}.wp-block-image{margin:0 0 1em}
/*# sourceURL=/wp-content/plugins/gutenberg-core/v23.3.2/build/styles/block-library/image/theme.min.css */
</style>
<style id="wp-block-paragraph-inline-css">
.is-small-text{font-size:.875em}.is-regular-text{font-size:1em}.is-large-text{font-size:2.25em}.is-larger-text{font-size:3em}.has-drop-cap:not(:focus):first-letter{float:left;font-size:8.4em;font-style:normal;font-weight:100;line-height:.68;margin:.05em .1em 0 0;text-transform:uppercase}body.rtl .has-drop-cap:not(:focus):first-letter{float:none;margin-left:.1em}p.has-drop-cap.has-background{overflow:hidden}:root :where(p.has-background){padding:1.25em 2.375em}:where(p.has-text-color:not(.has-link-color)) a{color:inherit}p.has-text-align-left[style*="writing-mode:vertical-lr"],p.has-text-align-right[style*="writing-mode:vertical-rl"]{rotate:180deg}
/*# sourceURL=/wp-content/plugins/gutenberg-core/v23.3.2/build/styles/block-library/paragraph/style.min.css */
</style>
<style id="wp-block-library-inline-css-extra">
.has-text-align-justify {
	text-align:justify;
}
.has-text-align-justify{text-align:justify;}
/*# sourceURL=wp-block-library-inline-css */
</style>

<style id="classic-theme-styles-inline-css">
.wp-block-button__link{background-color:#32373c;border-radius:9999px;box-shadow:none;color:#fff;font-size:1.125em;padding:calc(.667em + 2px) calc(1.333em + 2px);text-decoration:none}.wp-block-file__button{background:#32373c;color:#fff}.wp-block-accordion-heading{margin:0}.wp-block-accordion-heading__toggle{background-color:inherit!important;color:inherit!important}.wp-block-accordion-heading__toggle:not(:focus-visible){outline:none}.wp-block-accordion-heading__toggle:focus,.wp-block-accordion-heading__toggle:hover{background-color:inherit!important;border:none;box-shadow:none;color:inherit;padding:var(--wp--preset--spacing--20,1em) 0;text-decoration:none}.wp-block-accordion-heading__toggle:focus-visible{outline:auto;outline-offset:0}.wp-block-tab:not(.has-text-color){color:inherit!important}.wp-block-tab:not(.has-background){background-color:inherit!important}.wp-block-tab:focus,.wp-block-tab:hover{text-decoration:none}.wp-block-tab:focus-visible{outline:auto;outline-offset:0}
/*# sourceURL=/wp-content/plugins/gutenberg-core/v23.3.2/build/styles/block-library/classic.min.css */
</style>

<link crossorigin='anonymous' rel='stylesheet' id='all-css-10-1' href='/_static/??-eJx9jEEOAiEQBD/kQECjeDC+ZWEnijIwYWA3/l72op689KFTVXplCCU3zE1z6reYRYfiUwlP0VYZpwxIJE4IFRd10HOU9iFA2iuhCiI7/ROiDt9WxfETT20jCOc4YUIa2D9t5eGA91xRBMZS7ATtPkTZvCtdzNEZt7f2fHq8Afl7R7w=&cssminify=yes' type='text/css' media='all' />
<style id="global-styles-inline-css">
:root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4/3;--wp--preset--aspect-ratio--3-4: 3/4;--wp--preset--aspect-ratio--3-2: 3/2;--wp--preset--aspect-ratio--2-3: 2/3;--wp--preset--aspect-ratio--16-9: 16/9;--wp--preset--aspect-ratio--9-16: 9/16;--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #fff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--color--medium-blue: #0087be;--wp--preset--color--bright-blue: #00aadc;--wp--preset--color--dark-gray: #4d4d4b;--wp--preset--color--light-gray: #b3b3b1;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgb(6,147,227) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgb(252,185,0) 0%,rgb(255,105,0) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgb(255,105,0) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--font-family--albert-sans: 'Albert Sans', sans-serif;--wp--preset--font-family--alegreya: Alegreya, serif;--wp--preset--font-family--arvo: Arvo, serif;--wp--preset--font-family--bodoni-moda: 'Bodoni Moda', serif;--wp--preset--font-family--bricolage-grotesque: 'Bricolage Grotesque', sans-serif;--wp--preset--font-family--cabin: Cabin, sans-serif;--wp--preset--font-family--chivo: Chivo, sans-serif;--wp--preset--font-family--commissioner: Commissioner, sans-serif;--wp--preset--font-family--cormorant: Cormorant, serif;--wp--preset--font-family--courier-prime: 'Courier Prime', monospace;--wp--preset--font-family--crimson-pro: 'Crimson Pro', serif;--wp--preset--font-family--dm-mono: 'DM Mono', monospace;--wp--preset--font-family--dm-sans: 'DM Sans', sans-serif;--wp--preset--font-family--dm-serif-display: 'DM Serif Display', serif;--wp--preset--font-family--domine: Domine, serif;--wp--preset--font-family--eb-garamond: 'EB Garamond', serif;--wp--preset--font-family--epilogue: Epilogue, sans-serif;--wp--preset--font-family--fahkwang: Fahkwang, sans-serif;--wp--preset--font-family--figtree: Figtree, sans-serif;--wp--preset--font-family--fira-sans: 'Fira Sans', sans-serif;--wp--preset--font-family--fjalla-one: 'Fjalla One', sans-serif;--wp--preset--font-family--fraunces: Fraunces, serif;--wp--preset--font-family--gabarito: Gabarito, system-ui;--wp--preset--font-family--ibm-plex-mono: 'IBM Plex Mono', monospace;--wp--preset--font-family--ibm-plex-sans: 'IBM Plex Sans', sans-serif;--wp--preset--font-family--ibarra-real-nova: 'Ibarra Real Nova', serif;--wp--preset--font-family--instrument-serif: 'Instrument Serif', serif;--wp--preset--font-family--inter: Inter, sans-serif;--wp--preset--font-family--josefin-sans: 'Josefin Sans', sans-serif;--wp--preset--font-family--jost: Jost, sans-serif;--wp--preset--font-family--libre-baskerville: 'Libre Baskerville', serif;--wp--preset--font-family--libre-franklin: 'Libre Franklin', sans-serif;--wp--preset--font-family--literata: Literata, serif;--wp--preset--font-family--lora: Lora, serif;--wp--preset--font-family--merriweather: Merriweather, serif;--wp--preset--font-family--montserrat: Montserrat, sans-serif;--wp--preset--font-family--newsreader: Newsreader, serif;--wp--preset--font-family--noto-sans-mono: 'Noto Sans Mono', sans-serif;--wp--preset--font-family--nunito: Nunito, sans-serif;--wp--preset--font-family--open-sans: 'Open Sans', sans-serif;--wp--preset--font-family--overpass: Overpass, sans-serif;--wp--preset--font-family--pt-serif: 'PT Serif', serif;--wp--preset--font-family--petrona: Petrona, serif;--wp--preset--font-family--piazzolla: Piazzolla, serif;--wp--preset--font-family--playfair-display: 'Playfair Display', serif;--wp--preset--font-family--plus-jakarta-sans: 'Plus Jakarta Sans', sans-serif;--wp--preset--font-family--poppins: Poppins, sans-serif;--wp--preset--font-family--raleway: Raleway, sans-serif;--wp--preset--font-family--roboto: Roboto, sans-serif;--wp--preset--font-family--roboto-slab: 'Roboto Slab', serif;--wp--preset--font-family--rubik: Rubik, sans-serif;--wp--preset--font-family--rufina: Rufina, serif;--wp--preset--font-family--sora: Sora, sans-serif;--wp--preset--font-family--source-sans-3: 'Source Sans 3', sans-serif;--wp--preset--font-family--source-serif-4: 'Source Serif 4', serif;--wp--preset--font-family--space-mono: 'Space Mono', monospace;--wp--preset--font-family--syne: Syne, sans-serif;--wp--preset--font-family--texturina: Texturina, serif;--wp--preset--font-family--urbanist: Urbanist, sans-serif;--wp--preset--font-family--work-sans: 'Work Sans', sans-serif;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgb(255, 255, 255), 6px 6px rgb(0, 0, 0);--wp--preset--shadow--crisp: 6px 6px 0px rgb(0, 0, 0);}.wp-block-button{--wp--preset--dimension--25: 25%;--wp--preset--dimension--50: 50%;--wp--preset--dimension--75: 75%;--wp--preset--dimension--100: 100%;}:where(body) { margin: 0; }:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}body{padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}:root :where(.wp-element-button, .wp-block-button__link){background-color: #32373c;border-width: 0;color: #fff;font-family: inherit;font-size: inherit;font-style: inherit;font-weight: inherit;letter-spacing: inherit;line-height: inherit;padding-top: calc(0.667em + 2px);padding-right: calc(1.333em + 2px);padding-bottom: calc(0.667em + 2px);padding-left: calc(1.333em + 2px);text-decoration: none;text-transform: inherit;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-medium-blue-color{color: var(--wp--preset--color--medium-blue) !important;}.has-bright-blue-color{color: var(--wp--preset--color--bright-blue) !important;}.has-dark-gray-color{color: var(--wp--preset--color--dark-gray) !important;}.has-light-gray-color{color: var(--wp--preset--color--light-gray) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-medium-blue-background-color{background-color: var(--wp--preset--color--medium-blue) !important;}.has-bright-blue-background-color{background-color: var(--wp--preset--color--bright-blue) !important;}.has-dark-gray-background-color{background-color: var(--wp--preset--color--dark-gray) !important;}.has-light-gray-background-color{background-color: var(--wp--preset--color--light-gray) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-medium-blue-border-color{border-color: var(--wp--preset--color--medium-blue) !important;}.has-bright-blue-border-color{border-color: var(--wp--preset--color--bright-blue) !important;}.has-dark-gray-border-color{border-color: var(--wp--preset--color--dark-gray) !important;}.has-light-gray-border-color{border-color: var(--wp--preset--color--light-gray) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}.has-albert-sans-font-family{font-family: var(--wp--preset--font-family--albert-sans) !important;}.has-alegreya-font-family{font-family: var(--wp--preset--font-family--alegreya) !important;}.has-arvo-font-family{font-family: var(--wp--preset--font-family--arvo) !important;}.has-bodoni-moda-font-family{font-family: var(--wp--preset--font-family--bodoni-moda) !important;}.has-bricolage-grotesque-font-family{font-family: var(--wp--preset--font-family--bricolage-grotesque) !important;}.has-cabin-font-family{font-family: var(--wp--preset--font-family--cabin) !important;}.has-chivo-font-family{font-family: var(--wp--preset--font-family--chivo) !important;}.has-commissioner-font-family{font-family: var(--wp--preset--font-family--commissioner) !important;}.has-cormorant-font-family{font-family: var(--wp--preset--font-family--cormorant) !important;}.has-courier-prime-font-family{font-family: var(--wp--preset--font-family--courier-prime) !important;}.has-crimson-pro-font-family{font-family: var(--wp--preset--font-family--crimson-pro) !important;}.has-dm-mono-font-family{font-family: var(--wp--preset--font-family--dm-mono) !important;}.has-dm-sans-font-family{font-family: var(--wp--preset--font-family--dm-sans) !important;}.has-dm-serif-display-font-family{font-family: var(--wp--preset--font-family--dm-serif-display) !important;}.has-domine-font-family{font-family: var(--wp--preset--font-family--domine) !important;}.has-eb-garamond-font-family{font-family: var(--wp--preset--font-family--eb-garamond) !important;}.has-epilogue-font-family{font-family: var(--wp--preset--font-family--epilogue) !important;}.has-fahkwang-font-family{font-family: var(--wp--preset--font-family--fahkwang) !important;}.has-figtree-font-family{font-family: var(--wp--preset--font-family--figtree) !important;}.has-fira-sans-font-family{font-family: var(--wp--preset--font-family--fira-sans) !important;}.has-fjalla-one-font-family{font-family: var(--wp--preset--font-family--fjalla-one) !important;}.has-fraunces-font-family{font-family: var(--wp--preset--font-family--fraunces) !important;}.has-gabarito-font-family{font-family: var(--wp--preset--font-family--gabarito) !important;}.has-ibm-plex-mono-font-family{font-family: var(--wp--preset--font-family--ibm-plex-mono) !important;}.has-ibm-plex-sans-font-family{font-family: var(--wp--preset--font-family--ibm-plex-sans) !important;}.has-ibarra-real-nova-font-family{font-family: var(--wp--preset--font-family--ibarra-real-nova) !important;}.has-instrument-serif-font-family{font-family: var(--wp--preset--font-family--instrument-serif) !important;}.has-inter-font-family{font-family: var(--wp--preset--font-family--inter) !important;}.has-josefin-sans-font-family{font-family: var(--wp--preset--font-family--josefin-sans) !important;}.has-jost-font-family{font-family: var(--wp--preset--font-family--jost) !important;}.has-libre-baskerville-font-family{font-family: var(--wp--preset--font-family--libre-baskerville) !important;}.has-libre-franklin-font-family{font-family: var(--wp--preset--font-family--libre-franklin) !important;}.has-literata-font-family{font-family: var(--wp--preset--font-family--literata) !important;}.has-lora-font-family{font-family: var(--wp--preset--font-family--lora) !important;}.has-merriweather-font-family{font-family: var(--wp--preset--font-family--merriweather) !important;}.has-montserrat-font-family{font-family: var(--wp--preset--font-family--montserrat) !important;}.has-newsreader-font-family{font-family: var(--wp--preset--font-family--newsreader) !important;}.has-noto-sans-mono-font-family{font-family: var(--wp--preset--font-family--noto-sans-mono) !important;}.has-nunito-font-family{font-family: var(--wp--preset--font-family--nunito) !important;}.has-open-sans-font-family{font-family: var(--wp--preset--font-family--open-sans) !important;}.has-overpass-font-family{font-family: var(--wp--preset--font-family--overpass) !important;}.has-pt-serif-font-family{font-family: var(--wp--preset--font-family--pt-serif) !important;}.has-petrona-font-family{font-family: var(--wp--preset--font-family--petrona) !important;}.has-piazzolla-font-family{font-family: var(--wp--preset--font-family--piazzolla) !important;}.has-playfair-display-font-family{font-family: var(--wp--preset--font-family--playfair-display) !important;}.has-plus-jakarta-sans-font-family{font-family: var(--wp--preset--font-family--plus-jakarta-sans) !important;}.has-poppins-font-family{font-family: var(--wp--preset--font-family--poppins) !important;}.has-raleway-font-family{font-family: var(--wp--preset--font-family--raleway) !important;}.has-roboto-font-family{font-family: var(--wp--preset--font-family--roboto) !important;}.has-roboto-slab-font-family{font-family: var(--wp--preset--font-family--roboto-slab) !important;}.has-rubik-font-family{font-family: var(--wp--preset--font-family--rubik) !important;}.has-rufina-font-family{font-family: var(--wp--preset--font-family--rufina) !important;}.has-sora-font-family{font-family: var(--wp--preset--font-family--sora) !important;}.has-source-sans-3-font-family{font-family: var(--wp--preset--font-family--source-sans-3) !important;}.has-source-serif-4-font-family{font-family: var(--wp--preset--font-family--source-serif-4) !important;}.has-space-mono-font-family{font-family: var(--wp--preset--font-family--space-mono) !important;}.has-syne-font-family{font-family: var(--wp--preset--font-family--syne) !important;}.has-texturina-font-family{font-family: var(--wp--preset--font-family--texturina) !important;}.has-urbanist-font-family{font-family: var(--wp--preset--font-family--urbanist) !important;}.has-work-sans-font-family{font-family: var(--wp--preset--font-family--work-sans) !important;}
/*# sourceURL=global-styles-inline-css */
</style>

<link crossorigin='anonymous' rel='stylesheet' id='all-css-12-1' href='/_static/??-eJydkNEKwjAMRX/Imk2YexI/RbYau25tWpqU4d/bDcGJ4oMv4d6Hc28SmKPSgQRJwGcVXTaWGEaU2Onp6YEzwcWSBoOEyRaAv8u9Zt7BJlMG9MgQcw+WrhixDBJVvLM8YFIHYLk7/AcsCPQu6Omv2uWctVrNUQf/EbH5RsJSY4o0a+fL/oIMBlWW68QGejPq5jqbFvTsT3Xb1seqbapmfAAkF5P7&cssminify=yes' type='text/css' media='all' />
<style id="independent-publisher-2-style-inline-css">
.cat-links, .post-tags, .tags-links, .comments-link { clip: rect(1px, 1px, 1px, 1px); height: 1px; position: absolute; overflow: hidden; width: 1px; }
/*# sourceURL=independent-publisher-2-style-inline-css */
</style>
<link crossorigin='anonymous' rel='stylesheet' id='print-css-13-1' href='/wp-content/mu-plugins/global-print/global-print.css?m=1465851035i&cssminify=yes' type='text/css' media='print' />
<style id="jetpack-global-styles-frontend-style-inline-css">
:root { --font-headings: unset; --font-base: unset; --font-headings-default: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif; --font-base-default: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;}
/*# sourceURL=jetpack-global-styles-frontend-style-inline-css */
</style>
<link crossorigin='anonymous' rel='stylesheet' id='all-css-16-1' href='/wp-content/themes/h4/global.css?m=1420737423i&cssminify=yes' type='text/css' media='all' />
<script id="wpcom-actionbar-placeholder-js-extra">
var actionbardata = {"siteID":"147511409","postID":"0","siteURL":"https://amixedreview.com","xhrURL":"https://amixedreview.com/wp-admin/admin-ajax.php","nonce":"4417cc7fbd","isLoggedIn":"","statusMessage":"","subsEmailDefault":"instantly","proxyScriptUrl":"https://s0.wp.com/wp-content/js/wpcom-proxy-request.js?m=1513050504i&amp;ver=20211021","i18n":{"followedText":"New posts from this site will now appear in your \u003Ca href=\"https://wordpress.com/reader\"\u003EReader\u003C/a\u003E","foldBar":"Collapse this bar","unfoldBar":"Expand this bar","shortLinkCopied":"Shortlink copied to clipboard."}};
//# sourceURL=wpcom-actionbar-placeholder-js-extra
</script>
<script id="jetpack-mu-wpcom-settings-js-before">
var JETPACK_MU_WPCOM_SETTINGS = {"assetsUrl":"https://s0.wp.com/wp-content/mu-plugins/jetpack-mu-wpcom-plugin/sun/jetpack_vendor/automattic/jetpack-mu-wpcom/src/build/"};
//# sourceURL=jetpack-mu-wpcom-settings-js-before
</script>
<script crossorigin='anonymous' type='text/javascript'  src='/wp-content/js/rlt-proxy.js?m=1720530689i'></script>
<script id="rlt-proxy-js-after">
	rltInitialize( {"token":null,"iframeOrigins":["https:\/\/widgets.wp.com"]} );
//# sourceURL=rlt-proxy-js-after
</script>
<link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://amixedreviewdotcom.wordpress.com/xmlrpc.php?rsd" />
<meta name="generator" content="WordPress.com" />
<link rel='shortlink' href='https://wp.me/9YWsh' />

<!-- Jetpack Open Graph Tags -->
<meta property="og:type" content="website" />
<meta property="og:title" content="(no title)" />
<meta property="og:url" content="https://amixedreview.com/" />
<meta property="og:image" content="https://amixedreview.com/wp-content/uploads/2018/07/cropped-amixedreview_fb2.png?w=200" />
<meta property="og:image:width" content="200" />
<meta property="og:image:height" content="200" />
<meta property="og:image:alt" content="" />
<meta property="og:locale" content="en_US" />

<!-- End Jetpack Open Graph Tags -->
<link rel="search" type="application/opensearchdescription+xml" href="https://amixedreview.com/osd.xml" title="" />
<link rel="search" type="application/opensearchdescription+xml" href="https://s1.wp.com/opensearch.xml" title="WordPress.com" />
<meta name="theme-color" content="#ffffff" />
<style type="text/css" id="custom-colors-css">    .has-header-image .site-title a,
    .has-header-image .site-title a:visited {
        color: #fff;
    }

    @media screen and ( max-width: 32.374em ) {
        .main-navigation ul ul {
            background: transparent !important;
        }
        .main-navigation ul ul a {
            color: inherit !important;
        }
    }
  .widget_recent_comments a,
            .widget_recent_entries a,
            body,
            input,
            select,
            textarea,
            .menu-toggle { color: #383838;}
#infinite-footer .blog-info a:hover,
            #infinite-footer .blog-credits a:hover { color: #383838;}
.posts-navigation .nav-links a,
            .main-navigation ul ul a,
            .main-navigation > div > ul > li.current-menu-item > ul > li a,
            .main-navigation > div > ul > li.current_page_item > ul > li a { color: #6D6D6D;}
input[type="button"],
            input[type="button"]:hover,
            input[type="reset"],
            input[type="reset"]:hover,
            input[type="submit"],
            input[type="submit"]:hover,
            button,
            .button,
            .button:hover,
            #content #infinite-handle span button,
            #content #infinite-handle span button:hover,
            .more-link,
            .more-link:hover,
            .more-link:visited { color: #595959;}
.site-main > .hentry:nth-child(n+2), .site .infinite-wrap > .hentry:nth-child(n+2),
            .entry-author-wrapper,
            .post-navigation,
            .comment,
            .page-links a:hover,
            .main-navigation li { border-color: #dddddd;}
.site-main > .hentry:nth-child(n+2), .site .infinite-wrap > .hentry:nth-child(n+2),
            .entry-author-wrapper,
            .post-navigation,
            .comment,
            .page-links a:hover,
            .main-navigation li { border-color: rgba( 221, 221, 221, 0.25 );}
#infinite-footer .blog-info a,
            #infinite-footer .blog-credits,
            #infinite-footer .blog-credits a { color: #6D6D6D;}
.post-details,
            .post-details a,
            .post-details a:visited,
            .post-edit-link a,
            .post-edit-link a:visited { color: #6E6E6C;}
.post-tags li:first-child,
            .jetpack-social-navigation li a:hover,
            .widget_wpcom_social_media_icons_widget li a:hover,
            .jetpack-social-navigation li a:focus,
            .widget_wpcom_social_media_icons_widget li a:focus,
            .jetpack-social-navigation li a:active,
            .widget_wpcom_social_media_icons_widget li a:active { color: #515151;}
.jetpack-social-navigation li a,
            .widget_wpcom_social_media_icons_widget li a { color: #6D6D6D;}
.post-navigation .nav-links a:hover,
            .post-navigation .nav-links a:focus,
            .post-navigation .nav-links a:active,
            .entry-author .author-bio,
            .site-posted-on time,
            .site-description { color: #6D6D6D;}
.comment .comment-meta,
            .comment-form label,
            .light-text,
            .light-text a,
            .light-text a:visited,
            .widget_rss .rss-date,
            .widget_rss li > cite { color: #6E6E6C;}
.light-text a:hover { color: #6E6E6C;}
body { background-color: #ffffff;}
#infinite-footer .container { background-color: #ffffff;}
#infinite-footer .container { background-color: rgba( 255, 255, 255, 0.7 );}
.post-edit-link a { background-color: #F9F9F9;}
.entry-author .author-title,
            .entry-title,
            .entry-title a,
            .entry-title a:visited,
            .site-posted-on strong,
            .site-title,
            .site-title a,
            .site-title a:visited,
            .entry-title a:hover,
            .site-title a:hover,
            h1,
            h2,
            h3,
            h4,
            h5,
            h6,
            .page-header:not(.page-header-light) h1,
            .comment .comment-meta .comment-author .fn { color: #333332;}
.comment-form input[type="email"]:active,
            .comment-form input[type="email"]:focus,
            .comment-form input[type="password"]:active,
            .comment-form input[type="password"]:focus,
            .comment-form input[type="search"]:active,
            .comment-form input[type="search"]:focus,
            .comment-form input[type="text"]:active,
            .comment-form input[type="text"]:focus,
            .comment-form input[type="url"]:active,
            .comment-form input[type="url"]:focus,
            .comment-form textarea:active,
            .comment-form textarea:focus,
            blockquote,
            input[type="email"]:focus,
            input[type="password"]:focus,
            input[type="search"]:focus,
            input[type="text"]:focus,
            input[type="url"]:focus,
            textarea:focus { border-color: #ffffff;}
.comment .comment-meta .comment-metadata a:hover,
            .comment-form span.required,
            .pingback:before,
            .post-details a:hover,
            .post-edit-link a:active,
            .post-edit-link a:focus,
            .post-edit-link a:hover,
            .site-info a:hover,
            .trackback:before,
            a,
            a:visited { color: #6D6D6D;}
.main-navigation > div > ul > li.current-menu-item > a,
            .main-navigation > div > ul > li.current_page_item > a,
            a:active,
            a:focus,
            a:hover,
            .page-links a:hover { color: #B7B7B7;}
.posts-navigation .nav-links a,
            .main-navigation ul ul { background-color: #ffffff;}
button,
            input[type="button"],
            input[type="reset"],
            input[type="submit"],
            .button,
            #content #infinite-handle span button,
            .more-link { background-color: #dbdbdb;}
button:not(".components-button"):hover,
            input[type="button"]:hover,
            input[type="reset"]:hover,
            input[type="submit"]:hover,
            .button:hover,
            #content #infinite-handle span button:hover,
            .more-link:hover { background-color: #C1C1C1;}
</style>
<link rel="icon" href="https://amixedreview.com/wp-content/uploads/2018/07/cropped-amixedreview_fb2.png?w=32" sizes="32x32" />
<link rel="icon" href="https://amixedreview.com/wp-content/uploads/2018/07/cropped-amixedreview_fb2.png?w=192" sizes="192x192" />
<link rel="apple-touch-icon" href="https://amixedreview.com/wp-content/uploads/2018/07/cropped-amixedreview_fb2.png?w=180" />
<meta name="msapplication-TileImage" content="https://amixedreview.com/wp-content/uploads/2018/07/cropped-amixedreview_fb2.png?w=270" />
<link crossorigin='anonymous' rel='stylesheet' id='all-css-0-5' href='/_static/??-eJydzNEKwjAMheEXsqbCWK/ER5GahdEtTUvTMPb2IkwvRbz8D4cPtuqwSCfpkM1VtjmJwkK9RlyPBjWBexKEBxdcFXRLldoZVU/wM5DLZEwKGFsxJf583sOfXk9Mk5sjM7X9W738W75eQgiDHwfvlydRt19W&cssminify=yes' type='text/css' media='all' />

</head>

<body class="home blog wp-custom-logo wp-embed-responsive wp-theme-pubindependent-publisher-2 customizer-styles-applied jetpack-reblog-enabled categories-hidden tags-hidden comment-hidden custom-colors">

<div id="page" class="hfeed site">
	<a class="skip-link screen-reader-text" href="#content">Skip to content</a>

	<div id="hero-header" class="site-hero-section">
		<header id="masthead" class="site-header" role="banner">
			<div class="inner">
				<div class="site-branding">
					<a href="https://amixedreview.com/" class="custom-logo-link" rel="home" aria-current="page"><img width="990" height="180" src="https://amixedreview.com/wp-content/uploads/2018/07/amixedreview_wp_990x180.png" class="custom-logo" alt="" decoding="async" srcset="https://amixedreview.com/wp-content/uploads/2018/07/amixedreview_wp_990x180.png 990w, https://amixedreview.com/wp-content/uploads/2018/07/amixedreview_wp_990x180.png?w=150&amp;h=27 150w, https://amixedreview.com/wp-content/uploads/2018/07/amixedreview_wp_990x180.png?w=300&amp;h=55 300w, https://amixedreview.com/wp-content/uploads/2018/07/amixedreview_wp_990x180.png?w=768&amp;h=140 768w" sizes="(max-width: 990px) 100vw, 990px" data-attachment-id="43" data-permalink="https://amixedreview.com/amixedreview_wp_990x180/" data-orig-file="https://amixedreview.com/wp-content/uploads/2018/07/amixedreview_wp_990x180.png" data-orig-size="990,180" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="AMixedReview_WP_990x180" data-image-description="" data-image-caption="" data-large-file="https://amixedreview.com/wp-content/uploads/2018/07/amixedreview_wp_990x180.png?w=990" /></a>
												<h1 class="site-title"><a href="https://amixedreview.com/" rel="home"></a></h1>
										</div><!-- .site-branding -->

				
									<button class="menu-toggle" aria-controls="primary-menu" aria-expanded="false" id="primary-menu-button">
						Menu					</button><!-- .menu-toggle -->
				
			</div><!-- .inner -->
		</header><!-- #masthead -->
	</div>

				<nav id="site-navigation" class="main-navigation" role="navigation">
			<div class="menu-main-menu-container"><ul id="primary-menu" class="menu"><li id="menu-item-85" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-85"><a href="https://amixedreview.com/category/film/">Film</a></li>
<li id="menu-item-86" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-86"><a href="https://amixedreview.com/category/tv/">TV</a></li>
<li id="menu-item-91" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-91"><a href="https://amixedreview.com/category/video-games/">Video Games</a></li>
<li id="menu-item-83" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-83"><a href="https://amixedreview.com/about/">About</a></li>
</ul></div>		</nav><!-- .main-navigation -->
	
	
	
	<div id="content-wrapper" class="content-wrapper">
		<div id="content" class="site-content">

	<div id="primary" class="content-area">
		<main id="main" class="site-main" role="main">

		
			
						
				
<article id="post-228" class="post-228 post type-post status-publish format-standard has-post-thumbnail sticky hentry category-film category-oscars tag-academy-awards tag-best-picture-winners tag-cinema tag-featured tag-film tag-movies tag-oscars">
			<header class="entry-header">
			<h1 class="entry-title"><a href="https://amixedreview.com/2019/02/17/best-picture/" rel="bookmark">Oscars: Ranking All 97 Best Picture&nbsp;Winners</a></h1>		</header><!-- .entry-header -->	<div class="post-image-link"><a rel="bookmark" href="https://amixedreview.com/2019/02/17/best-picture/"><span class="sticky-label">Featured</span><img width="1100" height="579" src="https://amixedreview.com/wp-content/uploads/2024/04/oppenheimer.jpg?w=1100" class="attachment-independent-publisher-2-full-width size-independent-publisher-2-full-width wp-post-image" alt="" decoding="async" loading="lazy" srcset="https://amixedreview.com/wp-content/uploads/2024/04/oppenheimer.jpg?w=1100 1100w, https://amixedreview.com/wp-content/uploads/2024/04/oppenheimer.jpg?w=150 150w, https://amixedreview.com/wp-content/uploads/2024/04/oppenheimer.jpg?w=300 300w, https://amixedreview.com/wp-content/uploads/2024/04/oppenheimer.jpg?w=768 768w, https://amixedreview.com/wp-content/uploads/2024/04/oppenheimer.jpg?w=1024 1024w, https://amixedreview.com/wp-content/uploads/2024/04/oppenheimer.jpg?w=1440 1440w, https://amixedreview.com/wp-content/uploads/2024/04/oppenheimer.jpg 1900w" sizes="auto, (max-width: 1100px) 100vw, 1100px" data-attachment-id="1093" data-permalink="https://amixedreview.com/2019/02/17/best-picture/oppenheimer/" data-orig-file="https://amixedreview.com/wp-content/uploads/2024/04/oppenheimer.jpg" data-orig-size="1900,1000" data-comments-opened="0" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;\u00a9 Universal Studios. All Rights Reserved.&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="oppenheimer" data-image-description="" data-image-caption="" data-large-file="https://amixedreview.com/wp-content/uploads/2024/04/oppenheimer.jpg?w=1024" /></a></div><!-- .post-image-link -->
	<div class="entry-content">
		<p>A few years ago, I set out to watch every Best Picture winner dating back to The Godfather (1972). For some odd reason, after completing that monumental and occasionally boring task, I felt the need to become a true Oscar historian and watch them all. Forty-four movies later, I can say that I have. Essentially, I watched The Greatest Show on Earth so you wouldn’t have to. Without further ado:</p>	</div><!-- .entry-content -->

	<footer class="entry-footer">
		
				<div class="entry-meta">
			<span class="byline">
				<a href="https://amixedreview.com/author/matthewistephen/" rel="author">Matt Stephen</a>			</span>
							<span class="cat-links">
					<a href="https://amixedreview.com/category/film/" rel="category tag">Film</a>, <a href="https://amixedreview.com/category/oscars/" rel="category tag">Oscars</a>				</span><!-- .cat-links -->
			
			
			<span class="published-on">
									<a href="https://amixedreview.com/2019/02/17/best-picture/" rel="bookmark"><time class="entry-date published" datetime="2019-02-17T09:56:28-05:00">February 17, 2019</time><time class="updated" datetime="2025-03-21T11:31:28-04:00">March 21, 2025</time></a>
							</span>

					</div><!-- .entry-meta -->
		</footer><!-- .entry-footer -->
</article><!-- #post-## -->

			
				
<article id="post-1189" class="post-1189 post type-post status-publish format-standard has-post-thumbnail hentry category-2757063 category-film category-year-in-review tag-2757063 tag-bugonia tag-cinema tag-film tag-if-i-had-legs-id-kick-you tag-marty-supreme tag-mission-impossible-the-final-reckoning tag-movies tag-no-other-choice tag-one-battle-after-another tag-sentimental-value tag-sinners tag-superman tag-weapons tag-year-in-review">
			<header class="entry-header">
			<h1 class="entry-title"><a href="https://amixedreview.com/2026/03/14/the-10-best-movies-of-2025/" rel="bookmark">The 10 Best Movies of&nbsp;2025</a></h1>		</header><!-- .entry-header -->	<div class="post-image-link"><a rel="bookmark" href="https://amixedreview.com/2026/03/14/the-10-best-movies-of-2025/"><img width="1100" height="681" src="https://amixedreview.com/wp-content/uploads/2026/03/movies-2025.png?w=1100" class="attachment-independent-publisher-2-full-width size-independent-publisher-2-full-width wp-post-image" alt="A collage of still frames from No Other Choice, Weapons, and Sinners." decoding="async" loading="lazy" srcset="https://amixedreview.com/wp-content/uploads/2026/03/movies-2025.png?w=1100 1100w, https://amixedreview.com/wp-content/uploads/2026/03/movies-2025.png?w=150 150w, https://amixedreview.com/wp-content/uploads/2026/03/movies-2025.png?w=300 300w, https://amixedreview.com/wp-content/uploads/2026/03/movies-2025.png?w=768 768w, https://amixedreview.com/wp-content/uploads/2026/03/movies-2025.png?w=1024 1024w, https://amixedreview.com/wp-content/uploads/2026/03/movies-2025.png?w=1440 1440w, https://amixedreview.com/wp-content/uploads/2026/03/movies-2025.png 1538w" sizes="auto, (max-width: 1100px) 100vw, 1100px" data-attachment-id="1190" data-permalink="https://amixedreview.com/2026/03/14/the-10-best-movies-of-2025/movies-2025/" data-orig-file="https://amixedreview.com/wp-content/uploads/2026/03/movies-2025.png" data-orig-size="1538,952" data-comments-opened="0" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="Movies 2025" data-image-description="" data-image-caption="&lt;p&gt;Neon, Warner Bros. Pictures, Warner Bros. Pictures&lt;/p&gt;
" data-large-file="https://amixedreview.com/wp-content/uploads/2026/03/movies-2025.png?w=1024" /></a></div><!-- .post-image-link -->
	<div class="entry-content">
		<p>Given the weight of the filmmakers at work in 2025, the year underwhelmed. Still, there was a lot worth celebrating.</p>	</div><!-- .entry-content -->

	<footer class="entry-footer">
		
				<div class="entry-meta">
			<span class="byline">
				<a href="https://amixedreview.com/author/matthewistephen/" rel="author">Matt Stephen</a>			</span>
							<span class="cat-links">
					<a href="https://amixedreview.com/category/years/2025/" rel="category tag">2025</a>, <a href="https://amixedreview.com/category/film/" rel="category tag">Film</a>, <a href="https://amixedreview.com/category/years/year-in-review/" rel="category tag">year in review</a>				</span><!-- .cat-links -->
			
			
			<span class="published-on">
									<a href="https://amixedreview.com/2026/03/14/the-10-best-movies-of-2025/" rel="bookmark"><time class="entry-date published" datetime="2026-03-14T16:33:44-04:00">March 14, 2026</time><time class="updated" datetime="2026-03-14T18:23:10-04:00">March 14, 2026</time></a>
							</span>

					</div><!-- .entry-meta -->
		</footer><!-- .entry-footer -->
</article><!-- #post-## -->

			
				
<article id="post-1184" class="post-1184 post type-post status-publish format-standard has-post-thumbnail hentry category-uncategorized tag-adolescence tag-andor tag-awards tag-dying-for-sex tag-movies tag-news tag-pluribus tag-slow-horses tag-task tag-television tag-the-chair-company tag-the-pitt tag-the-rehearsal tag-the-studio tag-tv tag-year-in-review">
			<header class="entry-header">
			<h1 class="entry-title"><a href="https://amixedreview.com/2026/01/30/the-best-tv-shows-of-2025/" rel="bookmark">The Best TV Shows of&nbsp;2025</a></h1>		</header><!-- .entry-header -->	<div class="post-image-link"><a rel="bookmark" href="https://amixedreview.com/2026/01/30/the-best-tv-shows-of-2025/"><img width="1100" height="681" src="https://amixedreview.com/wp-content/uploads/2026/01/tv-2025.png?w=1100" class="attachment-independent-publisher-2-full-width size-independent-publisher-2-full-width wp-post-image" alt="A collage featuring Andor, The Pitt, and Slow Horses" decoding="async" loading="lazy" srcset="https://amixedreview.com/wp-content/uploads/2026/01/tv-2025.png?w=1100 1100w, https://amixedreview.com/wp-content/uploads/2026/01/tv-2025.png?w=150 150w, https://amixedreview.com/wp-content/uploads/2026/01/tv-2025.png?w=300 300w, https://amixedreview.com/wp-content/uploads/2026/01/tv-2025.png?w=768 768w, https://amixedreview.com/wp-content/uploads/2026/01/tv-2025.png?w=1024 1024w, https://amixedreview.com/wp-content/uploads/2026/01/tv-2025.png?w=1440 1440w, https://amixedreview.com/wp-content/uploads/2026/01/tv-2025.png 1538w" sizes="auto, (max-width: 1100px) 100vw, 1100px" data-attachment-id="1186" data-permalink="https://amixedreview.com/2026/01/30/the-best-tv-shows-of-2025/tv-2025/" data-orig-file="https://amixedreview.com/wp-content/uploads/2026/01/tv-2025.png" data-orig-size="1538,952" data-comments-opened="0" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="TV 2025" data-image-description="" data-image-caption="" data-large-file="https://amixedreview.com/wp-content/uploads/2026/01/tv-2025.png?w=1024" /></a></div><!-- .post-image-link -->
	<div class="entry-content">
		<p>Television is out of timeout. After a pitiful 2024 saw only eight entries on my usual top 10 list, I’m pleased to announce the return of a complete top 10. While the medium rebounded, its quality clustered around a handful of standout shows. Expect a lot of overlap with your own top 10 list.</p>	</div><!-- .entry-content -->

	<footer class="entry-footer">
		
				<div class="entry-meta">
			<span class="byline">
				<a href="https://amixedreview.com/author/matthewistephen/" rel="author">Matt Stephen</a>			</span>
							<span class="cat-links">
					<a href="https://amixedreview.com/category/uncategorized/" rel="category tag">Uncategorized</a>				</span><!-- .cat-links -->
			
			
			<span class="published-on">
									<a href="https://amixedreview.com/2026/01/30/the-best-tv-shows-of-2025/" rel="bookmark"><time class="entry-date published updated" datetime="2026-01-30T17:10:19-05:00">January 30, 2026</time></a>
							</span>

					</div><!-- .entry-meta -->
		</footer><!-- .entry-footer -->
</article><!-- #post-## -->

			
				
<article id="post-1158" class="post-1158 post type-post status-publish format-standard has-post-thumbnail hentry category-uncategorized tag-2724258 tag-a-real-pain tag-challengers tag-cinema tag-didi tag-evil-does-not-exist tag-film tag-horror tag-movies tag-nickel-boys tag-nosferatu tag-oscars tag-sing-sing tag-the-seed-of-the-sacred-fig tag-year-in-review">
			<header class="entry-header">
			<h1 class="entry-title"><a href="https://amixedreview.com/2025/03/01/the-10-best-movies-of-2024/" rel="bookmark">The 10 Best Movies of&nbsp;2024</a></h1>		</header><!-- .entry-header -->	<div class="post-image-link"><a rel="bookmark" href="https://amixedreview.com/2025/03/01/the-10-best-movies-of-2024/"><img width="1100" height="681" src="https://amixedreview.com/wp-content/uploads/2025/03/movies-2024.png?w=1100" class="attachment-independent-publisher-2-full-width size-independent-publisher-2-full-width wp-post-image" alt="" decoding="async" loading="lazy" srcset="https://amixedreview.com/wp-content/uploads/2025/03/movies-2024.png?w=1100 1100w, https://amixedreview.com/wp-content/uploads/2025/03/movies-2024.png?w=150 150w, https://amixedreview.com/wp-content/uploads/2025/03/movies-2024.png?w=300 300w, https://amixedreview.com/wp-content/uploads/2025/03/movies-2024.png?w=768 768w, https://amixedreview.com/wp-content/uploads/2025/03/movies-2024.png?w=1024 1024w, https://amixedreview.com/wp-content/uploads/2025/03/movies-2024.png?w=1440 1440w, https://amixedreview.com/wp-content/uploads/2025/03/movies-2024.png 1538w" sizes="auto, (max-width: 1100px) 100vw, 1100px" data-attachment-id="1160" data-permalink="https://amixedreview.com/2025/03/01/the-10-best-movies-of-2024/movies-2024/" data-orig-file="https://amixedreview.com/wp-content/uploads/2025/03/movies-2024.png" data-orig-size="1538,952" data-comments-opened="0" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="Movies 2024" data-image-description="" data-image-caption="" data-large-file="https://amixedreview.com/wp-content/uploads/2025/03/movies-2024.png?w=1024" /></a></div><!-- .post-image-link -->
	<div class="entry-content">
		<p>On the back of industry-wide strikes, I had low expectations for 2024. Surprisingly, the movies delivered. The year wasn’t rife with five-star bangers, but there was a lot to like. I wholeheartedly recommend 19 movies below.</p>	</div><!-- .entry-content -->

	<footer class="entry-footer">
		
				<div class="entry-meta">
			<span class="byline">
				<a href="https://amixedreview.com/author/matthewistephen/" rel="author">Matt Stephen</a>			</span>
							<span class="cat-links">
					<a href="https://amixedreview.com/category/uncategorized/" rel="category tag">Uncategorized</a>				</span><!-- .cat-links -->
			
			
			<span class="published-on">
									<a href="https://amixedreview.com/2025/03/01/the-10-best-movies-of-2024/" rel="bookmark"><time class="entry-date published updated" datetime="2025-03-01T12:34:32-05:00">March 1, 2025</time></a>
							</span>

					</div><!-- .entry-meta -->
		</footer><!-- .entry-footer -->
</article><!-- #post-## -->

			
				
<article id="post-1153" class="post-1153 post type-post status-publish format-standard has-post-thumbnail hentry category-uncategorized tag-batman-caped-crusader tag-frieren-beyond-journeys-end tag-hacks tag-invincible tag-say-nothing tag-shogun tag-television tag-the-bear tag-tv tag-x-men-97 tag-year-in-review">
			<header class="entry-header">
			<h1 class="entry-title"><a href="https://amixedreview.com/2025/02/25/the-best-tv-shows-of-2024/" rel="bookmark">The Best TV Shows of&nbsp;2024</a></h1>		</header><!-- .entry-header -->	<div class="post-image-link"><a rel="bookmark" href="https://amixedreview.com/2025/02/25/the-best-tv-shows-of-2024/"><img width="1100" height="681" src="https://amixedreview.com/wp-content/uploads/2025/02/tv-2024.png?w=1100" class="attachment-independent-publisher-2-full-width size-independent-publisher-2-full-width wp-post-image" alt="screenshots from Frieren, Shogun, and Say Nothing" decoding="async" loading="lazy" srcset="https://amixedreview.com/wp-content/uploads/2025/02/tv-2024.png?w=1100 1100w, https://amixedreview.com/wp-content/uploads/2025/02/tv-2024.png?w=150 150w, https://amixedreview.com/wp-content/uploads/2025/02/tv-2024.png?w=300 300w, https://amixedreview.com/wp-content/uploads/2025/02/tv-2024.png?w=768 768w, https://amixedreview.com/wp-content/uploads/2025/02/tv-2024.png?w=1024 1024w, https://amixedreview.com/wp-content/uploads/2025/02/tv-2024.png?w=1440 1440w, https://amixedreview.com/wp-content/uploads/2025/02/tv-2024.png 1538w" sizes="auto, (max-width: 1100px) 100vw, 1100px" data-attachment-id="1154" data-permalink="https://amixedreview.com/2025/02/25/the-best-tv-shows-of-2024/tv-2024/" data-orig-file="https://amixedreview.com/wp-content/uploads/2025/02/tv-2024.png" data-orig-size="1538,952" data-comments-opened="0" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="TV 2024" data-image-description="" data-image-caption="" data-large-file="https://amixedreview.com/wp-content/uploads/2025/02/tv-2024.png?w=1024" /></a></div><!-- .post-image-link -->
	<div class="entry-content">
		<p>Crunchyroll, FX on Hulu, FX on Hulu The Golden Age of television is well and truly over. HBO—the biggest name in TV and arguably the most prestigious brand in entertainment—has been reduced to adaptations, reboots, and spinoffs of pre-existing IP. Gone are the days of The Sopranos or Deadwood. The brand replaced Succession with a &hellip; <a href="https://amixedreview.com/2025/02/25/the-best-tv-shows-of-2024/" class="more-link">Continue reading <span class="screen-reader-text">The Best TV Shows of&nbsp;2024</span> <span class="meta-nav">&rarr;</span></a></p>	</div><!-- .entry-content -->

	<footer class="entry-footer">
		
				<div class="entry-meta">
			<span class="byline">
				<a href="https://amixedreview.com/author/matthewistephen/" rel="author">Matt Stephen</a>			</span>
							<span class="cat-links">
					<a href="https://amixedreview.com/category/uncategorized/" rel="category tag">Uncategorized</a>				</span><!-- .cat-links -->
			
			
			<span class="published-on">
									<a href="https://amixedreview.com/2025/02/25/the-best-tv-shows-of-2024/" rel="bookmark"><time class="entry-date published" datetime="2025-02-25T08:04:00-05:00">February 25, 2025</time><time class="updated" datetime="2025-02-25T18:08:23-05:00">February 25, 2025</time></a>
							</span>

					</div><!-- .entry-meta -->
		</footer><!-- .entry-footer -->
</article><!-- #post-## -->

			
				
<article id="post-1084" class="post-1084 post type-post status-publish format-standard has-post-thumbnail hentry category-533056 category-film category-year-in-review tag-barbie tag-christopher-nolan tag-cinema tag-featured tag-film tag-killers-of-the-flower-moon tag-martin-scorsese tag-may-december tag-monster tag-movies tag-oppenheimer tag-past-lives tag-perfect-days tag-poor-things tag-the-wonderful-story-of-henry-sugar tag-the-zone-of-interest">
			<header class="entry-header">
			<h1 class="entry-title"><a href="https://amixedreview.com/2024/03/09/the-top-10-movies-of-2023/" rel="bookmark">The Top 10 Movies of&nbsp;2023</a></h1>		</header><!-- .entry-header -->	<div class="post-image-link"><a rel="bookmark" href="https://amixedreview.com/2024/03/09/the-top-10-movies-of-2023/"><img width="1100" height="681" src="https://amixedreview.com/wp-content/uploads/2024/03/movies-2023.png?w=1100" class="attachment-independent-publisher-2-full-width size-independent-publisher-2-full-width wp-post-image" alt="" decoding="async" loading="lazy" srcset="https://amixedreview.com/wp-content/uploads/2024/03/movies-2023.png?w=1100 1100w, https://amixedreview.com/wp-content/uploads/2024/03/movies-2023.png?w=150 150w, https://amixedreview.com/wp-content/uploads/2024/03/movies-2023.png?w=300 300w, https://amixedreview.com/wp-content/uploads/2024/03/movies-2023.png?w=768 768w, https://amixedreview.com/wp-content/uploads/2024/03/movies-2023.png?w=1024 1024w, https://amixedreview.com/wp-content/uploads/2024/03/movies-2023.png?w=1440 1440w, https://amixedreview.com/wp-content/uploads/2024/03/movies-2023.png 1538w" sizes="auto, (max-width: 1100px) 100vw, 1100px" data-attachment-id="1085" data-permalink="https://amixedreview.com/2024/03/09/the-top-10-movies-of-2023/movies-2023/" data-orig-file="https://amixedreview.com/wp-content/uploads/2024/03/movies-2023.png" data-orig-size="1538,952" data-comments-opened="0" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="movies-2023" data-image-description="" data-image-caption="" data-large-file="https://amixedreview.com/wp-content/uploads/2024/03/movies-2023.png?w=1024" /></a></div><!-- .post-image-link -->
	<div class="entry-content">
		<p>With the Barbenheimer phenomenon, new movies from masters like Martin Scorsese and Hayao Miyazaki, and less reliance on comic book IP, movies were back in the cultural conversation for the first time since Avengers: Endgame. It didn’t hurt that you could craft a top 20 as strong as most year’s top tens, either.</p>	</div><!-- .entry-content -->

	<footer class="entry-footer">
		
				<div class="entry-meta">
			<span class="byline">
				<a href="https://amixedreview.com/author/matthewistephen/" rel="author">Matt Stephen</a>			</span>
							<span class="cat-links">
					<a href="https://amixedreview.com/category/years/2023/" rel="category tag">2023</a>, <a href="https://amixedreview.com/category/film/" rel="category tag">Film</a>, <a href="https://amixedreview.com/category/years/year-in-review/" rel="category tag">year in review</a>				</span><!-- .cat-links -->
			
			
			<span class="published-on">
									<a href="https://amixedreview.com/2024/03/09/the-top-10-movies-of-2023/" rel="bookmark"><time class="entry-date published" datetime="2024-03-09T12:46:49-05:00">March 9, 2024</time><time class="updated" datetime="2024-03-09T12:59:14-05:00">March 9, 2024</time></a>
							</span>

					</div><!-- .entry-meta -->
		</footer><!-- .entry-footer -->
</article><!-- #post-## -->

			
				
<article id="post-1066" class="post-1066 post type-post status-publish format-standard has-post-thumbnail hentry category-533056 category-tv category-year-in-review tag-533056 tag-adventure-time-fionna-cake tag-beef tag-blue-eye-samurai tag-cunk-on-earth tag-featured tag-how-to-with-john-wilson tag-netflix tag-scavengers-reign tag-succession tag-television tag-the-bear tag-the-curse tag-the-righteous-gemstones tag-tv tag-year-in-review">
			<header class="entry-header">
			<h1 class="entry-title"><a href="https://amixedreview.com/2023/12/23/the-top-10-tv-shows-of-2023/" rel="bookmark">The Top 10 TV Shows of&nbsp;2023</a></h1>		</header><!-- .entry-header -->	<div class="post-image-link"><a rel="bookmark" href="https://amixedreview.com/2023/12/23/the-top-10-tv-shows-of-2023/"><img width="1100" height="681" src="https://amixedreview.com/wp-content/uploads/2023/12/tv-2023.png?w=1100" class="attachment-independent-publisher-2-full-width size-independent-publisher-2-full-width wp-post-image" alt="" decoding="async" loading="lazy" srcset="https://amixedreview.com/wp-content/uploads/2023/12/tv-2023.png?w=1100 1100w, https://amixedreview.com/wp-content/uploads/2023/12/tv-2023.png?w=150 150w, https://amixedreview.com/wp-content/uploads/2023/12/tv-2023.png?w=300 300w, https://amixedreview.com/wp-content/uploads/2023/12/tv-2023.png?w=768 768w, https://amixedreview.com/wp-content/uploads/2023/12/tv-2023.png?w=1024 1024w, https://amixedreview.com/wp-content/uploads/2023/12/tv-2023.png?w=1440 1440w, https://amixedreview.com/wp-content/uploads/2023/12/tv-2023.png 1538w" sizes="auto, (max-width: 1100px) 100vw, 1100px" data-attachment-id="1067" data-permalink="https://amixedreview.com/2023/12/23/the-top-10-tv-shows-of-2023/tv-2023/" data-orig-file="https://amixedreview.com/wp-content/uploads/2023/12/tv-2023.png" data-orig-size="1538,952" data-comments-opened="0" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="TV 2023" data-image-description="" data-image-caption="" data-large-file="https://amixedreview.com/wp-content/uploads/2023/12/tv-2023.png?w=1024" /></a></div><!-- .post-image-link -->
	<div class="entry-content">
		<p>The 10 best shows of 2023.</p>	</div><!-- .entry-content -->

	<footer class="entry-footer">
		
				<div class="entry-meta">
			<span class="byline">
				<a href="https://amixedreview.com/author/matthewistephen/" rel="author">Matt Stephen</a>			</span>
							<span class="cat-links">
					<a href="https://amixedreview.com/category/years/2023/" rel="category tag">2023</a>, <a href="https://amixedreview.com/category/tv/" rel="category tag">TV</a>, <a href="https://amixedreview.com/category/years/year-in-review/" rel="category tag">year in review</a>				</span><!-- .cat-links -->
			
			
			<span class="published-on">
									<a href="https://amixedreview.com/2023/12/23/the-top-10-tv-shows-of-2023/" rel="bookmark"><time class="entry-date published" datetime="2023-12-23T20:44:45-05:00">December 23, 2023</time><time class="updated" datetime="2025-04-14T00:25:01-04:00">April 14, 2025</time></a>
							</span>

					</div><!-- .entry-meta -->
		</footer><!-- .entry-footer -->
</article><!-- #post-## -->

			
				
<article id="post-1046" class="post-1046 post type-post status-publish format-standard has-post-thumbnail hentry category-996330 category-film category-year-in-review tag-after-yang tag-cinema tag-decision-to-leave tag-film tag-movies tag-nope tag-pinnochio tag-tar tag-the-banshees-of-inisherin tag-the-batman tag-the-fabelmans tag-women-talking">
			<header class="entry-header">
			<h1 class="entry-title"><a href="https://amixedreview.com/2023/03/11/the-top-10-movies-of-2022/" rel="bookmark">The Top 10 Movies of&nbsp;2022</a></h1>		</header><!-- .entry-header -->	<div class="post-image-link"><a rel="bookmark" href="https://amixedreview.com/2023/03/11/the-top-10-movies-of-2022/"><img width="1100" height="681" src="https://amixedreview.com/wp-content/uploads/2023/03/movies-2022.png?w=1100" class="attachment-independent-publisher-2-full-width size-independent-publisher-2-full-width wp-post-image" alt="" decoding="async" loading="lazy" srcset="https://amixedreview.com/wp-content/uploads/2023/03/movies-2022.png?w=1100 1100w, https://amixedreview.com/wp-content/uploads/2023/03/movies-2022.png?w=150 150w, https://amixedreview.com/wp-content/uploads/2023/03/movies-2022.png?w=300 300w, https://amixedreview.com/wp-content/uploads/2023/03/movies-2022.png?w=768 768w, https://amixedreview.com/wp-content/uploads/2023/03/movies-2022.png?w=1024 1024w, https://amixedreview.com/wp-content/uploads/2023/03/movies-2022.png?w=1440 1440w, https://amixedreview.com/wp-content/uploads/2023/03/movies-2022.png 1538w" sizes="auto, (max-width: 1100px) 100vw, 1100px" data-attachment-id="1048" data-permalink="https://amixedreview.com/2023/03/11/the-top-10-movies-of-2022/movies-2022/" data-orig-file="https://amixedreview.com/wp-content/uploads/2023/03/movies-2022.png" data-orig-size="1538,952" data-comments-opened="0" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="Movies 2022" data-image-description="" data-image-caption="" data-large-file="https://amixedreview.com/wp-content/uploads/2023/03/movies-2022.png?w=1024" /></a></div><!-- .post-image-link -->
	<div class="entry-content">
		<p>The movies are kind of back? After filmmaking was ravaged by legitimate concerns for cast and crew safety, pandemic protocols, and studio delays, 2022 brought a breadth of excellent films, the quality of which hasn’t been seen since at least 2019.</p>	</div><!-- .entry-content -->

	<footer class="entry-footer">
		
				<div class="entry-meta">
			<span class="byline">
				<a href="https://amixedreview.com/author/matthewistephen/" rel="author">Matt Stephen</a>			</span>
							<span class="cat-links">
					<a href="https://amixedreview.com/category/years/2022/" rel="category tag">2022</a>, <a href="https://amixedreview.com/category/film/" rel="category tag">Film</a>, <a href="https://amixedreview.com/category/years/year-in-review/" rel="category tag">year in review</a>				</span><!-- .cat-links -->
			
			
			<span class="published-on">
									<a href="https://amixedreview.com/2023/03/11/the-top-10-movies-of-2022/" rel="bookmark"><time class="entry-date published" datetime="2023-03-11T08:20:00-05:00">March 11, 2023</time><time class="updated" datetime="2024-03-09T12:59:47-05:00">March 9, 2024</time></a>
							</span>

					</div><!-- .entry-meta -->
		</footer><!-- .entry-footer -->
</article><!-- #post-## -->

			
				
<article id="post-1040" class="post-1040 post type-post status-publish format-standard has-post-thumbnail hentry category-996330 category-tv category-year-in-review tag-andor tag-barry tag-better-call-saul tag-players tag-severance tag-station-eleven tag-the-rehearsal tag-the-white-lotus tag-tv tag-yellowjackets">
			<header class="entry-header">
			<h1 class="entry-title"><a href="https://amixedreview.com/2022/12/29/the-top-10-tv-shows-of-2022/" rel="bookmark">The Top 10 TV Shows of&nbsp;2022</a></h1>		</header><!-- .entry-header -->	<div class="post-image-link"><a rel="bookmark" href="https://amixedreview.com/2022/12/29/the-top-10-tv-shows-of-2022/"><img width="1100" height="681" src="https://amixedreview.com/wp-content/uploads/2022/12/tv-2022.png?w=1100" class="attachment-independent-publisher-2-full-width size-independent-publisher-2-full-width wp-post-image" alt="" decoding="async" loading="lazy" srcset="https://amixedreview.com/wp-content/uploads/2022/12/tv-2022.png?w=1100 1100w, https://amixedreview.com/wp-content/uploads/2022/12/tv-2022.png?w=150 150w, https://amixedreview.com/wp-content/uploads/2022/12/tv-2022.png?w=300 300w, https://amixedreview.com/wp-content/uploads/2022/12/tv-2022.png?w=768 768w, https://amixedreview.com/wp-content/uploads/2022/12/tv-2022.png?w=1024 1024w, https://amixedreview.com/wp-content/uploads/2022/12/tv-2022.png?w=1440 1440w, https://amixedreview.com/wp-content/uploads/2022/12/tv-2022.png 1538w" sizes="auto, (max-width: 1100px) 100vw, 1100px" data-attachment-id="1042" data-permalink="https://amixedreview.com/2022/12/29/the-top-10-tv-shows-of-2022/tv-2022/" data-orig-file="https://amixedreview.com/wp-content/uploads/2022/12/tv-2022.png" data-orig-size="1538,952" data-comments-opened="0" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="TV 2022" data-image-description="" data-image-caption="" data-large-file="https://amixedreview.com/wp-content/uploads/2022/12/tv-2022.png?w=1024" /></a></div><!-- .post-image-link -->
	<div class="entry-content">
		<p>The 10 best shows of 2022.</p>	</div><!-- .entry-content -->

	<footer class="entry-footer">
		
				<div class="entry-meta">
			<span class="byline">
				<a href="https://amixedreview.com/author/matthewistephen/" rel="author">Matt Stephen</a>			</span>
							<span class="cat-links">
					<a href="https://amixedreview.com/category/years/2022/" rel="category tag">2022</a>, <a href="https://amixedreview.com/category/tv/" rel="category tag">TV</a>, <a href="https://amixedreview.com/category/years/year-in-review/" rel="category tag">year in review</a>				</span><!-- .cat-links -->
			
			
			<span class="published-on">
									<a href="https://amixedreview.com/2022/12/29/the-top-10-tv-shows-of-2022/" rel="bookmark"><time class="entry-date published" datetime="2022-12-29T20:09:14-05:00">December 29, 2022</time><time class="updated" datetime="2023-12-23T20:46:13-05:00">December 23, 2023</time></a>
							</span>

					</div><!-- .entry-meta -->
		</footer><!-- .entry-footer -->
</article><!-- #post-## -->

			
				
<article id="post-998" class="post-998 post type-post status-publish format-standard has-post-thumbnail hentry category-173981 category-film category-year-in-review tag-cmon-cmon tag-cinema tag-drive-my-car tag-film tag-movies tag-nightmare-alley tag-no-time-to-die tag-pig tag-the-french-dispatch tag-the-last-duel tag-the-lost-daughter tag-the-power-of-the-dog">
			<header class="entry-header">
			<h1 class="entry-title"><a href="https://amixedreview.com/2022/03/24/best-movies-2021/" rel="bookmark">The Top 10 Movies of&nbsp;2021</a></h1>		</header><!-- .entry-header -->	<div class="post-image-link"><a rel="bookmark" href="https://amixedreview.com/2022/03/24/best-movies-2021/"><img width="1100" height="681" src="https://amixedreview.com/wp-content/uploads/2022/03/movies-2021.png?w=1100" class="attachment-independent-publisher-2-full-width size-independent-publisher-2-full-width wp-post-image" alt="" decoding="async" loading="lazy" srcset="https://amixedreview.com/wp-content/uploads/2022/03/movies-2021.png?w=1100 1100w, https://amixedreview.com/wp-content/uploads/2022/03/movies-2021.png?w=150 150w, https://amixedreview.com/wp-content/uploads/2022/03/movies-2021.png?w=300 300w, https://amixedreview.com/wp-content/uploads/2022/03/movies-2021.png?w=768 768w, https://amixedreview.com/wp-content/uploads/2022/03/movies-2021.png?w=1024 1024w, https://amixedreview.com/wp-content/uploads/2022/03/movies-2021.png?w=1440 1440w, https://amixedreview.com/wp-content/uploads/2022/03/movies-2021.png 1538w" sizes="auto, (max-width: 1100px) 100vw, 1100px" data-attachment-id="1000" data-permalink="https://amixedreview.com/movies-2021/" data-orig-file="https://amixedreview.com/wp-content/uploads/2022/03/movies-2021.png" data-orig-size="1538,952" data-comments-opened="0" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="movies-2021" data-image-description="" data-image-caption="" data-large-file="https://amixedreview.com/wp-content/uploads/2022/03/movies-2021.png?w=1024" /></a></div><!-- .post-image-link -->
	<div class="entry-content">
		<p>As Hollywood continues its systemic eradication of the mid-budget movie, most of what remains is micro-budget indies and mega-budget blockbusters. Some incredibly talented filmmakers managed to make the best of an increasingly binary industry in 2021.</p>	</div><!-- .entry-content -->

	<footer class="entry-footer">
		
				<div class="entry-meta">
			<span class="byline">
				<a href="https://amixedreview.com/author/matthewistephen/" rel="author">Matt Stephen</a>			</span>
							<span class="cat-links">
					<a href="https://amixedreview.com/category/years/2021/" rel="category tag">2021</a>, <a href="https://amixedreview.com/category/film/" rel="category tag">Film</a>, <a href="https://amixedreview.com/category/years/year-in-review/" rel="category tag">year in review</a>				</span><!-- .cat-links -->
			
			
			<span class="published-on">
									<a href="https://amixedreview.com/2022/03/24/best-movies-2021/" rel="bookmark"><time class="entry-date published" datetime="2022-03-24T08:09:00-04:00">March 24, 2022</time><time class="updated" datetime="2023-03-10T16:18:30-05:00">March 10, 2023</time></a>
							</span>

					</div><!-- .entry-meta -->
		</footer><!-- .entry-footer -->
</article><!-- #post-## -->

			
				
<article id="post-972" class="post-972 post type-post status-publish format-standard has-post-thumbnail hentry category-173981 category-tv category-year-in-review tag-173981 tag-disenchantment tag-hacks tag-i-think-you-should-leave tag-invincible tag-loki tag-lupin tag-maid tag-mare-of-easttown tag-only-murders-in-the-building tag-reservation-dogs tag-succession tag-the-white-lotus tag-tv tag-wandavision tag-y-the-last-man tag-year-in-review">
			<header class="entry-header">
			<h1 class="entry-title"><a href="https://amixedreview.com/2022/01/04/best-tv-2021/" rel="bookmark">The Top 10 TV Shows of&nbsp;2021</a></h1>		</header><!-- .entry-header -->	<div class="post-image-link"><a rel="bookmark" href="https://amixedreview.com/2022/01/04/best-tv-2021/"><img width="1100" height="681" src="https://amixedreview.com/wp-content/uploads/2022/01/tv-2021.png?w=1100" class="attachment-independent-publisher-2-full-width size-independent-publisher-2-full-width wp-post-image" alt="" decoding="async" loading="lazy" srcset="https://amixedreview.com/wp-content/uploads/2022/01/tv-2021.png?w=1100 1100w, https://amixedreview.com/wp-content/uploads/2022/01/tv-2021.png?w=150 150w, https://amixedreview.com/wp-content/uploads/2022/01/tv-2021.png?w=300 300w, https://amixedreview.com/wp-content/uploads/2022/01/tv-2021.png?w=768 768w, https://amixedreview.com/wp-content/uploads/2022/01/tv-2021.png?w=1024 1024w, https://amixedreview.com/wp-content/uploads/2022/01/tv-2021.png?w=1440 1440w, https://amixedreview.com/wp-content/uploads/2022/01/tv-2021.png 1538w" sizes="auto, (max-width: 1100px) 100vw, 1100px" data-attachment-id="973" data-permalink="https://amixedreview.com/tv-2021/" data-orig-file="https://amixedreview.com/wp-content/uploads/2022/01/tv-2021.png" data-orig-size="1538,952" data-comments-opened="0" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="TV 2021" data-image-description="" data-image-caption="" data-large-file="https://amixedreview.com/wp-content/uploads/2022/01/tv-2021.png?w=1024" /></a></div><!-- .post-image-link -->
	<div class="entry-content">
		<p>The 10 best shows of 2021.</p>	</div><!-- .entry-content -->

	<footer class="entry-footer">
		
				<div class="entry-meta">
			<span class="byline">
				<a href="https://amixedreview.com/author/matthewistephen/" rel="author">Matt Stephen</a>			</span>
							<span class="cat-links">
					<a href="https://amixedreview.com/category/years/2021/" rel="category tag">2021</a>, <a href="https://amixedreview.com/category/tv/" rel="category tag">TV</a>, <a href="https://amixedreview.com/category/years/year-in-review/" rel="category tag">year in review</a>				</span><!-- .cat-links -->
			
			
			<span class="published-on">
									<a href="https://amixedreview.com/2022/01/04/best-tv-2021/" rel="bookmark"><time class="entry-date published" datetime="2022-01-04T13:00:19-05:00">January 4, 2022</time><time class="updated" datetime="2022-12-29T20:03:22-05:00">December 29, 2022</time></a>
							</span>

					</div><!-- .entry-meta -->
		</footer><!-- .entry-footer -->
</article><!-- #post-## -->

			
			
	<nav class="navigation posts-navigation" aria-label="Posts">
		<h2 class="screen-reader-text">Posts navigation</h2>
		<div class="nav-links"><div class="nav-previous"><a href="https://amixedreview.com/page/2/?option=com_ninjarsssyndicator&#038;feed_id=12&#038;format=raw" >Older posts</a></div></div>
	</nav>
		
		</main><!-- #main -->
	</div><!-- #primary -->

		</div><!-- #content -->

		<footer id="colophon" class="site-footer" role="contentinfo">
						<div class="site-info">
				<a href="https://wordpress.com/?ref=footer_custom_svg" title="Create a website or blog at WordPress.com" rel="nofollow"><svg style="fill: currentColor; position: relative; top: 1px;" width="14px" height="15px" viewBox="0 0 14 15" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-labelledby="title" role="img">
				<desc id="title">Create a website or blog at WordPress.com</desc>
				<path d="M12.5225848,4.97949746 C13.0138466,5.87586309 13.2934037,6.90452431 13.2934037,7.99874074 C13.2934037,10.3205803 12.0351007,12.3476807 10.1640538,13.4385638 L12.0862862,7.88081544 C12.4453251,6.98296834 12.5648813,6.26504621 12.5648813,5.62667922 C12.5648813,5.39497674 12.549622,5.17994084 12.5225848,4.97949746 L12.5225848,4.97949746 Z M7.86730089,5.04801561 C8.24619178,5.02808979 8.58760099,4.98823815 8.58760099,4.98823815 C8.9267139,4.94809022 8.88671369,4.44972248 8.54745263,4.46957423 C8.54745263,4.46957423 7.52803983,4.54957381 6.86996227,4.54957381 C6.25158863,4.54957381 5.21247202,4.46957423 5.21247202,4.46957423 C4.87306282,4.44972248 4.83328483,4.96816418 5.17254589,4.98823815 C5.17254589,4.98823815 5.49358462,5.02808979 5.83269753,5.04801561 L6.81314716,7.73459399 L5.43565839,11.8651647 L3.14394256,5.04801561 C3.52312975,5.02808979 3.86416859,4.98823815 3.86416859,4.98823815 C4.20305928,4.94809022 4.16305906,4.44972248 3.82394616,4.46957423 C3.82394616,4.46957423 2.80475558,4.54957381 2.14660395,4.54957381 C2.02852925,4.54957381 1.88934333,4.54668493 1.74156477,4.54194422 C2.86690406,2.83350881 4.80113651,1.70529256 6.99996296,1.70529256 C8.638342,1.70529256 10.1302017,2.33173369 11.2498373,3.35765419 C11.222726,3.35602457 11.1962815,3.35261718 11.1683554,3.35261718 C10.5501299,3.35261718 10.1114609,3.89113285 10.1114609,4.46957423 C10.1114609,4.98823815 10.4107217,5.42705065 10.7296864,5.94564049 C10.969021,6.36482346 11.248578,6.90326506 11.248578,7.68133501 C11.248578,8.21992476 11.0413918,8.84503256 10.7696866,9.71584277 L10.1417574,11.8132391 L7.86730089,5.04801561 Z M6.99996296,14.2927074 C6.38218192,14.2927074 5.78595654,14.2021153 5.22195356,14.0362644 L7.11048207,8.54925635 L9.04486267,13.8491542 C9.05760348,13.8802652 9.07323319,13.9089317 9.08989995,13.9358945 C8.43574834,14.1661896 7.73285573,14.2927074 6.99996296,14.2927074 L6.99996296,14.2927074 Z M0.706448182,7.99874074 C0.706448182,7.08630113 0.902152921,6.22015756 1.25141403,5.43749503 L4.25357806,13.6627848 C2.15393732,12.6427902 0.706448182,10.4898387 0.706448182,7.99874074 L0.706448182,7.99874074 Z M6.99996296,0.999 C3.14016476,0.999 0,4.13905746 0,7.99874074 C0,11.8585722 3.14016476,14.999 6.99996296,14.999 C10.8596871,14.999 14,11.8585722 14,7.99874074 C14,4.13905746 10.8596871,0.999 6.99996296,0.999 L6.99996296,0.999 Z" id="wordpress-logo-simplified-cmyk" stroke="none" fill=“currentColor” fill-rule="evenodd"></path>
			</svg></a>
				
							</div><!-- .site-info -->
		</footer><!-- #colophon -->
	</div><!-- #content-wrapper -->
</div><!-- #page -->

		<script type="text/javascript">
		var infiniteScroll = {"settings":{"id":"main","ajaxurl":"https://amixedreview.com/?infinity=scrolling","type":"scroll","wrapper":true,"wrapper_class":"infinite-wrap","footer":"page","click_handle":"1","text":"Older posts","totop":"Scroll back to top","currentday":"04.01.22","order":"DESC","scripts":[],"styles":[],"google_analytics":false,"offset":1,"history":{"host":"amixedreview.com","path":"/page/%d/","use_trailing_slashes":true,"parameters":"?option=com_ninjarsssyndicator\u0026feed_id=12\u0026format=raw"},"query_args":{"error":"","m":"","p":0,"post_parent":"","subpost":"","subpost_id":"","attachment":"","attachment_id":0,"name":"","pagename":"","page_id":0,"second":"","minute":"","hour":"","day":0,"monthnum":0,"year":0,"w":0,"category_name":"","tag":"","cat":"","tag_id":"","author":"","author_name":"","feed":"","tb":"","paged":0,"meta_key":"","meta_value":"","preview":"","s":"","sentence":"","title":"","fields":"all","menu_order":"","embed":"","category__in":[],"category__not_in":[],"category__and":[],"post__in":[],"post__not_in":[],"post_name__in":[],"tag__in":[],"tag__not_in":[],"tag__and":[],"tag_slug__in":[],"tag_slug__and":[],"post_parent__in":[],"post_parent__not_in":[],"author__in":[],"author__not_in":[],"search_columns":[],"lazy_load_term_meta":false,"posts_per_page":10,"ignore_sticky_posts":false,"suppress_filters":false,"cache_results":true,"update_post_term_cache":true,"update_menu_item_cache":false,"update_post_meta_cache":true,"post_type":"","nopaging":false,"comments_per_page":"50","no_found_rows":false,"order":"DESC"},"query_before":"2026-06-12 21:03:34","last_post_date":"2022-01-04 13:00:19","body_class":"infinite-scroll neverending","loading_text":"Loading new page","stats":"blog=147511409\u0026v=wpcom\u0026tz=-4\u0026user_id=0\u0026arch_home=1\u0026subd=amixedreviewdotcom\u0026x_pagetype=infinite"}};
		</script>
		<!--  -->
<script type="speculationrules">
{"prefetch":[{"source":"document","where":{"and":[{"href_matches":"/*"},{"not":{"href_matches":["/wp-*.php","/wp-admin/*","/files/*","/wp-content/*","/wp-content/plugins/*","/wp-content/themes/pub/independent-publisher-2/*","/*\\?(.+)"]}},{"not":{"selector_matches":"a[rel~=\"nofollow\"]"}},{"not":{"selector_matches":".no-prefetch, .no-prefetch a"}}]},"eagerness":"conservative"}]}
</script>
<script id="grofiles-cards-js" src="//0.gravatar.com/js/hovercards/hovercards.min.js?ver=202624d1133547e8a1f2801609f51cef12522abe7f6647d869e9fbc974fe356a37e613"></script>
<script id="wpgroho-js-extra">
var WPGroHo = {"my_hash":""};
//# sourceURL=wpgroho-js-extra
</script>
<script crossorigin='anonymous' type='text/javascript'  src='/wp-content/mu-plugins/gravatar-hovercards/wpgroho.js?m=1610363240i'></script>

	<script>
		// Initialize and attach hovercards to all gravatars
		( function() {
			function init() {
				if ( typeof Gravatar === 'undefined' ) {
					return;
				}

				if ( typeof Gravatar.init !== 'function' ) {
					return;
				}

				Gravatar.profile_cb = function ( hash, id ) {
					WPGroHo.syncProfileData( hash, id );
				};

				Gravatar.my_hash = WPGroHo.my_hash;
				Gravatar.init(
					'body',
					'#wp-admin-bar-my-account',
					{
						i18n: {
							'Edit your profile →': 'Edit your profile →',
							'View profile →': 'View profile →',
							'Contact': 'Contact',
							'Send money': 'Send money',
							'Sorry, we are unable to load this Gravatar profile.': 'Sorry, we are unable to load this Gravatar profile.',
							'Gravatar not found.': 'Gravatar not found.',
							'Too Many Requests.': 'Too Many Requests.',
							'Internal Server Error.': 'Internal Server Error.',
							'Is this you?': 'Is this you?',
							'Claim your free profile.': 'Claim your free profile.',
							'Email': 'Email',
							'Home Phone': 'Home Phone',
							'Work Phone': 'Work Phone',
							'Cell Phone': 'Cell Phone',
							'Contact Form': 'Contact Form',
							'Calendar': 'Calendar',
						},
					}
				);
			}

			if ( document.readyState !== 'loading' ) {
				init();
			} else {
				document.addEventListener( 'DOMContentLoaded', init );
			}
		} )();
	</script>

		<div style="display:none">
	</div>
		<div id="infinite-footer">
			<div class="container">
				<div class="blog-info">
					<a id="infinity-blog-title" href="https://amixedreview.com/" rel="home">
											</a>
				</div>
				<div class="blog-credits">
					<a href="https://wordpress.com/?ref=footer_custom_svg" title="Create a website or blog at WordPress.com" rel="nofollow"><svg style="fill: currentColor; position: relative; top: 1px;" width="14px" height="15px" viewBox="0 0 14 15" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-labelledby="title" role="img">
				<desc id="title">Create a website or blog at WordPress.com</desc>
				<path d="M12.5225848,4.97949746 C13.0138466,5.87586309 13.2934037,6.90452431 13.2934037,7.99874074 C13.2934037,10.3205803 12.0351007,12.3476807 10.1640538,13.4385638 L12.0862862,7.88081544 C12.4453251,6.98296834 12.5648813,6.26504621 12.5648813,5.62667922 C12.5648813,5.39497674 12.549622,5.17994084 12.5225848,4.97949746 L12.5225848,4.97949746 Z M7.86730089,5.04801561 C8.24619178,5.02808979 8.58760099,4.98823815 8.58760099,4.98823815 C8.9267139,4.94809022 8.88671369,4.44972248 8.54745263,4.46957423 C8.54745263,4.46957423 7.52803983,4.54957381 6.86996227,4.54957381 C6.25158863,4.54957381 5.21247202,4.46957423 5.21247202,4.46957423 C4.87306282,4.44972248 4.83328483,4.96816418 5.17254589,4.98823815 C5.17254589,4.98823815 5.49358462,5.02808979 5.83269753,5.04801561 L6.81314716,7.73459399 L5.43565839,11.8651647 L3.14394256,5.04801561 C3.52312975,5.02808979 3.86416859,4.98823815 3.86416859,4.98823815 C4.20305928,4.94809022 4.16305906,4.44972248 3.82394616,4.46957423 C3.82394616,4.46957423 2.80475558,4.54957381 2.14660395,4.54957381 C2.02852925,4.54957381 1.88934333,4.54668493 1.74156477,4.54194422 C2.86690406,2.83350881 4.80113651,1.70529256 6.99996296,1.70529256 C8.638342,1.70529256 10.1302017,2.33173369 11.2498373,3.35765419 C11.222726,3.35602457 11.1962815,3.35261718 11.1683554,3.35261718 C10.5501299,3.35261718 10.1114609,3.89113285 10.1114609,4.46957423 C10.1114609,4.98823815 10.4107217,5.42705065 10.7296864,5.94564049 C10.969021,6.36482346 11.248578,6.90326506 11.248578,7.68133501 C11.248578,8.21992476 11.0413918,8.84503256 10.7696866,9.71584277 L10.1417574,11.8132391 L7.86730089,5.04801561 Z M6.99996296,14.2927074 C6.38218192,14.2927074 5.78595654,14.2021153 5.22195356,14.0362644 L7.11048207,8.54925635 L9.04486267,13.8491542 C9.05760348,13.8802652 9.07323319,13.9089317 9.08989995,13.9358945 C8.43574834,14.1661896 7.73285573,14.2927074 6.99996296,14.2927074 L6.99996296,14.2927074 Z M0.706448182,7.99874074 C0.706448182,7.08630113 0.902152921,6.22015756 1.25141403,5.43749503 L4.25357806,13.6627848 C2.15393732,12.6427902 0.706448182,10.4898387 0.706448182,7.99874074 L0.706448182,7.99874074 Z M6.99996296,0.999 C3.14016476,0.999 0,4.13905746 0,7.99874074 C0,11.8585722 3.14016476,14.999 6.99996296,14.999 C10.8596871,14.999 14,11.8585722 14,7.99874074 C14,4.13905746 10.8596871,0.999 6.99996296,0.999 L6.99996296,0.999 Z" id="wordpress-logo-simplified-cmyk" stroke="none" fill=“currentColor” fill-rule="evenodd"></path>
			</svg></a> 				</div>
			</div>
		</div><!-- #infinite-footer -->
				<div id="actionbar" dir="ltr" style="display: none;"
			class="actnbr-pub-independent-publisher-2 actnbr-has-follow actnbr-has-actions">
		<ul>
								<li class="actnbr-btn actnbr-hidden">
								<a class="actnbr-action actnbr-actn-follow " href="">
			<svg class="gridicon" height="20" width="20" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path clip-rule="evenodd" d="m4 4.5h12v6.5h1.5v-6.5-1.5h-1.5-12-1.5v1.5 10.5c0 1.1046.89543 2 2 2h7v-1.5h-7c-.27614 0-.5-.2239-.5-.5zm10.5 2h-9v1.5h9zm-5 3h-4v1.5h4zm3.5 1.5h-1v1h1zm-1-1.5h-1.5v1.5 1 1.5h1.5 1 1.5v-1.5-1-1.5h-1.5zm-2.5 2.5h-4v1.5h4zm6.5 1.25h1.5v2.25h2.25v1.5h-2.25v2.25h-1.5v-2.25h-2.25v-1.5h2.25z"  fill-rule="evenodd"></path></svg>
			<span>Subscribe</span>
		</a>
		<a class="actnbr-action actnbr-actn-following  no-display" href="">
			<svg class="gridicon" height="20" width="20" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path fill-rule="evenodd" clip-rule="evenodd" d="M16 4.5H4V15C4 15.2761 4.22386 15.5 4.5 15.5H11.5V17H4.5C3.39543 17 2.5 16.1046 2.5 15V4.5V3H4H16H17.5V4.5V12.5H16V4.5ZM5.5 6.5H14.5V8H5.5V6.5ZM5.5 9.5H9.5V11H5.5V9.5ZM12 11H13V12H12V11ZM10.5 9.5H12H13H14.5V11V12V13.5H13H12H10.5V12V11V9.5ZM5.5 12H9.5V13.5H5.5V12Z" fill="#008A20"></path><path class="following-icon-tick" d="M13.5 16L15.5 18L19 14.5" stroke="#008A20" stroke-width="1.5"></path></svg>
			<span>Subscribed</span>
		</a>
							<div class="actnbr-popover tip tip-top-left actnbr-notice" id="follow-bubble">
							<div class="tip-arrow"></div>
							<div class="tip-inner actnbr-follow-bubble">
															<ul>
											<li class="actnbr-sitename">
			<a href="https://amixedreview.com">
				<img loading='lazy' alt='' src='https://amixedreview.com/wp-content/uploads/2018/07/cropped-amixedreview_fb2.png?w=50' srcset='https://amixedreview.com/wp-content/uploads/2018/07/cropped-amixedreview_fb2.png?w=50 1x, https://amixedreview.com/wp-content/uploads/2018/07/cropped-amixedreview_fb2.png?w=75 1.5x, https://amixedreview.com/wp-content/uploads/2018/07/cropped-amixedreview_fb2.png?w=100 2x, https://amixedreview.com/wp-content/uploads/2018/07/cropped-amixedreview_fb2.png?w=150 3x, https://amixedreview.com/wp-content/uploads/2018/07/cropped-amixedreview_fb2.png?w=200 4x' class='avatar avatar-50' height='50' width='50' />				amixedreview.com			</a>
		</li>
										<div class="actnbr-message no-display"></div>
									<form method="post" action="https://subscribe.wordpress.com" accept-charset="utf-8" style="display: none;">
																						<div class="actnbr-follow-count">Join 60 other subscribers</div>
																					<div>
										<input type="email" name="email" placeholder="Enter your email address" class="actnbr-email-field" aria-label="Enter your email address" />
										</div>
										<input type="hidden" name="action" value="subscribe" />
										<input type="hidden" name="blog_id" value="147511409" />
										<input type="hidden" name="source" value="https://amixedreview.com/?option=com_ninjarsssyndicator&#038;feed_id=12&#038;format=raw" />
										<input type="hidden" name="sub-type" value="actionbar-follow" />
										<input type="hidden" id="_wpnonce" name="_wpnonce" value="9607d5d12c" />										<div class="actnbr-button-wrap">
											<button type="submit" value="Sign me up">
												Sign me up											</button>
										</div>
									</form>
									<li class="actnbr-login-nudge">
										<div>
											Already have a WordPress.com account? <a href="https://wordpress.com/log-in?redirect_to=https%3A%2F%2Fr-login.wordpress.com%2Fremote-login.php%3Faction%3Dlink%26back%3Dhttps%253A%252F%252Famixedreview.com%252F2019%252F02%252F17%252Fbest-picture%252F">Log in now.</a>										</div>
									</li>
								</ul>
															</div>
						</div>
					</li>
									<li class="actnbr-btn actnbr-hidden no-display" onclick="javascript:__tcfapi( 'showUi' );">
						<a class="actnbr-action actnbr-actn-privacy" href="#">
							<svg class="gridicon gridicons-info-outline" height="20" width="20" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><g><path d="M13 9h-2V7h2v2zm0 2h-2v6h2v-6zm-1-7c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8m0-2c5.523 0 10 4.477 10 10s-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2z"/></g></svg>							<span>Privacy						</span>
						</a>
					</li>
							<li class="actnbr-ellipsis actnbr-hidden">
				<svg class="gridicon gridicons-ellipsis" height="24" width="24" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><g><path d="M7 12c0 1.104-.896 2-2 2s-2-.896-2-2 .896-2 2-2 2 .896 2 2zm12-2c-1.104 0-2 .896-2 2s.896 2 2 2 2-.896 2-2-.896-2-2-2zm-7 0c-1.104 0-2 .896-2 2s.896 2 2 2 2-.896 2-2-.896-2-2-2z"/></g></svg>				<div class="actnbr-popover tip tip-top-left actnbr-more">
					<div class="tip-arrow"></div>
					<div class="tip-inner">
						<ul>
								<li class="actnbr-sitename">
			<a href="https://amixedreview.com">
				<img loading='lazy' alt='' src='https://amixedreview.com/wp-content/uploads/2018/07/cropped-amixedreview_fb2.png?w=50' srcset='https://amixedreview.com/wp-content/uploads/2018/07/cropped-amixedreview_fb2.png?w=50 1x, https://amixedreview.com/wp-content/uploads/2018/07/cropped-amixedreview_fb2.png?w=75 1.5x, https://amixedreview.com/wp-content/uploads/2018/07/cropped-amixedreview_fb2.png?w=100 2x, https://amixedreview.com/wp-content/uploads/2018/07/cropped-amixedreview_fb2.png?w=150 3x, https://amixedreview.com/wp-content/uploads/2018/07/cropped-amixedreview_fb2.png?w=200 4x' class='avatar avatar-50' height='50' width='50' />				amixedreview.com			</a>
		</li>
								<li class="actnbr-folded-follow">
										<a class="actnbr-action actnbr-actn-follow " href="">
			<svg class="gridicon" height="20" width="20" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path clip-rule="evenodd" d="m4 4.5h12v6.5h1.5v-6.5-1.5h-1.5-12-1.5v1.5 10.5c0 1.1046.89543 2 2 2h7v-1.5h-7c-.27614 0-.5-.2239-.5-.5zm10.5 2h-9v1.5h9zm-5 3h-4v1.5h4zm3.5 1.5h-1v1h1zm-1-1.5h-1.5v1.5 1 1.5h1.5 1 1.5v-1.5-1-1.5h-1.5zm-2.5 2.5h-4v1.5h4zm6.5 1.25h1.5v2.25h2.25v1.5h-2.25v2.25h-1.5v-2.25h-2.25v-1.5h2.25z"  fill-rule="evenodd"></path></svg>
			<span>Subscribe</span>
		</a>
		<a class="actnbr-action actnbr-actn-following  no-display" href="">
			<svg class="gridicon" height="20" width="20" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path fill-rule="evenodd" clip-rule="evenodd" d="M16 4.5H4V15C4 15.2761 4.22386 15.5 4.5 15.5H11.5V17H4.5C3.39543 17 2.5 16.1046 2.5 15V4.5V3H4H16H17.5V4.5V12.5H16V4.5ZM5.5 6.5H14.5V8H5.5V6.5ZM5.5 9.5H9.5V11H5.5V9.5ZM12 11H13V12H12V11ZM10.5 9.5H12H13H14.5V11V12V13.5H13H12H10.5V12V11V9.5ZM5.5 12H9.5V13.5H5.5V12Z" fill="#008A20"></path><path class="following-icon-tick" d="M13.5 16L15.5 18L19 14.5" stroke="#008A20" stroke-width="1.5"></path></svg>
			<span>Subscribed</span>
		</a>
								</li>
														<li class="actnbr-signup"><a href="https://wordpress.com/start/">Sign up</a></li>
							<li class="actnbr-login"><a href="https://wordpress.com/log-in?redirect_to=https%3A%2F%2Fr-login.wordpress.com%2Fremote-login.php%3Faction%3Dlink%26back%3Dhttps%253A%252F%252Famixedreview.com%252F2019%252F02%252F17%252Fbest-picture%252F">Log in</a></li>
															<li class="flb-report">
									<a href="https://wordpress.com/abuse/?report_url=https://amixedreview.com" target="_blank" rel="noopener noreferrer">
										Report this content									</a>
								</li>
															<li class="actnbr-reader">
									<a href="https://wordpress.com/reader/feeds/168736816">
										View site in Reader									</a>
								</li>
															<li class="actnbr-subs">
									<a href="https://subscribe.wordpress.com/">Manage subscriptions</a>
								</li>
																<li class="actnbr-fold"><a href="">Collapse this bar</a></li>
														</ul>
					</div>
				</div>
			</li>
		</ul>
	</div>
	
<script>
window.addEventListener( "DOMContentLoaded", function( event ) {
	var link = document.createElement( "link" );
	link.href = "/wp-content/mu-plugins/actionbar/actionbar.css?v=20250116";
	link.type = "text/css";
	link.rel = "stylesheet";
	document.head.appendChild( link );

	var script = document.createElement( "script" );
	script.src = "/wp-content/mu-plugins/actionbar/actionbar.js?v=20250204";
	document.body.appendChild( script );
} );
</script>

			<div id="jp-carousel-loading-overlay">
			<div id="jp-carousel-loading-wrapper">
				<span id="jp-carousel-library-loading"><svg class="jetpack-spinner" width="40" height="40" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false"><circle cx="50" cy="50" r="46" fill="none" stroke="#ddd" stroke-width="8"/><path d="M 50 4 A 46 46 0 0 1 96 50" fill="none" stroke="currentColor" stroke-width="8" stroke-linecap="round"><animateTransform attributeName="transform" type="rotate" dur="1.4s" from="0 50 50" to="360 50 50" repeatCount="indefinite"/></path></svg></span>
			</div>
		</div>
		<div class="jp-carousel-overlay" style="display: none;">

		<div class="jp-carousel-container">
			<!-- The Carousel Swiper -->
			<div
				class="jp-carousel-wrap swiper jp-carousel-swiper-container jp-carousel-transitions"
				itemscope
				itemtype="https://schema.org/ImageGallery">
				<div class="jp-carousel swiper-wrapper"></div>
				<div class="jp-swiper-button-prev swiper-button-prev">
					<svg width="25" height="24" viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg">
						<mask id="maskPrev" mask-type="alpha" maskUnits="userSpaceOnUse" x="8" y="6" width="9" height="12">
							<path d="M16.2072 16.59L11.6496 12L16.2072 7.41L14.8041 6L8.8335 12L14.8041 18L16.2072 16.59Z" fill="white"/>
						</mask>
						<g mask="url(#maskPrev)">
							<rect x="0.579102" width="23.8823" height="24" fill="#FFFFFF"/>
						</g>
					</svg>
				</div>
				<div class="jp-swiper-button-next swiper-button-next">
					<svg width="25" height="24" viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg">
						<mask id="maskNext" mask-type="alpha" maskUnits="userSpaceOnUse" x="8" y="6" width="8" height="12">
							<path d="M8.59814 16.59L13.1557 12L8.59814 7.41L10.0012 6L15.9718 12L10.0012 18L8.59814 16.59Z" fill="white"/>
						</mask>
						<g mask="url(#maskNext)">
							<rect x="0.34375" width="23.8822" height="24" fill="#FFFFFF"/>
						</g>
					</svg>
				</div>
			</div>
			<!-- The main close buton -->
			<div class="jp-carousel-close-hint">
				<svg width="25" height="24" viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg">
					<mask id="maskClose" mask-type="alpha" maskUnits="userSpaceOnUse" x="5" y="5" width="15" height="14">
						<path d="M19.3166 6.41L17.9135 5L12.3509 10.59L6.78834 5L5.38525 6.41L10.9478 12L5.38525 17.59L6.78834 19L12.3509 13.41L17.9135 19L19.3166 17.59L13.754 12L19.3166 6.41Z" fill="white"/>
					</mask>
					<g mask="url(#maskClose)">
						<rect x="0.409668" width="23.8823" height="24" fill="#FFFFFF"/>
					</g>
				</svg>
			</div>
			<!-- Image info, comments and meta -->
			<div class="jp-carousel-info">
				<div class="jp-carousel-info-footer">
					<div class="jp-carousel-pagination-container">
						<div class="jp-swiper-pagination swiper-pagination"></div>
						<div class="jp-carousel-pagination"></div>
					</div>
					<div class="jp-carousel-photo-title-container">
						<h2 class="jp-carousel-photo-caption"></h2>
					</div>
					<div class="jp-carousel-photo-icons-container">
						<a href="#" class="jp-carousel-icon-btn jp-carousel-icon-info" aria-label="Toggle photo metadata visibility">
							<span class="jp-carousel-icon">
								<svg width="25" height="24" viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg">
									<mask id="maskInfo" mask-type="alpha" maskUnits="userSpaceOnUse" x="2" y="2" width="21" height="20">
										<path fill-rule="evenodd" clip-rule="evenodd" d="M12.7537 2C7.26076 2 2.80273 6.48 2.80273 12C2.80273 17.52 7.26076 22 12.7537 22C18.2466 22 22.7046 17.52 22.7046 12C22.7046 6.48 18.2466 2 12.7537 2ZM11.7586 7V9H13.7488V7H11.7586ZM11.7586 11V17H13.7488V11H11.7586ZM4.79292 12C4.79292 16.41 8.36531 20 12.7537 20C17.142 20 20.7144 16.41 20.7144 12C20.7144 7.59 17.142 4 12.7537 4C8.36531 4 4.79292 7.59 4.79292 12Z" fill="white"/>
									</mask>
									<g mask="url(#maskInfo)">
										<rect x="0.8125" width="23.8823" height="24" fill="#FFFFFF"/>
									</g>
								</svg>
							</span>
						</a>
												<a href="#" class="jp-carousel-icon-btn jp-carousel-icon-comments" aria-label="Toggle photo comments visibility">
							<span class="jp-carousel-icon">
								<svg width="25" height="24" viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg">
									<mask id="maskComments" mask-type="alpha" maskUnits="userSpaceOnUse" x="2" y="2" width="21" height="20">
										<path fill-rule="evenodd" clip-rule="evenodd" d="M4.3271 2H20.2486C21.3432 2 22.2388 2.9 22.2388 4V16C22.2388 17.1 21.3432 18 20.2486 18H6.31729L2.33691 22V4C2.33691 2.9 3.2325 2 4.3271 2ZM6.31729 16H20.2486V4H4.3271V18L6.31729 16Z" fill="white"/>
									</mask>
									<g mask="url(#maskComments)">
										<rect x="0.34668" width="23.8823" height="24" fill="#FFFFFF"/>
									</g>
								</svg>

								<span class="jp-carousel-has-comments-indicator" aria-label="This image has comments."></span>
							</span>
						</a>
											</div>
				</div>
				<div class="jp-carousel-info-extra">
					<div class="jp-carousel-info-content-wrapper">
						<div class="jp-carousel-photo-title-container">
							<h2 class="jp-carousel-photo-title"></h2>
						</div>
						<div class="jp-carousel-comments-wrapper">
															<div id="jp-carousel-comments-loading">
									<span>Loading Comments...</span>
								</div>
								<div class="jp-carousel-comments"></div>
								<div id="jp-carousel-comment-form-container">
									<span id="jp-carousel-comment-form-spinner"><svg class="jetpack-spinner" width="20" height="20" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false"><circle cx="50" cy="50" r="46" fill="none" stroke="#ddd" stroke-width="8"/><path d="M 50 4 A 46 46 0 0 1 96 50" fill="none" stroke="currentColor" stroke-width="8" stroke-linecap="round"><animateTransform attributeName="transform" type="rotate" dur="1.4s" from="0 50 50" to="360 50 50" repeatCount="indefinite"/></path></svg></span>
									<div id="jp-carousel-comment-post-results"></div>
																														<form id="jp-carousel-comment-form">
												<label for="jp-carousel-comment-form-comment-field" class="screen-reader-text">Write a Comment...</label>
												<textarea
													name="comment"
													class="jp-carousel-comment-form-field jp-carousel-comment-form-textarea"
													id="jp-carousel-comment-form-comment-field"
													placeholder="Write a Comment..."
												></textarea>
												<div id="jp-carousel-comment-form-submit-and-info-wrapper">
													<div id="jp-carousel-comment-form-commenting-as">
																													<fieldset>
																<label for="jp-carousel-comment-form-email-field">Email (Required)</label>
																<input type="text" name="email" class="jp-carousel-comment-form-field jp-carousel-comment-form-text-field" id="jp-carousel-comment-form-email-field" />
															</fieldset>
															<fieldset>
																<label for="jp-carousel-comment-form-author-field">Name (Required)</label>
																<input type="text" name="author" class="jp-carousel-comment-form-field jp-carousel-comment-form-text-field" id="jp-carousel-comment-form-author-field" />
															</fieldset>
															<fieldset>
																<label for="jp-carousel-comment-form-url-field">Website</label>
																<input type="text" name="url" class="jp-carousel-comment-form-field jp-carousel-comment-form-text-field" id="jp-carousel-comment-form-url-field" />
															</fieldset>
																											</div>
													<input
														type="submit"
														name="submit"
														class="jp-carousel-comment-form-button"
														id="jp-carousel-comment-form-button-submit"
														value="Post Comment" />
												</div>
											</form>
																											</div>
													</div>
						<div class="jp-carousel-image-meta">
							<div class="jp-carousel-title-and-caption">
								<div class="jp-carousel-photo-info">
									<h3 class="jp-carousel-caption" itemprop="caption description"></h3>
								</div>

								<div class="jp-carousel-photo-description"></div>
							</div>
							<ul class="jp-carousel-image-exif" style="display: none;"></ul>
							<a class="jp-carousel-image-download" href="#" target="_blank" style="display: none;">
								<svg width="25" height="24" viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg">
									<mask id="mask0" mask-type="alpha" maskUnits="userSpaceOnUse" x="3" y="3" width="19" height="18">
										<path fill-rule="evenodd" clip-rule="evenodd" d="M5.84615 5V19H19.7775V12H21.7677V19C21.7677 20.1 20.8721 21 19.7775 21H5.84615C4.74159 21 3.85596 20.1 3.85596 19V5C3.85596 3.9 4.74159 3 5.84615 3H12.8118V5H5.84615ZM14.802 5V3H21.7677V10H19.7775V6.41L9.99569 16.24L8.59261 14.83L18.3744 5H14.802Z" fill="white"/>
									</mask>
									<g mask="url(#mask0)">
										<rect x="0.870605" width="23.8823" height="24" fill="#FFFFFF"/>
									</g>
								</svg>
								<span class="jp-carousel-download-text"></span>
							</a>
							<div class="jp-carousel-image-map" style="display: none;"></div>
						</div>
					</div>
				</div>
			</div>
		</div>

		</div>
		
	<script type="text/javascript">
		(function () {
			var wpcom_reblog = {
				source: 'toolbar',

				toggle_reblog_box_flair: function (obj_id, post_id) {

					// Go to site selector. This will redirect to their blog if they only have one.
					const postEndpoint = `https://wordpress.com/post`;

					// Ideally we would use the permalink here, but fortunately this will be replaced with the 
					// post permalink in the editor.
					const originalURL = `${ document.location.href }?page_id=${ post_id }`; 
					
					const url =
						postEndpoint +
						'?url=' +
						encodeURIComponent( originalURL ) +
						'&is_post_share=true' +
						'&v=5';

					const redirect = function () {
						if (
							! window.open( url, '_blank' )
						) {
							location.href = url;
						}
					};

					if ( /Firefox/.test( navigator.userAgent ) ) {
						setTimeout( redirect, 0 );
					} else {
						redirect();
					}
				},
			};

			window.wpcom_reblog = wpcom_reblog;
		})();
	</script>
<script id="coblocks-loader-js-extra">
var wpcom_coblocks_js = {"coblocks_masonry_js":"https://s0.wp.com/wp-content/plugins/coblocks/2.18.1-simple-rev.4/dist/js/coblocks-masonry.min.js?m=1681832297i","coblocks_lightbox_js":"https://s0.wp.com/wp-content/plugins/coblocks/2.18.1-simple-rev.4/dist/js/coblocks-lightbox.min.js?m=1681832297i","jquery_core_js":"/wp-includes/js/jquery/jquery.min.js","jquery_migrate_js":"/wp-includes/js/jquery/jquery-migrate.min.js","masonry_js":"/wp-includes/js/masonry.min.js","imagesloaded_js":"/wp-includes/js/imagesloaded.min.js"};
var coblocksLigthboxData = {"closeLabel":"Close Gallery","leftLabel":"Previous","rightLabel":"Next"};
//# sourceURL=coblocks-loader-js-extra
</script>
<script id="jetpack-carousel-js-extra">
var jetpackSwiperLibraryPath = {"url":"/wp-content/mu-plugins/jetpack-plugin/sun/_inc/blocks/swiper.js"};
var jetpackCarouselStrings = {"widths":[370,700,1000,1200,1400,2000],"is_logged_in":"","lang":"en","ajaxurl":"https://amixedreview.com/wp-admin/admin-ajax.php","nonce":"f50d89480f","display_exif":"1","display_comments":"1","single_image_gallery":"1","single_image_gallery_media_file":"","background_color":"black","comment":"Comment","post_comment":"Post Comment","write_comment":"Write a Comment...","loading_comments":"Loading Comments...","image_label":"Open image in full-screen.","download_original":"View full size \u003Cspan class=\"photo-size\"\u003E{0}\u003Cspan class=\"photo-size-times\"\u003E\u00d7\u003C/span\u003E{1}\u003C/span\u003E","no_comment_text":"Please be sure to submit some text with your comment.","no_comment_email":"Please provide an email address to comment.","no_comment_author":"Please provide your name to comment.","comment_post_error":"Sorry, but there was an error posting your comment. Please try again later.","comment_approved":"Your comment was approved.","comment_unapproved":"Your comment is in moderation.","camera":"Camera","aperture":"Aperture","shutter_speed":"Shutter Speed","focal_length":"Focal Length","copyright":"Copyright","comment_registration":"0","require_name_email":"1","login_url":"https://amixedreviewdotcom.wordpress.com/wp-login.php?redirect_to=https%3A%2F%2Famixedreview.com%2F2019%2F02%2F17%2Fbest-picture%2F","blog_id":"147511409","meta_data":["camera","aperture","shutter_speed","focal_length","copyright"],"stats_query_args":"blog=147511409&v=wpcom&tz=-4&user_id=0&arch_home=1&subd=amixedreviewdotcom","is_public":"1"};
//# sourceURL=jetpack-carousel-js-extra
</script>
<script crossorigin='anonymous' type='text/javascript'  src='/_static/??-eJydkdFqwzAMRX9osubS0byMfcpwHKVVYsvGstvt75dC046xwciL4EpXR3CFlww+SSWpGBvk0I4sihPV7Px806hN8J3FY984DMgysnAlUF9SCKv+NJHFTPqE36Ar0ac+JD8r7oztjAXlmANBobPZ48BacXqYICQ3UPmNV08USTG3fjk7UKalSIVFB9YTFdhdQeLOfHSV08b9P0bbYDpzhsAyw5h8Uxj5YwPoGv+SN+cKl+xT/In49/e8K6kphbttbdzifouv9tA9v9h9d7DTF/rbykA='></script>
<script data-wp-strategy="defer" defer id="tiled-gallery-js" src="/wp-content/mu-plugins/jetpack-plugin/sun/_inc/build/tiled-gallery/tiled-gallery/tiled-gallery.min.js?m=1755011788i&#038;ver=16.0-a.0"></script>
<script crossorigin='anonymous' type='text/javascript'  src='/wp-content/mu-plugins/carousel-wpcom/carousel-wpcom.js?m=1761899756i'></script>
<script id="wp-emoji-settings" type="application/json">
{"baseUrl":"https://s0.wp.com/wp-content/mu-plugins/wpcom-smileys/twemoji/2/72x72/","ext":".png","svgUrl":"https://s0.wp.com/wp-content/mu-plugins/wpcom-smileys/twemoji/2/svg/","svgExt":".svg","source":{"concatemoji":"/wp-includes/js/wp-emoji-release.min.js?m=1764078722i&ver=7.0-RC4-62382"}}
</script>
<script type="module">
/*! This file is auto-generated */
const a=JSON.parse(document.getElementById("wp-emoji-settings").textContent),o=(window._wpemojiSettings=a,"wpEmojiSettingsSupports"),s=["flag","emoji"];function i(e){try{var t={supportTests:e,timestamp:(new Date).valueOf()};sessionStorage.setItem(o,JSON.stringify(t))}catch(e){}}function c(e,t,n){e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(t,0,0);t=new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data);e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(n,0,0);const a=new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data);return t.every((e,t)=>e===a[t])}function p(e,t){e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(t,0,0);var n=e.getImageData(16,16,1,1);for(let e=0;e<n.data.length;e++)if(0!==n.data[e])return!1;return!0}function u(e,t,n,a){switch(t){case"flag":return n(e,"\ud83c\udff3\ufe0f\u200d\u26a7\ufe0f","\ud83c\udff3\ufe0f\u200b\u26a7\ufe0f")?!1:!n(e,"\ud83c\udde8\ud83c\uddf6","\ud83c\udde8\u200b\ud83c\uddf6")&&!n(e,"\ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc65\udb40\udc6e\udb40\udc67\udb40\udc7f","\ud83c\udff4\u200b\udb40\udc67\u200b\udb40\udc62\u200b\udb40\udc65\u200b\udb40\udc6e\u200b\udb40\udc67\u200b\udb40\udc7f");case"emoji":return!a(e,"\ud83e\u1fac8")}return!1}function f(e,t,n,a){let r;const o=(r="undefined"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope?new OffscreenCanvas(300,150):document.createElement("canvas")).getContext("2d",{willReadFrequently:!0}),s=(o.textBaseline="top",o.font="600 32px Arial",{});return e.forEach(e=>{s[e]=t(o,e,n,a)}),s}function r(e){var t=document.createElement("script");t.src=e,t.defer=!0,document.head.appendChild(t)}a.supports={everything:!0,everythingExceptFlag:!0},new Promise(t=>{let n=function(){try{var e=JSON.parse(sessionStorage.getItem(o));if("object"==typeof e&&"number"==typeof e.timestamp&&(new Date).valueOf()<e.timestamp+604800&&"object"==typeof e.supportTests)return e.supportTests}catch(e){}return null}();if(!n){if("undefined"!=typeof Worker&&"undefined"!=typeof OffscreenCanvas&&"undefined"!=typeof URL&&URL.createObjectURL&&"undefined"!=typeof Blob)try{var e="postMessage("+f.toString()+"("+[JSON.stringify(s),u.toString(),c.toString(),p.toString()].join(",")+"));",a=new Blob([e],{type:"text/javascript"});const r=new Worker(URL.createObjectURL(a),{name:"wpTestEmojiSupports"});return void(r.onmessage=e=>{i(n=e.data),r.terminate(),t(n)})}catch(e){}i(n=f(s,u,c,p))}t(n)}).then(e=>{for(const n in e)a.supports[n]=e[n],a.supports.everything=a.supports.everything&&a.supports[n],"flag"!==n&&(a.supports.everythingExceptFlag=a.supports.everythingExceptFlag&&a.supports[n]);var t;a.supports.everythingExceptFlag=a.supports.everythingExceptFlag&&!a.supports.flag,a.supports.everything||((t=a.source||{}).concatemoji?r(t.concatemoji):t.wpemoji&&t.twemoji&&(r(t.twemoji),r(t.wpemoji)))});
//# sourceURL=/wp-includes/js/wp-emoji-loader.min.js
</script>
		<script type="text/javascript">
			(function() {
				var extend = function(out) {
					out = out || {};

					for (var i = 1; i < arguments.length; i++) {
						if (!arguments[i])
						continue;

						for (var key in arguments[i]) {
						if (arguments[i].hasOwnProperty(key))
							out[key] = arguments[i][key];
						}
					}

					return out;
				};
				extend( window.infiniteScroll.settings.scripts, ["jetpack-mu-wpcom-settings","rlt-proxy","wpcom-actionbar-placeholder","grofiles-cards","wpgroho","the-neverending-homepage","coblocks-loader","independent-publisher-2-navigation","independent-publisher-2-images","independent-publisher-2-skip-link-focus-fix","independent-publisher-2-wpcom-functions","jetpack-carousel","tiled-gallery","carousel-wpcom"] );
				extend( window.infiniteScroll.settings.styles, ["the-neverending-homepage","coblocks-frontend","wpcom-core-compat-playlist-styles","wpcom-bbpress2-staff-css","genericons","independent-publisher-2-style","independent-publisher-2-block-style","independent-publisher-2-wpcom-style","reblogging","geo-location-flair","a8c-global-print","h4-global","wp-img-auto-sizes-contain","wp-emoji-styles","wp-block-library","classic-theme-styles","wp-block-styles-placeholder","wp-global-styles-placeholder","jetpack-global-styles-frontend-style","wp-block-image","wp-block-image-theme","wp-block-paragraph","wp-block-paragraph-theme","global-styles","jetpack-swiper-library","jetpack-carousel","tiled-gallery","core-block-supports-duotone"] );
			})();
		</script>
				<span id="infinite-aria" aria-live="polite"></span>
		<script src="//stats.wp.com/w.js?68" defer></script> <script type="text/javascript">
_tkq = window._tkq || [];
_stq = window._stq || [];
_tkq.push(['storeContext', {'blog_id':'147511409','blog_tz':'-4','user_lang':'en','blog_lang':'en','user_id':'0'}]);
		// Prevent sending pageview tracking from WP-Admin pages.
		_stq.push(['view', {'blog':'147511409','v':'wpcom','tz':'-4','user_id':'0','arch_home':'1','subd':'amixedreviewdotcom'}]);
		_stq.push(['extra', {'crypt':'UE5tW3cvZGRTd1VXTHx0Q0pyYT89K3QrZXh+YlZCT3lNLEN2NzQ2Njh8QTJiL1BzZVh+MTlwZTc3TkdTOFRnU0tVUE1VQj1TaW03RjJMN204K3U0fFhEZl9IUXlmUXcrR2V3LkdaZH5TVWowZHctPVhHeiZsLnd6aUdrYjhkdl1hMWEvSjlCbDRrN2diajdBcXhrPUF5OHIwJVhMX01SU1hIanZxL1VRfkNDXXZZWi9vVWFTXUt2clByZG8uaGg='}]);
_stq.push([ 'clickTrackerInit', '147511409', '0' ]);
</script>
<noscript><img src="https://pixel.wp.com/b.gif?v=noscript" style="height:1px;width:1px;overflow:hidden;position:absolute;bottom:1px;" alt="" /></noscript>
<meta id="bilmur" property="bilmur:data" content="" data-provider="wordpress.com" data-service="simple" data-site-tz="America/New_York" data-custom-props="{&quot;logged_in&quot;:&quot;0&quot;,&quot;wptheme&quot;:&quot;pub\/independent-publisher-2&quot;,&quot;wptheme_is_block&quot;:&quot;0&quot;}"  >
		<script defer src="/wp-content/js/bilmur.min.js?i=17&amp;m=202624"></script> 	
</body>
</html>
