{"id":149,"date":"2019-10-13T12:59:18","date_gmt":"2019-10-13T12:59:18","guid":{"rendered":"http:\/\/kiti.ca\/?page_id=149"},"modified":"2021-05-21T22:38:09","modified_gmt":"2021-05-21T22:38:09","slug":"game","status":"publish","type":"page","link":"https:\/\/kiti.ca\/ja\/game\/","title":{"rendered":"Game"},"content":{"rendered":"","protected":false},"excerpt":{"rendered":"","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":15,"comment_status":"closed","ping_status":"closed","template":"","meta":[],"class_list":["post-149","page","type-page","status-publish","hentry"],"grid":"{\r\n  \"colCount\": 3,\r\n  \"colGutter\": 1,\r\n  \"rowGutters\": [\r\n    5\r\n  ],\r\n  \"frameMargin\": 2,\r\n  \"topFrameMargin\": 5,\r\n  \"bottomFrameMargin\": 2,\r\n  \"rowAttrs\": [\r\n    {},\r\n    {\r\n      \"classes\": \"modal\"\r\n    }\r\n  ],\r\n  \"bgColor\": null,\r\n  \"cont\": [\r\n    {\r\n      \"type\": \"html\",\r\n      \"cont\": \"<div class=\\\"wrap\\\"><div class=\\\"game\\\"> <\/div><\/div>\\n\\n\/* memory game *\/\\n<style>\\n* {\\n    box-sizing: border-box;\\n}\\n.wrap {\\n  position: relative;\\n  height: 100%;\\n}\\n\\n.game {\\n  -webkit-transform-style: preserve-3d;\\n          transform-style: preserve-3d;\\n  -webkit-perspective: 500px;\\n          perspective: 500px;\\n  min-height: 100%;\\n  height: 100%;\\n}\\n\\n\/* animate  match *\/\\n@-webkit-keyframes matchAnim {\\n  0% {\\n     opacity: 0;\\n  }\\n  100% {\\n     opacity: 1;\\n  }\\n} \\n@keyframes matchAnim {\\n  0% {\\n     opacity: 0;\\n  }\\n  100% {\\n     opacity: 1;\\n  }\\n} \\n\\n\\n.card {\\n  float: left;\\n  width: 16vw;\\n  height: 16vw;\\n  padding: 1px;\\n  text-align: center;\\n  display: block;\\n  -webkit-perspective: 500px;\\n          perspective: 500px;\\n  position: relative;\\n  cursor: pointer;\\n  z-index: 50;\\n  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);\\n}\\n.card .inside {\\n  width: 100%;\\n  height: 100%;\\n  display: block;\\n  -webkit-transform-style: preserve-3d;\\n          transform-style: preserve-3d;\\n  transition: .5s ease-in-out;\\n}\\n.card .inside.picked, .card .inside.matched {\\n  -webkit-transform: rotateY(180deg);\\n          transform: rotateY(180deg);\\n}\\n.card .inside.matched {\\n  -webkit-animation: 1s matchAnim ease-in-out;\\n          animation: 1s matchAnim ease-in-out;\\n  -webkit-animation-delay: .5s;\\n          animation-delay: .5s;\\n}\\n.card .front, .card .back {\\n  -webkit-backface-visibility: hidden;\\n          backface-visibility: hidden;\\n  position: absolute;\\n  top: 0;\\n  left: 0;\\n  width: 100%;\\n  height: 100%;\\n  padding: 0px;\\n}\\n\\n.card .front img, .card .back img {\\n  max-width: 100%;\\n  display: block;\\n  margin: 0 auto;\\n  max-height: 100%;\\n}\\n.card .front {\\n  -webkit-transform: rotateY(-180deg);\\n          transform: rotateY(-180deg);\\n}\\n.card .back {\\n  -webkit-transform: rotateX(0);\\n          transform: rotateX(0);\\n}\\n\\n.modal-overlay {\\n  display: none;\\n  position: fixed;\\n  top: 100px;\\n  left: 0;\\n  width: 100vw;\\n  height: 100vh;\\n}\\n\\n@media (max-width: 600px){\\n    .card {\\n    float: left;\\n    width: 32vw;\\n    height: 32vw;\\n    }\\n    \\n}\\n<\/style>\\n\\n\\n<!-- memory game -->\\n<script>\\nwindow.laytheme.on(\\\"newpageshown\\\", function(layoutObj, type, obj){\\n\\n(function(){\\n\\tvar Memory = {\\n\\t\\tinit: function(cards){\\n\\t\\t\\tthis.$game = jQuery(\\\".game\\\");\\n\\t\\t\\tthis.$modal = jQuery(\\\".modal\\\");\\n\\t\\t\\tthis.$overlay = jQuery(\\\".modal-overlay\\\");\\n\\t\\t\\tthis.$restartButton = jQuery(\\\".button-play\\\");\\n\\t\\t\\tthis.cardsArray = jQuery.merge(cards, cards);\\n\\t\\t\\tthis.shuffleCards(this.cardsArray);\\n\\t\\t\\tthis.setup();\\n\\t\\t},\\n\\n\\t\\tshuffleCards: function(cardsArray){\\n\\t\\t\\tthis.$cards = jQuery(this.shuffle(this.cardsArray));\\n\\t\\t},\\n\\n\\t\\tsetup: function(){\\n\\t\\t\\tthis.html = this.buildHTML();\\n\\t\\t\\tthis.$game.html(this.html);\\n\\t\\t\\tthis.$memoryCards = jQuery(\\\".card\\\");\\n\\t\\t\\tthis.paused = false;\\n     \\tthis.guess = null;\\n\\t\\t\\tthis.binding();\\n\\t\\t},\\n\\n\\t\\tbinding: function(){\\n\\t\\t\\tthis.$memoryCards.on(\\\"click\\\", this.cardClicked);\\n\\t\\t\\tthis.$restartButton.on(\\\"click\\\", jQuery.proxy(this.reset, this));\\n\\t\\t},\\n\\t\\t\/\/ kinda messy but hey\\n\\t\\tcardClicked: function(){\\n\\t\\t\\tvar _ = Memory;\\n\\t\\t\\tvar $card = jQuery(this);\\n\\t\\t\\tif(!_.paused && !$card.find(\\\".inside\\\").hasClass(\\\"matched\\\") && !$card.find(\\\".inside\\\").hasClass(\\\"picked\\\")){\\n\\t\\t\\t\\t$card.find(\\\".inside\\\").addClass(\\\"picked\\\");\\n\\t\\t\\t\\tif(!_.guess){\\n\\t\\t\\t\\t\\t_.guess = jQuery(this).attr(\\\"data-id\\\");\\n\\t\\t\\t\\t} else if(_.guess == jQuery(this).attr(\\\"data-id\\\") && !jQuery(this).hasClass(\\\"picked\\\")){\\n\\t\\t\\t\\t\\tjQuery(\\\".picked\\\").addClass(\\\"matched\\\");\\n\\t\\t\\t\\t\\t_.guess = null;\\n\\t\\t\\t\\t} else {\\n\\t\\t\\t\\t\\t_.guess = null;\\n\\t\\t\\t\\t\\t_.paused = true;\\n\\t\\t\\t\\t\\tsetTimeout(function(){\\n\\t\\t\\t\\t\\t\\tjQuery(\\\".picked\\\").removeClass(\\\"picked\\\");\\n\\t\\t\\t\\t\\t\\tMemory.paused = false;\\n\\t\\t\\t\\t\\t}, 600);\\n\\t\\t\\t\\t}\\n\\t\\t\\t\\tif(jQuery(\\\".matched\\\").length == jQuery(\\\".card\\\").length){\\n\\t\\t\\t\\t\\t_.win();\\n\\t\\t\\t\\t}\\n\\t\\t\\t}\\n\\t\\t},\\n\\n\\t\\twin: function(){\\n\\t\\t\\tthis.paused = true;\\n\\t\\t\\tsetTimeout(function(){\\n\\t\\t\\t\\tMemory.showModal();\\n\\t\\t\\t\\tMemory.$game.fadeOut();\\n\\t\\t\\t}, 1000);\\n\\t\\t},\\n\\n\\t\\tshowModal: function(){\\n\\t\\t\\tthis.$overlay.show();\\n\\t\\t\\tthis.$modal.fadeIn(\\\"slow\\\");\\n\\t\\t},\\n\\n\\t\\thideModal: function(){\\n\\t\\t\\tthis.$overlay.hide();\\n\\t\\t\\tthis.$modal.hide();\\n\\t\\t},\\n\\n\\t\\treset: function(){\\n\\t\\t\\tthis.hideModal();\\n\\t\\t\\tthis.shuffleCards(this.cardsArray);\\n\\t\\t\\tthis.setup();\\n\\t\\t\\tthis.$game.show(\\\"slow\\\");\\n\\t\\t},\\n\\n\\t\\t\/\/ Fisher--Yates Algorithm \\n\\t\\tshuffle: function(array){\\n\\t\\t\\tvar counter = array.length, temp, index;\\n\\t   \\twhile (counter > 0) {\\n        \\tindex = Math.floor(Math.random() * counter);\\n        \\tcounter--;\\n        \\ttemp = array[counter];\\n        \\tarray[counter] = array[index];\\n        \\tarray[index] = temp;\\n\\t    \\t}\\n\\t    \\treturn array;\\n\\t\\t},\\n\\n\\t\\tbuildHTML: function(){\\n\\t\\t\\tvar frag = '';\\n\\t\\t\\tthis.$cards.each(function(k, v){\\n\\t\\t\\t\\tfrag += '<div class=\\\"card\\\" data-id=\\\"'+ v.id +'\\\"><div class=\\\"inside\\\">\\\\\\n\\t\\t\\t\\t<div class=\\\"front\\\"><img src=\\\"'+ v.img +'\\\"\\\\\\n\\t\\t\\t\\talt=\\\"'+ v.name +'\\\" \/><\/div>\\\\\\n\\t\\t\\t\\t<div class=\\\"back\\\"><img src=\\\"https:\/\/kiti.ca\/wp-content\/uploads\/2021\/05\/KITI-card.png\\\"\\\\><\/div><\/div>\\\\\\n\\t\\t\\t\\t<\/div>';\\n\\t\\t\\t});\\n\\t\\t\\treturn frag;\\n\\t\\t}\\n\\t};\\n\\n\\tvar cards = [\\n\\t\\t{\\n\\t\\t\\tname: \\\"1\\\",\\n\\t\\t\\timg: \\\"https:\/\/kiti.ca\/wp-content\/uploads\/2020\/02\/doe.jpg\\\",\\n\\t\\t\\tid: 1,\\n\\t\\t},\\n\\t\\t\\n\\t\\t\\n\\t\\t\\n\\t\\t{\\n\\t\\t\\tname: \\\"2\\\",\\n\\t\\t\\timg: \\\"https:\/\/kiti.ca\/wp-content\/uploads\/2020\/02\/doggy.jpg\\\",\\n\\t\\t\\tid: 2\\n\\t\\t},\\n\\t\\t{\\n\\t\\t\\tname: \\\"3\\\",\\n\\t\\t\\timg: \\\"https:\/\/kiti.ca\/wp-content\/uploads\/2020\/02\/hedgehog.jpg\\\",\\n\\t\\t\\tid: 3\\n\\t\\t},\\n\\t\\t{\\n\\t\\t\\tname: \\\"4\\\",\\n\\t\\t\\timg: \\\"https:\/\/kiti.ca\/wp-content\/uploads\/2020\/02\/kitty.jpg\\\",\\n\\t\\t\\tid: 4\\n\\t\\t}, \\n\\t\\t{\\n\\t\\t\\tname: \\\"5\\\",\\n\\t\\t\\timg: \\\"https:\/\/kiti.ca\/wp-content\/uploads\/2020\/02\/squirrel.jpg\\\",\\n\\t\\t\\tid: 5\\n\\t\\t},\\n\\t\\t{\\n\\t\\t\\tname: \\\"6\\\",\\n\\t\\t\\timg: \\\"https:\/\/kiti.ca\/wp-content\/uploads\/2020\/02\/weasel.jpg\\\",\\n\\t\\t\\tid: 6\\n\\t\\t},\\n\\t\\t\\n\\t\\t{\\n\\t\\t\\tname: \\\"7\\\",\\n\\t\\t\\timg: \\\"https:\/\/kiti.ca\/wp-content\/uploads\/2020\/02\/baby-deer.jpg\\\",\\n\\t\\t\\tid: 7\\n\\t\\t},\\n\\t\\t{\\n\\t\\t\\tname: \\\"8\\\",\\n\\t\\t\\timg: \\\"https:\/\/kiti.ca\/wp-content\/uploads\/2020\/02\/bach-stamp.jpg\\\",\\n\\t\\t\\tid: 8\\n\\t\\t}, \\n\\t\\t{\\n\\t\\t\\tname: \\\"9\\\",\\n\\t\\t\\timg: \\\"https:\/\/kiti.ca\/wp-content\/uploads\/2020\/02\/mozart-stamp.jpg\\\",\\n\\t\\t\\tid: 9\\n\\t\\t}, \\n\\t\\t\\n\\t\\t\/* *\/\\n\\t];\\n    \\n\\tMemory.init(cards);\\n\\n    })();\\n\\n});  \\n    \\n<\/script>\",\r\n      \"align\": \"top\",\r\n      \"row\": 0,\r\n      \"col\": 0,\r\n      \"colspan\": 3,\r\n      \"offsetx\": 0,\r\n      \"offsety\": 0,\r\n      \"spaceabove\": 0,\r\n      \"spacebelow\": 0,\r\n      \"yvel\": 1,\r\n      \"push\": 0,\r\n      \"relid\": 4,\r\n      \"frameOverflow\": \"\"\r\n    },\r\n    {\r\n      \"type\": \"text\",\r\n      \"cont\": \"<p class=\\\"_title\\\" style=\\\"text-align: center;\\\"><span style=\\\"font-size: 20vw;\\\"><span style=\\\"color: #6a9e70;\\\">bon!<\/span><br \/><\/span><\/p>\",\r\n      \"align\": \"top\",\r\n      \"row\": 1,\r\n      \"col\": 0,\r\n      \"colspan\": 3,\r\n      \"offsetx\": 0,\r\n      \"offsety\": 0,\r\n      \"spaceabove\": 0,\r\n      \"spacebelow\": 0,\r\n      \"yvel\": 1,\r\n      \"push\": 0,\r\n      \"relid\": 5,\r\n      \"frameOverflow\": \"\",\r\n      \"classes\": \"modal-overlay\"\r\n    }\r\n  ]\r\n}","phonegrid":"{\r\n  \"colCount\": 1,\r\n  \"colGutter\": \"1\",\r\n  \"rowGutters\": [\r\n    \"5\"\r\n  ],\r\n  \"frameMargin\": \"5\",\r\n  \"topFrameMargin\": \"5\",\r\n  \"bottomFrameMargin\": \"5\",\r\n  \"rowAttrs\": [\r\n    [],\r\n    []\r\n  ],\r\n  \"bgColor\": null,\r\n  \"cont\": [\r\n    {\r\n      \"type\": \"html\",\r\n      \"cont\": \"<div class=\\\"wrap\\\"><div class=\\\"game\\\"> <\/div><\/div>\\n\\n\/* memory game *\/\\n<style>\\n* {\\n    box-sizing: border-box;\\n}\\n.wrap {\\n  position: relative;\\n  height: 100%;\\n}\\n\\n.game {\\n  -webkit-transform-style: preserve-3d;\\n          transform-style: preserve-3d;\\n  -webkit-perspective: 500px;\\n          perspective: 500px;\\n  min-height: 100%;\\n  height: 100%;\\n}\\n\\n\/* animate  match *\/\\n@-webkit-keyframes matchAnim {\\n  0% {\\n     opacity: 0;\\n  }\\n  100% {\\n     opacity: 1;\\n  }\\n} \\n@keyframes matchAnim {\\n  0% {\\n     opacity: 0;\\n  }\\n  100% {\\n     opacity: 1;\\n  }\\n} \\n\\n\\n.card {\\n  float: left;\\n  width: 16vw;\\n  height: 16vw;\\n  padding: 1px;\\n  text-align: center;\\n  display: block;\\n  -webkit-perspective: 500px;\\n          perspective: 500px;\\n  position: relative;\\n  cursor: pointer;\\n  z-index: 50;\\n  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);\\n}\\n.card .inside {\\n  width: 100%;\\n  height: 100%;\\n  display: block;\\n  -webkit-transform-style: preserve-3d;\\n          transform-style: preserve-3d;\\n  transition: .5s ease-in-out;\\n}\\n.card .inside.picked, .card .inside.matched {\\n  -webkit-transform: rotateY(180deg);\\n          transform: rotateY(180deg);\\n}\\n.card .inside.matched {\\n  -webkit-animation: 1s matchAnim ease-in-out;\\n          animation: 1s matchAnim ease-in-out;\\n  -webkit-animation-delay: .5s;\\n          animation-delay: .5s;\\n}\\n.card .front, .card .back {\\n  -webkit-backface-visibility: hidden;\\n          backface-visibility: hidden;\\n  position: absolute;\\n  top: 0;\\n  left: 0;\\n  width: 100%;\\n  height: 100%;\\n  padding: 0px;\\n}\\n\\n.card .front img, .card .back img {\\n  max-width: 100%;\\n  display: block;\\n  margin: 0 auto;\\n  max-height: 100%;\\n}\\n.card .front {\\n  -webkit-transform: rotateY(-180deg);\\n          transform: rotateY(-180deg);\\n}\\n.card .back {\\n  -webkit-transform: rotateX(0);\\n          transform: rotateX(0);\\n}\\n\\n.modal-overlay {\\n  display: none;\\n  position: fixed;\\n  top: 100px;\\n  left: 0;\\n  width: 100vw;\\n  height: 100vh;\\n}\\n\\n@media (max-width: 600px){\\n    .card {\\n    float: left;\\n    width: 32vw;\\n    height: 32vw;\\n    }\\n    \\n}\\n<\/style>\\n\\n\\n<!-- memory game -->\\n<script>\\nwindow.laytheme.on(\\\"newpageshown\\\", function(layoutObj, type, obj){\\n\\n(function(){\\n\\tvar Memory = {\\n\\t\\tinit: function(cards){\\n\\t\\t\\tthis.$game = jQuery(\\\".game\\\");\\n\\t\\t\\tthis.$modal = jQuery(\\\".modal\\\");\\n\\t\\t\\tthis.$overlay = jQuery(\\\".modal-overlay\\\");\\n\\t\\t\\tthis.$restartButton = jQuery(\\\".button-play\\\");\\n\\t\\t\\tthis.cardsArray = jQuery.merge(cards, cards);\\n\\t\\t\\tthis.shuffleCards(this.cardsArray);\\n\\t\\t\\tthis.setup();\\n\\t\\t},\\n\\n\\t\\tshuffleCards: function(cardsArray){\\n\\t\\t\\tthis.$cards = jQuery(this.shuffle(this.cardsArray));\\n\\t\\t},\\n\\n\\t\\tsetup: function(){\\n\\t\\t\\tthis.html = this.buildHTML();\\n\\t\\t\\tthis.$game.html(this.html);\\n\\t\\t\\tthis.$memoryCards = jQuery(\\\".card\\\");\\n\\t\\t\\tthis.paused = false;\\n     \\tthis.guess = null;\\n\\t\\t\\tthis.binding();\\n\\t\\t},\\n\\n\\t\\tbinding: function(){\\n\\t\\t\\tthis.$memoryCards.on(\\\"click\\\", this.cardClicked);\\n\\t\\t\\tthis.$restartButton.on(\\\"click\\\", jQuery.proxy(this.reset, this));\\n\\t\\t},\\n\\t\\t\/\/ kinda messy but hey\\n\\t\\tcardClicked: function(){\\n\\t\\t\\tvar _ = Memory;\\n\\t\\t\\tvar $card = jQuery(this);\\n\\t\\t\\tif(!_.paused && !$card.find(\\\".inside\\\").hasClass(\\\"matched\\\") && !$card.find(\\\".inside\\\").hasClass(\\\"picked\\\")){\\n\\t\\t\\t\\t$card.find(\\\".inside\\\").addClass(\\\"picked\\\");\\n\\t\\t\\t\\tif(!_.guess){\\n\\t\\t\\t\\t\\t_.guess = jQuery(this).attr(\\\"data-id\\\");\\n\\t\\t\\t\\t} else if(_.guess == jQuery(this).attr(\\\"data-id\\\") && !jQuery(this).hasClass(\\\"picked\\\")){\\n\\t\\t\\t\\t\\tjQuery(\\\".picked\\\").addClass(\\\"matched\\\");\\n\\t\\t\\t\\t\\t_.guess = null;\\n\\t\\t\\t\\t} else {\\n\\t\\t\\t\\t\\t_.guess = null;\\n\\t\\t\\t\\t\\t_.paused = true;\\n\\t\\t\\t\\t\\tsetTimeout(function(){\\n\\t\\t\\t\\t\\t\\tjQuery(\\\".picked\\\").removeClass(\\\"picked\\\");\\n\\t\\t\\t\\t\\t\\tMemory.paused = false;\\n\\t\\t\\t\\t\\t}, 600);\\n\\t\\t\\t\\t}\\n\\t\\t\\t\\tif(jQuery(\\\".matched\\\").length == jQuery(\\\".card\\\").length){\\n\\t\\t\\t\\t\\t_.win();\\n\\t\\t\\t\\t}\\n\\t\\t\\t}\\n\\t\\t},\\n\\n\\t\\twin: function(){\\n\\t\\t\\tthis.paused = true;\\n\\t\\t\\tsetTimeout(function(){\\n\\t\\t\\t\\tMemory.showModal();\\n\\t\\t\\t\\tMemory.$game.fadeOut();\\n\\t\\t\\t}, 1000);\\n\\t\\t},\\n\\n\\t\\tshowModal: function(){\\n\\t\\t\\tthis.$overlay.show();\\n\\t\\t\\tthis.$modal.fadeIn(\\\"slow\\\");\\n\\t\\t},\\n\\n\\t\\thideModal: function(){\\n\\t\\t\\tthis.$overlay.hide();\\n\\t\\t\\tthis.$modal.hide();\\n\\t\\t},\\n\\n\\t\\treset: function(){\\n\\t\\t\\tthis.hideModal();\\n\\t\\t\\tthis.shuffleCards(this.cardsArray);\\n\\t\\t\\tthis.setup();\\n\\t\\t\\tthis.$game.show(\\\"slow\\\");\\n\\t\\t},\\n\\n\\t\\t\/\/ Fisher--Yates Algorithm \\n\\t\\tshuffle: function(array){\\n\\t\\t\\tvar counter = array.length, temp, index;\\n\\t   \\twhile (counter > 0) {\\n        \\tindex = Math.floor(Math.random() * counter);\\n        \\tcounter--;\\n        \\ttemp = array[counter];\\n        \\tarray[counter] = array[index];\\n        \\tarray[index] = temp;\\n\\t    \\t}\\n\\t    \\treturn array;\\n\\t\\t},\\n\\n\\t\\tbuildHTML: function(){\\n\\t\\t\\tvar frag = '';\\n\\t\\t\\tthis.$cards.each(function(k, v){\\n\\t\\t\\t\\tfrag += '<div class=\\\"card\\\" data-id=\\\"'+ v.id +'\\\"><div class=\\\"inside\\\">\\\\\\n\\t\\t\\t\\t<div class=\\\"front\\\"><img src=\\\"'+ v.img +'\\\"\\\\\\n\\t\\t\\t\\talt=\\\"'+ v.name +'\\\" \/><\/div>\\\\\\n\\t\\t\\t\\t<div class=\\\"back\\\"><img src=\\\"https:\/\/kiti.ca\/wp-content\/uploads\/2021\/05\/KITI-card.png\\\"\\\\><\/div><\/div>\\\\\\n\\t\\t\\t\\t<\/div>';\\n\\t\\t\\t});\\n\\t\\t\\treturn frag;\\n\\t\\t}\\n\\t};\\n\\n\\tvar cards = [\\n\\t\\t{\\n\\t\\t\\tname: \\\"1\\\",\\n\\t\\t\\timg: \\\"https:\/\/kiti.ca\/wp-content\/uploads\/2020\/02\/doe.jpg\\\",\\n\\t\\t\\tid: 1,\\n\\t\\t},\\n\\t\\t\\n\\t\\t\\n\\t\\t\\n\\t\\t{\\n\\t\\t\\tname: \\\"2\\\",\\n\\t\\t\\timg: \\\"https:\/\/kiti.ca\/wp-content\/uploads\/2020\/02\/doggy.jpg\\\",\\n\\t\\t\\tid: 2\\n\\t\\t},\\n\\t\\t{\\n\\t\\t\\tname: \\\"3\\\",\\n\\t\\t\\timg: \\\"https:\/\/kiti.ca\/wp-content\/uploads\/2020\/02\/hedgehog.jpg\\\",\\n\\t\\t\\tid: 3\\n\\t\\t},\\n\\t\\t{\\n\\t\\t\\tname: \\\"4\\\",\\n\\t\\t\\timg: \\\"https:\/\/kiti.ca\/wp-content\/uploads\/2020\/02\/kitty.jpg\\\",\\n\\t\\t\\tid: 4\\n\\t\\t}, \\n\\t\\t{\\n\\t\\t\\tname: \\\"5\\\",\\n\\t\\t\\timg: \\\"https:\/\/kiti.ca\/wp-content\/uploads\/2020\/02\/squirrel.jpg\\\",\\n\\t\\t\\tid: 5\\n\\t\\t},\\n\\t\\t{\\n\\t\\t\\tname: \\\"6\\\",\\n\\t\\t\\timg: \\\"https:\/\/kiti.ca\/wp-content\/uploads\/2020\/02\/weasel.jpg\\\",\\n\\t\\t\\tid: 6\\n\\t\\t},\\n\\t\\t\\n\\t\\t{\\n\\t\\t\\tname: \\\"7\\\",\\n\\t\\t\\timg: \\\"https:\/\/kiti.ca\/wp-content\/uploads\/2020\/02\/baby-deer.jpg\\\",\\n\\t\\t\\tid: 7\\n\\t\\t},\\n\\t\\t{\\n\\t\\t\\tname: \\\"8\\\",\\n\\t\\t\\timg: \\\"https:\/\/kiti.ca\/wp-content\/uploads\/2020\/02\/bach-stamp.jpg\\\",\\n\\t\\t\\tid: 8\\n\\t\\t}, \\n\\t\\t{\\n\\t\\t\\tname: \\\"9\\\",\\n\\t\\t\\timg: \\\"https:\/\/kiti.ca\/wp-content\/uploads\/2020\/02\/mozart-stamp.jpg\\\",\\n\\t\\t\\tid: 9\\n\\t\\t}, \\n\\t\\t\\n\\t\\t\/* *\/\\n\\t];\\n    \\n\\tMemory.init(cards);\\n\\n    })();\\n\\n});  \\n    \\n<\/script>\",\r\n      \"align\": \"bottom\",\r\n      \"row\": 0,\r\n      \"col\": 0,\r\n      \"colspan\": 1,\r\n      \"offsetx\": 0,\r\n      \"offsety\": 0,\r\n      \"spaceabove\": 0,\r\n      \"spacebelow\": 0,\r\n      \"yvel\": 1,\r\n      \"push\": 0,\r\n      \"relid\": 4,\r\n      \"frameOverflow\": \"\"\r\n    },\r\n    {\r\n      \"type\": \"text\",\r\n      \"cont\": \"<p class=\\\"_title\\\" style=\\\"text-align: center;\\\"><span style=\\\"font-size: 20vw;\\\"><span style=\\\"color: #6a9e70;\\\">bon!<\/span><br \/><\/span><\/p>\",\r\n      \"align\": \"bottom\",\r\n      \"row\": 1,\r\n      \"col\": 0,\r\n      \"colspan\": 1,\r\n      \"offsetx\": 0,\r\n      \"offsety\": 0,\r\n      \"spaceabove\": 0,\r\n      \"spacebelow\": 0,\r\n      \"yvel\": 1,\r\n      \"push\": 0,\r\n      \"relid\": 5,\r\n      \"frameOverflow\": \"\",\r\n      \"classes\": \"modal-overlay\"\r\n    }\r\n  ]\r\n}","_links":{"self":[{"href":"https:\/\/kiti.ca\/ja\/wp-json\/wp\/v2\/pages\/149","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/kiti.ca\/ja\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/kiti.ca\/ja\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/kiti.ca\/ja\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/kiti.ca\/ja\/wp-json\/wp\/v2\/comments?post=149"}],"version-history":[{"count":0,"href":"https:\/\/kiti.ca\/ja\/wp-json\/wp\/v2\/pages\/149\/revisions"}],"wp:attachment":[{"href":"https:\/\/kiti.ca\/ja\/wp-json\/wp\/v2\/media?parent=149"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}