{"id":12509,"date":"2022-09-03T10:02:01","date_gmt":"2022-09-03T14:02:01","guid":{"rendered":"https:\/\/thegiveawayguy.biz\/?page_id=12509"},"modified":"2024-05-15T09:00:46","modified_gmt":"2024-05-15T13:00:46","slug":"clicktrakr","status":"publish","type":"page","link":"https:\/\/thegiveawayguy.biz\/clicktrakr\/","title":{"rendered":"Clicktrakr"},"content":{"rendered":"<p><!--Start of Tawk.to Script-->[tcb-script type=&#8221;text\/javascript&#8221;]var Tawk_API=Tawk_API||{}, Tawk_LoadStart=new Date();(function(){var s1=document.createElement(&#8220;script&#8221;),s0=document.getElementsByTagName(&#8220;script&#8221;)[0];s1.async=true;s1.src=&#8217;https:\/\/embed.tawk.to\/599e492b4fe3a1168ead97eb\/default&#8217;;s1.charset=&#8217;UTF-8&#8242;;s1.setAttribute(&#8216;crossorigin&#8217;,&#8217;*&#8217;);s0.parentNode.insertBefore(s1,s0);})();[\/tcb-script]<!--End of Tawk.to Script--><\/p>\n<p style=\"text-align: center;\" tabindex=\"0\"><strong>Track, Manage And Control Your&nbsp;<\/strong><strong>Traffic With ClickTrakr<\/strong><\/p>\n<div\r\n    class=\"stealth-auto-player-wrapper\"\r\n    >\r\n    <div class=\"stealth-auto-player-inner stealth-auto-player-inner-16-by-9\">\r\n        <div id=\"stealth-auto-player\"><\/div>\r\n    <\/div>\r\n    <div class=\"stealth-auto-player-overlay\">\r\n        <div class=\"stealth-auto-player-overlay-background\"><\/div>\r\n        <div class=\"stealth-auto-player-overlay-content\">\r\n                                    <span class=\"animated infinite bounce\" style=\"display: inline-block;\">\r\n                    Click to un-mute!                <\/span>\r\n                    <\/div>\r\n    <\/div>\r\n<\/div>\r\n\r\n<script>\r\n    (function(config){\r\n        var YouTubeAPI = function(){\r\n            var me = this;\r\n            me.player = false;\r\n\r\n            function play(id, muted=false){\r\n                me.player = new YT.Player(\r\n                    'stealth-auto-player', {\r\n                        videoId: id,\r\n                        playerVars: {\r\n                            autoplay: 1,\r\n                            controls: 1,\r\n                            showinfo: 0,\r\n                            modestbranding: 1,\r\n                            rel: 0,\r\n                            loop: 0,\r\n                            fs: 0,\r\n                            cc_load_policy: 0,\r\n                            iv_load_policy: 3,\r\n                            autohide: 1\r\n                        },\r\n                        events: {\r\n                            onReady: function(e) {\r\n                                if(muted) {\r\n                                    e.target.mute();\r\n                                }else{\r\n                                    e.target.unMute();\r\n                                }\r\n                            }\r\n                        }\r\n                    }\r\n                );\r\n            }\r\n\r\n            function unmute(){\r\n                me.player.unMute();\r\n            }\r\n            function destroy(){\r\n                if(me.player) {\r\n                    me.player.destroy();\r\n                    me.player = false;\r\n                }\r\n            }\r\n            me.play = play;\r\n            me.unmute = unmute;\r\n            me.destroy = destroy;\r\n\r\n            return me;\r\n        };\r\n\r\n        var VimeoAPI = function(){\r\n            var me = this;\r\n            me.player = false;\r\n\r\n            function play(id, muted=false){\r\n                var iframe = document.createElement('iframe');\r\n                iframe.style.border = 0;\r\n                iframe.setAttribute('allow', 'autoplay; fullscreen');\r\n                iframe.src = 'https:\/\/player.vimeo.com\/video\/' + id + '?autoplay=1&muted=' + (muted ? '1' : '0');\r\n                document.getElementById('stealth-auto-player').appendChild(iframe);\r\n\r\n                me.player = new Vimeo.Player(iframe);\r\n            }\r\n\r\n            function unmute(){\r\n                me.player.setVolume(1);\r\n            }\r\n\r\n            function destroy(){\r\n                if(me.player) {\r\n                    me.player.destroy();\r\n                    me.player = false;\r\n                }\r\n            }\r\n            me.play = play;\r\n            me.unmute = unmute;\r\n            me.destroy = destroy;\r\n\r\n            return me;\r\n        };\r\n\r\n        var ImageAPI = function(){\r\n            var me = this;\r\n            me.img = false;\r\n\r\n            function play(url){\r\n                var img = document.createElement('img');\r\n                img.src = url;\r\n                document.getElementById('stealth-auto-player').appendChild(img);\r\n                me.img = img;\r\n            }\r\n\r\n            function unmute(){\r\n            }\r\n\r\n            function destroy(){\r\n                if(me.img) {\r\n                    me.img.remove();\r\n                    me.img = false;\r\n                }\r\n            }\r\n\r\n            me.play = play;\r\n            me.unmute = unmute;\r\n            me.destroy = destroy;\r\n\r\n            return me;\r\n        };\r\n\r\n        var youtube_api = new YouTubeAPI();\r\n        var vimeo_api = new VimeoAPI();\r\n        var image_api = new ImageAPI();\r\n\r\n        var current_api = false;\r\n        var autoplay_allowed = null;\r\n\r\n        function play(video, muted){\r\n            youtube_api.destroy();\r\n            vimeo_api.destroy();\r\n\r\n            if(video.type === 'youtube'){\r\n                youtube_api.play(video.id, muted);\r\n                current_api = youtube_api;\r\n            }\r\n\r\n            if(video.type === 'vimeo'){\r\n                vimeo_api.play(video.id, muted);\r\n                current_api = vimeo_api;\r\n            }\r\n\r\n            if(video.type === 'image'){\r\n                image_api.play(video.url);\r\n                current_api = image_api;\r\n            }\r\n        }\r\n\r\n        function click(){\r\n            if(config.action === 'unmute'\r\n                && config.video.type === config.placeholder.type\r\n                && config.video.id === config.placeholder.id) {\r\n\r\n                current_api.unmute();\r\n            }else{\r\n                play(config.video, false);\r\n            }\r\n\r\n            if(config.target === 'all'){\r\n                target = document;\r\n            }else{\r\n                target = document.querySelector('.stealth-auto-player-overlay');\r\n            }\r\n            target.removeEventListener('click', click);\r\n            target.removeEventListener('contextmenu', click);\r\n            target.removeEventListener('keydown', click);\r\n            document.querySelector('.stealth-auto-player-overlay').remove();\r\n        }\r\n\r\n        function is_mobile() {\r\n            var mobile = false;\r\n            (function (a) {\r\n                if (\/(android|bb\\d+|meego).+mobile|avantgo|bada\\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino\/i.test(a) || \/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-\/i.test(a.substr(0, 4))) mobile = true;\r\n            })(navigator.userAgent || navigator.vendor || window.opera);\r\n\r\n            return mobile;\r\n        }\r\n\r\n        function ready(){\r\n            if(autoplay_allowed || is_mobile()){\r\n                play(config.video, false);\r\n                document.querySelector('.stealth-auto-player-overlay').remove();\r\n            }else{\r\n                play(config.placeholder, true);\r\n                document.querySelector('.stealth-auto-player-overlay').classList.add('stealth-auto-player-overlay-show');\r\n                if(config.target === 'all'){\r\n                    target = document;\r\n                }else{\r\n                    target = document.querySelector('.stealth-auto-player-overlay');\r\n                }\r\n                target.addEventListener('click', click);\r\n                target.addEventListener('contextmenu', click);\r\n                target.addEventListener('keydown', click);\r\n            }\r\n        }\r\n\r\n        function check_ready(){\r\n            var youtube = false;\r\n            try{\r\n                youtube = window.YT.loaded === 1;\r\n            }catch(e){}\r\n\r\n            var vimeo = false\r\n            try {\r\n                vimeo = !!Vimeo.Player;\r\n            }catch(e){}\r\n\r\n            if(youtube && vimeo){\r\n                clearInterval(check_ready.interval);\r\n                ready();\r\n            }\r\n        }\r\n\r\n        function detect_autoplay(){\r\n            var audio = new Audio('data:audio\/ogg;base64,T2dnUwACAAAAAAAAAAANawAAAAAAAMXfMzMBHgF2b3JiaXMAAAAAAUSsAAAAAAAAAHcBAAAAAAC4AU9nZ1MAAAAAAAAAAAAADWsAAAEAAADYhQ0dEDv\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/8kDdm9yYmlzKwAAAFhpcGguT3JnIGxpYlZvcmJpcyBJIDIwMTIwMjAzIChPbW5pcHJlc2VudCkAAAAAAQV2b3JiaXMpQkNWAQAIAAAAMUwgxYDQkFUAABAAAGAkKQ6TZkkppZShKHmYlEhJKaWUxTCJmJSJxRhjjDHGGGOMMcYYY4wgNGQVAAAEAIAoCY6j5klqzjlnGCeOcqA5aU44pyAHilHgOQnC9SZjbqa0pmtuziklCA1ZBQAAAgBASCGFFFJIIYUUYoghhhhiiCGHHHLIIaeccgoqqKCCCjLIIINMMumkk0466aijjjrqKLTQQgsttNJKTDHVVmOuvQZdfHPOOeecc84555xzzglCQ1YBACAAAARCBhlkEEIIIYUUUogppphyCjLIgNCQVQAAIACAAAAAAEeRFEmxFMuxHM3RJE\/yLFETNdEzRVNUTVVVVVV1XVd2Zdd2ddd2fVmYhVu4fVm4hVvYhV33hWEYhmEYhmEYhmH4fd\/3fd\/3fSA0ZBUAIAEAoCM5luMpoiIaouI5ogOEhqwCAGQAAAQAIAmSIimSo0mmZmquaZu2aKu2bcuyLMuyDISGrAIAAAEABAAAAAAAoGmapmmapmmapmmapmmapmmapmmaZlmWZVmWZVmWZVmWZVmWZVmWZVmWZVmWZVmWZVmWZVmWZVmWZVlAaMgqAEACAEDHcRzHcSRFUiTHciwHCA1ZBQDIAAAIAEBSLMVyNEdzNMdzPMdzPEd0RMmUTM30TA8IDVkFAAACAAgAAAAAAEAxHMVxHMnRJE9SLdNyNVdzPddzTdd1XVdVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVgdCQVQAABAAAIZ1mlmqACDOQYSA0ZBUAgAAAABihCEMMCA1ZBQAABAAAiKHkIJrQmvPNOQ6a5aCpFJvTwYlUmye5qZibc84555xszhnjnHPOKcqZxaCZ0JpzzkkMmqWgmdCac855EpsHranSmnPOGeecDsYZYZxzzmnSmgep2Vibc85Z0JrmqLkUm3POiZSbJ7W5VJtzzjnnnHPOOeecc86pXpzOwTnhnHPOidqba7kJXZxzzvlknO7NCeGcc84555xzzjnnnHPOCUJDVgEAQAAABGHYGMadgiB9jgZiFCGmIZMedI8Ok6AxyCmkHo2ORkqpg1BSGSeldILQkFUAACAAAIQQUkghhRRSSCGFFFJIIYYYYoghp5xyCiqopJKKKsoos8wyyyyzzDLLrMPOOuuwwxBDDDG00kosNdVWY4215p5zrjlIa6W11lorpZRSSimlIDRkFQAAAgBAIGSQQQYZhRRSSCGGmHLKKaegggoIDVkFAAACAAgAAADwJM8RHdERHdERHdERHdERHc\/xHFESJVESJdEyLVMzPVVUVVd2bVmXddu3hV3Ydd\/Xfd\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\/CgcA\/wcbVkc4KRoLLDRkJQAQDgAAGMOYc445Bh2EhinopIQOQgihQ0o5KCWEUEopKXNOSkqlpJRaSplzUlIqJaWWUuogpNRaSi211loHJaXWUmqttdY6CKW01FprrbXYQUgppdZaiy3GUEpKrbXYYow1hlJSaq3F2GKsMaTSUmwtxhhjrKGU1lprMcYYay0ptdZijLXGWmtJqbXWYos11loLAOBucACASLBxhpWks8LR4EJDVgIAIQEABEKMOeeccxBCCCFSijHnoIMQQgghREox5hx0EEIIIYSMMeeggxBCCCGEkDHmHHQQQgghhBA65xyEEEIIoYRSSuccdBBCCCGUUELpIIQQQgihhFJKKR2EEEIooYRSSiklhBBCCaWUUkoppYQQQgihhBJKKaWUEEIIpZRSSimllBJCCCGUUkoppZRSQgihlFBKKaWUUkoIIYRSSimllFJKCSGEUEoppZRSSikhhBJKKaWUUkoppQAAgAMHAIAAI+gko8oibDThwgNQaMhKAIAMAABx2GrrKdbIIMWchJZLhJByEGIuEVKKOUexZUgZxRjVlDGlFFNSa+icYoxRT51jSjHDrJRWSiiRgtJyrLV2zAEAACAIADAQITOBQAEUGMgAgAOEBCkAoLDA0DFcBATkEjIKDArHhHPSaQMAEITIDJGIWAwSE6qBomI6AFhcYMgHgAyNjbSLC+gywAVd3HUghCAEIYjFARSQgIMTbnjiDU+4wQk6RaUOAgAAAAAAAQAeAACSDSAiIpo5jg6PD5AQkRGSEpMTlAAAAAAA4AGADwCAJAWIiIhmjqPD4wMkRGSEpMTkBCUAAAAAAAAAAAAICAgAAAAAAAQAAAAICE9nZ1MABIAlAAAAAAAADWsAAAIAAAB4KuZFCySrr6aoqrS5tcDA5BRH8Kep9ZXVngZmRAmseunEi\/Xe\/9NtOzcy6IxUwqKvwFIF2mX8uNUPBAAwAFTqV2ktmBnAppWdTIfu+HQwJTsPYLRm3f\/ft81AWk6W+t0VEajwUO+1PlcH2897o\/EJOBUDyOtFgY6t79pmAg+VArHfE0sZu7M00VZgyxg\/VD531LqLYNfJ1DQJzxFPyTT2tl\/UgTb9N4dU9ec5JRxyn48jtA7\/sCI7ymr5fJaR4SrirZydGQnGl31q1cJq0oeuQhxwkyq+SOnMRY60aXcAnmW8b8d74QBAr5WTWGWjVUwBACCBCBovWgi\/7rPAR\/Ahn+fvtiB8nx8i5TAcVK8gzmCbNv9bHfBWCBfOgUA3CzBk31iQLh8KX35YWespl1gyHIW0+Y5Cq6+gj9pO38lTvPjAgvi5LZ7k1uK67Ae79GBpS0urucv04d7nTu3cU0aR0TLqrfFFI53INRvmQzS7q+DiynqS7od77naprKT5wyAC1s9EEav67FypomnZAN5lfF36NwgAIGj0q2QTYscMAAzSfN5hn5UtLH9YvWOSMz47i4NkTZtRA2lT4GOoYHsTxLumvEidusBhAwmdBy77yGb\/pczKisiIAyboh+GvosU9T2lOoxkvny+Kugn1zrNS66QxIzAVBGKQVXa\/9Mk\/jpSMAtc+tu+QF+g+iV5xT1\/XcoaIeeksMbV2mfVN\/UkEqKD68dpBMu6\/\/7rejbEohG66mgG+ZXxt+ztwACCcVLmK2glmAAAd\/oAxeV9e9hN1p\/tc2g8dYr53pXyAgZeH1ig3ag11b9Jr\/BTdPHYM6QXxJRXqMsYb2YZZebueUSyIV2v3yG24ZhZnNJ\/Dk6CDE2+OiEqmcbqCbYJnaCQ8pkYigDGly9TFDDFPn+b9fMBtwyrSmqcUVAgzt3bY1VCjW80NeYl7vOO+wtcOuhDbmoxl\/908C7KiU0z9gwneZXxf2rcIAGAAqFSW\/agFKwawaWUnBxMbUxLuhlTZtAkA2uSyrx+bLpZystTvGhHD\/VAvaH1ONqTlXSN+Ak7FQMrrohBheaWjgF9UIPZ7OJWxOzOkPpvS0WWofO6oH1wEu9WFnbXtpBFUhMbeRwuDcJ6+E2sMkx7PkZhQfAJHaJ3+hxXZUWn5uCbDR2xl9ZmR4Piyj22lsJoYsSEBarlnZnyRqHCRI23aHZ5lfF7aHQIAWAL0\/EqqtFOKKQCERKgRDwNmlpc60PZ1mdBn+oNLbm3Ft\/E4XoRecegK\/WlVyCo0zVIkUV9l0y06WfI0zWcZXd9Y43GUjZvbcwo9y4DaJb4PqS+r7Q5zoXzVRoTaTmzzhgeL82l7LZ7k1uhXBocL6EFkaXbDPZeTltvXWvWNuOzY6S9QJiBxZIbvvIcAml0qWEikatp8gdX7utecThERlpn+C6vMrv2u0pumAb5lfF76BwIAOAATqKqq0opZAYDc+Cn71OVxbU3ke\/19GIZrB3Q42JyU9V5u1OiDfhXsfJAo3lSz7kW+7SKcZ2buPwB3UA0DCLPk5P39pfiOU1854yVIP841MgDhqtFTevdCB9Bg\/fWrIe2hoB6pP07SkRReHxbyFA3pCXrRNTrhmkid2pWYc8o\/TkorN+2tvfqtYAFKzzcWWcD7cjELf\/aWSpa\/Gu6H+qSln9sbbKuZMzK58ONUwmwPnmV8nO0OAQCcq\/MdQLWVuNJKMwMAf3IvtUbzMc3u7Kq1JzK5OSBvK9u2n83TSv5GUaSjrCzhHEm58TGgWgYfmYVROp69kuWId2ZoRTNRqIiktu7lge6gL5rIogFTiV7bWz\/Aq7o1lJp\/8cI6KH8E7lzPzLDEJLFpaRz0h0uHsrt9XSYhdgBtqhvWkrY9jQJCuGbRUwuVatzm4m4\/a4M5FyTRnrCvrKKphfbBjfnlIuw5158zAZ5lvKbyZSygAM7iPLaXKxUgO4ZjEpMSigHQdy\/Ck\/XPDM1d\/vrYtvHe5d9f7T3pVh2OLBRJYZDtvy9taNMb2tll9eCPP5JMpKbWvbsPlO1Ph\/Sb\/z9njzaWiWm6u1sEBGQCaO3gpFRgPOz\/V1CL6nfL8LaXv02HTlT2MDFfkSA2SzMcaFkEQk9PbjaWGsAZ\/t9A0UGFVL1B5yxdSrwGwNd+YwkhJC449cFiAetL0cemzUmDwswMRRYqDJaWLX93AL5lfLb0k5sAcSbDBPbxQwSAcZzWKEJaOQqg2vhg7tODr4e4vPjvv\/9euZSV\/S+Pmx6XTT6tk8MrvlxxYH8cw+cQMPzHhU9YXBpVhNw\/YuQ6NnenwJc8SNM\/uHRHxVVFWVXrj8ePY7gv3Z0BRi0usgYUH6zzEgyT9Ku\/\/\/fX6yoAua\/X68eP1\/V3ijwFJg\/7OFUUKHw\/U5mioAhFqv3ddWsQgJcbE7+aTDGeCShTZYoBcDoO4KYvSy\/Aa3hoDGCDDQ==');\r\n            var promise = audio.play();\r\n            if(promise && promise.finally) {\r\n                promise.then(function () {\r\n                    \/\/TODO: swap back after testing\r\n                    autoplay_allowed = true;\r\n                }).catch(function (reason) {\r\n                    autoplay_allowed = false;\r\n                }).finally(function () {\r\n                    check_ready.interval = setInterval(check_ready, 10);\r\n                });\r\n            }else{\r\n                \/\/edge...\r\n                autoplay_allowed = true;\r\n                check_ready.interval = setInterval(check_ready, 10);\r\n            }\r\n        }\r\n\r\n        detect_autoplay();\r\n    })({\"video\":{\"type\":\"vimeo\",\"id\":\"746196971\"},\"placeholder\":{\"type\":\"vimeo\",\"id\":\"746196971\"},\"target\":\"all\",\"action\":\"unmute\"});\r\n\r\n<\/script>\r\n<style>\r\n    .stealth-auto-player-wrapper {\r\n        position: relative;\r\n        margin: auto;\r\n    }\r\n\r\n    .stealth-auto-player-inner {\r\n\r\n        height: 0;\r\n        overflow: hidden;\r\n        max-width: 100%;\r\n        background-color:black;\r\n    }\r\n\r\n    .stealth-auto-player-inner-16-by-9 {\r\n        padding-bottom: 56.25%;\r\n    }\r\n\r\n    .stealth-auto-player-inner-4-by-3 {\r\n        padding-bottom: 75%;\r\n    }\r\n\r\n    .stealth-auto-player-inner iframe,\r\n    .stealth-auto-player-inner object,\r\n    .stealth-auto-player-inner embed {\r\n        position: absolute;\r\n        top: 0;\r\n        left: 0;\r\n        width: 100%;\r\n        height: 100%;\r\n    }\r\n\r\n    .stealth-auto-player-inner, .stealth-auto-player-inner iframe {\r\n        line-height: 0;\r\n        border: 0;\r\n        margin: 0;\r\n    }\r\n    .stealth-auto-player-overlay {\r\n        display: none;\r\n        position: absolute;\r\n        color: #ffffff;\r\n        top: 0;\r\n        left: 0;\r\n        width: 100%;\r\n        height: 100%;\r\n        flex-direction: column;\r\n    }\r\n\r\n    .stealth-auto-player-overlay-background {\r\n        position: absolute;\r\n        background-color: #000000;\r\n        opacity: 0.8;\r\n        top: 0;\r\n        left: 0;\r\n        width: 100%;\r\n        height: 100%;\r\n    }\r\n    .stealth-auto-player-overlay-show {\r\n        display: flex;\r\n    }\r\n    .stealth-auto-player-overlay-content {\r\n        font-size: 32px;\r\n        font-family: 'Arial';\r\n        margin: auto 0;\r\n        text-align: center;\r\n        z-index: 10;\r\n     }\r\n    .stealth-auto-player-overlay-content > img {\r\n        max-width: 25%;\r\n        max-height: 25%;\r\n    }\r\n<\/style>\r\n\r\n<script async src=\"https:\/\/player.vimeo.com\/api\/player.js\"><\/script>\r\n<script async src=\"https:\/\/www.youtube.com\/iframe_api\"><\/script>\r\n<link rel=\"stylesheet\" type=\"text\/css\" href=\"https:\/\/thegiveawayguy.biz\/wp-content\/plugins\/stealth-auto-player\/assets\/css\/animate.css\">\n<h3 style=\"text-align: center;\" tabindex=\"0\"><strong>ClickTrakr Free Trial<\/strong><strong><\/strong><\/h3>\n<ul tabindex=\"0\">\n<li style=\"\" tabindex=\"0\"><span style=\"\" tabindex=\"0\">5 Campaigns<\/span><\/li>\n<li style=\"\" tabindex=\"0\"><span style=\"\" tabindex=\"0\">Custom Domains<\/span><\/li>\n<li style=\"\" tabindex=\"0\"><span style=\"\" tabindex=\"0\">1,000 Clicks per month<\/span><\/li>\n<li style=\"\" tabindex=\"0\"><span style=\"\" tabindex=\"0\">Bonuses<\/span><\/li>\n<\/ul>\n<p><a id=\"buynow\" tabindex=\"0\"> <\/a><\/p>\n<h3 style=\"text-align: center;\" tabindex=\"0\"><strong><span tabindex=\"0\">ClickTrakr Personal<\/span><\/strong><\/h3>\n<ul tabindex=\"0\">\n<li style=\"\" tabindex=\"0\"><span style=\"\" tabindex=\"0\"><span data-sheets-userformat=\"{&quot;2&quot;:513,&quot;3&quot;:{&quot;1&quot;:0},&quot;12&quot;:0}\" data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;     Personal Access&quot;}\" tabindex=\"0\">50 Campaigns<\/span><\/span><\/li>\n<li style=\"\" tabindex=\"0\"><span style=\"\" tabindex=\"0\"><span data-sheets-userformat=\"{&quot;2&quot;:513,&quot;3&quot;:{&quot;1&quot;:0},&quot;12&quot;:0}\" data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;     Personal Access&quot;}\" tabindex=\"0\">5 Custom Domains<\/span><\/span><\/li>\n<li style=\"\" tabindex=\"0\"><span style=\"\" tabindex=\"0\"><span data-sheets-userformat=\"{&quot;2&quot;:513,&quot;3&quot;:{&quot;1&quot;:0},&quot;12&quot;:0}\" data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;     Personal Access&quot;}\" tabindex=\"0\">100,000 Clicks per month<\/span><\/span><\/li>\n<li style=\"\" tabindex=\"0\"><span style=\"\" tabindex=\"0\">Bonuses<\/span><\/li>\n<\/ul>\n<h3 style=\"text-align: center; color: rgb(30, 74, 128) !important; --tcb-applied-color:rgb(30, 74, 128)  !important;\" tabindex=\"0\"><strong><span tabindex=\"0\">ClickTrakr Unlimited <\/span><\/strong><strong><span tabindex=\"0\"><\/span><\/strong><\/h3>\n<ul tabindex=\"0\">\n<li style=\"\" tabindex=\"0\"><span style=\"\" tabindex=\"0\">Unlimited Campaigns<\/span><\/li>\n<li style=\"\" tabindex=\"0\"><span style=\"\" tabindex=\"0\">Unlimited Custom Domains<\/span><\/li>\n<li style=\"\" tabindex=\"0\"><span style=\"\" tabindex=\"0\">Unlimited Clicks per month<\/span><\/li>\n<li style=\"\" tabindex=\"0\"><span style=\"\" tabindex=\"0\">Bonuses<\/span><\/li>\n<\/ul>\n<p><span tabindex=\"0\"><img decoding=\"async\" alt=\"\" width=\"74\" data-init-width=\"74\" height=\"74\" data-init-height=\"74\" loading=\"lazy\" src=\"https:\/\/i.imgur.com\/SpoJsDN.png\" data-width=\"74\" data-height=\"74\" tabindex=\"0\" style=\"aspect-ratio: auto 74 \/ 74;\"><\/span><\/p>\n<p style=\"text-align: center; color: rgb(0, 51, 102) !important; --tcb-applied-color:rgb(0, 51, 102)  !important;\" tabindex=\"0\"><strong>Built QR Codes<\/strong><\/p>\n<p style=\"text-align: center; color: rgb(35, 80, 125) !important; --tcb-applied-color:rgb(35, 80, 125)  !important;\" tabindex=\"0\">Generate QR Codes in one click and redirect to the short URL. Easily download the QR Code image and use it on any social media platform.<\/p>\n<p><span tabindex=\"0\"><img decoding=\"async\" alt=\"\" width=\"74\" data-init-width=\"74\" height=\"74\" data-init-height=\"74\" loading=\"lazy\" src=\"https:\/\/i.imgur.com\/JSi8S0R.png\" data-width=\"74\" data-height=\"74\" tabindex=\"0\" style=\"aspect-ratio: auto 74 \/ 74;\"><\/span><\/p>\n<p style=\"text-align: center; color: rgb(0, 51, 102) !important; --tcb-applied-color:rgb(0, 51, 102)  !important;\" tabindex=\"0\"><strong>One Click Share<\/strong><\/p>\n<p style=\"text-align: center; color: rgb(35, 80, 125) !important; --tcb-applied-color:rgb(35, 80, 125)  !important;\" tabindex=\"0\">By using the share feature you will be able to post your links on the most popular social media platforms in just one click and get that juicy extra traffic.<\/p>\n<p><span tabindex=\"0\"><img decoding=\"async\" alt=\"\" width=\"74\" data-init-width=\"74\" height=\"74\" data-init-height=\"74\" loading=\"lazy\" src=\"https:\/\/i.imgur.com\/UxoWS0Q.png\" data-width=\"74\" data-height=\"74\" tabindex=\"0\" style=\"aspect-ratio: auto 74 \/ 74;\"><\/span><\/p>\n<p style=\"text-align: center;\" tabindex=\"0\"><strong>Custom Campaign Filters<\/strong><\/p>\n<p style=\"text-align: center;\" tabindex=\"0\">Gain maximum control over the flow of your traffic, with 9 built-in filters to laser target your visitors.<\/p>\n<p style=\"text-align: center;\" tabindex=\"0\"><strong>WHY CHOOSE CLICKTRAKR?<\/strong><\/p>\n<p><span tabindex=\"0\"><img decoding=\"async\" alt=\"\" width=\"329\" data-init-width=\"329\" height=\"134\" data-init-height=\"134\" loading=\"lazy\" src=\"https:\/\/i.imgur.com\/IHyo7SG.png\" data-width=\"329\" data-height=\"134\" tabindex=\"0\" style=\"aspect-ratio: auto 329 \/ 134;\"><\/span><span tabindex=\"0\"><img decoding=\"async\" alt=\"\" width=\"201\" data-init-width=\"300\" height=\"101\" data-init-height=\"150\" loading=\"lazy\" src=\"https:\/\/i.imgur.com\/LjCb75P.png\" data-width=\"201\" data-height=\"101\" style=\"aspect-ratio: auto 300 \/ 150;\" tabindex=\"0\"><\/span><\/p>\n<p style=\"text-align: left; color: rgb(255, 255, 255) !important; --tcb-applied-color:rgb(255, 255, 255)  !important;\" tabindex=\"0\"><strong>Price<\/strong><\/p>\n<p style=\"text-align: center; color: rgb(28, 177, 46) !important; --tcb-applied-color:rgb(28, 177, 46)  !important;\" tabindex=\"0\"><strong>$15 One Time<\/strong><\/p>\n<p style=\"text-align: center;\" tabindex=\"0\"><strong>$348 annually<\/strong><\/p>\n<p style=\"text-align: left;\" tabindex=\"0\"><strong>Branded Links<\/strong><\/p>\n<p style=\"text-align: left; color: rgb(255, 255, 255) !important; --tcb-applied-color:rgb(255, 255, 255)  !important;\" tabindex=\"0\"><strong>QR Codes<\/strong><\/p>\n<p style=\"text-align: left; color: rgb(255, 255, 255) !important; --tcb-applied-color:rgb(255, 255, 255)  !important;\" tabindex=\"0\"><strong>Custom Domains<\/strong><\/p>\n<p style=\"text-align: center;\" tabindex=\"0\"><strong>Unlimited<\/strong><\/p>\n<p style=\"text-align: center;\" tabindex=\"0\"><strong>1<\/strong><\/p>\n<p style=\"text-align: left; color: rgb(255, 255, 255) !important; --tcb-applied-color:rgb(255, 255, 255)  !important;\" tabindex=\"0\"><strong>URL Sharing<\/strong><\/p>\n<p style=\"text-align: center; color: rgb(28, 177, 46) !important; --tcb-applied-color:rgb(28, 177, 46)  !important;\" tabindex=\"0\"><strong>+40 Social Media Platforms<\/strong><\/p>\n<p style=\"text-align: center;\" tabindex=\"0\"><strong>Only Twitter<\/strong><\/p>\n<p style=\"text-align: left; color: rgb(255, 255, 255) !important; --tcb-applied-color:rgb(255, 255, 255)  !important;\" tabindex=\"0\"><strong>Link History(30 days)<\/strong><\/p>\n<p style=\"text-align: left; color: rgb(255, 255, 255) !important; --tcb-applied-color:rgb(255, 255, 255)  !important;\" tabindex=\"0\"><strong>Link Reporting<\/strong><\/p>\n<p style=\"text-align: left; color: rgb(255, 255, 255) !important; --tcb-applied-color:rgb(255, 255, 255)  !important;\" tabindex=\"0\"><strong>Advanced Performance Dashboard<\/strong><\/p>\n<p style=\"text-align: left; color: rgb(255, 255, 255) !important; --tcb-applied-color:rgb(255, 255, 255)  !important;\" tabindex=\"0\"><strong>Social Link Preview<\/strong><\/p>\n<p style=\"text-align: left; color: rgb(255, 255, 255) !important; --tcb-applied-color:rgb(255, 255, 255)  !important;\" tabindex=\"0\"><strong>Country Filter<\/strong><\/p>\n<p style=\"text-align: left; color: rgb(255, 255, 255) !important; --tcb-applied-color:rgb(255, 255, 255)  !important;\" tabindex=\"0\"><strong>Device Type Filter<\/strong><\/p>\n<p style=\"text-align: left; color: rgb(255, 255, 255) !important; --tcb-applied-color:rgb(255, 255, 255)  !important;\" tabindex=\"0\"><strong>Operating System Filter<\/strong><\/p>\n<p style=\"text-align: left; color: rgb(255, 255, 255) !important; --tcb-applied-color:rgb(255, 255, 255)  !important;\" tabindex=\"0\"><strong>Browser Language Filter<\/strong><\/p>\n<p style=\"text-align: left; color: rgb(255, 255, 255) !important; --tcb-applied-color:rgb(255, 255, 255)  !important;\" tabindex=\"0\"><strong>Time Limit Campaigns<\/strong><\/p>\n<p style=\"text-align: left; color: rgb(255, 255, 255) !important; --tcb-applied-color:rgb(255, 255, 255)  !important;\" tabindex=\"0\"><strong>Link Rotator Campaigns<\/strong><\/p>\n<p style=\"text-align: left; color: rgb(255, 255, 255) !important; --tcb-applied-color:rgb(255, 255, 255)  !important;\" tabindex=\"0\"><strong>Pageview Limit Campaigns<\/strong><\/p>\n<p style=\"text-align: center;\" tabindex=\"0\"><strong>Get Started In Just 3 Simple Steps:<\/strong><\/p>\n<p><span tabindex=\"0\"><img decoding=\"async\" alt=\"\" width=\"74\" data-init-width=\"74\" height=\"74\" data-init-height=\"74\" loading=\"lazy\" src=\"https:\/\/i.imgur.com\/pFXOxWm.png\" data-width=\"74\" data-height=\"74\" tabindex=\"0\" style=\"aspect-ratio: auto 74 \/ 74;\"><\/span><\/p>\n<p style=\"text-align: center;\" tabindex=\"0\"><strong>Step 1: Create<\/strong><\/p>\n<p style=\"text-align: center;\" tabindex=\"0\">Create your custom tracking links and redirect to any desired page.<\/p>\n<p><span tabindex=\"0\"><img decoding=\"async\" alt=\"\" width=\"74\" data-init-width=\"74\" height=\"74\" data-init-height=\"74\" loading=\"lazy\" src=\"https:\/\/i.imgur.com\/8x5JObr.png\" data-width=\"74\" data-height=\"74\" tabindex=\"0\" style=\"aspect-ratio: auto 74 \/ 74;\"><\/span><\/p>\n<p style=\"text-align: center;\" tabindex=\"0\"><strong>Step 2: Customize<\/strong><\/p>\n<p style=\"text-align: center;\" tabindex=\"0\">Set up special filters like time limit, click limits, device type, country&#8230;. anything you need.<\/p>\n<p><span tabindex=\"0\"><img decoding=\"async\" alt=\"\" width=\"74\" data-init-width=\"74\" height=\"74\" data-init-height=\"74\" loading=\"lazy\" src=\"https:\/\/i.imgur.com\/xkyv62M.png\" data-width=\"74\" data-height=\"74\" tabindex=\"0\" style=\"aspect-ratio: auto 74 \/ 74;\"><\/span><\/p>\n<p style=\"text-align: center;\" tabindex=\"0\"><strong>Step 3: Launch<\/strong><\/p>\n<p style=\"text-align: center;\" tabindex=\"0\">Click &#8220;save&#8221; and your campaign is good to go!<\/p>\n<p style=\"text-align: center;\" tabindex=\"0\"><strong>Watch The Demo Of <span style=\"--tcb-applied-color: rgb(255, 204, 0)  !important; color: rgb(255, 204, 0);\" tabindex=\"0\">ClickTrakr<\/span> In Action<\/strong><\/p>\n<p style=\"\" tabindex=\"0\"><strong>Tracks Traffic For All Major Traffic Platforms<\/strong><\/p>\n<p><span tabindex=\"0\"><img decoding=\"async\" alt=\"\" width=\"70\" data-init-width=\"70\" height=\"70\" data-init-height=\"70\" loading=\"lazy\" src=\"https:\/\/i.imgur.com\/yOx3kiW.png\" data-width=\"70\" data-height=\"70\" tabindex=\"0\" style=\"aspect-ratio: auto 70 \/ 70;\"><\/span><span tabindex=\"0\"><img decoding=\"async\" alt=\"\" width=\"70\" data-init-width=\"70\" height=\"70\" data-init-height=\"70\" loading=\"lazy\" src=\"https:\/\/i.imgur.com\/HjFINve.png\" data-width=\"70\" data-height=\"70\" tabindex=\"0\" style=\"aspect-ratio: auto 70 \/ 70;\"><\/span><span tabindex=\"0\"><img decoding=\"async\" alt=\"\" width=\"70\" data-init-width=\"70\" height=\"70\" data-init-height=\"70\" loading=\"lazy\" src=\"https:\/\/i.imgur.com\/Kso0M7j.png\" data-width=\"70\" data-height=\"70\" tabindex=\"0\" style=\"aspect-ratio: auto 70 \/ 70;\"><\/span><\/p>\n<p style=\"text-align: center;\" tabindex=\"0\"><strong>ClickTrakr Is Loaded With All The Features You Need&nbsp;<\/strong><strong>To Track Just About Anything!<\/strong><\/p>\n<p><span tabindex=\"0\"><img decoding=\"async\" alt=\"\" width=\"74\" data-init-width=\"70\" height=\"74\" data-init-height=\"70\" loading=\"lazy\" src=\"https:\/\/i.imgur.com\/rxWMgFB.png\" data-width=\"74\" data-height=\"74\" tabindex=\"0\" style=\"aspect-ratio: auto 70 \/ 70;\"><\/span><\/p>\n<p style=\"text-align: center;\" tabindex=\"0\"><strong>Custom Domains<\/strong><\/p>\n<p style=\"text-align: center;\" tabindex=\"0\">Create your custom tracking links and redirect to any page you want.<\/p>\n<p><span tabindex=\"0\"><img decoding=\"async\" alt=\"\" width=\"74\" data-init-width=\"70\" height=\"74\" data-init-height=\"70\" loading=\"lazy\" src=\"https:\/\/i.imgur.com\/FD4PBOj.png\" data-width=\"74\" data-height=\"74\" tabindex=\"0\" style=\"aspect-ratio: auto 70 \/ 70;\"><\/span><\/p>\n<p style=\"text-align: center; color: rgb(12, 61, 109) !important; --tcb-applied-color:rgb(12, 61, 109)  !important;\" tabindex=\"0\"><strong>Split Testing<\/strong><\/p>\n<p style=\"text-align: center; color: rgb(12, 61, 109) !important; --tcb-applied-color:rgb(12, 61, 109)  !important;\" tabindex=\"0\">Set up special redirect filters like country, time limits, device, type&#8230;. anything you need.<\/p>\n<p><span tabindex=\"0\"><img decoding=\"async\" alt=\"\" width=\"74\" data-init-width=\"70\" height=\"74\" data-init-height=\"70\" loading=\"lazy\" src=\"https:\/\/i.imgur.com\/zSXv6XZ.png\" data-width=\"74\" data-height=\"74\" tabindex=\"0\" style=\"aspect-ratio: auto 70 \/ 70;\"><\/span><\/p>\n<p style=\"text-align: center;\" tabindex=\"0\"><strong>Social Media Sharing<\/strong><\/p>\n<p style=\"text-align: center;\" tabindex=\"0\">Share your short URL on 41 built-in social networks, bookmarking pages.<\/p>\n<p><span tabindex=\"0\"><img decoding=\"async\" alt=\"\" width=\"74\" data-init-width=\"70\" height=\"74\" data-init-height=\"70\" loading=\"lazy\" src=\"https:\/\/i.imgur.com\/fysnroE.png\" data-width=\"74\" data-height=\"74\" tabindex=\"0\" style=\"aspect-ratio: auto 70 \/ 70;\"><\/span><\/p>\n<p style=\"text-align: center;\" tabindex=\"0\"><strong>Custom Campaign Filters<\/strong><\/p>\n<p style=\"text-align: center;\" tabindex=\"0\">Get Maximum control over the flow of your traffic, with 9 built-in filters to laser target your visitors.<\/p>\n<p><span tabindex=\"0\"><img decoding=\"async\" alt=\"\" width=\"329\" data-init-width=\"329\" height=\"134\" data-init-height=\"134\" loading=\"lazy\" src=\"https:\/\/i.imgur.com\/IHyo7SG.png\" data-width=\"329\" data-height=\"134\" tabindex=\"0\" style=\"aspect-ratio: auto 329 \/ 134;\"><\/span><span tabindex=\"0\"><img decoding=\"async\" alt=\"\" width=\"74\" data-init-width=\"70\" height=\"74\" data-init-height=\"70\" loading=\"lazy\" src=\"https:\/\/i.imgur.com\/OrQfXGr.png\" data-width=\"74\" data-height=\"74\" tabindex=\"0\" style=\"aspect-ratio: auto 70 \/ 70;\"><\/span><\/p>\n<p style=\"text-align: center;\" tabindex=\"0\"><strong>Ending Filters<\/strong><\/p>\n<p style=\"text-align: center;\" tabindex=\"0\">Place a decisive filter in your campaign and limit visits by time, timeframe, page views, rotating targets with various custom ending scenarios.<\/p>\n<p><span tabindex=\"0\"><img decoding=\"async\" alt=\"\" width=\"74\" data-init-width=\"70\" height=\"74\" data-init-height=\"70\" loading=\"lazy\" src=\"https:\/\/i.imgur.com\/27qGxgP.png\" data-width=\"74\" data-height=\"74\" tabindex=\"0\" style=\"aspect-ratio: auto 70 \/ 70;\"><\/span><\/p>\n<p style=\"text-align: center;\" tabindex=\"0\"><strong>Built QR Code<\/strong><\/p>\n<p style=\"text-align: center;\" tabindex=\"0\">Generate QR Codes in one click and redirect to the short URL. Easily download the QR Code image and use it on any social media platform.<\/p>\n<p><span tabindex=\"0\"><img decoding=\"async\" alt=\"\" width=\"74\" data-init-width=\"70\" height=\"74\" data-init-height=\"70\" loading=\"lazy\" src=\"https:\/\/i.imgur.com\/lyIEvBt.png\" data-width=\"74\" data-height=\"74\" tabindex=\"0\" style=\"aspect-ratio: auto 70 \/ 70;\"><\/span><\/p>\n<p style=\"text-align: center; color: rgb(12, 61, 109) !important; --tcb-applied-color:rgb(12, 61, 109)  !important;\" tabindex=\"0\"><strong>One Click Share<\/strong><\/p>\n<p style=\"text-align: center; color: rgb(12, 61, 109) !important; --tcb-applied-color:rgb(12, 61, 109)  !important;\" tabindex=\"0\">By using the share feature you will be able to post your links on the most popular social media platforms in just one click and get that juicy extra traffic.<\/p>\n<p><span tabindex=\"0\"><img decoding=\"async\" alt=\"\" width=\"74\" data-init-width=\"70\" height=\"74\" data-init-height=\"70\" loading=\"lazy\" src=\"https:\/\/i.imgur.com\/MLjPlJe.png\" data-width=\"74\" data-height=\"74\" tabindex=\"0\" style=\"aspect-ratio: auto 70 \/ 70;\"><\/span><\/p>\n<p style=\"text-align: center;\" tabindex=\"0\"><strong>Custom Short URL<\/strong><\/p>\n<p style=\"text-align: center;\" tabindex=\"0\">You can set up a custom short URL for branded redirects, or auto-generate a random one.<\/p>\n<p><span tabindex=\"0\"><img decoding=\"async\" alt=\"Default Alt Tag for this page\" width=\"701\" data-init-width=\"860\" height=\"166\" data-init-height=\"204\" loading=\"lazy\" src=\"https:\/\/i.imgur.com\/8NirHpR.png\" data-width=\"701\" data-height=\"166\" style=\"aspect-ratio: auto 860 \/ 204;\" mt-d=\"0\" ml-d=\"0\" mt-m=\"0\" tabindex=\"0\"><\/span><\/p>\n<p style=\"text-align: center;\" tabindex=\"0\"><strong><span tabindex=\"0\">100% <span tabindex=\"0\">FREE&nbsp;<\/span><\/span><\/strong><strong><span tabindex=\"0\">When You <\/span><\/strong><strong><span tabindex=\"0\">Claim <\/span><\/strong><strong><span tabindex=\"0\">ClickTrakr Unlimited<\/span><\/strong><\/p>\n<p><span tabindex=\"0\"><a href=\"https:\/\/thegiveawayguy.biz\/wp-content\/uploads\/2022\/09\/bonus-1-3-1-2-5.png\" tabindex=\"0\"><img decoding=\"async\" alt=\"\" data-id=\"69688\" width=\"258\" data-init-width=\"503\" height=\"63\" data-init-height=\"122\" title=\"bonus-1-3-1-30\" loading=\"lazy\" src=\"https:\/\/thegiveawayguy.biz\/wp-content\/uploads\/2022\/09\/bonus-1-3-1-30-13-5.png\" data-width=\"258\" data-height=\"63\" data-link-wrap=\"true\" style=\"aspect-ratio: auto 503 \/ 122;\" ml-d=\"0\" mt-d=\"0\" tabindex=\"0\"><\/a><\/span><span tabindex=\"0\"><img decoding=\"async\" alt=\"\" width=\"432\" data-init-width=\"968\" height=\"624\" data-init-height=\"1398\" loading=\"lazy\" src=\"https:\/\/i.imgur.com\/Odvrc4L.png\" data-width=\"432\" data-height=\"624\" style=\"aspect-ratio: auto 968 \/ 1398;\" tabindex=\"0\"><\/span><\/p>\n<p style=\"\" tabindex=\"0\"><strong><span style=\"font-size: 22px;\" tabindex=\"0\">Leverage the Power of Traffic Today In This Unique Traffic Bundle Package.&nbsp;<\/span><\/strong><strong><span style=\"font-size: 22px;\" tabindex=\"0\">Inside You Will Learn Unique Traffic Tactics Like:<\/span><\/strong><strong><span style=\"font-size: 22px;\" tabindex=\"0\">&#8211; Fast Traffic Tactics<\/span><\/strong><strong><span style=\"font-size: 22px;\" tabindex=\"0\">&#8211; Long Term Traffic Tactics<\/span><\/strong><strong><span style=\"font-size: 22px;\" tabindex=\"0\">&#8211; Web Traffic Monetization Tactics<\/span><\/strong><strong><span style=\"font-size: 22px;\" tabindex=\"0\">&#8211; 30 Ways To Get Traffic In 30 Minutes<\/span><\/strong><strong><span style=\"font-size: 22px;\" tabindex=\"0\">&#8211; 110 Bite Sized Traffic Tips<\/span><\/strong><strong><span style=\"font-size: 22px;\" tabindex=\"0\">&#8211; Generating Traffic With Free or Cheap Websites<\/span><\/strong><strong><span style=\"font-size: 22px;\" tabindex=\"0\">&#8211; Viral Youtube Traffic<\/span><\/strong><strong><span style=\"font-size: 22px;\" tabindex=\"0\">&#8211; Video Traffic System<\/span><\/strong><strong><span style=\"font-size: 22px;\" tabindex=\"0\">&#8211; Fast Twitter Traffic&nbsp;<\/span><\/strong><strong><span style=\"font-size: 22px;\" tabindex=\"0\">&#8211; Best Traffic Sources in 2022<\/span><\/strong><strong><span style=\"font-size: 22px;\" tabindex=\"0\">&#8211; Traffic Magnets<\/span><\/strong><strong><span style=\"font-size: 22px;\" tabindex=\"0\">&#8211; Social Media Traffic<\/span><\/strong><strong><span style=\"font-size: 22px;\" tabindex=\"0\">&#8211; Targeted Traffic<\/span><\/strong><strong><span style=\"font-size: 22px;\" tabindex=\"0\">&#8211; Link Exchanging For Web Traffic<\/span><\/strong><\/p>\n<p><span tabindex=\"0\"><a href=\"https:\/\/thegiveawayguy.biz\/wp-content\/uploads\/2022\/09\/bonus-1-3-1-2-5.png\" tabindex=\"0\"><img decoding=\"async\" alt=\"\" data-id=\"69689\" width=\"258\" data-init-width=\"503\" height=\"63\" data-init-height=\"122\" title=\"bonus-2-29-28\" loading=\"lazy\" src=\"https:\/\/thegiveawayguy.biz\/wp-content\/uploads\/2022\/09\/bonus-2-29-28-13-5.png\" data-width=\"258\" data-height=\"63\" data-link-wrap=\"true\" style=\"aspect-ratio: auto 503 \/ 122;\" ml-d=\"0\" mt-d=\"0\" tabindex=\"0\"><\/a><\/span><span tabindex=\"0\"><img decoding=\"async\" alt=\"\" width=\"432\" data-init-width=\"968\" height=\"624\" data-init-height=\"1398\" loading=\"lazy\" src=\"https:\/\/i.imgur.com\/SjWafYe.png\" data-width=\"432\" data-height=\"624\" style=\"aspect-ratio: auto 968 \/ 1398;\" tabindex=\"0\"><\/span><\/p>\n<p style=\"\" tabindex=\"0\"><strong><span style=\"font-size: 22px;\" tabindex=\"0\">Profitable Traffic System shows you how to build a paid traffic system where you take people from simple visitors all the way to multi-buyers.&nbsp;<\/span><\/strong><strong><span style=\"font-size: 22px;\" tabindex=\"0\">By the time you are finished with this course you\u2019ll have all the assets you need to roll out your own perpetual Profitable Traffic System.<\/span><\/strong><strong><span style=\"font-size: 22px;\" tabindex=\"0\">Course Breakdown:<\/span><\/strong><strong><span style=\"font-size: 22px;\" tabindex=\"0\">Core Concepts of Profitable Traffic:&nbsp;<\/span><\/strong><span style=\"font-size: 22px;\" tabindex=\"0\">This module will teach you the foundations of how to think about traffic as a Digital Marketer and where it fits into YOUR business. You\u2019ll craft a customer value journey for your business, audit your current marketing assets, and start working on your campaign planning canvas.<\/span><strong><span style=\"font-size: 22px;\" tabindex=\"0\"><\/span><\/strong><strong><span style=\"font-size: 22px;\" tabindex=\"0\">Core Concepts of Profitable Traffic 2: <\/span><\/strong><span style=\"font-size: 22px;\" tabindex=\"0\">Start building the assets you\u2019ll use in your ad campaigns, target specific customers to your market and start to conceptualize and create your ad images and videos. You\u2019ll also learn how to build content assets you\u2019ll need to send traffic to.<\/span><strong><span style=\"font-size: 22px;\" tabindex=\"0\"><\/span><span style=\"font-size: 22px;\" tabindex=\"0\">Create Your Acquisition Campaign(s):<\/span><\/strong><span style=\"font-size: 22px;\" tabindex=\"0\">Learn how to generate interest at the start and end of your funnel and execute on step-by-step instructions for building a high converting ad campaign.<\/span><span style=\"font-size: 22px;\" tabindex=\"0\"><\/span><strong><span style=\"font-size: 22px;\" tabindex=\"0\">Launching, Structuring, and Optimization:<\/span><\/strong><span style=\"font-size: 22px;\" tabindex=\"0\">You will launch your traffic system and learn the best practices for structuring your campaigns, what you should be testing, and how to track them. You\u2019ll also learn optimization techniques for your traffic campaigns and landing pages.<\/span><span style=\"font-size: 22px;\" tabindex=\"0\"><\/span><\/p>\n<p><span tabindex=\"0\"><a href=\"https:\/\/thegiveawayguy.biz\/wp-content\/uploads\/2022\/09\/bonus-1-3-1-2-5.png\" tabindex=\"0\"><img decoding=\"async\" alt=\"\" data-id=\"69690\" width=\"258\" data-init-width=\"503\" height=\"63\" data-init-height=\"122\" title=\"bonus-3-21\" loading=\"lazy\" src=\"https:\/\/thegiveawayguy.biz\/wp-content\/uploads\/2022\/09\/bonus-3-21-14-5.png\" data-width=\"258\" data-height=\"63\" data-link-wrap=\"true\" style=\"aspect-ratio: auto 503 \/ 122;\" ml-d=\"0\" mt-d=\"0\" tabindex=\"0\"><\/a><\/span><span tabindex=\"0\"><img decoding=\"async\" alt=\"\" width=\"432\" data-init-width=\"968\" height=\"624\" data-init-height=\"1398\" loading=\"lazy\" src=\"https:\/\/i.imgur.com\/x8Fk3s3.png\" data-width=\"432\" data-height=\"624\" style=\"aspect-ratio: auto 968 \/ 1398;\" tabindex=\"0\"><\/span><\/p>\n<p style=\"\" tabindex=\"0\"><strong><span tabindex=\"0\">Inside This Package you will find 300 high quality Ebooks that will help your business to grow.Here&#8217;s some examples of everything you will learn:- Copywriting Skills- How To Turn Videos Into Cash- Success As An Afiliate Marketer- Product Creation- Online Marketing Tactics- Making Money With Social Media- Internet Business Basics- How To Outsource To Grow Your Business- How To Identify Business Opportunities And Make The Most Of Them- How To Work From Home- Home Based Business Ideas- Earn Your First $100 Online- Digital Product Creation System- Content Creation Secrets- Building Your Business BrandThese eBooks can be edited so you can change them any way you want. Add your name and become an Instant Author.Add your affiliate links for extra income streams putting more money in your pocket. Or simply resell and you get to keep all the money!<\/span><\/strong><\/p>\n<p><span tabindex=\"0\"><a href=\"https:\/\/thegiveawayguy.biz\/wp-content\/uploads\/2022\/09\/bonus-1-3-1-2-5.png\" tabindex=\"0\"><img decoding=\"async\" alt=\"\" data-id=\"69205\" width=\"258\" data-init-width=\"503\" height=\"63\" data-init-height=\"122\" title=\"bonus-4-6\" loading=\"lazy\" src=\"https:\/\/thegiveawayguy.biz\/wp-content\/uploads\/2022\/09\/bonus-4-6-2-5.png\" data-width=\"258\" data-height=\"63\" data-link-wrap=\"true\" style=\"aspect-ratio: auto 503 \/ 122;\" ml-d=\"0\" mt-d=\"0\" tabindex=\"0\"><\/a><\/span><\/p>\n<p style=\"text-align: center;\" tabindex=\"0\"><strong>Slick Ad Creator FE + Autopilot<\/strong><\/p>\n<p><span tabindex=\"0\"><img decoding=\"async\" alt=\"\" width=\"620\" data-init-width=\"803\" height=\"706\" data-init-height=\"915\" loading=\"lazy\" src=\"https:\/\/i.imgur.com\/zMciz6E.png\" data-width=\"620\" data-height=\"706\" style=\"aspect-ratio: auto 803 \/ 915;\" tabindex=\"0\"><\/span><\/p>\n<p style=\"\" tabindex=\"0\"><strong><span tabindex=\"0\">You\u2019re 1-Click Away From Getting FREE \u201cAutoPilot\u201d Buyers Traffic From 100 Sources In 60 Seconds!&nbsp;<\/span><\/strong><strong><span tabindex=\"0\">Here&#8217;s Everything You Get Today:<\/span><\/strong><strong><span tabindex=\"0\">&#8211; Optimized Ad builder for the most popular social media platforms- Drag &amp; Drop Video Builder- DFY Videos Included- No Video Creation &amp; No Ranking- 100+ DFY Templates- 100% Newbie Friendly- No Hosting Or Domain Needed<\/span><\/strong><strong><span tabindex=\"0\">&#8211; Easy To Use<\/span><\/strong><strong><span tabindex=\"0\">&#8211; Finally Solve Your Traffic Problem<\/span><\/strong><strong><span tabindex=\"0\">-Video Training Included- Fully-Automated To Deliver Results<\/span><\/strong><\/p>\n<p><span tabindex=\"0\"><a href=\"https:\/\/thegiveawayguy.biz\/wp-content\/uploads\/2022\/09\/bonus-1-3-1-2-5.png\" tabindex=\"0\"><img decoding=\"async\" alt=\"\" data-id=\"69206\" width=\"258\" data-init-width=\"503\" height=\"63\" data-init-height=\"122\" title=\"bonus5-2\" loading=\"lazy\" src=\"https:\/\/thegiveawayguy.biz\/wp-content\/uploads\/2022\/09\/bonus5-2-2-6.png\" data-width=\"258\" data-height=\"63\" data-link-wrap=\"true\" style=\"aspect-ratio: auto 503 \/ 122;\" ml-d=\"0\" mt-d=\"0\" tabindex=\"0\"><\/a><\/span><\/p>\n<p style=\"text-align: center;\" tabindex=\"0\"><strong>Maxima FE + Unlimited<\/strong><\/p>\n<p><span tabindex=\"0\"><img decoding=\"async\" alt=\"\" width=\"884\" data-init-width=\"993\" height=\"677\" data-init-height=\"760\" loading=\"lazy\" src=\"https:\/\/i.imgur.com\/NlUYwwy.png\" data-width=\"884\" data-height=\"677\" style=\"aspect-ratio: auto 993 \/ 760;\" tabindex=\"0\"><\/span><\/p>\n<p style=\"\" tabindex=\"0\"><strong><span tabindex=\"0\">If you\u2019re still struggling to find targeted business leads, close them and make sales. Then Maxima is the perfect solution for you that is every marketer\u2019s dream.<\/span><\/strong><strong><span tabindex=\"0\">Here&#8217;s A List Of The Features Inside This Powerful Tool:<\/span><\/strong><strong><span tabindex=\"0\"><\/span><\/strong><strong><span tabindex=\"0\">&#8211; FIND THOUSANDS OF TARGETED LEADS IN ANY NICHE WITH JUST 1 CLICK<\/span><\/strong><span tabindex=\"0\">Your Virtual Client will easily find you thousands of businesses in just seconds from ANY location or keyword. These leads are in dire need of an online presence.<\/span><strong><span tabindex=\"0\"><\/span><\/strong><strong><span tabindex=\"0\">&#8211; CLOSE SALES WITH DOZENS OF PRE-QUALIFIED LEADS WITHOUT ANY EFFORT<\/span><\/strong><span tabindex=\"0\">Maxima includes proven to convert DFY email swipes, legal agreements, sales proposals and much more. There is no need to spend thousands on hiring someone to close sales \u2013 Maxima will do all the hard work for you!<\/span><strong><span tabindex=\"0\"><\/span><\/strong><strong><span tabindex=\"0\">&#8211; INSTANT DONE FOR YOU REPORTS THAT MAKES YOU LOOK LIKE A PRO<\/span><\/strong><span tabindex=\"0\">With Maxima, you can instantly download detailed reports of each business which identifies the EXACT issues they need to fix. When you send this to businesses, they will jump out of their seats and be willing to pay you to help them out<\/span><strong><span tabindex=\"0\"><\/span><\/strong><strong><span tabindex=\"0\">&#8211; CREATE STUNNING WEBSITES WITH 100+ CUSTOMISABLE TEMPLATES<\/span><\/strong><span tabindex=\"0\">Use Maxima\u2019s seamless page builder to create a slick professional website in ANY niche with just a few clicks \u2013 this will make your every client drool with excitement.<\/span><strong><span tabindex=\"0\"><\/span><\/strong><span tabindex=\"0\">With over 100+ all-done-for-you, ready-to-go templates, the possibilities and customizations are endless. You\u2019ll ALWAYS have the perfect optimized site you need for every client.<\/span><strong><span tabindex=\"0\">TARGETED LEAD FINDING TECHNOLOGY<\/span><\/strong><span tabindex=\"0\">Within just 1-click, you are able to find tons of high ticket business leads who don\u2019t have a website (or need improvements) and instantly get all the important details at your fingertips (business name, location, email, phone number, etc)<\/span><strong><span tabindex=\"0\"><\/span><\/strong><\/p>\n<p style=\"text-align: center;\" tabindex=\"0\">This <strong>MASSIVE DEAL<\/strong> Closes When The Timer Reaches Zero<\/p>\n<p style=\"text-align: center;\" tabindex=\"0\"><strong>Frequently Asked Questions<\/strong><\/p>\n<p style=\"color: rgb(0, 51, 102) !important; --tcb-applied-color:rgb(0, 51, 102)  !important;\" tabindex=\"0\"><strong>Can I create Custom domains?<\/strong><\/p>\n<p style=\"\" tabindex=\"0\">Yes you can create 5 custom domains if you claim ClickTrakr Personal and unlimited custom domains when you claim ClickTrakr Unlimited from the pricing list on this page.&nbsp;<\/p>\n<p style=\"color: rgb(0, 51, 102) !important; --tcb-applied-color:rgb(0, 51, 102)  !important;\" tabindex=\"0\"><strong>Can I enable split testing?<\/strong><\/p>\n<p style=\"\" tabindex=\"0\">You can use split testing if you claim ClickTrakr Personal or Unlimited and redirect to multiple URL&#8217;s, to analyze which link is converting best.<\/p>\n<p style=\"color: rgb(0, 51, 102) !important; --tcb-applied-color:rgb(0, 51, 102)  !important;\" tabindex=\"0\"><strong>How can I generate QR codes?<\/strong><\/p>\n<p style=\"\" tabindex=\"0\">You can generate QR Code in one click and it will direct visitors to the short URL. You can easily download the QR Code image and use it on any offline media.<\/p>\n<p style=\"color: rgb(0, 51, 102) !important; --tcb-applied-color:rgb(0, 51, 102)  !important;\" tabindex=\"0\"><strong>Is it cloud-hosted?<\/strong><\/p>\n<p style=\"\" tabindex=\"0\">Yes, you can use the software without needing to download it or install it.It will work on all Operating Systems as it is cloud-based.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>[tcb-script type=&#8221;text\/javascript&#8221;]var Tawk_API=Tawk_API||{}, Tawk_LoadStart=new Date();(function(){var s1=document.createElement(&#8220;script&#8221;),s0=document.getElementsByTagName(&#8220;script&#8221;)[0];s1.async=true;s1.src=&#8217;https:\/\/embed.tawk.to\/599e492b4fe3a1168ead97eb\/default&#8217;;s1.charset=&#8217;UTF-8&#8242;;s1.setAttribute(&#8216;crossorigin&#8217;,&#8217;*&#8217;);s0.parentNode.insertBefore(s1,s0);})();[\/tcb-script] Track, Manage And Control Your&nbsp;Traffic With ClickTrakr ClickTrakr Free Trial 5 Campaigns Custom Domains 1,000 Clicks per month Bonuses ClickTrakr Personal 50 Campaigns 5 Custom Domains 100,000 Clicks per month Bonuses ClickTrakr Unlimited Unlimited Campaigns Unlimited Custom Domains Unlimited Clicks per month Bonuses Built QR Codes Generate QR Codes [&hellip;]<\/p>\n","protected":false},"author":4,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_acf_changed":false,"order-bump-settings":[],"_wpfnl_thankyou_order_overview":"on","_wpfnl_thankyou_order_details":"on","_wpfnl_thankyou_billing_details":"on","_wpfnl_thankyou_shipping_details":"on","footnotes":""},"folder":[],"class_list":["post-12509","page","type-page","status-publish","hentry","post-wrapper","thrv_wrapper"],"acf":[],"_links":{"self":[{"href":"https:\/\/thegiveawayguy.biz\/v\/wp\/v2\/pages\/12509","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/thegiveawayguy.biz\/v\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/thegiveawayguy.biz\/v\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/thegiveawayguy.biz\/v\/wp\/v2\/users\/4"}],"replies":[{"embeddable":true,"href":"https:\/\/thegiveawayguy.biz\/v\/wp\/v2\/comments?post=12509"}],"version-history":[{"count":0,"href":"https:\/\/thegiveawayguy.biz\/v\/wp\/v2\/pages\/12509\/revisions"}],"wp:attachment":[{"href":"https:\/\/thegiveawayguy.biz\/v\/wp\/v2\/media?parent=12509"}],"wp:term":[{"taxonomy":"folder","embeddable":true,"href":"https:\/\/thegiveawayguy.biz\/v\/wp\/v2\/folder?post=12509"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}